.alert__back {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 29;
}
.alert__box {
    position: absolute;
    top: 0;
    left: 0;
    right: 1em;
    bottom: 0;
    width: 97.3em;
    height: 43em;
    margin: auto;
    background: white;
    -webkit-box-shadow: 1em 1em var(--main-color);
       -moz-box-shadow: 1em 1em var(--main-color);
            box-shadow: 1em 1em var(--main-color);
    border: solid 1px #c0c0c0;
}
.alert__close {
    position: absolute;
    top: 0;
    right: 0;
    width: 4.3em;
    height: 4.5em;
    background-image: url("images/svg/close.svg");
    -moz-background-size: 60%;
         background-size: 60%;
    background-position: center;
    background-repeat: no-repeat;
}
.alert__title {
    height: 10em;
    border-bottom: solid 1px #c0c0c0;
    padding-left: 5.8em;
    font-family: Kontora_bold;
    line-height: 11em;
    text-align: center;
}
.alert__title span {
    font-size: 4.55em;
}
.alert__text {
    margin-top: 8em;
    padding-left: 2em;
}
.alert__text span {
    font-size: 3.52em;
}
.alert__footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 9.5em;
    padding-right: 0.5em;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
            justify-content: space-around;
}
.alert__button {
    width: 45em;
    height: 7.5em;
    -webkit-box-shadow: 0.5em 0.5em var(--main-color);
       -moz-box-shadow: 0.5em 0.5em var(--main-color);
            box-shadow: 0.5em 0.5em var(--main-color);
    font-family: Kontora_bold;
    line-height: 7.5em;
    text-align: center;
}
.alert__button.ok {
    padding-left: 2.5em;
    color: white;
    background: -webkit-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
    background: -moz-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
    background: -o-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
    background: linear-gradient(35deg, var(--grad_start), var(--grad_stop));
}
.alert__button.chancel {
    border: solid 1px #c0c0c0;
    background: #e6e6e6;
}
.alert__button span {
    font-size: 3.7em;
}

/* - - - - - h-tablet - - - - - */

.h-tablet .alert__back {
    font-size: 0.548em;
}

/* - - - - - desktop - - - - - */

.desktop .alert__back {
    font-size: 0.221em;
}
.alert__button,
.alert__close {
    cursor: pointer;
}
.alert__button.ok:hover {
    background: -webkit-linear-gradient(55deg, var(--grad_stop), var(--grad_start));
    background: -moz-linear-gradient(55deg, var(--grad_stop), var(--grad_start));
    background: -o-linear-gradient(55deg, var(--grad_stop), var(--grad_start));
    background: linear-gradient(35deg, var(--grad_stop), var(--grad_start));
}
.alert__button.chancel:hover {
    background: #ddd;
}




