@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

body {
    font-family: Arial;
    font-size: 16px;
    line-height: 20px;
    background-color: #ffffff;
}

.slider__selected-color {
    margin: 10px 0px;
    text-align: start;
    font-weight: bold;
}

.colors,
.sizes {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.color,
.size {
    cursor: pointer;
    text-align: center;
}

.color {
    width: 50px;
    height: 50px;
    padding: 5px;
    border: 2px solid transparent;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid rgb(195, 195, 195);
}

.color.selected {
    border: 2px solid black;

}

.size {
    padding: 10px;
    border-radius: 2px;
    border: 1px solid gray;
}

.size.selected {
    background-color: black;
    color: white;
    border: 1px solid black;
}


img {
    max-width: 100%;
    display: block;
    border-style: none;
}

.wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: 100vh;
    /* overflow: hidden; */
    max-width: 1340px;
    margin: 0 auto;
}

.lender {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
}

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

.content p {
    font-size: 14px;
    line-height: 18px;
    margin: 10px 0;
}

h1 {
    font-size: 32px;
    font-weight: bold;
    margin: 0 0 20px 0;

}

.order-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: crimson;
}

.order-timer__container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 10px;
    color: #fff;
    font-size: 14px;
    width: 100%;
    gap: 5px;
}

.order-timer__container svg {
    max-height: 20px;
}

.order-timer {
    z-index: 9999;
    position: sticky !important;
    top: 0;

}

@media (max-width:767px) {
    h1 {
        font-size: 24px;

    }
}


.container {
    max-width: 1380px;
    margin: 0 auto;
    width: 100%;
    /* padding-left: 16px; */
    /* padding-right: 16px; */
}

.quiz {
    padding: 10px 0;
}

.question__text {
    font-size: 15px;
    line-height: 18px;
    margin: 10px 0;
}

.question__text span {
    font-weight: 700;
}

.question__answer {
    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;
    height: 48px;
    text-align: center;
    margin: 5px 0;

    background-color: var(--color-primary);
    font-family: Arial;
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    color: var(--text-color) !important;
}

.question__item {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    display: none;
}

.question__item.active {
    opacity: 1;
    transform: translateY(0);
    display: block;
}


.result {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}


#choose {
    display: none;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}


.preload {
    display: none;
}

.preload h2 {
    margin: 0 0 20px 0;
    font-weight: 700;
    font-size: 32px;
}

.preload p {
    font-size: 14px;
    line-height: 18px;
    padding: 5px 0 5px 25px;
    font-weight: 700;
    display: none;
}

.spinner-border {
    width: 2rem;
    height: 2rem;
    margin: 0 auto;
    vertical-align: text-bottom;
    border: .25em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    -webkit-animation: spinner-border .75s linear infinite;
    animation: spinner-border .75s linear infinite;
}

