.s-product-main {
    padding-top: 50px;
}

.s-product-swiper {
    height: 350px;
    filter: drop-shadow(0px 4px 15px rgba(0, 0, 0, 0.03));
    -webkit-filter: drop-shadow(0px 4px 15px rgba(0, 0, 0, 0.03));
    border-radius: var(--radius);
    border: 1px solid rgba(30, 30, 30, 0.10);
    background: #FFF;
}

.s-product-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 15px;
}

.s-product-swiper .swiper-slide img {
    max-width: 100%;
    width: auto;
    height: auto;
    max-height: 100%;
}

.s-product-swiper-pagination .rreth-pagination, .variation-pagination {
    background: #0064b542;
}

.s-product-swiper-pagination .rreth-pagination span, .variation-pagination span {
    background: #002C4F;
}

.next-btn-variation svg {
    transform: rotate(180deg);
}

.s-product-info {
    margin-top: 30px;
}

.s-product-price span {
    font-weight: 500;
    color: var(--light-blue);
}

.s-product-price .normal-span {
    font-weight: 400;
    color: var(--black);
    opacity: 0.5;
}

.s-product-price .regular-price {
    color: var(--black) !important;
    opacity: 0.5;
    text-decoration: line-through;
}

.s-product-title {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.s-product-title .heading {
    white-space: unset;
}

.s-product-description {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
}

.s-product-description-heading span {
    font-weight: 600;
    color: var(--light-blue);
}

.s-product-info-title span {
    font-weight: 600;
    color: var(--light-blue);
}

.s-product-description-holder {
    margin-top: 5px;
}

.s-product-description-holder p {
    white-space: pre-wrap;
    text-align: left;
}

.s-product-info-holder {
    margin-top: 20px;
    display: flex;
    flex-direction: column;

}

.s-product-info-item {
    display: flex;
    justify-content: space-between;
    width: 90%;
    border-top: 1px solid rgba(30, 30, 30, 0.10);
    padding-bottom: 5px;
    padding-top: 5px;
}

.no-border-top {
    border: none;
}

.s-product-info-title span {
    font-weight: 500;
}



.s-product-response {
    display: none;
    flex-direction: column;
    gap: 20px;
}

.typing-indicator {
    width: 60px;
    height: 30px;
    position: relative;
    z-index: 4;
    display: none;
}


.typing-circle {
    width: 8px;
    height: 8px;
    position: absolute;
    border-radius: 50%;
    background-color: var(--light-blue);
    left: 15%;
    transform-origin: 50%;
    animation: typing-circle7124 0.5s alternate infinite ease;
}

@keyframes typing-circle7124 {
    0% {
        top: 20px;
        height: 5px;
        border-radius: 50px 50px 25px 25px;
        transform: scaleX(1.7);
    }

    40% {
        height: 8px;
        border-radius: 50%;
        transform: scaleX(1);
    }

    100% {
        top: 0%;
    }
}

.typing-circle:nth-child(2) {
    left: 45%;
    animation-delay: 0.2s;
}

.typing-circle:nth-child(3) {
    left: auto;
    right: 15%;
    animation-delay: 0.3s;
}

.typing-shadow {
    width: 5px;
    height: 4px;
    border-radius: 50%;
    background-color: rgba(218, 165, 32, 0.2);
    position: absolute;
    top: 30px;
    transform-origin: 50%;
    z-index: 3;
    left: 15%;
    filter: blur(1px);
    animation: typing-shadow046 0.5s alternate infinite ease;
}

@keyframes typing-shadow046 {
    0% {
        transform: scaleX(1.5);
    }

    40% {
        transform: scaleX(1);
        opacity: 0.7;
    }

    100% {
        transform: scaleX(0.2);
        opacity: 0.4;
    }
}

.typing-shadow:nth-child(4) {
    left: 45%;
    animation-delay: 0.2s;
}

.typing-shadow:nth-child(5) {
    left: auto;
    right: 15%;
    animation-delay: 0.3s;
}


.sending-data {
    display: none;
}



.active-response {
    display: flex;
}

.s-product-not-active {
    display: flex;
    align-items: center;
    gap: 10px;
}

.s-product-loading {
    display: block;
}

.holding-response {
    display: none;
}

.s-product-variation-items-holder {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 16px;
}

.s-product-variation-image {
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: center;
}

.s-product-variation-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.s-product-variation-item {
    width: 100%;
    display: block;
    text-decoration: none;
}


.s-product-variation-items .sub-title {
    font-weight: bolder;
    display: block;
    text-transform: uppercase;
}

.s-product-variation-title span {
    transition: all .3s ease-in-out;
    display: block;
    text-align: center;
    margin-top: 10px;

}

.active-product-variation-item .s-product-variation-title span {
    color: var(--light-blue)
}

.s-product-variation-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.s-product-variation-error span {
    color: #dc3545;
    display: none;
    margin-top: 10px;
}

.active-error span {
    display: block;
}

.s-product-variation-swiper {
    width: 100%;
}

.s-product-price-and-offer {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 20px;
    cursor: pointer;
}

.s-product-description-holder .py-5 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important
}