@-webkit-keyframes dev_rotate_css{
    0%{
        -webkit-transform: rotate(0);
                transform: rotate(0);
    }
    100%{
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}
@-moz-keyframes dev_rotate_css{
    0%{
        -moz-transform: rotate(0);
             transform: rotate(0);
    }
    100%{
        -moz-transform: rotate(360deg);
             transform: rotate(360deg);
    }
}
@-o-keyframes dev_rotate_css{
    0%{
        -o-transform: rotate(0);
           transform: rotate(0);
    }
    100%{
        -o-transform: rotate(360deg);
           transform: rotate(360deg);
    }
}
@keyframes dev_rotate_css{
    0%{
        -webkit-transform: rotate(0);
           -moz-transform: rotate(0);
             -o-transform: rotate(0);
                transform: rotate(0);
    }
    100%{
        -webkit-transform: rotate(360deg);
           -moz-transform: rotate(360deg);
             -o-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}
@-webkit-keyframes dev_scale_css{
    0%{
        -webkit-transform: scale(1);
                transform: scale(1);
    }
    90%{
        -webkit-transform: scale(1.3);
                transform: scale(1.3);
    }
    100%{
        -webkit-transform: scale(1);
                transform: scale(1);
    }
}
@-moz-keyframes dev_scale_css{
    0%{
        -moz-transform: scale(1);
             transform: scale(1);
    }
    90%{
        -moz-transform: scale(1.3);
             transform: scale(1.3);
    }
    100%{
        -moz-transform: scale(1);
             transform: scale(1);
    }
}
@-o-keyframes dev_scale_css{
    0%{
        -o-transform: scale(1);
           transform: scale(1);
    }
    90%{
        -o-transform: scale(1.3);
           transform: scale(1.3);
    }
    100%{
        -o-transform: scale(1);
           transform: scale(1);
    }
}
@keyframes dev_scale_css{
    0%{
        -webkit-transform: scale(1);
           -moz-transform: scale(1);
             -o-transform: scale(1);
                transform: scale(1);
    }
    90%{
        -webkit-transform: scale(1.3);
           -moz-transform: scale(1.3);
             -o-transform: scale(1.3);
                transform: scale(1.3);
    }
    100%{
        -webkit-transform: scale(1);
           -moz-transform: scale(1);
             -o-transform: scale(1);
                transform: scale(1);
    }
}
.local__deploy_start{
    position: fixed;
    bottom: 1em;
    left: 1em;
    width: 10em;
    height: 10em;
    -webkit-border-radius: 50%;
       -moz-border-radius: 50%;
            border-radius: 50%;
    background-image: url("images/dev/blue.jpg");
    -moz-background-size: cover;
         background-size: cover;
    color: transparent;
    cursor: pointer;
    z-index: 31;
}
.local__deploy_start.ok{
    background-image: url("images/dev/green.jpg");
    -webkit-animation: 5s dev_rotate_css infinite linear;
       -moz-animation: 5s dev_rotate_css infinite linear;
         -o-animation: 5s dev_rotate_css infinite linear;
            animation: 5s dev_rotate_css infinite linear;
}
.local__deploy_start.error{
    background-image: url("images/dev/red.jpg");
    -webkit-animation: 1s dev_scale_css infinite;
       -moz-animation: 1s dev_scale_css infinite;
         -o-animation: 1s dev_scale_css infinite;
            animation: 1s dev_scale_css infinite;
}

/* - - - - - desktop - - - - - */

.desktop .local__deploy_start{
    bottom: 0.3em;
    left: 0.3em;
    width: 3em;
    height: 3em;
}


.development__back{
    position: absolute;
    width: 100%;
    height: 1000vh;
    -moz-background-size: 100%;
         background-size: 100%;
    background-repeat: no-repeat;
    -webkit-filter: hue-rotate(210deg);
            filter: hue-rotate(210deg);
    z-index: 200;
    opacity: .5;
    pointer-events: none;
}


.home{
	color: #f00;
}
.collection{
	color: #00f;
}
.product{
	color: #0f0;
}
.product_cart{
	width: 100%;
	height: 100%;
}
.change_left{
	display: none;
}
.change_right{

}
.mcard_outbox{
	float: left;
	margin-bottom: 5%;
	background-color: #fff;
}
.banner{
	margin: 5.5em 0 0 0;
    width: 100%;
}
.compilation{
	width: 100%;
	margin: 5.5em 0 0 0;
}
.cart{
	width: 100%;
}
.buy_button{
	clear: both;
	float: right;
	width: 60em;
	height: 12em;
	line-height: 12em;
	margin: 5em 5em 0 0;
	background-color: #ffd2a5;
	cursor: pointer;
	-webkit-transition: 0.9s;
	-o-transition: 0.9s;
	-moz-transition: 0.9s;
	transition: 0.9s;
}
.buy_button:nth-child(4){
	background-color: #f2f2f2;
}
.buy_button:hover{
    background-color: #ffb973;
}
.buy_text{
	font-size: 5em;
	text-align: center;
}
.cart_header_text{
	margin: 0.6em 0 0.5em 0.5em;
	width: 100%;
	font-size: 10em;
}
.cart_header_buttons{
	width: 100%;
	font-size: 4em;
	background-color: rgba(255,150,0,0.3);
}
.cart_topprice_container{
	display: none;
	position: relative;
	width: 90%;
	height: 15em;
	margin-bottom: 15em;
}

.account__partsaletitlemini{
	font-size: 5em;
	margin: 1em 0 0 2em;
}
.account__moneycontainer{
	background-color: #a7b9d1;
    margin: 5% 0 0 5%;
    width: 100%;
    height: 10em;
    -webkit-border-radius: 5em;
       -moz-border-radius: 5em;
            border-radius: 5em;
    overflow: hidden;
}
.account__colorstrip{
    float: left;
    width: 55%;
    height: 100%;
    background-image: -webkit-gradient(linear, left top, right top, from(#7da0d1), to(#5488d1));
    background-image: -webkit-linear-gradient(left, #7da0d1, #5488d1);
    background-image: -moz-linear-gradient(left, #7da0d1, #5488d1);
    background-image: -o-linear-gradient(left, #7da0d1, #5488d1);
    background-image: linear-gradient(to right, #7da0d1, #5488d1);
}
.account__currentnumberin{
	color: #fff;
    font-size: 5em;
    line-height: 2em;
    text-align: center;
}
.account__nextnumber{
	position: absolute;
	bottom: -100%;
	right: 0;
    font-size: 5em;
    color: #000;
}

.cart_allprice{
	width: 100%;
	height: 20em;
	padding-right: 5%;
}
.cart_allprice_text{
	float: right;
	font-size: 6em;
	line-height: 3em;
    font-family: Kontora_bold;
}
.category_sort{
	position: relative;
	float: left;
	width: 37.5%;
	font-size: 1.2em;
}
.category_left{
	position: relative;
	float: right;
	width: 23.2%;
}
.category_bread{
    width: 100%;
    clear: both;
    padding-top: 1px;
}
.category__search_title{
    margin: 3em;
    line-height: 10em;
    padding-left: 1em;
}
.category__search_big_text,
.category__search_search_text{
    font-size: 4.8em;
}
.category__search_search_text{
    color: var(--main-color);
}
.category__search_small_text{
    font-size: 3em;
    color: #aaa;
}
.category__search_nowrap{
    white-space: nowrap;
}
.category_filter_double{
	clear: both;
	padding: 0 1.5em;
}
.sub_categories__box{
    font-size: 1em;
}

/* - - - - - not_mobile - - - - - */

.not_mobile .mcard_outbox{
	float: left;
	margin: 0 0 4% 2.5%;
	border: 1px solid black;
	-webkit-box-shadow: 3em 3em 0 0 #d17165;
	   -moz-box-shadow: 3em 3em 0 0 #d17165;
	        box-shadow: 3em 3em 0 0 #d17165;
}

/* - - - - - tablet - - - - - */

.tablet .mcard_outbox{
	width: 44%;
	font-size: 0.44em;
}
.tablet .mcard_outbox:nth-of-type(2n+1){
	clear:both;
}
.tablet .cart_header_buttons{
	font-size: 4em;
}
.tablet .category_filter_double{
	font-size: 0.8em;
}
.tablet .category_sort{
	font-size: 0.88em;
	width: 27.3%;
}
.tablet .category_left{
	width: 17.5%;
}
.tablet .category_right_prod_box{
	padding-top: 10em;
}
.tablet .category_right_subcat_box{
	font-size: 0.667em;
}
.tablet .category__search_title{
    font-size: 0.68em;
    margin: 3em 4.5em;
}

/* - - - - - h-tablet - - - - - */

.h-tablet .category_sort{
    font-size: 0.645em;
    width: 20%;
    margin-top: -9em;
}
.h-tablet .category_left{
    font-size: 0.7em;
    width: 12%;
    margin-top: -8.5em;
}
.h-tablet .category__search_title{
    font-size: 0.44em;
    margin-top: 0.2em;
    margin-left: 3em;
}
.h-tablet .sub_categories__box{
    font-size: 0.67em;
}

/* - - - - - desktop - - - - - */

.desktop .category_right_subcat_box{
	font-size: 0.2em;
	padding-left: 5.2em;
}
.desktop .category_sort{
	position: absolute;
	top: 4em;
	right: 0;
	font-size: 0.3em;
	width: 15%;
}
.desktop .category_left{
	position: absolute;
	top: 0;
	left: 0;
	width: 17.3%;
}
.desktop .category_bread,
.desktop .category_filter_double,
.desktop .category_right{
	float: right;
	width: 80%;
}
.desktop .category__search_title{
    font-size: 0.271em;
    margin-top: 2.5em;
    padding: 0;
}
.desktop .category_filter_double{
	font-size: 0.2em;
	margin-top: -4em;
	margin-bottom: 2em;
	padding-left: 8em;
}
.desktop .category_right_prod_box{
	margin-top: 0;
}
.desktop .mcard_outbox{
	width: 22.35%;
	font-size: 0.135em;
}
.desktop .mcard_outbox:nth-of-type(4n+1){
	clear:both;
}
.desktop .compilation{
	margin: 2em 0 0 0;
}
.desktop .banner{
	margin: 2em 0 0 0;
}
.desktop .nextprev{
	float: left;
	margin-top: 2em;
	width: 100%;
	height: 5em;
}
.desktop .buy_button{
	width: 20em;
	height: 4em;
	line-height: 4em;
	margin: 1em 1em 0 0;
}
.desktop .buy_text{
	font-size: 1.7em;
}
.desktop .cart_header_text{
	margin: 0.6em 0 0.5em 0.5em;
	font-size: 4em;
}
.desktop .cart_header_buttons{
	font-size: 1.8em;
}
.desktop .cart_topprice_container{
	float: right;
	width: 40%;
	height: 10em;
	margin-bottom: 3em;
}

.desktop .account__partsaletitlemini{
	font-size: 2em;
	margin: 1em 0 0 1em;
}
.desktop .account__moneycontainer{
    height: 4em;
    -webkit-border-radius: 2em;
       -moz-border-radius: 2em;
            border-radius: 2em;
}
.desktop .account__currentnumberin{
    font-size: 2em;
    line-height: 2em;
    text-align: center;
}
.desktop .account__nextnumber{
	position: absolute;
	bottom: -30%;
	right: 0;
    font-size: 2em;
    color: #000;
}
.desktop .cart_allprice{
	height: 10em;
	padding-right: 3%;
}
.desktop .cart_allprice_text{
	font-size: 2em;
	line-height: 5em;
}
.desktop .sub_categories__box{
    font-size: 0.3115em;
}


@font-face{
	font-family: RUB;
	src: url(fonts/RUBSR.otf);
}
@font-face{
	font-family: Qanelas;
	src: url(fonts/Qanelas-Regular.woff2);
}
@font-face{
	font-family: Kontora;
	src: url(fonts/Kontora.otf);
}
@font-face{
	font-family: Kontora_bold;
	src: url(fonts/Kontora_bold.otf);
}
@font-face{
	font-family: Kontora_thin;
	src: url(fonts/Kontora_thin.otf);
}
@font-face{
	font-family: RomanaScript;
	src: url(fonts/RomanaScript.ttf);
}
@-webkit-keyframes round{
  0%{-webkit-transform: rotate(0deg);transform: rotate(0deg)}
  100%{-webkit-transform: rotate(360deg);transform: rotate(360deg)}
}
@-moz-keyframes round{
  0%{-moz-transform: rotate(0deg);transform: rotate(0deg)}
  100%{-moz-transform: rotate(360deg);transform: rotate(360deg)}
}
@-o-keyframes round{
  0%{-o-transform: rotate(0deg);transform: rotate(0deg)}
  100%{-o-transform: rotate(360deg);transform: rotate(360deg)}
}
@keyframes round{
  0%{-webkit-transform: rotate(0deg);-moz-transform: rotate(0deg);-o-transform: rotate(0deg);transform: rotate(0deg)}
  100%{-webkit-transform: rotate(360deg);-moz-transform: rotate(360deg);-o-transform: rotate(360deg);transform: rotate(360deg)}
}
@-webkit-keyframes loading{
    0%{
        -webkit-transform: scaleX(0);
                transform: scaleX(0);
        -webkit-transform-origin: left;
                transform-origin: left;
    }
    30%{
        -webkit-transform: scaleX(1);
                transform: scaleX(1);
        -webkit-transform-origin: left;
                transform-origin: left;
    }
    31%{
        -webkit-transform: scaleX(1);
                transform: scaleX(1);
        -webkit-transform-origin: right;
                transform-origin: right;
    }
    70%{
        -webkit-transform: scaleX(0);
                transform: scaleX(0);
        -webkit-transform-origin: right;
                transform-origin: right;
    }
    100%{
        -webkit-transform: scaleX(0);
                transform: scaleX(0);
        -webkit-transform-origin: left;
                transform-origin: left;
    }
}
@-moz-keyframes loading{
    0%{
        -moz-transform: scaleX(0);
             transform: scaleX(0);
        -moz-transform-origin: left;
             transform-origin: left;
    }
    30%{
        -moz-transform: scaleX(1);
             transform: scaleX(1);
        -moz-transform-origin: left;
             transform-origin: left;
    }
    31%{
        -moz-transform: scaleX(1);
             transform: scaleX(1);
        -moz-transform-origin: right;
             transform-origin: right;
    }
    70%{
        -moz-transform: scaleX(0);
             transform: scaleX(0);
        -moz-transform-origin: right;
             transform-origin: right;
    }
    100%{
        -moz-transform: scaleX(0);
             transform: scaleX(0);
        -moz-transform-origin: left;
             transform-origin: left;
    }
}
@-o-keyframes loading{
    0%{
        -o-transform: scaleX(0);
           transform: scaleX(0);
        -o-transform-origin: left;
           transform-origin: left;
    }
    30%{
        -o-transform: scaleX(1);
           transform: scaleX(1);
        -o-transform-origin: left;
           transform-origin: left;
    }
    31%{
        -o-transform: scaleX(1);
           transform: scaleX(1);
        -o-transform-origin: right;
           transform-origin: right;
    }
    70%{
        -o-transform: scaleX(0);
           transform: scaleX(0);
        -o-transform-origin: right;
           transform-origin: right;
    }
    100%{
        -o-transform: scaleX(0);
           transform: scaleX(0);
        -o-transform-origin: left;
           transform-origin: left;
    }
}
@keyframes loading{
    0%{
        -webkit-transform: scaleX(0);
           -moz-transform: scaleX(0);
             -o-transform: scaleX(0);
                transform: scaleX(0);
        -webkit-transform-origin: left;
           -moz-transform-origin: left;
             -o-transform-origin: left;
                transform-origin: left;
    }
    30%{
        -webkit-transform: scaleX(1);
           -moz-transform: scaleX(1);
             -o-transform: scaleX(1);
                transform: scaleX(1);
        -webkit-transform-origin: left;
           -moz-transform-origin: left;
             -o-transform-origin: left;
                transform-origin: left;
    }
    31%{
        -webkit-transform: scaleX(1);
           -moz-transform: scaleX(1);
             -o-transform: scaleX(1);
                transform: scaleX(1);
        -webkit-transform-origin: right;
           -moz-transform-origin: right;
             -o-transform-origin: right;
                transform-origin: right;
    }
    70%{
        -webkit-transform: scaleX(0);
           -moz-transform: scaleX(0);
             -o-transform: scaleX(0);
                transform: scaleX(0);
        -webkit-transform-origin: right;
           -moz-transform-origin: right;
             -o-transform-origin: right;
                transform-origin: right;
    }
    100%{
        -webkit-transform: scaleX(0);
           -moz-transform: scaleX(0);
             -o-transform: scaleX(0);
                transform: scaleX(0);
        -webkit-transform-origin: left;
           -moz-transform-origin: left;
             -o-transform-origin: left;
                transform-origin: left;
    }
}
@-webkit-keyframes load_photo{
    0%{
        -webkit-transform: rotate(0);
                transform: rotate(0);
    }
    100%{
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}
@-moz-keyframes load_photo{
    0%{
        -moz-transform: rotate(0);
             transform: rotate(0);
    }
    100%{
        -moz-transform: rotate(360deg);
             transform: rotate(360deg);
    }
}
@-o-keyframes load_photo{
    0%{
        -o-transform: rotate(0);
           transform: rotate(0);
    }
    100%{
        -o-transform: rotate(360deg);
           transform: rotate(360deg);
    }
}
@keyframes load_photo{
    0%{
        -webkit-transform: rotate(0);
           -moz-transform: rotate(0);
             -o-transform: rotate(0);
                transform: rotate(0);
    }
    100%{
        -webkit-transform: rotate(360deg);
           -moz-transform: rotate(360deg);
             -o-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}
:root {
  --main-color: #db6c64;
  --main-bg-color: #f2f2f2;
  --grad_start: #d27261;
  --grad_stop: #e05a86;
  --dev1: rgba(255,0,0,0.5);
  --dev2: rgba(0,255,0,0.5);
  --dev3: rgba(0,0,255,0.5);
}
*{
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
::-moz-selection{
	color: #fff;
	background-color: rgba(0,0,0,0.99);
}
::selection{
	color: #fff;
	background-color: rgba(0,0,0,0.99);
}

html{
    scrollbar-gutter: stable;
    width: 100%;
}
body {
    scrollbar-gutter: stable;
	position: absolute;
	margin: 0;
	width: 100%;
    min-height: 100vh;
	font-family: Kontora;
	-moz-background-size: cover;
	     background-size: cover;
	background-repeat: no-repeat;
	background-color: var(--main-bg-color);
	background-blend-mode: luminosity;
	-webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
	overflow-x: hidden;
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
}
.mobile body,
.tablet body {
    overflow-y: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.mobile body::-webkit-scrollbar,
.tablet body::-webkit-scrollbar {
    width: 0;
    background: transparent;
}
a,
a:visited,
a:focus,
a:active {
	text-decoration: none;
    color: inherit;
}
a:link {
	-webkit-tap-highlight-color: transparent;
}
b {
    font-family: Kontora_bold;
    color: #383838;
}

/* - - - - - page_exit - - - - - */

.anim_pex {
	position: relative;
}
.anim_pex:before {
	content: '';
	position: absolute;
	top: -1em;
	bottom: -1em;
    right: -1em;
    width: -webkit-calc(100% + 2em);
    width: -moz-calc(100% + 2em);
    width: calc(100% + 2em);
	background-color: var(--main-bg-color);
	-webkit-transition: -webkit-transform 400ms ease-out;
	transition: -webkit-transform 400ms ease-out;
	-o-transition: -o-transform 400ms ease-out;
	-moz-transition: transform 400ms ease-out, -moz-transform 400ms ease-out;
	transition: transform 400ms ease-out;
	transition: transform 400ms ease-out, -webkit-transform 400ms ease-out, -moz-transform 400ms ease-out, -o-transform 400ms ease-out;
	-webkit-transform: scaleX(0);
	   -moz-transform: scaleX(0);
	    -ms-transform: scaleX(0);
	     -o-transform: scaleX(0);
	        transform: scaleX(0);
	-webkit-transform-origin: right;
	   -moz-transform-origin: right;
	    -ms-transform-origin: right;
	     -o-transform-origin: right;
	        transform-origin: right;
    z-index: 11;
}
.anim_pex.max:before {
    font-size: 5em;
}
body:after {
    content: '';
    position: fixed;
    top:0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 50vw;
    height: 3vw;
    background: var(--main-color);
    -webkit-transform: scaleX(0);
       -moz-transform: scaleX(0);
        -ms-transform: scaleX(0);
         -o-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: left;
       -moz-transform-origin: left;
        -ms-transform-origin: left;
         -o-transform-origin: left;
            transform-origin: left;
    z-index: 12;
}
.v-tablet body:after {
    width: 33vw;
    height: 2vw;
}
.h-tablet body:after {
    width: 22vw;
    height: 1.5vw;
}
.desktop body:after {
    width: 15vw;
    height: 1vw;
}
.page_exit .anim_pex:before {
    left: -1em;
    right: auto;
    -webkit-transform: scaleX(1);
       -moz-transform: scaleX(1);
        -ms-transform: scaleX(1);
         -o-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: left;
       -moz-transform-origin: left;
        -ms-transform-origin: left;
         -o-transform-origin: left;
            transform-origin: left;
}
 body.page_exit:after {
     -webkit-animation: 800ms 600ms loading infinite linear;
        -moz-animation: 800ms 600ms loading infinite linear;
          -o-animation: 800ms 600ms loading infinite linear;
             animation: 800ms 600ms loading infinite linear;
}

/* - - - - - page_exit - - - - - */

form{
    -webkit-margin-after: 0;
            margin-block-end: 0;
}
input{
	padding-left: 0.5em;
	border: none;
}
input:focus{
	outline: none;
}
input:focus::-webkit-input-placeholder{
	opacity: 0.3;
}
input:focus:-moz-placeholder{
	opacity: 0.3;
}
input:focus::-moz-placeholder{
	opacity: 0.3;
}
input:focus:-ms-input-placeholder{
	opacity: 0.3;
}
input:focus::-ms-input-placeholder{
	opacity: 0.3;
}
input:focus::placeholder{
	opacity: 0.3;
}
.clear_right{
	clear: right;
}
.clear_both{
    clear: both;
}
.font_bold{
    font-weight: bold;
}
.display_none{
	display: none;
}
.no_visible{
	pointer-events: none !important;
	opacity: 0 !important;
}
.versa_round{
	-webkit-transform: rotate(180deg);
	   -moz-transform: rotate(180deg);
	    -ms-transform: rotate(180deg);
	     -o-transform: rotate(180deg);
	        transform: rotate(180deg);
}
.no_active{
	pointer-events: none !important;
}
.nowrap_ellipsis{
	white-space: nowrap;
	overflow: hidden;
	-o-text-overflow: ellipsis;
	   text-overflow: ellipsis;
}

.main_container{
	position: relative;
	font-size: 0.8vw;
	width: 100%;
	min-height: 100vh;
    margin-bottom: 20em;
	overflow: hidden;
	//background-color: rgb(229, 196, 31);
}
.left_container{
	position: absolute;
}
.right_container{
	width: 100%;
	height: 100%;
}
.change_container{
	position: relative;
	margin: 17.8625em 0 26em 0;
}
.change_container.transition{
    -webkit-transition: min-height 1s;
    -o-transition: min-height 1s;
    -moz-transition: min-height 1s;
    transition: min-height 1s;
}

/* - - - - - mobile - - - - - */

.mobile .mobile_display_none{
	display: none !important;
}

/* - - - - - not_mobile - - - - - */

.not_mobile .not_mobile_display_none{
	display: none !important;
}

/* - - - - - tablet - - - - - */

.tablet .tablet_display_none{
    display: none !important;
}
.tablet .change_container{
	margin-top: 10.9vw;
}

/* - - - - - v-tablet - - - - - */

.v-tablet .v-tablet_display_none{
    display: none !important;
}

/* - - - - - h-tablet - - - - - */

.h-tablet .h-tablet_display_none{
    display: none !important;
}
.h-tablet .change_container{
    margin-top: 8.9vw;
}
/* - - - - - desktop - - - - - */

.desktop .change_container{
	margin: 0 0 12em 0;
}
.desktop .main_container{
	font-size: 0.8vw;
	width: 80%;
	margin: auto;
	padding: 1.3em 3em;
}
.desktop .left_container{
	padding: 1em 0 0 1em;
	width: 22%;
}
.desktop .right_container{
	width: 78%;
	padding: 1em 0 0 1em;
}
/* - - - - - svg colors - - - - - */

.svg_pinc_black{
	fill: #e06374;
}
div:hover>svg>.svg_pinc_black{
	fill: #333;
}
.svg_black_pinc{
	fill: #333;
}
div:hover>svg>.svg_black_pinc{
	fill: #e06374;
}
.desktop .svg_white_pinc{
	fill: #fff;
}
div:hover>div>svg>.svg_white_pinc{
	fill: var(--main-color);
}

/* - - - - - load photo animation - - - - - */

.load-photo {
    position: relative;
}
.load-photo::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 50%;
    height: 50%;
    margin: auto;
    background-image: url('images/svg/load.svg');
    -moz-background-size: contain;
         background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    -webkit-animation: load_photo 1s infinite steps(8);
       -moz-animation: load_photo 1s infinite steps(8);
         -o-animation: load_photo 1s infinite steps(8);
            animation: load_photo 1s infinite steps(8);
    z-index: -1;
}





.admin_ps__left_box {
    float: left;
    width: 20%;
}
.admin_ps__right_box {
    float: right;
    width: 80%;
}
.admin_ps__size_box {
    margin: 1em;
    height: 3em;
    -webkit-border-radius: 1.5em;
       -moz-border-radius: 1.5em;
            border-radius: 1.5em;
    background: #ec8c58;
}
.admin_ps__size_name {
    float: left;
    width: 80%;
    line-height: 3em;
    text-align: center;
}
.admin_ps__size_name span{
    font-size: 1.5em;
}
.admin_ps__size_delete {
    float: right;
    width: 3em;
    height: 100%;
    padding: 0.8em;
    -webkit-border-radius: 50%;
       -moz-border-radius: 50%;
            border-radius: 50%;
    background: #bd2a6c;
    cursor: pointer;
}
.admin_ps__new {
    margin-top: 5em;
    padding: 1em;
    text-align: center;
    -webkit-border-radius: 1.5em 1.5em 0 0;
       -moz-border-radius: 1.5em 1.5em 0 0;
            border-radius: 1.5em 1.5em 0 0;
    background: rosybrown;
}
.admin_ps__new_size_box {
    font-size: 0.45em;
}
.admin_ps__form_left {
    float: left;
    margin-left: 1em;
    width: -webkit-calc(50% - 1em);
    width: -moz-calc(50% - 1em);
    width: calc(50% - 1em);
    padding-top: 3em;
}
.admin_ps__form_left .input__container:nth-of-type(2) {
    margin-top: -3em;
    margin-bottom: 5em;
}
.admin_ps__form_left.auto .input__container:nth-of-type(1) {
    opacity: 0.5;
    pointer-events: none;
}
#admin_ps__new_size_button {
    clear: both;
}



.server_dialog__container {
    position: fixed;
    top: 0;
    bottom: 10vh;
    left: 0;
    right: 0;
    width: 30vw;
    height: 25vw;
    margin: auto;
    background: #fc9f27;
    -webkit-transform: translateY(-10vw);
       -moz-transform: translateY(-10vw);
        -ms-transform: translateY(-10vw);
         -o-transform: translateY(-10vw);
            transform: translateY(-10vw);
    opacity: 0;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    -moz-transition: 0.5s;
    transition: 0.5s;
    z-index: 1;
}
.server_dialog__chancel {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.5);
    -webkit-transform: scale(0);
       -moz-transform: scale(0);
        -ms-transform: scale(0);
         -o-transform: scale(0);
            transform: scale(0);
    -webkit-transition: 0.5s 0.2s;
    -o-transition: 0.5s 0.2s;
    -moz-transition: 0.5s 0.2s;
    transition: 0.5s 0.2s;
}
.server_dialog__container.open+.server_dialog__chancel {
    -webkit-transition-delay: 0s;
       -moz-transition-delay: 0s;
         -o-transition-delay: 0s;
            transition-delay: 0s;
    -webkit-transform: scale(1);
       -moz-transform: scale(1);
        -ms-transform: scale(1);
         -o-transform: scale(1);
            transform: scale(1);
}
.server_dialog__container.open {
    -webkit-transition-delay: 0.2s;
       -moz-transition-delay: 0.2s;
         -o-transition-delay: 0.2s;
            transition-delay: 0.2s;
    -webkit-transform: translateY(0);
       -moz-transform: translateY(0);
        -ms-transform: translateY(0);
         -o-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
}
.server_dialog__request {
    margin-top: 9vw;
    -webkit-transform: translateY(-50%) scale(0);
       -moz-transform: translateY(-50%) scale(0);
        -ms-transform: translateY(-50%) scale(0);
         -o-transform: translateY(-50%) scale(0);
            transform: translateY(-50%) scale(0);
    padding: 2em;
}
.server_dialog__request {
    font-size: 2em;
    text-align: center;
    -webkit-transform: scale(0);
       -moz-transform: scale(0);
        -ms-transform: scale(0);
         -o-transform: scale(0);
            transform: scale(0);
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    -moz-transition: 0.5s;
    transition: 0.5s;
}
.server_dialog__request.open {
    -webkit-transform: translateY(-50%) scale(1);
       -moz-transform: translateY(-50%) scale(1);
        -ms-transform: translateY(-50%) scale(1);
         -o-transform: translateY(-50%) scale(1);
            transform: translateY(-50%) scale(1);
}
.server_dialog__response {
    position: absolute;
    top: 1vw;
    bottom: 4vw;
    left: 1vw;
    right: 1vw;
    padding: 1vw;
    background: black;
    color: #ff0;
    -webkit-transform: scale(0);
       -moz-transform: scale(0);
        -ms-transform: scale(0);
         -o-transform: scale(0);
            transform: scale(0);
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    -moz-transition: 0.5s;
    transition: 0.5s;
}
.server_dialog__response span:nth-of-type(1){
    color: #0f0;
}
.server_dialog__response span:nth-of-type(2){
    color: #f00;
}
.server_dialog__response.open {
    -webkit-transition-delay: 0.5s;
       -moz-transition-delay: 0.5s;
         -o-transition-delay: 0.5s;
            transition-delay: 0.5s;
    -webkit-transform: scale(1);
       -moz-transform: scale(1);
        -ms-transform: scale(1);
         -o-transform: scale(1);
            transform: scale(1);
}
.server_dialog__button {
    position: absolute;
    bottom: 1vw;
    left: 1vw;
    right: 1vw;
    width: 10vw;
    height: 2vw;
    margin: auto;
    -webkit-border-radius: 1vw;
       -moz-border-radius: 1vw;
            border-radius: 1vw;
    background: #490680;
    color: white;
    line-height: 2vw;
    text-align: center;
    cursor: pointer;
}
.server_dialog__button:hover {
    background: #0e1993;
}


.input__container{
    position: relative;
    margin-bottom: 1.5em;
}
.input__title,
.input__error {
    padding-left: 3.5em;
}
.input__error {
   height: 2.3em;
}
.input__title span{
     font-size: 1.8em;
 }
.input__error span {
    font-size: 1.8em;
    color: var(--main-color);
}
.input__container input[type=text],
.input__container input[type=password] {
    font-size: 2.5em;
    width: 100%;
    height: 2.562em;
    border: solid 1px #d2d2d2;
    -webkit-border-radius: 1.169em;
       -moz-border-radius: 1.169em;
            border-radius: 1.169em;
    padding: 0.14em 0.98em 0 0.98em;
    margin-top: 0.14em;
    margin-bottom: 0.28em;
 }
.input__container input[type=password] {
    padding-right: 3.444em;
}
.input__container input[type=number] {
    float: left;
    font-size: 7.9em;
    width: 1.5em;
    height: 1.5em;
    border: solid 1px #d2d2d2;
    -webkit-border-radius: 0.08em;
       -moz-border-radius: 0.08em;
            border-radius: 0.08em;
    margin-right: 0.37em;
}
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type=number] {
    -moz-appearance: textfield;
}
input[type=number]:hover,
input[type=number]:focus {
    -moz-appearance: number-input;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.input__container input[type=text]:-internal-autofill-selected,
.input__container input[type=password]:-internal-autofill-selected {
    -webkit-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0), inset 0 0 0 100px rgba(255, 255, 255,1);
       -moz-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0), inset 0 0 0 100px rgba(255, 255, 255,1);
            box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0), inset 0 0 0 100px rgba(255, 255, 255,1);
}
.input__container input.error,
.auth__form_box.error input[type=number] {
    border-color: var(--main-color);
}
.auth__form_box.error input[type=number]{
    color: var(--main-color);
}
.auth__form_box.not_found input[type=number]{
    border-color: var(--main-color);
    color: var(--main-color);
}
.input__password_view,
.input__password_hide{
    position: absolute;
    top: 3.8em;
    right: 2.6em;
    width: 3.8em;
    height: 4em;
    cursor: pointer;
    display: none;
}
.input__container input[type=text]+div .input__password_hide{
    display: block;
}
.input__container input[type=password]+div .input__password_view{
    display: block;
}
.input__password_view svg,
.input__password_hide svg{
    fill: #d2d2d2;
}
.input__container input[type=checkbox]{
    display: none;
}
.input__container label {
    display: block;
    position: relative;
    margin: 2em 0;
    padding-left: 2.4em;
    line-height: 3.1em;
    cursor: pointer;
}
.input__container label span {
    font-size: 2.27em;
    padding-left: 0.7em;
}
.input__label_out {
    position: relative;
    float: left;
    width: 3.1em;
    height: 3.1em;
    border: solid 1px #d2d2d2;
}
.input__label_in{
     position: absolute;
     width: 0;
     overflow: hidden;
     -webkit-transition: width 0.2s cubic-bezier(0.4, 0, 0.23, 1);
     -o-transition: width 0.2s cubic-bezier(0.4, 0, 0.23, 1);
     -moz-transition: width 0.2s cubic-bezier(0.4, 0, 0.23, 1);
     transition: width 0.2s cubic-bezier(0.4, 0, 0.23, 1);
 }
.input__label_up{
     position: absolute;
     width: 100%;
     height: 100%;
     background-color: #fff;
     border: solid 1px #aaa;
     -webkit-transition: -webkit-transform 0.2s cubic-bezier(0.4, 0, 0.23, 1);
     transition: -webkit-transform 0.2s cubic-bezier(0.4, 0, 0.23, 1);
     -o-transition: -o-transform 0.2s cubic-bezier(0.4, 0, 0.23, 1);
     -moz-transition: transform 0.2s cubic-bezier(0.4, 0, 0.23, 1), -moz-transform 0.2s cubic-bezier(0.4, 0, 0.23, 1);
     transition: transform 0.2s cubic-bezier(0.4, 0, 0.23, 1);
     transition: transform 0.2s cubic-bezier(0.4, 0, 0.23, 1), -webkit-transform 0.2s cubic-bezier(0.4, 0, 0.23, 1), -moz-transform 0.2s cubic-bezier(0.4, 0, 0.23, 1), -o-transform 0.2s cubic-bezier(0.4, 0, 0.23, 1);
 }
.input__label_svg{
    width: 2.8em;
    padding: 0.3em;
}
.input__label_svg svg{
    fill: var(--main-color);
}
.input__container input[type=checkbox]:checked+label .input__label_in{
    width: 2.7em;
}
.input__container input[type=checkbox]:checked+label .input__label_up{
    -webkit-transform: scale(0,0);
       -moz-transform: scale(0,0);
        -ms-transform: scale(0,0);
         -o-transform: scale(0,0);
            transform: scale(0,0);
}


.stars__container {
    display: inline-block;
}
.stars__container.empty {
    cursor: pointer;
}
.stars__star_out,
.stars__star_in {
    width: 55.2em;
    height: 10em;
}
.stars__star_out {
    background-image: url("images/svg/star_gray.svg");
    overflow: hidden;
}
.stars__star_in {
    background-image: url("images/svg/star_yellow.svg");
}

/* - - - - - desktop - - - - - */

.desktop .stars__container.empty {
    cursor: pointer;
}


.lk__container {
    position: fixed;
    top: 0;
    width: 100%;
    min-height: 100vh;
    background-color: var(--main-bg-color);
    font-size: 1.4285714vw;
    z-index: 21;
}
.lk__header{
     height: 10.6em;
     background: -webkit-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
     background: -moz-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
     background: -o-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
     background: linear-gradient(35deg, var(--grad_start), var(--grad_stop));
 }
.lk__header_arrow{
    float: left;
    width: 10em;
    height: 100%;
    padding: 2.2em 2em 2em 3em;
    cursor: pointer;
}
.lk__container svg{
    fill: white;
}
.lk__header_text{
    float: left;
    width: 50em;
    height: 10.6em;
    line-height: 11.5em;
    color: white;
    text-align: center;
}
.lk__header_text span{
    font-size: 3.53em;
}
.lk__menu {
    display: none;
}

/* - - - - - - h-tablet - - - - - - */

.h-tablet .lk__container {
    font-size: 0.86em;
}
.h-tablet .lk__header_arrow {
    width: 12em;
    padding-left: 4.5em;
}
.h-tablet .lk__header_text {
    width: 120em;
}

/* - - - - - - desktop - - - - - - */

.desktop .lk__container {
    position: static;
}
.desktop .lk__header {
    display: none;
}
.desktop .lk__container {
    font-size: 0.52em;
}
.desktop .lk__menu {
    display: block;
    height: 7.7em;
}
.desktop .lk__part {
    float: left;
    padding: 1.6em 1.1em 0.6em;
    margin-right: 2.5em;
}
.desktop a.self>.lk__part {
    position: relative;
    background: -webkit-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
    background: -moz-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
    background: -o-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
    background: linear-gradient(35deg, var(--grad_start), var(--grad_stop));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--main-color);
    pointer-events: none;
}
.desktop a.self>.lk__part:after {
    left: 0;
    right: 0;
    bottom: 0;
    height: 0.6em;
    background: -webkit-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
    background: -moz-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
    background: -o-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
    background: linear-gradient(35deg, var(--grad_start), var(--grad_stop));
}
.desktop .lk__part b{
    font-size: 3.2em;
}



.bread__breadcrumb_box{
    margin: 3em 3em 1em;
    pointer-events: none;
}
.bread__breadcrumb{
	position: relative;
	float: left;
	height: 10em;
	line-height: -webkit-calc(10em - 2px);
	line-height: -moz-calc(10em - 2px);
	line-height: calc(10em - 2px);
	background-color: #fff;
	border-top: solid 2px #bbaa99;
	border-bottom: solid 2px #bbaa99;
	cursor: pointer;
	pointer-events: all;
}
a:nth-of-type(1) .bread__breadcrumb{
	border-left: solid 2px #bbaa99;
	z-index: 3;
}
a:nth-of-type(2) .bread__breadcrumb{
	z-index: 2;
}
a:nth-of-type(3) .bread__breadcrumb{
	z-index: 1;
}
.bread__breadcrumb_arrow{
	position: absolute;
	top: -2px;
	right: -3em;
	width: 3em;
	height: 10em;
	overflow: hidden;
	pointer-events: none;
}
.bread__breadcrumb_arrow:before,
.bread__breadcrumb_arrow:after{
	content: '';
	position: absolute;
	right: 2px;
	width: 10em;
	height: 10em;
	background-color: #fff;
	border-right: solid 2px #bbaa99;
	pointer-events: auto;
}
.bread__breadcrumb_arrow:before{
	top: 50%;
	-webkit-transform: rotate(25deg);
	   -moz-transform: rotate(25deg);
	    -ms-transform: rotate(25deg);
	     -o-transform: rotate(25deg);
	        transform: rotate(25deg);
	-webkit-transform-origin: top right;
	   -moz-transform-origin: top right;
	    -ms-transform-origin: top right;
	     -o-transform-origin: top right;
	        transform-origin: top right;
}
.bread__breadcrumb_arrow:after{
	bottom: 50%;
	-webkit-transform: rotate(-25deg);
	   -moz-transform: rotate(-25deg);
	    -ms-transform: rotate(-25deg);
	     -o-transform: rotate(-25deg);
	        transform: rotate(-25deg);
	-webkit-transform-origin: bottom right;
	   -moz-transform-origin: bottom right;
	    -ms-transform-origin: bottom right;
	     -o-transform-origin: bottom right;
	        transform-origin: bottom right;

}
.bread__breadcrumb span{
	font-size: 4.5em;
	padding: 0 0.6em 0 1.2em;
}
a:nth-of-type(1) .bread__breadcrumb span{
	padding-left: 0.9em;
}


.bread__breadcrumb.bread__self{
	margin-right: -5px;
	background: -webkit-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
	background: -moz-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
	background: -o-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
	background: linear-gradient(35deg, var(--grad_start), var(--grad_stop));
	color: #fff;
	border-color: var(--main-bg-color);
	cursor: default;
}
.bread__breadcrumb.bread__self .bread__breadcrumb_arrow:before,
.bread__breadcrumb.bread__self .bread__breadcrumb_arrow:after{
	border-color: var(--grad_stop);
	-webkit-transform: rotate(30deg);
	   -moz-transform: rotate(30deg);
	    -ms-transform: rotate(30deg);
	     -o-transform: rotate(30deg);
	        transform: rotate(30deg);
}
.bread__breadcrumb.bread__self .bread__breadcrumb_arrow:after{
	-webkit-transform: rotate(-30deg);
	   -moz-transform: rotate(-30deg);
	    -ms-transform: rotate(-30deg);
	     -o-transform: rotate(-30deg);
	        transform: rotate(-30deg);
}
.bread__breadcrumb_box:hover .bread__breadcrumb.bread__self{
	background: #fff;
	color: inherit;
}
.bread__breadcrumb.bread__self:hover{
	background: -webkit-linear-gradient(55deg, var(--grad_start), var(--grad_stop)) !important;
	background: -moz-linear-gradient(55deg, var(--grad_start), var(--grad_stop)) !important;
	background: -o-linear-gradient(55deg, var(--grad_start), var(--grad_stop)) !important;
	background: linear-gradient(35deg, var(--grad_start), var(--grad_stop)) !important;
	color: #fff !important;
}
.bread__breadcrumb:hover{
	background: -webkit-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
	background: -moz-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
	background: -o-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
	background: linear-gradient(35deg, var(--grad_start), var(--grad_stop));
	color: #fff;
}
.bread__breadcrumb.bread__self .bread__breadcrumb_arrow:before,
.bread__breadcrumb.bread__self .bread__breadcrumb_arrow:after,
.bread__breadcrumb:hover .bread__breadcrumb_arrow:before,
.bread__breadcrumb:hover .bread__breadcrumb_arrow:after{
	background-color: var(--grad_stop);
}
.bread__breadcrumb_box:hover .bread__breadcrumb.bread__self .bread__breadcrumb_arrow:before,
.bread__breadcrumb_box:hover .bread__breadcrumb.bread__self .bread__breadcrumb_arrow:after{
	background-color: #fff;
	border-color: #fff;
}
.bread__breadcrumb.bread__self:hover .bread__breadcrumb_arrow:before,
.bread__breadcrumb.bread__self:hover .bread__breadcrumb_arrow:after{
	background-color: var(--grad_stop) !important;
	border-color: var(--grad_stop) !important;
}

/* - - - - - v-tablet - - - - - */

.v-tablet .bread__breadcrumb_box{
    font-size: 0.8em;
    margin: 21em 3.6em 3.6em;
}

/* - - - - - h-tablet - - - - - */

.h-tablet .bread__breadcrumb_box{
    font-size: 0.5em;
    margin: 25em 3.6em 3.6em 2em;
}

/* - - - - - desktop - - - - - */

.desktop .bread__breadcrumb_box{
	font-size: 0.24em;
	margin: 4em 0;
}


:root {
  --filter-color: #bbaa99;
}

.filter__prev{
	font-size: 1.2em;
	height: 10em;
	cursor: pointer;
}
.filter__prev:before {
    content: '';
    position: absolute;
	bottom: 0;
	width: 100%;
	height: 0.3em;
	border: solid 1px var(--main-color);
	background: -webkit-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
	background: -moz-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
	background: -o-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
	background: linear-gradient(35deg, var(--grad_start), var(--grad_stop));
}
.filter__prev_svg{
	float: left;
	width: 4.2em;
	height: 10em;
	margin-left: 2em;
    padding-top: 1em;
}
.filter__prev_svg svg{
	fill: var(--grad_start);
}
.filter__prev_title{
	float: left;
	margin-left: 1.7em;
    padding-top: 1em;
	line-height: 9em;
	color: var(--grad_start);
}
.filter__prev_title span{
	font-size: 3.38em;
}



.filter__container{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	padding-bottom: 20em;
    -ms-scroll-chaining: none;
        overscroll-behavior: contain;
    scrollbar-gutter: stable;
	z-index: 30;
	background-color: #fff;
	-webkit-transition: opacity 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
	transition: opacity 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
	-o-transition: opacity 0.5s ease-in-out, -o-transform 0.5s ease-in-out;
	-moz-transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out, -moz-transform 0.5s ease-in-out;
	transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
	transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out, -moz-transform 0.5s ease-in-out, -o-transform 0.5s ease-in-out;
	-webkit-transform: translateX(50vw);
	   -moz-transform: translateX(50vw);
	    -ms-transform: translateX(50vw);
	     -o-transform: translateX(50vw);
	        transform: translateX(50vw);
	opacity: 0;
	pointer-events: none;
}
.filter__container.open{
	-webkit-transform: none;
	   -moz-transform: none;
	    -ms-transform: none;
	     -o-transform: none;
	        transform: none;
	opacity: 1;
	pointer-events: all;
}
.filter__head{
	height: 18em;
	padding: 5em;
	background-color: var(--main-bg-color);
	cursor: pointer;
}
.filter__head_arrow{
	float: left;
    width: 8em;
}
.filter__head_title{
	float: left;
	margin-left: 9em;
	line-height: 8em;
}
.filter__head_title span{
	font-size: 6.5em;
}
.filter__head_reset{
	float: right;
	line-height: 8em;
	padding-right: 5em;
	color: #999;
	pointer-events: none;
}
.filter__head_reset span{
	font-size: 5em;
}
.not_empty .filter__head_reset{
	color: var(--main-color);
	cursor: pointer;
	pointer-events: all;
}


.filter__double_box{
	margin-top: 1.5em;
}
.filter__double{
	position: relative;
	float: left;
	margin: 1.5em;
	height: 10em;
	line-height: -webkit-calc(10em - 4px);
	line-height: -moz-calc(10em - 4px);
	line-height: calc(10em - 4px);
	padding: 0 10em 0 4em;
	border: solid 2px var(--main-color);
	-webkit-border-radius: 5em;
	   -moz-border-radius: 5em;
	        border-radius: 5em;
	color: var(--main-color);
	cursor: pointer;
}
.filter__double.all{
	border-color: #777;
	-webkit-filter: grayscale(100%);
	        filter: grayscale(100%);
}
a:nth-of-type(1) .filter__double.all,
a:nth-of-type(2) .filter__double.all{
	display: none;
}
.filter__double span{
	font-size: 4em;
}
.filter__double:before, .filter__double:after{
    content: '';
	position: absolute;
	right: 3.5em;
	top: -webkit-calc(5em - 3px);
	top: -moz-calc(5em - 3px);
	top: calc(5em - 3px);
	width: 4em;
	height: 2px;
	background-color: var(--main-color);
}
.filter__double:before{
	-webkit-transform: rotate(45deg);
	   -moz-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
	     -o-transform: rotate(45deg);
	        transform: rotate(45deg);
}
.filter__double:after{
	-webkit-transform: rotate(-45deg);
	   -moz-transform: rotate(-45deg);
	    -ms-transform: rotate(-45deg);
	     -o-transform: rotate(-45deg);
	        transform: rotate(-45deg);
}
.filter__double:hover{
	color: white;
	background: -webkit-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
	background: -moz-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
	background: -o-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
	background: linear-gradient(35deg, var(--grad_start), var(--grad_stop));
}
.filter__double:hover:before{
	background-color: white;
	-webkit-transition: -webkit-transform 0.4s ease-in-out;
	transition: -webkit-transform 0.4s ease-in-out;
	-o-transition: -o-transform 0.4s ease-in-out;
	-moz-transition: transform 0.4s ease-in-out, -moz-transform 0.4s ease-in-out;
	transition: transform 0.4s ease-in-out;
	transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out, -moz-transform 0.4s ease-in-out, -o-transform 0.4s ease-in-out;
	-webkit-transform: rotate(315deg);
	   -moz-transform: rotate(315deg);
	    -ms-transform: rotate(315deg);
	     -o-transform: rotate(315deg);
	        transform: rotate(315deg);
}
.filter__double:hover:after{
	background-color: white;
	-webkit-transition: -webkit-transform 0.4s ease-in-out;
	transition: -webkit-transform 0.4s ease-in-out;
	-o-transition: -o-transform 0.4s ease-in-out;
	-moz-transition: transform 0.4s ease-in-out, -moz-transform 0.4s ease-in-out;
	transition: transform 0.4s ease-in-out;
	transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out, -moz-transform 0.4s ease-in-out, -o-transform 0.4s ease-in-out;
	-webkit-transform: rotate(45deg);
	   -moz-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
	     -o-transform: rotate(45deg);
	        transform: rotate(45deg);
}


.filter__box{
	margin-top: 5em;
}
.filter__box:nth-of-type(3){
	margin-top: 1.5em;
}
.filter__headbox{
	margin-bottom: 7em;
	cursor: pointer;
}
.filter__name{
	width: 30%;
	height: 12em;
	line-height: 12em;
	padding-left: 6em;
	color: #d2d2d2;
	border-bottom: solid 1px #d2d2d2;
}
.filter__box.open .filter__name{
	width: 45%;
	color: var(--main-color);
	border-color: var(--filter-color);
}
.filter__name span{
	font-size: 6em;
}
.filter__main{
	height: 0;
	padding: 0 5em;
	overflow: hidden;
}
.filter__box.open .filter__main,
.filter__main_stock{
	height: auto;
}


.filter__price_box{
	height: 11.5em;
	line-height: 8.5em;
}
.filter__price{
	float: left;
	text-align: right;
	color: var(--grad_start);
}
.filter__price:nth-of-type(2){
	float: right;
	text-align: left;
	color: var(--grad_stop);
}
.filter__price span{
	font-size: 9.3em;
}
.filter__slider_box{
	position: relative;
	margin: 2.5em 0 2.5em 0;
}
.filter__slider_color{
	height: 6em;
	background: -webkit-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
	background: -moz-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
	background: -o-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
	background: linear-gradient(35deg, var(--grad_start), var(--grad_stop));
	border: solid 1px var(--filter-color);
}
.filter__slider_up{
	position: absolute;
	top: 0;
	left: 0;
	width: 15em;
	height: 6em;
	background-color: var(--main-bg-color);
	border: solid 1px var(--filter-color);
}
.filter__slider_up:nth-of-type(3){
	left: auto;
	right: 0;
	width: 21em;
}
.filter__slider_button{
	position: absolute;
	top: -2em;
	left: -webkit-calc(15em - 1px);
	left: -moz-calc(15em - 1px);
	left: calc(15em - 1px);
	width: 6.7em;
	height: 10em;
	padding: 0 0.6em;
	background-color: var(--main-bg-color);
	border: solid 1px var(--filter-color);
	cursor: pointer;
}
.filter__slider_button:nth-of-type(5){
	left: auto;
	right: -webkit-calc(21em - 1px);
	right: -moz-calc(21em - 1px);
	right: calc(21em - 1px);
	width: 6.7em;
}
.filter__slider_button svg{
	fill: var(--filter-color);
}


.filter__main_sizes,
.filter__main_stock {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	    -ms-flex-wrap: wrap;
	        flex-wrap: wrap;
    -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
            justify-content: space-around;
}
.filter__check_box{
	height: 11em;
	line-height: -webkit-calc(11em - 2px);
	line-height: -moz-calc(11em - 2px);
	line-height: calc(11em - 2px);
	margin: 2em 1em;
	padding: 0 4em 0 4em;
	text-align: center;
	border: solid 1px var(--filter-color);
	-webkit-border-radius: 4.5em;
	   -moz-border-radius: 4.5em;
	        border-radius: 4.5em;
	color: var(--filter-color);
	cursor: pointer;
}
.filter__main_sizes .filter__check_box{
	-webkit-box-flex: 1;
	-webkit-flex-grow: 1;
	   -moz-box-flex: 1;
	    -ms-flex-positive: 1;
	        flex-grow: 1;
}
.filter__main_sizes .filter__check_box.choice{
	background: -webkit-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
	background: -moz-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
	background: -o-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
	background: linear-gradient(35deg, var(--grad_start), var(--grad_stop));
	border-color: var(--main-color);
	color: #fff;
}
.filter__check_box span{
	font-size: 6em;
}
.filter__main_stock .filter__check_box{
	border: none;
	padding: 0;
	color: #333;
	opacity: 0.2;
}
.filter__main_sizes .filter__check_out{
	display: none;
}
.filter__main_stock .filter__check_out{
	float: left;
	width: 15em;
	height: 7em;
	margin-top: -webkit-calc(2.5em - 1px);
	margin-top: -moz-calc(2.5em - 1px);
	margin-top: calc(2.5em - 1px);
	margin-right: 3em;
	border: solid 1px var(--main-color);
	-webkit-border-radius: 3.5em;
	   -moz-border-radius: 3.5em;
	        border-radius: 3.5em;
	background: -webkit-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
	background: -moz-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
	background: -o-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
	background: linear-gradient(35deg, var(--grad_start), var(--grad_stop));
	padding: -webkit-calc(1em - 1px);
	padding: -moz-calc(1em - 1px);
	padding: calc(1em - 1px);
}
.filter__main_stock .filter__check_in{
	float: left;
	width: 5em;
	height: 5em;
	-webkit-border-radius: 2.5em;
	   -moz-border-radius: 2.5em;
	        border-radius: 2.5em;
	background-color: white;
}
.filter__check_box.choice{
	opacity: 1;
}
.filter__check_box.choice .filter__check_in{
	float: right;
}
.filter__send_box{
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 2em 0;
	background-color: #fff;
}
.filter__send_box .filter__main{
	height: auto;
}
.filter__send{
	height: 16em;
	line-height: -webkit-calc(16em - 2px);
	line-height: -moz-calc(16em - 2px);
	line-height: calc(16em - 2px);
	text-align: center;
	color: #333;
	background: #f2f2f2;
	border: solid 1px #f1f1f1;
	pointer-events: none;
}
.filter__container.active .filter__send{
	color: #fff;
	background: -webkit-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
	background: -moz-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
	background: -o-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
	background: linear-gradient(35deg, var(--grad_start), var(--grad_stop));
	border: solid 1px #a2867b;
	pointer-events: auto;
	cursor: pointer;
}
.filter__send span{
	font-size: 5em;
}
.filter__container.is_loading count{
	display: none;
}
.filter__container point{
	display: none;
}
.filter__container.is_loading point{
	display: inline;
}
point:nth-of-type(1){
	opacity: 0;
	-webkit-animation: dot 0.5s infinite;
	   -moz-animation: dot 0.5s infinite;
	     -o-animation: dot 0.5s infinite;
	        animation: dot 0.5s infinite;
	-webkit-animation-delay: 0.0s;
	   -moz-animation-delay: 0.0s;
	     -o-animation-delay: 0.0s;
	        animation-delay: 0.0s;
}

point:nth-of-type(2){
	opacity: 0;
	-webkit-animation: dot 0.6s infinite;
	   -moz-animation: dot 0.6s infinite;
	     -o-animation: dot 0.6s infinite;
	        animation: dot 0.6s infinite;
	-webkit-animation-delay: 0.1s;
	   -moz-animation-delay: 0.1s;
	     -o-animation-delay: 0.1s;
	        animation-delay: 0.1s;
}

point:nth-of-type(3){
	opacity: 0;
	-webkit-animation: dot 0.5s infinite;
	   -moz-animation: dot 0.5s infinite;
	     -o-animation: dot 0.5s infinite;
	        animation: dot 0.5s infinite;
	-webkit-animation-delay: 0.15s;
	   -moz-animation-delay: 0.15s;
	     -o-animation-delay: 0.15s;
	        animation-delay: 0.15s;
}
@-webkit-keyframes dot{
    0%{
		opacity: 0;
    }
    20%{
		opacity: 0;
    }
    100%{
		opacity: 1;
    }
}
@-moz-keyframes dot{
    0%{
		opacity: 0;
    }
    20%{
		opacity: 0;
    }
    100%{
		opacity: 1;
    }
}
@-o-keyframes dot{
    0%{
		opacity: 0;
    }
    20%{
		opacity: 0;
    }
    100%{
		opacity: 1;
    }
}
@keyframes dot{
    0%{
		opacity: 0;
    }
    20%{
		opacity: 0;
    }
    100%{
		opacity: 1;
    }
}

/* - - - - - tablet - - - - - */

.tablet .filter__prev{
	font-size: 0.88em;
}
.tablet .filter__container{
	font-size: 0.7em;
}

/* - - - - - h-tablet - - - - - */

.h-tablet .filter__prev_svg{
    margin-left: 1.3em;
    margin-right: 0.7em;
    padding-top: 0.6em;
}
.h-tablet .filter__prev_title{
    padding-top: 0.6em;
}

/* - - - - - desktop - - - - - */

.desktop .filter__prev{
	display: none;
}
.desktop .filter__container{
	position: relative;
	float: left;
	width: 107%;
	font-size: 0.2em;
	margin-left: -2.5em;
	margin-top: 4em;
	padding-bottom: 10em;
	border: solid 1px #333;	-webkit-box-shadow: 2.5em 2.5em 0 0 #d17165;	-moz-box-shadow: 2.5em 2.5em 0 0 #d17165;	box-shadow: 2.5em 2.5em 0 0 #d17165;
	overflow: visible;
	pointer-events: all;
	-webkit-transform: none;
	   -moz-transform: none;
	    -ms-transform: none;
	     -o-transform: none;
	        transform: none;
	opacity: 1;
	z-index: 1;
}
.desktop .filter__head{
	padding: 5em;
	cursor: default;
}
.desktop .filter__head_title{
	width: 50%;
	margin: 0;
	line-height: 7.5em;
}
.desktop .filter__head_title span{
	font-size: 7em;
}
.desktop .filter__head_title_line{
	width: 18em;
	height: 1.5em;
	border: solid 1px var(--main-color);
	background: -webkit-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
	background: -moz-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
	background: -o-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
	background: linear-gradient(35deg, var(--grad_start), var(--grad_stop));
}
.desktop .filter__head_reset{
	float: right;
	width: 50%;
	text-align: right;
	padding-right: 0;
}
.desktop .filter__head_arrow{
	display: none;
}
.desktop .filter__box{
	display: block;
	margin-top: 2em;
}
.desktop .filter__headbox{
	position: relative;
}
.desktop .filter__headbox:before,
.desktop .filter__headbox:after{
	content: '';
	position: absolute;
	right: 4.5em;
	bottom: 3.3em;
	width: 6.2em;
	height: 2px;
	background-color: #777;
	-webkit-transition: -webkit-transform 0.1s ease-in-out;
	transition: -webkit-transform 0.1s ease-in-out;
	-o-transition: -o-transform 0.1s ease-in-out;
	-moz-transition: transform 0.1s ease-in-out, -moz-transform 0.1s ease-in-out;
	transition: transform 0.1s ease-in-out;
	transition: transform 0.1s ease-in-out, -webkit-transform 0.1s ease-in-out, -moz-transform 0.1s ease-in-out, -o-transform 0.1s ease-in-out;
}
.desktop .filter__headbox:after{
	-webkit-transform: rotate(90deg);
	   -moz-transform: rotate(90deg);
	    -ms-transform: rotate(90deg);
	     -o-transform: rotate(90deg);
	        transform: rotate(90deg);
}
.desktop .filter__box.open .filter__headbox:before,
.desktop .filter__box.open .filter__headbox:after{
	-webkit-transform: none;
	   -moz-transform: none;
	    -ms-transform: none;
	     -o-transform: none;
	        transform: none;
	background-color: #000;
}
.desktop .filter__name{
	line-height: 16.7em;
	padding-left: 4.8em;
	border: none;
	color: #777;
}
.desktop .filter__box.open .filter__name{
	color: black;
}
.desktop .filter__name span{
	font-size: 6.6em;
}
.desktop .filter__price_box,
.desktop .filter__slider_box{
	font-size: 0.68em;
}
.desktop .filter__price_box{
	margin: 0 8em 0 5em;
}
.desktop .filter__slider_box{
	margin: 2.5em 8em 2.5em 5em;
}
.desktop .filter__headbox{
	margin-bottom: 5em;
}
.desktop .filter__main_sizes,
.desktop .filter__main_stock {
	display: block;
}
.desktop .filter__main_sizes .filter__check_box{
	float: left;
	width: 34em;
	height: 5.5em;
	line-height: 5.5em;
	padding: 0;
	text-align: left;
	border: none;
	-webkit-border-radius: 0;
	   -moz-border-radius: 0;
	        border-radius: 0;
	color: #555;
}
.desktop .filter__main_stock .filter__check_box {
    text-align: left;
}
.desktop .filter__box.categories .filter__check_box{
    width: 73em;
}
.desktop .filter__main_sizes .filter__check_box.choice{
	background: none;
	color: #555;
}
.desktop .filter__main_sizes .filter__check_out{
	display: block;
	position: relative;
	float: left;
	width: 5.5em;
	height: 5.5em;
	margin-right: 2em;
	background: -webkit-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
	background: -moz-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
	background: -o-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
	background: linear-gradient(35deg, var(--grad_start), var(--grad_stop));
}
.desktop .filter__main_sizes .filter__check_in{
	position: absolute;
	width: 0;
	overflow: hidden;
	-webkit-transition: width 0.2s 0.2s cubic-bezier(0.4, 0, 0.23, 1);
	-o-transition: width 0.2s 0.2s cubic-bezier(0.4, 0, 0.23, 1);
	-moz-transition: width 0.2s 0.2s cubic-bezier(0.4, 0, 0.23, 1);
	transition: width 0.2s 0.2s cubic-bezier(0.4, 0, 0.23, 1);
}
.desktop .filter__main_sizes .filter__check_box.choice .filter__check_in{
	width: 5.5em;
}
.desktop .filter__check_svg{
	width: 5.5em;
	padding: 0.5em;
}
.desktop .filter__main_sizes .filter__check_in svg{
	fill: #fff;
}
.desktop .filter__check_up{
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: #fff;
	border: solid 1px #aaa;
	-webkit-transition: -webkit-transform 0.2s cubic-bezier(0.4, 0, 0.23, 1);
	transition: -webkit-transform 0.2s cubic-bezier(0.4, 0, 0.23, 1);
	-o-transition: -o-transform 0.2s cubic-bezier(0.4, 0, 0.23, 1);
	-moz-transition: transform 0.2s cubic-bezier(0.4, 0, 0.23, 1), -moz-transform 0.2s cubic-bezier(0.4, 0, 0.23, 1);
	transition: transform 0.2s cubic-bezier(0.4, 0, 0.23, 1);
	transition: transform 0.2s cubic-bezier(0.4, 0, 0.23, 1), -webkit-transform 0.2s cubic-bezier(0.4, 0, 0.23, 1), -moz-transform 0.2s cubic-bezier(0.4, 0, 0.23, 1), -o-transform 0.2s cubic-bezier(0.4, 0, 0.23, 1);
}
.desktop .filter__check_box.choice .filter__check_up{
	-webkit-transform: scale(0,0);
	   -moz-transform: scale(0,0);
	    -ms-transform: scale(0,0);
	     -o-transform: scale(0,0);
	        transform: scale(0,0);
}
.desktop .filter__send_box{
	display: none;
	position: absolute;
	top: 28.5em;
	left: 100%;
	right: auto;
	bottom: auto;
	padding: 0;
	background: none;
	-webkit-transition: top 0.5s ease-in-out;
	-o-transition: top 0.5s ease-in-out;
	-moz-transition: top 0.5s ease-in-out;
	transition: top 0.5s ease-in-out;
	-webkit-filter: grayscale(100%);
	        filter: grayscale(100%);
	cursor: default;
}
.desktop .filter__container.active .filter__send_box{
	-webkit-filter: grayscale(0);
	        filter: grayscale(0);
	cursor: pointer;
}
.desktop .filter__send_box .filter__main{
	padding: 0;
	overflow: visible;
}
.desktop .filter__send_box:before{
	content: '';
	position: absolute;
	top: 6.75em;
	left: -5em;
	width: 0;
	height: 0;
	border-top: 2.5em solid transparent;
	border-right: 5em solid var(--grad_start);
	border-bottom: 2.5em solid transparent;
}
.desktop .filter__container .filter__send{
	height: 18.5em;
	line-height: 18.5em;
	padding: 0 5em;
	text-align: center;
	white-space: nowrap;
	border: none;
	background: -webkit-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
	background: -moz-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
	background: -o-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
	background: linear-gradient(35deg, var(--grad_start), var(--grad_stop));
}
.desktop .filter__send span{
	font-size: 6em;
}


.footer__container{
    display: none;
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 20em;
	background-color: #f2f2f2;
	color: #262626;
	border: 0.1em solid #dfdfdf;
	-webkit-border-radius: 0.5em 0.5em 0 0;
	   -moz-border-radius: 0.5em 0.5em 0 0;
	        border-radius: 0.5em 0.5em 0 0;
	clear: both;
}
.footer__container img{
	width: 100%;
}
.footer__logo{
	float: left;
	margin: 2em 0 0 12em;
	width: 16em;
}
.footer__about{
	position: relative;
	float: left;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	    -ms-flex-wrap: wrap;
	        flex-wrap: wrap;
	margin: 0 0 0 4em;
	width: 15em;
	font-size: 4em;
}
.footer__about > div{
	width: 50%;
	height: 20%;
	text-align: center;
	margin: 0.9em 0 0 0;
	cursor: pointer;
}
.footer__contacts > div{
	display: none;
}
/* - - - - - desktop - - - - - */

.desktop .footer__container{
	height: 10em;
	width: 93%;
}
.desktop .footer__logo{
	margin: 3em 0 0 1em;
	width: 10em;
}
.desktop .footer__about{
	position: relative;
	float: none;
	display: block;
	-webkit-flex-wrap: nowrap;
	    -ms-flex-wrap: nowrap;
	        flex-wrap: nowrap;
	margin: 1.5em 0 0 10em;
	width: auto;
	font-size: 1.3em;
}
.desktop .footer__about > div{
	width: inherit;
	height: auto;
	text-align: left;
	margin: 0.5em 0 0 0;
	cursor: pointer;
}
.desktop .footer__contacts{
	position: absolute;
	top: -1.7em;
	left: 30em;
}
.desktop .footer__contacts > div{
	display: block;
	font-size: 0.8em;
	margin: 0.8em 0 0 -6em;
}
.desktop .footer__iconsocial{
	position: absolute;
	top: 0;
	left: 0;
	width: 1.2em;
	height: 1.2em;
	margin: 6.4em 0 0 -8em !important;
}
.desktop .footer__iconphone{
	position: absolute;
	top: 0;
	left: 0;
	width: 1.2em;
	height: 1.2em;
	margin: 4.4em 0 0 -8em !important;
}
.desktop .footer__iconaddress{
	position: absolute;
	top: 0;
	left: 0;
	width: 1.2em;
	height: 1.2em;
	margin: 2.4em 0 0 -8em !important;
}


.header__container{
	font-size: 1.4285714vw;
	position: fixed;
	width: 100%;
	height: 10em;
	z-index: 20;
}
.header__background {
	position: absolute;
    left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--main-bg-color);
	z-index: -1;
}
.header__container img{
	height: 100%;
}
.header__logo_box {
	position: absolute;
	left: 40%;
	width: 23%;
	height: 6.8em;
	margin-top: 1.7em;
	cursor: pointer;
}
.header__main{
	float: right;
	height: 100%;
}
.header__phone{
	display: none;
}
.header__user{
	position: relative;
	float: left;
}
.header__button, .header__ul, .header__cart{
	position: relative;
    float: left;
	width: 7.6em;
    height: 7.6em;
	margin: 1.2em 0 0 1.3em;
	padding: 2.4em;
	-webkit-border-radius: 50%;
	   -moz-border-radius: 50%;
	        border-radius: 50%;
	cursor: pointer;
}
.header__button svg, .header__ul svg, .header__cart svg{
	fill: var(--main-color);
}
.header__ul,
.header__like_cart_box,
.header__cart{
	float: right;
}
.header__like{
    display: none;
}
.header__cart{
	margin-right: 2em;
	padding: 1.8em;
}
.header__user>.header__ul{
	padding: 1.7em;
	-webkit-transition: -webkit-transform 0.5s;
	transition: -webkit-transform 0.5s;
	-o-transition: -o-transform 0.5s;
	-moz-transition: transform 0.5s, -moz-transform 0.5s;
	transition: transform 0.5s;
	transition: transform 0.5s, -webkit-transform 0.5s, -moz-transform 0.5s, -o-transform 0.5s;
	-webkit-transform-origin: left;
	   -moz-transform-origin: left;
	    -ms-transform-origin: left;
	     -o-transform-origin: left;
	        transform-origin: left;
    -webkit-transform: scale(1,1);
       -moz-transform: scale(1,1);
        -ms-transform: scale(1,1);
         -o-transform: scale(1,1);
            transform: scale(1,1);
}
.header__svg{
	position: relative;
	width: 100%;
    height: 100%;
}
.header__text{
    display: none;
}
.header__cart_count{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
    height: 100%;
	line-height: 5em;
	text-align: center;
	color: var(--main-color);
}
.header__cart_count span{
	font-size: 1.8em;
}
.header__user_or_auth_box{
    font-size: 1.4285714vw;
	position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
	background-color: white;
    -webkit-transform: translate3d(0,-20px,0);
       -moz-transform: translate3d(0,-20px,0);
            transform: translate3d(0,-20px,0);
    opacity: 0;
    pointer-events: none;
    z-index: 21;
}
.header__user_or_auth_box.open {
    -webkit-transition-property: opacity, top, left, right, height, -webkit-transform;
    transition-property: opacity, top, left, right, height, -webkit-transform;
    -o-transition-property: opacity, top, left, right, height, -o-transform;
    -moz-transition-property: transform, opacity, top, left, right, height, -moz-transform;
    transition-property: transform, opacity, top, left, right, height;
    transition-property: transform, opacity, top, left, right, height, -webkit-transform, -moz-transform, -o-transform;
    -webkit-transition-duration: 0.3s, 0.3s, 0.5s, 0.5s, 0.5s, 0.5s;
       -moz-transition-duration: 0.3s, 0.3s, 0.5s, 0.5s, 0.5s, 0.5s;
         -o-transition-duration: 0.3s, 0.3s, 0.5s, 0.5s, 0.5s, 0.5s;
            transition-duration: 0.3s, 0.3s, 0.5s, 0.5s, 0.5s, 0.5s;
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1;
    pointer-events: all;
}

/* - - - - - v-tablet - - - - - */

.v-tablet .header__container{
	font-size: 1.4em;
    padding: 0 10.7em 0 10.5em;
}
.v-tablet .header__button,
.v-tablet .header__ul,
.v-tablet .header__cart{
    margin-top: 0.75em;
    margin-left: 0.8em;
}
.v-tablet .header__logo_box{
    left: 38.6%;
    height: 7.25em;
    margin-top: 0.85em;
}
.v-tablet .header__user_or_auth_box{
    font-size: 1.4em;
}

/* - - - - - h-tablet - - - - - */

.h-tablet .header__container{
    font-size: 1em;
    padding: 0 27.2em 0 29.8em;
    pointer-events: none;
}
.h-tablet .header__container>*{
    pointer-events: all;
}
.h-tablet .header__background{
    pointer-events: none;
    height: 60%;
}
.h-tablet.scroll .header__background{
    height: 100%;
}
.h-tablet .header__button,
.h-tablet .header__ul,
.h-tablet .header__cart{
    margin-top: 1.5em;
    margin-left: 0.8em;
}
.h-tablet .header__logo_box{
    left: 39.3%;
    height: 7.25em;
    margin-top: 1.6em;
}
.h-tablet .header__user_or_auth_box.auth{
    top: 0;
    bottom: 0;
    width: 153.2556vh;
    margin: auto;
    font-size: 3.667vh;
}
.h-tablet .header__user_or_auth_box.user{
    font-size: 0.85em;
}

/* - - - - - desktop - - - - - */

.desktop .header__container{
    position: relative;
    font-size: inherit;
    height: 9em;
    border-bottom: solid 2px #db6c64;
}
.desktop .header__logo_box{
    position: static;
    float: left;
    font-size: 1.7em;
    width: 7.4em;
    height: 2.5em;
    margin-top: -0.12em;
}
.desktop .header__search_phone{
    display: block;
    float: right;
    width: 77.4em;
    height: 3em;
}
.desktop #header__search_open{
    display: none;
}
.desktop .header__phone{
    float: right;
    height: 100%;
    margin: 0.8em 0.6em;
    display: block;
}
.desktop .header__phone span{
    font-size: 1.92em;
}
.desktop .header__main{
    position: absolute;
    bottom: 0;
    right: 0;
    width: 34em;
    height: 4.05em;
}
.desktop #header__open_user{
    float: left;
    width: 20.2em;
    height: 100%;
    margin: 0;
    padding: 0;
    -webkit-border-radius: 0;
       -moz-border-radius: 0;
            border-radius: 0;
    background: -webkit-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
    background: -moz-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
    background: -o-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
    background: linear-gradient(35deg, var(--grad_start), var(--grad_stop));
}
.desktop #header__open_user:hover{
    background: -webkit-linear-gradient(55deg, var(--grad_stop), var(--grad_start));
    background: -moz-linear-gradient(55deg, var(--grad_stop), var(--grad_start));
    background: -o-linear-gradient(55deg, var(--grad_stop), var(--grad_start));
    background: linear-gradient(35deg, var(--grad_stop), var(--grad_start));
}
.desktop  #header__open_user .header__svg{
    float: left;
    width: 3.2em;
    height: 3.2em;
    margin: 0.5em 1.2em;
    padding: 0.1em 0 0.3em;
    -webkit-border-radius: 50%;
       -moz-border-radius: 50%;
            border-radius: 50%;
    background: white;
}
.desktop .header__svg svg{
    fill: var(--grad_start);
}
.desktop #header__open_user:hover svg{
    fill: var(--grad_stop);
}
.desktop .header__text{
    display: block;
    float: left;
    width: 13.4em;
    height: 4.05em;
    margin-left: -0.2em;
    line-height: 4.3em;
    color: white;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
}
.desktop .header__text span{
    font-size: 1.29em;
}
.desktop .header__like{
    display: block;
    float: left;
}
.desktop .header__like_cart_box{
    width: 11.6em;
    height: 100%;
}
.desktop .header__like_cart_box .header__svg{
    background: transparent;
}
.desktop .header__like_cart_box svg{
    fill: url(#gradient);
}
.desktop .header__like,
.desktop .header__cart{
    width: 5.8em;
    height: 100%;
    margin: 0;
    padding: 0.4em 0.4em 0.4em 1.3em;
    -webkit-border-radius: 0;
       -moz-border-radius: 0;
            border-radius: 0;
    cursor: pointer;
}
.desktop .header__cart{
    padding: 0.4em 1.5em 0.4em 0.4em;
}
.desktop .header__like.empty,
.desktop .header__cart.empty
{
    pointer-events: none;
}
.desktop .header__like.empty svg,
.desktop .header__cart.empty svg {
    fill: #888888;
}
.desktop .header__like:hover svg,
.desktop .header__cart:hover svg {
    fill: url(#gradient2);
}
.desktop .header__like_count,
.desktop .header__cart_count{
    position: absolute;
    width: 100%;
    top: -0.2em;
    line-height: 4.05em;
    text-align: center;
    color: white;
}
.desktop .header__like_count{
    top: -0.4em;
}
.desktop .header__like_cart_box span{
    font-size: 1.6em;
}
.desktop .header__user_or_auth_box.auth{
    top: 5.65em;
    left: 14.9em;
    right: 12.15em;
    height: 27.3em;
}
.desktop .header__user_or_auth_box.user{
    position: absolute;
    top: 5.72em;
    left: 34.78em;
    right: 9.35em;
    height: 8.9em;
    border: solid 1px black;
    -webkit-box-shadow: 0.1em 0.1em 0 var(--main-color);
       -moz-box-shadow: 0.1em 0.1em 0 var(--main-color);
            box-shadow: 0.1em 0.1em 0 var(--main-color);
    overflow: hidden;
    z-index: 1;
}


.auth__login_box,
.auth__signup_box,
.auth__reset_box{
    display: none;
}
.auth__container.login .auth__login_box{
    display: block;
}
.auth__container.signup .auth__signup_box{
    display: block;
}
.auth__container.reset .auth__reset_box{
    display: block;
}
.auth__form_box{
    display: none;
    padding: 2.3em 12.3em 0;
}
.auth__login_box .auth__form_box,
.auth__signup_box.name .auth__form_box.name,
.auth__reset_box.name .auth__form_box.name,
.auth__signup_box.phone .auth__form_box.phone,
.auth__signup_box.code .auth__form_box.code,
.auth__signup_box.password .auth__form_box.password,
.auth__signup_box.final .auth__form_box.final,
.auth__reset_box.phone .auth__form_box.phone,
.auth__reset_box.code .auth__form_box.code,
.auth__reset_box.password .auth__form_box.password{
    display: block;
}
.auth__form_title{
    text-align: center;
    margin-bottom: 2.5em;
}
.auth__form_title span{
    font-size: 5.6em;
    margin: 0 -10em;
}
.auth__form_box.phone .auth__form_title{
    margin-top: 3.3em;
    margin-bottom: 4.3em;
}
.auth__form_box.phone .auth__form_title span{
    font-size: 2.71em;
}
.auth__reset_box .auth__form_box.phone .auth__form_title span{
    font-size: 3.71em;
}
.auth__form_box.code .auth__form_title,
.auth__form_box.password .auth__form_title {
    margin-top: 1em;
    margin-bottom: 3.4em;
}
.auth__form_box.password .auth__form_title {
    margin-bottom: 3em;
}
.auth__form_box.code .auth__form_title span,
.auth__form_box.password .auth__form_title span {
    font-size: 4.4em;
}
.auth__form_center{
    position: absolute;
    left: 0;
    width: 100%;
}
#auth__form_code_signup,
#auth__form_code_reset {
    width: 62.015em;
    height: 11.8em;
    padding-left: 2.923em;
    margin: auto;
}
.auth__enter_code{
    margin: 18.8em -5em 0;
    text-align: center;
}
.auth__enter_code.error,
.auth__enter_code.timeout,
.auth__enter_code.not_found,
#auth__code_timeout,
#auth__code_timeout_reset,
#auth__code_registration,
.auth__form_box.error .auth__enter_code,
.auth__form_box.timeout .auth__enter_code,
.auth__form_box.not_found .auth__enter_code,
.auth__form_box.error #auth__code,
.auth__form_box.timeout #auth__code,
.auth__form_box.error #auth__code_reset,
.auth__form_box.timeout #auth__code_reset,
.auth__form_box.not_found #auth__code_reset{
    display: none;
}
.auth__form_box.timeout #auth__code_timeout,
.auth__form_box.error #auth__code_timeout,
.auth__form_box.timeout #auth__code_timeout_reset,
.auth__form_box.error #auth__code_timeout_reset,
.auth__form_box.not_found #auth__code_registration,
.auth__form_box.timeout .auth__enter_code.timeout,
.auth__form_box.not_found .auth__enter_code.not_found,
.auth__form_box.error .auth__enter_code.error{
    display: block;
}
.auth__enter_code.error,
.auth__enter_code.not_found,
.auth__enter_code.timeout{
    color: var(--main-color);
}
.auth__form_box.error form,
.auth__form_box.not_found form,
.auth__form_box.timeout form {
    pointer-events: none;
}
.auth__timer_code{
    float: right;
    width: 5em;
    margin: 0 10em 0 -10em;
    text-align: left;
}
.auth__enter_code span{
    font-size: 2.85em;
}
#auth__code,
#auth__code_timeout{
    margin-top: 5.7em;
}
#auth__to_reset{
    cursor: pointer;
}
.auth__button {
    margin-top: 3.1em;
    height: 8.4em;
    line-height: 8.4em;
    background: -webkit-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
    background: -moz-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
    background: -o-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
    background: linear-gradient(35deg, var(--grad_start), var(--grad_stop));
    border-bottom: solid 1px #a78180;
    -webkit-border-radius: 3em;
       -moz-border-radius: 3em;
            border-radius: 3em;
    color: white;
    text-align: center;
    cursor: pointer;
}
.auth__form_box.password .auth__button {
    margin-top: 2.7em;
}
.auth__button:hover {
    background: -webkit-linear-gradient(55deg, var(--grad_stop), var(--grad_start));
    background: -moz-linear-gradient(55deg, var(--grad_stop), var(--grad_start));
    background: -o-linear-gradient(55deg, var(--grad_stop), var(--grad_start));
    background: linear-gradient(35deg, var(--grad_stop), var(--grad_start));
}
.auth__button.blocked {
    -webkit-filter: grayscale(100%);
            filter: grayscale(100%);
    opacity: 0.5;
    pointer-events: none;
}
.auth__button span {
    font-size: 3.5em;
}
.auth__button.blocked span:nth-of-type(2) {
    display: inline-block;
    width: 2.5em;
}
.auth__string_or_social {
    position: relative;
    margin-top: 4em;
    height: 2em;
    line-height: 2em;
    text-align: center;
}
.auth__string_or_social span{
    font-size: 1.8em;
}
.auth__string_or_social:before,
.auth__string_or_social:after{
    content: '';
    position: absolute;
    width: 13em;
    height: 1px;
    top: 1em;
    background: #d2d2d2;
}
.auth__string_or_social:before{
    left: -6em;
}
.auth__string_or_social:after{
    right: -6em;
}
.auth__socialite_box{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.auth__socialite{
    margin: 4em auto;
    width: 11.8em;
    height: 11em;
    border: solid 1px #d2d2d2;
    -webkit-border-radius: 1em;
       -moz-border-radius: 1em;
            border-radius: 1em;
    padding: 1.2em;
    cursor: pointer;
}
#auth__vk svg{
    fill: #2a77bd;
}
#auth__yandex svg{
    fill: var(--grad_stop);
    //fill: #FC3F1D;
}
.auth__left_box{
    padding: 0 12.3em;
    text-align: center;
}
.auth__left_box>span{
    font-size: 5.5em;
}
#auth__to_signup{
    margin-top: 2.3em;
}
#auth__to_signup span{
    font-size: 3.6em;
}
.auth__back_and_close{
    margin: 9.2em auto;
}
.auth__form_box.code .auth__back_and_close{
    margin-top: 5.7em;
}
.auth__form_box.password .auth__back_and_close{
    margin-top: 5.2em;
}
.auth__back_form,
.auth__close_form{
    height: 2em;
    cursor: pointer;
}
.auth__back_form{
    float: left;
    width: 12em;
}
.auth__close_form{
    float: right;
    width: 9.6em;
}
.auth__login_box .auth__close_form{
    float: none;
    margin: auto;
}
.auth__login_box .auth__back_form{
    display: none;
}
.auth__back_svg{
    float: left;
    width: 2.6em;
    height: 2.6em;
    margin-top: -0.6em;
}
.auth__close_svg{
    float: left;
    width: 2em;
    height: 2em;
}
.auth__back_text,
.auth__close_text{
    float: left;
    line-height: 2em;
    padding-left: 0.5em;
}
.auth__back_text span,
.auth__close_text span{
    font-size: 1.9em;
    text-decoration: underline;
}
.auth__ok_svg{
    width: 31.8em;
    height: 31.8em;
    margin: 10.5em auto 5em;
    -webkit-border-radius: 50%;
       -moz-border-radius: 50%;
            border-radius: 50%;
    padding: 8.2em 7.2em 7.2em 8.1em;
    background: -webkit-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
    background: -moz-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
    background: -o-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
    background: linear-gradient(35deg, var(--grad_start), var(--grad_stop));
}
.auth__ok_svg svg {
    fill: white;
}
.auth__ok_text {
    text-align: center;
    margin-bottom: 6.4em;
}
.auth__ok_text span {
    font-size: 5.45em;
}
#auth__to_reset{
    margin-left: 2.4em;
}
#auth__to_reset span{
    font-size: 2.25em;
    text-decoration: underline;
    color: #518ee9;
}

