:root {
    /* Style 1 */
    --Style1borderRadius: 8px;
    --Style1Color1: #f85c29;
    --Style1Color2: #f69b84;
    --Style1Color3: #2d2d31;
    --Style1Color4: linear-gradient(225deg, rgb(248, 17, 85) 0%, rgb(217 26 37) 100%);
    --Style1Color5: white;
    --Style1Color6: black;
    --Style1Font1: "Jost", system-ui;
    /* Style 2 */
    --Style2borderRadius: 8px;
    --Style2Color1: #aca4c2;
    --Style2Color2: #61587b;
    --Style2Color3: #fdfe01;
    --Style2Color4: linear-gradient(225deg, rgb(248, 17, 85) 0%, rgb(217 26 37) 100%);
    --Style2Color5: white;
    --Style2Color6: black;
    --Style2Font1: "Jost", sans-serif;
}

body.body-style-1 {
    background: #595959;
    font-family: var(--Style1Font1);
    font-weight: 400;
    font-size: 17px;
    line-height: 1.5em;
    color: #051832;
    cursor: default;
}


main.wrapper {
    margin: 0 auto;
    width: 100%;
    max-width: 480px;
    background: #ffffff;
    position: relative;
}

header.header-style-1 {
    width: 100%;
    display: flex;
    align-content: center;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    position: sticky;
    top: -1px;
    z-index: 101;
}

.body-style-1 header.header-style-1 .header-top {
    background: #070707;
}

header.header-style-1 .header-top {
    width: 100%;
    /* height: 60px; */
    transition: 0.5s;
    padding: 0 20px;
    display: flex;
    align-content: center;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
}

header.header-style-1 .header-bottom {
    background: #ffffff;
    width: 100%;
    padding: 0 20px !important;
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
    justify-content: center;
    border-top: 1px solid #ccc;
}

header.header-style-1 .timer {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    justify-content: flex-start;
    padding: 10px 20px;
    color: #051832;
    width: 100%;
}

header.header-style-1 .timer>p {
    font-weight: 700;
    color: #e562ad;
    font-size: 14px;
    line-height: 1.1em;
    margin-bottom: 5px;
    text-align: center;
    text-transform: uppercase;
}

header.header-style-1 .timer .timer_container {
    font-size: 0;
    text-align: center;
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
    justify-content: center;
}

header.header-style-1 .timer .timer_block {
    /* width: 70px; */
    display: inline-block;
    vertical-align: top;
    margin: 0 12px;
    position: relative;
    font-weight: bold;
}

header.header-style-1 .timer .timer_block:not(:last-child):after {
    content: ':';
    font-weight: 700;
    font-size: 26px;
    color: var(--Style1Color5);
    position: absolute;
    top: 50%;
    right: -18px;
    transform: translate(0, -50%);
}

header.header-style-1 .timer .timer_block .count {
    /* width: 70px; */
    /* height: 70px; */
    border-radius: 50%;
    /* background: #00d4f7; */
    /* line-height: 70px; */
    text-align: center;
    font-size: 21px;
    color: var(--Style1Color5);
}

header.header-style-1 .timer .timer_block .text {
    text-align: center;
    color: var(--Style1Color5);
    font-size: 11px;
    line-height: 10px;
    text-transform: uppercase;
}

header.header-style-1 .header-bottom .tabs {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
    justify-content: center;
}

header.header-style-1 .header-bottom li {
    font-weight: bold;
}

header.header-style-1 .header-bottom li a {
    text-decoration: none;
    color: #051832;
    font-size: 13px;
    padding: 6px 10px 2px 10px;
    display: block;
    border-bottom: 4px solid #ffffff00;
    text-transform: uppercase;
    text-wrap: nowrap;
}

.body-style-1 .offer-style-1 .text {
    background: #005bff;
    color: #ffffff;
}

.offer-style-1 .text {
    padding: 20px 10px;
    text-transform: uppercase;
    font-weight: 700;
    text-align: center;
    /* line-height: 43px; */
    font-size: 24px;
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    justify-content: center;
    /* display: table-caption; */
    width: 100%;
    text-wrap: balance;
    display: none;
}

.offer-style-1 .offer-img-block {
    position: relative;
    overflow: hidden;
}

.body-style-1 .offer-style-1 .sale {
    background-image: var(--Style1Color4);
    color: var(--Style1Color5);
}

.offer-style-1 .sale {
    position: absolute;
    bottom: 4%;
    left: 4%;
    /* transform: translate(-50%, 0); */
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
    /* transform: translate(-50%, 0); */
}

.offer-style-1 .sale p:nth-child(1) {
    font-size: 20px;
    text-transform: uppercase;
}

.offer-style-1 .sale p:nth-child(2),
.offer-style-2 .sale p:nth-child(2) {
    font-weight: bold;
    font-size: 25px;
}

.offer-style-1 .offer-img-block img {
    margin: 0 0 -8px 0;
}

.body-style-1 .price-style-1 .price-and-sale-block {
    background: #0030780a;
}

.price-style-1 .price-and-sale-block {
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
    justify-content: space-between;
    border-radius: 8px;
}

.price-style-1 .price-and-sale-block>div {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.body-style-1 .price-style-1 .price-and-sale-block .price-new {
    color: #005bff;
}

.price-style-1 .price-and-sale-block .price-new {
    font-weight: bold;
    font-size: 20px;
}

.body-style-1 .price-style-1 .sale-block {
    background: var(--Style1Color3);
    color: var(--Style1Color5);
}

.price-style-1 .sale-block {
    padding: 2px 20px;
    border-radius: 8px;
    font-weight: bold;
}

.price-style-1 .old-price {
    text-decoration: line-through;
    font-size: 13px;
}

section.price-style-1 {
    padding: 10px;
}

.price-style-1 .price-and-sale-block-top {
    width: calc(50% - 1px) !important;
    border-right: 1px solid #e4e4e4;
}

section.advantages-style-1 ul li {
    padding: 0 10px 0 30px;
    margin: 0 0 10px 0;
    position: relative;
}

.body-style-1 section.advantages-style-1 ul li:before {
    background: var(--Style1Color2);
}

section.advantages-style-1 ul li:before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    transform: rotate(45deg) translate(0, -50%);
    border-radius: 2px;
    left: 0;
    top: 50%;
}

section.advantages-style-1 ul {
    padding: 0 20px;
}

section.button-style-1 {
    padding: 20px;
}

.body-style-1 section.button-style-1 a,
.body-style-1 section.button-style-1 button {
    background: var(--Style1Color1);
    color: var(--Style1Color5);
}

section.button-style-1 a,
section.button-style-1 button {
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: bold;
    font-size: 24px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    padding: 20px 0;
    width: 100%;
    border: none;
}

section.button-style-1 a svg,
section.button-style-1 button svg {
    width: 24px;
    margin: 0 0 0 10px;
    display: none;
}

section.button-style-1 a svg path,
section.button-style-1 button svg path {
    stroke: var(--Style1Color6);
}

.button-style-1 .prod_count {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    margin: 10px 0 0 0;
}

.body-style-1 .button-style-1 .prod_count span {
    background: var(--Style1Color3);
    color: var(--Style1Color5);
}

.button-style-1 .prod_count span {
    display: block;
    border-radius: 8px;
    padding: 0 6px;
    font-weight: bold;
    margin: 0 8px;
}

video {
    margin: 0 auto;
    vertical-align: middle;
}

section.video-style-1 {
    padding: 0px 20px 0 20px;
}

section.video-style-1 h2.title {
    text-align: center;
    font-size: 24px;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    padding: 0 10px;
}

section.video-style-1 .video_block {
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

section.video-style-1 .video_block iframe {
    width: 100%;
    height: 247.5px;
    margin: 0 0 -8px 0;
}

section.video-style-1 .video_block img {
    margin: 0 0 -8px 0;
}

section.description-style-1 {
    padding: 20px 20px 0;
}

.body-style-1 section.description-style-1 .text {
    color: var(--Style1Color1);
}

h3 {
    /* text-align: center; */
    text-align: inherit;
}

section.description-style-1 .text {
    padding: 0 20px 10px;
    text-transform: uppercase;
    font-weight: 700;
    text-align: center;
    font-size: 24px;
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    justify-content: center;
    /* display: table-caption; */
    width: 100%;
}

section.description-style-1 .text_block p {
    margin: 0 0 10px 0;
    text-align: center;
}

section.description-style-1 .text_block img {
    border-radius: 8px;
    margin: 10px 0;
}

section.img-style-1 img {
    border-radius: 8px;
}

section.img-style-1 {
    padding: 20px 20px 0;
}

section.characteristics-style-1 {
    padding: 20px 20px 0;
}

section.characteristics-style-1 h2.title {
    text-align: center;
    font-size: 24px;
    margin: 0 0 20px 0;
    text-transform: uppercase;
}

section.characteristics-style-1 .characteristic_item {
    padding: 0 10px 0 30px;
    margin: 0 0 10px 0;
    position: relative;
}

.body-style-1 section.characteristics-style-1 .characteristic_item:before {
    border: 2px solid var(--Style1Color1);
    background: white;
}

section.characteristics-style-1 .characteristic_item:before {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    transform: rotate(45deg) translate(0, -50%);
    border-radius: 2px;
    left: 0;
    top: 50%;
}

section.bundling-style-1 {
    padding: 20px 20px 0;
}

section.bundling-style-1 h2.title {
    text-align: center;
    font-size: 24px;
    margin: 0 0 20px 0;
    text-transform: uppercase;
}

section.bundling-style-1 .characteristic_item {
    padding: 0 10px 0 30px;
    margin: 0 0 10px 0;
    position: relative;
}

.body-style-1 section.bundling-style-1 .characteristic_item:before {
    border: 2px solid var(--Style1Color2);
    background: white;
}

section.bundling-style-1 .characteristic_item:before {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    transform: rotate(45deg) translate(0, -50%);
    border-radius: 2px;
    left: 0;
    top: 50%;
}

.body-style-1 section.feedback-style-1 {
    background: #0030780a;
}

section.feedback-style-1 {
    padding: 20px 20px 0;
    margin: 20px 0 0 0;
}

section.feedback-style-1 h2.title {
    text-align: center;
    font-size: 24px;
    margin: 0 0 20px 0;
    text-transform: uppercase;
}

.body-style-1 section.feedback-style-1 .subtitle {
    color: var(--Style1Color1);
    border: 1px solid var(--Style1Color1);
}

section.feedback-style-1 .subtitle {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    border-radius: 8px;
    position: relative;
    padding: 6px 0;
    margin: 0 0 20px 0;
}

.body-style-1 section.feedback-style-1 .subtitle:before {
    background: var(--Style1Color1);
    opacity: 0.1;
}

section.feedback-style-1 .subtitle:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 97.5%;
    border-radius: 0 6px 6px 0;
    z-index: 0;
}

section.feedback-style-1 .subtitle p {
    z-index: 1;
    padding: 0 0 0 10px;
    font-size: 14px;
    color: var(--Style1Color1);
    font-weight: bold;
}

section.feedback-style-1 img {
    border-radius: 8px;
    margin: 0 0 20px 0;
}

section.feedback-style-1 .swiper-button-prev {
    padding: 10px 10px 10px 4px;
    left: 0;
    border-radius: 0 40px 40px 0;
    box-sizing: content-box;
}

section.feedback-style-1 .swiper-button-prev.swiper-button-disabled,
section.feedback-style-1 .swiper-button-next.swiper-button-disabled {
    opacity: 0;
}


.body-style-1 section.feedback-style-1 .swiper-button-prev {
    background: var(--Style1Color1);
}

.body-style-1 section.feedback-style-1 .swiper-button-prev:after {
    color: var(--Style1Color5);
}

.body-style-1 section.feedback-style-1 .swiper-button-next {
    background: var(--Style1Color1);
}

.body-style-1 section.feedback-style-1 .swiper-button-next:after {
    color: var(--Style1Color5);
}

section.feedback-style-1 .swiper-button-prev:after {
    font-size: 29px;
}

section.feedback-style-1 .swiper-button-next {
    padding: 10px 4px 10px 10px;
    right: 0;
    border-radius: 40px 0 0 40px;
    box-sizing: content-box;
}

section.feedback-style-1 .swiper-button-next:after {
    font-size: 29px;
}

section.step-style-1 {
    padding: 20px;
}

section.step-style-1 h2.title {
    /* text-align: center; */
    font-size: 24px;
    margin: 0 0 20px 0;
    text-transform: uppercase;
}

section.step-style-1 .how__list {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
}

section.step-style-1 .how__list::before {
    content: "";
    width: 3px;
    height: calc(100% - 1.5rem);
    position: absolute;
    top: 10px;
    left: 29px;
    background-color: #f6f7fa;
    z-index: 0;
}

section.step-style-1 .how__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    z-index: 1;
}

section.step-style-1 .how__number {
    min-width: 60px;
    height: 60px;
    background-color: var(--Style1Color3);
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--Style1Color5);
}

section.step-style-1 .how__subtitle {
    font-size: 20px;
    margin-bottom: 6px;
    text-transform: capitalize;
    color: var(--Style1Color1);
}

section.step-style-1 .how__desc {
    line-height: 1.4;
}

section.time-style-1 {
    margin: 0 0 20px 0;
}

.body-style-1 section.time-style-1 .timer {
    background: var(--Style1Color1);
}

section.time-style-1 .timer {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    justify-content: flex-start;
    padding: 10px 20px;
    width: 100%;
}

