@import "fonts.css";

ul{
    list-style-type: none;
    padding: 0;
    margin: 0;
}
body{
    margin: 0;
}
*, :before, :after{
    box-sizing: border-box;
}
a {
    text-decoration-line: none;
}
main{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.container{
    width: 100%;
    max-width: 1680px;
}
.container-small{
    width: 100%;
    max-width: 1396px;
}
h2{
    text-align: left;
    width: 100%;
    font-family: 'Rubik',sans-serif;
    font-weight: 500;
    font-size: 40px;
    line-height: 56px;
    margin-top: 0;
    margin-bottom: 0;

}
.navigation-cont{
    margin-bottom: 30px;
    column-gap: 74px;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: 100px;
}
.navigation-cont .back-btn{
    display: flex;
    flex-direction: row;
    column-gap: 12px;
}
.navigation-cont .back-btn a{
    font-family: 'Rubik',sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #121212;
}
.navigation-cont .back-btn img{
    transform: rotate(90deg);
}
.navigation{
    display: flex;
    flex-direction: row;
    column-gap: 26px;
}
.navigation a{
    font-family: 'Rubik',sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 19px;
    color: #121212;
}
.navigation img{
    transform: rotate(-90deg);
}

header{
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #ffffff;
    position: relative;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    z-index: 999;
}
header:before{
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    left: 0;
    top: 90px;
    background: #121212;
}

header .header{
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 90px;
    background: #ffffff;
    position: relative;
    justify-content: center;
}
header .header-socials{
    display: flex;
    flex-direction: row;
    column-gap: 28.33px;
    position: absolute;
    right: 0;
}
header .header-logo, header .header-logo img, header .header-socials a, header .header-socials a img{
    display: block;
}
header .header-logo{
    width: 232px;
    height: 70px;
}
header .header-socials a img{
    width: 32px;
    height: 32px;
}
header .header-tel-cont{
    text-align: center;
    position: absolute;
    left: 0;
}
header .header-tel-cont a {
    font-family: 'Rubik', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: #121212;
}
header .header-tel-cont img{
    display: none;
}
header .header-tel-cont div{
    font-family: 'Rubik',sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 17px;
    color: rgba(0, 0, 0, 0.5);
}
header .desktop-menu-cont{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 60px;
    position: relative;
}
header .desktop-menu{
    height: 100%;

}
header .desktop-menu>ul{
    display: flex;
    flex-direction: row;
    column-gap: 54.6px;
    height: 100%;
}
header .desktop-menu>ul>li{
    height: 100%;
    display: flex;
    align-items: center;
}
header .desktop-menu>ul>li:not(.women){
    position: relative;
}
header .desktop-menu>ul>li>a{
    font-family: 'Rubik',sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 19px;
    color: #121212;
    display: flex;
    flex-direction: row;
    align-items: center;
}
header .desktop-menu>ul>li>a>img {
    display: block;
    margin-left: 6px;
}
header .desktop-menu li li>a{
    font-family: 'Rubik',sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 19px;
    color: #121212;
}
header .desktop-menu li li{
    margin-bottom: 20px;
}

header .desktop-menu li>ul{
    position: absolute;
    display: none;
    background: #FFFFFF;
    box-shadow: 0 3px 5px 1px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    padding: 40px;
    top: 95%;
    left:50%;
    transform:translate(-50%, 0);
}
header .desktop-menu li>ul a{
    white-space: nowrap;
}
header .desktop-menu li:hover>ul{
    display: flex;
    flex-direction: column;
}
header .desktop-menu li.women li{
    margin-bottom: 15px;
}
header .desktop-menu li li.deskt-menu-bold>a{
    font-family: 'Rubik',sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #121212;
}
header .desktop-menu li li.deskt-menu-bold{
    margin-bottom: 20px;
}
header .desktop-menu li li.deskt-menu-bold:last-child{
    margin-bottom: 0;
}
header .desktop-menu li li:last-child{
    margin-bottom: 0;
}
header .desktop-menu li.women>nav{
    display: none;
    position: absolute;
    top: 100%;
    background: #ffffff;
    left: calc((100% - 100vw) / 2);
    width: calc(100vw - 9px);
    box-shadow: 0 3px 5px 1px rgba(0, 0, 0, 0.15);
    padding-top: 40px;
    padding-bottom: 40px;
    z-index: 999999;
}
header .desktop-menu li.women:hover>nav{
    display: flex;
    flex-direction: row;
    justify-content: center;
    column-gap: 179.5px;
}
header .choose-city{
    display: flex;
    flex-direction: row;
    align-items: center;
    padding-left: 4.5px;
    position: absolute;
    left: 0;
}
header .choose-city img{
    display: block;
}
header .choose-city img{
    margin-right: 10.5px;
    width: 15px;
    height: 18px;
}

header .choose-city span{
    font-family: 'Rubik',sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 19px;
    color: #121212;
}
header .header-search-and-like{
    display: flex;
    flex-direction: row;
    column-gap: 38.46px;
    align-items: center;
    padding-right: 14px;
    position: absolute;
    right: 0;
}
header .header-search-and-like a, header .header-search-and-like img{
    display: block;
}
header .header-search-and-like .h-search img{
    height: 19.22px;
    width: 18.76px;
}
header .header-search-and-like .h-like{
    position: relative;
    height: 18px;
    width: 19px;
}

header .header-search-and-like .h-like img{
    position: absolute;
    left: 0;
    top:0;
    width: 100%;
    height: 100%;
}
header .header-search-and-like .h-like img:nth-child(1), header .header-search-and-like .h-like:hover img:nth-child(2){
    display: block;
}
header .header-search-and-like .h-like img:nth-child(2), header .header-search-and-like .h-like:hover img:nth-child(1){
    display: none;
}

header .header-search-and-like .num-likes{
    position: absolute;
    left: calc(100% + 3.5px);
    bottom: 100%;
    font-family: 'Rubik',sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 16px;
    color: #121212;
}






.product-card-cont{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    column-gap: 20px;
    margin-bottom: 122px;
}
.product-card-left{
    display: flex;
    flex-direction: column;
    max-width: 687px;
}
.product-slider-cont{
    display: flex;
    flex-direction: row;
    column-gap: 61px;
    margin-bottom: 100px;
}
.pr-sl-links{
    display: flex;
    flex-direction: column;
    row-gap: 18px;
}
.pr-sl-links a{
    display: block;
    width: 80px;
    cursor: pointer;
    height: 120.33px;
    overflow: hidden;
    }
.pr-sl-links a.video{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'Rubik',sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    color: #121212;
     border: 1px solid #E6E6E6;
}
.pr-sl-links a.video img{
    width: 52px;
    height: 53px;
    margin-bottom: 13px;
}
.pr-sl-links a img{
    display: block;
    width: 100%;
}
.pr-sl-cont{
    position: relative;
    max-width: 547px;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.pr-sl-left{
    position: absolute;
    z-index: 999;
    display: block;
    width: 30.83px;
    height: 30.83px;
    left: 19.58px;
}
.pr-sl-right{
    position: absolute;
    z-index: 999;
    display: block;
    width: 30.83px;
    height: 30.83px;
    right: 19.58px;
}
.pr-slider{
    width: 100%;
}
.pr-slide{
    position: relative!important;
    max-width: 547px;
    width:100%;
}
.pr-slide.video{
    display: flex!important;
    align-items: center;
}
.pr-slide.video video{
    max-width: 547px;
}
.pr-slider .slick-track{
    display: flex!important;
    align-items: center;
}
.pr-slide>img{
    display: block;
    width: 100%;
}
.pr-slide>div{
    position: absolute;
    top: 26px;
    right: 25px;
    width: 19px;
    height: 18px;
    cursor: pointer;
}
.pr-slide>div>img{
    width: 100%;
    height: 100%;
}
.pr-slide>div:hover img:nth-child(1), .pr-slide>div img:nth-child(2){
    display: none;
}
.pr-slide>div:hover img:nth-child(2), .pr-slide>div img:nth-child(1){
    display: block;
}
.product-quest{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.pr-q-tit{
    font-family: 'Rubik',sans-serif;
    font-weight: 400;
    font-size: 32px;
    line-height: 38px;
    text-align: center;
    color: #121212;
    margin-bottom: 20px;
    width: 100%;
}
.pr-q-desc{
    font-family: 'Rubik',sans-serif;
    font-weight: 300;
    font-size: 20px;
    line-height: 32px;
    text-align: center;
    color: #121212;
    width: 100%;
    margin-bottom: 70px;
}
.pr-q-inputs{
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    row-gap: 20px;
    justify-content: space-between;
    margin-bottom: 35px;
}
.pr-q-inputs input{
    outline: none;
    border: 1px solid rgba(0, 0, 0, 0.5);
    border-radius: 4px;
    display: flex;
    align-items: center;
    height: 64px;
    padding-left: 20px;
    padding-right: 20px;
    font-family: 'Rubik',sans-serif;
    font-weight: 300;
    font-size: 20px;
    line-height: 32px;
    color: #121212;
    width: 336.5px;

}
.pr-q-inputs input::placeholder{
    color: rgba(0, 0, 0, 0.5);
}
.product-quest .pr-q-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    outline: none;
    border: none;
    padding: 0;
    color: #FFFFFF;
    background: #72273C;
    height: 60px;
    width: 264px;
    font-family: 'Rubik',sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    margin-bottom: 25px;
}
.pr-q-politics{
    font-family: 'Rubik',sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 17px;
    color: #8F9190;
}
.product-card-right{
    display: flex;
    flex-direction: column;
    align-items: start;
    max-width: 688px;
}
.prod-name{
    width: 100%;
    font-family: 'Rubik',sans-serif;
    font-weight: 400;
    font-size: 40px;
    line-height: 56px;
    color: #121212;
    margin-bottom: 20px;
}
.prod-coast-cont{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    column-gap: 15px;
    margin-bottom: 40px;
}
.prod-coast-cont .new-coast {
    font-family: 'Rubik',sans-serif;
    font-weight: 500;
    font-size: 32px;
    line-height: 38px;
    color: #72273C;
    margin-right: 35px;
}
.prod-coast-cont .old-coast{
    font-family: 'Rubik',sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    text-decoration-line: line-through;
    color: rgba(0, 0, 0, 0.5);
}
.want-cheaper-cont{
    display: flex;
    flex-direction: row;
    column-gap: 19px;
    margin-bottom: 35px;
}
.want-cheaper-btn{
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #72273C;
    color: #FFFFFF;
    border-radius: 4px;
    width: 264px;
    height: 60px;
    font-family: 'Rubik',sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
}
.want-cheaper{
    max-width: 264px;
    font-family: 'Rubik',sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 14px;
    line-height: 17px;
    color: rgba(0, 0, 0, 0.5);
}
.prod-credit {
    font-family: 'Rubik',sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 32px;
    color: #121212;
    margin-bottom: 0px;
}
.pr-size-table{
    font-family: 'Rubik',sans-serif;
    font-weight: 300;
    font-size: 20px;
    line-height: 32px;
    color: #121212;
    margin-bottom: 32px;
    cursor: pointer;
}
.pr-size-table>div{
    border-bottom: 1px dashed #121212;
    width: 100%;
    margin-top: 10px;
}
.pr-sizes{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 18px;
    row-gap: 18px;
    margin-bottom: 20px;
}
.pr-sizes label{
    cursor: pointer;
}
.pr-sizes input{
    display: none;
}
.pr-sizes span{
    font-family: 'Rubik',sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 19px;
    color: #121212;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 34px;
    border: 1px solid #121212;
}
.pr-sizes input:checked+span{
    color: #FFFFFF;
    background: #121212;
}
.pr-order-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    background: #72273C;
    color: #FFFFFF;
    cursor: pointer;
    height: 60px;
    width: 327px;
    border-radius: 4px;
    font-family: 'Rubik',sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    margin-bottom: 50px;
}
.pr-colors-cont{
    display: flex;
    flex-direction: row;
    row-gap: 20px;
    flex-wrap: wrap;
    column-gap: 10px;
    margin-bottom: 50px;
}
.pr-col-tit{
    width: 100%;
    font-family: 'Rubik',sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    color: #121212;
}
.pr-color{
    cursor: pointer;
    position: relative;
}
.pr-color input{
    display: none;
}

.pr-color span{
    position: absolute;
    display: none;
}
.pr-color>div{
    background: #FFFFFF;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.pr-color>div>div{
    background: #53EBC6;
    width: 35px;
    height: 35px;
    border-radius: 50%;
}

.pr-color input:checked+div{
    border: 2px solid #121212;
}
.pr-color input:checked+div>div{
    width: 23px;
    height: 23px;
}
.pr-color:hover>span{
    display: block;
    background: #FFFFFF;
    box-shadow: 0 1px 3px 2px rgba(0, 0, 0, 0.18);
    padding: 20px;
    font-family: 'Rubik',sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: #121212;
    top: calc(100% + 8px);
    left: -8px;
    border-radius: 4px;
}
.pr-color:hover>span:after{
    position: absolute;
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    background: #FFFFFF;
    transform: rotate(45deg);
    left: 21px;
    top: -6px;
}
.pr-info-cont{
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    margin-bottom: 20px;
    max-width: 405px;
    width: 100%;
}
.pr-info{
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    column-gap: 10px;
    font-family: 'Rubik',sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    line-height: 28px;
    color: #121212;
}
.pr-i-line{
    flex-grow: 1;
    border-bottom: 1px dashed #121212;
    margin-bottom: 9px;
}
.pr-temp-cont{
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    margin-bottom: 20px;
    max-width: 405px;
    width: 100%;
}
.pr-temp-tit{
    font-family: 'Rubik',sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #121212;
}
.pr-temp{
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    column-gap: 10px;
    font-family: 'Rubik',sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    line-height: 28px;
    color: #121212;
}
.pr-t-line{
    flex-grow: 1;
    border-bottom: 1px dashed #121212;
    margin-bottom: 9px;
}
.prod-note-cont{
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}
.pr-note-tit{
    font-family: 'Rubik',sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #121212;
}
.pr-note-desc{
    font-family: 'Rubik',sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 28px;
    color: #121212;
}
.slide-note-btn{
    font-family: 'Rubik',sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #121212;
    text-decoration-line: underline;
    cursor: pointer;
}
.product-big-info-cont{
    margin-bottom: 150px;
    display: flex;
    flex-direction: column;
}
.pr-b-i-tab-btns{
    display: flex;
    flex-direction: row;
    margin-bottom: 50px;
}
.pr-b-i-tab-btn>div{
    display: none;
}
.pr-b-i-tab-btn{
    width: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #8F9190;
    height: 85px;
    cursor: pointer;
    font-family: 'Rubik',sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    text-align: center;
    color: rgba(0, 0, 0, 0.5);
}
.pr-b-i-tab-btn.active{
    font-weight: 500;
    border-bottom: 2px solid #72273C;
    color: #121212;
}
.pr-b-i-tab{
    display: none;
    font-family: 'Rubik',sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 20px;
    line-height: 32px;
    color: #121212;
}
.pr-b-i-tab.active{
    display: block;
}
.ofhen-orders-cont{
    margin-top: 70px;
    margin-bottom: 100px;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    column-gap: 20px;
}
.ofhen-orders-cont>img{
    cursor: pointer;
    display: block;
    width: 40px;
    height: 40px;
}
.often-order{
    display: flex!important;
    flex-direction: column;
    margin-left: 8px;
    margin-right: 8px;
}
.ofhen-order>img{
    display: block;
    width: 337px;
}
.often-order>div{
    display: none;
}
.hits-cont {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    column-gap: 20px;
    margin-top: 70px;
    margin-bottom: 141px;
}
.hit{
    display: flex!important;
    flex-direction: column;
    margin-left: 8px;
    margin-right: 8px;
}
.hits-cont>img{
    cursor: pointer;
    display: block;
    width: 40px;
    height: 40px;
}
.hit-img{
    width: 337px;
    position: relative;
    margin-bottom: 20px;
}
.hit-img>img{
    display: block;
    width: 100%;
}
.hit-new{
    position: absolute;
    left: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    padding-left: 10px;
    padding-right: 10px;
    height: 32px;
    color: #FFFFFF;
    background: #72273C;
    font-family: 'Rubik',sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
}
.hit-like{
    position: absolute;
    width: 19px;
    height: 18px;
    top: 21px;
    right: 28px;
}
.hit-like>img{
    width: 100%;
    height: 100%;
    position: absolute;
    top:0;
    left: 0;
    cursor: pointer;
}
.hit-like>img:nth-child(1),.hit-like:hover>img:nth-child(2) {
    display: block;
}
.hit-like>img:nth-child(2), .hit-like:hover>img:nth-child(1){
    display: none;
}
.hit-name{
    font-family: 'Rubik',sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    margin-bottom: 10px;
    color: #121212;
}
.hit-size{
    font-family: 'Rubik',sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 17px;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 15px;
}
.hit-coast-cont{
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 30px;
}
.hit-coast-cont .new-coast{
    font-family: 'Rubik',sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 32px;
    font-feature-settings: 'tnum' on, 'lnum' on;
    color: #72273C;
}
.hit-coast-cont .old-coast{
    font-family: 'Rubik',sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    text-decoration-line: line-through;
    font-feature-settings: 'tnum' on, 'lnum' on;
    color: rgba(0, 0, 0, 0.5);
}




footer{
    width: 100%;
    background: #121212;
    display: flex;
    flex-direction: row;
    justify-content: center;
    color: #FFFFFF;
    position: relative;
}
footer .footer{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: start;
    padding-top: 100px;
    padding-bottom: 100px;
}
footer .footer-about-cont{
    display: flex;
    flex-direction: column;
    align-items: start;
}
footer .footer-logo, footer .footer-logo>img, footer .footer-socials>a, footer .footer-socials img{
    display: block;
}
footer .footer-logo>img{
    width: 214px;
    height: 64px;
}
footer .copyright{
    font-family: 'Rubik',sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 17px;
    color: #FFFFFF;
    margin-top: 25px;
    margin-bottom: 50px;
}
footer .footer-socials{
    display: flex;
    flex-direction: row;
    column-gap: 42px;
}
footer .footer-socials img{
    width: 34px;
    height: 32px;
}
footer .politics{
    font-family: 'Rubik',sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 14px;
    line-height: 17px;
    margin-top: 30px;
    color: #FFFFFF;
}
footer .footer-menu{
    display: flex;
    flex-direction: row;
    column-gap: 215px;
}
footer .footer-menu img, footer .footer-menu br, footer .footer-menu span:nth-child(2){
    display: none;
}
footer .footer-menu ul ul li{
    margin-bottom: 10px;
}
footer .footer-menu ul ul li:last-child{
    margin-bottom: 0;
}
footer .footer-menu li.footer-menu-bold>a{
    font-family: 'Rubik',sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 34px;
}
footer .footer-menu li.footer-menu-bold{
    margin-bottom: 30px;
}
footer .footer-menu li>a{
    font-family: 'Rubik',sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 24px;
    color: #FFFFFF;
}







.fancybox-close-small{
    display: none !important;
}
.fancybox-content{
    padding: 0 !important;
    background: transparent!important;
}
#modal_choose_city{
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 100px;
    padding-bottom: 100px;
    background: #FFFFFF;
    position: relative;
    border-radius: 8px;
    cursor: default;
}
#modal_choose_city .ch-c-close{
    display: block;
    position: absolute;
    top: 32.85px;
    right: 35px;
    width: 14px;
    height: 13.14px;
    cursor: pointer;
}
#modal_choose_city .ch-city-tit{
    font-family: 'Rubik',sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 34px;
    color: #121212;
    margin-bottom: 15px;
}
#modal_choose_city .ch-city-big-desc{
    font-family: 'Rubik',sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 19px;
    color: #121212;
    margin-bottom: 10px;
}
#modal_choose_city>a{
    font-family: 'Rubik',sans-serif;
    font-weight: 300;
    font-size: 13px;
    line-height: 15px;
    text-decoration-line: underline;
    color: #121212;
}
#modal_choose_city .ch-city-small-desc{
    font-family: 'Rubik',sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 17px;
    color: #121212;
    margin-top: 15px;

}
#choose_city_form{
    margin-top: 50px;
}
.search-city-inp{
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
}
.search-city-inp>input::placeholder{
    color: rgba(0, 0, 0, 0.5);
}
.search-city-inp>input{
    width: 100%;
    outline: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.5);
    border-radius: 4px;
    font-family: 'Rubik',sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    height: 56px;
    color: #121212;
    padding-left: 60px;
    padding-right: 30px;
    padding-top: 0;
    padding-bottom: 0;
}
.search-city-inp>.button{
    display: block;
    padding: 0;
    background: transparent;
    outline: none;
    border: none;
    position: absolute;
    left: 22.78px;
    width: 18.76px;
    height: 19.22px;
    cursor: pointer;
}
.search-city-inp>.button>img{
    position: absolute;
    width: 100%;
    top:0;
    left: 0;
    height: 100%;
}
.search-city-inp>.button>img:nth-child(1), .search-city-inp>input:focus+.button>img:nth-child(2), .search-city-inp>.button:hover>img:nth-child(2){
    display: block;
}
.search-city-inp>.button>img:nth-child(2), .search-city-inp>input:focus+.button>img:nth-child(1), .search-city-inp>.button:hover>img:nth-child(1){
    display: none;
}
.main-city-cont{
    margin-top: 40px;
    margin-bottom: 40px;
}
.slave-city-cont{
    display: flex;
    flex-direction: row;
    align-items: start;
    column-gap: 86px;
}
.main-city-cont, .slave-city{
    display: flex;
    flex-direction: column;
    align-items: start;
}
.main-city-cont>div, .slave-city>div{
    display: none;
}
.main-city-cont label, .slave-city label{
    position: relative;
    font-family: 'Rubik',sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #121212;
    margin-bottom: 10px;
    cursor: pointer;
}
.main-city-cont label:last-child, .slave-city label:last-child{
    margin-bottom: 0;
}
.main-city-cont input, .slave-city input{
    display: none;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
}
#modal_search{
    background: #FFFFFF;
    border-radius: 8px;
    padding: 30px;
    position: relative;
    width: 606px;
    cursor: default;

}
#modal_search .s-close{
    position: absolute;
    display: block;
    right: 30px;
    height: 23.34px;
    width: 23.33px;
    top: 35px;
    cursor: pointer;
}
#modal_search .s-tit{
    font-family: 'Rubik',sans-serif;
    font-weight: 400;
    font-size: 32px;
    line-height: 38px;
    margin-bottom: 41px;
}
#modal_search label{
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
}
#modal_search input::placeholder{
    color: rgba(0, 0, 0, 0.5);
}
#modal_search input{
    width: 100%;
    font-family: 'Rubik',sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #121212;
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
    align-items: center;
    outline: none;
    border: 1px solid #8F9190;
    border-radius: 4px;
    height: 80px;
    padding-left: 60px;
    padding-right: 162px;
}
#modal_search .search_form img{
    display: block;
    position: absolute;
    left: 22.78px;
    width: 18.76px;
    height: 19.22px;
}
#modal_search  button{
    outline: none;
    padding: 0;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 20px;
    width: 122px;
    height: 40px;
    background: #72273C;
    border-radius: 4px;
    font-family: 'Rubik',sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #FFFFFF;
    cursor: pointer;
}

