.social-button {
    transition: all 0.4s;
    position: fixed;
    right: 25px;
    bottom: 60px;
    width: 60px;
    height: 60px;
    text-align: center;
    line-height: 60px;
    border-radius: 50%;
    background-image: radial-gradient(circle at 50% 50%, #4e4f3f 0, #44463a 16.67%, #393c35 33.33%, #2f302e 50%, #262527 66.67%, #1f1a20 83.33%, #1a111a 100%);
    color: #fff;
    font-size: 24px;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26), 0 2px 10px 0 rgba(0, 0, 0, 0.22);
    cursor: pointer;
    transition-delay: 1s;
    z-index: 1000;
}

.social-button-open {
    transition-delay: 0s;
    bottom: 85px;
    color: black;
    background-color: #ffffff;
    box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.28), 0 4px 15px 0 rgba(0, 0, 0, 0.25);
}

.social-button .social-point {
    transition: all 0.4s;
    opacity: 0;
    width: 0px;
    height: 0px;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26), 0 2px 10px 0 rgba(0, 0, 0, 0.22);
    cursor: pointer;
    visibility: hidden;
}

.social-button .social-point:hover {
    box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.28), 0 4px 15px 0 rgba(0, 0, 0, 0.25);
}

.social-button .social-point:nth-child(2) {
    transition-delay: 0.3s;
    position: absolute;
    right: 50px;
    bottom: 50px;
    background-color: #3c4152;
}

.social-button .social-point:nth-child(3) {
    transition-delay: 0.4s;
    position: absolute;
    right: 50px;
    bottom: 50px;
    background-color: #DC4E41;
}

.social-button .social-point:nth-child(4) {
    transition-delay: 0.5s;
    position: absolute;
    right: 50px;
    bottom: 50px;
    background-color: #1da1f2;
}

.social-button .social-point:nth-child(5) {
    transition-delay: 0.6s;
    position: absolute;
    right: 50px;
    bottom: 50px;
    background-color: #49a942;
}

.social-button .social-point:nth-child(6) {
    transition-delay: 0.7s;
    position: absolute;
    right: 50px;
    bottom: 50px;
    background-color: #3b5998;
}

.social-button-open .social-point-open {
    opacity: 1;
    width: 50px;
    height: 50px;
    visibility: visible;
}

.social-button-open .social-point-open:nth-child(2) {
    right: 5px;
    bottom: 80px;
}

.social-button-open .social-point-open:nth-child(2):hover {
    transition-delay: 0s;
    background-color: #1EA551;
}

.social-button-open .social-point-open:nth-child(3) {
    right: 65px;
    bottom: 65px;
}

.social-button-open .social-point-open:nth-child(3):hover {
    transition-delay: 0s;
    background-color: #B14237;
}

.social-button-open .social-point-open:nth-child(4) {
    right: 80px;
    bottom: 5px;
}

.social-button-open .social-point-open:nth-child(4):hover {
    transition-delay: 0s;
    background-color: #1980BF;
}

.social-button-open .social-point-open:nth-child(5) {
    right: 65px;
    bottom: -65px;
}

.social-button-open .social-point-open:nth-child(5):hover {
    transition-delay: 0s;
    background-color: #3D8937;
}

.social-button-open .social-point-open:nth-child(6) {
    right: 5px;
    bottom: -80px;
}

.social-button-open .social-point-open:nth-child(6):hover {
    transition-delay: 0s;
    background-color: #2F4575;
}

.social-point i {
    position: relative;
    top: 3px;
}

/* Кнопка для контактів */


/* Голосування */

.vote_section {
    padding: 30px;
}

.vote_section .vote_block {
    padding: 40px;
    background: #fff;
    -webkit-box-shadow: 0 0 27px rgba(2, 2, 2, 0.1);
    -moz-box-shadow: 0 0 27px rgba(2, 2, 2, 0.1);
    box-shadow: 0 0 27px rgba(2, 2, 2, 0.1);
}

.vote_section .questions_list {
    margin: 0 0 22px;
}

.vote_section .question_item {
    margin: 0 0 20px;
    height: 50px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
    background: #f0f0f0;
    -webkit-box-shadow: 0 0 0 1px #dedede inset;
    -moz-box-shadow: 0 0 0 1px #dedede inset;
    box-shadow: 0 0 0 1px #dedede inset;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.vote_section .question_item:last-child {
    margin: 0;
}