/* - - - - - v-tablet - - - - - */

.v-tablet .auth__timer_code{
    margin: 0 19em 0 -19em;
}

/* - - - - - desktop and h-tablet - - - - - */

.desktop .auth__container,
.h-tablet .auth__container{
    height: 100%;
    font-size: 0.22em;
    padding: 0;
    border: solid 1px #d2d2d2;
    overflow: hidden;
}

.desktop .auth__left_box,
.h-tablet .auth__left_box{
    float: right;
    width: -webkit-calc(72.8em - 1px);
    width: -moz-calc(72.8em - 1px);
    width: calc(72.8em - 1px);
    height: 100%;
    padding: 25em 14em 0 14em;
    text-align: center;
    background: -webkit-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
    background: -moz-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
    background: -o-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
    background: linear-gradient(35deg, var(--grad_start), var(--grad_stop));
    color: white;
}
.desktop .auth__login_box .auth__left_box,
.h-tablet .auth__login_box .auth__left_box{
    float: left;
}
.desktop .auth__left_box .auth__button,
.h-tablet .auth__left_box .auth__button{
    background: none;
    border: solid 2px white;
    line-height: -webkit-calc(8.4em - 2px);
    line-height: -moz-calc(8.4em - 2px);
    line-height: calc(8.4em - 2px);
}
.desktop #auth__to_signup,
.desktop #auth__to_login,
.h-tablet #auth__to_signup,
.h-tablet #auth__to_login{
    margin-top: 9.5em;
}
.desktop .auth__left_box .auth__button:hover,
.h-tablet .auth__left_box .auth__button:hover{
    background: white;
    color: var(--main-color)
}
.desktop .auth__left_box>span:nth-of-type(1),
.h-tablet .auth__left_box>span:nth-of-type(1){
    font-family: Kontora_bold;
    font-size: 7em;
    line-height: 1.5em;
}
.desktop .auth__reset_box .auth__left_box>span:nth-of-type(1),
.h-tablet .auth__reset_box .auth__left_box>span:nth-of-type(1){
    font-size: 6em;
    line-height: 2em;
}
.desktop .auth__left_box>span:nth-of-type(1),
.h-tablet .auth__left_box>span:nth-of-type(1){
    margin: 0 -3em;
}
.desktop .auth__left_box>span:nth-of-type(2),
.h-tablet .auth__left_box>span:nth-of-type(2){
    font-size: 3.3em;
}
.desktop .auth__form_box,
.h-tablet .auth__form_box{
    float: left;
    width: -webkit-calc(117.1em - 1px);
    width: -moz-calc(117.1em - 1px);
    width: calc(117.1em - 1px);
    padding: 19.8em 38em 0;
}
.desktop .auth__form_center,
.h-tablet .auth__form_center{
    width: -webkit-calc(117.1em - 1px);
    width: -moz-calc(117.1em - 1px);
    width: calc(117.1em - 1px);
}
.desktop .auth__login_box .auth__form_box,
.h-tablet .auth__login_box .auth__form_box{
    float: right;
}
.desktop .auth__back_and_close,
.h-tablet .auth__back_and_close{
    margin: 0;
}
.desktop .auth__close_form,
.h-tablet .auth__close_form{
    position: absolute;
    top: 3.3em;
    right: 3.3em;
    width: 2.5em;
    height: 2.5em;
    margin: 0;
}
.desktop .auth__close_svg,
.h-tablet .auth__close_svg {
    width: 100%;
    height: 100%;
}
.desktop .auth__close_text,
.h-tablet .auth__close_text {
    display: none;
}
.desktop .auth__close_svg svg,
.h-tablet .auth__close_svg svg {
    fill: #d2d2d2;
}
.desktop .auth__back_form,
.h-tablet .auth__back_form {
    float: none;
    margin: 7em auto;
}
.desktop .auth__reset_box.phone .auth__back_form,
.h-tablet .auth__reset_box.phone .auth__back_form,
.desktop .auth__signup_box.name .auth__back_form,
.h-tablet .auth__signup_box.name .auth__back_form {
    display: none;
}
.desktop .auth__ok_svg,
.h-tablet .auth__ok_svg {
    margin-top: 0;
}
.desktop .auth__ok_text,
.h-tablet .auth__ok_text {
    margin-bottom: 10em;
}
.desktop .auth__timer_code,
.h-tablet .auth__timer_code {
    margin: 0 8.5em 0 -8.5em;
}