#cookies{
    display: flex;
    justify-content: center;
    position: fixed;
    bottom: 0;
    background: #121212;
    width: 100%;
    height: 100px;
}
#cookies>div{
    display: flex;
    flex-direction: row;
    justify-content: center;
    column-gap: 19px;
    position: relative;
    align-items: center;
}
#cookies .cook-desc{
    font-family: 'Rubik',sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 26px;
    color: #FFFFFF;
}
#cookies .cook-close{
    display: block;
    position: absolute;
    right: 71px;
    top: 15px;
    width: 14px;
    height: 14px;
    cursor: pointer;
}
#cookies .cook-btn{
    padding: 0;
    outline: none;
    background: #121212;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 122px;
    height: 40px;
    border: 1px solid #FFFFFF;
    border-radius: 4px;
    color: #FFFFFF;
    font-family: 'Rubik',sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    cursor: pointer;
}
#cookies .cook-btn:hover{
    background: #FFFFFF;
    color: #121212;
}

#modal_want_cheaper{
    background: #FFFFFF;
    padding-top: 100px;
    padding-bottom: 100px;
    padding-left: 20px;
    padding-right: 20px;
    position: relative;
    border-radius: 8px;
    flex-direction: column;
    align-items: center;
    width: 830px;
    max-width: 100%;
}
.m-cheaper-close{
    display: block;
    width: 14px;
    height: 14px;
    cursor: pointer;
    position: absolute;
    top: 30px;
    right: 30px;
}
.m-cheaper-tit{
    text-align: center;
    font-family: 'Rubik',sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 32px;
    line-height: 38px;
    color: #121212;
    margin-bottom: 20px;
}
.m-cheaper-desc{
    font-family: 'Rubik',sans-serif;
    font-weight: 300;
    font-size: 20px;
    line-height: 32px;

    text-align: center;
    color: #121212;
    margin-bottom: 70px;
}
.m-cheaper-form{
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 502px;
    row-gap: 20px;
    margin-bottom: 25px;
    margin-left: auto;
    margin-right: auto;
}
.m-cheaper-form input::placeholder{
    color:  rgba(0, 0, 0, 0.5);;
}
.m-cheaper-form input{
    height: 64px;
    outline: none;
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
    font-family: 'Rubik',sans-serif;
    font-weight: 300;
    font-size: 20px;
    line-height: 32px;
    color: #121212;
    width: 502px;
}
.m-cheaper-form>button{
    outline: none;
    padding: 0;
    border: none;
    background: #72273C;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    width: 234px;
    font-family: 'Rubik',sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    margin-top: 15px;
    border-radius: 8px;
}
.m-ch-politics{
    font-family: 'Rubik',sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 14px;
    line-height: 17px;
    text-align: center;
    color: #8F9190;
}