section.time-style-1 .timer>p {
    font-weight: 700;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.1em;
    margin-bottom: 5px;
    text-align: center;
}

section.time-style-1 .timer .timer_container {
    font-size: 0;
    text-align: center;
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
    justify-content: center;
}

section.time-style-1 .timer .timer_block {
    /* width: 70px; */
    display: inline-block;
    vertical-align: top;
    margin: 0 12px;
    position: relative;
    font-weight: bold;
}

section.time-style-1 .timer .timer_block:not(:last-child):after {
    content: ':';
    font-weight: 700;
    font-size: 26px;
    color: #ffffff;
    position: absolute;
    top: 50%;
    right: -18px;
    transform: translate(0, -50%);
}

section.time-style-1 .timer .timer_block .count {
    /* width: 70px; */
    /* height: 70px; */
    border-radius: 50%;
    /* background: #00d4f7; */
    /* line-height: 70px; */
    text-align: center;
    font-size: 21px;
    color: #ffffff;
}

section.time-style-1 .timer .timer_block .text {
    text-align: center;
    color: #ffffff;
    font-size: 11px;
    line-height: 10px;
}

.body-style-1 section.form-style-1 input {
    background: #f6f7fa;
    border: 1px solid var(--Style1Color6);
    font-family: var(--Style1Font1)
}

section.form-style-1 input {
    border-radius: 8px;
    width: 100%;
    padding: 20px 20px;
    margin: 20px 0 0 0;
    font-size: 18px;
}

.body-style-1 section.form-style-1 select {
    background: #f6f7fa;
    border: 1px solid var(--Style1Color6);
    font-family: var(--Style1Font1)
}

section.form-style-1 select {
    border-radius: 8px;
    width: 100%;
    padding: 20px 20px;
    margin: 20px 0 0 0;
    font-size: 18px;
}

section.form-style-1 {
    padding: 0 20px;
}


.body-style-1 section.form-style-1 ::placeholder {
    color: var(--Style1Color6);
}

.body-style-1 footer.footer-style-1 {
    color: var(--Style1Color5);
    background: var(--Style1Color6);
}

