@charset "utf-8";
/***
    The new CSS reset - version 1.8.5 (last updated 14.6.2023)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/

/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
    - The "html" attribute is exclud, because otherwise a bug in Chrome breaks the CSS hyphens property (https://github.com/elad2412/the-new-css-reset/issues/36)
 */
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
    all: unset;
    display: revert;
}

.icon-container {
    pointer-events: none;
    cursor: default;
}

.icon-container a {
    pointer-events: none;
    cursor: default;
}

#faq {
    font-family: 'Arial', sans-serif;
    margin: 20px 0;
    padding: 0 20px;
    /* Відступи зліва і справа */
}

h2 {
    font-size: 22px;
    margin-bottom: 15px;
}

.faq-item {
    margin-bottom: 10px;
}

.faq-question {
    background-color: #0075CF;
    color: white;
    font-size: 16px;
    font-weight: bold;
    padding: 8px 15px;
    width: 100%;
    text-align: left;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background-color: #0075CF;
}

.faq-answer {
    display: none;
    padding: 8px 15px;
    background-color: #be8c79;
    border-radius: 5px;
    font-size: 14px;
    margin-top: 5px;
}

.plus {
    font-size: 20px;
    font-weight: bold;
}

.faq-item.open .faq-answer {
    display: block;
}

.faq-item.open .plus {
    transform: rotate(45deg);
}

.counter_block {
    background-color: #FF9800;
    /* Оранжевий фон */
    color: white;
    /* Білий текст */
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    /* Округлені кути */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    /* Легка тінь */
    margin-top: 20px;
    /* Відступ зверху */
}

.counter_block h3 {
    font-size: 24px;
    font-weight: bold;
}

#count {
    font-size: 40px;
    font-weight: 700;
    color: #FFF;
    transition: all 1.5s ease-in-out;
    /* Плавний перехід */
}