.s-product-offert-modal-form .wpcf7 form.invalid .wpcf7-response-output, .s-product-offert-modal-form .wpcf7 form.unaccepted .wpcf7-response-output, .s-product-offert-modal-form .wpcf7 form.payment-required .wpcf7-response-output {
    border: none !important;
    padding: 0px !important;
    margin: 0px !important;
    margin-top: 20px !important;
}


.s-product-fixed-modal {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    min-height: 100vh;
    background: rgba(0, 0, 0, 0.74);
    padding-top: 100px;

    opacity: 0;
    visibility: hidden;
    z-index: -1;
    transform: translate3d(-100%, 0, 0.0001px);
    transition: opacity .5s ease-in-out, visibility .5s ease-in-out, transform .5s ease-in-out, z-index .5s ease-out;
}

.active-s-product-fixed-modal {
    opacity: 1;
    visibility: visible;
    z-index: 1000;
    transform: translate3d(0, 0, 0.0001px);
}

.s-product-offert-modal {
    background-color: var(--white);
    padding: 35px 10px 15px 10px;
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    gap: 20px;

    max-height: calc(90vh - 100px);
    overflow-y: auto;
    position: relative;
}

.mbyll-fixed-holder {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 0px;
    margin: 0px;
    width: fit-content;
    border: none;
    background: none;
}

.mbyll-fixed-holder span {
    display: block;
}

.mbyll-fixed-holder {
    display: flex;
    align-items: center;
    gap: 10px;
}

.s-product-offert-modal #product {
    position: absolute;
    left: -10000px;
}

.s-product-offert-modal label {
    position: absolute;
    left: -10000px;
}

.s-product-offert-modal-texts p {
    margin-top: 10px;
}

@media only screen and (min-width:992px) {


    .s-product-variation-image {
        height: 150px;
    }

    .s-product-variation-items {
        gap: 16px;
    }

    .s-product-swiper {
        height: 500px;
    }

    .s-product-swiper .swiper-slide img {
        object-fit: contain;
        max-height: 80%;
    }

    .s-product-main {
        padding-top: 100px;
    }

    .s-product-description {
        width: 80%;
        margin-top: 30px;
    }

    .s-product-price span {
        font-size: 25px;
    }

    .s-product-price .normal-span {
        font-size: 14px !important;
    }

    .s-product-info {
        margin-top: 0;
    }

    .s-product-info-holder {
        margin-top: 30px;
    }

    .s-product-info-item {
        width: 75%;
    }

    .s-product-buttons {
        margin-top: 120px;
        gap: 16px;
    }



    .s-product-not-active {
        gap: 25px;
    }

    .s-product-fixed-modal {
        padding-top: 200px;
    }

    .s-product-offert-modal {
        padding: 45px 40px;
        width: 60%;
        margin-left: 20%;
        max-height: calc(90vh - 200px);
    }

    .mbyll-fixed-holder {
        top: 25px;
        right: 15px;
    }
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .s-product-swiper {
        height: 400px;
    }

    .s-product-offert-modal {
        width: 75%;
        margin-left: 12.5%;
    }
}

@media only screen and (min-width:1200px) and (max-width:1399px) {
    .s-product-swiper {
        height: 400px;
    }

    .s-product-offert-modal {
        width: 75%;
        margin-left: 12.5%;
    }
}

@media only screen and (min-width:1400px) and (max-width:1599px) {
    .s-product-swiper {
        height: 450px;
    }

}

@media only screen and (hover:hoveR) {
    .s-product-variation-item {
        cursor: pointer;
    }

    .s-product-variation-item:hover .s-product-variation-title span {
        color: var(--light-blue);
    }
}