@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

.g-stars {
    display: inline-block;
    height: 24px;
    position: relative;
    margin: 0 -2px 5px -2px;
}
.g-stars .item {
    display: flex;
    overflow: hidden;
}
.g-stars .item.pale {
    position: relative;
    z-index: 1;
}
.g-stars .item.fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}
.g-stars span {
    display: block;
    width: 26px;
    min-width: 26px;
    height: 24px;
    background: url('../images/stars.png');
    margin: 0 2px;
}
.g-stars span:last-child {

}
.g-stars .item.fill span {
    background: url('../images/stars.png') 0 -24px;
}
.g-stars input[type=radio] {
    display: block;
    opacity: 0;
    width: 20%;
    min-width: 20%;
    height: 24px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    cursor: pointer;
    margin: 0;
}
.g-stars input[type=radio][data-score="2"] {
    left: 20%;
}
.g-stars input[type=radio][data-score="3"] {
    left: 40%;
}
.g-stars input[type=radio][data-score="4"] {
    left: 60%;
}
.g-stars input[type=radio][data-score="5"] {
    left: 80%;
}
.g-stars input[type=radio][data-score="1"]:checked ~ .item.fill {
    width: 20%;
}
.g-stars input[type=radio][data-score="2"]:checked ~ .item.fill {
    width: 40%;
}
.g-stars input[type=radio][data-score="3"]:checked ~ .item.fill {
    width: 60% !important;
}
.g-stars input[type=radio][data-score="4"]:checked ~ .item.fill {
    width: 80%;
}
.g-stars input[type=radio][data-score="5"]:checked ~ .item.fill {
    width: 100%;
}
.g-stars input[type=radio][data-score="1"]:hover ~ .item.fill {
    width: 20% !important;
}
.g-stars input[type=radio][data-score="2"]:hover ~ .item.fill {
    width: 40% !important;
}
.g-stars input[type=radio][data-score="3"]:hover ~ .item.fill {
    width: 60% !important;
}
.g-stars input[type=radio][data-score="4"]:hover ~ .item.fill {
    width: 80% !important;
}
.g-stars input[type=radio][data-score="5"]:hover ~ .item.fill {
    width: 100% !important;
}

.g-sizes {
    position: relative;
    margin-right: 30px;
}
.g-sizes .items {
    display: flex;
    flex-wrap: wrap;
}
.g-sizes .size {
    text-align: center;
    padding: 5px 8px 5px 8px;
    margin-right: 6px;
    position: relative;
    cursor: pointer;
}
.g-sizes .size input {
    display: block;
    position: absolute;
    opacity: 0;
}
.g-sizes .size input:checked + .border {
    border: 2px solid #71553A;
}
.g-sizes .size.only-booking input:checked + .border {
    border: 2px dashed #71553A;
}
.g-sizes .size .border {
    border: 1px solid #F4EFEB;
    border-radius: 5px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.g-sizes .size.only-booking .border {
    border: 2px dashed #F4EFEB;
}

.g-sizes .size .size-name {
    font-weight: 500;
    font-size: 14px;
    line-height: 14px;
    color: #2C180B;
    text-align: center;
}

.g-sizes .size input[data-count="0"] ~ .size-name {
    opacity: 0.3;
}

.g-sizes .size .size-num {
    color: #B09784;
    font-weight: 500;
    font-size: 10px;
    line-height: 10px;
    text-align: center;
    white-space: nowrap;
}

.g-select {
    height: 48px;
    border: 1px solid #B09784;
    border-radius: 5px;
    position: relative;
}
.g-select.expand {
    border-color: #533A25;
}
.g-select .value {
    line-height: 48px;
    padding: 0 0 0 20px;
    cursor: pointer;
    color: #2C180B;
    overflow: hidden;
    white-space: nowrap;
    margin-right: 50px;
}
.g-select.inactive .value {
    color: #B09784;
    cursor: default;
}
.g-select .value span {
    color: #B09784;
}
.g-select .value:after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    margin: -5px 0 0 0;
    width: 14px;
    height: 9px;
    background: url('../images/arrows.png?v=2') -154px 0;
    transition-duration: .3s;
}
.g-select.inactive .value:after {
    background-position: -168px 0;
}
.g-select.expand .value:after {
    transform: rotate(180deg);
}
.g-select .values {
    background: #fff;
    position: absolute;
    width: 100%;
    top: 100%;
    left: -1px;
    margin-top: -3px;
    border: 1px solid #533A25;
    border-top: 1px solid #FCF8F6;
    box-sizing: content-box;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    display: none;
    max-height: 220px;
    overflow: hidden auto;
}
.g-select.expand .values {
    display: block;
    padding: 10px 0;
    z-index: 10;
}
.g-select .values label {
    font-size: 14px;
    line-height: 28px;
    font-weight: 400;
}
.g-select .values span {
    display: block;
    color: #71553A;
    cursor: pointer;
    padding: 0 20px;
}
.g-select .values input {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
}
.g-select .values input:checked + span {
    background: #FCF8F6;
    color: #533A25;
}

.gi-button {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    color: #71553A;
    padding: 0 0 0 26px;
    text-decoration: none;
    white-space: nowrap;
}
.gi-button:after {
    content: '';
    display: block;
    position: absolute;
    border-bottom: 1px dotted #B09784;
    bottom: 0;
    width: calc(100% - 26px);
}
.gi-button:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
}
.gi-button:hover {
    color: #533A25;
}
.gi-button.choose-size:before {
    width: 23px;
    height: 17px;
    background: url('../images/icons.png?v=2') -42px 0;
}
.gi-button.choose-size:hover:before {
    background-position: -65px 0;
}
.gi-button.location-ext {
    padding-left: 20px;
}
.gi-button.location-ext:after {
    width: calc(100% - 20px);
}
.gi-button.location-ext:before {
    width: 14px;
    height: 20px;
    top: 2px;
    background: url('../images/icons.png?v=2') -308px 0;
}
.gi-button.location-ext:hover:before {
    background-position: -322px 0;
}

.gw-button {
    display: block;
    height: 50px;
    line-height: 50px;
    border-radius: 5px !important;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    text-transform: uppercase;
    color: #71553A;
    border: 1px solid #71553A;
}
.gw-button:hover {
    border: 1px solid #533A25;
    color: #533A25;
}

.gf-button {
    background: #71553A;
    border: 1px solid #71553A;
    color: #FFFFFF;
    display: inline-block;
    vertical-align: middle;
    line-height: 50px;
    border-radius: 5px !important;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    text-transform: uppercase;
}
.gf-button:hover {
    background: #543B26;
    border: 1px solid #543B26;
}

.e-hidden {
    display: none !important;
}

.g-loading {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 100;
}
.g-loading:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
}
.g-loading:after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -32px 0 0 -32px;
    width: 64px;
    height: 64px;
    background: url('../images/preloader64px.gif?v=2') no-repeat;
}

.g-button-loading {
    position: relative;
    color: transparent !important;
}
.g-button-loading:before {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 30px;
    margin: -15px 0 0 -12px;
    background: url('../images/preloader-white.svg') no-repeat;
}

.p-relative {
    position: relative;
}

.g-close {
    position: absolute;
    display: block;
    top: 20px;
    right: 20px;
    width: 20px;
    height: 20px;
    overflow: hidden;
    z-index: 150;
}
.g-close:before,
.g-close:after {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    position: absolute;
    top: 9px;
    left: -4px;
    background: #71553A;
}
.g-close:before {
    transform: rotate(45deg);
}
.g-close:after {
    transform: rotate(-45deg);
}

.product {
    font-family: 'Montserrat', sans-serif;
    padding-top: 20px;
    max-width: 1920px;
    margin: 0 auto;
    position: relative;
}

.product .product-wrap {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.product .catalog-nav {
    display: flex;
    position: absolute;
    right: 0;
    width: 720px;
    padding: 0 21px 0 21px;
    white-space: nowrap;
    overflow: hidden;
}
.product .catalog-nav a {
    display: block;
    line-height: 32px;
    font-weight: 500;
    font-size: 12px;
    color: #B09784;
    text-transform: uppercase;
    margin: 0 11px 0 0;
}
.product .catalog-nav .separator {
    display: block;
    position: relative;
    margin: 0 11px 0 0;
}
.product .catalog-nav .separator:after {
    content: '';
    display: block;
    width: 5px;
    height: 8px;
    background: url('../images/arrows.png') -5px -0;
    top: 50%;
    left: 50%;
    margin: -4px 0 0 -2px;
    position: absolute;
}
.product .catalog-nav a.back {
    width: 32px;
    min-width: 32px;
    height: 32px;
    min-height: 32px;
    position: relative;
    background: #F8F7F6;
    border-radius: 50%;
}
.product .catalog-nav a.back:before {
    content: '';
    display: block;
    position: absolute;
    width: 17px;
    height: 16px;
    background: url('../images/arrows.png') -75px -0;
    top: 50%;
    left: 50%;
    margin: -8px 0 0 -8px;
}
.product .catalog-nav a.back:hover {

}
.product .catalog-nav a.back:hover:before {
    background-position: -58px 0;
}

.product .product-images {
    flex: 1;
    position: relative;
    max-width: calc(100% - 720px);
}
.product .product-images .preview-images {
    position: absolute;
    top: 27px;
    left: 0;
    width: 82px;
    padding: 7px 0;
    background: #fff;
    border-radius: 0px 5px 5px 0px;
    box-shadow: 0px 0px 26px rgba(44, 24, 11, 0.1);
    cursor: pointer;
    z-index: 10;
}
.product .product-images .preview-images .preview-image {
    padding: 3px 10px;
    cursor: pointer;
}
.product .product-images .preview-images .preview-image .img {
    border: 2px solid transparent;
    border-radius: 3px;
}
.product .product-images .preview-images .preview-image.active .img {
    border-color: #B09784;
}
.product .product-images .preview-images .preview-image img {
    max-width: 100%;
}
.product .product-images .images-wrap {
    display: flex;
    flex-wrap: wrap;
}
.product .product-images .images-wrap img {

}
.product .product-images .main-image {
    width: 100%;
    height: 730px;
    flex-grow: 2;
    overflow: hidden;
    margin-bottom: 30px;
    text-align: center;
    cursor: pointer;
    position: relative;
}
.product .product-images .main-image:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
    z-index: 10;
    background-size: 3px 100%;
    background-repeat: repeat-x;
}
.product .product-images .main-image:after {
    content: '';
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    z-index: 10;
    background-size: 3px 100%;
    background-repeat: repeat-x;
}
.product .product-images .main-image img {
    min-height: 100%;
    position: relative;
    z-index: 100;
}
.product .product-images .main-image video {
    min-height: 100%;
    max-height: 100%;
}
.product .product-images .image {
    flex-grow: 1;
    padding: 0 0 30px 30px;
    width: 50%;
    max-width: 50%;
    cursor: pointer;
}
.product .product-images .image img {
    width: 100%;
    max-width: 100%;
    min-height: 100%;
}
.product .product-images .image video {
    min-height: 100%;
    max-height: 100%;
    width: 100%;
    max-width: 100%;
}