.category__container{
	position: relative;
	float: left;
	height: 100%;
}
.category__main{
	position: relative;
    width: 7.6em;
    height: 7.6em;
	margin: 1.2em 0 0 2em;
	padding: 2.1em;
	-webkit-border-radius: 50%;
	   -moz-border-radius: 50%;
	        border-radius: 50%;
	cursor: pointer;
}
.circle__border{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.circle__border rect{
  fill: none;
  stroke: url(#gradient);
  stroke-width: 0.3em;
  width: -webkit-calc(100% - 0.6em);
  width: -moz-calc(100% - 0.6em);
  width: calc(100% - 0.6em);
  height: -webkit-calc(100% - 0.6em);
  height: -moz-calc(100% - 0.6em);
  height: calc(100% - 0.6em);
}
.desktop .circle__border{
	display: none;
}
.category__icon{
    width: 100%;
    height: 100%;
}
.category__icon svg{
	fill: #db6c64;
}
.category__text{
    display: none;
}
.category__overflow_box{
	position: absolute;
	top: 0;
    width: 100vw;
	height: 100vh;
    background: var(--main-bg-color);
	overflow-y: auto;
    -ms-scroll-chaining: none;
        overscroll-behavior: contain;
    scrollbar-gutter: stable;
	opacity: 0;
	-webkit-transform: translate3d(0,-3em,0);
	   -moz-transform: translate3d(0,-3em,0);
	        transform: translate3d(0,-3em,0);
	-webkit-transition-property: opacity, -webkit-transform;
	transition-property: opacity, -webkit-transform;
	-o-transition-property: opacity, -o-transform;
	-moz-transition-property: transform, opacity, -moz-transform;
	transition-property: transform, opacity;
	transition-property: transform, opacity, -webkit-transform, -moz-transform, -o-transform;
	-webkit-transition-duration: 0.3s, 0.3s;
	   -moz-transition-duration: 0.3s, 0.3s;
	     -o-transition-duration: 0.3s, 0.3s;
	        transition-duration: 0.3s, 0.3s;
	pointer-events: none;
    z-index: 1;
}
.open .category__overflow_box{
	-webkit-transform: translate3d(0,0,0);
	   -moz-transform: translate3d(0,0,0);
	        transform: translate3d(0,0,0);
	opacity: 1;
	pointer-events: all;
}
.category__header{
    height: 10.7em;
    background: -webkit-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
    background: -moz-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
    background: -o-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
    background: linear-gradient(35deg, var(--grad_start), var(--grad_stop));
}
.category__header svg{
    fill: white;
}
.category__header_back{
    float: left;
    width: 9.5em;
    height: 10.7em;
    padding: 2.5em;
    -webkit-transform: scaleX(-1);
       -moz-transform: scaleX(-1);
        -ms-transform: scaleX(-1);
         -o-transform: scaleX(-1);
            transform: scaleX(-1);
}
.category__header_title{
    position: absolute;
    left: 0;
    right: 0;
    height: 10.7em;
    line-height: 11.5em;
    padding-left: 1.6em;
    text-align: center;
    color: white;
    white-space: nowrap;
    overflow: hidden;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
}
.category__header_title span{
    font-size: 3.5em;
}
.category__header_exit{
    float: right;
    width: 11em;
    height: 10.7em;
    padding: 2.9em;
    -webkit-transform: scaleX(1);
       -moz-transform: scaleX(1);
        -ms-transform: scaleX(1);
         -o-transform: scaleX(1);
            transform: scaleX(1);
}
.category__list{
	position: absolute;
    width: 100%;
	-webkit-transform: translate3d(-3em,0,0);
	   -moz-transform: translate3d(-3em,0,0);
	        transform: translate3d(-3em,0,0);
	-webkit-transition-property: opacity, -webkit-transform;
	transition-property: opacity, -webkit-transform;
	-o-transition-property: opacity, -o-transform;
	-moz-transition-property: transform, opacity, -moz-transform;
	transition-property: transform, opacity;
	transition-property: transform, opacity, -webkit-transform, -moz-transform, -o-transform;
	-webkit-transition-duration: 0.3s, 0.3s;
	   -moz-transition-duration: 0.3s, 0.3s;
	     -o-transition-duration: 0.3s, 0.3s;
	        transition-duration: 0.3s, 0.3s;
    -webkit-box-shadow: 0 0.25em 0 var(--main-color);
       -moz-box-shadow: 0 0.25em 0 var(--main-color);
            box-shadow: 0 0.25em 0 var(--main-color);
	opacity: 0;
	z-index: -1;
	pointer-events: none;
}
.category__list_main{
	position: static;
	height: 100%;
    -webkit-transform: translate3d(0,0,0);
       -moz-transform: translate3d(0,0,0);
            transform: translate3d(0,0,0);
	overflow: hidden;
    font-size: 1.4em;
}
.open_list>.category__list{
	-webkit-transform: translate3d(0,0,0);
	   -moz-transform: translate3d(0,0,0);
	        transform: translate3d(0,0,0);
	opacity: 1;
	pointer-events: all;
    z-index: 5;
}
.parent_open_list>.category__cell{
	height: 0;
    margin-top: -2px;
}
.parent_open_list>.category__cell>.category__ul,
.parent_open_list>.category__cell>.category__arrow{
	opacity: 0;
	pointer-events: none;
}
.open .category__list_main{
	opacity: 1;
	pointer-events: all;
}
.category__cell{
	position: relative;
    width: 100%;
	height: 6.6em;
	margin-bottom: -0.2em;
    border: 0.1em solid #e5e5e5;
	background-color: white;
	cursor: pointer;
	z-index: 1;
}
.category__full{
	cursor: default;
}
.category__ul{
    position: relative;
    font-size: 2em;
	white-space: nowrap;
    margin-left: 1em;
	margin-right: 2em;
	height: 100%;
	line-height: 3.3em;
    overflow: hidden;
    -webkit-transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -moz-transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.category__arrow{
    position: absolute;
	top: 0;
	bottom: 0;
	right: 1.1em;
	margin: auto;
    font-size: 2em;
    width: 0.8em;
    height: 1.3em;
	display: none;
}
.category__full>.category__arrow{
    display: block;
    pointer-events: none;
}
.category__img_white {
    display: none;
}

/* - - - - - v-tablet - - - - - */

.v-tablet .category__main{
	margin-top: 0.75em;
}
.v-tablet .category__overflow_box{
    left: -10.5em;
}
.v-tablet .category__list_main{
    font-size: 1.1em;
}

/* - - - - - h-tablet - - - - - */

.h-tablet .category__main{
    margin-top: 1.5em;
}
.h-tablet .category__overflow_box{
    left: -29.8em;
}
.h-tablet .category__list_main{
    font-size: 0.7em;
}

/* - - - - - desktop - - - - - */

.desktop .category__container{
	position: absolute;
	bottom: 0;
	width: 22.5%;
	height: 4.05em;
}
.desktop .category__main{
	position: relative;
	width: 13.3em;
    height: 100%;
	margin: 0;
	background: -webkit-linear-gradient(55deg, #d27261, #e05a86);
	background: -moz-linear-gradient(55deg, #d27261, #e05a86);
	background: -o-linear-gradient(55deg, #d27261, #e05a86);
	background: linear-gradient(35deg, #d27261, #e05a86);
    -webkit-border-radius: 0;
       -moz-border-radius: 0;
            border-radius: 0;
	border: none;
	padding: 1.4em 1em;
	z-index: 5;
}
.desktop .category__main:hover{
	background: -webkit-linear-gradient(235deg, #d27261, #e05a86);
	background: -moz-linear-gradient(235deg, #d27261, #e05a86);
	background: -o-linear-gradient(235deg, #d27261, #e05a86);
	background: linear-gradient(215deg, #d27261, #e05a86);
}
.desktop .category__icon{
    float: left;
    width: 2.5em;
    height: 1.5em;
    padding: 0;
    -webkit-transform: scaleX(1.15);
       -moz-transform: scaleX(1.15);
        -ms-transform: scaleX(1.15);
         -o-transform: scaleX(1.15);
            transform: scaleX(1.15);
}
.desktop .category__icon path{
	fill: white;
}
.desktop .category__text{
	display: block;
    float: left;
    font-size: 1.92em;
	line-height: 0.75em;
	margin-left: 0.3em;
    color: #fff;
}
.desktop .category__header{
    display: none;
}
.desktop .category__overflow_box{
    top: 100%;
    width: 98%;
    height: auto;
	overflow-y: visible;
	z-index: -2;
}
.desktop .category__list{
    bottom: 0.1em;
    left: 100%;
    width: auto;
    height: auto;
    -webkit-box-shadow: 0.3em 0.3em 0 var(--main-color);
       -moz-box-shadow: 0.3em 0.3em 0 var(--main-color);
            box-shadow: 0.3em 0.3em 0 var(--main-color);
}
.desktop .category__list_main{
    font-size: 1em;
    overflow: visible;
}
.desktop .category__cell{
	height: 4em;
}
.desktop .open_list {
    z-index: 2;
}
.desktop .category__cell_main{
	display: block;
}
.desktop .category__ul,
.desktop .category__arrow{
    font-size: 1.2em;
	line-height: 3.33333em;
}
.desktop .category__cell>a:before,
.desktop .category__cell:before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    bottom: -2px;
    right: -2px;
    background: -webkit-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
    background: -moz-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
    background: -o-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
    background: linear-gradient(35deg, var(--grad_start), var(--grad_stop));
    -webkit-transform: scale(0, 1);
       -moz-transform: scale(0, 1);
        -ms-transform: scale(0, 1);
         -o-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: right center;
       -moz-transform-origin: right center;
        -ms-transform-origin: right center;
         -o-transform-origin: right center;
            transform-origin: right center;
    -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition: -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: -o-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -moz-transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), -moz-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), -moz-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), -o-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.desktop .category__cell>a:hover:before{
    -webkit-transform: scale(1, 1);
       -moz-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
         -o-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: left center;
       -moz-transform-origin: left center;
        -ms-transform-origin: left center;
         -o-transform-origin: left center;
            transform-origin: left center;
}
.desktop .open_list:before{
    -webkit-transform: scale(1, 1);
       -moz-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
         -o-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: left center;
       -moz-transform-origin: left center;
        -ms-transform-origin: left center;
         -o-transform-origin: left center;
            transform-origin: left center;
    opacity: 0.5;
}
.desktop .category__cell:hover>a>.category__ul,
.desktop .category__cell:hover>.category__ul{
    color: white;
}
.desktop .category__cell:hover>div>.category__img_black {
    display: none;
}
.desktop .category__cell:hover>div>.category__img_white {
    display: block;
}


.search__container{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 0.965em;
    -ms-scroll-chaining: none;
        overscroll-behavior: contain;
    background-color: var(--main-bg-color);
    -webkit-transform: translate3d(50%,0,0);
       -moz-transform: translate3d(50%,0,0);
            transform: translate3d(50%,0,0);
    opacity: 0;
    pointer-events: none;
    z-index: 1;
}
.search__container.open,
.desktop .search__container{
    opacity: 1;
    -webkit-transform: translate3d(0,0,0);
       -moz-transform: translate3d(0,0,0);
            transform: translate3d(0,0,0);
    pointer-events: all;
    -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
    transition: opacity 0.5s, -webkit-transform 0.5s;
    -o-transition: opacity 0.5s, -o-transform 0.5s;
    -moz-transition: transform 0.5s, opacity 0.5s, -moz-transform 0.5s;
    transition: transform 0.5s, opacity 0.5s;
    transition: transform 0.5s, opacity 0.5s, -webkit-transform 0.5s, -moz-transform 0.5s, -o-transform 0.5s;
}
.search__container.close{
    opacity: 0;
    -webkit-transform: scale(1.1);
       -moz-transform: scale(1.1);
        -ms-transform: scale(1.1);
         -o-transform: scale(1.1);
            transform: scale(1.1);
    -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
    transition: opacity 0.5s, -webkit-transform 0.5s;
    -o-transition: opacity 0.5s, -o-transform 0.5s;
    -moz-transition: transform 0.5s, opacity 0.5s, -moz-transform 0.5s;
    transition: transform 0.5s, opacity 0.5s;
    transition: transform 0.5s, opacity 0.5s, -webkit-transform 0.5s, -moz-transform 0.5s, -o-transform 0.5s;
}
.search__container svg{
    fill: #333333;
}
.search__form_box{
    font-size: 2em;
    width: 27.8em;
    height: 2.7em;
    margin: 0.8em 0 0 0.33em;
    border: solid 1px black;
    -webkit-box-shadow: 0.11em 0.15em 0 #e05a86;
       -moz-box-shadow: 0.11em 0.15em 0 #e05a86;
            box-shadow: 0.11em 0.15em 0 #e05a86;
}
#search__form{
    height: 100%;
}
#search__input{
    width: 14em;
    height: 1.65em;
    font-size: 1.46em;
    background-color: transparent;
}
#search__clear,
#search__submit{
    float: right;
    height: 2.7em;
    padding: 0 1em 0.3em 0.7em;
}
#search__submit{
    width: 3.1em;
}
#search__clear{
    position: relative;
    width: 2.9em;
    cursor: pointer;
}
#search__clear:hover svg,
#search__submit:hover svg{
    fill: var(--main-color);
}
#search__clear:before{
    content: '';
    position: absolute;
    top: 0.3em;
    right: 0;
    width: 1px;
    height: 2em;
    background-color: gray;
}
#search__form.empty #search__clear{
    display: none;
}
#search__close{
    position: absolute;
    top: 0.8em;
    right: 1.4em;
    height: 2.7em;
    line-height: 2.7em;
    color: var(--main-color);
}
#search__close span{
    font-size: 1.4em;
}
#search__hint{
    width: 35em;
    margin-left: -0.37em;
    padding-top: 0.8em;
}
#search__hint.open{
	display: block;
}
#search__hint a{
    display: block;
    position: relative;
}
#search__hint a:hover:before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: -webkit-gradient(linear, left top, right top, from(var(--grad_start)), to(var(--grad_stop)));
    background-image: -webkit-linear-gradient(left, var(--grad_start), var(--grad_stop));
    background-image: -moz-linear-gradient(left, var(--grad_start), var(--grad_stop));
    background-image: -o-linear-gradient(left, var(--grad_start), var(--grad_stop));
    background-image: linear-gradient(to right, var(--grad_start), var(--grad_stop));
    opacity: 0.3;
    z-index: -1;
}
.search__clear_history{
    height: 4em;
    padding-left: 1.8em;
    line-height: 4em;
    color: #aaa;
    cursor: pointer;
}
.search__clear_history span{
    font-size: 1.6em;
}
.search__clear_history:hover{
    color: #333;
}
.search__request {
    width: 100%;
    height: 3.1em;
    padding: 0 0.7em 0 1.5em;
    overflow: hidden;
}
.search__request span {
    font-size: 1.82em;
}
.search__request_icon{
    float: left;
    width: 1.3em;
    height: 1.3em;
    margin-top: 0.9em;
    margin-right: 0.6em;
    background-image: url("images/svg/search_clock.svg");
    background-repeat: no-repeat;
    -moz-background-size: contain;
         background-size: contain;
    background-position: center;
}
.search__request.popular .search__request_icon{
    background-image: url("images/svg/search_loupe.svg");
}
.search__request_text{
    float: left;
    width: 27.9em;
    line-height: 3.1em;
    white-space: nowrap;
    overflow: hidden;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
}
.search__exclude_user_query{
    float: right;
    width: 3.1em;
    height: 3.1em;
    margin-left: -1em;
    padding: 0.75em;
}
.search__exclude_user_query div{
    width: 1.6em;
    height: 1.6em;
    background-image: url("images/svg/close.svg");
    background-repeat: no-repeat;
    -moz-background-size: contain;
         background-size: contain;
    background-position: center;
}
.search__exclude_user_query span{
    display: none;
}
#search__categories_box{
    margin-top: 1.9em;
    padding-top: 1em;
}
#search__categories_box a{
    display: block;
    margin-bottom: 0.8em;
}
.search__category{
    padding: 0.2em 1.75em;
}
#search__categories_box a:nth-of-type(1):after{
    content: "";
    width: 31.5em;
    height: 1px;
    top: -1em;
    left: 1.75em;
    background-color: #aaa;
}
.search__category_name span{
    font-family: Kontora_bold;
    font-size: 1.75em;
    color: var(--main-color);
}
.search__category_bread{
    margin-top: 0.2em;
}
.search__category_bread span{
    font-size: 1.3em;
}