@-webkit-keyframes spinner-border {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spinner-border {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.sr-only {
    left: 0;
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.choose-block {
    display: none;
}

.boxes {
    background-size: cover;
    border-radius: 20px;
    position: relative;
    text-align: center;
}

.boxes {
    margin: 10px auto;
    max-width: 800px;
}

.boxes,
.boxes .choose__item img,
.boxes cbox {
    width: 100%;
}

.div_img_gift {
    width: 100%;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.boxes>.choose__item {
    position: relative;
    display: inline-block;
    width: 23.8%;
    -webkit-transition-duration: .2s;
    -o-transition-duration: .2s;
    transition-duration: .2s;
    cursor: pointer;
}


.boxes>.choose__item {
    position: relative;
    display: inline-block;
    width: 23.8%;
    -webkit-transition-duration: .2s;
    -o-transition-duration: .2s;
    transition-duration: .2s;
    cursor: pointer;
}


.boxes {
    background-size: cover;
    border-radius: 20px;
    position: relative;
    text-align: center
}

.choose__item {
    position: relative;
    margin: 20px 0
}

.choose__item>div {
    position: absolute
}

.choose__item .choose {
    position: relative
}

.choose_trasera {
    z-index: 1
}

.choose_tapa {
    z-index: 3
}

.choose {
    z-index: 2
}

.choose-block {
    display: none
}

.choose_gift {
    z-index: 1
}

.boxes .choose__item.abierta>.choose_tapa {
    -webkit-animation: tapa_superior 2s forwards;
    animation: tapa_superior 2s forwards
}

.boxes .choose__item.premiazo>.choose_gift {
    -webkit-animation: tapa_superior 4s infinite alternate;
    animation: tapa_superior 4s infinite alternate
}

.boxes,
.boxes .choose__item img,
.boxes cbox {
    width: 100%
}

.instructions {
    padding: 10px;
    background-color: #e11e26;
    border-radius: 4px;
    color: #fff;
    margin-top: 20px
}

.boxes {
    margin: 10px auto;
    max-width: 800px
}

.box-o-t {
    position: absolute;
    top: -34%
}

.boxes .discover .box-o-b {
    z-index: 1;
    position: relative
}

.boxes .iphone {
    width: 76%;
    height: auto;
    position: absolute;
    z-index: 0;
    top: -20%;
    left: 12%;
    -webkit-transition-duration: .7s;
    -o-transition-duration: .7s;
    transition-duration: .7s
}

.boxes .discover>.iphone {
    top: -60%
}

.boxes>.choose__item {
    position: relative;
    display: inline-block;
    width: 23.8%;
    -webkit-transition-duration: .2s;
    -o-transition-duration: .2s;
    transition-duration: .2s;
    cursor: pointer
}

@media (max-width:767px) {
    .boxes>.choose__item {
        width: 32.5%
    }


    .boxes>.choose__item:nth-child(-n+4) {
        display: none
    }
}

@media (max-width:479px) {
    .boxes>.choose__item {
        width: 32%
    }
}

@media (max-width:319px) {
    .boxes>.choose__item {
        width: 48%
    }

    .boxes>.choose__item:nth-child(-n+5) {
        display: none
    }
}


.modal {
    max-width: 500px;
    margin: 1.75rem auto;
    padding: 1rem
}

@media only screen and (max-width:500px) {
    .modal {
        margin: .5rem
    }
}

.modal h2 {
    margin: 5px 0 20px 0;
    font-weight: 700;
    color: #575757;
    font-size: 25px;
    line-height: 1.2;
    text-align: center
}

.modal img {
    max-width: 100%;
    max-height: 20vh;
    margin: 0 auto
}

.modal p {
    line-height: 18px;
    margin: 10px 0;
    font-size: 14px;
    color: #797979;
    font-weight: 300
}

.modal-button {
    display: inline-block;
    background-color: var(--color-primary);
    color: var(--text-color) !important;
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    font-size: 17px;
    font-weight: 500;
    padding: 10px 32px;
    margin: 26px 5px 0 5px
}

.tremor_lower {
    -webkit-animation: tremor_lower 2s;
    animation: tremor_lower 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite
}

@-webkit-keyframes tremor_lower {
    0% {
        -webkit-transform: translate(1px, 1px) rotate(0);
        transform: translate(1px, 1px) rotate(0)
    }

    10% {
        -webkit-transform: translate(-1px, -2px) rotate(-1deg);
        transform: translate(-1px, -2px) rotate(-1deg)
    }

    20% {
        -webkit-transform: translate(-3px, 0) rotate(1deg);
        transform: translate(-3px, 0) rotate(1deg)
    }

    30% {
        -webkit-transform: translate(3px, 2px) rotate(0);
        transform: translate(3px, 2px) rotate(0)
    }

    40% {
        -webkit-transform: translate(1px, -1px) rotate(1deg);
        transform: translate(1px, -1px) rotate(1deg)
    }

    50% {
        -webkit-transform: translate(-1px, 2px) rotate(-1deg);
        transform: translate(-1px, 2px) rotate(-1deg)
    }

    60% {
        -webkit-transform: translate(-3px, 1px) rotate(0);
        transform: translate(-3px, 1px) rotate(0)
    }

    70% {
        -webkit-transform: translate(3px, 1px) rotate(-1deg);
        transform: translate(3px, 1px) rotate(-1deg)
    }

    80% {
        -webkit-transform: translate(-1px, -1px) rotate(1deg);
        transform: translate(-1px, -1px) rotate(1deg)
    }

    90% {
        -webkit-transform: translate(1px, 2px) rotate(0);
        transform: translate(1px, 2px) rotate(0)
    }

    100% {
        -webkit-transform: translate(1px, -2px) rotate(-1deg);
        transform: translate(1px, -2px) rotate(-1deg)
    }
}

@keyframes tremor_lower {
    0% {
        -webkit-transform: translate(1px, 1px) rotate(0);
        transform: translate(1px, 1px) rotate(0)
    }

    10% {
        -webkit-transform: translate(-1px, -2px) rotate(-1deg);
        transform: translate(-1px, -2px) rotate(-1deg)
    }

    20% {
        -webkit-transform: translate(-3px, 0) rotate(1deg);
        transform: translate(-3px, 0) rotate(1deg)
    }

    30% {
        -webkit-transform: translate(3px, 2px) rotate(0);
        transform: translate(3px, 2px) rotate(0)
    }

    40% {
        -webkit-transform: translate(1px, -1px) rotate(1deg);
        transform: translate(1px, -1px) rotate(1deg)
    }

    50% {
        -webkit-transform: translate(-1px, 2px) rotate(-1deg);
        transform: translate(-1px, 2px) rotate(-1deg)
    }

    60% {
        -webkit-transform: translate(-3px, 1px) rotate(0);
        transform: translate(-3px, 1px) rotate(0)
    }

    70% {
        -webkit-transform: translate(3px, 1px) rotate(-1deg);
        transform: translate(3px, 1px) rotate(-1deg)
    }

    80% {
        -webkit-transform: translate(-1px, -1px) rotate(1deg);
        transform: translate(-1px, -1px) rotate(1deg)
    }

    90% {
        -webkit-transform: translate(1px, 2px) rotate(0);
        transform: translate(1px, 2px) rotate(0)
    }

    100% {
        -webkit-transform: translate(1px, -2px) rotate(-1deg);
        transform: translate(1px, -2px) rotate(-1deg)
    }
}


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

@media (max-width: 556px) {
    .content p {
        font-size: 14px;
        line-height: 18px;
        margin: 8px 0;
    }

    .popup h2 {
        margin: 5px 0 10px 0 !important;
    }

    .popup__text>p {
        line-height: 19px;
        font-size: 16px !important;
    }

    .modal-button {
        font-size: 20px;
        margin-top: 10px;
    }
}


@media (max-width: 556px) {
    .choose__title {
        font-size: 18px;
    }
}


.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);

}

.modal-content {
    position: relative;
    background: white;
    padding: 20px;
    max-width: 500px;
    width: 99%;

    text-align: center;
    z-index: 10000;
    margin: auto;

}

body.modal-open {
    overflow: hidden;
}

#modal1 {
    margin: auto;
    max-width: none;
}

.modal.fade .modal-content {
    opacity: 0;
    transform: translateY(-50px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.modal.fade.show .modal-content {
    opacity: 1;
    transform: translateY(0);
}

/* Стилі для коробок */
.choose__item {

    cursor: pointer;

}

.choose_tapa,
.choose_trasera,
.choose_gift,
.choose {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.choose_tapa img,
.choose_trasera img,
.choose_gift img,
.choose img {
    width: 100%;
    height: 100%;
}

.choose__item.open .choose_tapa {
    transform: translateY(-30px);
    /* Підйом кришки коробки */
    transition: transform 0.5s ease-out;
}

.choose__item.open .choose_gift {
    display: block;
    animation: revealPrize 0.5s ease-out;
}



@keyframes revealPrize {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.choose_tapa.opened {
    transform: translateY(-30%);
    /* Піднімання кришки */
    transition: transform 1.5s;
}





.modal.show {
    display: block;
}

/* Затемнення фону при відкритті модального вікна */
.overlay-hidden {
    display: none;
}

.overlay-hidden:not(.overlay-hidden) {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9;
}

/* Анімація підняття кришки */
.choose_tapa {
    transition: transform 0.5s ease-in-out;
}


/* Анімація появи призу */
.choose_gift {
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.choose_gift.show-gift {
    opacity: 1;
    transform: scale(1);
}


.modal.show {
    display: block;
}

.modal.fade {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.modal.show.fade {
    opacity: 1;
}

.modal-open {
    overflow: hidden;
    /* Забороняє прокрутку сторінки під час відкритого модального вікна */
}

#modal2,
#modal3 {
    margin: auto;
    max-width: none;

}

.lift-up {
    animation: liftAnimation 1s ease-in-out forwards;
}

@media (max-width: 768px) {
    .lift-up {
        animation: liftAnimationMobile 1s ease-in-out forwards;
    }
}

@keyframes liftAnimation {
    from {
        top: 0
    }

    to {
        top: -35px
    }
}

@keyframes liftAnimationMobile {
    from {
        top: 0
    }

    to {
        top: -25px
    }
}


.circle-loader {
    border: 1px solid rgba(0, 0, 0, .2);
    border-left-color: #5cb85c;
    -webkit-animation: loader-spin 1.2s infinite linear;
    animation: loader-spin 1.2s infinite linear;
    position: relative;
    display: inline-block;
    vertical-align: top;
    border-radius: 50%;
    width: 7em;
    height: 7em;
}

.check-icon {
    display: none;
}

.check-icon.draw:after {
    -webkit-animation-duration: .8s;
    animation-duration: .8s;
    -webkit-animation-timing-function: ease;
    animation-timing-function: ease;
    -webkit-animation-name: check-icon;
    animation-name: check-icon;
    -webkit-transform: scaleX(-1) rotate(135deg);
    -ms-transform: scaleX(-1) rotate(135deg);
    transform: scaleX(-1) rotate(135deg);
}

.check-icon:after {
    opacity: 1;
    height: 3.5em;
    width: 1.75em;
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top;
    border-right: 3px solid #5cb85c;
    border-top: 3px solid #5cb85c;
    content: "";
    left: 1.75em;
    top: 3.5em;
    position: absolute;
}

@-webkit-keyframes check-icon {
    0% {
        height: 0;
        width: 0;
        opacity: 1
    }

    20% {
        height: 0;
        width: 1.75em;
        opacity: 1
    }

    40% {
        height: 3.5em;
        width: 1.75em;
        opacity: 1
    }

    100% {
        height: 3.5em;
        width: 1.75em;
        opacity: 1
    }
}

@keyframes check-icon {
    0% {
        height: 0;
        width: 0;
        opacity: 1
    }

    20% {
        height: 0;
        width: 1.75em;
        opacity: 1
    }

    40% {
        height: 3.5em;
        width: 1.75em;
        opacity: 1
    }

    100% {
        height: 3.5em;
        width: 1.75em;
        opacity: 1
    }
}

.load-complete {
    -webkit-animation: none;
    animation: none;
    border-color: #5cb85c;
    -webkit-transition: border .5s ease-out;
    -o-transition: border .5s ease-out;
    transition: border .5s ease-out;
}

.prefil {

    font-size: 14px;
    color: #545454;
    line-height: 1.15;
    word-wrap: break-word;

}

.prefil__container {
    gap: 5px;
    padding: 0 15px;
    display: flex
;
    flex-wrap: wrap !important;
    flex-direction: column;
    align-items: center;
}



.prefil__container>.item:nth-of-type(1) {
    width: -webkit-calc(60% - 15px);
    width: calc(60% - 15px);
}

.prefil__container>.item:nth-of-type(2) {
    width: -webkit-calc(40% - 15px);
    width: calc(40% - 15px);
    padding-top: 45px;
}

.prefil__label {
    margin-bottom: 15px;
    margin-top: 10px;
}

.prefil-product-category {
    padding: 10px 0px;
    padding-top: 15px;
}

.prefil__label .product-name h4 {
    font-size: 1.5em;
    font-weight: bold;
    color: black;
}

@media (max-width: 1199px) {
    .prefil__container>.item:nth-of-type(1) {
        width: 100%;
        /* margin-bottom: 30px; */
    }

    .prefil__container>.item:nth-of-type(2) {
        width: 100%;
        padding-top: 15px;
    }
}

.slider {
    text-align: center;
}

.slider__selected {
    display: flex;
    justify-content: center;
    margin-bottom: 22px;
}

.slider__selected img {


    max-height: 350px;
}

@media (max-width: 375px) {
    .slider__selected img {


        max-height: 250px;
    }

    .slider__item {
        height: auto !important;
    }
}

.slider__list {
    max-width: 500px;
    display: flex;
    gap: 20px;
    margin: auto;
    margin-top: 5px;
    justify-content: center;
}

@media (max-width: 575px) {
    .slider__list {

        gap: 10px;
    }
}


.slider__item {
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    width: 80px;
    height: 80px;
    padding: 5px;
    border: 2px solid #ccc;
    border-radius: 8px;
}

.slider__item--active {
    border-color: black;
}

.slider__item img {
    width: 50px;
    height: auto;
}

.order-summary {

    margin-bottom: 30px;
}

.order-summary__separator {
    border: 1px solid rgb(231, 231, 231);
    height: 1px;
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
}

.order-summary__item {
    display: flex;
    justify-content: space-between;
    margin: 10px 0;
}

.order-summary__total-price {
    display: flex;
    justify-content: space-between;
    margin: 10px 0;
}

.secure-payment {

    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    max-width: 480px;
    margin: 0 auto;

    position: relative;
    margin-top: 20px;
}



.secure-payment__title {
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 20px;
    width: 100%;
    position: absolute;
    top: -10px;
    left: 50%;
    color: black;
    transform: translateX(-50%);


}

.secure-payment__icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}



.secure-payment__item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 35px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 2px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

@media (max-width: 575px) {
    .secure-payment__title {
        font-size: 12px;

        width: 70%;
    }


    .secure-payment__item img {
        width: 90%;

    }

    .secure-payment__icons {
        display: flex;
        justify-content: center;
        gap: 10px;
    }

    .secure-payment {


        padding: 10px;

    }
}

@media (max-width: 375px) {
    .secure-payment__item {
        width: 53px;
        height: 26px;
    }

    h1 {
        font-size: 24px;
    }
}



.secure-payment__item img {
    width: 90%;
    padding: 5px;
}

.form-container__title {
    font-size: 1em;
    font-weight: 600;
    margin-bottom: 10px;
}

.form__row {
    display: flex;
    flex-direction: row;
}

.form__group {
    position: relative;
    width: 100%;
    line-height: 1rem;

}

.form__group.form__group__half {
    width: 50%;
}

.form__group input,
.form__group select {
    padding: 10px;
    background: #fafafa;

    color: black;
    border: 1px solid #ccc;
    border-radius: 3px;
    box-sizing: border-box;
    width: 100%;
    line-height: 1rem;
    font-size: 14px;
}

.form__group .form__label {
    position: absolute;
    font-size: 12px;
    top: 25%;
    transform: translateY(-110%);
    left: 9px;
    padding: 0 3px;
    color: #777;
    background-color: #fafafa;
    border-radius: 3px;

    pointer-events: none;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form__row {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.form__submit-btn {

    background-image: none;
    background-color: var(--color-primary);
    color: var(--text-color) !important;
    font-size: 1em;
    font-weight: 600;
    border-radius: 4px;
    padding: 13px 15px 12px;
    margin-top: 0;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;

}

.form__submit-btn:hover {
    opacity: 0.8;
}


.badge {

    min-width: 100px;
    max-width: 200px;
    margin: 0 auto;
    margin-top: 50px;
    overflow: hidden;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 50px;
}

.badge__title {
    font-size: 16px;
    font-weight: normal;
    font-weight: bold;
    color: #38B336;
    margin: 0 auto;
    text-align: center;
    padding: 10px 0;
}

.badge__subtitle {
    padding: 3px 10px;
    font-size: 12px;
    font-weight: normal;
    color: #999;
    text-align: center;
    background: #eee;
}

.iti {
    width: 100%;
}

.iti__tel-input {
    width: 100%;
    padding-left: 70px !important;
    height: 40px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
}

.iti__flag-container {
    pointer-events: none;
    position: absolute;
    left: 10px;
}

.iti__selected-flag {
    background-color: #f8f8f8;
    border-right: 1px solid #ddd;
    border-radius: 5px 0 0 5px;
    padding-left: 10px;
    padding-right: 10px;
    height: 100%;
    display: flex;
    align-items: center;
}

.iti__dropdown {
    display: none !important;
}

.fade-out,
.fade-in {
    transition: opacity 0.5s ease-in-out;
    opacity: 0;
}

.fade-in {
    opacity: 0;
}

.fade-in.show {
    opacity: 1;
}

.fade-out.show {
    opacity: 0;
}

main.prefil {
    display: none;
    /* Спочатку елементи приховані */
}

main.lender.fade-out {
    opacity: 0;
}

main.prefil.fade-in {
    opacity: 1;
    display: block;
}

#faqBtn {
    width: 60px;
    height: 60px;
    position: fixed;
    bottom: 10%;
    right: 1%;
    z-index: 999;
    cursor: pointer;
}

.faq__container {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    z-index: 99;
    overflow: auto;
    width: 100%;
    max-width: 420px;
    padding: 10px;
    background: #f5f5f5;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out
}

.faq__container.active {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0)
}

.faq__container #faqClose {
    fill: var(--color-primary);
    display: block;
    margin-right: 8px;
    margin-left: auto;
    cursor: pointer
}

.faq__list {
    padding: 10px
}

.faq__item {
    border-bottom: 2px solid var(--color-primary);
    padding: 10px 7px 0 7px
}

.accordion__header {
    padding-right: 25px;
    font-weight: 600;
    font-size: 16px;
    position: relative;
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    margin-bottom: 16px;
    cursor: pointer
}

.accordion__header:after {
    content: '';
    position: absolute;
    right: 0;
    top: 5px;
    width: 18px;
    height: 10px;
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out
}

.accordion__header.active {
    color: var(--color-primary)
}

.accordion__header.active:after {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg)
}

.accordion__body {
    transition: .3s ease-in-out;
    margin-bottom: 16px;
    font-size: 16px;
    display: none
}

.scrollToTopBtn {
    background-color: var(--color-primary);
    outline: 0 !important;
    border: none;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    line-height: 48px;
    width: 60px;
    height: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: fixed;
    bottom: calc(10% + 75px);
    right: 1%;
    z-index: 100;
    opacity: 0;
    -webkit-transform: translateY(100px);
    -ms-transform: translateY(100px);
    transform: translateY(100px);
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease
}

.showBtn {
    opacity: 1 !important;
    -webkit-transform: translateY(0) !important;
    -ms-transform: translateY(0) !important;
    transform: translateY(0) !important
}


.notifications {
    position: fixed;
    top: 1%;
    right: 1%;
    max-width: 320px;
    z-index: 5
}

.notifis {
    display: none;
    list-style-type: none;
    margin: 0;
    padding: 0
}

.notifi {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background-color: #fff;
    border-radius: 20px;
    border: 1px solid #e2dede;
    padding: 6px 0;
    margin-top: 5px
}

.hiddenNoty {
    animation-name: hiddenNoty;
    animation-duration: 1.5s;
    animation-timing-function: linear;
    -webkit-animation-name: hiddenNoty;
    -webkit-animation-duration: 1.5s;
    -webkit-animation-timing-function: linear
}

@-webkit-keyframes hiddenNoty {
    0% {
        opacity: 1
    }

    50% {
        opacity: .5
    }

    100% {
        opacity: 0
    }
}

@keyframes hiddenNoty {
    0% {
        opacity: 1
    }

    50% {
        opacity: .5
    }

    100% {
        opacity: 0
    }
}

.showNoty {
    animation-name: showNoty;
    animation-duration: 1.5s;
    animation-timing-function: linear;
    -webkit-animation-name: showNoty;
    -webkit-animation-duration: 1.5s;
    -webkit-animation-timing-function: linear
}

@-webkit-keyframes showNoty {
    0% {
        opacity: 0
    }

    50% {
        opacity: .5
    }

    100% {
        opacity: 1
    }
}

@keyframes showNoty {
    0% {
        opacity: 0
    }

    50% {
        opacity: .5
    }

    100% {
        opacity: 1
    }
}

.notifi__img {
    max-width: 50px;
    margin-left: 5px
}


.notifi__content__bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.notifi__time {
    font-size: 13px
}

.notifi__icons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: 10px
}

.notifi__icons img {
    margin-right: 10px;
    width: 25px;
    height: 25px
}


.notifi__btn {
    margin: 0 10px 0 5px
}

.notifi__btn-close {
    vertical-align: inherit
}

.notifications__item__img img {
    max-width: 50px;
    max-height: 50px;

    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain
}

.notifications__item__icons img {
    max-width: 20px;
    max-height: 20px;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain
}

.notifi__content {
    padding: 0 5px
}

.notifi__content__header {
    font-size: 13px
}

.notifications__item__content__bottom {
    display: flex;
    gap: 10px;
    align-items: center
}

.notifi-name {
    font-weight: 700
}

.notifi-address {
    text-decoration: underline
}

.notifi__content__desc {
    font-size: 16px;
    font-weight: 500;
    color: #134094
}

.notifications {
    position: fixed;
    top: 1%;
    right: 1%;
    max-width: 320px;
    z-index: 5
}

.notifications__items {
    list-style-type: none;
    margin: 0;
    padding: 0
}

.notifications__item {
    display: flex;
    justify-content: space-between;
    background-color: #fff;
    gap: 10px;
    border-radius: 20px;
    border: 1px solid #e2dede;
    padding: 6px 10px;
    margin-top: 5px;
    align-items: center;
}



.notifications__item__img img {
    width: 100%;
    height: 100%;
    object-fit: contain
}

.notifications__item__content__desc {
    color: #134094;
}

.notifications__item-address {
    text-decoration: underline;
}

.align-items-center {
    -webkit-box-align: center !important;
    -webkit-align-items: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
}

.flex-wrap {
    -webkit-flex-wrap: wrap !important;
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
}

.d-flex {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
}

#breadcrumbs .clickable {
    text-decoration: underline;
}

.clickable {
    cursor: pointer;
    color: black;
    text-decoration: underline;
}

#breadcrumbs .fa {
    margin: 0 10px;
}