.product .product-images .product-slider {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #fff;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    transition-duration: .3s;
}
.product .product-images .product-slider.opened {
    z-index: 9999999;
    opacity: 1;
    visibility: visible;
}
.product .product-images .product-slider .owl-carousel {
    padding: 20px 100px;
    height: 100%;
}
.product .product-images .product-slider .owl-carousel {
    position: relative;
}
.product .product-images .product-slider .owl-carousel img {
    max-width: 100%;
    max-height: 100%;
}

.product .product-images .product-slider .owl-carousel .owl-stage-outer {
    height: 100%;
    overflow: hidden;
}
.product .product-images .product-slider .owl-carousel .owl-stage {
    height: 100%;
}
.product .product-images .product-slider .owl-carousel .owl-item {

    height: 100%;
    text-align: center;
    float: left;
}
.product .product-images .product-slider .owl-carousel .owl-nav {
    height: 0;
}
.product .product-images .product-slider .owl-carousel .owl-nav button {
    position: absolute;
    top: 50%;
    margin: -28px 0 0 0;
    width: 29px;
    height: 56px;
}
.product .product-images .product-slider .owl-carousel .owl-nav button span {
    display: block;
    font-size: 0;
    width: 40px;
    height: 40px;
    top: 50%;
    position: absolute;
}
.product .product-images .product-slider .owl-carousel .owl-nav .owl-prev {
    left: 220px;
}
.product .product-images .product-slider .owl-carousel .owl-nav .owl-prev span {
    left: 0;
    margin: -20px 0 0 5px;
    border-left: 4px solid #B09784;
    border-top: 4px solid #B09784;
    transform: rotate(-45deg);
}
.product .product-images .product-slider .owl-carousel .owl-nav .owl-next {
    right: 220px;
}
.product .product-images .product-slider .owl-carousel .owl-nav .owl-next span {
    margin: -20px 5px 0 0;
    border-right: 4px solid #B09784;
    border-bottom: 4px solid #B09784;
    transform: rotate(-45deg);
    right: 0;
}
.product .product-images .product-slider .owl-carousel .owl-dots {
    position: absolute;
    bottom: 10px;
    width: 100%;
    justify-content: center;
    display: none;
}
.product .product-images .product-slider .owl-carousel .owl-dots .owl-dot {
    width: 17px;
    height: 17px;
    margin: 0 5px;
    position: relative;
}
.product .product-images .product-slider .owl-carousel .owl-dots .owl-dot span {
    display: block;
    position: absolute;
    width: 10px;
    height: 10px;
    top: 50%;
    left: 50%;
    margin: -5px 0 0 -5px;
    border-radius: 50%;
    background: #B09784;
}
.product .product-images .product-slider .owl-carousel .owl-dots .owl-dot.active span {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin: 0;
}

.product .product-images .p-labels {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: end;
}
.product .product-images .p-labels .p-label {
    margin-bottom: 10px;
    line-height: 30px;
    height: 30px;
    font-weight: 600;
    font-size: 12px;
    border-radius: 3px;
    text-transform: uppercase;
    color: #fff;
    padding: 0 16px;
}
.product .product-images .p-labels .p-label.light-brown {
    background: #b09784;
}
.product .product-images .p-labels .p-label.white-red {
    background: #fff;
    color: #e13a16;
}
.product .product-images .p-labels .p-label.red-white {
    background: #e13a16;
    color: #fff;
}
.product .product-images .p-labels .p-label.purple-white {
    background: #8098cc;
    color: #ffffff;
}
.product .product-images .p-labels .p-label.picture {
    line-height: 40px;
    height: 40px;
    text-align: right;
    padding: 0;
    overflow: hidden;
}
.product .product-images .p-labels .p-label.picture img {
    height: 100%;
}

.product .right-fix {
    flex: 0 0 720px;
    min-height: 100px;
    width: 720px;
}
.product .product-data {
    padding: 0 21px 0 21px;
    margin-top: 42px;
    overflow: visible;
}
.product .product-data .title {
    padding: 0 120px 0 0;
    position: relative;
}
.product .product-data .title h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 35px;
    text-transform: none;
    line-height: 36px;
    color: #2C180B;
}
.product .product-data .title .actions {
    position: absolute;
    top: 0;
    right: 20px;
    display: flex;
}
.product .product-data .title .actions .action {
    margin-left: 25px;
    position: relative;
}
.product .product-data .title .actions .action:first-child {
    margin-left: 0;
}
.product .product-data .title .actions .action button:before,
.product-panel .action button:before
{
    content: '';
    display: block;
}
.product .product-data .title .actions .action.add-to-favorite button:before,
.product-panel .action.add-to-favorite button:before {
    width: 28px;
    height: 26px;
    background: url('../images/icons.png') -224px 0;
}
.product .product-data .title .actions .action.add-to-favorite button:hover:before,
.product .product-data .title .actions .action.add-to-favorite.added button:before,
.product-panel .action.add-to-favorite button:hover:before,
.product-panel .action.add-to-favorite.added button:before {
    background: url('../images/icons.png') -252px 0;
}
.product .product-data .title .actions .action.share button:before {
    width: 26px;
    height: 26px;
    background: url('../images/icons.png') -88px 0;
}
.product .product-data .title .actions .action.share .g-tooltip {
    display: flex;
    justify-content: space-between;
}
.product .product-data .title .actions .action.share .g-tooltip .s-item {
    width: 34px;
    display: block;
    margin: 0 2px;
}
.product .product-data .title .actions .action.share .g-tooltip .s-item img {
    width: 34px;
}
.product .product-data .identifiers {
    display: flex;
    font-weight: 400;
    font-size: 12px;
    margin-bottom: 20px;
}
.product .product-data .identifiers .item {
    margin-right: 5px;
}
.product .product-data .identifiers .item span {
    color: #B09784;
}
.product .product-data .price {
    display: flex;
    align-items: flex-end;
    margin-bottom: 20px;
}
.product .product-data .price--short-margin {
    margin-bottom: 10px;
}

.product .product-data .price > span {
    display: block;
}
.product .product-data .price .current-price {
    color: #E13A16;
    font-weight: 500;
    font-size: 26px;
    margin-right: 12px;
    line-height: 26px;
}
.product .product-data .price .current-price .R {
    font-weight: 700;
    font-size: 12px;
}
.product .product-data .price .old-price {
    font-weight: 500;
    font-size: 16px;
    text-decoration-line: line-through;
    color: #84807D;
    line-height: 26px;
    margin-right: 12px;
}
.product .product-data .price .discount {
    background: #E13A16;
    border-radius: 0px 3px 3px 0px;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    padding: 0 4px;
    height: 20px;
    position: relative;
    margin-left: 10px;
    margin-bottom: 6px;
}
.product .product-data .price .discount:before {
    content: '';
    display: block;
    position: absolute;
    top: 3px;
    left: -7px;
    width: 14px;
    height: 14px;
    -webkit-border-bottom-left-radius: 3px;
    -moz-border-radius-bottomleft: 3px;
    border-bottom-left-radius: 3px;
    background: #E13A16;
    transform: rotate(45deg);
    z-index: 1;
}
.product .product-data .price .discount > span {
    display: block;
    position: relative;
    line-height: 20px;
    z-index: 2;
}

.product .product-data .sizes-block {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}
.product .product-data .sizes-block .sizes-title {
    font-weight: 400;
    font-size: 12px;
    line-height: 20px;
    color: #71553A;
    margin-right: 20px;
    display: none;
}

.product .product-data .g-sizes .items {
    flex-wrap: wrap;
}
.product .product-data .g-sizes .sizes-text {
    position: absolute;
    top: 100%;
    line-height: 24px;
    font-weight: 400;
    font-size: 12px;
    color: #71553A;
    white-space: nowrap;
}
.product .product-data .g-sizes .size {
    margin-bottom: 6px;
}
.product .product-data .g-sizes .error-message {
    display: none;
}
.product .product-data .g-sizes.error .size .border {
    border: 2px solid #E13A16;
}
.product .product-data .g-sizes.error .error-message {
    display: block;
    color: #E13A16;
}
.product .product-data .g-sizes.error .product-count {
    display: none;
}

.product .product-data .promo-code {
    background: #FCF8F6;
    border-radius: 5px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}
.product .product-data .promo-code .text {
    font-weight: 400;
    font-size: 16px;
}
.product .product-data .promo-code .text .discount {
    font-weight: 600;
    color: #E13A16;
}
.product .product-data .promo-code .text .code {
    font-weight: 600;
    color: #71553A;
}
.product .product-data .promo-code .copy {
    height: 40px;
    padding: 0px 24px;
    background: #FFFFFF;
    border: 1px solid #71553A;
    border-radius: 5px;
    font-weight: 600;
    font-size: 12px;
    line-height: 40px;
    text-align: center;
    text-transform: uppercase;
    color: #71553A;
}
.product .product-data .promo-code .copy:hover {
    border: 1px solid #533A25;
    color: #533A25;
}
.product .product-data .promo-code .copy.copied {
    border: 1px solid #B09784;
    color: #B09784;
}