/* - - - - - tablet - - - - - */

.tablet .search__container{
    font-size: 0.715em;
}
.tablet #search__hint {
    font-size: 0.78em;
    width: 61.15em;
}

/* - - - - - v-tablet - - - - - */


.v-tablet #search__hint{
    margin-left: -9.4em;
}
.v-tablet .search__request{
    padding: 0 1.5em 0 2.8em;
}
.v-tablet .search__category{
    padding: 0.3em 3em;
}
.v-tablet #search__categories_box a:nth-of-type(1):after {
    left: 3em;
}
.v-tablet .search__form_box{
    margin-left: 7.33em;
}
.v-tablet #search__close{
    right: 7.33em;
}

/* - - - - - h-tablet - - - - - */

.h-tablet .search__form_box{
    width: 38.7em;
    margin-left: 1.2em;
}
.h-tablet #search__close{
    right: 1.9em;
}
.h-tablet #search__input{
    width: 22.3em;
    padding-left: 1em;
}
.h-tablet #search__hint{
    margin-left: -1.52em;
}
.h-tablet .search__all_requests{
    float: left;
    width: 37.3em;
    margin-right: 1.5em;
}
.h-tablet .search__clear_history{
    position: relative;
    top: -0.37em;
    left: 1.33em;
}
.h-tablet .search__clear_history span{
    font-size: 1.65em;
}
.h-tablet .search__request{
    padding: 0 0.5em 0 1.7em;
}
.h-tablet #search__categories_box{
    float: left;
    width: 22.35em;
    padding-top: 1.5em;
}
.h-tablet #search__categories_box a:nth-of-type(1):after{
    width: 1px;
    height: 11.15em;
    top: 1.53em;
    left: 0;
}

/* - - - - - desktop - - - - - */

.desktop .search__container{
    position: relative;
    top: 8.5em;
    float: left;
    font-size: 0.523em;
    width: 80em;
}
.desktop .search__form_box{
    width: 39.55em;
    margin: 0.4em 0 0 0;
    -webkit-box-shadow: 0.25em 0.25em 0 #e05a86;
       -moz-box-shadow: 0.25em 0.25em 0 #e05a86;
            box-shadow: 0.25em 0.25em 0 #e05a86;
}
.desktop #search__form{
    background-color: white;
}
.desktop #search__close{
    display: none;
}
.desktop #search__submit{
    width: 3.1em;
    padding: 0.2em 1.3em 0.3em 0.7em;
}
.desktop #search__clear{
    padding: 0.2em 0.8em 0.3em 1.1em;
}
.desktop #search__input{
    width: 22.5em;
    height: 1.75em;
    padding-left: 1em;
    color: gray;
}
.desktop #search__input:focus{
    color: black;
}
.desktop #search__hint{
    display: none;
    font-size: 0.685em;
    width: -webkit-calc(100% + 2px);
    width: -moz-calc(100% + 2px);
    width: calc(100% + 2px);
    margin-left: -1px;
    padding: 0;
    background-color: white;
    border: solid 1px black;
    -webkit-box-shadow: 0.45em 0.45em 0 #e05a86;
       -moz-box-shadow: 0.45em 0.45em 0 #e05a86;
            box-shadow: 0.45em 0.45em 0 #e05a86;
}
.desktop .search__container.focus.not_empty #search__hint{
    display: block;
}
.desktop .search__clear_history{
    padding-left: 1.3em;
    padding-bottom: 4.4em;
}
.desktop #search__hint a:hover:before{
    z-index: 0;
}
.desktop .search__request{
    padding: 0 0 0 1em;
}
.desktop .search__request_text{
    width: 50.4em;
}
.desktop .search__exclude_user_query{
    width: 7.4em;
    padding: 0;
}
.desktop .search__exclude_user_query div{
    width: 100%;
    line-height: 3.1em;
    text-align: center;
    background-image: none;
}
.desktop .search__exclude_user_query span{
    display: inline;
    font-size: 1.3em;
}
.desktop #search__categories_box{
    margin-top: 0.75em;
    padding-top: 1.5em;
}
.desktop .search__category{
    padding-left: 1.2em;
}
.desktop .search__category_bread{
    padding-left: 0.2em;
}
.desktop #search__categories_box a:nth-of-type(1):after{
    width: 100%;
    top: -1.4em;
    left: 0;
}
.desktop a:hover .search__request_text{
    color: black;
}




.user__container {
    position: relative;
}
.change_container .user__container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    min-height: 100vh;
    font-size: 1.78571425em;
    z-index: 21;
}
.user__header{
    height: 10.6em;
    background: -webkit-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
    background: -moz-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
    background: -o-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
    background: linear-gradient(35deg, var(--grad_start), var(--grad_stop));
}
.user__header_arrow{
    float: left;
    width: 10em;
    height: 100%;
    padding: 2.2em 2em 2em 3em;
    cursor: pointer;
}
.user__container svg{
    fill: white;
}
.user__header_text{
    float: left;
    height: 10.6em;
    line-height: 11.5em;
    padding-left: 11.3em;
    color: white;
}
.user__header_text span{
    font-size: 3.53em;
}
.user__block{
    float: left;
    width: 30.775em;
    height: 11.3em;
    margin: 1.8em 1.5em;
    border: solid 1px #c8c8c8;
    background-color: white;
    -webkit-box-shadow: 0.5em 0.5em 0 #e05a86;
       -moz-box-shadow: 0.5em 0.5em 0 #e05a86;
            box-shadow: 0.5em 0.5em 0 #e05a86;
}
.user__block.first {
    position: relative;
    width: 64.55em;
    height: 17.7em;
    margin: 1.5em 1.5em 3.7em;
}
.user__circle{
    float: left;
    width: 7.9em;
    height: 7.9em;
    margin: -webkit-calc(1.65em - 1px) -webkit-calc(2.3em - 1px);
    margin: -moz-calc(1.65em - 1px) -moz-calc(2.3em - 1px);
    margin: calc(1.65em - 1px) calc(2.3em - 1px);
    padding: 1.1em;
    -webkit-border-radius: 50%;
       -moz-border-radius: 50%;
            border-radius: 50%;
    background: -webkit-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
    background: -moz-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
    background: -o-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
    background: linear-gradient(35deg, var(--grad_start), var(--grad_stop));
}
.user__block.discounts .user__circle {
    background: white;
    padding: 0;
}
.user__block.discounts svg {
    fill: var(--main-color);
}
.user__block.delivery .user__circle {
    padding: 1.1em 1.3em 1.1em 0.9em;
}
.user__block.purchases .user__circle {
    padding: 1.53em;
}
.user__block.first div.user__circle {
    width: 10.3em;
    height: 10.3em;
    margin: -webkit-calc(3.5em - 1px) -webkit-calc(2.3em - 1px);
    margin: -moz-calc(3.5em - 1px) -moz-calc(2.3em - 1px);
    margin: calc(3.5em - 1px) calc(2.3em - 1px);
    text-align: center;
}
.user__circle span{
    font-size: 7.6em;
    color: white;
    line-height: 1.12em;
}
.user__discounts_corner {
    position: absolute;
    top: 0;
    right: 0;
    left: 46%;
    bottom: 40%;
    background: var(--main-color);
}
.user__discounts_percents span {
    font-size: 2.9em;
    color: black;
}
.user__name{
    float: left;
    width: 45em;
    margin-top: 4em;
}
.user__name span{
    font-family: Kontora_bold;
    font-size: 3.13em;
}
.user__login{
    float: left;
    width: 38em;
    margin-top: 0.5em;
    color: #8a8a8a;
}
.user__name,
.user__login{
    white-space: nowrap;
    overflow: hidden;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
}
.user__login span{
    font-size: 3em;
}
.user__block.first .user__svg{
    position: absolute;
    right: 0;
    bottom: 0;
    width: 9.5em;
    height: 9.6em;
    padding: 1.4em;
}
.user__block.first svg{
    fill: url(#gradient);
}
.user__lk_close {
    display: none;
    color: #8a8a8a;
    cursor: pointer;
}
.user__lk_close span {
    font-size: 3em;
}
.user__lk_close:hover {
    color: black;
}
.user__info_text{
    display: none;
}
.user__block_text{
    float: left;
    width: 16em;
    margin-top: 3.6em;
    text-align: center;
}
.user__block_text span{
    font-size: 3.1em;
}
.user__block_lk_text {
    display: none;
}
.user__close{
    position: absolute;
    top: 0;
    right: 0;
    width: 11em;
    height: 10.6em;
    padding: 2.85em;
    cursor: pointer;
}
.user__close span{
    display: none;
}

/* - - - - - v-tablet - - - - - */

.v-tablet .user__header_text{
    padding-left: 19em;
}
.v-tablet .user__block{
    width: 40.3em;
}
.v-tablet .user__block.first{
    width: 83.3em;
}
.v-tablet .user__name{
    width: 60em;
}
.v-tablet .user__login{
    width: 58em;
}
.v-tablet .user__block_text{
    width: 25em;
}

.v-tablet .change_container .user__container {
    font-size: 1.4em;
}

/* - - - - - h-tablet - - - - - */

.h-tablet .user__header_text{
    padding-left: 47.5em;
}
.h-tablet .user__block.first{
    width: 140.5em;
}
.h-tablet .user__block{
    -webkit-box-shadow: 0.8em 0.8em 0 #e05a86;
       -moz-box-shadow: 0.8em 0.8em 0 #e05a86;
            box-shadow: 0.8em 0.8em 0 #e05a86;
}
.h-tablet .user__name,
.h-tablet .user__login{
    width: 115em;
}
.h-tablet .user__header_arrow{
    padding: 2.2em 0 2em 4em;
}
.h-tablet #user__close{
    padding: 2.4em 2.9em 2.4em 2.1em;
}