.vote_section .question_item .line {
    display: none;
    width: 0%;
    height: 50px;
    position: absolute;
    top: 0;
    left: 0;
}

.vote_section .questions_list.active .question_item .line {
    display: block;
}

.vote_section .question_item:nth-child(1) .line {
    background: #00BF63;
}

.vote_section .question_item:nth-child(2) .line {
    background: #e43315;
}

.vote_section .question_item:nth-child(3) .line {
    background: #f5ca16;
}

.vote_section .question_item .question_text {
    float: left;
    padding: 0 0 0 20px;
    line-height: 50px;
    position: relative;
}

.vote_section .question_item .question_text:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: inline-block;
    vertical-align: middle;
    content: '';
    margin: -2px 10px 0 -5px;
    width: 18px;
    height: 18px;
    border: 4px solid #fff;
    -webkit-border-radius: 9px;
    -moz-border-radius: 9px;
    border-radius: 9px;
}

.vote_section .questions_list.active .question_item .question_text:before {
    display: none;
}

.vote_section .question_item:nth-child(1) .question_text:before {
    background: #00BF63;
}

.vote_section .question_item:nth-child(2) .question_text:before {
    background: #e43315;
}

.vote_section .question_item:nth-child(3) .question_text:before {
    background: #f5ca16;
}

.vote_section .question_item .percents {
    display: none;
    float: right;
    padding: 0 20px 0 0;
    font-weight: 700;
    line-height: 50px;
    text-align: right;
    position: relative;
}

.vote_section .questions_list.active .question_item .percents {
    display: block;
}

.vote_section .voice_count {
    text-align: center;
}

.vote_section .voice_count b {
    margin: 0 0 0 5px;
    padding: 3px 5px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    background: #F77A1E;
    color: #fff;
}

/* Голосування */


/* Моб меню */

.modal-body {
    background-color: #7F1B15;
    /*background-image: radial-gradient(circle at 50% 50%, rgba(127, 27, 21, 0.8) 0, #7F1B15 16.67%, #7F1B15 33.33%, #7F1B15 50%, #7F1B15 66.67%, #7F1B15 83.33%, #7F1B15 100%);*/
    z-index: 90;
    padding: 100px 0 0 0;
    display: inline-block;
    max-width: 480px;
    width: 100%;
    -webkit-transform: skewX(-5deg) translateX(200%);
    -ms-transform: skewX(-5deg) translateX(200%);
    transform: skewX(-5deg) translateX(200%);
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    margin: 0 auto;
    opacity: 0;
    will-change: transform, opacity;
    -webkit-transition: opacity 0.1s, -webkit-transform 0.3s;
    transition: opacity 0.1s, -webkit-transform 0.3s;
    -o-transition: transform 0.3s, opacity 0.1s;
    transition: transform 0.3s, opacity 0.1s;
    transition: transform 0.3s, opacity 0.1s, -webkit-transform 0.3s;
    height: 100vh;
    overflow: auto;
}

.modal-block {
    padding: 0;
}

.modal-block li {
    text-align: right;
    padding: 0 10px;
    border-bottom: 1px solid;
    display: block;
    height: 47.5px;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-content: center;
    align-items: center;
}

.modal-block li a {
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    color: #ffffff;
    display: block;
    width: 100%;
    height: 47.5px;
    line-height: 47.5px;
}

.modal-body.show-menu {
    opacity: 1 !important;
    transform: skewX(0deg) translate(0, 0) !important;
    -webkit-transform: skewX(0deg) translate(0, 0) !important;
    -ms-transform: skewX(0deg) translate(0, 0) !important;
}



header {
    width: 100%;
    height: 80px;
    transform: translate(0, -100%);
    transition: 0.5s;
    padding: 0 20px;
    display: flex;
    align-content: center;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 481px;
    margin: 0 auto;
}

header.active {
    display: flex;
    justify-content: center;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    transform: translate(0, 0);
    transition: 0.5s;
    z-index: 100;
    box-shadow: 0px 4px 6px rgb(0 0 0 / 20%);
    background-color: #7F1B15;
    /*background-image: radial-gradient(circle at 50% 50%, rgb(127, 27, 21) 0, rgb(127, 27, 21) 16.67%, #7F1B15 33.33%, rgba(127, 27, 21, 0.8) 50%, #7F1B15 66.67%, #7F1B15 83.33%, #7F1B15 100%);*/
}

header a.logo svg {
    width: 100px;
    margin: 0 0;

}