.product .product-data .info-buttons {
    margin: 0 -20px 15px -20px;
    padding: 0 20px 15px 20px;
    border-bottom: 1px solid #F4EFEB;
    display: flex;
}

.product .product-data .info-buttons--mobile {
    display: none;
}

.product .product-data .info-buttons a {
    display: block;
    margin: 0 28px;
    font-weight: 700;
    font-size: 13px;
    line-height: 16px;
    text-transform: uppercase;
    color: #71553A;
}
.product .product-data .info-buttons a.active {
    cursor: default;
    color: #3b291b;
}
.product .product-data .info-buttons a:hover {
    color: #533A25;
}
.product .product-data .info-buttons a:first-child {
    margin-left: 0;
}
.product .product-data .info-buttons a:last-child {
    margin-right: 0;
}
.product .product-data .info-buttons a span {
    text-decoration: underline;
    text-decoration-style: dotted;
}
.product .product-data .info-buttons a span.small {
    font-size: 10px;
    font-weight: 500;
    text-decoration: none;
    text-transform: none;
}
.product .product-data .info-buttons a.active span {
    text-decoration: none;
}

.product .product-data .tabs-contents {
    margin-bottom: 25px;
}
.product .product-data .tabs-contents .tab-content {
    display: none;
}
.product .product-data .tabs-contents .tab-content.active {
    display: block;
}

.product .product-data .tabs-contents .tab-content[data-tab="delivery"] p {
    margin-bottom: 10px;
}
.product .product-data .tabs-contents .tab-content[data-tab="delivery"] p span {
    font-weight: 700;
    white-space: nowrap;
}

.product .delivery-items {

}
.product .delivery-items .item {
    display: flex;
    margin-bottom: 20px;
}
.product .delivery-items .item .icon {
    margin-right: 10px;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    vertical-align: middle;
}
.product .delivery-items .item .content {

}
.product .delivery-items .item .separator {
    font-size: 28px;
    padding: 0 9px;
    text-align: center;
    line-height: 18px;
    color: #B09784;
}
.product .delivery-items .item .top {
    display: flex;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 2px;
}
.product .delivery-items .item .title .name {

}
.product .delivery-items .item .info {
    display: flex;
    color: #B09784;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 12px;
}
.product .delivery-items .item .info .extra {
    margin-left: 16px;
}

.product .product-data .params {
    font-size: 16px;
}
.product .product-data .params .param {
    display: flex;
    margin-bottom: 10px;
}
.product .product-data .params .param .name {
    width: 28%;
    font-weight: 400;
    color: #71553A;
}
.product .product-data .params .param .value {
    width: 72%;
    font-weight: 500;
    color: #2C180B;
    padding-left: 10px;
}

.product .product-data .buy-buttons {
    display: flex;
    margin: 0 0 28px;
    padding: 20px 15px;
    background: #FCF8F6;
}

.product-panel .buy-buttons {
    display: flex;
}

.product.main.fixed-buy-step-2 {
    position: relative;
}
.product.main.fixed-buy-step-1 .product-data {
    position: fixed;
    right: 0;
    top: 75px;
    margin: 0;
    z-index: 15;
}
.product.main.fixed-buy-step-2 .product-data {
    position: absolute;
    top: auto;
    right: 0;
    bottom: 0;
}

.product .product-data .buy-buttons .buy-button,
.product-panel .buy-buttons .buy-button {
    width: 50%;
    height: 50px;
    line-height: 50px;
    border-radius: 5px;
    margin: 0 5px;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    text-transform: uppercase;
}

.product-panel .buy-buttons .buy-button {
    width: auto;
    padding: 12px;
    height: auto;
    font: normal 600 14px/17px 'Montserrat';
}

.product .product-data .buy-buttons .buy-button.add-to-basket,
.product-panel .buy-buttons .buy-button.add-to-basket {
    background: #71553A;
    border: 1px solid #71553A;
    color: #FFFFFF;
    display: block;
}
.product .product-data .buy-buttons .buy-button.add-to-basket.added,
.product-panel .buy-buttons .buy-button.add-to-basket.added {
    background: #B09784;
    border: 1px solid #B09784;
    cursor: default;
}
.product .product-data .buy-buttons .buy-button.add-to-basket:not(.added):hover,
.product-panel .buy-buttons .buy-button.add-to-basket:not(.added):hover {
    background: #543B26;
    border: 1px solid #543B26;
}
.product .product-data .buy-buttons .buy-button.add-to-basket_already-exists,
.product-panel .buy-buttons .buy-button.add-to-basket_already-exists {
    background: #B09784;
    color: #ffffff;
    border-color: #B09784;
    pointer-events: none;
}
.product .product-data .buy-buttons .buy-button.add-to-basket.disabled,
.product .product-data .buy-buttons .buy-button.add-to-basket.disabled:hover,
.product-panel .buy-buttons .buy-button.add-to-basket.disabled,
.product-panel .buy-buttons .buy-button.add-to-basket.disabled:hover {
    cursor: not-allowed;
    background: #B09784;
    border-color: #B09784;
}
.product .product-data .buy-buttons .buy-button.reserve,
.product-panel .buy-buttons .buy-button.reserve {
    background: #FFFFFF;
    color: #71553A;
    border: 1px solid #71553A;
}
.product .product-data .buy-buttons .buy-button.reserve.reserved,
.product-panel .buy-buttons .buy-button.reserve.reserved {
    border: 1px solid #B09784;
    color: #B09784;
    cursor: default;
}
.product .product-data .buy-buttons .buy-button.reserve:not(.reserved):hover,
.product-panel .buy-buttons .buy-button.reserve:not(.reserved):hover {
    border: 1px solid #533A25;
    color: #533A25;
}
.product .add-to-basket .add-to-basket__text_exists,
.product-panel .add-to-basket .add-to-basket__text_exists {
    display: none;
}
.product .product-data .buy-buttons .buy-button .mobile-v,
.product-panel .buy-buttons .buy-button .mobile-v {
    display: none;
}
.product .add-to-basket_already-exists .add-to-basket__text_exists,
.product-panel .add-to-basket_already-exists .add-to-basket__text_exists {
    display: block;
}
.product .add-to-basket_already-exists .add-to-basket__text_default,
.product-panel .add-to-basket_already-exists .add-to-basket__text_default {
    display: none;
}

.product .costume {
    padding: 0 0 15px 0;
}
.product .costume .costume-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 28px;
}
.product .costume .costume-item .g-sizes .product-count .count-text.hidden,
.product .costume .costume-item .g-sizes .product-count .pickup-only.hidden {
    display: none;
}
.product .costume .costume-item .costume-preview {
    min-width: 63px;
    max-width: 63px;
    margin-right: 20px;
}
.product .costume .costume-item .costume-data {
    flex-grow: 2;
    display: flex;
    justify-content: space-between;
}
.product .costume .costume-item .costume-info {
    display: flex;
    flex-direction: column;
}
.product .costume .costume-item .costume-data .name {
    font-weight: 500;
    font-size: 16px;
    line-height: 110%;
    color: #2C180B;
    text-decoration: underline;
    text-decoration-color: #B09784;
    height: 46px;
}
.product .costume .costume-item .costume-data .not-available {
    margin-bottom: 10px;
}
.product .costume .costume-item .costume-data .g-sizes {
    display: flex;
}
.product .costume .costume-item .costume-data .g-sizes .items {
    margin-right: 16px;
}
.product .costume .costume-item .costume-data .g-sizes .sizes-text {
    position: relative;
    top: auto;
    line-height: 100%;
}
.product .costume .costume-item .costume-buy {
    min-width: 134px;
}
.product .costume .costume-item .costume-buy .price {
    display: block;
    height: 46px;
    margin-bottom: 0;
}
.product .costume .costume-item .costume-buy .price .old-price {
    line-height: 100%;
    font-size: 10px;
}
.product .costume .costume-item .costume-buy .price .price-discount {
    display: flex;
}
.product .costume .costume-item .costume-buy .price .price-discount .current-price {
    font-weight: 500;
    font-size: 16px;
}
.product .costume .costume-item .costume-buy .add-to-basket {
    display: block;
    width: 100%;
    height: 37px;
    line-height: 37px;
    text-align: center;
    border: 1px solid #71553A;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 12px;
    color: #71553A;
}
.product .costume .costume-item .costume-buy .add-to-basket:hover {
    border-color: #533A25;
    color: #533A25;
}
.product .costume .costume-item .costume-buy .add-to-basket_already-exists {
    background: #B09784;
    color: #ffffff;
    border-color: #B09784;
    pointer-events: none;
}
.product .costume .costume-item .costume-buy .add-to-basket.disabled,
.product .costume .costume-item .costume-buy .add-to-basket.disabled {
    border-color: #B09784;
    color: #B09784;
    cursor: not-allowed;
}
.product .costume .costume-item .costume-buy .add-to-basket.bought {
    border-color: #B09784;
    color: #B09784;
    cursor: default;
}
.product .costume .choose-size-wrap {
    margin-bottom: 30px;
}
.product .costume .gi-button.choose-size {
    display: inline-block;
}
.product .costume .info-buttons {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.product .product-info {
    flex: 1;
    padding: 0 0 0 30px;
    margin-bottom: 40px;
}
.product .product-info .banner {
    margin-bottom: 60px;
    display: block;
    position: relative;
}
.product .product-info .banner .mobile {
    display: none;
}
.product .product-info .banner img {
    width: 100%;
}
.product .product-info .accordion {
    padding: 0 20px 0 100px;
}
.product .product-info .accordion .accordion-item {

}
.product .product-info .accordion .accordion-item .item-title {
    height: 64px;
    line-height: 64px;
    font-weight: 600;
    font-size: 24px;
    color: #2C180B;
    border-top: 1px solid #F4EFEB;
    position: relative;
    cursor: pointer;
}
.product .product-info .accordion .accordion-item .item-title > h2 {
    margin: 0;
    height: 64px;
    line-height: 64px;
    font-size: 24px;
    font-family: 'Montserrat', sans-serif;
    text-transform: none;
    font-weight: 600;
    color: #2C180B;
}
.product .product-info .accordion .accordion-item .item-title:after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    margin: -5px 0 0 0;
    width: 14px;
    height: 9px;
    background: url('../images/arrows.png?v=1') -126px -0;
    transition-duration: .3s;
}
.product .product-info .accordion .accordion-item.opened .item-title:after {
    transform: rotate(180deg);
}
.product .product-info .accordion .accordion-item .item-content {
    display: none;
    padding: 0 0 40px 0;
}
.product .product-info .accordion .accordion-item.opened  .item-content {

}
.product .product-info .characteristics {
    padding: 10px 0 0 0;
}
.product .product-info .characteristics .item {
    display: flex;
    margin-bottom: 20px;
    line-height: 16px;
    font-size: 16px;
    color: #2C180B;
}
.product .product-info .characteristics .item:last-child {
    margin-bottom: 0;
}
.product .product-info .characteristics .item .item-name {
    width: 30%;
    height: 16px;
    position: relative;
    font-weight: 400;
}
.product .product-info .characteristics .item .item-name span {
    background: #fff;
    display: inline-block;
    position: relative;
    z-index: 2;
    padding: 0 3px 0 0;
}
.product .product-info .characteristics .item .item-name:after {
    content: '';
    display: block;
    position: absolute;
    bottom: 1px;
    left: 0;
    z-index: 1;
    width: 100%;
    border-bottom: 1px dotted #B09784;
}
.product .product-info .characteristics .item .item-value {
    width: 70%;
    font-weight: 500;
    padding: 0 0 0 3px;
    word-break: break-all;
}
.product .product-info .characteristics .item .item-value.bold {
    font-weight: 600;
}
.product .product-info .characteristics .item .info {
    display: inline-block;
    position: relative;

}
.product .product-info .characteristics .item .info .icon {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid #71553A;
    color: #71553A;
    text-align: center;
    line-height: 16px;
    font-size: 12px;
    font-weight: 600;
    cursor: default;
}
.product .product-info .characteristics .item .info .info-content {
    position: absolute;
    display: none;
    background: #fff;
    top: 120%;
    width: 300px;
    padding: 20px;
    background: #FCF8F5;
    -webkit-box-shadow: 4px 4px 2px 0px rgba(34, 60, 80, 0.05);
    -moz-box-shadow: 4px 4px 2px 0px rgba(34, 60, 80, 0.05);
    box-shadow: 4px 4px 2px 0px rgba(34, 60, 80, 0.05);
}
.product .product-info .characteristics .item .info .icon:hover + .info-content {
    display: block;
}