.fa-angle-right {
    margin: 0 6px;
}

.rating .icons {
    font-size: 16px;
    margin-right: 8px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-rating__stars {
    color: var(--color-primary);
	font-size: 20px;
}

.product-rating__reviews {
    text-decoration: none;
    color: black;

    text-decoration: underline;
}

.product-rating__article {
    text-decoration: none;
    color: black;

}

.product-labels {
    margin-top: 8px;
    display: flex;
    gap: 8px;
}

.product-labels__badge {
    display: inline-block;
    padding: 5px 15px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: bold;
    border-radius: 20px;
    text-align: center;
}

.product-labels__badge--bestseller {
    background-color: #eaf9f9;
    color: #000;
}

.product-labels__badge--discount {
    background-color: var(--color-primary);
    color: #fff;
}

.size-selector {
    width: 98%;
    margin: auto;

    padding: 20px;
    border-radius: 10px;

}

.size-selector__tabs {
    display: flex;
    justify-content: center;
}

.size-selector__tab {
    flex: 1;
    padding: 10px;
    cursor: pointer;
    font-weight: bold;
    text-align: center;
    border-bottom: 3px solid transparent;
    transition: border-color 0.3s;
}

.size-selector__tab--active {
    border-bottom: 3px solid var(--color-primary)
}

.size-selector__sizes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
    gap: 10px;
    margin-top: 15px;
}