/* Prefer#0075CF box-sizing value */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Reapply the pointer cursor for anchor tags */
a,
button {
    cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol,
ul,
menu {
    list-style: none;
}

/* For images to not be able to exceed their container */
img {
    max-inline-size: 100%;
    max-block-size: 100%;
}

/* removes spacing between cells in tables */
table {
    border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input,
textarea {
    -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
    white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
    -webkit-appearance: revert;
    appearance: revert;
}

/* preformatted text - use only for this feature */
:where(pre) {
    all: revert;
}

/* reset default text opacity of input placeholder */
::placeholder {
    color: unset;
}

/* remove default dot (•) sign */
::marker {
    content: initial;
}

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */
:where([hidden]) {
    display: none;
}

/* revert for bug in Chromium browsers
   - fix for the content editable attribute will work properly.
   - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element */
:where([contenteditable]:not([contenteditable="false"])) {
    -moz-user-modify: read-write;
    -webkit-user-modify: read-write;
    overflow-wrap: break-word;
    -webkit-line-break: after-white-space;
    -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable="true"]) {
    -webkit-user-drag: element;
}

/* Revert Modal native behavior */
:where(dialog:modal) {
    all: revert;
}

h1,
h2,
h3,
h4 {
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
}

h1 span,
h2 span,
h3 span,
h4 span {
    font-family: 'Roboto', sans-serif;
}

body {
    background: #eee;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #333;
    cursor: default;
}

.main_wrapper {
    margin: 0 auto;
    width: 100%;
    background: #fff;
    max-width: 480px;
    position: relative;
}

.container {
    padding: 0 20px;
    width: 100%;
}

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

header.active {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    transform: translate(0, 0);
    transition: 0.5s;
    z-index: 101;
    box-shadow: 0px 4px 6px rgb(0 0 0 / 10%);
}

.header_top {
    width: 100%;
    height: 60px;
    transition: 0.5s;
    display: flex;
    align-content: center;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    background: #20222d;
}

header.active .header-top {
    box-shadow: 0px 4px 6px rgb(0 0 0 / 20%);
}

a.header_top_logo {
    width: 78px;
    height: 44px;
    transition: 0.6s;
    display: block;
}

.header_top .container {
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
    justify-content: space-between;
}

a.header_top_logo img {
    width: 100%;
}


.header_top_timer_block {
    color: white;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.header_top_timer_block p {
    width: 90px;
    font-size: 12px;
    line-height: 16px;
}



.header_top_timer {
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.timer_item .text {
    margin: 0 0 4px;
    font-size: 9px;
    line-height: 12px;
    text-transform: uppercase;
}

.timer_item .count {
    font-weight: 700;
    font-size: 30px;
    line-height: 30px;
    position: relative;
    width: 100%;
}

.timer_item .count:before {
    display: block;
    content: ':';
    width: 10px;
    line-height: 24px;
    position: absolute;
    top: 0;
    right: -5px;
}

.timer_item {
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
    width: 60px;
    text-align: center;
    position: relative;
}

.count.seconds:before {
    display: none;
}

.header_bottom {
    width: 100%;
    border-bottom: 3px solid #f3f3f3;
    background: white;
}

ul.header_bottom_tabs {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

ul.header_bottom_tabs li a {
    padding: 10px 10px;
    display: block;
    margin-bottom: -3px;
}

ul.header_bottom_tabs li a.active {
    border-bottom: 3px solid #00b67a;
    font-weight: bold;
}

h1.offer_title {
    text-align: center;
    /* padding: 20px 0; */
}

h1.offer_title .text {
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    font-size: 44px;
    line-height: 40px;
    text-transform: uppercase;
}

h1.offer_title .text span {
    display: block;
    font-size: 38px;
    color: #00b67a;
    text-transform: initial;
}

.offer_die_block .container {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-content: center;
    align-items: center;
}

.offer_die_green {
    padding: 6px 10px;
    background: #ededed;
    margin-right: 10px;
    border-radius: 20px;
    color: #0075CF;
    /* font-weight: bold; */
    font-size: 13px;
}

.offer_die_orange {
    padding: 6px 10px;
    background: #0075CF;
    margin-right: 10px;
    border-radius: 20px;
    color: white;
    /* font-weight: bold; */
    font-size: 13px;
    text-transform: uppercase;
}

.offer_rating_star_block {
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
}

.offer_rating_star {
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
}

.offer_rating_star svg {
    width: 18px;
    margin: 0 0 0 4px;
}

.offer_rating_text {
    margin: 0 0 0 10px;
    font-size: 14px;
}

.offer_rating .container {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-content: center;
    align-items: center;
}

.offer_rating {
    padding: 10px 0 10px 0;
}

.offer_bottom {
    padding: 20px 0;
}

.swiper-pagination-bullet {
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    font-size: 12px;
    color: #000;
    opacity: 1;
    background: #ededed;
}

.swiper-pagination-bullet-active {
    color: #fff;
    background: #20222d;
}

.temporary_block {
    display: flex;
    flex-direction: row;
    align-content: flex-start;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0 0 20px 0;
}

.temporary_block_color {
    display: flex;
    flex-direction: column;
    align-content: flex-start;
    align-items: flex-start;
    justify-content: flex-start;
    width: 50%;
}

.temporary_block_size {
    display: flex;
    flex-direction: column;
    align-content: flex-start;
    align-items: flex-start;
    justify-content: flex-start;
    width: 50%;
}

.temporary_block h3 {
    font-size: 24px;
}

section.other {
    padding: 20px 0;
}

.temporary_color {
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.temporary_color span {
    width: 28px;
    height: 28px;
    display: block;
    margin: 10px 10px 0 0;
    border-radius: 8px;
}

.temporary_size {
    margin: 10px 0 0 0;
}

.benefit_block {
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    padding: 0 0 18px 0;
}

.benefit {
    display: inline-flex;
    flex-direction: row;
    align-content: center;
    align-items: stretch;
    border: 1px solid #d9e4ee;
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.benefit_left {
    background: linear-gradient(180deg, #19c37d 0%, #119a63 100%);
    color: #ffffff;
    padding: 10px 14px;
    font-weight: 800;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 78px;
}

.benefit_right {
    padding: 10px 14px;
    font-weight: 700;
    font-size: 17px;
    line-height: 1.3;
    color: #111827;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.price_block {
    padding: 0 0 20px 0;
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: space-between;
    align-items: stretch;
    gap: 14px;
}

.price_left {
    display: flex;
    flex-direction: column;
    align-content: flex-start;
    align-items: flex-start;
    justify-content: center;
    width: calc(50% - 7px);
    padding: 16px 18px;
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.price_left-old {
    font-size: 26px;
    text-decoration: line-through;
    color: #9ca3af;
    line-height: 1.1;
    margin-bottom: 8px;
}

.price_left-new {
    font-size: 42px;
    color: #119a63;
    font-weight: 800;
    line-height: 1;
}

.price_right {
    width: calc(50% - 7px);
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: stretch;
    justify-content: flex-start;
}

.price_right_die {
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
    width: 100%;
    min-height: 100%;
    padding: 14px 16px;
    border-radius: 18px;
    background: #111827;
    color: #ffffff;
    gap: 12px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.price_right_die svg {
    width: 44px;
    height: 44px;
    border-radius: 44px;
    background: #f3f4f6;
    padding: 5px;
    flex: 0 0 44px;
}

.price_right_die p {
    text-wrap: balance;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    max-width: 100%;
    line-height: 1.35;
}

/*BTN*/
.btn {
    width: 100%;
    display: block;
    padding: 18px 20px;
    font-size: 22px;
    line-height: 1.2;
    text-transform: uppercase;
    text-align: center;
    font-weight: 800;
    border-radius: 18px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

a.btn.btn_order,
.btn.btn_order {
    margin: 0 0 20px 0;
    border: 2px solid #0f9f6e;
    background: linear-gradient(180deg, #19c37d 0%, #119a63 100%);
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(17, 154, 99, 0.30);
}

a.btn.btn_order:hover,
.btn.btn_order:hover {
    background: linear-gradient(180deg, #20cf86 0%, #0f8d5b 100%);
    box-shadow: 0 14px 28px rgba(17, 154, 99, 0.38);
    transform: translateY(-2px);
}

a.btn.btn_order:active,
.btn.btn_order:active {
    transform: translateY(0);
    box-shadow: 0 6px 14px rgba(17, 154, 99, 0.22);
}

@media (max-width: 480px) {
    .btn {
        padding: 16px 14px;
        font-size: 18px;
        border-radius: 16px;
    }
}

/*BTN*/


ul.step_list {
    display: flex;
    flex-direction: column;
    align-content: flex-start;
    align-items: flex-start;
}

ul.step_list li {
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
    justify-content: flex-start;
    margin: 0 0 0px 0;
    width: 100%;
}

ul.step_list li img {
    width: 70px;
    height: 70px;
    border-radius: 50px;
}

.step_list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

.step_list li {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 64px;
    padding: 14px 18px 14px 58px;
    background: linear-gradient(135deg, #ffffff 0%, #f3f7ff 100%);
    border: 1px solid #d9e4ff;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.step_list li::before {
    content: '✓';
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #2f6bff;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 28px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(47, 107, 255, 0.35);
}

.step_text {
    width: 100%;
}

.step_text span,
.step_text p {
    margin: 0;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 600;
    color: #1f2937;
}

.step_text p {
    font-weight: 500;
}

@media (max-width: 480px) {
    .step_list li {
        min-height: 58px;
        padding: 12px 14px 12px 50px;
        border-radius: 14px;
    }

    .step_list li::before {
        left: 14px;
        width: 24px;
        height: 24px;
        line-height: 24px;
        font-size: 14px;
    }

    .step_text span,
    .step_text p {
        font-size: 16px;
    }
}



.step_text {
    display: flex;
    margin: 0 0 0 20px;
    flex-direction: column;
    align-content: flex-start;
    align-items: flex-start;
}

.step_text span {
    font-weight: bold;
    display: block;
}

.step_text p {
    margin: 5px 0 0 0;
}

h2 .text {
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    font-size: 25px;
    line-height: 31px;
    padding: 0 0 20px 0;
    text-transform: uppercase;
}

h2 .text span {
    display: block;
    font-size: 30px;
    color: #4ac000;
}

.description li {
    padding: 8px 16px 8px 50px;
    position: relative;
    font-size: 14px;
    font-weight: 700;
    text-align: left;
    text-transform: uppercase;
    color: black;
    background: url(../images/offer__tick_icon.png) 16px 45% no-repeat;
    background-size: 24px;
    border-radius: 25px;
    display: inline-block;
    text-wrap: balance;
    margin: 5px 0;
}

.description li:nth-child(odd) {
    background: #ededed url(../images/offer__tick_icon.png) 16px 45% no-repeat;
    background-size: 24px;
}

section.description ul {
    margin: 0 0 20px 0;
    display: flex;
    flex-direction: column;
    align-content: flex-start;
    align-items: flex-start;
}

.text_block p {
    margin: 20px 0;
    font-size: 18px;
    text-wrap: balance;
}

.text_block img {
    border-radius: 8px;
}

section.description {
    padding: 0 0 20px 0;
}


.characteristic_item:nth-child(odd) {
    background: #ededed;
    border-radius: 8px;
}

.characteristic_item .text {
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 700;
    text-wrap: balance;
}

.characteristics_list2 {
    padding: 0 0 20px 0;
}

section.order_form {
    padding: 20px 0;
    background: #00b67a;
}

.order_form form {
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
}

.order_form form h2 .text {
    color: white;
}

.order_form form input {
    width: 100%;
    height: 60px;
    background: white;
    margin: 0 0 20px 0;
    max-width: 80%;
    border-radius: 70px;
    padding: 0 20px;
}

.order_form form button {
    width: 100%;
    height: 60px;
    background: #4F41A2;
    max-width: 80%;
    padding: 0 20px;
    color: white;
    font-size: 24px;
    text-transform: uppercase;
    text-align: center;
    font-weight: bold;
    border-radius: 70px;
}

section.order_form {
    padding: 20px 0;
    background: #9b9b9b;
}

.order_form form {
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
}

.order_form form h2 .text {
    color: white;
}

.order_form form input {
    width: 100%;
    height: 60px;
    background: white;
    margin: 0 0 20px 0;
    max-width: 80%;
    border-radius: 70px;
    padding: 0 20px;
}

.order_form form button {
    width: 100%;
    height: 60px;
    background: #00b67a;
    max-width: 80%;
    padding: 0 20px;
    color: white;
    font-size: 24px;
    text-transform: uppercase;
    text-align: center;
    font-weight: bold;
    border-radius: 70px;
}

section.feedback {
    padding: 20px 0;
}

section.feedback h2 .text {
    flex-direction: row;
    align-content: center;
    justify-content: center;
    align-items: center;
}

section.feedback h2 .text span {
    font-size: 44px;
    margin: -1px 0 0 10px;
}

.btn_feedback {
    color: #4ac000;
    border: 3px solid #4ac000;
}

.feedback_item {
    margin: 20px 0 0 0;
    border-radius: 8px;
    background: #ededed;
    padding: 20px;
}

.feedback_item_rating_star_block {
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
}

.feedback_item_rating_star {
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
}

.feedback_item_rating_text {
    margin: 0 0 0 10px;
    font-size: 14px;
}

.feedback_item_rating_star svg {
    width: 18px;
    margin: 0 0 0 4px;
}

h4.feedback_item_name {
    font-size: 24px;
}

span.feedback_item_date {
    padding: 10px 0;
    display: block;
    color: #b5b5b5;
}

.feedback_item_text {
    padding: 20px 0;
    font-size: 18px;
}

footer {
    background: #20222d;
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    color: white;
    font-size: 14px;
    margin: 0 0 104px 0;
}

.footer_top .container,
.footer_bottom .container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    text-align: center;
}

.footer_top,
.footer_bottom {
    width: 100%;
}

.footer_top a.header_top_logo {
    margin: 30px 0;
}

footer p {
    margin: 5px;
}

.footer_bottom {
    padding: 20px 0;
}

.footer_bottom a {
    margin: 0 0 10px 0;
    text-decoration: underline;
}

main {
    margin: 102px 0 0 0;
}

.body_modal_new_feedback {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    /* opacity: 0; */
    z-index: 101;
    background: rgb(32 34 45 / 70%);
    width: 100%;
    height: 100dvh;
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.body_modal_good_feedback {
    display: none;
}


.modal_bottom {
    position: fixed;
    bottom: 0;
    max-width: 480px;
    width: 100%;
    background: white;
    z-index: 101;
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    box-shadow: 0px -4px 6px rgb(0 0 0 / 10%);
    left: 50%;
    transform: translate(-50%, 0);
    height: 104px;
}

a.modal_bottom_button {
    width: 100%;
    background: #0075CF;
    max-width: 60%;
    padding: 18px 14px;
    color: white;
    font-size: 22px;
    text-transform: uppercase;
    text-align: center;
    font-weight: bold;
    border-radius: 70px;
    display: block;
}

.price_and_sale_block {
    display: flex;
    flex-direction: column;
    align-content: flex-start;
    align-items: flex-start;
    justify-content: center;
}

.price_and_sale_block_top {
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
    justify-content: flex-start;
}

.old_price {
    text-decoration: line-through;
    font-size: 18px;
    color: #6f6f6f;
}

.sale_block {
    font-size: 20px;
    padding: 3px 8px;
    background: #0075CF;
    border-radius: 8px;
    color: white;
    margin: 0 0 0 10px;
}

.price_new {
    font-size: 28px;
}


.up {
    position: fixed;
    bottom: 124px;
    right: 10px;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    padding: 8px;
    box-shadow: 0px 4px 6px rgb(0 0 0 / 10%);
}

h4.feedback_item_name span {
    font-family: 'Yanone Kaffeesatz', sans-serif;
    background: #ffc127;
    text-transform: uppercase;
    font-size: 18px;
    padding: 6px 10px 3px 10px;
    border-radius: 20px;
    margin: 0 10px 0 0;
}

.feedback_item_text.feedback_item_text_company {
    padding: 0 0;
}

.modal_feedback {
    /* margin: 50% auto 0 auto; */
    width: 100%;
    background: #fff;
    max-width: 480px;
    border-radius: 8px;
    padding: 20px;
}

.modal_feedback_top {
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: space-between;
    align-items: center;
    margin: 0 0 20px 0;
}

svg.close {
    width: 36px;
    height: 36px;
    cursor: pointer;
    transition: 0.6s all;
}

svg.close:hover {
    transform: rotate(180deg);
}

.modal_feedback_top h3 {
    font-size: 30px;
}

.modal_feedback_bottom input {
    width: 100%;
    height: 60px;
    background: #ededed;
    margin: 0 0 20px 0;
    max-width: 80%;
    border-radius: 70px;
    padding: 0 20px;
    font-weight: 600;
}

.modal_feedback_bottom textarea {
    width: 100%;
    height: 100px;
    background: #ededed;
    margin: 0 0 20px 0;
    max-width: 80%;
    border-radius: 30px;
    padding: 20px 20px;
    font-weight: 600;
}

.modal_feedback_bottom {
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
}

.modal_feedback_bottom button {
    width: 100%;
    height: 60px;
    background: #4F41A2;
    max-width: 80%;
    padding: 0 20px;
    color: white;
    font-size: 24px;
    text-transform: uppercase;
    text-align: center;
    font-weight: bold;
    border-radius: 70px;
    margin: 20px 0 0 0;
    cursor: pointer;
    transition: 0.6s all;
}

.modal_feedback_bottom button:hover {
    opacity: 0.5;
}

.input-file {
    position: relative;
    display: inline-block;
    padding: 20px 0;
    width: 80%;
}

.input-file-btn {
    position: relative;
    display: inline-block;
    cursor: pointer;
    outline: none;
    text-decoration: none;
    font-size: 14px;
    vertical-align: middle;
    color: rgb(255 255 255);
    text-align: center;
    border-radius: 20px;
    background-color: #00b67a;
    line-height: 22px;
    height: 40px;
    padding: 10px 20px;
    box-sizing: border-box;
    border: none;
    margin: 0;
    transition: background-color 0.2s;
}

.input-file-text {
    padding: 0 10px;
    line-height: 40px;
    display: inline-block;
}

.input-file input[type=file] {
    position: absolute;
    z-index: -1;
    opacity: 0;
    display: block;
    width: 0;
    height: 0;
}

/* Focus */
.input-file input[type=file]:focus+.input-file-btn {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, .25);
}

/* Hover/active */
.input-file:hover .input-file-btn {
    background-color: #c16d0a;
}

.input-file:active .input-file-btn {
    background-color: #2E703A;
}

/* Disabled */
.input-file input[type=file]:disabled+.input-file-btn {
    background-color: #eee;
}

.modal_rating {
    width: 80%;
}

.body_modal_good_feedback {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    /* opacity: 0; */
    z-index: 101;
    background: rgb(32 34 45 / 70%);
    width: 100%;
    height: 100dvh;
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-size: 18px;
    text-align: center;
}

.btn-up_hide {
    display: none;
}

.btn-up_hiding {
    opacity: 0;
}

section.characteristic h2 .text {
    padding: 20px 0;
}

.swiper-slide {
    margin-bottom: 20px;
}

.feedback_item_img img {
    width: 100%;
    max-width: 170px;
    border-radius: 8px;
}

/*video block*/
.video_block {
    padding: 40px 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    color: #1f2937;
}

.video_block__inner {
    max-width: 440px;
    margin: 0 auto;
}

.video_block__head {
    text-align: center;
    margin-bottom: 24px;
}

.video_block__label {
    display: inline-block;
    margin-bottom: 12px;
    padding: 6px 14px;
    border-radius: 999px;
    background: #ef4444;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.video_block__title {
    margin: 0;
    font-size: 34px;
    line-height: 1.1;
    font-weight: 700;
    color: #111827;
}

.video_block__content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.video_block__card {
    padding: 22px 18px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.video_block__lead {
    margin: 0 0 18px;
    font-size: 20px;
    line-height: 1.4;
    font-weight: 700;
    color: #111827;
}

.video_block__features {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.video_block__features li {
    position: relative;
    padding-left: 34px;
    font-size: 17px;
    line-height: 1.45;
    color: #374151;
}

.video_block__features li::before {
    content: '•';
    position: absolute;
    left: 12px;
    top: 0;
    color: #22c55e;
    font-size: 22px;
    line-height: 1;
}

.video_block__note {
    margin: 20px 0 0;
    padding-top: 18px;
    border-top: 1px solid #e5e7eb;
    font-size: 17px;
    line-height: 1.5;
    color: #4b5563;
}

.video_block__media {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    background: #000;
}

.video_block__media video {
    display: block;
    width: 100%;
    height: auto;
}

@media (max-width: 480px) {
    .video_block {
        padding: 32px 14px;
    }

    .video_block__title {
        font-size: 28px;
    }

    .video_block__card {
        padding: 18px 14px;
        border-radius: 16px;
    }

    .video_block__lead {
        font-size: 18px;
    }

    .video_block__features li,
    .video_block__note {
        font-size: 16px;
    }

    .video_block__media {
        border-radius: 16px;
    }
}

/*video block*/

/*slider*/
.description h2 {
    margin: 0 0 22px;
    text-align: center;
}

.description h2 .text {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 999px;
    background: #111827;
    color: #ffffff;
    font-size: 28px;
    line-height: 1.15;
    font-weight: 700;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

@media (max-width: 480px) {
    .description h2 {
        margin-bottom: 18px;
    }

    .description h2 .text {
        font-size: 22px;
        padding: 8px 14px;
    }
}

.description {
    padding: 40px 0;
    background: #fff;
}

.description_slider {
    position: relative;
    padding: 0 0 46px;
}

.description_slider .swiper-slide {
    height: auto;
}

.description .text_block {
    margin: 0;
    padding: 0;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.10);
}

.description .text_block h2 {
    margin: 0;
    padding: 18px 14px 10px;
    text-align: center;
    background: #fff;
}

.description .text_block .text {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    background: #111827;
    color: #fff;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 700;
}

.description .text_block img {
    display: block;
    width: 100%;
    height: auto;
}

.description_slider__pagination {
    bottom: 8px !important;
}

.description_slider__pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #cbd5e1;
    opacity: 1;
}

.description_slider__pagination .swiper-pagination-bullet-active {
    background: #2563eb;
}

.description_slider__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(17, 24, 39, 0.72);
    z-index: 5;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

.description_slider__nav::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
}

.description_slider__nav--prev {
    left: 10px;
}

.description_slider__nav--prev::before {
    transform: translate(-35%, -50%) rotate(-135deg);
}

.description_slider__nav--next {
    right: 10px;
}

.description_slider__nav--next::before {
    transform: translate(-65%, -50%) rotate(45deg);
}

@media (max-width: 480px) {
    .description {
        padding: 28px 0;
    }

    .description .text_block {
        border-radius: 14px;
    }

    .description .text_block .text {
        font-size: 19px;
        padding: 7px 12px;
    }

    .description_slider__nav {
        width: 36px;
        height: 36px;
    }
}

/**/

/*description*/
.product_specs {
    padding: 28px 18px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.product_specs__head {
    margin-bottom: 18px;
    text-align: center;
}

.product_specs__head .text {
    display: inline-block;
    padding: 10px 16px;
    border-radius: 14px;
    background: #111827;
    color: #ffffff;
    font-size: 28px;
    line-height: 1.15;
    font-weight: 700;
}

.product_specs__image {
    margin-bottom: 22px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

.product_specs__image img {
    display: block;
    width: 100%;
    height: auto;
}

.product_specs__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 22px;
}

.product_specs__item {
    padding: 14px 16px;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid #dbe3ee;
}

.product_specs__item p {
    margin: 0;
    font-size: 17px;
    line-height: 1.5;
    color: #374151;
}

.product_specs__item strong {
    color: #111827;
    font-weight: 700;
}

.product_specs__set {
    padding: 18px 16px;
    border-radius: 18px;
    background: #111827;
    color: #ffffff;
}

.product_specs__set_title {
    margin: 0 0 14px;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 700;
    text-align: center;
    color: #ffffff;
}

.product_specs__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product_specs__list li {
    position: relative;
    padding-left: 28px;
    font-size: 17px;
    line-height: 1.45;
    color: #e5e7eb;
}

.product_specs__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #22c55e;
    font-weight: 700;
}

@media (max-width: 480px) {
    .product_specs {
        padding: 20px 14px;
        border-radius: 18px;
    }

    .product_specs__head .text {
        font-size: 22px;
        padding: 8px 12px;
        border-radius: 12px;
    }

    .product_specs__item p,
    .product_specs__list li {
        font-size: 15px;
    }

    .product_specs__set_title {
        font-size: 20px;
    }
}

/**/

@media (max-width: 440px) {
    .container {
        padding: 0 10px;
    }

    .header_top_timer_block p {
        font-size: 10px;
        line-height: 12px;
        width: 70px;
    }

    ul.header_bottom_tabs li a {
        padding: 10px 5px;
        font-size: 14px;
    }

    h1.offer_title .text {
        font-size: 38px;
        line-height: 35px;
    }

    h2 .text {
        font-size: 38px;
        line-height: 35px;
    }

    h4.feedback_item_name {
        font-size: 18px;
    }

    .feedback_item_text {
        font-size: 16px;
    }

    span.feedback_item_date {
        font-size: 14px;
    }

    .text_block p {
        font-size: 16px;
    }

    .characteristic_item .text {
        font-size: 14px;
    }

    .btn {
        font-size: 18px;
    }

    a.modal_bottom_button {
        font-size: 16px;
        padding: 14px 10px;
        width: auto;
    }

    .price_new {
        font-size: 24px;
    }

    .old_price {
        font-size: 16px;
    }

    .sale_block {
        font-size: 18px;
        padding: 2px 6px;
    }

    .price_left-new {
        font-size: 36px;
    }

    .price_left-old {
        font-size: 26px;
    }

    h4.feedback_item_name span {
        font-size: 16px;
    }

    .modal_bottom {
        padding: 10px;
        height: 80px;
    }

    footer {
        margin: 0 0 80px 0;
    }
}

.swiper-wrapper {
    height: auto !important;
}

.timer .timer_item:last-child .count:before,
.timer_block1 .timer_item:last-child .count:before {
    content: none !important;
}

.footer {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    padding: 20px 12px 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    background: #fff;
}

.footer__group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 14px;
    background: #24385c;
    border: 1px solid #35507f;
    border-radius: 16px;
}

.footer__title {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 8px 12px;
    border-radius: 10px;
    background: #ffffff;
    border: 1px solid #d6e0ee;
    color: #1a2a49;
    text-align: center;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer__row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer__row--banks .footer__item {
    width: calc((100% - 20px) / 3);
}

.footer__row--delivery .footer__item {
    width: calc((100% - 10px) / 2);
}

.footer__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 78px;
    padding: 12px 8px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    text-decoration: none;
    color: #111827;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.footer__item:active {
    transform: scale(0.98);
}

.footer__item:hover {
    border-color: #d1d5db;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.footer__logo {
    width: 110px;
    height: 50px;
    object-fit: contain;
    border-radius: 6px;
    flex: 0 0 50px;
}

.footer__name {
    font-size: 15px;
    line-height: 1.2;
    font-weight: 700;
    color: #1a2a49;
}

.footer__legal {
    border: 0;
    padding: 0;
    background: none;
    color: #fff;
    font: inherit;
    line-height: inherit;
    text-decoration: underline;
    cursor: pointer;
}