.product .product-info .description {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #2C180B;
}
.product .product-info .description .text {
    margin-bottom: 30px;
}
.product .product-info .restrictions {
    list-style: none;
    margin: 0;
}
.product .product-info .restrictions li {
    position: relative;
    display: flex;
    align-items: center;
    padding: 5px 0;
}
.product .product-info .restrictions li:before {
    content: '';
    display: block;
    margin: 0 10px 0 0;
}
.product .product-info .restrictions li.iron:before {
    width: 20px;
    height: 14px;
    background: url('../images/restrictions-icons.png') -40px -0;
}
.product .product-info .restrictions li.wash:before {
    width: 20px;
    height: 18px;
    background: url('../images/restrictions-icons.png') -80px -0;
}
.product .product-info .restrictions li.dryer-prohibited:before {
    width: 20px;
    height: 20px;
    background: url('../images/restrictions-icons.png') -20px -0;
}
.product .product-info .restrictions li.dry-cleaning:before {
    width: 20px;
    height: 22px;
    background: url('../images/restrictions-icons.png') -0 -0;
}
.product .product-info .restrictions li.not-bleach:before {
    width: 20px;
    height: 20px;
    background: url('../images/restrictions-icons.png') -60px -0;
}
.product .product-info .delivery-info {

}
.product .product-info .delivery-info p {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #2C180B;
    margin: 0 0 10px 0;
}
.product .product-info .delivery-info p span {
    font-weight: 700;
}
.product .product-info .delivery-info p a {
    text-decoration: underline;
    color: #2C180B;
}