header a.logo {
    width: 200px;
    /*height: 60px;*/
    transition: 0.6s;
    /*position: absolute;*/
    /*left: 190px;*/
}

header a.logo:hover {
    opacity: 0.7;
}

svg.nav-button {
    width: 45px;
    transition: 0.6s;
    cursor: pointer;
    position: absolute;
    left: 410px;
}

svg.nav-button:hover {
    opacity: 0.7;
}

.show-li:nth-child(1) {
    -webkit-transition-delay: 0.1s !important;
    -o-transition-delay: 0.1s !important;
    transition-delay: 0.1s !important;
}

.show-li:nth-child(2) {
    -webkit-transition-delay: 0.2s !important;
    -o-transition-delay: 0.2s !important;
    transition-delay: 0.2s !important;
}

.show-li:nth-child(3) {
    -webkit-transition-delay: 0.3s !important;
    -o-transition-delay: 0.3s !important;
    transition-delay: 0.3s !important;
}

.show-li:nth-child(4) {
    -webkit-transition-delay: 0.4s !important;
    -o-transition-delay: 0.4s !important;
    transition-delay: 0.4s !important;
}

.show-li:nth-child(5) {
    -webkit-transition-delay: 0.5s !important;
    -o-transition-delay: 0.5s !important;
    transition-delay: 0.5s !important;
}

.show-li:nth-child(6) {
    -webkit-transition-delay: 0.6s !important;
    -o-transition-delay: 0.6s !important;
    transition-delay: 0.6s !important;
}

.modal-block li svg {
    width: 36px;
    fill: #BFBE9F;
}

section.sect99 {
    padding: 40px 0 0 0;
}

.offer_section-top {
    border-top: 80px solid #4f41a2;
}

.clearfix:after {
    content: "";
    display: block;
    clear: both;
}

img {
    max-width: 100%;
    height: auto;
}

b {
    font-weight: 700;
}

/* Моб меню */

/* Слайдер */

.gallery {
    width: 100%;
    max-width: 620px;
    margin: 0px auto;
}

.gallery-slider {
    width: 100%;
    height: auto;
    margin: 0 0 10px 0;
}

/*.gallery-slider .swiper-slide {*/
/*    width: auto;*/
/*    height: 478px;*/
/*}*/

.gallery-slider .swiper-slide img {
    display: block;
    width: auto;
    height: 100%;
    margin: 0 auto;
}

.gallery-thumbs {
    width: 100%;
    padding: 0;
    overflow: hidden;
}

.gallery-thumbs .swiper-slide {
    width: 150px;
    height: 150px;
    text-align: center;
    overflow: hidden;
    opacity: 0.5;
}

.gallery-thumbs .swiper-slide-active {
    opacity: 1;
}

.gallery-thumbs .swiper-slide img {
    width: auto;
    height: 100%;
}

.swiper-button-prev, .swiper-button-next {
    color: #000;
}

.price {
    z-index: 10;
    margin: -46px auto 10px;
}


.offer .bullet .pic {
    z-index: 1;
}

.offer .main-title {
    text-decoration: none;
    display: block;
}


/* Слайдер */


/*   Стиль характеристики   */

.char-list li {
    padding: 8px 30px;
    color: #fff;
}