footer.footer-style-1 {
    padding: 20px 20px 130px;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.body-style-1 footer.footer-style-1 a {
    color: var(--Style1Color5);
}

footer.footer-style-1 a {
    color: var(--Style1Color5);
}

footer.footer-style-1 p {
    margin: 0 0 10px 0;
}

.body-style-1 section.bottom-panel-style-1 {
    background: #f6f7fa;
}

section.bottom-panel-style-1 {
    position: fixed;
    bottom: 0;
    width: 100%;
    max-width: 480px;
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    z-index: 100;
    /* height: 110px; */
}



.bottom-panel-style-1 .price-and-sale-block {
    display: flex;
    flex-direction: column;
    align-content: flex-start;
    align-items: flex-start;
    justify-content: space-between;
    width: calc(100% - 150px);
}

.bottom-panel-style-1 .price-and-sale-block>div {
    width: 50%;
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
}

.body-style-1 .bottom-panel-style-1 .price-and-sale-block .price-new {
    color: #005bff;
}

.bottom-panel-style-1 .price-and-sale-block .price-new {
    font-weight: bold;
    font-size: 24px;
    text-wrap: nowrap;
}

.body-style-1 .bottom-panel-style-1 .sale-block {
    background: var(--Style1Color3);
    color: var(--Style1Color5);
}

.bottom-panel-style-1 .sale-block {
    padding: 2px 20px;
    border-radius: 8px;
    font-weight: bold;
    margin: 0 0 0 10px;
    text-wrap: nowrap;
}

.bottom-panel-style-1 .old-price {
    text-decoration: line-through;
    text-wrap: nowrap;
    color: #009dfc;
}

section.price-style-1 {
    padding: 10px;
}

.body-style-1 section.bottom-panel-style-1 a {
    background: var(--Style1Color1);
    color: var(--Style1Color5);
}

section.bottom-panel-style-1 a {
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: bold;
    font-size: 24px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    padding: 20px 0;
    width: 130px;
    border: none;
}

.swiper-wrapper {
    height: auto;
}

.offer-img-swiper .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.offer-img-swiper .swiper-pagination-bullet {
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    font-size: 12px;
    color: #000;
    opacity: 1;
    background: rgba(0, 0, 0, 0.2);
}

.offer-img-swiper .swiper-pagination-bullet-active {
    color: #fff;
    background: #000000;
}

.offer-style-2 .text {
    padding: 20px 10px;
    text-transform: uppercase;
    font-weight: 700;
    text-align: center;
    /* line-height: 43px; */
    font-size: 24px;
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    justify-content: center;
    /* display: table-caption; */
    width: 100%;
    text-wrap: balance;
    display: none;
}

.body-style-1 .offer-style-2 .text {
    background: #005bff;
    color: #ffffff;
}

.offer-style-2 .offer-img-block {
    position: relative;
    overflow: hidden;
}

.offer-style-2 .offer-img-block img {
    padding: 0 0 50px 0;
}

.body-style-1 .offer-style-2 .offer-img-swiper .swiper-pagination-bullet {
    color: var(--Style1Color5);
    background: var(--Style1Color3);
}

.body-style-1 .offer-style-2 .offer-img-swiper .swiper-pagination-bullet-active {
    color: #fff;
    background: var(--Style1Color1);
}

.offer-style-2 .sale {
    position: absolute;
    left: 2%;
    bottom: 11%;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.body-style-1 .offer-style-2 .sale {
    background: var(--Style1Color3);
    color: var(--Style1Color5);
}

body.body-style-2 {
    background: #595959;
    font-family: "Play", sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.5em;
    color: #051832;
    cursor: default;
}

.body-style-2 header.header-style-1 .header-top {
    background: #221f1f;
}

.body-style-2 .offer-style-1 .text {
    background: #00A046;
    color: var(--Style1Color5);
}

.body-style-2 .offer-style-1 .sale {
    background: #ffa900;
    color: var(--Style1Color6);
}

.body-style-2 .price-style-1 .sale-block {
    background: var(--Style2Color1);
}

.body-style-2 .price-style-1 .price-and-sale-block .price-new {
    color: #f84147;
}

.body-style-2 section.advantages-style-1 ul li:before {
    background: var(--Style2Color1);
}

.body-style-2 section.button-style-1 a,
.body-style-2 section.button-style-1 button {
    background: var(--Style2Color2);
    color: var(--Style2Color3);
}

.body-style-2 .button-style-1 .prod_count span {
    background: var(--Style2Color1);
    color: var(--Style1Color5);
}

.body-style-2 section.description-style-1 .text {
    color: var(--Style2Color2);
}

.body-style-2 section.characteristics-style-1 .characteristic_item:before {
    border: 2px solid var(--Style2Color1);
    background: white;
}

.body-style-2 section.bundling-style-1 .characteristic_item:before {
    border: 2px solid var(--Style2Color1);
    background: white;
}

.body-style-2 section.feedback-style-1 .subtitle {
    color: #ffffff;
    border: 1px solid #221f1f;
}

.body-style-2 section.feedback-style-1 .subtitle:before {
    background: #221f1f;
}

.body-style-2 section.time-style-1 .timer {
    background: var(--Style2Color2);
}

.body-style-2 section.form-style-1 input {
    background: #f5f5f5;
    border: 1px solid #221f1f;
    font-family: "Play", sans-serif;
}

.body-style-2 section.form-style-1 ::placeholder {
    color: #221f1f;
}

.body-style-2 section.feedback-style-1 {
    background: #f5f5f5;
}

.body-style-2 footer.footer-style-1 {
    color: var(--Style2Color5);
    background: var(--Style2Color1);
}

.body-style-2 footer.footer-style-1 a {
    color: var(--Style2Color5);
}

.body-style-2 section.bottom-panel-style-1 {
    background: #f5f5f5;
}

.body-style-2 section.bottom-panel-style-1 a {
    background: var(--Style2Color2);
    color: #faff00;
}

.body-style-2 .bottom-panel-style-1 .price-and-sale-block .price-new {
    color: f84147;
}

.body-style-2 .bottom-panel-style-1 .sale-block {
    background: var(--Style2Color3);
}

.body-style-2 section.feedback-style-1 .swiper-button-prev {
    background: #00a046;
}

.body-style-2 section.feedback-style-1 .swiper-button-prev:after {
    color: var(--Style1Color5);
}

.body-style-2 section.feedback-style-1 .swiper-button-next {
    background: var(--Style2Color1);
}

.body-style-2 section.feedback-style-1 .swiper-button-next:after {
    color: var(--Style1Color5);
}

.body-style-2 .offer-style-2 .text {
    background: #00A046;
}

.body-style-2 .offer-style-2 .sale {
    background: var(--Style1Color4);
    color: var(--Style2Color5);
}

.body-style-2 .offer-style-2 .offer-img-swiper .swiper-pagination-bullet-active {
    color: #fff;
    background: var(--Style2Color2);
}

body.body-style-3 {
    background: #eee;
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.5em;
    color: #051832;
    cursor: default;
}

.body-style-3 header.header-style-1 .header-top {
    background: #161637;
}

.body-style-3 .offer-style-1 .text {
    background: #161637;
    color: var(--Style1Color5);
}

.body-style-3 .offer-style-1 .sale {
    background: #f71c1c;
    color: var(--Style1Color5);
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    width: auto;
    height: auto;
    padding: 10px 20px;
    border-radius: 8px;
}

.body-style-3 .price-style-1 .sale-block {
    background: #ffa900;
}

.body-style-3 .price-style-1 .price-and-sale-block .price-new {
    color: var(--Style1Color6);
    font-size: 32px;
}

.body-style-3 section.advantages-style-1 ul li:before {
    background: url(../img/offer__tick_icon.png) left center no-repeat;
    background-size: 30px;
    width: 30px;
    height: 30px;
    transform: translate(0, -50%);
}

.body-style-3 section.button-style-1 a,
.body-style-3 section.button-style-1 button {
    background: #ffffff;
    color: #161637;
    border-radius: 40px;
    border: 2px solid #161637;
    padding: 24px 0;
}

.body-style-3 .button-style-1 .prod_count span {
    background: #ffa900;
    color: var(--Style1Color6);
}

.body-style-3 section.description-style-1 .text {
    color: #161637;
    font-size: 24px;
    line-height: 34px;
}

.body-style-3 section.characteristics-style-1 .characteristic_item:before {
    background: white;
    background: url(../img/blue_tick_icon.png) left center no-repeat;
    background-size: 22px;
    width: 22px;
    height: 22px;
    transform: translate(0, -50%);
}

.body-style-3 section.bundling-style-1 .characteristic_item:before {
    background: white;
    background: url(../img/blue_tick_icon.png) left center no-repeat;
    background-size: 22px;
    width: 22px;
    height: 22px;
    transform: translate(0, -50%);
}

.body-style-3 section.feedback-style-1 .subtitle {
    color: #000000;
    border: none;
    background: #e6e6e6;
    margin: 40px auto 20px auto;
    width: 80%;
}

.body-style-3 section.feedback-style-1 .subtitle:before {
    background: #ffa900;
}

.body-style-3 section.time-style-1 .timer {
    background: #161637;
}

.body-style-3 section.form-style-1 input {
    background: #f8f8f8;
    border: 1px solid #e6e6e6;
    font-family: "Manrope", sans-serif;
    padding: 24px 20px 24px 80px;
    border-radius: 40px;
}

.body-style-3 section.form-style-1 ::placeholder {
    color: #221f1f;
}

.body-style-3 section.feedback-style-1 {
    background: #F8F8F8;
    padding: 20px 20px 20px;
}

.body-style-3 footer.footer-style-1 {
    color: var(--Style1Color6);
    background: #F8F8F8;
    font-size: 14px;
}

.body-style-3 footer.footer-style-1 a {
    color: var(--Style1Color6);
}

.body-style-3 section.bottom-panel-style-1 {
    background: #ffffff;
}

.body-style-3 section.bottom-panel-style-1 a {
    background: #ffffff;
    color: #161637;
    border: 2px solid #161637;
    border-radius: 40px;
    font-size: 20px;
}

.body-style-3 .bottom-panel-style-1 .price-and-sale-block .price-new {
    color: f84147;
}

.body-style-3 .bottom-panel-style-1 .sale-block {
    background: #ffa900;
}

.body-style-3 section.feedback-style-1 .swiper-button-prev {
    background: #161637;
}

.body-style-3 section.feedback-style-1 .swiper-button-prev:after {
    color: var(--Style1Color5);
}

.body-style-3 section.feedback-style-1 .swiper-button-next {
    background: #161637;
}

.body-style-3 section.feedback-style-1 .swiper-button-next:after {
    color: var(--Style1Color5);
}

.body-style-3 header.header-style-1 .header-bottom li a {
    color: var(--Style1Color6);
    text-transform: inherit;
    font-size: 16px;
    font-weight: 400;
}

.body-style-3 .offer-style-1 .sale p:nth-child(2),
.body-style-3 .offer-style-2 .sale p:nth-child(2) {
    margin: 0 0 0 5px;
}

.body-style-3 section.advantages-style-1 ul li {
    padding: 0 10px 0 40px;
    font-size: 16px;
}

.body-style-3 section.video-style-1 .video_block {
    border-radius: 40px;
}

.body-style-3 section.feedback-style-1 .subtitle p {
    position: absolute;
    top: -30px;
    font-size: 14px;
}

.body-style-3 .feedback-style-1 .swiper-slide {
    text-align: center;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 2px 40px;
    border-radius: 50px;
    border: 2px solid #161637;
    border-top: 12px solid;
    border-bottom: 12px solid;
    margin: auto 0;
}

.body-style-3 section.step-style-1 .how__item {
    background: #F8F8F8;
    border-radius: 20px;
    padding: 10px;
    box-shadow: 0 2px 0 #fcbf1b;
}

.body-style-3 section.step-style-1 .how__number {
    font-size: 20px;
    background: #161637;
    color: var(--Style1Color5);
}

.body-style-3 section.step-style-1 .how__subtitle {
    font-size: 18px;
}

.body-style-3 section.step-style-1 .how__desc {
    font-size: 16px;
}

.body-style-3 section.form-style-1 input[type="tel"] {
    background-image: url(../img/offer__phone_icon.png);
    background-position: 20px center;
    background-repeat: no-repeat;
}

.body-style-3 section.form-style-1 input[type="text"] {
    background-image: url(../img/offer__name_icon.png);
    background-position: 23px center;
    background-repeat: no-repeat;
}

.body-style-3 section.step-style-1 .how__list::before {
    background-color: transparent;
}

.body-style-3 .offer-style-2 .text {
    background: #161637;
    color: var(--Style1Color5);
}

.body-style-3 .offer-style-2 .sale {
    background: #f71c1c;
    color: var(--Style1Color5);
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    width: auto;
    height: auto;
    padding: 10px 20px;
    border-radius: 8px;
}

.body-style-3 .offer-style-2 .offer-img-swiper .swiper-pagination-bullet-active {
    color: #fff;
    background: #ffa900;
}

.body-style-3 .swiper-pagination {
    padding-bottom: 10px;
}

.body-style-3 .offer-style-2 .offer-img-block img {
    padding: 0 0 60px 0;
    border-bottom: 1px solid #e4e4e4;
}

body.body-style-4 {
    background: #eee;
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5em;
    color: #051832;
    cursor: default;
}

.body-style-4 header.header-style-1 .header-top {
    background: black;
}

.body-style-4 .offer-style-1 .text {
    background: #f3f3f3ad;
    color: var(--Style1Color6);
}

.body-style-4 .offer-style-1 .sale {
    background: #e33030;
    color: var(--Style1Color5);
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    width: auto;
    height: auto;
    padding: 10px 20px;
    border-radius: 8px;
    gap: 4px;
}

.body-style-4 .price-style-1 .sale-block {
    background: #e33030;
    color: var(--Style1Color5);
}

.body-style-4 .price-style-1 .price-and-sale-block .price-new {
    color: var(--Style1Color6);
    font-size: 32px;
}

.body-style-4 section.advantages-style-1 ul li:before {
    background: url(../img/offer__tick_icon3.png) left center no-repeat;
    background-size: 30px;
    width: 30px;
    height: 30px;
    transform: translate(0, -50%);
}

.body-style-4 section.button-style-1 a,
.body-style-4 section.button-style-1 button {
    background: black;
    color: var(--Style1Color5);
    border-radius: 40px;
    border: 2px solid black;
    padding: 24px 0;
    border-radius: 8px;
    font-size: 20px;
}

.body-style-4 .button-style-1 .prod_count span {
    background: #e33030;
    color: var(--Style1Color5);
}

.body-style-4 section.description-style-1 .text {
    color: var(--Style1Color6);
    font-size: 24px;
    line-height: 34px;
    padding: 0 0 20px;
    text-align: left;
}

.body-style-4 section.characteristics-style-1 .characteristic_item:before {
    background: white;
    background: black;
    width: 8px;
    height: 8px;
    transform: translate(0, -50%);
}

.body-style-4 section.bundling-style-1 .characteristic_item:before {
    background: white;
    background: black;
    width: 8px;
    height: 8px;
    transform: translate(0, -50%);
}

.body-style-4 section.feedback-style-1 .subtitle {
    color: #000000;
    border: none;
    background: #e6e6e6;
    margin: 40px auto 20px auto;
    width: 100%;
}

.body-style-4 section.feedback-style-1 .subtitle:before {
    background: #61ac1e;
}

.body-style-4 section.time-style-1 .timer {
    background: black;
}

.body-style-4 section.form-style-1 input {
    background: #f8f8f8;
    border: 1px solid #e6e6e6;
    font-family: "Manrope", sans-serif;
    padding: 24px 20px 24px 80px;
    border-radius: 8px;
}

.body-style-4 section.form-style-1 ::placeholder {
    color: #221f1f;
}

.body-style-4 section.feedback-style-1 {
    background: #F8F8F8;
    padding: 10px;
}

.body-style-4 footer.footer-style-1 {
    color: var(--Style1Color6);
    background: #F8F8F8;
    font-size: 14px;
}

.body-style-4 footer.footer-style-1 a {
    color: var(--Style1Color6);
}

.body-style-4 section.bottom-panel-style-1 {
    background: #ffffff;
}

.body-style-4 section.bottom-panel-style-1 a {
    background: black;
    color: var(--Style1Color5);
    border: 2px solid black;
    border-radius: 8px;
    font-size: 20px;
}

.body-style-4 .bottom-panel-style-1 .price-and-sale-block .price-new {
    color: bk;
}

.body-style-4 .bottom-panel-style-1 .sale-block {
    background: #e33030;
    color: var(--Style1Color5);
}

.body-style-4 section.feedback-style-1 .swiper-button-prev {
    background: black;
}

.body-style-4 section.feedback-style-1 .swiper-button-prev:after {
    color: var(--Style1Color5);
}

.body-style-4 section.feedback-style-1 .swiper-button-next {
    background: black;
}

.body-style-4 section.feedback-style-1 .swiper-button-next:after {
    color: var(--Style1Color5);
}

.body-style-4 header.header-style-1 .header-bottom li a {
    color: var(--Style1Color6);
    text-transform: inherit;
    font-size: 14px;
    font-weight: 700;
}

.body-style-4 section.advantages-style-1 ul li {
    padding: 0 20px 0 40px;
    font-size: 14px;
    font-weight: bold;
}

.body-style-4 section.video-style-1 .video_block {
    border-radius: 0;
}

.body-style-4 section.feedback-style-1 .subtitle p {
    position: absolute;
    top: -30px;
    font-size: 12px;
}

.body-style-4 .swiper-slide {
    text-align: center;
    background: #fff;
    margin: auto 0;
}

.body-style-4 section.step-style-1 .how__number {
    font-size: 20px;
    background: black;
    color: var(--Style1Color5);
}

.body-style-4 section.step-style-1 .how__subtitle {
    font-size: 18px;
    text-align: left;
}

.body-style-4 section.step-style-1 .how__desc {
    font-size: 16px;
}

.body-style-4 section.form-style-1 input[type="tel"] {
    background-image: url(../img/offer__phone_icon.png);
    background-position: 20px center;
    background-repeat: no-repeat;
}

.body-style-4 section.form-style-1 input[type="text"] {
    background-image: url(../img/offer__name_icon.png);
    background-position: 23px center;
    background-repeat: no-repeat;
}

.body-style-4 .price-style-1 .price-and-sale-block-top {
    border-right: 2px solid #000000;
}

.body-style-4 section.advantages-style-1 {
    background: #f3f3f3;
    padding: 20px 0;
}

.body-style-4 section.price-style-1 {
    background: #f3f3f3;
    padding: 30px 10px;
}

.body-style-4 section.button-style-1 a svg,
.body-style-4 section.button-style-1 button svg {
    display: none;
}

.body-style-4 section.video-style-1 {
    padding: 20px 0 0;
}

.body-style-4 section.description-style-1 .text_block p {
    text-align: left;
}

.body-style-4 section.description-style-1 .text_block img {
    border-radius: 0;
}

.body-style-4 section.img-style-1 img {
    border-radius: 0;
}

.body-style-4 section.characteristics-style-1 .characteristic_item {
    padding: 0 10px 0 20px;
}

.body-style-4 section.bundling-style-1 .characteristic_item {
    padding: 0 10px 0 20px;
}

.body-style-4 section.step-style-1 .how__list::before {
    background-color: var(--Style1Color6);
}

.body-style-4 section.time-style-1 {
    margin: 0;
}

.body-style-4 .offer-style-2 .sale {
    background: #e562ad;
    color: var(--Style1Color5);
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    width: auto;
    height: auto;
    padding: 10px 20px;
    border-radius: 8px;
}

.body-style-4 .swiper-pagination {
    padding-bottom: 10px;
}

.body-style-4 .offer-style-2 .offer-img-block img {
    padding: 0 0 60px 0;
}


body.body-style-5 {
    background: #eee;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.5em;
    color: #333;
    cursor: default;
}

.body-style-5 header.header-style-1 .header-top {
    background: #20222d;
}

.body-style-5 .offer-style-1 .text {
    background: #20222d;
    color: var(--Style1Color5);
    font-family: 'Oswald', sans-serif;
}

.body-style-5 .offer-style-1 .sale {
    background: #f71c1c;
    color: var(--Style1Color5);
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    width: auto;
    height: auto;
    padding: 10px 20px;
    border-radius: 0 0 0 20px;
}

.body-style-5 .price-style-1 .sale-block {
    background: #e562ad;
}

.body-style-5 .price-style-1 .price-and-sale-block .price-new {
    color: var(--Style1Color6);
    font-size: 32px;
}

.body-style-5 section.advantages-style-1 ul li:before {
    background: url(../img/offer__tick_icon4.png) left center no-repeat;
    background-size: 30px;
    width: 30px;
    height: 30px;
    transform: translate(0, -50%);
}

.body-style-5 section.button-style-1 a,
.body-style-5 section.button-style-1 button {
    background: #4cbf1e;
    color: var(--Style1Color5);
    border-radius: 40px;
    border: 2px solid #4cbf1e;
    padding: 24px 0;
    border-radius: 8px;
    font-size: 24px;
}

.body-style-5 .button-style-1 .prod_count span {
    background: #20222d;
    color: var(--Style1Color5);
}

.body-style-5 section.description-style-1 .text {
    color: var(--Style1Color6);
    font-size: 24px;
    line-height: 34px;
}

.body-style-5 section.characteristics-style-1 .characteristic_item:before {
    background: white;
    background: #ffc226;
    width: 8px;
    height: 8px;
    transform: translate(0, -50%);
    border-radius: 50%;
}

.body-style-5 section.bundling-style-1 .characteristic_item:before {
    background: white;
    background: #ffc226;
    width: 8px;
    height: 8px;
    transform: translate(0, -50%);
    border-radius: 50%;
}

.body-style-5 section.feedback-style-1 .subtitle {
    color: #000000;
    border: none;
    background: #e6e6e6;
    margin: 40px auto 20px auto;
    width: 80%;
}

.body-style-5 section.feedback-style-1 .subtitle:before {
    background: #4cbf1e;
}

.body-style-5 section.time-style-1 .timer {
    background: #20222d;
}

.body-style-5 section.form-style-1 input {
    background: #f8f8f8;
    border: 1px solid #e6e6e6;
    font-family: "Manrope", sans-serif;
    padding: 24px 20px 24px 80px;
    border-radius: 8px;
}

.body-style-5 section.form-style-1 ::placeholder {
    color: #221f1f;
}

.body-style-5 section.feedback-style-1 {
    background: #ffffff;
    padding: 20px 20px 20px;
}

.body-style-5 footer.footer-style-1 {
    color: var(--Style1Color5);
    background: #20222d;
    font-size: 14px;
}

.body-style-5 footer.footer-style-1 a {
    color: var(--Style1Color5);
}

.body-style-5 section.bottom-panel-style-1 {
    background: #ffffff;
}

.body-style-5 section.bottom-panel-style-1 a {
    background: #4cbf1e;
    color: var(--Style1Color5);
    border: 2px solid #4cbf1e;
    border-radius: 8px;
    font-size: 20px;
}

.body-style-5 .bottom-panel-style-1 .price-and-sale-block .price-new {
    color: f84147;
}

.body-style-5 .bottom-panel-style-1 .sale-block {
    background: #e562ad;
    color: var(--Style1Color5);
}

.body-style-5 section.feedback-style-1 .swiper-button-prev {
    background: #20222d;
}

.body-style-5 section.feedback-style-1 .swiper-button-prev:after {
    color: var(--Style1Color5);
}

.body-style-5 section.feedback-style-1 .swiper-button-next {
    background: #20222d;
}

.body-style-5 section.feedback-style-1 .swiper-button-next:after {
    color: var(--Style1Color5);
}

.body-style-5 header.header-style-1 .header-bottom li a {
    color: var(--Style1Color6);
    text-transform: inherit;
    font-size: 16px;
    font-weight: bold;
}

.body-style-5 section.advantages-style-1 ul li {
    padding: 0 20px 0 40px;
    font-size: 16px;
    font-weight: 400;
}

.body-style-5 section.video-style-1 .video_block {
    border-radius: 0;
}

.body-style-5 section.feedback-style-1 .subtitle p {
    position: absolute;
    top: -30px;
    font-size: 14px;
}

.body-style-5 .swiper-slide {
    text-align: center;
    background: #fff;
    margin: auto 0;
}

.body-style-5 section.step-style-1 .how__number {
    font-size: 24px;
    background: #4cbf1e;
    color: var(--Style1Color5);
}

.body-style-5 section.step-style-1 .how__subtitle {
    font-size: 16px;
    border-bottom: 2px solid #f7931d;
    margin: 0 0 10px 0;
    width: fit-content;
    padding-bottom: 10px;
}

.body-style-5 section.step-style-1 .how__desc {
    font-size: 14px;
}

.body-style-5 section.form-style-1 input[type="tel"] {
    background-image: url(../img/offer__phone_icon.png);
    background-position: 20px center;
    background-repeat: no-repeat;
}

.body-style-5 section.form-style-1 input[type="text"] {
    background-image: url(../img/offer__name_icon.png);
    background-position: 23px center;
    background-repeat: no-repeat;
}

.body-style-5 .price-style-1 .price-and-sale-block-top {
    border-right: none;
}

.body-style-5 section.advantages-style-1 {
    background: #ffffff;
    padding: 20px 0;
}

.body-style-5 section.price-style-1 {
    background: #ffffff;
    padding: 30px 10px;
}

.body-style-5 section.button-style-1 a svg,
.body-style-5 section.button-style-1 button svg {
    display: none;
}

.body-style-5 section.video-style-1 {
    padding: 20px 0 0;
}

.body-style-5 section.description-style-1 .text_block p {
    text-align: center;
}

.body-style-5 section.description-style-1 .text_block img {
    border-radius: 0;
}

.body-style-5 section.img-style-1 img {
    border-radius: 0;
}

.body-style-5 section.characteristics-style-1 .characteristic_item {
    padding: 0 10px 0 20px;
}

.body-style-5 section.bundling-style-1 .characteristic_item {
    padding: 0 10px 0 20px;
}

.body-style-5 section.step-style-1 .how__list::before {
    background-color: var(--Style1Color5);
}

.body-style-5 section.time-style-1 {
    margin: 0;
}

.body-style-5 .offer-style-1 .sale p:nth-child(2),
.body-style-5 .offer-style-2 .sale p:nth-child(2) {
    margin: 0 0 0 10px;
}

.body-style-5 section.step-style-1 .how__item {
    background: #eeeeee;
    color: #20222d;
    padding: 10px;
    border-radius: 8px;
}

.body-style-5 section.step-style-1 {
    border-bottom: 16px solid #f4fd00;
}

.body-style-5 .offer-style-1 .text span {
    color: #4cbf1e;
    margin: 10px 0 0 0;
    font-size: 24px;
}

.body-style-5 .offer-style-2 .text {
    background: #20222d;
    color: var(--Style1Color5);
    font-family: 'Oswald', sans-serif;
}

.body-style-5 .offer-style-2 .text span {
    color: #4cbf1e;
    margin: 10px 0 0 0;
    font-size: 24px;
}

.body-style-5 .offer-style-2 .sale {
    background: #f71c1c;
    color: var(--Style1Color5);
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    width: auto;
    height: auto;
    padding: 10px 20px;
    border-radius: 8px;
}

.body-style-5 .offer-style-2 .offer-img-swiper .swiper-pagination-bullet-active {
    color: #fff;
    background: #4cbf1e;
}

body.body-style-6 {
    background: #eee;
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.5em;
    color: #333;
    cursor: default;
}

.body-style-6 header.header-style-1 .header-top {
    background: #ffffff;
}

.body-style-6 .offer-style-1 .text {
    background: linear-gradient(to bottom, #e9622a 25%, #ed3034 100%);
    color: var(--Style1Color5);
    font-family: 'Oswald', sans-serif;
}

.body-style-6 .offer-style-1 .sale {
    background: #2f6ec7;
    color: var(--Style1Color5);
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    width: auto;
    height: auto;
    padding: 10px 20px;
    border-radius: 8px;
}

.body-style-6 .price-style-1 .sale-block {
    background: #eb4330;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: var(--Style1Color5);
    transform: translate(10%, 0);
}

.body-style-6 .price-style-1 .old-price {
    width: calc(100% - 100px);
    text-align: center;
    font-size: 24px;
}


.body-style-6 .price-style-1 .price-and-sale-block .price-new {
    color: var(--Style1Color5);
    font-size: 32px;
}

.body-style-6 section.advantages-style-1 ul li:before {
    background: white;
    background: #ffc226;
    width: 8px;
    height: 8px;
    transform: translate(0, -50%);
    border-radius: 50%;
}

.body-style-6 section.button-style-1 a,
.body-style-6 section.button-style-1 button {
    background: linear-gradient(to bottom, #e9622a 10%, #ed3034 100%);
    color: var(--Style1Color5);
    border-radius: 40px;
    border: none;
    padding: 24px 0;
    font-size: 24px;
}

.body-style-6 .button-style-1 .prod_count span {
    background: #20222d;
    color: var(--Style1Color5);
}

.body-style-6 section.description-style-1 .text {
    color: #2f6ec7;
    font-size: 24px;
    line-height: 34px;
}

.body-style-6 section.characteristics-style-1 .characteristic_item:before {
    background: white;
    background: #ffc226;
    width: 8px;
    height: 8px;
    transform: translate(0, -50%);
    border-radius: 50%;
}

.body-style-6 section.bundling-style-1 .characteristic_item:before {
    background: white;
    background: #ffc226;
    width: 8px;
    height: 8px;
    transform: translate(0, -50%);
    border-radius: 50%;
}

.body-style-6 section.feedback-style-1 .subtitle {
    color: #000000;
    border: none;
    background: #e6e6e6;
    margin: 40px auto 20px auto;
    width: 80%;
}

.body-style-6 section.feedback-style-1 .subtitle:before {
    background: #4cbf1e;
}

.body-style-6 section.time-style-1 .timer {
    background: #ffffff;
}

.body-style-6 section.form-style-1 input {
    background: #f8f8f8;
    border: 1px solid #e6e6e6;
    font-family: "Manrope", sans-serif;
    padding: 24px 20px 24px 80px;
    border-radius: 40px;
}

.body-style-6 section.form-style-1 ::placeholder {
    color: #221f1f;
}

.body-style-6 section.feedback-style-1 {
    background: linear-gradient(180deg, rgba(244, 244, 244, 1) 0%, rgba(255, 255, 255, 1) 100%);
    padding: 20px 20px 20px;
    margin: 0;
}

.body-style-6 footer.footer-style-1 {
    color: var(--Style1Color6);
    background: #f4f4f4;
    font-size: 14px;
}

.body-style-6 footer.footer-style-1 a {
    color: var(--Style1Color6);
}

.body-style-6 section.bottom-panel-style-1 {
    background: #ffffff;
}

.body-style-6 section.bottom-panel-style-1 a {
    background: linear-gradient(to bottom, #e9622a 10%, #ed3034 100%);
    color: var(--Style1Color5);
    border: none;
    border-radius: 40px;
    font-size: 20px;
}

.body-style-6 .bottom-panel-style-1 .price-and-sale-block .price-new {
    color: f84147;
    margin: 10px 0 0 0;
}

.body-style-6 .bottom-panel-style-1 .sale-block {
    background: #e562ad;
    color: var(--Style1Color5);
}

.body-style-6 section.feedback-style-1 .swiper-button-prev {
    background: #20222d;
}

.body-style-6 section.feedback-style-1 .swiper-button-prev:after {
    color: var(--Style1Color5);
}

.body-style-6 section.feedback-style-1 .swiper-button-next {
    background: #20222d;
}

.body-style-6 section.feedback-style-1 .swiper-button-next:after {
    color: var(--Style1Color5);
}

.body-style-6 header.header-style-1 .header-bottom li a {
    color: var(--Style1Color6);
    text-transform: inherit;
    font-size: 16px;
    font-weight: bold;
}

.body-style-6 section.advantages-style-1 ul li {
    padding: 0 20px 0 20px;
    font-size: 16px;
    font-weight: 400;
}

.body-style-6 section.video-style-1 .video_block {
    border-radius: 0;
}

.body-style-6 section.feedback-style-1 .subtitle p {
    position: absolute;
    top: -30px;
    font-size: 14px;
}

.body-style-6 .feedback-style-1 .swiper-slide {
    text-align: center;
    background: #fff;
    margin: auto 0;
    border-radius: 40px;
    overflow: hidden;
}

.body-style-6 section.step-style-1 .how__number {
    font-size: 49px;
    background: #4cbf1e00;
    color: #ea5e2b;
}

.body-style-6 section.step-style-1 .how__subtitle {
    font-size: 16px;
    width: fit-content;
    color: #2f6ec7;
}

.body-style-6 section.step-style-1 .how__desc {
    font-size: 14px;
}

.body-style-6 section.form-style-1 input[type="tel"] {
    background-image: url(../img/offer__phone_icon.png);
    background-position: 20px center;
    background-repeat: no-repeat;
}

.body-style-6 section.form-style-1 input[type="text"] {
    background-image: url(../img/offer__name_icon.png);
    background-position: 23px center;
    background-repeat: no-repeat;
}

.body-style-6 .price-style-1 .price-and-sale-block-top {
    border-right: none;
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
    width: 57% !important;
    padding-right: 0;
}

.body-style-6 .price-style-1 .price-and-sale-block-bottom {
    border-right: none;
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
    width: 43% !important;
    background: #2f6ec7;
    padding: 17px 10px;
    border-radius: 0 10px 10px 0;
}

.body-style-6 section.advantages-style-1 {
    background: #ffffff;
    padding: 20px 0;
}

.body-style-6 section.price-style-1 {
    background: #ffffff;
    padding: 30px 10px;
}

.body-style-6 section.button-style-1 a svg,
.body-style-6 section.button-style-1 button svg {
    display: none;
}

.body-style-6 section.video-style-1 {
    padding: 20px 0 0;
}

.body-style-6 section.description-style-1 .text_block p {
    text-align: center;
}

.body-style-6 section.description-style-1 .text_block img {
    border-radius: 0;
}

.body-style-6 section.img-style-1 img {
    border-radius: 0;
}

.body-style-6 section.characteristics-style-1 .characteristic_item {
    padding: 0 10px 0 20px;
}

.body-style-6 section.bundling-style-1 .characteristic_item {
    padding: 0 10px 0 20px;
}

.body-style-6 section.step-style-1 .how__list::before {
    background-color: #f5deb300;
}

.body-style-6 section.time-style-1 {
    margin: 0;
}

.body-style-6 .offer-style-1 .sale p:nth-child(2),
.body-style-6 .offer-style-2 .sale p:nth-child(2) {
    margin: 0 0 0 10px;
}

.body-style-6 section.step-style-1 .how__item {
    /* background: #20222d; */
    color: var(--Style1Color6);
    padding: 10px;
    border-radius: 8px;
}

.body-style-6 section.step-style-1 {
    border-bottom: 16px solid #f7931c;
    background: linear-gradient(0deg, rgba(244, 244, 244, 1) 0%, rgba(255, 255, 255, 1) 100%);
}

.body-style-6 section.characteristics-style-1 {
    background: linear-gradient(45deg, #ab0068 0%, #ef7635 100%);
    padding: 20px;
    color: var(--Style1Color5);
}

.body-style-6 section.bundling-style-1 {
    background: linear-gradient(45deg, #ab0068 0%, #ef7635 100%);
    padding: 20px;
    color: var(--Style1Color5);
    margin: 20px 0 0 0;
}

.body-style-6 section.time-style-1 .timer>p {
    color: var(--Style1Color6);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.body-style-6 section.time-style-1 .timer .timer_block .count {
    color: #2f6ec7;
    font-size: 34px;
}

.body-style-6 section.time-style-1 .timer .timer_block .text {
    color: var(--Style1Color6);
    text-transform: uppercase;
    margin: 8px 0 0 0;
}

.body-style-6 section.time-style-1 .timer .timer_block:not(:last-child):after {
    color: #ec3b32;
}

.body-style-6 header.header-style-1 .timer>p {
    color: var(--Style1Color6);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.body-style-6 header.header-style-1 .timer .timer_block .count {
    color: #2f6ec7;
    font-size: 34px;
}

.body-style-6 header.header-style-1 .timer .timer_block .text {
    color: var(--Style1Color6);
    text-transform: uppercase;
    margin: 8px 0 0 0;
}

.body-style-6 header.header-style-1 .timer .timer_block:not(:last-child):after {
    color: #ec3b32;
}

.body-style-6 .offer-style-2 .text {
    background: linear-gradient(to bottom, #e9622a 25%, #ed3034 100%);
    color: var(--Style1Color5);
    font-family: 'Oswald', sans-serif;
}

.body-style-6 .offer-style-2 .sale {
    background: #2f6ec7;
    color: var(--Style1Color5);
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    width: auto;
    height: auto;
    padding: 10px 20px;
    border-radius: 8px;
}

.body-style-6 .offer-style-2 .offer-img-swiper .swiper-pagination-bullet-active {
    color: #fff;
    background: #2f6ec7;
}




body.body-style-7 {
    background: #eee;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.5em;
    color: #333;
    cursor: default;
}

.body-style-7 header.header-style-1 .header-top {
    background: #7b04df;
}

.body-style-7 .offer-style-1 .text {
    background: #ffffff;
    color: var(--Style1Color6);
}

.body-style-7 .offer-style-1 .sale {
    background: #f71c1c;
    color: var(--Style1Color5);
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    width: auto;
    height: auto;
    padding: 10px 10px;
    border-radius: 8px;
}

.body-style-7 .price-style-1 .sale-block {
    background: #ffd400;
}

.body-style-7 .price-style-1 .price-and-sale-block .price-new {
    color: #de0404;
    font-size: 32px;
}

.body-style-7 section.advantages-style-1 ul li:before {
    background-size: 30px;
    width: 14px;
    height: 14px;
    transform: translate(0, -50%);
    border: 3px solid #ffd400;
    transform: translate(0, -50%);
    border-radius: 50%;
}

.body-style-7 section.button-style-1 a,
.body-style-7 section.button-style-1 button {
    background: #7b04df;
    color: var(--Style1Color5);
    border-radius: 40px;
    border: 2px solid #7b04df;
    padding: 24px 0;
    border-radius: 8px;
    font-size: 24px;
}

.body-style-7 .button-style-1 .prod_count span {
    background: #ffd400;
    color: var(--Style1Color6);
}

.body-style-7 section.description-style-1 .text {
    color: var(--Style1Color6);
    font-size: 24px;
    line-height: 34px;
}

.body-style-7 section.characteristics-style-1 .characteristic_item:before {
    background: white;
    background: #ffd400;
    width: 8px;
    height: 8px;
    transform: translate(0, -50%);
    border-radius: 50%;
}

.body-style-7 section.bundling-style-1 .characteristic_item:before {
    background: white;
    background: #ffc226;
    width: 8px;
    height: 8px;
    transform: translate(0, -50%);
    border-radius: 50%;
}

.body-style-7 section.feedback-style-1 .subtitle {
    color: #000000;
    border: none;
    background: #e6e6e6;
    margin: 40px auto 20px auto;
    width: 80%;
}

.body-style-7 section.feedback-style-1 .subtitle:before {
    background: #4cbf1e;
}

.body-style-7 section.time-style-1 .timer {
    background: #f4f4f4;
    border-radius: 12px;
}

.body-style-7 section.form-style-1 input {
    background: #f8f8f8;
    border: 1px solid #f8f8f8;
    font-family: "Manrope", sans-serif;
    padding: 24px 20px 24px 80px;
    border-radius: 8px;
}

.body-style-7 section.form-style-1 ::placeholder {
    color: #221f1f;
}

.body-style-7 section.feedback-style-1 {
    background: white;
    padding: 20px 20px 20px;
}

.body-style-7 footer.footer-style-1 {
    color: var(--Style1Color6);
    background: #f4f4fa;
    font-size: 14px;
}

.body-style-7 footer.footer-style-1 a {
    color: #7b03df !important;
}

.body-style-7 section.bottom-panel-style-1 {
    background: #ffffff;
}

.body-style-7 section.bottom-panel-style-1 a {
    background: #7b03df;
    color: var(--Style1Color5);
    border: 2px solid #7b03df;
    border-radius: 8px;
    font-size: 20px;
}

.body-style-7 .bottom-panel-style-1 .price-and-sale-block .price-new {
    color: f84147;
}

.body-style-7 .bottom-panel-style-1 .sale-block {
    background: #ffd400;
    color: var(--Style1Color6);
}

.body-style-7 section.feedback-style-1 .swiper-button-prev {
    background: #ffd400;
}

.body-style-7 section.feedback-style-1 .swiper-button-prev:after {
    color: var(--Style1Color6);
}

.body-style-7 section.feedback-style-1 .swiper-button-next {
    background: #ffd400;
}

.body-style-7 section.feedback-style-1 .swiper-button-next:after {
    color: var(--Style1Color6);
}

.body-style-7 header.header-style-1 .header-bottom li a {
    color: var(--Style1Color6);
    text-transform: inherit;
    font-size: 16px;
    font-weight: bold;
}

.body-style-7 section.advantages-style-1 ul li {
    padding: 0 20px 0 40px;
    font-size: 16px;
    font-weight: 400;
}

.body-style-7 section.video-style-1 .video_block {
    padding: 20px;
}

.body-style-7 section.feedback-style-1 .subtitle p {
    position: absolute;
    top: -30px;
    font-size: 14px;
}

.body-style-7 .swiper-slide {
    text-align: center;
    background: #fff;
    margin: auto 0;
}

.body-style-7 section.step-style-1 .how__number {
    font-size: 24px;
    background: #e8e8f3;
    color: #01011b;
}

.body-style-7 section.step-style-1 .how__subtitle {
    font-size: 16px;
    border-bottom: 1px solid #dadae8;
    margin: 0 0 10px 0;
    padding-bottom: 10px;
    display: block;
    width: 100%;
}

.body-style-7 section.step-style-1 .how__desc {
    font-size: 14px;
}

.body-style-7 section.form-style-1 input[type="tel"] {
    background-image: url(../img/offer__phone_icon.png);
    background-position: 20px center;
    background-repeat: no-repeat;
}

.body-style-7 section.form-style-1 input[type="text"] {
    background-image: url(../img/offer__name_icon.png);
    background-position: 23px center;
    background-repeat: no-repeat;
}

.body-style-7 .price-style-1 .price-and-sale-block-top {
    border-right: none;
}

.body-style-7 section.advantages-style-1 {
    background: #ffffff;
    padding: 20px 0;
}

.body-style-7 section.price-style-1 {
    background: #ffffff;
    padding: 30px 10px;
}

.body-style-7 section.button-style-1 a svg,
.body-style-7 section.button-style-1 button svg {
    display: none;
}

.body-style-7 section.video-style-1 {
    padding: 20px 0 0;
}

.body-style-7 section.description-style-1 .text_block p {
    text-align: center;
}

.body-style-7 section.description-style-1 .text_block img {
    border-radius: 12px;
}

.body-style-7 section.img-style-1 img {
    border-radius: 12px;
}

.body-style-7 section.characteristics-style-1 .characteristic_item {
    padding: 0 10px 0 20px;
}

.body-style-7 section.bundling-style-1 .characteristic_item {
    padding: 0 10px 0 20px;
}

.body-style-7 section.step-style-1 .how__list::before {
    /* background-color: var(--Style1Color5); */
    background-color: inherit;
}

.body-style-7 section.time-style-1 {
    margin: 0;
    padding: 0 20px;
}

.body-style-7 .offer-style-1 .sale p:nth-child(2),
.body-style-7 .offer-style-2 .sale p:nth-child(2) {
    margin: 0 0 0 10px;
}

.body-style-7 section.step-style-1 .how__item {
    background: #ffffff;
    color: #01011b;
    padding: 10px;
    border-radius: 8px;
}

.body-style-7 section.step-style-1 .how__item>div {
    width: 100%;
}

.body-style-7 section.step-style-1 {
    border-bottom: 16px solid #7b03df;
    background: #f4f4fa;
}

.body-style-7 .offer-style-1 .text span {
    color: #4cbf1e;
    margin: 10px 0 0 0;
    font-size: 24px;
}

.body-style-7 .offer-style-2 .text {
    background: #01011b;
    color: var(--Style1Color5);
    font-family: 'Oswald', sans-serif;
}

.body-style-7 .offer-style-2 .text span {
    color: #4cbf1e;
    margin: 10px 0 0 0;
    font-size: 24px;
}

.body-style-7 .offer-style-2 .sale {
    background: #f71c1c;
    color: var(--Style1Color5);
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    width: auto;
    height: auto;
    padding: 10px 20px;
    border-radius: 8px;
}

.body-style-7 .offer-style-2 .offer-img-swiper .swiper-pagination-bullet-active {
    color: #fff;
    background: #4cbf1e;
}

.body-style-7 section.bundling-style-1 {
    background: #f4f4fa;
    padding: 20px;
}

.body-style-7 section.img-style-1 {
    background: #f4f4fa;
}

.body-style-7 section#characteristic {
    background: #f4f4fa;
    margin: 0 0 -10px 0;
}

.body-style-7 section.video-style-1 .video_block .youtube {
    border-radius: 12px;
}

.body-style-7 section.time-style-1 .timer .timer_block .text {
    text-align: center;
    color: #000000;
    font-size: 11px;
    line-height: 10px;
    margin: 10px 0 0 0;
}

.body-style-7 section.time-style-1 .timer .timer_block .count {
    width: 42px;
    /* height: 70px; */
    border-radius: 12px;
    background: #7b03df;
    /* line-height: 70px; */
    text-align: center;
    font-size: 21px;
    color: #ffffff;
    padding: 3px 0;
}

.body-style-7 section.time-style-1 .timer>p {
    font-weight: 700;
    color: #000000;
    font-size: 14px;
    line-height: 1.1em;
    margin-bottom: 10px;
    text-align: center;
}

body.body-style-8 {
    background: #eee;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.5em;
    color: #333;
    cursor: default;
}

.body-style-8 header.header-style-1 .header-top {
    background: #4f41a2;
}

.body-style-8 .offer-style-1 .text {
    background: #315d90;
    color: var(--Style1Color5);
}

.body-style-8 .offer-style-1 .sale {
    position: absolute;
    width: 100px;
    height: 100px;
    text-align: center;
    line-height: 1.2em;
    background: #eb4330;
    font-size: 12px;
    text-transform: uppercase;
    border: 5px solid #e4e4e4;
    -webkit-box-shadow: 0px 0px 0px 12px rgba(255, 255, 255, 0.6);
    -moz-box-shadow: 0px 0px 0px 12px rgba(255, 255, 255, 0.6);
    box-shadow: 0px 0px 0px 6px rgb(255 255 255 / 60%);
    color: #fff;
    border-radius: 50%;
    /* padding-top: 13px; */
}

.body-style-8 .price-style-1 .sale-block {
    /* background: #faa51f; */
    color: var(--Style1Color5);
    font-size: 28px;
}

.body-style-8 .price-style-1 .price-and-sale-block .price-new {
    color: #000000;
    font-size: 32px;
}

.body-style-8 section.button-style-1 a,
.body-style-8 section.button-style-1 button {
    border: none;
    text-decoration: none;
    cursor: pointer;
    font-family: 'Open Sans', sans-serif;
    font-weight: 800;
    color: #fff;
    letter-spacing: 2px;
    margin: 0px auto;
    text-transform: uppercase;
    height: 80px;
    width: 100%;
    max-width: 380px;
    display: block;
    border-radius: 40px;
    line-height: 80px;
    text-align: center;
    font-size: 26px;
    position: relative;
    background: #ffc226;
    background: linear-gradient(266deg, #00ef3b 0%, #00d4f7 100%);
    padding: 0;
}

.body-style-8 .button-style-1 .prod_count span {
    background: #00d4f7;
    padding: 2px 6px 2px 5px;
    border-radius: 4px;
    color: #fff;
    font-weight: 700;
    margin: 0 4px;
    font-size: 20px;
}

.body-style-8 section.description-style-1 .text {
    color: var(--Style1Color5);
    font-size: 24px;
    line-height: 34px;
}

.body-style-8 section.characteristics-style-1 .characteristic_item:before {
    background: white;
    background: #ffd400;
    width: 8px;
    height: 8px;
    transform: translate(0, -50%);
    border-radius: 50%;
    left: 20px;
}

.body-style-8 section.bundling-style-1 .characteristic_item:before {
    background: white;
    background: #ffc226;
    width: 8px;
    height: 8px;
    transform: translate(0, -50%);
    border-radius: 50%;
    left: 20px;
}

.body-style-8 section.feedback-style-1 .subtitle {
    color: #000000;
    border: none;
    background: #e6e6e6;
    margin: 40px auto 20px auto;
    width: 80%;
}

.body-style-8 section.feedback-style-1 .subtitle:before {
    background: #4cbf1e;
}

.body-style-8 section.time-style-1 .timer {
    background: #f4f4f4;
    border-radius: 12px;
}

.body-style-8 section.form-style-1 input {
    background: #f8f8f8;
    border: 1px solid #f8f8f8;
    font-family: "Manrope", sans-serif;
    padding: 24px 20px 24px 80px;
    border-radius: 40px;
    width: 86%;
    margin: 10px 7%;
}

.body-style-8 section.form-style-1 ::placeholder {
    color: #221f1f;
}

.body-style-8 section.feedback-style-1 {
    background: white;
    padding: 20px 20px 20px;
    color: #315d90;
}

.body-style-8 footer.footer-style-1 {
    color: var(--Style1Color6);
    background: #f4f4fa;
    font-size: 14px;
}

.body-style-8 footer.footer-style-1 a {
    color: #7b03df !important;
}

.body-style-8 section.bottom-panel-style-1 {
    background: #ffffff;
}

.body-style-8 section.bottom-panel-style-1 a {
    background: #7b03df;
    color: var(--Style1Color5);
    /* border: 2px solid #7b03df; */
    border-radius: 40px;
    font-size: 20px;
    background: linear-gradient(266deg, #00ef3b 0%, #00d4f7 100%);
}

.body-style-8 .bottom-panel-style-1 .price-and-sale-block .price-new {
    color: f84147;
}

.body-style-8 .bottom-panel-style-1 .sale-block {
    background: #faa51f;
    color: var(--Style1Color6);
}

.body-style-8 section.feedback-style-1 .swiper-button-prev {
    background: #febb26;
}

.body-style-8 section.feedback-style-1 .swiper-button-prev:after {
    color: var(--Style1Color6);
}

.body-style-8 section.feedback-style-1 .swiper-button-next {
    background: #febd25;
}

.body-style-8 section.feedback-style-1 .swiper-button-next:after {
    color: var(--Style1Color6);
}

.body-style-8 header.header-style-1 .header-bottom li a {
    color: var(--Style1Color6);
    text-transform: inherit;
    font-size: 16px;
    font-weight: bold;
}

.body-style-8 section.advantages-style-1 ul li {
    padding: 15px 20px 15px 60px;
    border-top: 1px solid #ffc224;
    position: relative;
    font-size: 13px;
    font-weight: bold;
    text-align: left;
    text-transform: uppercase;
    font-family: 'Akrobat', Arial, Helvetica, sans-serif;
    color: #222222;
    background: url(../img/offer__tick_icon2.png) 20px 45% no-repeat;
    background-size: 24px;
}

.body-style-8 section.video-style-1 .video_block {
    padding: 20px;
}

.body-style-8 section.feedback-style-1 .subtitle p {
    position: absolute;
    top: -30px;
    font-size: 14px;
    color: #f7931c;
    font-weight: bold;
}

.body-style-8 .swiper-slide {
    text-align: center;
    background: #fff;
    margin: auto 0;
}

.body-style-8 section.step-style-1 .how__number {
    font-size: 24px;
    background: #00d5ed;
    color: #01011b;
}

.body-style-8 section.step-style-1 .how__subtitle {
    font-size: 16px;
    /* border-bottom: 1px solid #dadae8; */
    /* margin: 0 0 10px 0; */
    /* padding-bottom: 10px; */
    display: block;
    width: 100%;
    color: #4f41a2;
}

.body-style-8 section.step-style-1 .how__desc {
    font-size: 17px;
    padding-right: 50px;
}

.body-style-8 section.form-style-1 input[type="tel"] {
    background-image: url(../img/offer__phone_icon.png);
    background-position: 20px center;
    background-repeat: no-repeat;
}

.body-style-8 section.form-style-1 input[type="text"] {
    background-image: url(../img/offer__name_icon.png);
    background-position: 23px center;
    background-repeat: no-repeat;
}

.body-style-8 .price-style-1 .price-and-sale-block-top {
    border-right: none;
}

.body-style-8 section.advantages-style-1 {
    background: #ffffff;
    padding: 20px 0;
}

.body-style-8 section.advantages-style-1 ul {
    padding: 0;
}

.body-style-8 section.price-style-1 {
    background: #ffffff;
    padding: 30px 30px;
}

.body-style-8 section.button-style-1 a svg,
.body-style-8 section.button-style-1 button svg {
    display: none;
}

.body-style-8 section.video-style-1 {
    padding: 20px 0 0;
    color: #315d90;
}

.body-style-8 section.description-style-1 .text_block p {
    text-align: center;
    margin: 9px 0 20px 0;
    line-height: 1.8em;
}

.body-style-8 section.description-style-1 .text_block img {
    border-radius: 12px;
    box-shadow: 0px 4px 4px rgb(0 0 0 / 35%);
}

.body-style-8 section.img-style-1 img {
    border-radius: 12px;
    box-shadow: 0px 4px 4px rgb(0 0 0 / 35%);
}

.body-style-8 section.characteristics-style-1 .characteristic_item {
    padding: 10px 10px 10px 40px;
    margin: 0;
}

.body-style-8 section.bundling-style-1 .characteristic_item {
    padding: 10px 10px 10px 40px;
    margin: 0;
}



.body-style-8 section.bundling-style-1 .characteristic_item:nth-child(odd) {
    background: rgba(0, 0, 0, 0.1);
}

.body-style-8 section.step-style-1 .how__list::before {
    /* background-color: var(--Style1Color5); */
    background-color: inherit;
}

.body-style-8 section.time-style-1 {
    margin: 0;
    padding: 0 20px;
}

.body-style-8 .offer-style-1 .sale p:nth-child(2),
.body-style-8 .offer-style-2 .sale p:nth-child(2) {
    margin: 10px 0 0 0;
}

.body-style-8 section.step-style-1 .how__item {
    /* background: #ffffff; */
    color: #01011b;
    padding: 10px;
    border-radius: 8px;
}

.body-style-8 section.step-style-1 .how__item>div {
    width: 100%;
}

.body-style-8 section.step-style-1 {
    /* border-bottom: 16px solid #7b03df; */
    background: #f4f4fa;
}

.body-style-8 section.step-style-1 h2 {
    color: #315d90;
}

.body-style-8 .offer-style-1 .text span {
    color: #4cbf1e;
    margin: 10px 0 0 0;
    font-size: 24px;
}

.body-style-8 .offer-style-2 .text {
    background: #01011b;
    color: var(--Style1Color5);
    font-family: 'Oswald', sans-serif;
}

.body-style-8 .offer-style-2 .text span {
    color: #4cbf1e;
    margin: 10px 0 0 0;
    font-size: 24px;
}

.body-style-8 .offer-style-2 .sale {
    background: #f71c1c;
    color: var(--Style1Color5);
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    width: auto;
    height: auto;
    padding: 10px 20px;
    border-radius: 8px;
}

.body-style-8 .offer-style-2 .offer-img-swiper .swiper-pagination-bullet-active {
    color: #fff;
    background: #4cbf1e;
}

.body-style-8 section.bundling-style-1 {
    background: linear-gradient(266deg, #ffc226 0%, #f7931c 100%);
    padding: 20px 0;
    color: var(--Style1Color5);
}

.body-style-8 section.img-style-1 {
    background: linear-gradient(266deg, #ffc226 0%, #f7931c 100%);
}

.body-style-8 section#characteristic {
    background: linear-gradient(266deg, #ffc226 0%, #f7931c 100%);
    margin: 0 0 -10px 0;
    color: var(--Style1Color5);
    padding: 40px 0 30px;
}

.body-style-8 section.video-style-1 .video_block .youtube {
    border-radius: 12px;
}

.body-style-8 section.time-style-1 .timer .timer_block .text {
    text-align: center;
    color: #000000;
    font-size: 11px;
    line-height: 10px;
    margin: 10px 0 0 0;
}

.body-style-8 section.time-style-1 .timer .timer_block .count {
    width: 42px;
    /* height: 70px; */
    border-radius: 12px;
    background: #4f40a2;
    /* line-height: 70px; */
    text-align: center;
    font-size: 21px;
    color: #ffffff;
    padding: 3px 0;
}

.body-style-8 section.time-style-1 .timer>p {
    font-weight: 700;
    color: #000000;
    font-size: 14px;
    line-height: 1.1em;
    margin-bottom: 10px;
    text-align: center;
}

.body-style-8 section#description {
    background: linear-gradient(266deg, #ffc226 0%, #f7931c 100%);
    color: #ffffff;
}

.body-style-8 section.characteristics-style-1 .characteristic_item:nth-child(odd) {
    background: rgba(0, 0, 0, 0.1);
}

.body-style-8 section.button-style-1.button-bottom-style-1 {
    background: linear-gradient(266deg, #ffc226 0%, #f7931c 100%);
}

.body-style-8 .button-style-1.button-bottom-style-1 .prod_count {
    color: var(--Style1Color5);
}

.button-bottom {
    color: var(--Style1Color5);
}

.body-style-8 section.price-style-1 .price-and-sale-block {
    background: linear-gradient(266deg, #ffc226 44%, #f7931c 100%);
    padding: 0 10px;
}

.body-style-8 .price-style-1 .price-and-sale-block>.price-and-sale-block-bottom {
    background: white;
    border-radius: 10px;
}

.body-style-8 .price-style-1 .old-price {
    color: var(--Style1Color5);
    font-weight: bold;
}

.body-style-8 section.advantages-style-1 ul li:last-child {
    border-bottom: 1px solid #ffc224;
}

.body-style-8 .offer-style-1 .sale p:nth-child(1) {
    font-size: 18px;
}



body.body-style-9 {
    background: #eee;
    font-family: "Oswald", sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.5em;
    color: #333;
    cursor: default;
}

.body-style-9 header.header-style-1 .header-top {
    background: #0d2840;
}

.body-style-9 .offer-style-1 .text {
    background: #315d90;
    color: var(--Style1Color5);
}

.body-style-9 .offer-style-1 .sale {
    position: absolute;
    width: 100px;
    height: 100px;
    text-align: center;
    line-height: 1.2em;
    background: #effb00;
    font-size: 12px;
    text-transform: uppercase;
    /* border: 5px solid #e4e4e4; */
    /* -webkit-box-shadow: 0px 0px 0px 12px rgba(255,255,255,0.6); */
    -moz-box-shadow: 0px 0px 0px 12px rgba(255, 255, 255, 0.6);
    box-shadow: 0px 0px 20px 6px rgb(255 255 255 / 60%);
    color: #0d2840;
    border-radius: 50%;
    /* padding-top: 13px; */
}

.body-style-9 .price-style-1 .sale-block {
    background: #0d2840;
    color: var(--Style1Color5);
    font-size: 28px;
    padding: 6px 10px;
    border-radius: 0;
}

.body-style-9 .price-style-1 .price-and-sale-block .price-new {
    color: #000000;
    font-size: 32px;
}

.body-style-9 section.button-style-1 a,
.body-style-9 section.button-style-1 button {
    border: none;
    text-decoration: none;
    cursor: pointer;
    font-family: 'Open Sans', sans-serif;
    font-weight: 800;
    color: #0d2840;
    letter-spacing: 2px;
    margin: 0px auto;
    text-transform: uppercase;
    height: 80px;
    width: 100%;
    max-width: 380px;
    display: block;
    border-radius: 0;
    line-height: 80px;
    text-align: center;
    font-size: 26px;
    position: relative;
    background: #effb00;
    padding: 0;
}

.body-style-9 .button-style-1 .prod_count span {
    background: #0d2840;
    padding: 2px 6px 2px 5px;
    border-radius: 0px;
    color: #fff;
    font-weight: 700;
    margin: 0 4px;
    font-size: 20px;
}

.body-style-9 section.description-style-1 .text {
    color: #effb00;
    font-size: 24px;
    line-height: 34px;
}

.body-style-9 section.characteristics-style-1 .characteristic_item:before {
    background: white;
    background: #effb00;
    width: 8px;
    height: 8px;
    transform: translate(0, -50%);
    border-radius: 50%;
    left: 20px;
}

.body-style-9 section.bundling-style-1 .characteristic_item:before {
    background: white;
    background: #effb00;
    width: 8px;
    height: 8px;
    transform: translate(0, -50%);
    border-radius: 0;
    left: 20px;
}

.body-style-9 section.feedback-style-1 .subtitle {
    color: #000000;
    border: none;
    background: #e6e6e6;
    margin: 40px auto 20px auto;
    width: 80%;
}

.body-style-9 section.feedback-style-1 .subtitle:before {
    background: #4cbf1e;
}

.body-style-9 section.time-style-1 .timer {
    background: #ffffff;
    border-radius: 12px;
}

.body-style-9 section.form-style-1 input {
    background: #f8f8f8;
    border: 1px solid #f8f8f8;
    font-family: "Oswald", sans-serif;
    padding: 24px 20px 24px 80px;
    border-radius: 0;
    width: 86%;
    margin: 10px 7%;
}

.body-style-9 section.form-style-1 ::placeholder {
    color: #221f1f;
}

.body-style-9 section.feedback-style-1 {
    background: white;
    padding: 20px 20px 20px;
    color: #0d2840;
}

.body-style-9 footer.footer-style-1 {
    color: var(--Style1Color5);
    background: #0d2840;
    font-size: 14px;
}

.body-style-9 footer.footer-style-1 a {
    color: #ffffff !important;
}

.body-style-9 section.bottom-panel-style-1 {
    background: #ffffff;
}

.body-style-9 section.bottom-panel-style-1 a {
    color: #0d2840;
    /* border: 2px solid #effb00; */
    border-radius: 0;
    font-size: 20px;
    background: #effb00;
    font-weight: 800;
}

.body-style-9 .bottom-panel-style-1 .price-and-sale-block .price-new {
    color: #0d2840;
    margin: 4px 0 0 0;
}

.body-style-9 .bottom-panel-style-1 .sale-block {
    background: #0d2840;
    color: var(--Style1Color5);
    border-radius: 0;
}

.body-style-9 section.feedback-style-1 .swiper-button-prev {
    background: #0d2840;
}

.body-style-9 section.feedback-style-1 .swiper-button-prev:after {
    color: var(--Style1Color5);
}

.body-style-9 section.feedback-style-1 .swiper-button-next {
    background: #0d2840;
}

.body-style-9 section.feedback-style-1 .swiper-button-next:after {
    color: var(--Style1Color5);
}

.body-style-9 header.header-style-1 .header-bottom li a {
    color: var(--Style1Color6);
    text-transform: inherit;
    font-size: 16px;
    font-weight: bold;
}

.body-style-9 section.advantages-style-1 ul li {
    padding: 5px 20px 5px 50px;
    /* border-top: 1px solid #ffc224; */
    position: relative;
    font-size: 13px;
    font-weight: bold;
    text-align: left;
    text-transform: uppercase;
    font-family: 'Akrobat', Arial, Helvetica, sans-serif;
    color: #222222;
    background-size: 24px;
}

.body-style-9 section.video-style-1 .video_block {
    padding: 20px;
}

.body-style-9 section.feedback-style-1 .subtitle p {
    position: absolute;
    top: -30px;
    font-size: 14px;
    color: #0d2840;
    font-weight: bold;
}

.body-style-9 .swiper-slide {
    text-align: center;
    background: #fff;
    margin: auto 0;
}

.body-style-9 section.step-style-1 .how__number {
    font-size: 24px;
    background: #0d2840;
    color: #ffffff;
    box-shadow: 0px 0px 20px 6px rgb(255 255 255 / 60%);
}

.body-style-9 section.step-style-1 .how__subtitle {
    font-size: 16px;
    /* border-bottom: 1px solid #dadae8; */
    /* margin: 0 0 10px 0; */
    /* padding-bottom: 10px; */
    display: block;
    width: 100%;
    color: #0d2840;
}

.body-style-9 section.step-style-1 .how__desc {
    font-size: 17px;
    padding-right: 50px;
}

.body-style-9 section.form-style-1 input[type="tel"] {
    background-image: url(../img/offer__phone_icon.png);
    background-position: 20px center;
    background-repeat: no-repeat;
}

.body-style-9 section.form-style-1 input[type="text"] {
    background-image: url(../img/offer__name_icon.png);
    background-position: 23px center;
    background-repeat: no-repeat;
}

.body-style-9 .price-style-1 .price-and-sale-block-top {
    border-right: none;
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.body-style-9 section.advantages-style-1 {
    background: #ffffff;
    padding: 20px 0;
}

.body-style-9 section.advantages-style-1 ul {
    padding: 0;
}

.body-style-9 section.price-style-1 {
    background: #ffffff;
    padding: 30px 30px;
}

.body-style-9 section.button-style-1 a svg,
.body-style-9 section.button-style-1 button svg {
    display: none;
}

.body-style-9 section.video-style-1 {
    padding: 20px 0 0;
    color: #0d2840;
}

.body-style-9 section.description-style-1 .text_block p {
    text-align: center;
    margin: 9px 0 20px 0;
    line-height: 1.8em;
}

.body-style-9 section.description-style-1 .text_block img {
    border-radius: 0px;
}

.body-style-9 section.img-style-1 img {
    border-radius: 0;
}

.body-style-9 section.characteristics-style-1 .characteristic_item {
    padding: 10px 10px 10px 40px;
    margin: 0;
}

.body-style-9 section.bundling-style-1 .characteristic_item {
    padding: 10px 10px 10px 40px;
    margin: 0;
}



.body-style-9 section.bundling-style-1 .characteristic_item:nth-child(odd) {
    background: rgba(0, 0, 0, 0.1);
}

.body-style-9 section.step-style-1 .how__list::before {
    /* background-color: var(--Style1Color5); */
    background-color: inherit;
}

.body-style-9 section.time-style-1 {
    margin: 0;
    padding: 0 20px;
}

.body-style-9 .offer-style-1 .sale p:nth-child(2),
.body-style-9 .offer-style-2 .sale p:nth-child(2) {
    margin: 10px 0 0 0;
}

.body-style-9 section.step-style-1 .how__item {
    /* background: #ffffff; */
    color: #01011b;
    padding: 10px;
    border-radius: 8px;
}

.body-style-9 section.step-style-1 .how__item>div {
    width: 100%;
}

.body-style-9 section.step-style-1 {
    /* border-bottom: 16px solid #7b03df; */
    background: #f4f4fa;
}

.body-style-9 section.step-style-1 h2 {
    color: #0d2840;
}

.body-style-9 .offer-style-1 .text span {
    color: #4cbf1e;
    margin: 10px 0 0 0;
    font-size: 24px;
}

.body-style-9 .offer-style-2 .text {
    background: #01011b;
    color: var(--Style1Color5);
    font-family: 'Oswald', sans-serif;
}

.body-style-9 .offer-style-2 .text span {
    color: #4cbf1e;
    margin: 10px 0 0 0;
    font-size: 24px;
}

.body-style-9 .offer-style-2 .sale {
    background: #f71c1c;
    color: var(--Style1Color5);
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    width: auto;
    height: auto;
    padding: 10px 20px;
    border-radius: 8px;
}

.body-style-9 .offer-style-2 .offer-img-swiper .swiper-pagination-bullet-active {
    color: #fff;
    background: #4cbf1e;
}

.body-style-9 section.bundling-style-1 {
    padding: 20px 0;
}

.body-style-9 section.img-style-1 {
    background-color: inherit;
}

.body-style-9 section#characteristic {
    margin: 0 0 -10px 0;
    padding: 40px 0 30px;
}

.body-style-9 section.video-style-1 .video_block .youtube {
    border-radius: 0px;
}

.body-style-9 section.time-style-1 .timer .timer_block .text {
    text-align: center;
    color: #000000;
    font-size: 11px;
    line-height: 10px;
    margin: 10px 0 0 0;
    text-transform: uppercase;
}

.body-style-9 section.time-style-1 .timer .timer_block .count {
    width: 42px;
    /* height: 70px; */
    border-radius: 0px;
    background: #0d2840;
    /* line-height: 70px; */
    text-align: center;
    font-size: 21px;
    color: #ffffff;
    padding: 3px 0;
}

.body-style-9 section.time-style-1 .timer>p {
    font-weight: 700;
    color: #000000;
    font-size: 14px;
    line-height: 1.1em;
    margin-bottom: 10px;
    text-align: center;
}

.body-style-9 section#description {
    background: #0d2840;
    color: #ffffff;
    padding: 20px;
}

.body-style-9 section.characteristics-style-1 .characteristic_item:nth-child(odd) {
    background: rgb(13 40 64 / 10%);
}

.body-style-9 section.button-style-1.button-bottom-style-1 {
    background: linear-gradient(266deg, #ffc226 0%, #f7931c 100%);
}

.body-style-9 .button-style-1.button-bottom-style-1 .prod_count {
    color: var(--Style1Color5);
}

.button {
    display: block;
    margin: 0 auto;

    height: 60px;
    width: 140px;
    border: none;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 8px;
    background: #f85c29;

    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 55px;
    letter-spacing: 2px;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    border: 2px solid #f85c29;
    box-shadow: 1px 2px 20px 0px #ff0000;
}


.body-style-9 .price-style-1 .price-and-sale-block>.price-and-sale-block-bottom {
    background: white;
    border-radius: 10px;
}

.body-style-9 .price-style-1 .old-price {
    color: #0d28407d;
    font-weight: bold;
}

.body-style-9 section.advantages-style-1 ul li:last-child {
    /* border-bottom: 1px solid #ffc224; */
    background-color: inherit;
}

.body-style-9 .offer-style-1 .sale p:nth-child(1) {
    font-size: 18px;
}

section.advantages-style-1 ul li:before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    transform: rotate(45deg) translate(0, -50%);
    border-radius: 2px;
    left: 0px;
    top: 50%;
    background: #effb00;
}

/**ebody**/
@media (max-width: 400px) {
    header.header-style-1 .header-bottom li a {
        padding: 6px 5px 2px 5px;
        font-size: 13px !important;
    }

    section.step-style-1 .how__subtitle {
        font-size: 16px;
        margin-bottom: 0;
    }

    section.bottom-panel-style-1 a {
        font-size: 20px;
        padding: 14px 0;
    }

    body.body-style-1 {
        font-size: 13px;
    }

    .body-style-1 section.description-style-1 .text {
        line-height: 24px;
    }

    section.bottom-panel-style-1 {
        padding: 10px;
        /* height: 90px; */
    }

    .offer-style-2 .sale {
        width: 80px;
        height: 80px;
    }

    header.header-style-1 .header-bottom {
        padding: 0 10px !important;
    }

    section.advantages-style-1 ul {
        padding: 0 10px;
    }

    section.button-style-1 {
        padding: 20px 10px;
    }

    section.video-style-1 {
        padding: 20px 10px 0;
    }

    section.video-style-1 h2.title {
        font-size: 24px;
    }

    section.button-style-1 a,
    section.button-style-1 button {
        font-size: 20px;
    }

    section.description-style-1 {
        padding: 20px 10px 0;
    }

    section.img-style-1 {
        padding: 20px 10px 0;
    }

    section.characteristics-style-1 h2.title {
        font-size: 24px;
    }

    section.characteristics-style-1 {
        padding: 20px 10px 0;
    }

    section.bundling-style-1 {
        padding: 20px 10px 0;
    }

    section.bundling-style-1 h2.title {
        font-size: 24px;
    }

    section.feedback-style-1 {
        padding: 20px 10px 0;
    }

    section.feedback-style-1 h2.title {
        font-size: 24px;
    }

    section.step-style-1 {
        padding: 20px 10px;
    }

    section.step-style-1 h2.title {
        font-size: 24px;
    }

    section.form-style-1 {
        padding: 0 10px;
    }

    footer.footer-style-1 {
        padding: 20px 10px 110px;
    }

    section.video-style-1 .video_block iframe {
        width: 100%;
        height: 200px;
        margin: 0 0 -8px 0;
    }

    .body-style-6 header.header-style-1 .header-bottom li a {
        font-size: 13px;
    }

    .body-style-6 .offer-style-1 .text {
        line-height: 28px;
        font-size: 20px;
    }

    .body-style-6 section.description-style-1 .text {
        color: #2f6ec7;
        font-size: 28px;
        line-height: 30px;
    }

    .body-style-6 .price-style-1 .price-and-sale-block .price-new {
        font-size: 24px;
    }

    .body-style-6 .price-style-1 .sale-block {
        width: 80px;
        height: 80px;
        font-size: 23px;
        transform: translate(20%, 0);
    }

    .body-style-6 .price-style-1 .old-price {
        width: calc(100% - 80px);
    }

    .body-style-6 section.feedback-style-1 .subtitle p {
        font-size: 12px;
    }

    .offer-style-1 .sale {
        /* bottom: 4%; */
        /* left: 4%; */
        width: 90px;
        height: 90px;
        padding: 5px 14px !important;
    }

    .offer-style-1 .sale p:nth-child(1) {
        font-size: 16px;
    }

    .offer-style-1 .sale p:nth-child(2),
    .offer-style-2 .sale p:nth-child(2) {
        font-size: 20px;
    }

    .body-style-9 .price-style-1 .price-and-sale-block-top {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .body-style-9 .price-style-1 .sale-block {
        font-size: 20px;
    }

    .body-style-9 section.description-style-1 .text {
        font-size: 24px;
    }

    body.body-style-9 {
        font-size: 14px;
    }

    .body-style-9 header.header-style-1 .header-bottom li a {
        font-size: 14px;
    }

    .body-style-9 section.advantages-style-1 ul li:before {
        left: 20px;
    }
}

.timer_bottom .timer_container {
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.timer_bottom .timer_block {
    display: flex;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row;
    gap: 2px;
}

.timer_bottom .timer_block .text {
    font-size: 12px;
}

.timer_bottom .timer_block .count {
    font-weight: bold;
    font-size: 20px;
}

.bottom-panel-btn-block {
    gap: 4px;
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
}

/*add-custom-css*/

.online-visitors-widget {
    position: fixed;
    top: 175px;
    right: 0;
    z-index: 999;
}

.online-visitors-widget>div:first-child {
    margin-bottom: 15px;
}

.online-visitors-widget .online-visitors-widget__item {
    border-radius: 5px 0 0 5px;
    padding: 10px;
    -webkit-box-shadow: 0 0 16px 0 rgba(0, 0, 0, .15);
    box-shadow: 0 0 16px 0 rgba(0, 0, 0, .15);
    position: relative;
}

.online-visitors-widget .online-visitors-widget__item .online-visitors-widget__title {
    margin-bottom: 8px;
    display: block;
    font-size: 14px;
    line-height: 1em;
    letter-spacing: .2px;
}

.online-visitors-widget .online-visitors-widget__item b {
    font-weight: 700;
    font-size: 20px;
    padding-left: 40px;
}

.online-visitors-widget.online-visitors-widget_light .online-visitors-widget__item {
    background: #fff;
    color: #333;
    font-size: 14px;
}

.online-visitors-widget.online-visitors-widget_dark .online-visitors-widget__item {
    background: rgba(0, 0, 0, .7);
    color: #fff;
}

.online-visitors-widget.online-visitors-widget_light .online-visitors-widget__item:first-child:before {
    content: '';
    display: block;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAYCAYAAADkgu3FAAAB70lEQVRIia3VP0hWURjH8c89r0lEBUFJQohQgU0NBRF4hygCA6EiwilqasmCsCxrqCXTCKek1nANWqrFpd4hnBoqIvqDk1mLFbhUasO9r77K+957xfcHD/ee5znn+Z7nnMM50cLxTiBKLVR9k/+dgnYl6wTTgreCucX4aFkRhYzYYbzHZ4zjBd5gGhcLZa9SVKeig4JXgqZFX6mqysT6BaOCNiV/BF+NlOdXW9ElNOVMsg/XJFV/wneX4359cWk1oI4cCGzDVFV7K+5iZDWgtajX1Xhfo0H19uRsEdB27CkI+lfHX6iiDjQXBO3A7xr+1iKguYIQWKiTo01/vCkP9A6/CoImsbGGP+BoHmhGckzzdAu9GfEzeSB4jL8ZSWYwq8amV6nb9XhvHmgKQxlJbuNKRpzkQhvMA8GTjNgcWnJA0GUgPpUH2pIRm5WcuCI6RO2LM8JJ3MsYfB7n0IXT6Rj4gB9V/T5Kl28lqBPDOJgzywOpvUyBx1JgK57hgaHy5LLZp+/RZpFHIj01Xth679GSlYwLxkQeCtYL5kWeCoYNlidY2qMx9ORUkaUjuIk7aTtIlv+1gfhCxdGB7jVAKtqFn5Yfkgj33YhbAnY3AFJRO76t8DVjf2X1G6WS2jdKcxMmcKJBoC94jg0r/BP/AYidWojtX1bVAAAAAElFTkSuQmCC) no-repeat 0 0 / contain;
    width: 26px;
    height: 24px;
    position: absolute;
    left: 10px;
    bottom: 9px;
}

.online-visitors-widget.online-visitors-widget_light .online-visitors-widget__item:last-child:before {
    content: '';
    display: block;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABsAAAAXCAYAAAD6FjQuAAABh0lEQVRIibXWP2sUQRjH8c8sUbSzsNBS8Q2k9wQLIY1/wBeQUsRCC7GxsDJqaSFBsDFYWdgZBa9bOEUkXkijNmIV0l0XJDljcbNmo7c3k9z6g4fZZ+eZ+e4+88zshp0rZ+ewKAgCAgoEzxXuKaLfZIulXBXYwAr6NTuM+exZMjWDz7j61/1HuIOTWG8TNk7vY7uCnxNnuNEZn95Qa4Oh4FoKdiL/uZM6VjR0bOB7i6Ahuk0w+NAirOd+OZgE67UIe8NoCZvU5pslYX1stgBax2oKto1PLcDeWih3UjB2t8A0Wq4u/jdsiG4ubNoi6XlQDnJgBZ5OCVuuO03HFZzDJTzD6wOA9qQwBTsa20G0/WobW7mwrtGa3Y52EM1jKQe2ZZTKuTjoNL7iHX41jDmOizgS417VOyfBKmDH7sd1FmtY+BPxJP4W3OzM4BtO1WJf4EsVmip9uJDwK52pgeAQztcDcmBrCb/SD/8WUn+/sFt4GSdbwt2xUY/LTVzGR6PUXfew3HMC/Qa/jlZaLxobUwAAAABJRU5ErkJggg==) no-repeat 0 0 / contain;
    width: 27px;
    height: 23px;
    position: absolute;
    left: 10px;
    bottom: 9px;
}

.online-visitors-widget.online-visitors-widget_dark .online-visitors-widget__item:first-child:before {
    content: '';
    display: block;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABsAAAAZCAYAAADAHFVeAAACq0lEQVRIia2WP2gTURzHvxdfrCXFcK3GDCLSKtZC6ShKMZSCbg7iJjiIoyB0kbpZjCiCdBKXgkNBIYMgZHBSUAS7FEwCnaStpRiSHCSpzfUu730dkqvp5S53bf3CLd/35/O+935372kkEaARAGcBRAH8BpADIJ1GTdOCxv8TSb9nmmSBLimlylLKB06/fckHdJmk7QZ1qlgsPiY5QHKM5DmSkYPC3vUCkaRt20alUnnZYZVIPiR5xI/lt5rRoEUKIfS1tbU/HdYJAM+q1eprAJ4bGRy9h6SUXePj8fi9bDZ7/b/DSCovf3x8/A6A/jCwJICLYWBSSunl67o+BmAwDGwUwNEwMF3XT5Gsu/1oNHoSIZN5rtZH9Jqjr68vOTU1FQ8Dy5OshSGVSqVNTdNiHk2R2dnZVNf8Xt+ZbduPgr6zlZWVV1tbW11/GEflcvkTgD3pPKtRCPEGgO2XSEpZsyyrEYvFxvz6DA0NpRYXF68EJmunS/utenl5+blt25Wg9IZhfAFwrGeydrpMj2RKCNFV2m7puj65tLR0NxAGQPdrME2zgVYlBiqZTF5Fe++ER7sG4CaAF34TTExM3Nrc3LwvhLiRSCSutcfANM2flmUZTr96vb6aTqcXAAwAqLr3apLkt6C9cGRZ1tdCoTBTLBY/kmSz2aytr68vzM3NpdA6dEcAnEbr4N0tkOMk34aFuGWa5udCoTCjlDLblmw2m+9JXtrzStqwDwcFOdrZ2Vk1DOOpy1a1Wm2mEzZ6WJCjXC73hKTaQ1PKmp+fvwC0qvF8mKoKo1gsdkYpVez0NE2LDg8PTwMQEQC+x/h+FYlEIiSbbl8IcRRAvwDwfWNj43Yul0scFpbP53+lUqns9vb2YKPRiDp+JpP5AWD30heFx/lzQFnt+dz3kMZfXxxauXQPcyIAAAAASUVORK5CYII=) no-repeat 0 0 / contain;
    width: 26px;
    height: 24px;
    position: absolute;
    left: 10px;
    bottom: 9px;
}

.online-visitors-widget.online-visitors-widget_dark .online-visitors-widget__item:last-child:before {
    content: '';
    display: block;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABwAAAAYCAYAAADpnJ2CAAACa0lEQVRIia2WzWsTQRjGf5sPQtIQa1Hxq6RHqViJN2v9uBQ8SS/eevAi0r+gR4Xe+g+oRy9CcxH0WE812JBEDLanSLSBNK24wQ352LCbnfFgtmxis0nYPDCHnXnfefZ9Zp6ZUaSUD4GXgEIv3gDPGQJF6U8bEi+lTBiG8aLVak3ZndFodEEIYYZCoVtSyl+TJERKCRAG4sAcMFepVF5JKeXa2tpdKSVubVwoA5JWgHedTkf1+/0tRVHGn7kXFvBMUZSPgQEBuwCBQOCcR6IT7OzsXAfSA6USQvyUE4IQwlpeXr4DnHFbn7eTIqzVal+AG4Df56LC50nJWS6XU0ALsNwI05Mi3N7eTgF1ADdJA1LKllc5DcP4HQwGb/LPerhV2AFyXqtTVTVlmqYB6MMIoWsPL9jf308BjZMOF0mRUq54kbPHDiMSXvRC6LSDzecmqQ947UXOcrn8ia4d7L5BRxvAPeCRqqpb2Wx2bIsIIaz19fU0th1GIAwD1Ov1diQSOZydnW2OQ2gYhhWLxYqA1jPgsn5B0zQzXtawWq0+pe9id6vQLBQKS6qqPpmfn38cDoevNpvNg2KxuCuEOPW6isVi0/F4/L7P5wsdHx/vrq6u7gHTwJ9RKrTbpvOvS6XSJjADnHW2RCJx3rKsAztOCGEmk8kl+jfmCIRfnYSapmWBC/a4Y55r/ZLmcrkNIOTkG3bSAOw5PzRN+w5ET4kr0bdB8vl84b/YESqcqdVqH9rtduXo6Oj94uLibeByf4UAuq4/aDQa33Rd/5HJZDaABSDijBn1yeUHrnSTm8AhIAbETgGXujkqUHUO/gUowZaow6xSoQAAAABJRU5ErkJggg==) no-repeat 0 0 / contain;
    width: 27px;
    height: 23px;
    position: absolute;
    left: 10px;
    bottom: 9px;
}

.online-visitors-widget_indent {
    height: 46px;
    width: 100%;
    display: none;
}

.reviews_section {
    padding: 30px 20px;
    background: #ffffff;


}

.reviews_section h2 {
    margin: 0 0 30px;

}

.wtsp_item {
    max-width: 410px;
    min-height: 710px;
    margin: 0 auto;
    background: url(../images/ADhTyuE4T3ar.jpg) 50% 0% repeat;
    font-family: Arial, Helvetica, sans-serif;
    position: relative;
    overflow: hidden;
    border-radius: 20px 20px 20px 20px;
    border: 2px solid #425BD8;
}

.wtsp_item .info {
    background: #ffffff url(../images/XS6fbttaUIgm.png) 3px 50% no-repeat;
    padding: 16px 110px 13px 50px;
    box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.35);
    position: relative;
    z-index: 2;
    border-radius: 20px 20px 0px 0px;
    text-align: left;
}

.wtsp_item .info>img {
    float: left;
    border-radius: 50%;
    width: 42px;
    border: 1px solid #0f3a33;

}

.wtsp_item .info .text {
    overflow: hidden;
    padding-left: 8px;
    color: #333;
}

.wtsp_item .info .text>p {
    font-size: 16px;
    line-height: 22px;
    font-weight: 700;
}

.wtsp_item .info .text>small {
    font-size: 13px;
    line-height: 18px;
    display: block;
}

.clearfix:after {
    content: "";
    display: block;
    clear: both;
}

.wtsp_item .date {
    text-align: center;
    margin-top: 10px;
}

.wtsp_item .date>span {
    display: inline-block;
    vertical-align: top;
    background: #d4ebf3;
    text-transform: uppercase;
    font-size: 12px;
    line-height: 28px;
    color: #3f5250;
    padding: 0 8px;
    border-radius: 7px;
    box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.2);
}

.wtsp_item .message_container {
    margin-top: 10px;
    padding: 0 12px;
    margin-bottom: 70px;
}

.wtsp_item .message {
    display: inline-block;
    max-width: 295px;
    min-width: 70px;
    padding: 6px 10px;
    position: relative;
    font-size: 18px;
    line-height: 22px;
    color: #212121;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.25);
    margin-bottom: 10px;
}

.wtsp_item .message.client {
    background: #fff;
    border-radius: 0 6px 6px 6px;
}

.wtsp_item .message.client:before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 8px 8px 0;
    border-color: transparent #fff transparent transparent;
    position: absolute;
    top: 0;
    left: -6px;
}

.wtsp_item .message>p {
    margin-bottom: 5px;
    text-align: left;
}

.wtsp_item .message>img {
    display: block;
    margin: 6px auto;
    border-radius: 4px;
}

.wtsp_item .message .time {
    text-align: right;
    font-size: 14px;
    line-height: 15px;
    color: #989898;
    padding: 0 5px;
}

.wtsp_item .message:last-child {
    margin-bottom: 0;
}

.wtsp_item .message.author {
    background: #c8e2fd;
    border-radius: 10px 0 10px 10px;
    padding: 6px 10px;
    float: right;
}

.wtsp_item .message.author:before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 8px 0 0;
    border-color: #c8e2fd transparent transparent transparent;
    position: absolute;
    top: 0;
    right: -6px;
}

.wtsp_item .message.author .time {
    padding: 0;
}

.wtsp_item .message.author .time:after {
    content: "";
    width: 18px;
    height: 12px;
    background: url(../images/reviews__wtsp_read.html) 50% 50% no-repeat;
    display: inline-block;
    vertical-align: middle;
    margin: -2px 0 0 4px;
}

.wtsp_item:after {
    content: "";
    width: 404px;
    height: 57px;
    background: url(../images/LKvurt5AgpH6.png) 50% 50% no-repeat;
    position: absolute;
    left: 50%;
    margin-left: -202px;
    bottom: 0px;
}

.owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transform: translate3d();
}

.no-js .owl-carousel,
.owl-carousel.owl-loaded {
    display: block;
    position: relative;
}

.owl-carousel .owl-item {
    min-height: 1px;
    float: left;

    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;

    -webkit-touch-callout: none;

    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);

    -webkit-tap-highlight-color: transparent;

    position: relative;
    color: transparent;
    position: relative;
}

.wtsp_rev .owl-prev,
.wtsp_rev .owl-next {
    width: 47px;
    height: 47px;
    background: #000000 url(../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;
}

.wtsp_rev .owl-next {
    background-position: right center;
    -webkit-border-radius: 6px 0 0 6px;
    -moz-border-radius: 6px 0 0 6px;
    border-radius: 6px 0 0 6px;
    right: -20px;
}

.icon-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1px;
    margin-top: 10px;
    align-items: center
}

.icon-container a {
    flex: 1 1 45%;
    text-align: center;
}

.icon-container a img {
    max-width: 80%;
    height: auto;
    object-fit: contain
}

.btn-block {
    position: fixed;
    bottom: 15px;
    left: 0;
    width: 100%;
    padding: 12px;
    text-align: center;
    display: none;
    z-index: 9999;
}

.btn-block.show {
    display: block;
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* marquee and FAQ: this family's own rules, from the curtain page (2026-09-22) */
.faq-section {
    padding: 20px 0;
}
.faq-container {
    padding: 0 20px;
    max-width: 480px;
    margin: 0 auto;
}
.faq-item {
    margin-bottom: 10px;
    border: 1px solid #e4e4e4;
    border-radius: 8px;
    overflow: hidden;
    background: #ffffff;
}
.faq-question {
    padding: 15px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 18px;
    color: #051832;
    transition: background-color 0.3s ease;
}
.faq-question:hover {
    background-color: #f5f5f5;
}
.faq-question.active {
    background-color: #f5f5f5;
}
.faq-icon {
    font-size: 12px;
    transition: transform 0.3s ease;
    color: #666;
    margin-left: 10px;
}
.faq-question.active .faq-icon {
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 20px;
}
.faq-answer.active {
    max-height: 200px;
    padding: 0 20px 15px 20px;
}
.faq-answer p {
    margin: 0;
    padding-top: 10px;
    font-size: 15px;
    line-height: 1.5;
    color: #555;
}
@keyframes marqueeAnimation {
    0% {
      transform: translateX(100%);
    }
  
    100% {
      transform: translateX(-100%);
    }
  }
.marquee-container {
    overflow: hidden;
    width: 100%;
    z-index: 1000;
    /* Забезпечуємо, щоб елемент був поверх інших */
    background-color: rgba(17, 17, 17, 0.8);
    /* Напівпрозорий фон */
    padding: 0;
    /* Забираємо відступи */
    margin: 0;
    /* Забираємо відступи */
    position: relative;
    /* Початкове положення */
  
  }
.marquee-text {
    animation: marqueeAnimation 10s linear infinite;
    white-space: nowrap;
    font-size: 18px;
    color: red;
    text-align: center;
    margin: 0;
    /* Забираємо відступи */
    padding: 0px;
    /* Забираємо відступи */
  }
.marquee-text {
      font-size: 18px;
      animation-duration: 10s;
      /* Уменьшуємо тривалість анімації для більш швидкої прокрутки */
    }

/* bottom panel: a seven-digit price at 24px runs 51px past its 110px row; 16px (67%, above the 60% price floor) fits (2026-09-22) */
.bottom-panel-style-1 .price-and-sale-block .price-new { font-size: 16px; }