#modal_size_table{
    background: #FFFFFF;
    padding-top: 100px;
    padding-bottom: 100px;
    padding-left: 20px;
    padding-right: 20px;
    position: relative;
    border-radius: 8px;
    flex-direction: column;
    align-items: center;
    width: 830px;
    max-width: 100%;
}
.m-size-close{
    display: block;
    width: 14px;
    height: 14px;
    cursor: pointer;
    position: absolute;
    top: 35px;
    right: 35px;
}
.m-size-tit{
    font-family: 'Rubik',sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 32px;
    line-height: 38px;
    text-align: center;
    color: #121212;
    margin-bottom: 50px;
}
.m-size-tb{
    width: 100%;
    max-width: 502px;
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: auto;
}
.m-size-info{
    font-family: 'Rubik',sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 17px;
    text-align: center;
    color: #121212;
}
.m-size-tb th, .m-size-tb td{
    width: 33.33333%;
    border: 0.5px solid #EAEAEA;
    padding-left: 20px;
}
.m-size-tb th{
    height: 43px;
    color: #FFFFFF;
    background: #72273C;
    font-family: 'Rubik',sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 17px;
}
.m-size-tb td{
    height: 39px;
    font-family: 'Rubik',sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 17px;
    color: #2D2F30;
}
.m-size-tb tr:nth-child(odd) td{
    background: #F9F8F9;
}