.product .recommended {
    overflow: hidden;
    margin: 0 130px;
}
.product .recommended .title {
    font-weight: 600;
    font-size: 36px;
    line-height: 36px;
    color: #2C180B;
    margin-bottom: 20px;
}
.product .recommended .title > h2 {
    font-size: 36px;
    font-weight: 600;
    line-height: 36px;
    text-transform: none;
    color: #2C180B;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}
.product .recommended .products-slider {
    /*padding: 26px 20px 0 20px;
    margin: 0 -20px 0 -20px;*/
    /*overflow: hidden;*/
}
.product .recommended .products-slider .owl-stage-outer {
    position: relative;
    padding-bottom: 110px;
}
.product .recommended .products-slider .owl-stage {
    display: flex;
}
.product .recommended .products-slider .owl-item {
    /**/
}
.product .recommended .products-slider .product-slide {
    margin: -20px -20px -110px -20px;
    padding: 20px;
    z-index: 1;
    position: relative;
    background: #fff;
    border-radius: 5px;
}
.product .recommended .products-slider .product-slide .p-labels {
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 10;
}
.product .recommended .products-slider .product-slide .p-labels .p-label {
    margin-bottom: 10px;
    line-height: 30px;
    height: 30px;
    font-weight: 600;
    font-size: 12px;
    border-radius: 3px;
    text-transform: uppercase;
    color: #fff;
    padding: 0 16px;
}
.product .recommended .products-slider .product-slide .p-labels .p-label.discount {
    background: #E13A16;
}

.product .recommended .products-slider .product-slide .p-labels .p-label {
    margin-bottom: 10px;
    line-height: 30px;
    height: 30px;
    font-weight: 600;
    font-size: 12px;
    border-radius: 3px;
    text-transform: uppercase;
    color: #fff;
    padding: 0 16px;
}
.product .recommended .products-slider .product-slide .p-labels .p-label.light-brown {
    background: #b09784;
}
.product .recommended .products-slider .product-slide .p-labels .p-label.white-red {
    background: #fff;
    color: #e13a16;
}
.product .recommended .products-slider .product-slide .p-labels .p-label.red-white {
    background: #e13a16;
    color: #fff;
}
.product .recommended .products-slider .product-slide .p-labels .p-label.picture {
    line-height: 40px;
    height: 40px;
    text-align: right;
    padding: 0;
    overflow: hidden;
}
.product .recommended .products-slider .product-slide .p-labels .p-label.picture img {
    height: 100%;
}

.product .recommended .products-slider .product-slide:hover {
    box-shadow: 0px 0px 26px rgba(44, 24, 11, 0.1);
    z-index: 10;
}
.product .recommended .products-slider .product-slide .images {
    margin-bottom: 10px;
    position: relative;
    display: flex;
}
.product .recommended .products-slider .product-slide .images .image {
    position: absolute;
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0;
    transition-duration: .5s;
}
.product .recommended .products-slider .product-slide .images .image img {
    max-width: 100%;
    max-height: 100%;
    width: 100%;
}
.product .recommended .products-slider .product-slide .images .image:first-child {
    opacity: 1;
    position: relative;
}
.product .recommended .products-slider .product-slide .images .image.inactive {
    opacity: 0;
}
.product .recommended .products-slider .product-slide .images .image.active {
    opacity: 1;
}
.product .recommended .products-slider .product-slide .images .images-nav {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    padding: 15px 10px;
    z-index: 5;
    display: flex;
    opacity: 0;
}
.product .recommended .products-slider .product-slide .images .images-nav:hover {
    opacity: 1;
}
.product .recommended .products-slider .product-slide .images .images-nav .nav-item {
    height: 100%;
    flex: 1 1 auto;
    padding: 0 3px;
    position: relative;
    display: flex;
    align-items: flex-end;
}
.product .recommended .products-slider .product-slide .images .images-nav .nav-item:after {
    content: '';
    display: block;
    height: 3px;
    width: 100%;
    background: rgba(176,176,176,0.5);
}
.product .recommended .products-slider .product-slide .images .images-nav .nav-item:first-child:after {
    background: rgba(135,85,58,0.9);
}
.product .recommended .products-slider .product-slide .images .images-nav .nav-item.inactive:after {
    background: rgba(176,176,176,0.5);
}
.product .recommended .products-slider .product-slide .images .images-nav .nav-item.active:after {
    background: rgba(135,85,58,0.9);
}
.product .recommended .products-slider .product-slide .price {
    display: flex;
    align-items: flex-end;
    line-height: 100%;
    margin-bottom: 10px;
}
.product .recommended .products-slider .product-slide .price .current-price {
    font-weight: 700;
    font-size: 16px;
    color: #2C180B;
    margin-right: 7px;
}
.product .recommended .products-slider .product-slide .price .current-price.discount {
    color: #E13A16;
}
.product .recommended .products-slider .product-slide .price .old-price {
    font-weight: 500;
    font-size: 12px;
    text-decoration-line: line-through;
    text-transform: uppercase;
    color: #000000;
}
.product .recommended .products-slider .product-slide .name {
    min-height: 48px;
    font-weight: 500;
    font-size: 16px;
    color: #2C180B;
    margin-bottom: 10px;
    display: block;
    text-decoration: none;
}
.product .recommended .products-slider .product-slide .sizes {
    margin-bottom: 15px;
}
.product .recommended .products-slider .product-slide .sizes .sizes-title {
    font-weight: 500;
    font-size: 12px;
    color: #B09784;
}
.product .recommended .products-slider .product-slide .sizes .items {
    display: flex;
}
.product .recommended .products-slider .product-slide .sizes .items .item {
    margin-right: 7px;
    font-weight: 500;
    font-size: 12px;
    line-height: 15px;
    text-transform: uppercase;
}
.product .recommended .products-slider .product-slide .add-to-basket {
    display: inline-block;
    height: 40px;
    line-height: 40px;
    font-weight: 600;
    font-size: 12px;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
    padding: 0 30px;
    background: #71553A;
    border-radius: 5px;
}
.product .recommended .products-slider .product-slide .add-to-basket:hover {
    background: #FFFFFF;
    border: 1px solid #533A25;
    border-radius: 5px;
    color: #533A25;
}
.product .recommended .products-slider .product-slide .sizes,
.product .recommended .products-slider .product-slide .add-to-basket {
    opacity: 0;
}
.product .recommended .products-slider .product-slide:hover .sizes,
.product .recommended .products-slider .product-slide:hover .add-to-basket {
    opacity: 1;
}
.product .recommended .products-slider .owl-nav {
    display: none;
}

.product .reviews {
    overflow: hidden;
    margin: 0 130px 120px 130px;
}
.product .reviews .title {
    font-weight: 600;
    font-size: 36px;
    line-height: 36px;
    color: #2C180B;
    margin-bottom: 20px;
}
.product .reviews .title > h2 {
    font-size: 36px;
    line-height: 36px;
    color: #2C180B;
    font-weight: 600;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    text-transform: none;
}
.product .reviews .common {
    background: #FCF8F6;
    border-radius: 5px;
    display: flex;
    width: 282px;
    padding: 12px 14px;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 17px;
}
.product .reviews .common .rating {

}
.product .reviews .common .rating .g-stars {

}
.product .reviews .common .rating .reviews-count {
    font-size: 16px;
    font-weight: 500;
    color: #2C180B;
}
.product .reviews .common .overall-score {
    font-weight: 500;
    font-size: 48px;
    line-height: 120%;
    color: #2C180B;
}
.product .reviews .reviews-items {

}
.product .reviews .reviews-items .owl-stage-outer {
    margin-bottom: 30px;
}
.product .reviews .reviews-items .owl-stage {
    display: flex;
}
.product .reviews .reviews-items .owl-item {

}
.product .reviews .reviews-items .review {
    border: 1px solid #F4EFEB;
    border-radius: 5px;
    padding: 30px 30px 30px 30px;
    position: relative;
}
.product .reviews .reviews-items .review .top {
    display: flex;
    margin-bottom: 5px;
}
.product .reviews .reviews-items .review .top .author {
    font-weight: 600;
    font-size: 16px;
    color: #2C180B;
    margin-right: 15px;
}
.product .reviews .reviews-items .review .top .date {
    font-weight: 400;
    font-size: 14px;
    color: #2C180B;
}
.product .reviews .reviews-items .review .score {
    margin-bottom: 15px;
}
.product .reviews .reviews-items .review .score .g-stars {

}
.product .reviews .reviews-items .review .score .g-stars span {
    width: 18px;
    height: 18px;
    min-width: 18px;
    background-size: 18px 36px;
}
.product .reviews .reviews-items .review .score .g-stars .item.fill span {
    background-position: 0 -18px;
}
.product .reviews .reviews-items .review .text {
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: #2C180B;
    margin-bottom: 5px;
}
.product .reviews .reviews-items .review .text .more-text {
    display: none;
}
.product .reviews .reviews-items .review.full .text .more-text {
    display: inline;
}
.product .reviews .reviews-items .review.full .text .dots {
    display: none;
}
.product .reviews .reviews-items .review .more {
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    color: #71553A;
}
.product .reviews .reviews-items .review.full .more {
    display: none;
}
.product .reviews .reviews-items .owl-nav {

}
.product .reviews .bottom {
    display: flex;
    justify-content: space-between;
    position: relative;
}
.product .reviews .bottom .new-review {
    display: block;
    position: absolute;
    left: 0;
    top: -40px;
    height: 40px;
    line-height: 40px;
    background: #71553A;
    border: 1px solid #71553A;
    border-radius: 5px;
    padding: 0 30px;
    font-weight: 600;
    text-transform: uppercase;
    color: #FFFFFF;
}
.product .reviews .bottom .new-review:hover {
    background: #FFFFFF;
    color: #71553A;
}
.product .reviews .owl-dots {
    display: none;
}
.product .reviews .owl-nav {
    display: flex;
    justify-content: center;
}
.product .reviews .owl-nav.disabled {
    opacity: 0;
    visibility: hidden;
}
.product .reviews .owl-nav button {
    border: 1px solid #71553A;
    border-radius: 5px;
    width: 40px;
    height: 40px;
    margin-left: 10px;
    display: block;
    position: relative;
}
.product .reviews .owl-nav button:before {
    content: '';
    display: block;
    width: 12px;
    height: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -10px 0 0 -6px;
}
.product .reviews .owl-nav button.disabled {
    cursor: default;
    opacity: 0.7;
}
.product .reviews .owl-nav button:not(.disabled):hover {
    background: #533A25;
}
.product .reviews .owl-nav button.owl-prev:before {
    background: url('../images/arrows.png') -10px 0;
}
.product .reviews .owl-nav button.owl-next:before {
    background: url('../images/arrows.png') -34px 0;
}
.product .reviews .owl-nav button.owl-prev:not(.disabled):hover:before {
    background: url('../images/arrows.png') -22px 0;
}
.product .reviews .owl-nav button.owl-next:not(.disabled):hover:before {
    background: url('../images/arrows.png') -46px 0;
}

.product .reviews .success div {
    margin-bottom: 10px;
}
.product .reviews .empty-reviews {
    padding: 20px 0 60px 0;
    text-align: center;
}

.g-tooltip-parent {
    position: relative;
}
.g-tooltip {
    position: absolute;
    padding: 14px 18px;
    background: #FFFFFF;
    box-shadow: 0px 0px 26px rgba(44, 24, 11, 0.1);
    border-radius: 5px;
    top: 100%;
    right: 0;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
}
.g-tooltip:before {
    content: '';
    display: block;
    position: absolute;
    width: 50%;
    height: 20%;
    right: 0;
    top: -20%;
}
.g-tooltip-parent:hover .g-tooltip {
    opacity: 1;
    visibility: visible;
    z-index: 10;
}
/*
.product .product-data .title .actions .action.share:hover .share-items {
    display: block;
}
.product .product-data .title .actions .action.share .share-items {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    width: 250px;
    height: 50px;
    background: #FCF8F5;
    -webkit-box-shadow: 4px 4px 2px 0px rgba(34, 60, 80, 0.05);
    -moz-box-shadow: 4px 4px 2px 0px rgba(34, 60, 80, 0.05);
    box-shadow: 4px 4px 2px 0px rgba(34, 60, 80, 0.05);
}
.product .product-data .title .actions .action.share .share-items:before {
    content: '';
    display: block;
    position: absolute;
    width: 50%;
    height: 20%;
    right: 0;
    top: -20%;
}
*/

.popup-mask {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);

    /*display: flex;
    justify-content: center;
    align-items: center;*/

    text-align: center;
    white-space: nowrap;

    overflow: hidden auto;
    padding: 14px;

    z-index: -1;
    opacity: 0;
    visibility: hidden;
}
.popup-mask.no-scroll {
    overflow: hidden;
}
.popup-mask:after {
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 0;
    height: 100%;
}
.popup-mask.opened {
    z-index: 9999999;
    opacity: 1;
    visibility: visible;
}
.popup-mask .popup-wrapper {
    display: inline-block;
    vertical-align: middle;
}
.popup-mask .popup {
    font-family: 'Montserrat', sans-serif;
    background: #FFFFFF;
    position: relative;
    min-width: 950px;
    max-width: 950px;
    text-align: left;
    white-space: normal;

}
.popup-mask .popup .ajax-container {
    min-height: 200px;
}

body.opened-popup {
    overflow: hidden;
}

.popup-mask .popup .p-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 -10px 20px -10px;
}
.popup-mask .popup .p-row .p-column {
    padding: 0 10px;
    flex: 1 1 auto;
}
.popup-mask .popup .row-title {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    color: #71553A;
    margin-bottom: 10px;
}
.popup-mask .popup .column-label {
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    color: #71553A;
    margin-bottom: 10px;
}

.popup-mask .popup input[type="text"],
.popup-mask .popup textarea {
    display: block;
    box-sizing: border-box;
    width: 100%;
    height: auto;
    padding: 13px 20px;
    border: 1px solid #B09784;
    border-radius: 5px;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    color: #2C180B;
    background-color: transparent;
    box-shadow: none;
    transition: none;
    -webkit-appearance: none;
}
.popup-mask .popup input[type="text"].error,
.popup-mask .popup textarea.error {
    border-color: #E13A16;
}
.popup-mask .popup textarea::-webkit-input-placeholder,
.popup-mask .popup input[type="text"]::-webkit-input-placeholder  {
    color: #B09784;
}
.popup-mask .popup textarea {
    height: 103px;
    resize: none;
}
.popup-mask .popup input[type="checkbox"] {
    display: block;
}
.popup-mask .popup .f-checkbox {
    display: inline-block;
    width: 13px;
    height: 13px;
    min-width: 13px;
    min-height: 13px;
    border: 1px solid #B09784;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.popup-mask .popup .f-checkbox input {
    margin: 0;
    opacity: 0;
    position: relative;
    cursor: pointer;
}
.popup-mask .popup .f-checkbox span {
    display: block;
    position: absolute;
    width: 8px;
    height: 5px;
    top: 2px;
    left: 2px;
    border-left: 2px solid #B09784;
    border-bottom: 2px solid #B09784;
    transform: rotate(-35deg);
    opacity: 0;
}
.popup-mask .popup .f-checkbox input:checked + span {
    opacity: 1;
}
.popup-mask .popup .notice {
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    color: #B09784;
}
.popup-mask .popup .notice a {
    text-decoration: underline;
    color: #B09784;
}