.h-tablet .change_container .user__container {
    font-size: 0.85em;
}

/* - - - - - desktop - - - - - */

.desktop .header__user_or_auth_box .user__container {
    font-size: 0.174em;
    width: 65em;
    height: 51.149em;
    padding: 3.9em 4.3em;
    -webkit-transform: translateY(0);
       -moz-transform: translateY(0);
        -ms-transform: translateY(0);
         -o-transform: translateY(0);
            transform: translateY(0);
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    -o-transition: -o-transform 0.3s;
    -moz-transition: transform 0.3s, -moz-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s, -moz-transform 0.3s, -o-transform 0.3s;
}
.header__user_or_auth_box.animation .user__container{
    -webkit-transform: translateY(-100%);
       -moz-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
         -o-transform: translateY(-100%);
            transform: translateY(-100%);
}
.desktop .header__user_or_auth_box .user__header{
    display: none;
}
.desktop .header__user_or_auth_box .user__block{
    float: none;
    width: 100%;
    height: 4.5em;
    margin: 2em 0;
    border: none;
    -webkit-box-shadow: none;
       -moz-box-shadow: none;
            box-shadow: none;
}
.desktop .header__user_or_auth_box .user__block.first {
    width: 100%;
    height: 15em;
    margin: 0;
}
.desktop .header__user_or_auth_box .user__circle {
    width: 1.2em;
    height: 1.2em;
    margin: 1em 2em 0 0;
    padding: 0;
    background: black;
}
.desktop .header__user_or_auth_box .user__block_text {
    width: auto;
    margin-top: -0.1em;
    text-align: left;
}
.desktop .header__user_or_auth_box .user__block:hover .user__block_text {
    color: var(--main-color);
}
.desktop .header__user_or_auth_box .user__block:hover .user__circle {
    background: var(--main-color);
}
.desktop .header__user_or_auth_box .user__block_text span {
    font-size: 3.1em;
}
.desktop .header__user_or_auth_box .user__block.first .user__circle {
    padding: 1.1em;
    background: -webkit-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
    background: -moz-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
    background: -o-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
    background: linear-gradient(35deg, var(--grad_start), var(--grad_stop));
}
.desktop .header__user_or_auth_box a:nth-of-type(1) .user__circle {
    padding: 0;
}
.desktop .header__user_or_auth_box a:nth-of-type(2) .user__circle {
    padding: 0;
}
.desktop .header__user_or_auth_box a:nth-of-type(3) .user__circle {
    padding: 0;
}
.desktop .header__user_or_auth_box .user__circle svg {
    display: none;
}
.desktop .header__user_or_auth_box .user__block.first .user__circle {
    margin: 0 4.8em 0 0;
}
.desktop .header__user_or_auth_box .user__name {
    width: 38em;
    margin-top: -1em;
}
.desktop .header__user_or_auth_box .user__block.first .user__svg {
    display: none;
}
.desktop .header__user_or_auth_box .user__info_text {
    display: block;
    line-height: 5.5em;
    color: var(--main-color);
}
.desktop .header__user_or_auth_box .user__info_text span {
    font-size: 3.12em;
}
.desktop .header__user_or_auth_box .user__close {
    position: absolute;
    top: auto;
    bottom: 0;
    right: auto;
    left: 1.1em;
    width: 100%;
}
.desktop .header__user_or_auth_box .user__close:hover {
    color: var(--main-color);
}
.desktop .header__user_or_auth_box .user__close svg {
    float: left;
    width: 4.7em;
    margin-right: 1.5em;
    fill: url(#gradient);
}
.desktop .header__user_or_auth_box .user_close_text {
    float: left;
    line-height: 5em;
}
.desktop .header__user_or_auth_box .user__close span {
    display: inline;
    font-size: 3.1em;
}

/* - - - - - desktop lk - - - - - */

.desktop .change_container .user__container {
    position: static;
    font-size: 0.5em;
    min-height: auto;
}
.desktop .change_container .user__header{
    display: none;
}
.desktop .change_container .user__block {
    position: relative;
    width: 55.2em;
    height: 35.3em;
    margin: 3.5em 10em 3em 0;
}
.desktop .change_container .user__block.delivery {
    float: right;
}
.desktop .change_container a:nth-of-type(3n+1) .user__block {
    margin-right: 0.5em;
}
.desktop .change_container .user__circle {
    width: 10em;
    height: 10em;
    margin-top: -webkit-calc(2.3em - 1px);
    margin-top: -moz-calc(2.3em - 1px);
    margin-top: calc(2.3em - 1px);
}
.desktop .change_container .user__block.first .user__circle {
    float: left;
    margin-top: -webkit-calc(2.3em - 1px);
    margin-top: -moz-calc(2.3em - 1px);
    margin-top: calc(2.3em - 1px);
}
.desktop .change_container .user__block_text {
    margin-top: 5em;
    text-align: left;
}
.desktop .change_container .user__block_text span {
    font-size: 4.1em;
}
.desktop .change_container .user__block.first .user__name {
    float: left;
    width: 30em;
    margin-top: 5em;
    margin-left: 1em;
}
.desktop .change_container .user__login {
    position: absolute;
    left: 2.5em;
    bottom: 1em;
}
.desktop .change_container .user__close {
    display: none;
}
.desktop .change_container .user__lk_close {
    display: block;
    position: absolute;
    right: 2.5em;
    bottom: 1em;
}
.desktop .change_container .user__block.first a {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
}
.desktop .change_container .user__block_lk_text {
    display: block;
    position: absolute;
    left: 2.5em;
    bottom: 2em;
    color: #8a8a8a;
}
.desktop .change_container .user__block_lk_text span {
    font-size: 3.17em;
}


.mcard__container{
    position: relative;
}
.mcard__photo{
    margin-bottom: 3em;
    width: 100%;
    height: 163em;
}
.mcard__photo img{
	display: block;
	width: 100%;
    height: 163em;
	-o-object-fit: contain;
	   object-fit: contain;
}
.mcard__price_box{
	height: 20em;
	margin-bottom: 3em;
}
.mcard__price{
	float: left;
    width: 40%;
	height: 12em;
	line-height: 12em;
	margin: 2.5em 0 0 8em;
    text-align: center;
    color: #333;
}
.mcard__price:nth-child(2){
	margin-left: 3em;
	-webkit-border-radius: 3.5em;
	   -moz-border-radius: 3.5em;
	        border-radius: 3.5em;
	background-color: #addb64;
}
.mcard__price span{
    font-size: 8em;
}
.mcard__button_box{
    height: 12em;
	margin-bottom: 4em;
}
.mcard__info{
	float: left;
    width: 60%;
	height: 12em;
	line-height: 12em;
    padding-left: 3em;
    color: #262626;
	background-color: white;
	overflow: hidden;
}
.mcard__info div{
    font-size: 6em;
}
.mcard__button {
    float: right;
    width: 12em;
    height: 12em;
	margin-right: 8em;
	margin-left: 4em;
    cursor: pointer;
}
.mcard__button:hover svg,
.mcard__container.in_cart .mcard__button:nth-of-type(1) svg,
.mcard__container.is_like .mcard__button:nth-of-type(2) svg {
    fill: var(--main-color);
}
.mcard__container.in_cart .mcard__button:nth-of-type(1),
.mcard__container.is_like .mcard__button:nth-of-type(2) {
    pointer-events: none;
}
.mcard__sizebox {
	height: 11em;
	border-top: 1px solid black;
}
.mcard__size {
	float: left;
	margin-left: 4em;
	margin-right: 4em;
	line-height: 11em;
	text-align: center;
    cursor: pointer;
}
.mcard__size:hover {
    color: black;
    text-decoration: underline;
}
.mcard__size.checked {
    color: var(--main-color);
    pointer-events: none;
}
.mcard__size span{
    font-size: 4.8em;
}
/* - - - - - not_mobile - - - - - */

.not_mobile .mcard__price_box{
	margin-bottom: 5em;
}
.not_mobile .mcard__price{
	height: 15em;
	line-height: 15em;
}
.not_mobile .mcard__price span{
    font-size: 10em;
}
.not_mobile .mcard__price:nth-child(2){
	margin-left: 5em;
	-webkit-border-radius: 7.5em;
	   -moz-border-radius: 7.5em;
	        border-radius: 7.5em;
	color: #fff;
	background-color: #d27361;
}
.not_mobile .mcard__button_box{
    height: 15em;
	margin-bottom: 7em;
}
.not_mobile .mcard__info{
	height: 15em;
	line-height: 15em;
	padding-left: 7.5em;
}
.not_mobile .mcard__info div{
    font-size: 7.5em;
}
.not_mobile .mcard__button{
    float: right;
    width: 15em;
    height: 15em;
	margin-right: 8em;
	margin-left: 0;
}
.not_mobile .mcard__size{
	margin-left: 3em;
	margin-right: 1em;
}
.not_mobile .mcard__size span{
    font-size: 6em;
}

/* - - - - - desktop - - - - - */




.ncard__container {
    margin-top: 2.3em;
    height: 22em;
    padding: 1.5em;
    clear: both;
}
.ncard__photo {
    float: left;
    width: 14.25em;
    height: 19em;
    -webkit-box-shadow: 0.4em 0.4em var(--main-color);
       -moz-box-shadow: 0.4em 0.4em var(--main-color);
            box-shadow: 0.4em 0.4em var(--main-color);
}
.ncard__photo img {
    width: 100%;
    height: 100%;
}
.ncard__info {
    float: left;
    margin-left: 2em;
}
.ncard__name span {
    font-size: 2.7em;
}
.ncard__price {
    margin-top: 1em;
    margin-bottom: 2em;
}
.ncard__price b {
    font-size: 3.5em;
}
.ncard__size {
    margin-top: 1em;
}
.ncard__size span {
    font-size: 1.9em;
}

/* - - - - - - desktop - - - - - - */

.desktop .ncard__container {
    margin-top: 1.3em;
    padding: 2em;
}
.desktop .ncard__info {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: left;
    -webkit-justify-content: left;
       -moz-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
    margin-top: 8.5em;
    line-height: 3.5em;
}
.desktop .ncard__name {
    width: 46.5em;
}
.desktop .ncard__price {
    margin: 0;
}
.desktop .ncard__size {
    margin: 0 0 0 5em;
}




.nextprev__container{
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: nowrap;
	    -ms-flex-wrap: nowrap;
	        flex-wrap: nowrap;
	-webkit-justify-content: space-around;
	    -ms-flex-pack: distribute;
	        justify-content: space-around;
	pointer-events: none;
}
.nextprev__box{
}
.nextprev__arrow,
.nextprev__part{
	float: left;
	width: 15em;
	height: 15em;
	line-height: 15em;
	margin: 5em 0;
	-webkit-border-radius: 50%;
	   -moz-border-radius: 50%;
	        border-radius: 50%;
	text-align: center;
	cursor: pointer;
	pointer-events: all;
}
.nextprev__arrow{
	padding: 4em;
}
.nextprev__part span{
	font-size: 8em;
}
.nextprev__active,
.nextprev__part:hover{
	background: -webkit-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
	background: -moz-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
	background: -o-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
	background: linear-gradient(35deg, var(--grad_start), var(--grad_stop));
	color: #fff;
}
.nextprev__active{
	cursor: default;
	pointer-events: none;
}
.nextprev__container:hover .nextprev__active{
	opacity: 0.8;
}
.nextprev__arrow svg{
	-webkit-transition: 0.1s ease-in-out;
	-o-transition: 0.1s ease-in-out;
	-moz-transition: 0.1s ease-in-out;
	transition: 0.1s ease-in-out;
}
.nextprev__arrow:hover svg{
	-webkit-transform: scaleX(150%) translateX(-25%);
	   -moz-transform: scaleX(150%) translateX(-25%);
	    -ms-transform: scaleX(150%) translateX(-25%);
	     -o-transform: scaleX(150%) translateX(-25%);
	        transform: scaleX(150%) translateX(-25%);
	fill: var(--main-color);
}
.nextprev__ellipsis{
	float: left;
	width: 6em;
	height: 15.625em;
	line-height: 15.625em;
	margin: 5em 0;
}
.nextprev__ellipsis span{
	font-size: 8em;
}
.mobile .nextprev__container.mob_start{
	margin-left: 2em;
}
.mobile .nextprev__container.mob_end{
	margin-right: 2em;
}
.mobile .nextprev__container.mob_full{
	font-size: 0.965em;
}

/* - - - - - tablet - - - - - */

.tablet .nextprev__container{
	font-size: 0.76em;
}
.tablet .nextprev__container.tab_start{
	margin-left: 2em;
}
.tablet .nextprev__container.tab_end{
	margin-right: 2em;
}

/* - - - - - desktop - - - - - */

.desktop .nextprev__container{
    font-size: 0.23em;
    width: 50%;
	margin: auto;
}


.order__container {
    margin: 1.6em;
    border: solid 1px #c8c8c8;
    -webkit-box-shadow: 0.4em 0.4em var(--main-color);
       -moz-box-shadow: 0.4em 0.4em var(--main-color);
            box-shadow: 0.4em 0.4em var(--main-color);
    background-color: white;
}
.order__title {
    margin-top: 1em;
    margin-left: 1em;
    text-align: center;
}
.order__title span {
    font-size: 2.85em;
}
.order__info_box {
    margin-top: 4em;
    padding-left: 2em;
    line-height: 4.5em;
}
.order__info_box span {
    font-size: 2.8em;
}
.order__info.status {
    margin-top: 7.5em;
}
.order__info b {
    padding-right: 0.25em;
}
.order__pay {
    margin-top: 5.2em;
    height: 8em;
}
.order__pay>div {
    float: right;
    text-align: center;
}
.order__pay_yes {
    width: 22em;
    line-height: 6.6em;
    color: #5ed378;
}
.order__pay_no {
    width: 18em;
    line-height: 3.3em;
    background: -webkit-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
    background: -moz-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
    background: -o-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
    background: linear-gradient(35deg, var(--grad_start), var(--grad_stop));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--main-color);
}
.order__pay span {
    font-size: 2.8em;
}

/* - - - - - - h-tablet - - - - - - */

.h-tablet .order__container {
    font-size: 1.24em;
}
.h-tablet .order__pay {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 1.21em;
    margin: 1.8em;
}

/* - - - - - - desktop - - - - - - */

.desktop .order__container {
    margin: 1.6em 0 0;
}
.desktop .order__title {
    margin-top: 2em;
}
.desktop .order__pay {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 1.33em;
    margin: 1.5em;
}
.desktop .order__pay_yes {
    line-height: 4em;
}
.desktop .order__info_box {
    margin-top: 3.5em;
    padding-left: 3.5em;
    line-height: 4.2em;
}
.desktop .order__info_box span {
    font-size: 2.6em;
}
.desktop .order__info b {
    padding-right: 1em;
}
.desktop .order__info.status {
    margin-top: 2.2em;
    margin-bottom: 7em;
}


.answer__container {
    display: none;
    margin: -2em -4.4em 0;
}
.answer__container.open{
     display: block;
 }
.answer__container.block{
    -webkit-filter: grayscale(100%);
            filter: grayscale(100%);
    pointer-events: none;
}
.answer__container.comment {
    margin: -5em -4.4em -1.5em -18.3em;
}
.answer__header_text {
    font-family: Kontora_bold;
    padding-left: 1em;
    margin-bottom: 2.5em;
}
.answer__header_text span {
    font-size: 6.2em;
}

.answer__form {
    margin-top: 6.2em;
}
.answer__textarea {
    position: relative;
}
.answer__textarea input {
    display: none;
}
.answer__form textarea {
    width: 100%;
    font-size: 4.8em;
    padding: 0.3em 0.3em 3.3em;
    outline: none;
    border: solid 1px var(--main-color);
    resize: none;
}
.answer__form textarea:focus {
    border-width: 2px;
}
.answer__form textarea::-webkit-input-placeholder {
    font-family: Kontora;
}
.answer__form textarea:-moz-placeholder {
    font-family: Kontora;
}
.answer__form textarea::-moz-placeholder {
    font-family: Kontora;
}
.answer__form textarea:-ms-input-placeholder {
    font-family: Kontora;
}
.answer__form textarea::-ms-input-placeholder {
    font-family: Kontora;
}
.answer__form textarea::placeholder {
    font-family: Kontora;
}
.answer__add_photo {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 11.5em;
    height: 11.5em;
    padding: 2em;
}
.answer__add_photo svg {
    fill: var(--main-color);
}

.answer__photo_box {
    position: relative;
    margin-top: 1.8em;
}
.answer__photo {
    position: relative;
    float: left;
    height: 100%;
    margin-right: 2em;
    margin-top: 2em;
}
.answer__photo img,
.answer__photo video {
    height: 16.5em;
}
.answer__photo img.preview {
    opacity: 0.4;
    -webkit-filter: grayscale(70%);
            filter: grayscale(70%);
}
.answer__photo img:nth-of-type(2),
.answer__photo video:nth-of-type(2) {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
}
.answer__photo:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    height: 30%;
    max-width: 96%;
    aspect-ratio: 1;
    margin: 2%;
    -webkit-border-radius: 50%;
       -moz-border-radius: 50%;
            border-radius: 50%;
    background-color: rgba(0,0,0,0.5);
    background-image: url("images/svg/close-white.svg");
    -moz-background-size: 50%;
         background-size: 50%;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    z-index: 1;
}
.answer__extra_photo,
.answer__photo .video-play {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 6em;
    height: 6em;
    max-width: 90%;
    margin: auto;
    -webkit-border-radius: 50%;
       -moz-border-radius: 50%;
            border-radius: 50%;
    background-color: var(--main-color);
}
.answer__extra_photo {
    line-height: 6em;
    color: white;
    text-align: center;
}
.answer__extra_photo span {
    font-size: 3.6em;
}
.answer__photo .video-play {
    background-image: url('images/svg/play.svg');
    -moz-background-size: 50%;
         background-size: 50%;
    background-position: center;
    background-repeat: no-repeat;
}
.answer__send {
    height: 12em;
    margin-top: 4.2em;
    margin-bottom: 8.8em;
    font-family: Kontora_bold;
    line-height: 12em;
    text-align: center;
    color: white;
    background: -webkit-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
    background: -moz-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
    background: -o-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
    background: linear-gradient(35deg, var(--grad_start), var(--grad_stop));
    -webkit-filter: grayscale(100%);
            filter: grayscale(100%);
}
.validated .answer__send {
    -webkit-filter: grayscale(0);
            filter: grayscale(0);
}
.answer__send span {
    font-size: 5em;
}

/* - - - - - v-tablet - - - - - */

.v-tablet .answer__container {
    margin: -2em 1.4em 0;
}
.v-tablet .answer__container.comment {
    margin: -0.5em -0.7em -1em -13em;
}
.v-tablet .answer__header {
    font-size: 0.9em;
}
.tablet .answer__form {
    margin-top: 4.5em;
}
.v-tablet .answer__send {
    margin-top: 5.3em;
    margin-bottom: 10.8em;
}
.v-tablet .answer__container.comment .answer__send {
    margin-top: 3em;
    margin-bottom: 12.5em;
}

/* - - - - - h-tablet - - - - - */

.h-tablet .answer__container {
    margin: -4em 0.5em 4.5em;
}
.h-tablet .answer__container.comment {
    margin: -1.7em -1.2em 10.5em 2.5em;
}
.h-tablet .answer__header {
    font-size: 0.73em;
}
.h-tablet .answer__form textarea {
    font-size: 3.6em;
    padding: 0.4em 0.2em 2.9em;
}
.h-tablet .answer__add_photo {
    padding-top: 3em;
}
.h-tablet .answer__photo_box {
    float: left;
    width: 66%;
    margin-top: 2em;
}
.h-tablet .answer__send {
    float: right;
    width: 66.5em;
    margin-top: 3.6em;
    height: 10.5em;
    line-height: 11.5em;
}
.h-tablet .answer__send span {
    font-size: 3.5em;
}
.h-tablet .answer__container.comment .answer__send {
    margin-top: 3em;
    margin-bottom: 0;
}

/* - - - - - desktop - - - - - */

.desktop .answer__container {
    margin: -4em 0.5em 8em 0.5em;
}
.desktop .answer__container.comment {
    margin: 2em 2.5em 0 2.5em;
}
.desktop .answer__header {
    font-size: 0.59em;
    position: relative;
    top: -2em;
}
.desktop .answer__form {
    margin-top: 2em;
}
.desktop .answer__form textarea {
    font-size: 3.6em;
    padding: 0.4em 0.2em 2.7em;
}
.desktop .answer__add_photo {
    padding: 4em 0 1.5em 3em;
    cursor: pointer;
}
.desktop .answer__photo_box {
    float: left;
    width: 74%;
    margin-top: 2em;
}
.desktop .answer__send {
    float: right;
    font-size: 0.65em;
    width: 66.5em;
    margin-top: 4em;
    height: 10.5em;
    line-height: 11.5em;
}
.desktop .validated .answer__send {
    cursor: pointer;
}
.desktop .answer__send span {
    font-size: 3.5em;
}
.desktop .answer__container.comment .answer__send {
    margin-top: 3em;
    margin-bottom: 0;
}


