*{
	margin: 0;
	padding: 0;
}
html, body{
	padding:0;
	margin:0;
	width:100%;
	height:100%;
	position: relative;
	font-family: Tahoma;
    font-weight: 400;
    font-size: 13px;


    
}



.header{
    width: 100%;
    height:50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #DADCE0;
    box-sizing: border-box;
    position: relative;
}
.header_left{
    padding-left: 10px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    width: 220px;
    justify-content: flex-start;
}
.header_right{
    display: flex;
    align-items: center;
    font-size: 0;
    padding-right: 15px;
    flex-shrink: 0;
    width: 220px;
    justify-content: flex-end;
}
.header_center{
    padding-left: 15px;
    padding-right: 15px;
    display: flex;
    align-items: center;
    flex-grow: 1;
    justify-content: center;
}
.logo{
    display: flex;
    align-items: center;
    background: url(../img/logo.svg);
    width: 100px;
    height: 20px;
    background-repeat: no-repeat;
}
.header_link{
    font-size: 14px;
    text-decoration: none;
    color: black;
    margin-left: 15px;
    cursor: pointer;
}
.header_button{
    font-size: 14px;
    text-decoration: none;
    color: #0b89e5;
    margin-left: 10px;
    cursor: pointer;
    background: #ffffff;
    padding: 5px 10px;
    border: 1px solid #0D99FF;
    border-radius: 3px;
}
.header_button_active{
    background: #0D99FF;
    color: #ffffff;
    box-sizing: content-box;
}

.header_input{
    width: 100%;
    text-align: center;
    border: 0;
    outline: 0;
    font-size: 14px;
    line-height: 40px;
    background: transparent;
}
.canvas_case{
    width: 100%;
    height: calc(100% - 50px);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fafafa;
}
.canvas{
	width:100%;
	height:100%;
}
.tools{
    position: absolute;
    bottom:15px;
}
.tools_case{
    font-size: 0;
}

.auxtools{
    position: absolute;
    right: 15px;
    top: 5px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
}

.auxbutton {
    background: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 3px;
    cursor: pointer;
    line-height: 40px;
    height: 40px;
    width: 40px;
    margin-top:10px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
}
.auxbutton:hover{
    border-color: #0D99FF;
    background: #e6f4ff;
}
.aux_active{
    border-color: #0D99FF;
    background: #e6f4ff;
}

.icon_image::before{
    display: inline-block;
    content: "";
    background-image: url(/img/icons/image.svg);
    background-size: 24px 24px;
    height: 24px;
    width: 24px;
    position: relative;
    top: 7px;
    left: 0px;
    background-repeat: no-repeat;
    vertical-align: top;
}
.icon_move::before{
    display: inline-block;
    content: "";
    background-image: url(/img/icons/move.svg);
    background-size: 24px 24px;
    height: 24px;
    width: 24px;
    position: relative;
    top: 7px;
    left: 0px;
    background-repeat: no-repeat;
    vertical-align: top;
}
.icon_points::before{
    display: inline-block;
    content: "";
    background-image: url(/img/icons/points.svg);
    background-size: 24px 24px;
    height: 24px;
    width: 24px;
    position: relative;
    top: 7px;
    left: 0px;
    background-repeat: no-repeat;
    vertical-align: top;
}
.button{
    min-width: 120px;
    background: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 3px;
    cursor: pointer;
    margin-left: 10px;
    line-height: 40px;
    height: 40px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
}
.no_text{
    min-width: 40px;
}

@media (pointer: fine) {
    .button:hover{
        border-color:#0D99FF;
        background: #e6f4ff;
    }
}
.select_button{
    border-color: #0D99FF;
    background: #e6f4ff;
}

.button_select{
    outline: none;
    min-width: 55px;
    background: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 3px;
    cursor: pointer;
    margin-left: 10px;
    line-height: 40px;
    height: 40px;
    vertical-align: top;
    text-align: center;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
}
.button_select:hover{
    border-color: #0D99FF;
    background: #e6f4ff;
}
.preloader{
	position:fixed;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background: #ffffffbd;
	z-index: 999999;
}


.loader {

    position: absolute;
    top: 50%;
    margin-top: -25px;
    left: 50%;
    margin-left: -25px;
	z-index: 9999999;
    animation: rotate 1s infinite;
    height: 50px;
    width: 50px;
}

.loader:before,
.loader:after {
    border-radius: 50%;
    content: "";
    display: block;
    height: 20px;
    width: 20px;
}
.loader:before {
    animation: ball1 1s infinite;
    background-color: #0D99FF;
    box-shadow: 30px 0 0 #0D99FF;
    margin-bottom: 10px;
}
.loader:after {
    animation: ball2 1s infinite;
    background-color: #0D99FF;
    box-shadow: 30px 0 0 #0D99FF;
}