.popup-mask .popup .close {
    position: absolute;
    display: block;
    top: 20px;
    right: 20px;
    width: 20px;
    height: 20px;
    overflow: hidden;
    z-index: 110;
}
.popup-mask .popup .close:before,
.popup-mask .popup .close:after {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    position: absolute;
    top: 9px;
    left: -4px;
    background: #71553A;
}
.popup-mask .popup .close:before {
    transform: rotate(45deg);
}
.popup-mask .popup .close:after {
    transform: rotate(-45deg);
}
.popup-mask .popup .title {
    padding: 50px 80px 15px 80px;
    border-bottom: 1px solid #F4EFEB;
    font-weight: 600;
    font-size: 24px;
    line-height: 24px;
    color: #2C180B;
}

.popup-mask .popup.dialog {
    min-width: 600px;
    max-width: 600px;
    padding-top: 30px;
}
.popup-mask .popup.dialog .text {

}
.popup-mask .popup.dialog .buttons {
    display: flex;
    justify-content: center;
}
.popup-mask .popup.dialog .buttons button {
    padding: 0 30px;
    margin: 0 15px;
    flex: 1 1 auto;
}
.popup-mask .popup.dialog .buttons button:first-child {
    margin-left: 0;
}
.popup-mask .popup.dialog .buttons button:last-child {
    margin-right: 0;
}

.popup-mask .popup.new-review {
    width: 870px;
}

.popup-mask .popup.new-review .errors {
    margin-bottom: 20px;
    color: red;
}
.popup-mask .popup.new-review .success {
    text-align: center;
}
.popup-mask .popup.new-review .success > div {
    margin-bottom: 5px;
}
.popup-mask .popup.new-review .purchase-required {
    text-align: center;
    padding: 10px 0;
}
.popup-mask .popup.new-review .g-sizes .size {
    margin-bottom: 6px;
    min-width: 39px;
}

.popup-mask .popup .content {
    padding: 20px 80px;
}
.popup-mask .popup .content .text {
    margin-bottom: 20px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #2C180B;
}
.popup-mask .popup .content .r-row {
    margin-bottom: 20px;
}
.popup-mask .popup .content .r-row.score {
    margin-bottom: 30px;
}
.popup-mask .popup .content .r-row.score .g-stars {
    margin-bottom: 0;
}
.popup-mask .popup .content .r-row.in-two {
    display: flex;
    align-items: center;
}
.popup-mask .popup .content .r-row.in-two .f-label {
    width: 150px;
    min-width: 150px;
    padding-right: 24px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #2C180B;
}
.popup-mask .popup .content .agreement {
    margin-bottom: 40px;
}
.popup-mask .popup .content .agreement .r-row {
    display: flex;
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    color: #B09784;
    margin-bottom: 10px;
}
.popup-mask .popup .content .agreement .r-row .f-checkbox {
    margin: 2px 10px 0 0;
}
.popup-mask .popup .content .bottom {
    text-align: center;
    margin-bottom: 30px;
}
.popup-mask .popup .content .submit {
    padding: 0 80px;
    border: 1px solid #71553A;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    line-height: 50px;
    text-align: center;
    text-transform: uppercase;
    color: #71553A;
}
.popup-mask .popup .content .submit:hover {
    background: #71553A;
    color: #FFFFFF;
}

.popup-mask .popup.detect-size .content .top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}
.popup-mask .popup.detect-size .content .top .block-title {
    font-weight: 600;
    font-size: 16px;
    line-height: 18px;
    color: #2C180B;
    width: 40%;
}
.popup-mask .popup.detect-size .content .top .reset {
    position: relative;
    display: block;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 16px;
    line-height: 18px;
    height: 18px;
    color: #71553A;
    border-bottom: 1px dotted #B09784;
}

.popup-mask .popup.detect-size .p-row .p-column {

}
.popup-mask .popup.detect-size .p-row .p-column.or {
    text-align: center;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-transform: uppercase;
    color: #B09784;
}
.popup-mask .popup.detect-size .p-row .f-label {

}
.popup-mask .popup.detect-size .p-row .g-select {
    min-width: 210px;
    max-width: 220px;
}
.popup-mask .popup.detect-size .p-row:last-child {
    margin-bottom: 10px;
}
.popup-mask .popup.detect-size .result {
    border-top: 1px solid #F4EFEB;
    padding: 20px 80px;
}
.popup-mask .popup.detect-size .result .result-title {
    font-weight: 600;
    font-size: 24px;
    line-height: 24px;
    color: #2C180B;
    margin-bottom: 15px;
}
.popup-mask .popup.detect-size .result .p-row {
    align-items: stretch;
}
.popup-mask .popup.detect-size .result .p-row .p-column {
    width: 25%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: space-around;
}
.popup-mask .popup.detect-size .result .p-row .p-column .name {
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    color: #2C180B;
    margin-bottom: 10px;
}
.popup-mask .popup.detect-size .result .p-row .p-column .value {
    font-weight: 600;
    font-size: 24px;
    line-height: 24px;
    color: #B09784;
    margin-top: auto;
}
.popup-mask .popup.detect-size .result .p-row .p-column .value.is-set {
    color: #2C180B;
}
.popup-mask .popup.detect-size .result .notice {
    margin-bottom: 30px;
}

.popup-mask .popup.in-shops {

}
.popup-mask .popup.in-shops .content .text {
    margin-bottom: 20px;
}
.popup-mask .popup.in-shops .content .p-row {
    margin-bottom: 0;
}
.popup-mask .popup.in-shops .content .p-row .p-column {
    width: 30%;
}
.popup-mask .popup.in-shops .content .p-row .p-column.city {
    width: 40%;
}
.popup-mask .popup.in-shops .content .p-row .p-column .location-ext {
    font-weight: 500;
    font-size: 16px;
    margin-left: 20px;
}
.popup-mask .popup.in-shops .shops {
    padding: 0 0 20px 0;
}
.popup-mask .popup.in-shops .shops .p-row {
    margin: 0;
    padding: 20px 65px;
    border-bottom: 1px solid #F4EFEB;
    align-items: flex-start;
}
.popup-mask .popup.in-shops .shops .p-row:last-child {
    border-bottom: 0;
}
.popup-mask .popup.in-shops .shops .p-row.head {
    padding-top: 10px;
    padding-bottom: 10px;
}
.popup-mask .popup.in-shops .shops .p-row .p-column {
    width: 30%;
    padding-left: 15px;
    padding-right: 15px;
}
.popup-mask .popup.in-shops .shops .p-row .p-column.address {
    width: 50%;
}
.popup-mask .popup.in-shops .shops .p-row .p-column.shop-name {
    width: 20%;
}
.popup-mask .popup.in-shops .shops .p-row .p-column p {
    margin: 0 0 10px 0;
    line-height: 150%;
}
.popup-mask .popup.in-shops .shops .p-row .p-column p:last-child {
    margin-bottom: 0;
}
.popup-mask .popup.in-shops .shops .p-row .p-column .availability {
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    color: #533A25;
    margin-bottom: 10px;
}
.popup-mask .popup.in-shops .shops .p-row .p-column .availability.false {
    color: #B09784;
}
.popup-mask .popup.in-shops .shops .p-row .p-column .gw-button.reserve {
    font-size: 12px;
}
.popup-mask .popup.in-shops .map {
    height: 300px;
    margin-bottom: 10px;
    overflow: hidden;
    display: none;
}
.popup-mask .popup.in-shops #bookingMap {
    height: 300px;
}

.popup-mask .popup.reserve {

}
.popup-mask .popup.reserve .content {

}
.popup-mask .popup.reserve .content .text {

}
.popup-mask .popup.reserve .content .p-row {

}
.popup-mask .popup.reserve .content .p-row.contacts {
    margin-bottom: 0;
}
.popup-mask .popup.reserve .content .p-row .p-column {
    width: 30%;
}
.popup-mask .popup.reserve .content .p-row .p-column.user-name {
    width: 40%;
}
.popup-mask .popup.reserve .order .p-row {
    padding: 10px 70px;
    margin: 0;
    position: relative;
}
.popup-mask .popup.reserve .order .p-row .p-column {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #2C180B;
}
.popup-mask .popup.reserve .order .p-row.head {
    border-bottom: 1px solid #F4EFEB;
    align-items: flex-start;
    margin-bottom: 10px;
}
.popup-mask .popup.reserve .order .p-row.head .p-column {
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    color: #B09784;
}
.popup-mask .popup.reserve .order .p-row.head .p-column.product-name {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #2C180B;
}
.popup-mask .popup.reserve .order .p-row .p-column.product-name {
    display: flex;
    align-items: center;
    width: 40%;
}
.popup-mask .popup.reserve .order .p-row .p-column.product-size {
    width: 20%;
}
.popup-mask .popup.reserve .order .p-row .p-column.product-price {
    width: 20%;
}
.popup-mask .popup.reserve .order .p-row .p-column.product-total {
    width: 20%;
    text-align: right;
}
.popup-mask .popup.reserve .order .p-row .p-column.product-name .image {
    margin-right: 20px;
}
.popup-mask .popup.reserve .order .p-row .p-column.product-name .image img {
    max-width: 61px !important;
}
.popup-mask .popup.reserve .order .p-row .p-column {

}
.popup-mask .popup.reserve .order .p-row .p-column .mob-label {
    display: none;
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    color: #B09784;
}
.popup-mask .popup.reserve .order .p-row .p-column.product-price .old-price {
    text-decoration-line: line-through;
    color: #84807D;
}
.popup-mask .popup.reserve .order .p-row .p-column.product-price .current-price {
    color: #2C180B;
}
.popup-mask .popup.reserve .order .p-row .p-column.product-price .discount {
    color: #E13A16;
}

.popup-mask .popup.reserve .content .p-row.promo-code .p-column {
    width: 30%;
}
.popup-mask .popup.reserve .content .p-row.promo-code .p-column.field {
    width: 70%;
}
.popup-mask .popup.reserve .content .p-row.promo-code .p-column .gw-button {
    width: 100%;
}
.popup-mask .popup.reserve .content .p-row.make-order {
    margin-bottom: 30px;
}
.popup-mask .popup.reserve .content .p-row.make-order .p-column {
    text-align: center;
}
.popup-mask .popup.reserve .content .p-row.make-order .gf-button {
    width: 304px;
}
.popup-mask .popup.reserve .content .p-row.promo-code {
    align-items: start;
}
.popup-mask .popup.reserve .content .p-row.promo-code .error {
    margin-top: 5px;
}
.popup-mask .popup.reserve .content .coupon-data {
    margin-bottom: 20px;
    text-align: right;
}
.popup-mask .popup.reserve .content .coupon-data span {
    color: #E13A16;
    font-weight: 500;
}
.popup-mask .popup.reserve .content .coupon-data .discount {

}
.popup-mask .popup.reserve .content .coupon-data .total {

}