.size-selector__size {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    border: 0.5px solid var(--color-primary);
    cursor: pointer;
    font-weight: bold;
    text-align: center;
    border-radius: 5px;

    /* Квадратні кнопки */
    transition: background-color 0.2s, color 0.2s;
}

.size-selector__size--selected {
    background-color: var(--color-primary);
    color: white;
}

@media (max-width: 400px) {
    .size-selector__size {
        font-size: 14px;
    }
}

.color-selector {

    width: 100%;
    display: flex;
    margin: auto;
    flex-wrap: wrap;
    margin-top: 20px;

}

.color-selector__list {
    display: flex;
    gap: 10px;

    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0 auto;
}

.color-selector__item {
    padding: 5px;
    width: 50px;
    height: 50px;
    border: 0.5px solid var(--color-primary);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}


.color-selector__item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.color-selector__item--active {
    border-color: black;
    border-width: 2px;
    transform: scale(1.1);
}


.colors,
.sizes {
    margin-top: 10px;
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.color,
.size {
    cursor: pointer;
    text-align: center;
}

.color {
    width: 50px;
    height: 50px;
    padding: 5px;
    border: 2px solid transparent;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid rgb(195, 195, 195);
}

.color.selected {
    border: 2px solid var(--color-primary)
}

.size {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.size.selected {


    border: 1px solid var(--color-primary)
}

body {
    font-family: "Roboto", serif;
    font-size: 16px;
    line-height: 20px;
}

img {
    max-width: 100%;
    display: block;
    border-style: none;
}

.content p {
    font-size: 14px;
    line-height: 18px;
    margin: 10px 0;
}

.wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: 100vh;

    max-width: 1340px;
    margin: 0 auto;
}

.lender {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
}

#text-block {
    padding: 10px 0;
}




.banner {
    background-color: var(--color-primary);
    border-top: 1px solid #18449d;
    color: var(--text-color);
    padding: 10px;
    text-align: center;
    font-size: 20px;
}





@media (max-width: 768px) {

    .banner {
        font-size: 12px;

    }
}

@media (max-width: 375px) {

    .banner {
        font-size: 10px;

    }
}


h1 {
    font-size: 20px;

    margin: 0 0 20px 0;
    text-align: center;
}

@media (max-width: 768px) {

    h1 {
        font-size: 18px;

    }
}

.container {
    max-width: 1380px;
    margin: 0 auto;
    width: 100%;

}