#modal_pr_order{
    background: #FFFFFF;
    padding-top: 100px;
    padding-bottom: 100px;
    padding-left: 20px;
    padding-right: 20px;
    position: relative;
    border-radius: 8px;
    flex-direction: column;
    align-items: center;
    width: 830px;
    max-width: 100%;
}
.m-pr-close{
    display: block;
    width: 14px;
    height: 14px;
    cursor: pointer;
    position: absolute;
    top: 35px;
    right: 35px;
}
.m-pr-tit{
    text-align: center;
    font-family: 'Rubik',sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 32px;
    line-height: 38px;
    color: #121212;
    margin-bottom: 20px;
}
.m-pr-desc{
    font-family: 'Rubik',sans-serif;
    font-weight: 300;
    font-size: 20px;
    line-height: 32px;
    text-align: center;
    color: #121212;
    margin-bottom: 70px;
}
.m-pr-form{
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 502px;
    width: 100%;
    row-gap: 20px;
    margin-bottom: 25px;
    margin-right: auto;
    margin-left: auto;
}
.m-pr-form>input::placeholder{
    color:  rgba(0, 0, 0, 0.5);;
}
.m-pr-form>input{
    height: 64px;
    outline: none;
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
    font-family: 'Rubik',sans-serif;
    font-weight: 300;
    font-size: 20px;
    line-height: 32px;
    color: #121212;
    width: 100%;
}
.m-pr-form>label{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 22px;
    font-family: 'Rubik',sans-serif;
    font-weight: 300;
    font-size: 20px;
    line-height: 32px;
    color: #121212;
}
.m-pr-form>label>input{
    display: none;
}
.m-pr-form>label>div{
    position: relative;
    width: 20px;
    height: 20px;
}
.m-pr-form>label>div>img{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.m-pr-form>label>input:checked+div img:nth-child(1), .m-pr-form>label img:nth-child(2){
    display: none;
}
.m-pr-form>label>input:checked+div img:nth-child(2), .m-pr-form>label img:nth-child(1){
    display: block;
}
.m-pr-form>button{
    outline: none;
    padding: 0;
    border: none;
    background: #72273C;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    width: 234px;
    font-family: 'Rubik',sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    margin-top: 15px;
    border-radius: 8px;
}
.m-pr-politics{
    font-family: 'Rubik',sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 14px;
    line-height: 17px;
    text-align: center;
    color: #8F9190;
}
.m-pr-info{
    font-family: 'Rubik',sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 17px;
    color: #121212;
}



@media screen and (max-width: 1720px){
    .container{
        max-width: 1720px;
        padding-left: 20px;
        padding-right: 20px;
    }
    .container-small{
        width: 100%;
        max-width: 1436px;
        padding-left: 20px;
        padding-right: 20px;
    }
    h2{
        font-size: 30px;
        line-height: 36px;
        text-align: center;
    }




    header{
        z-index: 99990;
    }
    header .header-tel-cont, header .choose-city{
        left: 20px;
    }
    header .header-socials, header .header-search-and-like {
        right: 20px;
    }
    header .desktop-menu>ul{
        column-gap: 30.6px;
    }
    header .desktop-menu li.women:hover>nav {
        column-gap: 117.5px;
    }



    .hits-cont, .ofhen-orders-cont{
        column-gap: unset;
    }
    .hits.container-small, .othen-orders.container-small{
        max-width: 1091px;
    }
    .hits-cont>img:first-child, .ofhen-orders-cont>img:first-child{
        margin-right: -40px;
        z-index: 999;
    }
    .hits-cont>img:last-child, .ofhen-orders-cont>img:last-child{
        margin-left: -40px;
        z-index: 999;
    }
    .want-cheaper-cont{
        flex-wrap: wrap;
        row-gap: 20px;
    }
    .product-slider-cont{
        column-gap: 20px;
        justify-content: space-between;
    }
    .pr-q-inputs{
        justify-content: center;
        column-gap: 20px;
    }



    footer .footer{
        justify-content: start;
        column-gap: 50px;
    }
    footer .footer-menu{
        column-gap: unset;
        justify-content: space-between;
        width: 100%;
    }
}





@media screen and (max-width: 1120px) {
    header .desktop-menu > ul {
        column-gap: 10.6px;
        margin-right: 45px;
    }
    header .choose-city span {
        display: none;
    }
    header .header-search-and-like {
        column-gap: 13.46px;
    }
    header .desktop-menu li.women:hover>nav {
        column-gap: 91.5px;
    }
    header .header-socials{
        column-gap: 18.33px;
    }





    .hits.container-small,.othen-orders.container-small{
        max-width: 734px;
    }
    .product-card-cont{
        flex-wrap: wrap;
        justify-content: center;
    }
    .product-quest{
        margin-top: 100px;
    }
    .navigation-cont{
        justify-content: center;
    }
    .product-card-right{
        max-width: 100%;
    }



    footer .footer {
        flex-wrap: wrap;
        column-gap: unset;
    }
    footer .footer-menu {
        order: -1;
    }
    footer .footer-about-cont {
        width: 100%;
        align-items: center;
        margin-top: 50px;
    }



    #cookies .cook-close {
        display: block;
        position: absolute;
        right: 20px;
        top: 7px;
    }
}