.characteristic__container {
    height: 4.7em;
    border-bottom: solid 1px #e3e3e3;
    clear: both;
    margin-bottom: 6.6em;
}
.characteristic__container span {
    font-size: 5em;
}
.characteristic__name {
    float: left;
    margin-right: 20em;
    padding-right: 4em;
    background: var(--main-bg-color);
}
.characteristic__value {
    float: right;
    max-width: 80%;
    padding-left: 4em;
    background: var(--main-bg-color);
    font-family: Kontora_bold;
    text-align: right;
}

/* - - - - - h-tablet - - - - - */

.h-tablet .characteristic__container {
    margin-bottom: 6em;
}

/* - - - - - desktop - - - - - */

.desktop .characteristic__container {
    margin-bottom: 5.3em;
}


@-webkit-keyframes new_comment {
    0%{
        opacity: 0;
    }
    10%{
        opacity: 1;
    }
    100%{
        opacity: 0;
    }
}

@-moz-keyframes new_comment {
    0%{
        opacity: 0;
    }
    10%{
        opacity: 1;
    }
    100%{
        opacity: 0;
    }
}

@-o-keyframes new_comment {
    0%{
        opacity: 0;
    }
    10%{
        opacity: 1;
    }
    100%{
        opacity: 0;
    }
}

@keyframes new_comment {
    0%{
        opacity: 0;
    }
    10%{
        opacity: 1;
    }
    100%{
        opacity: 0;
    }
}

.comment__container {
    position: relative;
    margin-bottom: 8.8em;
}
.comment__container.self::after {
    content: "";
    position: absolute;
    top: -4em;
    left: -7em;
    bottom: -2em;
    right: -6em;
    background-color: #faf0ee;
    border: solid 1px #c8c0be;
    -webkit-box-shadow: 0.7em 0.7em 0 var(--main-color);
       -moz-box-shadow: 0.7em 0.7em 0 var(--main-color);
            box-shadow: 0.7em 0.7em 0 var(--main-color);
    z-index: -1;
}
.comment__comments_box .comment__container.self::after {
    top: -1.5em;
    left: -1.5em;
    right: -1.5em;
}
.answer__container.open+script+div>.comment__container.self {
    display: none;
}
.comment__label {
    float: left;
    width: 12.2em;
    height: 12.2em;
    line-height: 12.2em;
    -webkit-border-radius: 50%;
       -moz-border-radius: 50%;
            border-radius: 50%;
    text-align: center;
    color: white;
    background: -webkit-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
    background: -moz-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
    background: -o-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
    background: linear-gradient(35deg, var(--grad_start), var(--grad_stop));
}
.comment__label span {
    font-size: 9em;
}
.comment__main {
    float: left;
    width: 95em;
    margin-top: -0.5em;
    margin-left: 1.8em;
}
.comment__user {
    float: left;
    margin-left: 2em;
    font-family: Kontora_bold;
}
.comment__user span {
    font-size: 3.63em;
}
.comment__date {
    float: left;
    margin-left: 3em;
    color: #6c6c6c;
}
.comment__date span {
    font-size: 3.63em;
}
.comment__score {
    float: left;
    font-size: 0.335em;
    margin-left: 7em;
}

.comment__text {
    clear: both;
    padding: 2em 2em 0;
    line-height: 7em;
}
.comment__text span {
    font-size: 5em;
    word-break: break-word;
}
.comment__text c {
    white-space: nowrap;
    color: var(--main-color);
    cursor: pointer;
}
.comment__text.full span:nth-of-type(2),
.comment__text span:nth-of-type(3) {
    display: none;
}
.comment__text.full span:nth-of-type(3) {
    display: inline;
}

.comment__photo_box {
    margin-top: 3em;
    margin-bottom: 3em;
    height: 16.5em;
    overflow: hidden;
}
.comment__photo {
    position: relative;
    float: left;
    margin-left: 2em;
}
.comment__photo img,
.comment__photo video {
    height: 100%;
}
.comment__photo_plus {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 6em;
    height: 6em;
    margin: auto;
    -webkit-border-radius: 50%;
       -moz-border-radius: 50%;
            border-radius: 50%;
    background-color: var(--main-color);
    line-height: 6em;
    text-align: center;
    color: white;
    pointer-events: none;
}
.comment__photo_plus span {
    font-size: 3em;
}

.comment__footer {
    margin-top: 3em;
    padding: 0.8em 0.9em;
}
.comment__like {
    float: left;
    pointer-events: none;
}
.comment__like_svg {
    display: inline-block;
    width: 7.4em;
    height: 7.4em;
    -webkit-border-radius: 50%;
       -moz-border-radius: 50%;
            border-radius: 50%;
    padding: 1.6em;
    background: #d5d5d5;
    cursor: pointer;
    pointer-events: all;
}
.comment__like:nth-of-type(2) .comment__like_svg {
    -webkit-transform: rotate(180deg);
       -moz-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
         -o-transform: rotate(180deg);
            transform: rotate(180deg);
}
.comment__like:hover .comment__like_svg{
    background: -webkit-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
    background: -moz-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
    background: -o-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
    background: linear-gradient(35deg, var(--grad_start), var(--grad_stop));
    opacity: 0.50;
}
.comment__like:active .comment__like_svg,
.comment__like.active .comment__like_svg {
    background: -webkit-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
    background: -moz-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
    background: -o-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
    background: linear-gradient(35deg, var(--grad_start), var(--grad_stop));
    opacity: 0.80;
}
.comment__like.active:hover .comment__like_svg{
    background: -webkit-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
    background: -moz-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
    background: -o-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
    background: linear-gradient(35deg, var(--grad_start), var(--grad_stop));
    opacity: 1;
}
.comment__like.active:active .comment__like_svg {
    background: #d5d5d5;
}
.comment__like_svg svg {
    fill: white;
}
.comment__like span {
    font-size: 5.3em;
    padding: 0.4em;
}
.comment__question {
    float: left;
    margin-left: 1.6em;
    line-height: 9em;
    color: var(--main-color);
    cursor: pointer;
}
.comment__question span {
    font-size: 4.9em;
}

.comment__comments_box {
    clear: both;
    margin-top: 6.5em;
}
.comment__comments_box .comment__container {
    margin-bottom: 4.5em;
}
.comment__comments_box .comment__main {
    width: 80.5em;
}
.comment__comments_box .comment__question {
    display: none;
}
.comment__add {
    clear: both;
    margin-top: -1.5em;
    line-height: 14em;
    font-family: Kontora_bold;
    color: var(--main-color);
    cursor: pointer;
}
.comment__add .comment__label {
    padding: 4.1em;
    -webkit-transform: rotate(45deg);
       -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
         -o-transform: rotate(45deg);
            transform: rotate(45deg);
}
.comment__label_svg svg {
    fill: white;
    stroke: white;
    stroke-width: 0.6;
}
.comment__add span {
    font-size: 3.9em;
    padding-left: 0.95em;
}

.comment__comments_box .comment__container:not(:last-child) .comment__label:after,
.comment__comments_box:not(:last-child) .comment__container .comment__label:after,
.comment__comments_box>div:not(:last-child)>.comment__container .comment__label:after {
    content: '';
    position: absolute;
    top: 14em;
    bottom: -1em;
    left: 6em;
    width: 1px;
    background: var(--main-color);
    z-index: -1;
}

.comment__new {
    position: relative;
}
.comment__new:after {
    content: '';
    position: absolute;
    top: -2em;
    left: -2em;
    right: -2em;
    bottom: -2em;
    background: wheat;
    -webkit-animation: 3s new_comment;
       -moz-animation: 3s new_comment;
         -o-animation: 3s new_comment;
            animation: 3s new_comment;
    opacity: 0;
}

/* - - - - - not_mobile - - - - - */

.not_mobile .comment__container.self::after {
    left: -4em;
    right: -4em;
}
.not_mobile .comment__comments_box .comment__container.self::after {
    top: -1.5em;
    left: -1.5em;
    right: -1.5em;
}

/* - - - - - v-tablet - - - - - */

.v-tablet .comment__container {
    margin-bottom: 5em;
}
.v-tablet .comment__comments_box .comment__container {
    margin-bottom: 4.5em;
}
.v-tablet .comment__main {
    width: 128em;
}
.v-tablet .comment__comments_box {
    margin-top: 3em;
}
.v-tablet .comment__comments_box .comment__main {
    width: 114em;
}
.v-tablet .comment__photo_box {
    margin-top: 4.2em;
    margin-bottom: 4.8em;
}
.v-tablet .comment__footer {
    margin-top: 2em;
    padding: 0.8em 0.9em;
}

/* - - - - - h-tablet - - - - - */

.h-tablet .comment__container {
    margin-top: 2em;
    margin-bottom: 6em;
}
.h-tablet .comment__comments_box .comment__container {
    margin-bottom: 4.5em;
}
.h-tablet .comment__comments_box .comment__container:not(:last-child) .comment__label:after {
    bottom: -1em;
}
.h-tablet .comment__main {
    width: 185em;
}
.h-tablet .comment__comments_box .comment__main {
    width: 170em;
}
.h-tablet .comment__text {
    font-size: 0.75em;
    padding: 4em 2em 0;
}
.h-tablet .comment__footer {
    font-size: 0.6em;
    padding: 1.6em 0.9em 0;
}

/* - - - - - desktop - - - - - */


.desktop .comment__container {
    margin-bottom: 6.5em;
}
.desktop .comment__comments_box {
    margin-top: 17em;
}
.desktop .comment__comments_box .comment__container {
    margin-bottom: 4.5em;
}
.desktop .comment__main {
    width: 185em;
}
.desktop .comment__comments_box .comment__main {
    width: 165em;
}
.desktop .comment__comments_box .comment__container:not(:last-child) .comment__label:after {
    bottom: -2.5em;
}
.desktop .comment__text {
    font-size: 0.75em;
    padding-top: 3em;
}
.desktop .comment__photo {
    cursor: -webkit-zoom-in;
    cursor: -moz-zoom-in;
    cursor: zoom-in;
}
.desktop .comment__footer {
    font-size: 0.65em;
    padding-left: 2em;
}
.desktop .comment__add {
    margin-top: -1em;
}
.desktop .comment__photo_box {
    margin-bottom: 3.5em;
}
.desktop .comment__answer_box {
    margin-bottom: -13em;
}



.gallery__container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    z-index: 21;
}
.open_gallery .gallery__container {
    display: block;
}
.gallery__back {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}
.gallery__header {
    height: 19em;
    background: -webkit-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
    background: -moz-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
    background: -o-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
    background: linear-gradient(35deg, var(--grad_start), var(--grad_stop));
}
.gallery__count {
    height: 19em;
    line-height: 19em;
    text-align: center;
    color: white;
}
.gallery__count span {
    font-size: 7em;
}
.gallery__close {
    position: absolute;
    top: 0;
    right: 0;
    width: 19.8em;
    height: 19em;
}
.gallery__door {
    height: 100%;
    padding: 5em;
}
.gallery__door svg {
    fill: white;
}
.gallery__cross {
    display: none;
}

.gallery__footer {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 19em;
    background: -webkit-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
    background: -moz-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
    background: -o-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
    background: linear-gradient(35deg, var(--grad_start), var(--grad_stop));
    padding: 2.5em 43.5em;
}
.gallery__arrow:nth-of-type(1) {
    float: left;
    -webkit-transform: rotate(180deg);
       -moz-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
         -o-transform: rotate(180deg);
            transform: rotate(180deg);
}
.gallery__arrow:nth-of-type(2) {
    float: right;
}
.gallery__arrow {
    width: 13.5em;
    height: 13.5em;
    -webkit-border-radius: 50%;
       -moz-border-radius: 50%;
            border-radius: 50%;
    background: white;
    padding: 4em;
    cursor: pointer;
}
.gallery__arrow svg {
    fill: var(--main-color);
}