.quiz {
    margin: 0 15px;
    border: #ccc 1px solid;
    border-radius: 8px;
    opacity: 0;
    /* Початково прихований */
    visibility: hidden;
    /* Початково прихований */
    padding: 10px 0;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.quiz.show {
    opacity: 1;
    visibility: visible;
}

.question__text {
    font-size: 15px;
    line-height: 18px;
    margin: 15px 0;
    margin-top: 0px;
    text-align: center;
    font-weight: 700;
}

.question__text span {
    font-weight: 400;
    color: #777;
    margin-bottom: 10px;
}

.question__text .product-title {
    font-weight: unset;
    color: unset;
    margin-bottom: 0px;
}

.question__answer {
    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;
    height: 48px;
    text-align: center;
    margin: 12px 0;

    background-color: var(--color-primary);
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    color: var(--text-color) !important;
}

.date {
    font-weight: 800;
}

footer {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    color: #5e5e5f;
    padding: 20px 0;
    font-size: 14px;
    line-height: 18px;
    text-align: center;
}



.question__answer:hover {
    background-color: #155591;
}



.promo {
    display: flex;
    align-items: center;
    margin: 0 auto;
    justify-content: center;
    max-width: 430px;
    width: 100%;
    font-weight: bold;
    flex-direction: column;




    gap: 10px;
}

.promo div {
    display: flex;
    align-items: center;
    margin: 0 auto;
    width: 100%;
    justify-content: space-between;
    font-size: 50px;
    font-weight: bold;



    gap: 2px;
}

.promo__text {
    padding: 25px 10px;
    border-radius: 6px;
}

.promo__text--blue {
    background-color: #283593;
    color: white;
}

.promo__text--black {
    color: black;
}

.promo__text--red {
    background-color: #c62828;
    color: white;
}

@media (max-width: 768px) {
    .promo div {
        font-size: 32px;
    }

    .promo__text {
        padding: 10px 5px;
    }

}

.promo-separator {
    height: 1px;
    border-radius: 8px;

    width: 100%;

    min-width: 280px;
    max-width: 400px;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    margin-top: 8px;
    margin-bottom: 8px;
    background-color: var(--color-primary)
}


.promo-info {
    text-align: center;


}

.promo-info__text {
    font-size: 16px;
    color: #646465;
    padding: 0px 16px;
    margin-bottom: 20px;
}

.promo-info__stats {
    display: flex;
    justify-content: space-between;
    text-align: center;

}

.promo-info__stat {
    flex: 1;
    padding: 15px;
    border-right: 1px solid #ddd;
}

.promo-info__stat:last-child {
    border-right: none;
}

.promo-info__value {
    font-size: 22px;
    font-weight: bold;
    transition: transform 0.3s ease-in-out;
}

.promo-info__label {
    display: block;
    font-size: 14px;
    color: #666;
}

.promo-info__stat--blue {
    border-top: 4px solid #3f51b5;
    border-bottom: 4px solid #3f51b5;
}

.promo-info__stat--red {
    color: #d32f2f;
    border-top: 4px solid rgb(255, 222, 7);
    border-bottom: 4px solid rgb(255, 222, 7);
}

.promo-info__stat--orange {
    border-top: 4px solid #f57c00;
    border-bottom: 4px solid #f57c00;
}

@media (max-width: 768px) {
    .promo-info__text {
        font-size: 14px;

    }

    .promo div {
        justify-content: center;
    }

    .promo-info__value {
        font-size: 16px;
    }

    .promo-info__label {
        font-size: 12px;

    }

    .promo-info__text {
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {



    .promo-info__label {
        font-size: 10px;

    }

    .promo-info__text {
        font-size: 12px !important;
        margin-bottom: 5px;
        text-align: center;
    }

    .promo-info__stat {
        padding: 5px;
        border-right: 1px solid #ddd;
    }

    .promo-warning {

        font-size: 10px !important;

    }
}

.promo-warning {
    text-align: center;
    font-size: 14px;
    padding: 0px 16px;
    color: #8b8b8d;
    margin-top: 20px;
}

.survey-banner {
    margin-top: 20px;
    border: #ccc 1px solid;
    padding: 20px;
    border-radius: 8px;
    margin-left: 16px;
    margin-right: 16px;
    text-align: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.survey-banner.hide {
    opacity: 0;
    visibility: hidden;
}

.modal .product-price {
    color: #c62828;
    font-weight: bold;
}

.timer-text {
    color: #c62828;
    font-weight: bold;
}

.survey-banner__title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.survey-banner__content {
    text-align: start;
    max-width: 600px;
    margin: 0 auto;
}

.survey-banner__text {
    font-size: 16px;
    color: #333;
    margin-bottom: 20px;
}

.survey-banner__button {
    background-color: var(--color-primary);
    color: var(--text-color);
    padding: 10px 20px;
    border: none;

    cursor: pointer;
    font-size: 24px;
    width: 100%;
}

.survey-banner__button:hover {
    opacity: 0.8;
}

@media (max-width: 480px) {


    .survey-banner__text {
        font-size: 14px;
        color: #333;
        margin-bottom: 20px;
    }

    .survey-banner__button {
        font-size: 20px;
    }
}


.quiz {
    display: none;
    margin-top: 20px;
    padding: 20px;

    border-radius: 8px;
}

.quiz__text {
    font-size: 14px;
    color: #555;
}

.question__item {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    display: none;
}

.question__item.active {
    opacity: 1;
    transform: translateY(0);
    display: block;
}


.result {
  display: flex !important;
  align-items: flex-start;  /* чтобы текст шел сверху, а не давил кружок */
  margin: 10px 0;
  gap: 8px;                 /* расстояние между кругом и текстом */
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.circle {
	flex-shrink: 0;
    width: 26px !important;
    height: 26px !important;
    border: 2px solid #ccc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    margin-right: 8px;
    color: transparent;
    border-color: #ccc;
    transition: border-color 0.5s ease-in-out, color 0.5s ease-in-out;
}

/* Зелена галочка */
.check {
    border-color: #4CAF50;
    color: #4CAF50;
}

/* Плавна поява */
.show {
    opacity: 1;
}

#choose {
    display: none;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}


.preload {
    padding: 0 16px;
    margin-top: 10px;
    display: none;
}

.preload h2 {
    margin: 0 0 20px 0;
    font-weight: 700;
    font-size: 32px;
}

.preload p {
    font-size: 14px;
    line-height: 18px;
    padding: 5px 0 5px 25px;
    font-weight: 700;
    display: none;
}

.spinner-border {
    width: 2rem;
    height: 2rem;
    margin: 0 auto;
    vertical-align: text-bottom;
    border: .25em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    -webkit-animation: spinner-border .75s linear infinite;
    animation: spinner-border .75s linear infinite;
}

@-webkit-keyframes spinner-border {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spinner-border {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.sr-only {
    left: 0;
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}


.modal {
    max-width: 500px;
    margin: 1.75rem auto;
    padding: 1rem;


}

@media only screen and (max-width:500px) {
    .modal {
        margin: .5rem
    }


    .preload h2 {
        font-size: 18px;
    }

}

.modal h2 {
    margin: 5px 0 20px 0;
    font-weight: 700;
    color: #575757;
    font-size: 25px;
    line-height: 1.2;
    text-align: center
}

.modal img {
    max-width: 100%;
    max-height: 20vh;
    margin: 0 auto
}

.modal p {
    line-height: 18px;
    margin: 10px 0;
    font-size: 14px;
    color: #797979;
    font-weight: 300
}

.modal-button {

    display: inline-block;
    background-color: var(--color-primary);
    color: var(--text-color) !important;
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    font-size: 17px;
    font-weight: 500;
    padding: 10px 32px;
    margin: 26px 5px 0 5px;
    cursor: pointer;
    text-align: center;
    align-self: center;
    width: fit-content;
}

.tremor_lower {
    -webkit-animation: tremor_lower 2s;
    animation: tremor_lower 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite
}

@-webkit-keyframes tremor_lower {
    0% {
        -webkit-transform: translate(1px, 1px) rotate(0);
        transform: translate(1px, 1px) rotate(0)
    }

    10% {
        -webkit-transform: translate(-1px, -2px) rotate(-1deg);
        transform: translate(-1px, -2px) rotate(-1deg)
    }

    20% {
        -webkit-transform: translate(-3px, 0) rotate(1deg);
        transform: translate(-3px, 0) rotate(1deg)
    }

    30% {
        -webkit-transform: translate(3px, 2px) rotate(0);
        transform: translate(3px, 2px) rotate(0)
    }

    40% {
        -webkit-transform: translate(1px, -1px) rotate(1deg);
        transform: translate(1px, -1px) rotate(1deg)
    }

    50% {
        -webkit-transform: translate(-1px, 2px) rotate(-1deg);
        transform: translate(-1px, 2px) rotate(-1deg)
    }

    60% {
        -webkit-transform: translate(-3px, 1px) rotate(0);
        transform: translate(-3px, 1px) rotate(0)
    }

    70% {
        -webkit-transform: translate(3px, 1px) rotate(-1deg);
        transform: translate(3px, 1px) rotate(-1deg)
    }

    80% {
        -webkit-transform: translate(-1px, -1px) rotate(1deg);
        transform: translate(-1px, -1px) rotate(1deg)
    }

    90% {
        -webkit-transform: translate(1px, 2px) rotate(0);
        transform: translate(1px, 2px) rotate(0)
    }

    100% {
        -webkit-transform: translate(1px, -2px) rotate(-1deg);
        transform: translate(1px, -2px) rotate(-1deg)
    }
}

@keyframes tremor_lower {
    0% {
        -webkit-transform: translate(1px, 1px) rotate(0);
        transform: translate(1px, 1px) rotate(0)
    }

    10% {
        -webkit-transform: translate(-1px, -2px) rotate(-1deg);
        transform: translate(-1px, -2px) rotate(-1deg)
    }

    20% {
        -webkit-transform: translate(-3px, 0) rotate(1deg);
        transform: translate(-3px, 0) rotate(1deg)
    }

    30% {
        -webkit-transform: translate(3px, 2px) rotate(0);
        transform: translate(3px, 2px) rotate(0)
    }

    40% {
        -webkit-transform: translate(1px, -1px) rotate(1deg);
        transform: translate(1px, -1px) rotate(1deg)
    }

    50% {
        -webkit-transform: translate(-1px, 2px) rotate(-1deg);
        transform: translate(-1px, 2px) rotate(-1deg)
    }

    60% {
        -webkit-transform: translate(-3px, 1px) rotate(0);
        transform: translate(-3px, 1px) rotate(0)
    }

    70% {
        -webkit-transform: translate(3px, 1px) rotate(-1deg);
        transform: translate(3px, 1px) rotate(-1deg)
    }

    80% {
        -webkit-transform: translate(-1px, -1px) rotate(1deg);
        transform: translate(-1px, -1px) rotate(1deg)
    }

    90% {
        -webkit-transform: translate(1px, 2px) rotate(0);
        transform: translate(1px, 2px) rotate(0)
    }

    100% {
        -webkit-transform: translate(1px, -2px) rotate(-1deg);
        transform: translate(1px, -2px) rotate(-1deg)
    }
}


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

@media (max-width: 556px) {
    .content p {
        font-size: 14px;
        line-height: 18px;
        margin: 8px 0;
    }

    .popup h2 {
        margin: 5px 0 10px 0 !important;
    }

    .popup__text>p {
        line-height: 19px;
        font-size: 16px !important;
    }

    .modal-button {
        font-size: 20px;
        margin-top: 10px;
    }
}


@media (max-width: 556px) {
    .choose__title {
        font-size: 18px;
    }
}


.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.modal-overlay {

    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);

}

.modal-content {

    position: relative;
    background: white;
    padding: 20px;
    max-width: 500px;
    width: 99%;
    display: flex;
    flex-direction: column;

    text-align: start;
    z-index: 777;
    margin: auto;
    margin-top: 150px;
}

body.modal-open {
    overflow: hidden;
}

#modal1 {
    margin: auto;
    max-width: none;
}

.modal.fade .modal-content {
    opacity: 0;
    transform: translateY(-50px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.modal.fade.show .modal-content {
    opacity: 1;
    transform: translateY(0);
}

/* Стилі для коробок */
.choose__item {

    cursor: pointer;

}

.choose_tapa,
.choose_trasera,
.choose_gift,
.choose {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.choose_tapa img,
.choose_trasera img,
.choose_gift img,
.choose img {
    width: 100%;
    height: 100%;
}

.choose__item.open .choose_tapa {
    transform: translateY(-30px);
    /* Підйом кришки коробки */
    transition: transform 0.5s ease-out;
}

.choose__item.open .choose_gift {
    display: block;
    animation: revealPrize 0.5s ease-out;
}



@keyframes revealPrize {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.choose_tapa.opened {
    transform: translateY(-30%);
    /* Піднімання кришки */
    transition: transform 1.5s;
}





.modal.show {
    display: block;
}

/* Затемнення фону при відкритті модального вікна */
.overlay-hidden {
    display: none;
}

.overlay-hidden:not(.overlay-hidden) {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9;
}

/* Анімація підняття кришки */
.choose_tapa {
    transition: transform 0.5s ease-in-out;
}


/* Анімація появи призу */
.choose_gift {
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.choose_gift.show-gift {
    opacity: 1;
    transform: scale(1);
}


.modal.show {
    display: block;
}

.modal.fade {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.modal.show.fade {
    opacity: 1;
}

.modal-open {
    overflow: hidden;
    /* Забороняє прокрутку сторінки під час відкритого модального вікна */
}

#modal2,
#modal3 {
    margin: auto;
    max-width: none;

}

.lift-up {
    animation: liftAnimation 1s ease-in-out forwards;
}

@media (max-width: 768px) {
    .lift-up {
        animation: liftAnimationMobile 1s ease-in-out forwards;
    }
}

@keyframes liftAnimation {
    from {
        top: 0
    }

    to {
        top: -35px
    }
}

@keyframes liftAnimationMobile {
    from {
        top: 0
    }

    to {
        top: -25px
    }
}


.circle-loader {
    border: 1px solid rgba(0, 0, 0, .2);
    border-left-color: #5cb85c;
    -webkit-animation: loader-spin 1.2s infinite linear;
    animation: loader-spin 1.2s infinite linear;
    position: relative;
    display: inline-block;
    vertical-align: top;
    border-radius: 50%;
    width: 7em;
    height: 7em;
}

.check-icon {
    display: none;
}

.check-icon.draw:after {
    -webkit-animation-duration: .8s;
    animation-duration: .8s;
    -webkit-animation-timing-function: ease;
    animation-timing-function: ease;
    -webkit-animation-name: check-icon;
    animation-name: check-icon;
    -webkit-transform: scaleX(-1) rotate(135deg);
    -ms-transform: scaleX(-1) rotate(135deg);
    transform: scaleX(-1) rotate(135deg);
}

.check-icon:after {
    opacity: 1;
    height: 3.5em;
    width: 1.75em;
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top;
    border-right: 3px solid #5cb85c;
    border-top: 3px solid #5cb85c;
    content: "";
    left: 1.75em;
    top: 3.5em;
    position: absolute;
}

@-webkit-keyframes check-icon {
    0% {
        height: 0;
        width: 0;
        opacity: 1
    }

    20% {
        height: 0;
        width: 1.75em;
        opacity: 1
    }

    40% {
        height: 3.5em;
        width: 1.75em;
        opacity: 1
    }

    100% {
        height: 3.5em;
        width: 1.75em;
        opacity: 1
    }
}

@keyframes check-icon {
    0% {
        height: 0;
        width: 0;
        opacity: 1
    }

    20% {
        height: 0;
        width: 1.75em;
        opacity: 1
    }

    40% {
        height: 3.5em;
        width: 1.75em;
        opacity: 1
    }

    100% {
        height: 3.5em;
        width: 1.75em;
        opacity: 1
    }
}

.load-complete {
    -webkit-animation: none;
    animation: none;
    border-color: #5cb85c;
    -webkit-transition: border .5s ease-out;
    -o-transition: border .5s ease-out;
    transition: border .5s ease-out;
}

.prefil {
    height: 100%;
    font-size: 14px;
    color: #545454;
    line-height: 1.15;
    word-wrap: break-word;

}

.prefil__container {
    gap: 5px;
    padding: 0 15px;
    display: flex;
    flex-wrap: wrap !important;
	flex-direction: row;
}



.prefil__container>.item:nth-of-type(1) {
    width: -webkit-calc(60% - 15px);
    width: calc(60% - 15px);
}

.prefil__container>.item:nth-of-type(2) {
    width: -webkit-calc(40% - 15px);
    width: calc(40% - 15px);
    padding-top: 15px;
}

.prefil__label {
    margin-bottom: 15px;
    margin-top: 15px;
}

.prefil__label .product-name h4 {
    font-size: 1.5em;
    font-weight: bold;
    text-align: center;
}

.hide-summary {
    display: none;
}

@media (max-width: 1199px) {
    .hide-summary {
        display: flex;
    }

    .prefil__container>.item:nth-of-type(1) {
        width: 100%;

    }

    .prefil__container>.item:nth-of-type(2) {
        width: 100%;
        padding-top: 15px;
    }
}

.slider {
    text-align: center;
}

.slider p {
    text-align: start;
    font-size: 16px;
    font-weight: bold;
    margin: 10px 0px;
}

.slider__selected {
    display: flex;
    justify-content: center;
    margin-bottom: 22px;
}

.slider__selected img {


    max-height: 350px;
}

.slider__list {
    display: flex;
    gap: 10px;
    justify-content: start;
}

@media (max-width: 575px) {
    .slider__list {
        gap: 10px;
    }
}


.slider__item {
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    width: 80px;
    height: auto;
    padding: 5px;
    border: 2px solid #ccc;
    border-radius: 8px;

}

.slider__item--active {
    border-color: var(--color-primary)
}

.slider__item img {
    width: 50px;
    height: auto;
}

.order-summary {

    margin-bottom: 30px;
}

.order-summary__separator {
    border: 1px solid rgb(231, 231, 231);
    height: 1px;
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
}

.order-summary__item {
    display: flex;
    justify-content: space-between;
    margin: 10px 0;
}

.order-summary__total-price {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin: 10px 0;
}

.secure-payment {

    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    max-width: 480px;
    margin: 0 auto;

    position: relative;
    margin-top: 40px;
    margin-bottom: 20px;
}



.secure-payment__title {
    max-width: 50%;
    background: white;
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 20px;
    width: 100%;
    position: absolute;
    top: -7px;
    left: 50%;
    color: black;
    transform: translateX(-50%);


}

.secure-payment__icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}



.secure-payment__item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 35px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 2px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

@media (max-width: 575px) {
    .order-summary {
        border-bottom: 1px solid #e0e0e0;
        ;
    }

    .secure-payment__title {
        font-size: 12px;

        width: 70%;
    }


    .secure-payment__item img {
        width: 90%;

    }

    .secure-payment__icons {
        display: flex;
        justify-content: center;
        gap: 10px;
    }


}

@media (max-width: 420px) {
    .secure-payment__item {
        width: 53px;
        height: 26px;
    }

    .secure-payment__icons {
        gap: 20px;
    }

    .secure-payment {
        padding: 20px 20px;
    }
}



.secure-payment__item img {
    width: 90%;
    padding: 5px;
}

.form-container__title {
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 12px;
    margin-top: 10px;
}

.form__row {
    display: flex;
    flex-direction: row;
}

.form__group {
    position: relative;
    width: 100%;
    line-height: 1rem;

}

.form__group.form__group__half {
    width: 50%;
}

.form__group input {
    padding: 10px;
    background: #fafafa;

    color: black;
    border: 1px solid #ccc;
    border-radius: 3px;
    box-sizing: border-box;
    width: 100%;
    line-height: 1rem;
    font-size: 14px;
}

.form__group .form__label {
    position: absolute;
    font-size: 12px;
    top: 25%;
    transform: translateY(-110%);
    left: 9px;
    padding: 0 3px;
    color: #777;
    background-color: #fafafa;
    border-radius: 3px;

    pointer-events: none;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form__row {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.form__submit-btn {

    background-image: none;
    background-color: var(--color-primary);
    color: var(--text-color) !important;
    font-size: 1em;
    font-weight: 600;
    border-radius: 4px;
    padding: 13px 15px 12px;
    margin-top: 0;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;

}

.form__submit-btn:hover {
    opacity: 0.8;
}


.badge {

    min-width: 100px;
    max-width: 200px;
    margin: 0 auto;
    margin-top: 50px;
    overflow: hidden;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 50px;
}

.badge__title {
    font-size: 16px;
    font-weight: normal;
    font-weight: bold;
    color: #38B336;
    margin: 0 auto;
    text-align: center;
    padding: 10px 0;
}

.badge__subtitle {
    padding: 3px 10px;
    font-size: 12px;
    font-weight: normal;
    color: #999;
    text-align: center;
    background: #eee;
}

.iti {
    width: 100%;
}

.iti__tel-input {
    width: 100%;
    padding-left: 70px !important;
    height: 40px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
}

.iti__flag-container {
    pointer-events: none;
    position: absolute;
    left: 10px;
}

.iti__selected-flag {
    background-color: #f8f8f8;
    border-right: 1px solid #ddd;
    border-radius: 5px 0 0 5px;
    padding-left: 10px;
    padding-right: 10px;
    height: 100%;
    display: flex;
    align-items: center;
}

.iti__dropdown {
    display: none !important;
}

.fade-out,
.fade-in {
    transition: opacity 0.5s ease-in-out;
    opacity: 0;
}

.fade-in {
    opacity: 0;
}

.fade-in.show {
    opacity: 1;
}

.fade-out.show {
    opacity: 0;
}

main.prefil {
    display: none;
    /* Спочатку елементи приховані */
}

main.lender.fade-out {
    opacity: 0;
}

main.prefil.fade-in {
    opacity: 1;
    display: block;
}

#faqBtn {
    width: 60px;
    height: 60px;
    position: fixed;
    bottom: 10%;
    right: 1%;
    z-index: 999;
    cursor: pointer;
}

.faq__container {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    z-index: 99;
    overflow: auto;
    width: 100%;
    max-width: 420px;
    padding: 10px;
    background: #f5f5f5;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out
}

.faq__container.active {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0)
}

.faq__container #faqClose {
    fill: var(--color-primary);
    display: block;
    margin-right: 8px;
    margin-left: auto;
    cursor: pointer
}

.faq__list {
    padding: 10px
}

.faq__item {
    border-bottom: 2px solid var(--color-primary);
    padding: 10px 7px 0 7px
}

.accordion__header {
    padding-right: 25px;
    font-weight: 600;
    font-size: 16px;
    position: relative;
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    margin-bottom: 16px;
    cursor: pointer
}

.accordion__header:after {
    content: '';
    position: absolute;
    right: 0;
    top: 5px;
    width: 18px;
    height: 10px;
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out
}

.accordion__header.active {
    color: var(--color-primary)
}

.accordion__header.active:after {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg)
}

.accordion__body {
    transition: .3s ease-in-out;
    margin-bottom: 16px;
    font-size: 16px;
    display: none
}

.scrollToTopBtn {
    background-color: var(--color-primary);
    outline: 0 !important;
    border: none;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    line-height: 48px;
    width: 60px;
    height: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: fixed;
    bottom: calc(10% + 75px);
    right: 1%;
    z-index: 100;
    opacity: 0;
    -webkit-transform: translateY(100px);
    -ms-transform: translateY(100px);
    transform: translateY(100px);
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease
}

.showBtn {
    opacity: 1 !important;
    -webkit-transform: translateY(0) !important;
    -ms-transform: translateY(0) !important;
    transform: translateY(0) !important
}


.notifications {
    position: fixed;
    top: 1%;
    right: 1%;
    max-width: 320px;
    z-index: 5
}

.notifis {
    display: none;
    list-style-type: none;
    margin: 0;
    padding: 0
}

.notifi {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background-color: #fff;
    border-radius: 20px;
    border: 1px solid #e2dede;
    padding: 6px 0;
    margin-top: 5px
}

.hiddenNoty {
    animation-name: hiddenNoty;
    animation-duration: 1.5s;
    animation-timing-function: linear;
    -webkit-animation-name: hiddenNoty;
    -webkit-animation-duration: 1.5s;
    -webkit-animation-timing-function: linear
}

@-webkit-keyframes hiddenNoty {
    0% {
        opacity: 1
    }

    50% {
        opacity: .5
    }

    100% {
        opacity: 0
    }
}

@keyframes hiddenNoty {
    0% {
        opacity: 1
    }

    50% {
        opacity: .5
    }

    100% {
        opacity: 0
    }
}

.showNoty {
    animation-name: showNoty;
    animation-duration: 1.5s;
    animation-timing-function: linear;
    -webkit-animation-name: showNoty;
    -webkit-animation-duration: 1.5s;
    -webkit-animation-timing-function: linear
}

@-webkit-keyframes showNoty {
    0% {
        opacity: 0
    }

    50% {
        opacity: .5
    }

    100% {
        opacity: 1
    }
}

@keyframes showNoty {
    0% {
        opacity: 0
    }

    50% {
        opacity: .5
    }

    100% {
        opacity: 1
    }
}

.notifi__img {
    max-width: 50px;
    margin-left: 5px
}


.notifi__content__bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.notifi__time {
    font-size: 13px
}

.notifi__icons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: 10px
}

.notifi__icons img {
    margin-right: 10px;
    width: 25px;
    height: 25px
}


.notifi__btn {
    margin: 0 10px 0 5px
}

.notifi__btn-close {
    vertical-align: inherit
}

.notifications__item__img img {
    max-width: 50px;
    max-height: 50px;

    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain
}

.notifications__item__icons img {
    max-width: 20px;
    max-height: 20px;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain
}

.notifi__content {
    padding: 0 5px
}

.notifi__content__header {
    font-size: 13px
}

.notifications__item__content__bottom {
    display: flex;
    gap: 10px;
    align-items: center
}

.notifi-name {
    font-weight: 700
}

.notifi-address {
    text-decoration: underline
}

.notifi__content__desc {
    font-size: 16px;
    font-weight: 500;
    color: #134094
}

.notifications {
    position: fixed;
    top: 1%;
    right: 1%;
    max-width: 320px;
    z-index: 5
}

.notifications__items {
    list-style-type: none;
    margin: 0;
    padding: 0
}

.notifications__item {
    display: flex;
    justify-content: space-between;
    background-color: #fff;
    gap: 10px;
    border-radius: 20px;
    border: 1px solid #e2dede;
    padding: 6px 10px;
    margin-top: 5px;
    align-items: center;
}



.notifications__item__img img {
    width: 100%;
    height: 100%;
    object-fit: contain
}

.notifications__item__content__desc {
    color: #134094;
}

.notifications__item-address {
    text-decoration: underline;
}

.modal-partners {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.modal-partners p {
    font-size: 12px;
}

.modal-partners img {
    max-width: 160px;
}


@media(max-width:500px) {
    .modal h2 {
        margin: 5px 0 0px 0;
    }

    .modal-partners {

        gap: 5px;
    }

    .modal img {
        max-height: 20vh;
    }

    .modal h2 {

        font-size: 18px;

    }

    .modal p {

        font-size: 12px;
    }

    .modal-partners p {
        text-align: center;
        font-size: 8px !important;
    }

    .modal-button {
        font-size: 16px;
        padding: 5px 16px;
    }

    .modal-partners img {
        max-width: 100px;
    }

    footer {
        font-size: 12px;
    }


    .result {
        font-size: 14px;
    }
}

#confetti-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;

    z-index: 9999;

}


.progress-container {
    display: flex;
    align-items: center;
    max-width: 300px;
    margin: 0 auto;
    text-align: center;
    justify-content: space-between;
}

.progress-container:nth-child(2) {
    max-width: 325px;
}

.progress__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.progress__circle {
    opacity: 0.8;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid gray;
    background: lightgray;
}

.progress__line {
    flex-grow: 1;
    height: 2px;
    background: lightgray;

}

.progress__step--active .progress__circle {
    border-color: black;
    background: white;
    opacity: 1;
}

.progress__label {
    margin-top: 5px;
    margin-left: 12px;
    font-size: 12px;
    text-align: left;
}

.progress__step--active .progress__label {
    font-weight: bold;
}



.hide-summary__button {
    rotate: -180deg;
}

.hide-summary {
    margin-top: 20px;

    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.hide-summary div {
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
    width: 100%;
}

.hide-summary div svg {
    max-height: 25px;
}

.product-info {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.5s ease-in-out;
}

.product-info.open {
    max-height: 1000px;

}

.order-summary {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.5s ease-in-out;
}

.order-summary.open {
    max-height: 500px;
    /* Змінюй це значення відповідно до висоти вмісту */
}

.hide-summary__button {
    transition: transform 0.3s ease-in-out;
    cursor: pointer;
}

.survey-banner__button {
    animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.align-items-center {
    -webkit-box-align: center !important;
    -webkit-align-items: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
}

.justify-content-end {
    -webkit-box-pack: end !important;
    -webkit-justify-content: flex-end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
}

.d-flex {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
}

.old-price .discount {
    background-color: #df0000;
    color: #fff;
    font-size: 14px;
    border-radius: 8px;
    padding: 5px 10px;
    margin-right: 8px;
}

.old-price .price {
    font-weight: 600;
}

.rating {
    font-size: 14px;
}

.mb-15 {
    margin-bottom: 15px;
}

.align-items-center {
    -webkit-box-align: center !important;
    -webkit-align-items: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
}

.d-flex {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
}

.clickable {
    cursor: pointer;
}

.rating .icons {
    font-size: 16px;
    margin-right: 8px;
}

.red-color {
    color: #ff8201;
}

.align-items-center {
    -webkit-box-align: center !important;
    -webkit-align-items: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
}

.rating .last-star .grey-color {
    color: #ccc;
}

.grey-color {
    color: #ccc;
}

.rating .last-star {
    position: relative;
}

.rating .last-star .red-color {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
}

.size-selector {
    width: 98%;
    margin: auto;

    padding: 20px;
    border-radius: 10px;
}

.size-selector__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.size-selector__title {
    font-weight: bold;
    color: #000;
}

.size-selector__guide {
    font-weight: normal;
    color: #000;
    text-decoration: underline;
    cursor: pointer;
}

.size-selector__footer {
    margin-top: 15px;
}

.size-selector__width {
    font-weight: bold;
    color: #000;
}

.size-selector__tabs {
    display: flex;
    justify-content: center;
}

.size-selector__tab {
    flex: 1;
    padding: 10px;
    cursor: pointer;
    font-weight: bold;
    text-align: center;
    border-bottom: 3px solid transparent;
    transition: border-color 0.3s;
}

.size-selector__tab--active {
    border-bottom: 3px solid var(--color-primary)
}

.size-selector__sizes {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-top: 15px;
}

.size-selector__size {
    display: flex;
    justify-content: center;
    position: relative;
    align-items: center;
    padding: 10px;
    border: 0.5px solid var(--color-primary);
    cursor: pointer;
    font-weight: bold;
    text-align: center;
    border-radius: 5px;

    /* Квадратні кнопки */
    transition: background-color 0.2s, color 0.2s;
}

.size-selector__size--selected {
    background-color: var(--color-primary);
    color: white;
}

.size-selector__size.line-through::before {
    width: 105%;
    height: 1px;
    background-color: #999;
    content: "";
    display: block;
    position: absolute;
    transform: rotate(-35deg);
    top: 50%;
    left: 0;
    margin-top: -1px;
}

.size-selector__size.disabled {
    background-color: #f5f5f5;
    color: #999;
    cursor: not-allowed;
    border-color: #ddd;
}

.size-selector__size.disabled:hover {
    background-color: #f5f5f5;
    color: #999;
    border-color: #ddd;
}

@media (max-width: 400px) {
    .size-selector__size {
        font-size: 14px;
    }
}

.color-selector {

    width: 100%;
    display: flex;
    margin: auto;
    flex-wrap: wrap;
    margin-top: 20px;

}

.color-selector__list {
    display: flex;
    gap: 10px;

    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0 auto;
}

.color-selector__item {
    padding: 5px;
    width: 50px;
    height: 50px;
    border: 0.5px solid var(--color-primary);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}


.color-selector__item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.color-selector__item--active {
    border-color: black;
    border-width: 2px;
    transform: scale(1.1);
}

.width-selector {
    width: 98%;
    margin: auto;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.width-selector__label {
    font-weight: bold;
    margin-bottom: 10px;
}

.width-selector__options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 10px;
}

.width-selector__option {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border: 0.5px solid var(--color-primary);
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
    transition: background 0.2s, color 0.2s, border 0.2s;
    gap: 10px;
}

.width-selector__option--selected {

    border: 2.5px solid var(--color-primary);
}

.width-selector__option img {
    max-width: 29px;
    max-height: 29px;
    object-fit: contain;
    margin-right: 10px;
}

.width-selector__option:hover {
    opacity: 0.85;
}


.width-selector,
.size-selector {
    padding: 0 !important;
}

.size-selector__size {
    overflow: hidden;
}

.comments-review .stars {
    font-size: 15px;
}

.tech-specs {
  max-width: 600px;
  margin: 0 auto;
  padding: 1em;
  font-family: Arial, sans-serif;
  color: #222;
  border-top: 1px solid #ccc;
}

/* Стили для заголовков */
.tech-specs h2 {
  margin: 0 0 1em;
  font-size: 1.4em;
  text-transform: uppercase;
}
.tech-specs h3 {
  margin: 1.5em 0 0.5em;
  font-size: 1em;
  font-weight: bold;
  border-bottom: 1px solid #eee;
  padding-bottom: 0.6em;
}

/* Ключ: делаем dl сеткой из двух колонок */
.ds-specs {
  display: grid;
  grid-template-columns: 1fr auto; /* левая колонка — гибкая, правая — по содержимому */
  column-gap: 1em;                  /* расстояние между колонками */
  row-gap: 0.5em;                  /* расстояние между строками */
  margin: 0; 
  padding: 0;
  list-style: none;
}

/* Сброс отступов у dt/dd */
.ds-specs dt,
.ds-specs dd {
  margin: 0;
  padding: 0;
}

/* Стили для терминала (названия характеристики) */
.ds-specs dt {
  font-weight: 600;
  align-self: start;  /* выравниваем по верхней границе контейнера */
}

/* Стили для описания (значения) */
.ds-specs dd {
  text-align: right;
  color: #757575;
}

@media (max-width: 500px) {
  .ds-specs {
    grid-template-columns: 1fr; /* в одну колонку */
  }
  .ds-specs dd {
    text-align: left;
	margin-left: 10px;
  }
}

.ds-specs {
    /* -ms-grid-columns: (1fr)[2]; */
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: var(--spacing-m);
    display: -ms-grid;
    display: grid;
    gap: 4px;
}

.ds-specs dt {
    all: revert;
    word-break: break-word;
}

.timer {
    color: white;
    display: flex !important;
    text-align: center;
    position: sticky !important;
    top: 0;
    width: 100%;
    background-color: #ce2c2c;
    padding: 13px 15px 12px;
    font-size: 1em;
    gap: 5px;
    align-items: center;
    justify-content: center;
	z-index: 9999;
}


.product-labels__badge--black{
    background-color: #ffe600;
    color: #000;
}




.size-selector {
    width: 98%;
    margin: auto;
    background: white;
    padding: 20px;
    border-radius: 10px;

}

.size-selector__tabs {
    display: flex;
    justify-content: center;
}

.size-selector__tab {
    flex: 1;
    padding: 10px;
    cursor: pointer;
    font-weight: bold;
    text-align: center;
    border-bottom: 3px solid transparent;
    transition: border-color 0.3s;
}

.size-selector__tab--active {
    border-bottom: 3px solid var(--color-primary)
}

.size-selector__sizes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
    gap: 10px;
    margin-top: 15px;
}

.size-selector__size {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    border: 0.5px solid var(--color-primary);
    cursor: pointer;
    font-weight: bold;
    text-align: center;
    border-radius: 5px;

    /* Квадратні кнопки */
    transition: background-color 0.2s, color 0.2s;
}

.size-selector__size--selected {
    background-color: var(--color-primary);
    color: white;
}

@media (max-width: 400px) {
    .size-selector__size {
        font-size: 14px;
    }
}

.product-configurator {
    margin: 6px 0 18px;
}

.gender-selector {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 14px;
    border-bottom: 1px solid #d7dce2;
}

.gender-selector__tab {
    position: relative;
    padding: 0 0 8px;
    border: 0;
    background: transparent;
    color: #16263c;
    font-size: 20px;
    line-height: 1.1;
    cursor: pointer;
}

.gender-selector__tab--active {
    font-weight: 700;
}

.gender-selector__tab--active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 3px;
    background: #0e4f86;
}

.product-configurator__slider-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 12px;
}

.product-configurator__selected {
    width: 250px;
    max-width: calc(100% - 110px);
}

.product-configurator__selected img {
    display: block;
    width: 100%;
    height: auto;
}

.product-configurator__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    background: #d7dce2;
    color: #1b2330;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
}

.product-configurator__label {
    margin: 10px 0 12px;
    font-size: 13px;
    color: #111;
}

.product-configurator__colors {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
}

/* .product-configurator__color {
    width: 60px;
    height: 60px;
    border: 0;
    border-bottom: 4px solid transparent;
    overflow: hidden;
    cursor: pointer;
} */

/* .product-configurator__color img {
    width: 100%;
    height: 100%;
    object-fit: cover;
} */

/* .product-configurator__color--active {
    border-bottom-color: #0b4062;
} */

.product-configurator__size-block {
    margin-top: 6px;
}

.product-configurator__sizes {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 4px;
}

.product-configurator__size {
    min-height: 36px;
    border: 1px solid #aeb8c4;
    background: #fff;
    color: #16263c;
    font-size: 16px;
	border-radius: 4px;
    cursor: pointer;
}

.product-configurator__size--selected {
    background: #0b4062;
    border-color: #0b4062;
    color: #fff;
}

@media (max-width: 767px) {
    .gender-selector__tab {
        font-size: 17px;
    }

    .product-configurator__slider-row {
        gap: 10px;
    }

    .product-configurator__selected {
        max-width: calc(100% - 84px);
    }

    .product-configurator__nav {
        width: 32px;
        height: 32px;
        font-size: 27px;
        display: flex;
        align-items: center;
        justify-content: center;
        line-height: 1; /* важно */
		margin-bottom: -25px;
    }

    /* .product-configurator__colors {
        gap: 8px;
    } */

    /* .product-configurator__color {
        width: 68px;
        height: 58px;
		margin-right: 14px;
    } */

    .product-configurator__sizes {
        gap: 6px;
    }

    .product-configurator__size {
        min-height: 36px;
        font-size: 14px;
    }
}


.product-configurator--rackets .product-configurator__color img {
    display: block;
    width: 58px;
    height: 58px;
    margin: 0 auto;
    object-fit: contain;
}


.color-selector {

    width: 100%;
    display: flex;
    margin: auto;
    flex-wrap: wrap;
    margin-top: 20px;

}

.color-selector__list {
    display: flex;
    gap: 10px;

    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0 auto;
}

.color-selector__item {
    padding: 5px;
    width: 50px;
    height: 50px;
    border: 0.5px solid var(--color-primary);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}


.color-selector__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.color-selector__item--active {
    border-color: black;
    border-width: 2px;
    transform: scale(1.1);
}

        .product-configurator__nav {
            padding-bottom: 2px;
        }