@media screen and (max-width: 768px){
    .container, .container-small{
        padding-left: 15px;
        padding-right: 15px;
    }
    main{
        padding-top: 75px;
    }


    header{
        position: fixed;
        top: 0;
        width: 100%;
        box-shadow: 0 -1px 3px rgba(0, 0, 0, 0.7);
        z-index: 999999;
    }

    header .header{
        height: 75px;
    }
    header .header-socials{
        display: none;
    }
    header .header-tel-cont img{
        display: block;
        width: 19px;
        height: 19px;
    }
    header .header-tel-cont span, header .header-tel-cont div{
        display: none;
    }
    header .desktop-menu-cont{
        display: none;
    }
    header:before{
        display: none;
    }
    header .header-logo{
        width: 151px;
        height: 46px;
    }
    header .header-logo img{
        width: 100%;
        height: 100%;
    }
    header .choose-city{
        left: 65px;
        padding-left: 0;
    }
    header .choose-city img{
        margin-right: 0;
    }
    header .header-tel-cont{
        left: 15px;
    }
    header .header-search-and-like .num-likes{
        display: none;
    }
    header .header-search-and-like{
        padding-right: 0;
        right: 15px;
        column-gap: 28.46px;
    }
    header .header-search-and-like .h-like{
        width: 20px;
        height: 19px;
    }




    .navigation-cont{
        justify-content: left;
        margin-top: 60px;
        margin-bottom: 40px;
    }
    .navigation-cont .back-btn a{
        font-size: 16px;
        line-height: 19px;
    }
    .navigation{
        display: none;
    }
    .product-card-left, .pr-slide{
        width: 100%;
    }
    .pr-sl-links{
        display: none;
    }
    .pr-sl-cont,.product-card-left, .pr-slide{
        max-width: 345px;
    }
    .pr-slide>div{
        width: 23px;
        height: 24px;
        top: 20px;
        right: 19px;
    }
    .pr-sl-right{
        width: 24px;
        height: 24px;
        right: 19px;
    }
    .pr-sl-left{
        width: 24px;
        height: 24px;
        left: 19px;
    }
    .product-slider-cont{
        margin-bottom: 20px;
    }
    .prod-name{
        font-size: 30px;
        line-height: 33px;
        margin-bottom: 10px;
    }
    .prod-coast-cont{
        margin-bottom: 5px;
    }
    .prod-coast-cont .new-coast{
        font-size: 20px;
        line-height: 30px;
    }
    .prod-coast-cont .old-coast {
        font-size: 16px;
        line-height: 19px;
    }
    .prod-credit{
        font-size: 11px;
        line-height: 14px;
        margin-bottom: 20px;
    }
    .want-cheaper-cont{
        width: 100%;
        margin-bottom: 38px;
    }
    .want-cheaper-btn{
        width: 100%;
        height: 55px;
    }
    .pr-size-table{
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 15px;
    }
    .pr-size-table>div{
        margin-top: 5px;
    }
    .pr-sizes{
        column-gap: 14px;
        margin-bottom: 15px;
    }
    .pr-sizes span{
        width: 31px;
        height: 31px;
        font-size: 14px;
        line-height: 17px;
    }
    .poshiv-info{
        font-family: 'Rubik',sans-serif;
        font-style: normal;
        font-weight: 300;
        font-size: 11px;
        line-height: 14px;
        color: rgba(0, 0, 0, 0.5);
        display: block !important;
        margin-bottom: 30px;
    }
    .pr-col-tit{
        font-size: 20px;
        line-height: 25px
    }
    .pr-colors-cont{
        row-gap: 10px;
        column-gap: 14px;
        margin-bottom: 30px;
    }
    .pr-color span{
        display: none!important;
    }
    .pr-order-btn{
        width: 100%;
        height: 55px;
        margin-bottom: 10px;
    }
    .want-cheaper{
        text-align: center;
        align-self: center;
        font-size: 11px;
        line-height: 14px;
        margin-bottom: 30px;
    }
    .pr-info,.pr-temp,.pr-note-desc{
        font-size: 16px;
        line-height: 22px;
    }
    .pr-i-line, .pr-t-line{
        margin-bottom: 6px;
    }
    .pr-temp-tit, .pr-note-tit{
        font-size: 16px;
        line-height: 22px;
    }
    .pr-note-tit, .pr-note-desc{
        display: none;
    }
    .prod-note-cont{
        row-gap: 10px;
    }
    .slide-note-btn{
        font-size: 13px;
        line-height: 15px;
    }
    .product-card-cont{
        margin-bottom: 20px;
    }
    .product-big-info-cont.container-small{
        max-width: 375px;
        margin-bottom: 60px;


    }
    .pr-b-i-tab-btns{
        flex-direction: column;
        margin-bottom: 0;
    }
    .pr-b-i-tab-btn{
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        font-size: 20px;
        line-height: 25px;
        color: #121212;
        height: unset;
        margin-top: 43.5px;
        padding-bottom: 43.5px;
        border-bottom: 1px solid #E6E6E6;
    }
    .pr-b-i-tab-btn.active{
        border-bottom: none;
        font-weight: 400;
    }
    .pr-b-i-tab-btn>div{
        display: block;
        width: 32px;
        height: 32px;
    }
    .pr-b-i-tab-btn img{
        width: 100%;
        height: 100%;
    }
    .pr-b-i-tab-btn .plus, .pr-b-i-tab-btn.active .minus{
        display: block;
    }
    .pr-b-i-tab-btn .minus, .pr-b-i-tab-btn.active .plus{
        display: none;
    }
    .pr-b-i-tab{
        font-size: 16px;
        line-height: 22px;
    }
    .pr-b-i-tab.active{
        border-bottom: 1px solid #E6E6E6;
        padding-bottom: 40px;
    }
    .pr-b-i-tabs{
        display: none;
    }
    .product-quest{
        margin-top: 0;
        max-width: 375px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .pr-q-tit{
        font-size: 30px;
        line-height: 33px;
        margin-bottom: 30px;
        text-align: left;
    }
    .pr-q-desc{
        font-size: 16px;
        line-height: 22px;
        text-align: left;
        margin-bottom: 39px;
    }
    .pr-q-inputs{
        margin-bottom: 30px;
    }
    .pr-q-inputs input{
        font-size: 16px;
        line-height: 19px;
        height: 51px;
        width: 100%;
    }
    .product-quest .pr-q-btn{
        width: 100%;
        height: 55px;
        margin-bottom: 10px;
    }
    .pr-q-politics{
        font-size: 11px;
        line-height: 14px;
        text-align: center;
    }

    h2.container-small{
        max-width: 375px;
        text-align: left;
    }
    .product-quest{
        margin-bottom: 60px;
    }




    .hits-cont, .ofhen-orders-cont{
        max-width: 375px;
        margin-top: 30px;
        margin-bottom: 60px;
        overflow: hidden;
    }
    .hits-cont>img, .ofhen-orders-cont>img{
        display: none !important;
    }
    .hits.container-small, .othen-orders.container-small{
        max-width: 265px;
    }

    .hits .slick-list, .othen-orders .slick-list{
        overflow: visible;
    }
    .hit, often-order{
        margin-left: 7.5px;
        margin-right: 7.5px;
    }
    .hit-img, .often-order>img{
        width: 225px;
        margin-bottom: 10px;
    }
    .often-order>div{
        display: block;
        font-family: 'Rubik',sans-serif;
        font-weight: 400;
        font-size: 16px;
        line-height: 22px;
        color: #121212;
    }
    .hit-like{
        top: 13px;
        right: 12px;
    }
    .hit-new{
        height: 21px;
        font-size: 11px;
        line-height: 13px;
    }
    .hit-name{
        margin-bottom: 2px;
        font-size: 20px;
        line-height: 25px;
    }
    .hit-size{
        font-size: 11px;
        line-height: 14px;
        margin-bottom: 10px;
    }
    .hit-coast-cont{
        column-gap: 25px;
    }
    .hit-coast-cont .new-coast{
        font-size: 14px;
        line-height: 19px;
    }
    .hit-coast-cont .old-coast{
        font-size: 14px;
        line-height: 19px;
    }



    footer .footer{
        padding-top: 60px;
        padding-bottom: 60px;
    }
    footer .footer-logo{
        order: 1;
    }
    footer .footer-socials{
        order: 2;
        column-gap: 29.67px;
        margin-bottom: 45px;
    }
    footer .footer-menu{
        order: 3;
    }
    footer .copyright{
        margin-top: 30px;
        margin-bottom: 10px;
        font-size: 12px;
        line-height: 14px;
        order: 4;
    }
    footer .politics{
        order: 5;
        margin-top: 0;
        font-size: 12px;
        line-height: 14px;
    }
    footer .footer-about-cont{
        margin-top: 0;
    }
    footer .footer-logo{
        margin-bottom: 30px;
    }
    .footer-menu ul:first-child{
        display: none;
    }
    footer .footer-menu img, footer .footer-menu br, footer .footer-menu span:nth-child(2) {
        display: block;
    }
    footer .footer-menu span:nth-child(1){
        display: none;
    }
    footer .footer-menu li.footer-menu-bold>a{
        font-size: 12px;
        line-height: 15px;
        display: flex;
        flex-direction: row;
        align-items: center;
    }
    footer .footer-menu li.footer-menu-bold{
        margin-bottom: 10px;
    }
    footer .footer-menu li>a{
        font-size: 12px;
        line-height: 15px;
    }
    footer .footer-menu ul ul{
        display: none;
    }
    footer .footer-menu ul ul li{
        margin-bottom: 5px;
    }
    footer .footer-menu ul ul li:last-child{
        margin-bottom: 0;
    }
    footer .footer-menu img{
        margin-left: 8.5px;
    }
    footer .footer-menu .rev{
        display: none;
    }
    footer .copyright br{
        display: none;
    }




    #cookies{
        bottom: 80px;
        height: unset;
        z-index: 999999;
    }
    #cookies>div {
        flex-direction: column;
        align-items: center;
        padding-top: 74px;
        padding-bottom: 30px;
    }
    #cookies .cook-desc{
        text-align: center;
        font-size: 16px;
        line-height: 22px;
        margin-bottom: 20px;
    }
    #cookies .cook-btn{
        width: 345px;
        height: 55px;
    }
    #cookies .cook-close{
        right: 20px;
        top: 35px;
    }





    .fancybox-slide--html{
        padding-left: 15px !important;
        padding-right: 15px !important;
        padding-top: 90px!important;
        padding-bottom: 95px !important;
    }
    #modal_choose_city{
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 45px;
        padding-top: 45px;
        z-index: 999999;
    }
    #modal_choose_city .ch-c-close{
        top: 20px;
        right: 15px;
    }
    #modal_choose_city .ch-city-tit{
        font-size: 20px;
        line-height: 25px;
        color: #72273C;
    }
    #choose_city_form{
        margin-top: 28px;
    }
    #modal_choose_city .ch-city-small-desc{
        margin-top: 10px;
        font-size: 11px;
        line-height: 14px;
    }
    .main-city-cont{
        margin-top: 20px;
        margin-bottom: 40px;
    }
    .slave-city>div{
        display: block;
        font-family: 'Rubik',sans-serif;
        font-style: normal;
        font-weight: 400;
        font-size: 16px;
        line-height: 19px;
        color: rgba(0, 0, 0, 0.5);
        margin-bottom: 20px;
    }
    .slave-city-cont{
        column-gap: 30px;
        row-gap: 20px;
        flex-wrap: wrap;
    }

    #modal_search {
        width: 320px;
        padding-left: 15px;
        padding-right: 15px;
        padding-top: 60px;
        padding-bottom: 60px;
        max-width: 100%;

    }
    #modal_search .s-tit{
        font-size: 20px;
        line-height: 25px;
        color: #72273C;
        margin-bottom: 33.5px;
    }
    #modal_search .s-close{
        width: 18.67px;
        height: 18.67px;
        top: 60px;
        right: 20px;
    }
    #modal_search input {
        height: 50px;
        padding-right: 20px;
        padding-left: 40px;
    }
    #modal_search .search_form img{
        left: 10px;
    }
    #modal_search button{
        position: relative;
        right: unset;
        width: 100%;
        height: 50px;
        margin-top: 20px;
    }






    #mobile_popup_cont{
        display: flex !important;
        position: fixed;
        bottom: 0;
        z-index: 999999;
        width: 100%;
        justify-content: center;
        background: #FFFFFF;
    }
    .mobile_popup{
        display: flex;
        flex-direction: row;
        width: 100%;
        max-width: 375px;
        height: 80px;
        position: relative;
        box-shadow: 0px -1px 2px rgba(0, 0, 0, 0.2);
    }
    .mobile_popup .popup-btn-cont{
        width: 25%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .mobile_popup .popup-catalog{
        position: absolute;
        background: #FFFFFF;
        width: 100%;
        top: calc(156px - 100vh);
        height: calc(100vh - 155px);
        overflow: scroll;
        left: 0;
        display: none;
    }
    .mobile_popup .popup-btn{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 5px 0;
        gap: 10px;
        width: 75px;
        height: 63px;
        background: #FFFFFF;
        border-radius: 8px;
        font-family: 'Rubik',sans-serif;
        font-weight: 400;
        font-size: 14px;
        line-height: 19px;
        color: #121212;
    }
    .mobile_popup .popup-btn>img{
        width: 24px;
        height: 24px;
    }
    .mobile_popup .popup-btn>img:nth-child(1), .mobile_popup .popup-btn-cont.active .popup-btn>img:nth-child(2){
        display: block;
    }
    .mobile_popup .popup-btn>img:nth-child(2), .mobile_popup .popup-btn-cont.active .popup-btn>img:nth-child(1){
        display: none;
    }
    .mobile_popup .popup-btn-cont.active .popup-btn{
        background: #72273C;
        color: #FFFFFF;
    }
    .mobile_popup .popup-btn-cont.active .popup-catalog{
        display: flex;
        flex-direction: column;
        padding-left: 15px;
        padding-right: 15px;
    }
    .mobile_popup  .popup-catalog .arrow{
        transform: rotate(-90deg);
        margin-left: auto;
    }
    .mobile_popup .popup-catalog li{
        display: flex;
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
    }
    .mobile_popup .popup-catalog li>ul{
        display: none;
    }
    .mobile_popup .popup-catalog li.open>ul{
        display: flex;
        flex-direction: column;
        row-gap: 20px;
        padding-top: 20px;
        width: 100%;
        padding-left: 25px;
    }
    .mobile_popup .popup-catalog li.open>.arrow{
        transform: rotate(0deg);
    }
    .mobile_popup .popup-catalog li li>a{
        font-family: 'Rubik',sans-serif;
        font-style: normal;
        font-weight: 300;
        font-size: 14px;
        line-height: 17px;
        color: #121212;
    }
    .mobile_popup .popup-catalog>ul>li{
        padding-top: 5px;
        padding-bottom: 5px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.5);
    }
    .mobile_popup .popup-catalog li li>a{
        flex-grow: 1;
    }
    .mobile_popup .popup-catalog>ul>li>a{
        font-family: 'Rubik',sans-serif;
        font-weight: 400;
        font-size: 16px;
        line-height: 19px;
        color: #121212;
    }
    .mobile_popup .popup-catalog>ul>li>img:nth-child(1){
        display: block;
        width: 75px;
        height: 65px;
        border-radius: 4px;
        margin-right: 18px;
    }
    .popup-contacts{
        display: none;
    }
    .mobile_popup .popup-btn-cont.active .popup-contacts{
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 25px;
        padding-bottom: 24px;
        position: absolute;
        bottom: 100%;
        background: #FFFFFF;
        left: 0;
        width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }
    .popup-socials{
        display: flex;
        flex-direction: row;
        column-gap: 32px;
        margin-bottom: 41px;
    }
    .popup-socials>a, .popup-socials img{
        display: block;
    }
    .popup-socials img{
        width: 32px;
        height: 32px;
    }
    .popup-contacts>a{
        width: 100%;
        background: #72273C;
        border-radius: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 55px;
        color: #FFFFFF;
        font-family: 'Rubik',sans-serif;
        font-weight: 400;
        font-size: 16px;
        line-height: 19px;
        margin-bottom: 15px;
    }
    .popup-contacts>div{
        font-family: 'Rubik',sans-serif;
        font-weight: 300;
        font-size: 11px;
        line-height: 14px;
        text-align: center;
        color: rgba(0, 0, 0, 0.5);
    }

    .mobile_popup .popup-menu{
        position: absolute;
        background: #FFFFFF;
        width: 100%;
        top: calc(156px - 100vh);
        height: calc(100vh - 154px);
        overflow: scroll;
        left: 0;
        display: none;
    }



    .mobile_popup .popup-btn-cont.active .popup-menu{
        display: flex;
        flex-direction: column;
        padding-left: 15px;
        padding-right: 15px;
        padding-top: 60px;
    }
    .mobile_popup  .popup-menu .arrow{
        display: block;
        transform: rotate(-90deg);
        margin-left: auto;
    }
    .mobile_popup .popup-menu li{
        display: flex;
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
    }
    .mobile_popup .popup-menu li>ul{
        display: none;
    }
    .mobile_popup .popup-menu li.open>ul{
        display: flex;
        flex-direction: column;
        row-gap: 25px;
        padding-top: 25px;
        width: 100%;
        padding-left: 25px;
    }
    .mobile_popup .popup-menu li.open>.arrow{
        transform: rotate(0deg);
    }
    .mobile_popup .popup-menu li li>a{
        font-family: 'Rubik',sans-serif;
        font-style: normal;
        font-weight: 300;
        font-size: 16px;
        line-height: 19px;
        color: #121212;
    }
    .mobile_popup .popup-menu li li.open>a{
        font-weight: 400;
    }
    .mobile_popup .popup-menu>ul>li{
        padding-top: 25px;
        padding-bottom: 15px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.5);
    }
    .mobile_popup .popup-menu li li>a{
        flex-grow: 1;
    }
    .mobile_popup .popup-menu>ul>li>a{
        font-family: 'Rubik',sans-serif;
        font-weight: 300;
        font-size: 20px;
        line-height: 24px;
        color: #121212;
    }
    .mobile_popup .popup-menu>ul>li.open>a{
        font-weight: 400;
    }




    #modal_want_cheaper{
        padding-top: 60px;
        padding-bottom: 121px;
        width: 345px;

    }
    .m-cheaper-close{
        top:25px;
        right: 25px;
    }
    .m-cheaper-tit{
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 10px;
    }
    .m-cheaper-desc{
        font-size: 16px;
        line-height: 22px;
        margin-bottom: 40px;
    }
    .m-cheaper-form{
        width: 100%;
        max-width: 100%;
        row-gap: 10px;
        margin-bottom: 10px;
    }
    .m-cheaper-form input{
        height: 51px;
        font-size: 16px;
        line-height: 19px;
        width: 100%;
    }
    .m-cheaper-form>button{
        height: 55px;
        width: 100%;
        line-height: 19px;
        margin-top: 4px;
    }
    .m-ch-politics{

        font-size: 11px;
        line-height: 14px;

    }


    #modal_size_table{
        padding-top: 60px;
        padding-bottom: 30px;
        width: 345px;

    }
    .m-size-close{

        top: 25px;
        right: 25px;
    }
    .m-size-tit{
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 40px;
    }
    .m-size-tb{
        margin-bottom: 20px;
    }
    .m-size-info{
        font-size: 16px;
        line-height: 22px;
        text-align: left;
    }
    .m-size-tb th, .m-size-tb td{
        padding-left: 13px;
    }
    .m-size-tb th{
        height: 62px;
        font-weight: 500;
        font-size: 14px;
        line-height: 18px;
    }
    .m-size-tb td{
        height: 44px;
        font-size: 14px;
        line-height: 18px;
    }


    #modal_pr_order{
        padding-top: 60px;
        padding-bottom: 121px;
        width: 345px;

    }
    .m-pr-close{
        top:25px;
        right: 25px;
    }
    .m-pr-tit{
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 10px;
    }
    .m-pr-desc{
        font-size: 16px;
        line-height: 22px;
        margin-bottom: 40px;
    }
    .m-pr-form{
        width: 100%;
        max-width: 100%;
        row-gap: 10px;
        margin-bottom: 10px;
    }
    .m-pr-form>input{
        height: 51px;
        font-size: 16px;
        line-height: 19px;
        width: 100%;
    }
    .m-pr-form>button{
        height: 55px;
        width: 100%;
        line-height: 19px;
        margin-top: 4px;
    }
    .m-pr-info{
        display: none;
    }

    .m-pr-form>label{

        align-items: start;
        column-gap: 10px;
        font-size: 14px;
        line-height: 20px;
        margin-top: 15px;
        margin-bottom: 10px;
    }
    .m-pr-form>label>div{
        position: relative;
        width: 15px;
        height: 15px;
    }

    .m-pr-politics{
        font-size: 11px;
        line-height: 14px;
    }

}