@keyframes rotate {
    0% { transform: rotate(0deg) scale(0.8) }
    50% { transform: rotate(360deg) scale(1.2) }
    100% { transform: rotate(720deg) scale(0.8) }
}

@keyframes ball1 {
0% {
    box-shadow: 30px 0 0 #0D99FF;
}
50% {
    box-shadow: 0 0 0 #0D99FF;
    margin-bottom: 0;
    transform: translate(15px, 15px);
}
100% {
    box-shadow: 30px 0 0 #0D99FF;
    margin-bottom: 10px;
}
}

@keyframes ball2 {
0% {
    box-shadow: 30px 0 0 #0D99FF;
}
50% {
    box-shadow: 0 0 0 #0D99FF;
    margin-top: -20px;
    transform: translate(15px, 15px);
}
100% {
    box-shadow: 30px 0 0 #0D99FF;
    margin-top: 0;
}
}



.icon_save::before{
    display: inline-block;
    content: "";
    background-image: url(/img/icons/save.svg);
    background-size: 24px 24px;
    height: 24px;
    width: 24px;
    position: relative;
    top: 7px;
    left: -5px;
    background-repeat: no-repeat;
    vertical-align: top;
}

.icon_download::before{
    display: inline-block;
    content: "";
    background-image: url(/img/icons/download.svg);
    background-size: 24px 24px;
    height: 24px;
    width: 24px;
    position: relative;
    top: 7px;
    left: -5px;
    background-repeat: no-repeat;
    vertical-align: top;
}

.icon_unlock::before{
    display: inline-block;
    content: "";
    background-image: url(/img/icons/unlock.svg);
    background-size: 24px 24px;
    height: 24px;
    width: 24px;
    position: relative;
    top: 7px;
    left: 0px;
    background-repeat: no-repeat;
    vertical-align: top;
}

.icon_lock::before{
    display: inline-block;
    content: "";
    background-image: url(/img/icons/lock.svg);
    background-size: 24px 24px;
    height: 24px;
    width: 24px;
    position: relative;
    top: 7px;
    left: 0px;
    background-repeat: no-repeat;
    vertical-align: top;
}

.icon_reflect::before{
    display: inline-block;
    content: "";
    background-image: url(/img/icons/reflect.svg);
    background-size: 24px 24px;
    height: 24px;
    width: 24px;
    position: relative;
    top: 7px;
    left: -5px;
    background-repeat: no-repeat;
    vertical-align: top;
}

.icon_remove::before{
    display: inline-block;
    content: "";
    background-image: url(/img/icons/remove.svg);
    background-size: 24px 24px;
    height: 24px;
    width: 24px;
    position: relative;
    top: 7px;
    left: -5px;
    background-repeat: no-repeat;
    vertical-align: top;
}

.icon_rotate::before{
    display: inline-block;
    content: "";
    background-image: url(/img/icons/rotate.svg);
    background-size: 24px 24px;
    height: 24px;
    width: 24px;
    position: relative;
    top: 7px;
    left: -5px;
    background-repeat: no-repeat;
    vertical-align: top;
}
.icon_copy::before{
    display: inline-block;
    content: "";
    background-image: url(/img/icons/copy.svg);
    background-size: 24px 24px;
    height: 24px;
    width: 24px;
    position: relative;
    top: 7px;
    left: -5px;
    background-repeat: no-repeat;
    vertical-align: top;
}

.margin_0 {
    margin-left: 0! important;
}
.color_picker{
    width: 40px;
    height: 40px;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    padding: 2px 4px;
    margin: 0;
    background: #ffffff;
    border: 1px solid #dddddd;
    outline: none;
    cursor: pointer;
    border-radius: 0;
    display: none;
    vertical-align: top;
    margin: 0;
    margin-left: 10px;
    border-radius: 3px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
}
.color_picker:hover{
	border-color:#0D99FF;
    background: #e6f4ff;
}

::-webkit-color-swatch{
  border-color: #cccccc;
  border-radius: 38px;
}

::-moz-color-swatch,
::-moz-focus-inner{
    border-radius: 38px;
	border-color: #cccccc;
}

.count{
	position: relative;
}
.icon_triangle::before{
    display: inline-block;
    content: "";
    background-image: url(/img/icons/triangle.svg);
    background-size: 100%;
    height: 13px;
    width: 12px;
    position: absolute;
    bottom: 0;
    left: -16px;
    background-repeat: no-repeat;
    vertical-align: middle;
}

.title_label{
    font-size: 15px;
    font-weight: bold;
    color: #333333;
}
.overlay{
	position:fixed;
	top:0;
	left:0;
	width:100%;
	height:100%;
	opacity: 0.4;
	background: #333333;
    z-index: 99999;
}
.window{
    position: absolute;
    width: 100%;
    max-width: 300px;
    background: #ffffff;
    padding: 15px;
    margin-top: -50px;
    z-index: 999999;
    box-sizing: border-box;
}
.window_case{
    margin-top: 15px;
}
.window_select{
    border: 1px solid #0D99FF;
    padding: 6px 3px 5px 6px;
    width: 100%;
    box-sizing: border-box;
    border-radius: 3px;
    outline: 0;
    font-size: 15px;
    cursor: pointer;
}
.window_input{
    border: 1px solid #0D99FF;
    padding: 6px 3px 5px 6px;
    width: 100%;
    box-sizing: border-box;
    border-radius: 3px;
    outline: 0;
    font-size: 15px;
}
.label{
    font-size: 15px;
    margin-bottom: 5px;
}