.popup-mask .popup.reserve .notice {
    margin-bottom: 30px;
}

.basket-tov .info img {
    float: left;
    margin: 0 10px 10px 0;
}

@media screen and (max-width: 1919px) {
    .product .product-info .accordion {
        padding-left: 0;
        padding-right: 0;
    }
    .product .product-info .description .text br {
        display: none;
    }

    .product .recommended {
        margin: 0 30px;
    }
    .product .reviews {
        margin-left: 30px;
        margin-right: 30px;
    }
}

@media screen and (max-width: 1439px) {
    .product .product-wrap {
        position: relative;
    }
    .product .product-wrap.bottom {
        display: block;
    }
    .product .product-wrap.bottom .right-fix {
        display: none;
    }
    .product .product-info {
        padding: 0 30px 0 30px;
    }

    .product-slider .owl-carousel .owl-nav .owl-prev {
        left: 100px;
    }
    .product-slider .owl-carousel .owl-nav .owl-next {
        right: 100px;
    }
    .product .product-images .product-slider .owl-carousel .owl-nav .owl-prev {
        left: 80px;
    }
    .product .product-images .product-slider .owl-carousel .owl-nav .owl-next {
        right: 80px;
    }
}

@media screen and (max-width: 1365px) {
    .product .product-images {
        max-width: calc(100% - 520px);
    }
    .product .catalog-nav {
        width: 520px;
        padding-left: 14px;
        padding-right: 14px;
    }
    .product .right-fix {
        width: 520px;
        flex: 0 0 520px;
    }
    .product .product-data {
        padding-left: 14px;
        padding-right: 14px;
    }
    .product .product-data .title h1 {
        font-size: 20px;
        line-height: 130%;
    }
    .product .product-data .title .actions {
        right: 0;
    }
    .product .product-data .title .actions .action {
        margin-left: 15px;
        transform: scale(0.8);
    }

    .product .product-data .price {
        margin-bottom: 15px;
    }

    .product .product-data .sizes-block {
        display: block;
        margin-bottom: 30px;
    }
    .product .product-data .sizes-block .sizes-title {
        margin-bottom: 10px;
    }
    .product .product-data .g-sizes {
        margin-bottom: 20px;
    }
    .product .product-data .g-sizes .items {
        margin-bottom: 5px;
        flex-wrap: wrap;
    }
    .product .product-data .g-sizes .sizes-text {
        position: relative;
    }

    .product .product-data .promo-code {
        display: block;
    }
    .product .product-data .promo-code .text {
        margin-bottom: 15px;
    }
    .product .product-data .promo-code .text br {
        display: none;
    }
    .product .product-data .promo-code .copy {
        width: 100%;
    }

    .product .product-data .info-buttons {
        margin-left: -14px;
        margin-right: -14px;
    }
    .product.main.fixed-buy-step-1 .buy-buttons,
    .product.main.fixed-buy-step-1 .product-not-available,
    .product.main.fixed-buy-step-2 .buy-buttons {
        width: 520px;
    }
    .product.main.fixed-buy-step-2 .buy-buttons {
        right: 14px;
    }

    .product .costume .costume-item .costume-data {
        display: block;
    }
    .product .costume .costume-item .costume-info {
        display: block;
    }
    .product .costume .costume-item .costume-info .name {
        display: block;
        margin-bottom: 10px;
        height: auto;
    }
    .product .costume .costume-item .costume-data .g-sizes {
        margin-right: 0;
        margin-bottom: 10px;
        display: block;
    }
    .product .costume .costume-item .costume-buy .price {
        height: auto;
        margin-right: 30px;
    }
    .product .costume .costume-item .costume-buy {
        display: flex;
    }
    .product .costume .costume-item .costume-buy .add-to-basket {
        width: 140px;
    }

    .product .delivery-items .item .top {
        display: block;
    }
    .product .delivery-items .item .top .separator {
        display: none;
    }

    .product .product-data .product-not-available
    {
        margin: 0 -14px;
    }
    .product .product-data .buy-buttons .buy-button .desktop-v {
        display: none;
    }
    .product .product-data .buy-buttons .buy-button .mobile-v {
        display: inline;
    }
}

@media screen and (max-width: 1023px) {

    .product {
        padding-bottom: 40px;
    }

    .product .catalog-nav {
        position: relative;
        right: auto;
        width: auto;
        margin-bottom: 10px;
    }

    .product .right-fix {
        width: 360px;
        flex: 0 0 360px;
    }

    .product .product-images {
        overflow: hidden;
        max-width: 100%;
    }
    .product .product-images .preview-images {
        display: none;
    }
    .product .product-images .images-wrap {
        display: none;
    }
    .product .product-images .product-slider {
        position: relative;
        z-index: 1;
        opacity: 1;
        visibility: visible;
    }
    .product .product-images .product-slider .g-close {
        display: none;
    }
    .product .product-images .product-slider .owl-carousel {
        padding: 0;
    }
    .product .product-images .product-slider .owl-carousel img {
        min-width: 100%;
        min-height: 100%;
    }
    .product .product-images .product-slider .owl-carousel .owl-nav {
        display: none;
    }
    .product .product-images .product-slider .owl-carousel .owl-dots {
        display: flex;
    }

    .product .product-images .p-labels {
        left: 10px;
        right: auto;
        align-items: start;
    }

    .product .product-data {
        margin-top: 0;
    }

    .product .costume .costume-item .costume-preview {
        margin-right: 14px;
    }
    .product .costume .costume-item .costume-data .g-sizes .size {
        margin-bottom: 6px;
    }

    .product .costume .costume-item .costume-buy {
        display: block;
    }
    .product .costume .costume-item .costume-buy .price {
        display: flex;
        align-items: center;
        margin-right: 0;
        margin-bottom: 10px;
    }
    .product .costume .costume-item .costume-buy .add-to-basket {
        width: auto;
    }

    .product .product-data .info-buttons a {
        margin: 0 6px;
        font-size: 10px;
    }
    .product.main.fixed-buy-step-1 .buy-buttons,
    .product.main.fixed-buy-step-2 .buy-buttons {
        width: 360px;
        max-width: 100%;
    }

    .product .delivery-items .item .top {
        font-size: 14px;
    }

    .product .product-data .params {
        font-size: 12px;
    }

    .product .product-data .buy-buttons .buy-button {
        height: 40px;
        line-height: 40px;
        font-size: 12px;
    }
    .product .product-data .buy-buttons .buy-button.add-to-basket {
        width: 40%;
    }
    .product .product-data .buy-buttons .buy-button.reserve {
        width: 60%;
    }

    .product .product-info {
        padding: 0 14px;
    }

    .product .recommended {
        margin: 0 14px;
    }
    .product .recommended .title > h2 {
        font-size: 26px;
    }

    .product .reviews {
        margin: 0 14px;
    }

    .popup-mask .popup .title {
        padding-left: 14px;
        padding-right: 14px;
    }
    .popup-mask .popup {
        width: 100%;
        max-width: 100%;
        min-width: auto;
    }
    .popup-mask .popup .content {
        padding-left: 14px;
        padding-right: 14px;
    }
    .popup-mask .popup.detect-size .result {
        padding-left: 14px;
        padding-right: 14px;
    }
    .popup-mask .popup .g-select {
        max-width: 100%;
    }
    .popup-mask .popup.detect-size .p-row .g-select {
        max-width: 100%;
        min-width: 100%;
    }
    .popup-mask .popup.detect-size .p-row .p-column.or {
        max-width: 65px;
    }

    .popup-mask .popup.in-shops .shops .p-row {
        padding-left: 0;
        padding-right: 0;
    }
    .popup-mask .popup.in-shops .p-row .p-column .location-ext {
        margin-left: 0;
    }

    .popup-mask .popup.reserve .order .p-row {
        padding-left: 5px;
        padding-right: 5px;
    }
    .popup-mask .popup.reserve .notice br {
        display: none;
    }

    .social_list_footer {
        width: auto;
    }
}