.char-list li:nth-child(even) {
    background-image: radial-gradient(circle at 50% 50%, #4e4f3f 0, #44463a 16.67%, #393c35 33.33%, #2f302e 50%, #262527 66.67%, #1f1a20 83.33%, #1a111a 100%);
}

.char-list li b {
    display: block;
    float: left;
    width: 150px;
}

.char-list li span {
    display: block;
    margin-left: 167px;
}

/*   Стиль характеристики   */

/*   Головні стилі  */

.slick-dots {
    height: 23px;
    text-align: center;
    margin-top: 25px;
}

.slick-dots:after {
    clear: both;
    content: "";
    display: block;
    height: 0;
    width: 0;
    visibility: hidden;
}

.slick-dots li {
    display: inline-block;
    vertical-align: top;
    padding: 0 6px;
    overflow: hidden;
}

/*.offer {*/
/*    padding: 0;*/
/*    background-image: radial-gradient(circle at 50% 50%, #4e4f3f 0, #44463a 16.67%, #393c35 33.33%, #2f302e 50%, #262527 66.67%, #1f1a20 83.33%, #1a111a 100%);*/
/*}*/

.offer .box {
    position: relative;
    background-image: radial-gradient(circle at 50% 50%, #4e4f3f 0, #44463a 16.67%, #393c35 33.33%, #2f302e 50%, #262527 66.67%, #1f1a20 83.33%, #1a111a 100%);
    height: 600px;
}

.offer .main-title {
    font-family: 'Mateur', sans-serif;
    font-size: 44px;
    font-weight: 700;
    line-height: 50px;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    padding: 10px 0 3px;
}

.offer .sub-title {
    font-size: 25px;
    color: #fff;
    text-align: center;
    padding-bottom: 15px;
}

.offer .sale {
    background: url("") 0 0 no-repeat;
    width: 209px;
    height: 113px;
    margin-left: 267px;
    color: #fff;
    font-size: 26px;
    line-height: 40px;
    text-align: center;
    margin-top: 143px;
    position: absolute;
}

.offer .sale span {
    display: inline-block;
    transform: rotate(-7deg);
    padding-top: 9px;
}

.offer .sale b {
    display: block;
    font-size: 50px;
}

.offer .bullet {
    font-size: 0;
    padding: 0 10px 20px;
}

.offer .bullet li {
    display: inline-block;
    vertical-align: top;
    width: 33.33%;
    font-size: 18px;
    text-align: center;
}

.offer .bullet .pic {
    position: relative;
    margin-bottom: 15px;
}

.offer .bullet .pic:after {
    position: absolute;
    left: 50%;
    bottom: -9px;
    margin-left: -15px;
    display: block;
    width: 30px;
    height: 30px;
    background: url("") 0 0 no-repeat;
    content: '';
}

.offer .bullet img {
    display: block;
    margin: 0 auto;
    border: 4px solid #fff;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

.offer .bullet p {
    padding: 0 5px;
    color: #f5f5f5;
}


.offer.bottom .price {
    position: relative;
    margin-bottom: -55px;
    z-index: 5;
}

.offer.bottom .timer {
    margin-top: 30px;
}

.order_form .form-txt {
    color: #000000;
    text-align: center;
    padding-bottom: 20px;
}

.order_form .pat {
    color: #fff;

}

.order_form .form-txt h4 {
    font-size: 30px;
    padding-bottom: 7px;
    text-transform: uppercase;
}

.order_form .form-txt p {
    font-size: 18px;
    padding: 0 75px;
}

.benef2 {
    padding: 0 30px 30px;
}

.benef2 > li {
    display: table;
    width: 100%;
    margin-bottom: 32px;
    position: relative;
}

.benef2 > li:not(:last-child):after {
    content: '';
    width: 180px;
    height: 3px;
    background: url("") 0% 50% repeat;
    transform: rotate(30deg);
    position: absolute;
    bottom: -20px;
    left: 120px;
    z-index: 1;
}

.benef2 > li:nth-child(2n):after {
    transform: rotate(-30deg);
    position: absolute;
    bottom: -20px;
    right: 120px;
}

.benef2 > li:last-child {
    margin-bottom: 0;
}

.benef2 > li .img {
    width: 166px;
    display: table-cell;
    vertical-align: middle;
}

.benef2 > li .img > img {
    display: block;
    margin: 0 auto;
    border-radius: 50%;
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.benef2 > li > p {
    display: table-cell;
    vertical-align: middle;
    padding: 0 0 0 26px;
}

.benef2 > li > p > span {
    display: block;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.2em;
}

.benef2 > li:nth-child(2n) > p {
    padding: 0 26px 0 0;
    text-align: right;
}

.bottom .order_form {
    padding-top: 80px;
}

.offer_text {
    font-size: 13px;
    line-height: 27px;
    text-transform: uppercase;
    font-weight: 600;
    position: relative;
    letter-spacing: -0.1px;
    margin-left: 10px;
    height: 25px;
    top: -101px;
    color: #393d46;
    margin: 0 auto;
    text-align: center;
    background: #fbb83b;
}

.offer_text > span {
    padding-left: 12px;
    padding-right: 12px;
}

.offer_section.offer3 .benefits_list {
    padding: 12px 0 12px 18px;
    margin-top: -10px;
    background-color: #7F1B15;
    /*background: #4f41a2;*/
    /*background-image: radial-gradient(circle at 50% 50%, #4e4f3f 0, #44463a 16.67%, #393c35 33.33%, #2f302e 50%, #262527 66.67%, #1f1a20 83.33%, #1a111a 100%);*/
    color: #3a3d45;
    /*color: #333;*/
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: space-around;
    align-items: center;
}

.offer_section.offer3 .benefits_list .benefit_item {
    float: left;
    padding: 0 0 0 44px;
    width: 31%;
    font-size: 12px;
    line-height: 16px;
    position: relative;
    color: #fff;
}


.offer_section.offer3 .benefits_list .benefit_item:before {
    display: block;
    content: '';
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1) center no-repeat;
    position: absolute;
    top: -2px;
    left: 0;

}

.offer_section.offer3 .price_block {
    display: flex;
}

.offer_section.offer3 .price_item {
    float: left;
    padding: 20px 0 0;
    width: 50%;
    height: 90px;
    /* border-right: 1px solid #e6e6e6; */
    text-align: center;
}

.offer_section.offer3 .price_item:last-child {
    border: none;
}

.offer_section.offer3 .price_item .text {
    margin: 0 0 5px;
    font-size: 14px;
    line-height: 14px;
}

.offer_section.offer3 .price_item.new .text {
    margin: 0 0 8px;
}

.offer_section.offer3 .price_item.new .text span {
    padding: 2px 5px 3px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    background-image: radial-gradient(circle at 50% 50%, #F77A1E 0, #F77A1E 16.67%, #F77A1E 33.33%, #F77A1E 50%, #F77A1E 66.67%, #F77A1E 83.33%, #F77A1E 100%);
    color: #000;
}

.offer_section.offer3 .price_item.old .value {
    font-weight: 700;
    font-size: 30px;
    line-height: 30px;
    text-decoration: line-through;
}

.offer_section.offer3 .price_item.new .value {
    font-weight: 700;
    font-size: 36px;
    line-height: 36px;
}

.products_count {
    margin: 40px 0 0;
    text-align: center;
}

.offer_section.offer1 .products_count {
    color: #fff;
}

.products_count b {
    margin: 0 3px;
    padding: 3px 5px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    background: #3a3d45;
    color: #fff;
}


/*   Головні стилі  */

/*   Як замовити   */

.order-info h2.title {
    padding: 0 30px;
}

.order-list {
    padding: 0 30px;
}

.order-list li {
    position: relative;
    display: table;
    width: 100%;
    height: 160px;
    font-size: 20px;
    background: #fff;
    padding-left: 185px;
    margin-bottom: 20px;
    -webkit-box-shadow: 0 0 18px rgba(0, 0, 0, 0.21);
    -moz-box-shadow: 0 0 18px rgba(0, 0, 0, 0.21);
    box-shadow: 0 0 18px rgba(0, 0, 0, 0.21);
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    border-radius: 40px;
}

.order-list li:last-child {
    margin-bottom: 0;
}

.order-list .txt {
    display: table-cell;
    vertical-align: middle;
    padding-right: 20px;
}

.order-list li:before {
    position: absolute;
    top: 50%;
    left: 25px;
    margin-top: -68px;
    display: block;
    width: 135px;
    height: 135px;
    background-color: #000;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    content: '';
}


.footer-subscribe-messenger.on-thanks p {
    padding-bottom: 15px;
    font-size: 18px;
    font-weight: 500;
}

.footer-subscribe-messenger.on-thanks .text {
    font-size: 18px;
    text-transform: uppercase;
}

.footer-subscribe-messenger.on-thanks .icon {
    width: 48px;
    height: 48px;
    margin-right: 10px;
}

.single .footer-subscribe-messenger {
    width: 480px;
}

.footer-subscribe-messenger a {
    text-decoration: none;
}

.footer-subscribe-messenger p {
    width: 100%;
    text-align: center;
    padding-bottom: 5px;
    margin: 0;
}

.footer-subscribe-messenger .subscribe-button {
    all: unset;
    display: flex;
    flex-direction: row;
    align-items: center;
    cursor: pointer;
}

.footer-subscribe-messenger .icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.footer-subscribe-messenger .text {
    padding: 7px 20px;
    border-radius: 5px;
    background: #F77A1E;
    color: #000;
    font-size: 12px;
}

/*   Футер телеграм  */

/*   Рамка для фото   */
.img-text {
    display: block;
    /*width: 90%;*/
    margin: 0 auto 15px;
    padding: 2%;
    border: 2px solid #000;
    border-radius: 15px;
    box-shadow: 1px 2px 8px 0px #000;
}

/*   Рамка для фото  */

/*   Бігуща строка  */

@keyframes marqueeAnimation {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.marquee-container {
    overflow: hidden;
    padding: 16px;
}

.marquee-text {
    animation: marqueeAnimation 10s linear infinite;
    white-space: nowrap;
    font-size: 34px;
}

/* Адаптация для мобильных устройств */
@media (max-width: 480px) {
    .marquee-text {
        font-size: 12px;
        animation-duration: 10s; /* Уменьшим длительность анимации для более быстрой прокрутки */
    }
}

/*   Бігуща строка  */


/*   Заглавний текст  */
h2.title {
    font-size: 32px;
    font-weight: 700;
    line-height: 42px;
    padding: 0 24px;
    /*       margin: 0 0 35px;*/
    text-align: center;
    text-transform: uppercase;
    color: #000;
}

/*   Заглавний текст  */


.characteristics_section {
    padding: 30px 0 0;
}

.characteristics_section h2.title {
    padding: 0 30px;
}

.characteristics__list li {
    padding: 15px 30px 15px 52px;
    text-align: right;
    position: relative;
}

.characteristics__list li:nth-child(odd) {
    background: #f4f4f4;
}

.characteristics__list li:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
    content: '';
    width: 12px;
    height: 12px;
    border: 1px solid #7F1B15;
    background: #7F1B15;
    -webkit-box-shadow: 0 0 0 2px #fff inset;
    -moz-box-shadow: 0 0 0 2px #fff inset;
    box-shadow: 0 0 0 2px #fff inset;
    position: absolute;
    top: 20px;
    left: 30px;
}

.characteristics__list li:nth-child(odd):before {
    -webkit-box-shadow: 0 0 0 2px #f4f4f4 inset;
    -moz-box-shadow: 0 0 0 2px #f4f4f4 inset;
    box-shadow: 0 0 0 2px #f4f4f4 inset;
}

.characteristics__list li b {
    float: left;
}

.icon_check {
    width: 24px;
    height: 24px;
}





  .reviews_section {
    padding: 30px 20px;
    background: #fff;
}

.reviews_section h2 {
    margin: 0 0 30px;
}

.clearfix:after {
    content: "";
    display: block;
    clear: both;
}

.owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    -webkit-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-touch-callout: none;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -webkit-tap-highlight-color: transparent;
    position: relative;
}

.wtsp_rev .owl-prev, .wtsp_rev .owl-next {
    width: 47px;
    height: 47px;
    background: #000000 url("public/images/g9nXtD5LDSge.jpg") no-repeat;
    position: absolute;
    top: 50%;
    margin-top: -23px;
}

.wtsp_rev .owl-prev {
    background-position: left center;
    -webkit-border-radius: 0 6px 6px 0;
    -moz-border-radius: 0 6px 6px 0;
    border-radius: 0 6px 6px 0;
    left: -20px;
}

.owl-carousel .owl-dot, .owl-carousel .owl-nav .owl-next, .owl-carousel .owl-nav .owl-prev {
    cursor: pointer;
    cursor: hand;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}


.owl-carousel .owl-dot, .owl-carousel .owl-nav .owl-next, .owl-carousel .owl-nav .owl-prev {
    cursor: pointer;
    cursor: hand;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}


#popup_banner {
    position: fixed;
    bottom: 50px;
    background: #ffffffbf;
    font-family: 'Mateur', sans-serif;
    z-index: 1000;
    left: -400px;
    width: 74%;
    transition: transform 1000ms ease-in-out;
    max-width: 360px;
    border-radius: 10px;
    box-shadow: 0px 0px 27px 0px rgb(0 0 0 / 75%);
}

#popup_banner div.bann_in {
    display: flex;
    text-decoration: none;
    flex-direction: row;
    flex-wrap: nowrap;
    max-height: 125px;
    justify-content: center;
    align-content: center;
}

#popup_banner img.bann_img {
    width: 120px;
    height: 120px;
    padding: 6px;
}

.p_b_box h4 {
    color: #000000;
    margin-left: -7px;
    font-weight: 700;
    margin-bottom: 8px;
}

.p_b_box span {
    font-size: 14px;
    font-weight: 700;
}

.social-button {
    -webkit-animation: pulse 1.6s infinite;
    animation: pulse 1.6s infinite;
}

@-webkit-keyframes pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.6);
    }
    70% {
        -webkit-box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}

@keyframes pulse {
    0% {
        -moz-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.8);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.8);
    }

    70% {
        -moz-box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
        box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
    }
    100% {
        -moz-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}