.button_main{
    width: 100%;
    height: 40px;
    background: #0D99FF;
    border: 0;
    border-radius: 3px;
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
    outline: 0;
}
.checkbox_case{
    font-size: 15px;
    margin-bottom: 7px;
    position: relative; 
}
.checkbox{
    width: 15px;
    height: 15px;
    display: inline-block;
    vertical-align: top;
    cursor: pointer;
    vertical-align: middle;
    position: absolute;
    top: 2px;
}
.checkbox_case label{
    margin-left: 20px;
    cursor: pointer;
}

.pricing_case{
    line-height: 1.5;
    font-size: 16px;
    text-align: center;
}

.pricing_message{
   margin-bottom: 15px;
}

.link{
    color: #0D99FF;
    font-weight: bold;
    text-decoration: none;
}
.link:hover{
    text-decoration: underline;
}

.menu_case{
    display: flex;
    justify-content: center;
    margin-right: 10px;
    position: relative;
    height: 50px;
    align-items: center;
}
.menu{
    display: flex;
    justify-content: center;
    align-content: center;
    cursor: pointer;
}
.menu::before{

    display: inline-block;
    content: "";
    background-image: url(/img/icons/menu.svg);
    background-size: 32px 32px;
    height: 32px;
    width: 32px;
    position: relative;
    top: 0px;
    left: 0px;
    background-repeat: no-repeat;
    vertical-align: top;

    
}
.menu_link_case{
    position: absolute;
    top: 50px;
    z-index: 99999;
    left: 4px;
    width: 150px;
    background:#0D99FF;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 15px;
}
.menu_link{
    display: block;
    color: #ffffff;
    padding: 0 15px;
    text-decoration: none;
    cursor: pointer;
    line-height: 40px;
    height: 40px;
}
.menu_link:hover{
    background-color: #0b89e5;
}
.show{
    display: block;
}
.hide{
    display: none;
}
.range_pointssize_case{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 150px;
    width: 10px;
}
.range_pointssize{
    background: transparent;
  writing-mode: bt-lr;
  -webkit-appearance: none;
  transform: rotate(270deg);
  -moz-transform: rotate(270deg);
}

.range_pointssize::-webkit-slider-runnable-track {
    width: 150px;
    height: 10px;
    background: #ddd;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.range_pointssize::-webkit-slider-thumb {
    -webkit-appearance: none;
    border: none;
    height: 24px;
    width: 24px;
    border-radius: 50%;
    background: #0D99FF;
    margin-top: -6px;
    cursor: pointer;
}

.range_pointssize:focus {
    outline: none;
}

.range_pointssize:focus::-webkit-slider-runnable-track {
    background: #ccc;
}



@media screen and (max-width: 768px) {

    .button{
        min-width: 40px;
        font-size: 0;
    }

    .icon_reflect::before{
        left: 0;
    }
    
    .icon_remove::before{
        left: 0;
    }
    
    .icon_rotate::before{
        left: 0;
    }
    .icon_copy::before{
        left: 0;
    }
    .header_input{
        text-align: left;
        line-height: 30px;
    }
    .header_left, .header_right{
        width: auto;
    }
    .header{
        height: 40px;
    }
    .canvas_case{
        height: calc(100% - 40px);
    }
    .header_button{
        padding: 4px 10px;
    }
    .header_center{
        position: absolute;
        top:40px;
        z-index: 9999;
        right: 0;
        left: 0;
        background: #ffffff;
        border-bottom: 1px solid #DADCE0;
        box-sizing: border-box;
    }

    .button_text{
        min-width: 120px;
        font-size: 13px;
    }

    .menu_case{
        height: 40px;
    }
    .menu_link_case{
        top:40px;
    }

    .auxtools{
        flex-direction: row;
        top: 40px;
        justify-content: space-between;
        left: 0;
        right: 0;
        margin-left: 15px;
        margin-right: 15px;
    }
    .range_pointssize{
        transform: none;
    }
    .range_pointssize_case{
        height: 10px;
        width: 150px;
    }
    .auxbutton{
        margin-left: 0;
        margin-top: 0;
    }
    .tools{
        bottom: 10px;
    }
}


@media screen and (max-width: 370px) {

    .button, .color_picker, .button_select{
        margin-left: 5px;
    }

}

@media screen and (max-width: 330px) {

    .button, .color_picker, .button_select{
        margin-left: 0;
    }

}

