/* Fonts */
.eva--flip-2-fill {
    display: inline-block;
    width: 30px;
    height: 30px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M6.09 19h12l-1.3 1.29a1 1 0 0 0 1.42 1.42l3-3a1 1 0 0 0 0-1.42l-3-3a1 1 0 0 0-1.42 0a1 1 0 0 0 0 1.42l1.3 1.29h-12a1.56 1.56 0 0 1-1.59-1.53V13a1 1 0 0 0-2 0v2.47A3.56 3.56 0 0 0 6.09 19m-.3-9.29a1 1 0 1 0 1.42-1.42L5.91 7h12a1.56 1.56 0 0 1 1.59 1.53V11a1 1 0 0 0 2 0V8.53A3.56 3.56 0 0 0 17.91 5h-12l1.3-1.29a1 1 0 0 0 0-1.42a1 1 0 0 0-1.42 0l-3 3a1 1 0 0 0 0 1.42Z' stroke-width='0.5' stroke='%23000'/%3E%3C/svg%3E");
}

.material-symbols-light--close-rounded {
    display: inline-block;
    width: 30px;
    height: 30px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='m12 12.708l-5.246 5.246q-.14.14-.344.15t-.364-.15t-.16-.354t.16-.354L11.292 12L6.046 6.754q-.14-.14-.15-.344t.15-.364t.354-.16t.354.16L12 11.292l5.246-5.246q.14-.14.345-.15q.203-.01.363.15t.16.354t-.16.354L12.708 12l5.246 5.246q.14.14.15.345q.01.203-.15.363t-.354.16t-.354-.16z' stroke-width='0.5' stroke='%23fff'/%3E%3C/svg%3E");
}



/*CSS za onClick image flip*/
.flip-container {
    width: 100%;
    max-width: 250px;
    /* optional max width */
    aspect-ratio: 1 / 1;
    /* maintain square */
    height: 250px;
    position: relative;
    -webkit-perspective: 1000px;
    -moz-perspective: 1000px;
    -o-perspective: 1000px;
    perspective: 1000px;
    margin: 0px auto 20px;
    text-align: center;
}

.flip-container img {
    border-radius: 10px;
}

.flipcard {
    width: 100%;
    height: 100%;
    position: absolute;
    -webkit-transition: -webkit-transform 1s;
    -moz-transition: -moz-transform 1s;
    -o-transition: -o-transform 1s;
    transition: transform 1s;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -o-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform-origin: 50% 50%;
}

.flipcard div {
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -o-backface-visibility: hidden;
    backface-visibility: hidden;
}

.flipcard img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.flipcard .back {

    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.flipcard.flipped {
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transform: rotateY(180deg);
}




/* Flip CSS END */

.mainproduct figure img {
    border-radius: 10px;
}
.show-mainproduct {
    display: block !important;
}

.mainproduct strong {
    display: block;
    text-align: center;
    color: #fff;
    font-weight: normal;
    font-size: 16px;
}

/* Popup CSS */
.modal-footer {
    background: #271A3A;
    padding: 5px 15px;
}

.productdetail {
    width: 100%;
}

.productdetail span {
    color: #BEBAC4;
}

.productdetail ul {
    margin: 0;
    display: flex;
    align-items: start;
    justify-content: space-between;
    padding: 0px;
}

.productdetail ul li {
    color: #fff;
    list-style: none;
    font-weight: normal;
    border-right: 1px solid #fff;
    padding-right: 20px;
    margin-right: 20px;
}

.modelBox strong {
    text-align: center;
    display: block;
    color: rgba(0, 0, 0, 0.70);
    font-size: 12px;
    font-weight: 500;
    margin-top: 10px;
}

.paracontent p {
    font-size: 16px;
    color: #000;
}

.rightproductname p {
    font-size: 14px;
    margin-top: 10px;
}

.btn-close {
    position: absolute;
    right: -10px;
    top: -10px;
    opacity: 1;
    background: #ff0000;
    color: #fff;
    z-index: 9;
    border-radius: 50%;
    width: 25px;
    height: 25px;
}

.btn-close:hover {
    opacity: 1;
}

.btn-close span {
    width: 25px;
    height: 25px;
}

.closeButton button {
    border-radius: 11px;
    border: 1px solid #481364;
    background: linear-gradient(180deg, rgba(255, 89, 23, 0.50) 0%, rgba(0, 16, 68, 0.01) 100%);
}

.closeButton button:hover {
    background: linear-gradient(90deg, rgba(255, 89, 23, 0.50) 0%, rgba(0, 16, 68, 0.01) 100%);
    border: 1px solid #481364;
}


/* Bottom Tabs */
.pagetabs {
    margin: 30px 0;
    border-top: 1px solid #675E75;
    padding: 20px 0;
}

.previousButton {
    border-radius: 10px;
    border: 1px solid #481364;
    background: linear-gradient(180deg, rgba(195, 23, 255, 0.29) 0%, rgba(0, 16, 68, 0.01) 100%);
}

.previousButton a {
    display: block;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    padding: 8px 20px;
}

.previousButton:hover {
    background: linear-gradient(-90deg, rgba(195, 23, 255, 0.29) 0%, rgba(0, 16, 68, 0.01) 100%);
}




/* transformBox */
.transformBox .product_image_box img,
.transformBox .Boxheight img {
    border-radius: 10px;
}

.transformBox .custom_arrow .swiper-button-next {
    right: 0 !important;
}

.transformBox .custom_arrow .swiper-button-prev {
    left: 0 !important;
}

.transformBox .Boxheight,
.transformBox figure {
    height: 200px;
}

.transformBox .Boxheight img,
.transformBox figure img {
    object-fit: fill; 
}



.transformed-section .plus-sign span {
    font-size: 60px;
    line-height: 70px;
    color: #fff;
    display: block;
    text-align: center;
}

#zoomModelCenter .flip-container {
    max-width: 100%;
    height: 400px;
    margin: 0;
}




/* RESPONSIVE */
/*@media (max-width: 1024px) {
    .flip-container {
        width: auto;
        height: 160px;
    }
}*/

@media (max-width: 640px) {

    .btn-close {
        right: 15px;
        top: 15px;
    }

    .productdetail ul li {
        border-right: none;
        padding-right: 5px;
        margin-right: 5px;
        font-size: 15px;

        span {
            font-size: 14px;
        }
    }

    .transformed-section .plus-sign span {
        font-size: 24px;
        line-height: 34px;
    }

    .flip-container {
        max-width: 200px;
        height: auto;
    }

    #zoomModelCenter .flip-container {
        height: auto;
    }


    .transformBox .Boxheight,
    .transformBox figure {
        height: 150px;
    }

}