.gallery__photo_box {
    position: absolute;
    top: 19em;
    left: 0;
    right: 0;
    bottom: 19em;
    pointer-events: none;
}
.gallery__photo {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.gallery__photo:nth-of-type(1) {
    opacity: 0;
    -webkit-transform: translateX(-50%);
       -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
         -o-transform: translateX(-50%);
            transform: translateX(-50%);
}
.gallery__photo:nth-of-type(3) {
    opacity: 0;
    -webkit-transform: translateX(50%);
       -moz-transform: translateX(50%);
        -ms-transform: translateX(50%);
         -o-transform: translateX(50%);
            transform: translateX(50%);
}
.gallery__photo img{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    max-width: 100%;
    max-height: 100%;
    margin: auto;
}
.gallery__photo:nth-of-type(2) img{
    pointer-events: all;
    cursor: -webkit-zoom-in;
    cursor: -moz-zoom-in;
    cursor: zoom-in;
}
.gallery__photo.zoom:nth-of-type(2) img{
    max-width: none;
    max-height: none;
    cursor: -webkit-grab;
    cursor: -moz-grab;
    cursor: grab;
}
.gallery__photo.zoom:nth-of-type(2):active img{
    cursor: -webkit-grabbing;
    cursor: -moz-grabbing;
    cursor: grabbing;
}

.gallery__container.prev .gallery__photo:nth-of-type(1) {
    opacity: 1;
    -webkit-transform: translateX(0);
       -moz-transform: translateX(0);
        -ms-transform: translateX(0);
         -o-transform: translateX(0);
            transform: translateX(0);
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    -o-transition-property: opacity, -o-transform;
    -moz-transition-property: opacity, transform, -moz-transform;
    transition-property: opacity, transform;
    transition-property: opacity, transform, -webkit-transform, -moz-transform, -o-transform;
    -webkit-transition-duration: 0.5s;
       -moz-transition-duration: 0.5s;
         -o-transition-duration: 0.5s;
            transition-duration: 0.5s;
}
.gallery__container.prev .gallery__photo:nth-of-type(2) {
    opacity: 0;
    -webkit-transform: translateX(50%);
       -moz-transform: translateX(50%);
        -ms-transform: translateX(50%);
         -o-transform: translateX(50%);
            transform: translateX(50%);
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    -o-transition-property: opacity, -o-transform;
    -moz-transition-property: opacity, transform, -moz-transform;
    transition-property: opacity, transform;
    transition-property: opacity, transform, -webkit-transform, -moz-transform, -o-transform;
    -webkit-transition-duration: 0.5s;
       -moz-transition-duration: 0.5s;
         -o-transition-duration: 0.5s;
            transition-duration: 0.5s;
}

.gallery__container.next .gallery__photo:nth-of-type(2) {
    opacity: 0;
    -webkit-transform: translateX(-50%);
       -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
         -o-transform: translateX(-50%);
            transform: translateX(-50%);
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    -o-transition-property: opacity, -o-transform;
    -moz-transition-property: opacity, transform, -moz-transform;
    transition-property: opacity, transform;
    transition-property: opacity, transform, -webkit-transform, -moz-transform, -o-transform;
    -webkit-transition-duration: 0.5s;
       -moz-transition-duration: 0.5s;
         -o-transition-duration: 0.5s;
            transition-duration: 0.5s;
}
.gallery__container.next .gallery__photo:nth-of-type(3) {
    opacity: 1;
    -webkit-transform: translateX(0);
       -moz-transform: translateX(0);
        -ms-transform: translateX(0);
         -o-transform: translateX(0);
            transform: translateX(0);
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    -o-transition-property: opacity, -o-transform;
    -moz-transition-property: opacity, transform, -moz-transform;
    transition-property: opacity, transform;
    transition-property: opacity, transform, -webkit-transform, -moz-transform, -o-transform;
    -webkit-transition-duration: 0.5s;
       -moz-transition-duration: 0.5s;
         -o-transition-duration: 0.5s;
            transition-duration: 0.5s;
}

/* - - - - - v-tablet - - - - - */

.v-tablet .gallery__container {
    font-size: 0.8em;
}
.v-tablet .gallery__footer {
    padding: 2.5em 58.5em;
}

/* - - - - - h-tablet - - - - - */

.h-tablet .gallery__container {
    font-size: 0.48em;
}
.h-tablet .gallery__count span {
    font-size: 5.5em;
}
.h-tablet .gallery__door {
    padding: 4.5em;
}
.h-tablet .gallery__footer {
    top: 9em;
    height: 20.6em;
    margin: auto;
    padding: 0 28em;
    background: transparent;
    pointer-events: none;
}
.h-tablet .gallery__arrow {
    width: 20.6em;
    height: 20.6em;
    border: solid 1em var(--main-color);
    padding: 5.7em;
    pointer-events: all;
}
.h-tablet .gallery__photo_box {
    bottom: 0;
}

/* - - - - - desktop - - - - - */

.desktop .gallery__header {
    position: static;
    height: 0;
}
.desktop .gallery__count {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 5.55em;
    line-height: 5.55em;
    text-align: center;
    margin: auto;
    color: black;
    z-index: 1;
    pointer-events: none;
}
.desktop .gallery__count span {
    font-size: 1.5em;
    text-shadow: 0 0 0.7em white,
                 0 0 0.7em white,
                 0 0 0.7em white,
                 0 0 0.7em white,
                 0 0 0.7em white,
                 0 0 0.7em white;
}
.desktop .gallery__close {
    position: absolute;
    top: 0;
    right: 0;
    width: 2.8em;
    height: 3em;
    padding: 1em;
    z-index: 1;
    cursor: pointer;
}
.desktop .gallery__door {
    display: none;
}
.desktop .gallery__cross {
    display: block;
}

.desktop .gallery__photo_box {
    top: 0;
    bottom: 5.55em;
}

.desktop .gallery__footer {
    height: 5.55em;
    padding: 1.2em 56.7em;
    background: transparent;
    pointer-events: none;
}
.desktop .gallery__arrow {
    width: 3em;
    height: 3em;
    background: white;
    border: solid 0.2em var(--main-color);
    padding: 0.8em;
    pointer-events: all;
}
.desktop .gallery__arrow svg {
    fill: var(--main-color);
}
.desktop .gallery__arrow:hover {
    background: -webkit-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
    background: -moz-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
    background: -o-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
    background: linear-gradient(35deg, var(--grad_start), var(--grad_stop));
}
.desktop .gallery__arrow:hover svg {
    fill: white;
}


.photo__container img {
    width: 100%;
}
.photo__main {
    aspect-ratio: var(--main-photo-ratio);
    cursor: -webkit-zoom-in;
    cursor: -moz-zoom-in;
    cursor: zoom-in;
}
.photo__main_in {
    height: 100%;
    overflow: hidden;
}
.photo__main img {
    position: relative;
}
.photo__mini_box {
    padding: 4.2em 3.5em;
    white-space: nowrap;
}
.photo__mini {
    display: inline-block;
    width: 30em;
    height: 45em;
    margin-right: 4.5em;
    padding: 0 1em 1.5em 0;
    opacity: 0.5;
    cursor: pointer;
}
.photo__mini img {
    border: solid 1px #cdcdcd;
    -webkit-box-shadow: 1em 1.5em 0 0 var(--main-color);
       -moz-box-shadow: 1em 1.5em 0 0 var(--main-color);
            box-shadow: 1em 1.5em 0 0 var(--main-color);
}
.photo__mini:hover {
    opacity: 0.7;
}
.photo__mini.active {
    opacity: 1;
    cursor: default;
}
.photo__arrow {
    display: none;
}

/* - - - - - not_mobile - - - - - */

.not_mobile .photo__container {
    position: relative;
}
.not_mobile .photo__main {
    float: right;
    width: 99em;
    margin-right: 0.7em;
}
.not_mobile .photo__main {
    -webkit-box-shadow: 0.7em 1em 0 0 var(--main-color);
       -moz-box-shadow: 0.7em 1em 0 0 var(--main-color);
            box-shadow: 0.7em 1em 0 0 var(--main-color);
}
.not_mobile .photo__mini_box {
    position: absolute;
    top: 0;
    bottom: -0.7em;
    width: 22em;
    padding: 0 1.8em;
}
.not_mobile .photo__scroll_box {
    position: absolute;
    top: 5em;
    bottom: 5em;
    margin: 1.8em 0;
    overflow-y: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.photo__scroll_box::-webkit-scrollbar {
    width: 0;
    background: transparent;
}
.not_mobile .photo__arrow {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    height: 5em;
    padding: 0 1.8em;
    background-color: var(--main-bg-color);
    z-index: 1;
}
.not_mobile .photo__arrow:nth-of-type(3) {
    bottom: 0;
}
.not_mobile .photo__arrow_svg {
    height: 100%;
    padding: 0.8em;
    border: solid 1px #c8c8c8;
    cursor: pointer;
    background-color: white;
    overflow: hidden;
}
.not_mobile .photo__arrow_svg:hover {
    border-color: var(--main-color);
}
.not_mobile .photo__arrow_svg:hover svg {
    fill: var(--main-color);
}
.not_mobile .photo__arrow_svg svg {
    -webkit-transform: rotate(-90deg);
       -moz-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
         -o-transform: rotate(-90deg);
            transform: rotate(-90deg);
}
.not_mobile .photo__arrow:nth-of-type(3) .photo__arrow_svg svg {
    -webkit-transform: rotate(90deg);
       -moz-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
         -o-transform: rotate(90deg);
            transform: rotate(90deg);
}
.not_mobile .photo__mini {
    display: block;
    width: 18.2em;
    height: 27.3em;
    margin-right: 0;
    margin-bottom: 2.2em;
    padding: 0 0.4em 0.8em 0;
}
.not_mobile .photo__mini img {
    -webkit-box-shadow: 0.4em 0.6em 0 0 var(--main-color);
       -moz-box-shadow: 0.4em 0.6em 0 0 var(--main-color);
            box-shadow: 0.4em 0.6em 0 0 var(--main-color);
}
.not_mobile .photo__mini:last-child {
    margin-bottom: 0.6em;
}


/* - - - - - h-tablet - - - - - */

.h-tablet .photo__container {
    float: left;
    font-size: 0.87em;
    width: 121.1em;
}

/* - - - - - desktop - - - - - */

.desktop .photo__container {
    position: relative;
    float: left;
    width: 119em;
}
.desktop .photo__mini_box {
    width: 18.2em;
    padding: 0;
}
.desktop .photo__arrow {
    padding: 0;
}






.sort__out_container{
    position: relative;
	top: -1px;
    width: 100%;
    height: 10em;
}
.sort__container{
    position: absolute;
    width: 100%;
	pointer-events: none;
}
.sort__part{
    position: relative;
    width: 100%;
	height: -webkit-calc(10em - 3px);
	height: -moz-calc(10em - 3px);
	height: calc(10em - 3px);
    line-height: -webkit-calc(10em - 3px);
    line-height: -moz-calc(10em - 3px);
    line-height: calc(10em - 3px);
    cursor: pointer;
    background-color: #fff;
    border: 1px solid var(--filter-color);
	pointer-events: all;
}
.sort__part:hover{
    background-color: #ddd;
}
.sort__part:nth-of-type(1){
    height: 10em;
    line-height: 12em;
    border: none;
	color: var(--main-color);
    background-color: var(--main-bg-color);
}
.sort__part:nth-of-type(1) svg{
   fill: var(--main-color);
}
.sort__part:nth-of-type(1):before{
	content: '';
	position: absolute;
	left: 0;
	bottom: -2px;
	width: -webkit-calc(100% - 2px);
	width: -moz-calc(100% - 2px);
	width: calc(100% - 2px);
	height: 0.3em;
	border: solid 1px var(--main-color);
	background: -webkit-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
	background: -moz-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
	background: -o-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
	background: linear-gradient(35deg, var(--grad_start), var(--grad_stop));
}
.sort__svg{
    float: left;
    width: 7.7em;
    height: 100%;
    padding: 1em;
}
.sort__text{
    font-size: 3.4em;
}
.sort__active{
    cursor: default;
    background-color: #ccc;
}

/* - - - - - h-tablet - - - - - */

.h-tablet .sort__svg{
    width: 8em;
}
.h-tablet .sort__part:nth-of-type(1){
    height: 9.4em;
}

/* - - - - - desktop - - - - - */

.desktop
.sort__part:nth-of-type(1){
    text-align: right;
}


.subcat__container {
    position: relative;
    float: left;
    width: 58.6em;
    height: 41.7em;
    margin: 0 0 1.5em 1.5em;
    padding: 1em;
    background: white;
    overflow: hidden;
    cursor: pointer;
    -webkit-transition: 0.8s;
    -o-transition: 0.8s;
    -moz-transition: 0.8s;
    transition: 0.8s;
}
.subcat__container:hover {
    background: var(--main-color);
}
.subcat__photo.left {
    float: left;
}
.subcat__photo.right {
    float: right;
}
.subcat__photo.center {
    position: absolute;
    left: 18em;
    -webkit-transform: skewX(-8deg);
       -moz-transform: skewX(-8deg);
        -ms-transform: skewX(-8deg);
         -o-transform: skewX(-8deg);
            transform: skewX(-8deg);
    border-left: solid 1em white;
    border-right: solid 1em white;
    background: white;
    -webkit-transition: 0.8s;
    -o-transition: 0.8s;
    -moz-transition: 0.8s;
    transition: 0.8s;
}
.subcat__container:hover .subcat__photo.center {
    border-color: var(--main-color);
    background: var(--main-color);
}
.subcat__photo.center img {
    -webkit-transform: skewX(8deg);
       -moz-transform: skewX(8deg);
        -ms-transform: skewX(8deg);
         -o-transform: skewX(8deg);
            transform: skewX(8deg);
}
.subcat__photo {
    position: relative;
    width: 22em;
    height: 30.3em;
    overflow: hidden;
}
.subcat__photo img {
    position: absolute;
    top: -1.5%;
    left: -1%;
    height: 103%;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    -moz-transition: 0.5s;
    transition: 0.5s;
}
.subcat__photo.center img {
    height: 110%;
    margin-top: -1.8em;
    margin-left: -2.5em;
    -webkit-transform: skewX(8deg);
       -moz-transform: skewX(8deg);
        -ms-transform: skewX(8deg);
         -o-transform: skewX(8deg);
            transform: skewX(8deg);
}
.subcat__photo.left img:nth-of-type(2) {
    -webkit-transform: translate3d(0,100%,0);
       -moz-transform: translate3d(0,100%,0);
            transform: translate3d(0,100%,0);
    -webkit-transition-delay: 0.1s;
       -moz-transition-delay: 0.1s;
         -o-transition-delay: 0.1s;
            transition-delay: 0.1s;
}
.subcat__photo.right img:nth-of-type(2) {
    -webkit-transform: translate3d(0,100%,0);
       -moz-transform: translate3d(0,100%,0);
            transform: translate3d(0,100%,0);
    -webkit-transition-delay: 0.2s;
       -moz-transition-delay: 0.2s;
         -o-transition-delay: 0.2s;
            transition-delay: 0.2s;
}
.subcat__photo.center img:nth-of-type(2) {
    -webkit-transform: translate3d(0,-100%,0) skewX(8deg);
       -moz-transform: translate3d(0,-100%,0) skewX(8deg);
            transform: translate3d(0,-100%,0) skewX(8deg);
}
.subcat__container:hover .subcat__photo.left img:nth-of-type(2) {
    -webkit-transform: translate3d(0,0,0);
       -moz-transform: translate3d(0,0,0);
            transform: translate3d(0,0,0);
}
.subcat__container:hover .subcat__photo.right img:nth-of-type(2) {
    -webkit-transform: translate3d(0,0,0);
       -moz-transform: translate3d(0,0,0);
            transform: translate3d(0,0,0);
}
.subcat__container:hover .subcat__photo.center img:nth-of-type(2) {
    -webkit-transform: translate3d(0,0,0) skewX(8deg);
       -moz-transform: translate3d(0,0,0) skewX(8deg);
            transform: translate3d(0,0,0) skewX(8deg);
    -webkit-transition-delay: 0.2s;
       -moz-transition-delay: 0.2s;
         -o-transition-delay: 0.2s;
            transition-delay: 0.2s;
}
.subcat__name {
    position: relative;
    top: -0.3em;
    clear: both;
    line-height: 11em;
    text-align: center;
    -webkit-transition: 0.8s;
    -o-transition: 0.8s;
    -moz-transition: 0.8s;
    transition: 0.8s;
    background: white;
}
.subcat__container:hover .subcat__name {
    color: white;
    background: var(--main-color);
}
 .subcat__name span{
    font-size: 4em;
}

/* - - - - - desktop - - - - - */

.desktop .subcat__container {
    margin: 0 1.5em 1.5em 0;
}
.desktop a:nth-of-type(5n)>.subcat__container {
    margin-right: -2em;
}




.product__header {
    padding: 3.3em 3.2em 0;
}
.product__name {
    font-family: Kontora_bold;
    line-height: 8em;
}
.product__name span {
    font-size: 4.85em;
}
.product__under_name {
    float: left;
    margin-top: 0.6em;
}
.product__article {
    float: left;
    margin-left: 0.8em;
    margin-right: 3.5em;
    line-height: 7em;
    color: #969696;
}
.product__article span {
    font-size: 3.7em;
}
.product__score {
    float: right;
    font-size: 0.47em;
    margin-top: 1.5em;
    line-height: 5em;
}
.product__score span {
    font-size: 5.8em;
    position: relative;
    top: -0.3em;
    padding-left: 0.9em;
}
.product__main {
    margin-top: 1em;
    margin-bottom: 0.7em;
}
.product__info {
    clear: both;
    margin-top: 8.5em;
}
.product__size_box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
            justify-content: space-around;
    padding: 0 3.5em;
}
.product__size {
    margin-bottom: 3.5em;
    padding: 2em 8.5em;
    border: solid 1px #c8c8c8;
    background: white;
    color: #333;
}
.product__size span {
    font-size: 7.6em;
}

.product__price_box {
    margin-top: 7em;
    padding: 3.5em 7em 1.4em 7em;
    background: white;
    border-top: solid 1px #c8c8c8;
    -webkit-box-shadow: 0 1.7em 0 0 var(--main-color);
       -moz-box-shadow: 0 1.7em 0 0 var(--main-color);
            box-shadow: 0 1.7em 0 0 var(--main-color);
}
.product__price {
    float: left;
    color: #e05a86;
    margin-bottom: 4.5em;
}
.product__price span {
    font-family: Kontora_bold;
    font-size: 12em;
}
.product__like {
    float: right;
    width: 17em;
    height: 17em;
    margin-top: -1.4em;
    margin-right: -5.5em;
    cursor: pointer;
}
.product__like svg {
    fill: white;
    stroke: #e05a86;
    stroke-width: 1em;
}
.product__container.like .product__like svg,
.product__like:hover svg {
    fill: #e05a86;
}
.product__buy_button {
    clear: both;
    padding: 5em;
    background: -webkit-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
    background: -moz-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
    background: -o-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
    background: linear-gradient(35deg, var(--grad_start), var(--grad_stop));
    text-align: center;
    color: white;
    cursor: pointer;
}
.product__buy_button.unknown {
    -webkit-filter: grayscale(100%);
            filter: grayscale(100%);
    pointer-events: none;
}
.product__buy_button:hover {
    background: -webkit-linear-gradient(55deg, var(--grad_stop), var(--grad_start));
    background: -moz-linear-gradient(55deg, var(--grad_stop), var(--grad_start));
    background: -o-linear-gradient(55deg, var(--grad_stop), var(--grad_start));
    background: linear-gradient(35deg, var(--grad_stop), var(--grad_start));
}
.product__buy_button span {
    font-family: Kontora_bold;
    font-size: 6.15em;
}
.product__buy_button.unknown span:nth-of-type(1),
.product__buy_button span:nth-of-type(2) {
    display: none;
}
.product__buy_button.unknown span:nth-of-type(2) {
    display: block;
}
.product__delivery {
    height: 12em;
    text-align: center;
}
.product__buy_button.unknown+.product__delivery{
    cursor: pointer;
}
.product__svg {
    display: inline-block;
}
.product__svg.delivery {
    width: 17em;
}
.product__svg.bell {
    width: 9em;
    margin-right: 2.5em;
}
.product__delivery>span {
    position: relative;
    top: -1.2em;
    font-size: 3.8em;
}
.product__delivery b {
    font-family: Kontora_bold;
}
.product__delivery:hover .product__svg.bell {
    fill: var(--main-color);
}
.product__delivery:hover .product__svg.bell+span {
    color: var(--main-color);
}

.product__future_box {
    padding: 7.5em 4.5em;
    line-height: 8.3em;
}
.product__future_box span {
    font-size: 5em;
}
.product__future_box c {
    color: var(--main-color);
    cursor: pointer;
}

.product__characteristics_box {
    margin-top: 2.5em;
}
.product__characteristics_box>span{
    font-size: 4.8em;
    line-height: 2em;
    color: var(--main-color);
    cursor: pointer;
}
.product__characteristics_box.full>span,
.product__char_full {
    display: none;
}
.product__characteristics_box.full .product__char_full {
    display: block;
}

.product__score_box {
    margin-top: 5.3em;
    background: white;
    border-top: solid 1px #c8c8c8;
    -webkit-box-shadow: 0 1.7em 0 0 var(--main-color);
       -moz-box-shadow: 0 1.7em 0 0 var(--main-color);
            box-shadow: 0 1.7em 0 0 var(--main-color);
}
.product__score_header {
    font-size: 1.07em;
    padding: 3.8em 5em 4.8em;
}
.product__score_num {
    float: right;
    font-family: Kontora_bold;
}
.product__score_num span {
    font-size: 9.5em;
}
.product__score_row {
    height: 21em;
    padding: 7em 5.5em;
    border-top: solid 1px #e8e8e8;
    cursor: pointer;
}
.product__score_row.empty {
    pointer-events: none;
}
.product__score_row.checked {
    pointer-events: all;
}
.product__check {
    float: left;
    width: 6.5em;
    height: 6.5em;
    border: solid 1px #bebebe;
}
.product__score_row.checked .product__check {
    background-image: url('images/svg/check.svg');
    -moz-background-size: contain;
         background-size: contain;
}
.product__variant_stars {
    float: left;
    font-size: 0.47em;
    margin-left: 11em;
}
.product__score_text {
    float: left;
    margin-left: 4.2em;
}
.product__score_text span{
    font-size: 5.4em;
}

.product__reviews_header {
    padding: 7em;
    font-family: Kontora_bold, serif;
}
.product__actions_button {
    height: 18em;
    line-height: 18em;
    margin-bottom: 7.3em;
    background: -webkit-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
    background: -moz-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
    background: -o-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
    background: linear-gradient(35deg, var(--grad_start), var(--grad_stop));
    color: white;
    text-align: center;
    cursor: pointer;
}
.product__actions_button:hover {
    background: -webkit-linear-gradient(55deg, var(--grad_stop), var(--grad_start));
    background: -moz-linear-gradient(55deg, var(--grad_stop), var(--grad_start));
    background: -o-linear-gradient(55deg, var(--grad_stop), var(--grad_start));
    background: linear-gradient(35deg, var(--grad_stop), var(--grad_start));
}
.product__actions_button span {
    font-size: 6.3em;
}
.product__actions_button:nth-of-type(2),
.product__reviews_container.questions .product__actions_button:nth-of-type(1) {
    display: none;
}
.product__reviews_container.questions .product__actions_button:nth-of-type(2) {
    display: block;
}
.product__reviews_button {
    height: 15.5em;
    padding: 3.9em;
    -webkit-box-shadow: 0.7em 0.7em 0 0 var(--main-color);
       -moz-box-shadow: 0.7em 0.7em 0 0 var(--main-color);
            box-shadow: 0.7em 0.7em 0 0 var(--main-color);
    cursor: pointer;
}
.product__reviews_button:hover {
    opacity: 0.7;
}
.product__reviews_button:nth-of-type(3),
.product__reviews_container.questions .product__reviews_button:nth-of-type(4) {
    pointer-events: none;
}
.product__reviews_container.questions .product__reviews_button:nth-of-type(3) {
    pointer-events: all;
}
.product__reviews_button:nth-of-type(3) {
    float: left;
    background: -webkit-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
    background: -moz-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
    background: -o-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
    background: linear-gradient(35deg, var(--grad_start), var(--grad_stop));
    color: white;
}
.product__reviews_button:nth-of-type(4) {
    float: right;
}
.product__reviews_button>span {
    margin-left: 0.35em;
    font-size: 6.2em;
}
.product__reviews_count {
    float: right;
    width: 8.7em;
    height: 8.7em;
    line-height: 9.2em;
    -webkit-border-radius: 50%;
       -moz-border-radius: 50%;
            border-radius: 50%;
    text-align: center;
    margin-left: 5em;
}
.product__reviews_button:nth-of-type(3) .product__reviews_count,
.product__reviews_button:nth-of-type(4):hover .product__reviews_count,
.product__reviews_container.questions .product__reviews_button:nth-of-type(3):hover .product__reviews_count,
.product__reviews_container.questions .product__reviews_button:nth-of-type(4) .product__reviews_count {
    background: white;
    color: var(--grad_stop);
}
.product__reviews_button:nth-of-type(4),
.product__reviews_container.questions .product__reviews_button:nth-of-type(3) {
    background: white;
    color: inherit;
}
.product__reviews_button:nth-of-type(4):hover,
.product__reviews_container.questions .product__reviews_button:nth-of-type(3):hover,
.product__reviews_container.questions .product__reviews_button:nth-of-type(4),
.product__reviews_button:nth-of-type(4) .product__reviews_count,
.product__reviews_container.questions .product__reviews_button:nth-of-type(3) .product__reviews_count {
    background: -webkit-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
    background: -moz-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
    background: -o-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
    background: linear-gradient(35deg, var(--grad_start), var(--grad_stop));
    color: white;
}
.product__reviews_count span {
    font-size: 3em;
}
.product__reviews_box {
    clear: both;
    padding: 7.2em 5.8em;
}
.product__reviews_box:nth-of-type(3),
.product__reviews_container.questions .product__reviews_box:nth-of-type(2){
    display: none;
}
.product__reviews_container.questions .product__reviews_box:nth-of-type(3){
    display: block;
}
.product__add_reviews {
    margin-top: -2em;
    height: 12em;
    line-height: 12em;
    font-family: Kontora_bold;
    text-align: center;
    background: white;
    border: solid 1px #cacaca;
    -webkit-box-shadow: 0.6em 0.8em 0 0 var(--main-color);
       -moz-box-shadow: 0.6em 0.8em 0 0 var(--main-color);
            box-shadow: 0.6em 0.8em 0 0 var(--main-color);
    cursor: pointer;
}
.product__add_reviews:hover {
    background: -webkit-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
    background: -moz-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
    background: -o-linear-gradient(55deg, var(--grad_start), var(--grad_stop));
    background: linear-gradient(35deg, var(--grad_start), var(--grad_stop));
    color: white;
}
.product__add_reviews span {
    font-size: 4.75em;
}

/* - - - - - v-tablet - - - - - */

.v-tablet .product__header {
    padding-top: 1.8em;
}
.v-tablet .product__under_name {
    margin-top: -1.5em;
}
.v-tablet .product__article {
    margin-left: 0;
    margin-right: 2.8em;
}
.tablet .product__article span {
    font-size: 4em;
}
.tablet .product__score {
    font-size: 0.38em;
    margin-top: 3em;
}
.tablet .product__name {
    font-size: 0.83em;
}

.v-tablet .product__main {
    margin-top: 3.5em;
}

.v-tablet .product__info {
    font-size: 0.83em;
    margin-top: 10.2em;
}
.v-tablet .product__size_box {
    padding: 0 1.3em;
}
.v-tablet .product__price_box {
    margin-top: 2.5em;
    padding: 3.5em 20em 1.4em 20em;
}
.v-tablet .product__like {
    margin-right: -1.7em;
}
.v-tablet .product__future_box {
    font-size: 0.83em;
    margin-top: 3em;
}

.v-tablet .product__score_box {
    font-size: 0.83em;
    margin-top: 7em;
}
.v-tablet .product__score_header {
    padding: 3.8em 6.2em 4.8em 9em;
}
.v-tablet .product__score_row  {
    padding: 7em 9.3em;
}

.v-tablet .product__reviews_container  {
    font-size: 0.83em;
}
.v-tablet .product__reviews_header  {
    padding: 9em 3em;
}
.v-tablet .product__reviews_button  {
    padding: 3.9em 12em;
}

.v-tablet .product__reviews_box {
    padding: 7.2em 1em;
}
.v-tablet .product__add_reviews {
    margin: 6.5em 2em;
}
.v-tablet .product__add_reviews span {
    font-size: 5.3em;
}

/* - - - - - h-tablet - - - - - */

.h-tablet .product__header {
    font-size: 0.8em;
    padding-top: 0;
}
.h-tablet .product__under_name {
    font-size: 0.66em;
    margin-top: -2.2em;
}
.h-tablet .product__article {
    margin-left: 0;
    margin-right: 5em;
}

.h-tablet .product__main {
    font-size: 0.66em;
    margin-top: 0.7em;
}

.h-tablet .product__info {
    float: left;
    clear: none;
    font-size: 0.7em;
    width: 109em;
    margin-top: 0;
    padding: 0 6em;
}
.h-tablet .product__size_box {
    padding: 0;
}
.h-tablet .product__price_box {
    font-size: 0.8em;
    margin-top: 6.5em;
    border: solid 1px #c8c8c8;
    -webkit-box-shadow: 1.7em 1.7em 0 0 var(--main-color);
       -moz-box-shadow: 1.7em 1.7em 0 0 var(--main-color);
            box-shadow: 1.7em 1.7em 0 0 var(--main-color);
}
.h-tablet .product__future_box {
    clear: both;
    font-size: 0.8em;
    padding-top: 13em;
    line-height: 8em;
}
.h-tablet .product__characteristics_box {
    float: left;
    min-width: 43%;
    max-width: 61%;
    margin-top: 1.5em;
}

.h-tablet .product__score_box {
    font-size: 0.425em;
    margin: 6em 4.5em 0 1em;
    border: solid 1px #c8c8c8;
    -webkit-box-shadow: 1.5em 2em 0 0 var(--main-color);
       -moz-box-shadow: 1.5em 2em 0 0 var(--main-color);
            box-shadow: 1.5em 2em 0 0 var(--main-color);
}
.h-tablet .product__score_header {
   padding: 3.8em 88em 6.2em;
}
.h-tablet .product__score_row {
    float: left;
    font-size: 0.83em;
    width: 109.5em;
    margin-left: 7em;
    padding-left: 3.5em;
}
.h-tablet .product__score_row:nth-of-type(3n+2) {
    margin-left: 2em;
}

.h-tablet .product__reviews_container  {
    font-size: 0.4em;
}
.h-tablet .product__reviews_header  {
    padding: 9em 3em;
}
.h-tablet .product__actions_button  {
    float: right;
    width: 115em;
    margin-right: 51em;
    margin-bottom: 5em;
}
.h-tablet .product__reviews_button  {
    float: left;
    font-size: 1.17em;
    margin-right: 6em;
}

.h-tablet .product__reviews_box {
    font-size: 1.5em;
    padding: 1.4em 2em;
}
.h-tablet .product__add_reviews {
    width: 165em;
    margin: 2em auto auto;
}

/* - - - - - desktop - - - - - */

.desktop .product__header {
    font-size: 0.4em;
    margin-top: -2em;
    padding: 0;
}
.desktop .product__under_name {
    font-size: 0.9em;
    margin-top: -2.2em;
}
.desktop .product__article {
    margin-left: 0;
    margin-right: 4em;
}
.desktop .product__score {
    font-size: 0.35em;
    margin-top: 5em;
}

.desktop .product__main {
    font-size: 0.38em;
    margin-top: 1.8em;
}

.desktop .product__info {
    float: left;
    clear: none;
    font-size: 0.6em;
    width: 203em;
    margin-top: 0;
    margin-left: 5em;
}
.desktop .product__size_box {
    float: left;
    font-size: 0.83em;
    width: 130em;
    margin-top: 12em;
    padding: 0 8em;
}
.desktop .product__price_box {
    float: left;
    font-size: 0.8em;
    width: 118em;
    margin-top: 0;
    border: solid 1px #c8c8c8;
    -webkit-box-shadow: 1.7em 1.7em 0 0 var(--main-color);
       -moz-box-shadow: 1.7em 1.7em 0 0 var(--main-color);
            box-shadow: 1.7em 1.7em 0 0 var(--main-color);
}
.desktop .product__future_box {
    float: right;
    font-size: 0.58em;
    width: 202em;
    padding-top: 13em;
    line-height: 8em;
}
.desktop .product__characteristics_box {
    float: left;
    min-width: 105em;
    max-width: 202em;
    margin-top: 5em;
}

.desktop .product__score_box {
    float: right;
    width: 22.2%;
    font-size: 0.186em;
    margin-top: 8em;
    border: solid 1px #c8c8c8;
    -webkit-box-shadow: 1.7em 1.7em 0 0 var(--main-color);
       -moz-box-shadow: 1.7em 1.7em 0 0 var(--main-color);
            box-shadow: 1.7em 1.7em 0 0 var(--main-color);
}

.desktop .product__reviews_container  {
    float: left;
    width: 58%;
    font-size: 0.18em;
}
.desktop .product__reviews_header  {
    padding: 0;
}
.desktop .product__actions_button  {
    float: right;
    width: 115em;
}
.desktop .product__reviews_button  {
    float: left;
    font-size: 1.17em;
    margin-right: 6em;
}

.desktop .product__reviews_box {
    font-size: 1.48em;
    padding: 3em 0;
}
.desktop .product__add_reviews {
    font-size: 0.8em;
    width: 165em;
    margin: 12em auto auto;
}



.desktop #product__similar {
    height: 27.5vw;
    background-image: url("images/1.jpg");
}
.desktop #product__you_like {
   display: none;
}