@media screen and (max-width: 767px) {
    .product .right-fix {
        width: 100%;
    }
    .product .product-wrap {
        display: block;
    }
    .product .product-images {
        margin-bottom: 30px;
    }
    .product .product-data .info-buttons {
        display: none;
    }

    .product .product-data .info-buttons--mobile {
        display: block;
    }

    .product .product-data .info-buttons--mobile a {
        font-size: 12px;
    }

    .product .product-data .params {
        display: none;
    }

    .product .product-data .tabs-contents {
        display: none;
    }

    .product .product-info .banner {
        margin-bottom: 40px;
    }
    .product .product-info .banner .desktop {
        display: none;
    }
    .product .product-info .banner .mobile {
        display: block;
    }
    .product .product-info .banner img {
        height: 100%;
    }

    .product .product-info .accordion .accordion-item .item-title {
        font-size: 20px;
    }

    .product .product-info .characteristics .item {
        font-size: 14px;
        line-height: 14px;
    }
    .product .product-info .characteristics .item .item-name {
        width: 50%;
        height: 14px;
    }
    .product .product-info .characteristics .item .item-value {
        width: 50%;
    }

    .product .product-info .description {
        font-size: 14px;
    }

    .product .product-info .delivery-info p {
        font-size: 14px;
        line-height: 24px;
    }

    .product .recommended .products-slider .product-slide {

    }
    .product .recommended .products-slider .product-slide .name {
        font-size: 14px;
        margin-bottom: 0;
    }
    .product .recommended .products-slider .product-slide {
        margin: -10px -10px -110px -10px;
        padding: 10px;
    }

    .product .reviews {
        margin-right: 0;
    }
    .product .reviews {
        margin-right: 0;
    }
    .product .reviews .title {
        font-size: 26px;
    }
    .product .reviews .review {
        max-width: 320px;
        min-width: 320px;
    }
    .product .reviews .reviews-items .review .top {
        display: block;
    }
    .product .reviews .reviews-items .review .top .date {
        font-size: 12px;
    }
    .product .reviews .reviews-items .review .score {
        margin-bottom: 5px;
    }
    .product .reviews .reviews-items .review .text {
        font-size: 12px;
    }

    .product .reviews .owl-nav {
        visibility: hidden;
    }

    .popup-mask .popup.dialog {
        width: 100%;
        max-width: 100%;
        min-width: auto;
    }

    .popup-mask .popup .content .text br {
        display: none;
    }

    .popup-mask .popup.detect-size .p-row {
        flex-wrap: wrap;
        margin-bottom: 0;
    }
    .popup-mask .popup.detect-size .p-row .p-column {
        width: 50%;
        margin-bottom: 20px;
    }
    .popup-mask .popup.detect-size .p-row .p-column.or {
        width: 50%;
        max-width: 50%;
    }
    .popup-mask .popup.detect-size .result .p-row .p-column {
        width: 50%;
        align-content: normal;
    }

    .popup-mask .popup.in-shops .content .p-row {
        flex-wrap: wrap;
        justify-content: flex-end;
        margin-bottom: 0;
    }
    .popup-mask .popup.in-shops .content .p-row .p-column {
        width: 100%;
        flex: none;
        margin-bottom: 20px;
    }
    .popup-mask .popup.in-shops .content .p-row .p-column.choice-shop {
        text-align: center;
        margin-bottom: 0;
    }
    .popup-mask .popup.in-shops .content .p-row .p-column .location-ext {
        margin-left: 0;
    }
    .popup-mask .popup.in-shops .content .p-row .p-column.choice-shop .column-label {
        display: none;
    }
    .popup-mask .popup.in-shops .content .p-row .p-column.city {
        width: 100%;
    }
    .popup-mask .popup.in-shops .shops .p-row.head {
        display: none;
    }
    .popup-mask .popup.in-shops .shops .p-row {
        flex-wrap: wrap;
    }
    .popup-mask .popup.in-shops .shops .p-row .p-column {
        width: 100%;
        margin-bottom: 10px;
    }
    .popup-mask .popup.in-shops .shops .p-row .p-column.shop-name {
        width: 100%;
        font-weight: 600;
    }
    .popup-mask .popup.in-shops .shops .p-row .p-column.address {
        width: 100%;
    }
    .popup-mask .popup.in-shops .shops .p-row .p-column p {
        margin-bottom: 5px;
    }

    .popup-mask .popup.reserve .order .p-row.head {
        padding-left: 5px;
        padding-right: 5px;
    }
    .popup-mask .popup.reserve .order .p-row.head .p-column {
        display: none;
    }
    .popup-mask .popup.reserve .order .p-row.head .p-column.product-name {
        display: block;
    }

    .popup-mask .popup.reserve .order .p-row {
        display: block;
        padding-left: 81px;
        padding-top: 0;
    }
    .popup-mask .popup.reserve .order .p-row .image {
        position: absolute;
        left: 15px;
        top: 0;
    }
    .popup-mask .popup.reserve .order .p-row .p-column.product-name,
    .popup-mask .popup.reserve .order .p-row .p-column.product-price,
    .popup-mask .popup.reserve .order .p-row .p-column.product-size,
    .popup-mask .popup.reserve .order .p-row .p-column.product-total {
        width: 100%;
        text-align: left;
        font-size: 14px;
    }
    .popup-mask .popup.reserve .order .p-row .p-column .mob-label {
        display: inline-block;
        margin-right: 15px;
    }

    .popup-mask .popup.reserve .content .p-row {
        flex-wrap: wrap;
    }
    .popup-mask .popup.reserve .content .p-row.promo-code {
        flex-wrap: nowrap;
    }
    .popup-mask .popup.reserve .content .p-row .p-column {
        width: 100%;
        margin-bottom: 10px;
    }
    .popup-mask .popup.reserve .content .p-row .p-column:last-child {
        margin-bottom: 0;
    }
    .popup-mask .popup.reserve .content .p-row.promo-code .p-column:last-child {
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 559px) {
    .popup-mask .popup.reserve .content .p-row.promo-code .p-column {
        width: 50%;
    }
    .popup-mask .popup.reserve .content .p-row.promo-code .p-column.field {
        width: 50%;
    }
}

@media screen and (max-width: 459px) {

    .popup-mask .popup.detect-size .p-row .p-column {
        width: 100%;
    }
    .popup-mask .popup.detect-size .p-row .p-column.or {
        max-width: 100%;
    }
    .popup-mask .popup.detect-size .result .p-row .p-column {
        width: 100%;
    }

    .popup-mask .popup.reserve .content .p-row.promo-code {
        flex-wrap: wrap;
    }
    .popup-mask .popup.reserve .content .p-row.promo-code .p-column {
        width: 100%;
    }
    .popup-mask .popup.reserve .content .p-row.promo-code .p-column.field {
        width: 100%;
    }

}

@media screen and (max-width: 419px) {
    .product .recommended .products-slider .product-slide {

    }
    .product .reviews .review {
        max-width: 240px;
        min-width: 240px;
    }
}

@media screen and (max-width: 900px) {
    .popup-mask .popup.new-review {
        width: auto;
    }
}

@media screen and (max-width: 510px) {
    .popup-mask .popup .content .r-row.in-two.row-sizes {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .review-popup-wrapper {
        width: 100%;
    }
}

@media screen and (max-width: 360px) {
    .popup-mask .review-popup-wrapper .popup .content .submit {
        padding: 0 40px;
    }
}

.size-popup {
    background: #FFFFFF;
    box-shadow: 0 0 26px rgba(44, 24, 11, 0.1);
    border-radius: 5px;
    padding: 15px 14px;
    width: 305px;
    position: absolute;
    bottom: calc(100% + 8px);
    left: calc(-167px + 50%);
    display: none;
    z-index: 30;
}

.sizes-block .size:hover .size-popup {
    display: block;
}

.size-popup__text {
    font: normal 400 12px/21px 'Montserrat';
    color: #2C180B;
}

.size-popup__row {
    display: flex;
}

.size-popup__row:not(:last-child) {
    margin-bottom: 3px;
}

.size-popup__name {
    font: normal 400 12px/21px 'Montserrat';
    color: #2C180B;
    flex-shrink: 0;
}

.size-popup__dots {
    border-bottom: 1px dashed #B09784;
    width: 100%;
    margin-left: 5px;
    margin-right: 4px;
    margin-bottom: 5px;
}

.size-popup__value {
    font: normal 400 12px/21px 'Montserrat';
    flex-shrink: 0;
}

.product-not-available {
    background-color: #FCF8F6;
    margin: 0 -20px;
    padding: 32px 27px 34px;
    display: flex;
    align-items: center;
}

.product-not-available__text {
    font: normal 600 16px/24px 'Montserrat';
}

.product-promocode {
    padding: 20px;
    background-color: #FCF8F6;
    font: 600 16px/24px 'Montserrat';
    margin-bottom: 30px;
}

.product-promocode .product-promocode__coupon {
    font-weight: 700;
    color: #71553A;
    cursor: pointer;
}

.product-promocode .product-promocode__coupon:hover {
    text-decoration: underline;
}

.product-promocode .product-promocode__coupon.applied,
.product-promocode .product-promocode__coupon.disabled,
.product-promocode .product-promocode__coupon.applied:hover,
.product-promocode .product-promocode__coupon.disabled:hover {
    cursor: text;
    pointer-events: none;
    text-decoration: none;
}

.product-promocode .product-promocode__discount {
    font-weight: 700;
    color: #E13A16;
}

.applyCoupon-popup__wrapper {
    padding: 52px 83px;
    position: relative;
}

.applyCoupon-popup__text {
    font: 600 24px/26px 'Montserrat';
    color: #2C180B;
    text-align: center;
}

.applyCoupon-popup__close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 22px;
    height: 22px;
    cursor: pointer;
}

.applyCoupon-popup__close:before,
.applyCoupon-popup__close:after {
    position: absolute;
    left: 10px;
    top: -3px;
    content: ' ';
    height: 29px;
    width: 2px;
    background-color: #71553A;
}

.applyCoupon-popup__close:before {
    transform: rotate(45deg);
}

.applyCoupon-popup__close:after {
    transform: rotate(-45deg);
}

@media (max-width: 768px) {
    .product-not-available {
        padding: 30px 19px 26px;
    }
}

@media screen and (max-width: 1023px) {
    .product-promocode {
        padding: 20px 10px;
        font: 400 16px/24px 'Montserrat';
    }

    .product-promocode .product-promocode__coupon,
    .product-promocode .product-promocode__discount {
        font-weight: 600;
    }
}

.only-online-element {
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding-left: 39px;
    background-image: url("/local/images/box.svg");
    background-position: left center;
    background-repeat: no-repeat;
    margin-left: 20px;
}

.only-online-element__header {
    color: #71553A;
    font: normal 500 16px 'Montserrat';
}

.only-online-element__description {
    color: #71553A;
    font: normal 400 12px 'Montserrat';
}

.only-online-element--mobile {
    display: none;
    margin: 20px 0;
    min-height: 32px;
}

@media (max-width: 768px)
{
    .only-online-element,
    .only-online-element__description {
        display: none;
    }

    .only-online-element--mobile {
        display: flex;
    }

    .product .product-data .buy-buttons .buy-button.add-to-basket.buy-button--only-online {
        width: 100%;
    }
}

@media (min-width: 1911px) {
    .product .product-images .main-image {
        margin-left: 30px;
    }
}

@media (min-width: 1920px) {
    .product.main.fixed-buy-step-1 .product-data  {
        position: sticky;
        max-height: 0px !important;
        min-height: 0px !important;
    }
}
