.loader {
    display: none;
    width: 25px;
    aspect-ratio: 1;
    position: absolute;
    border-radius: 50%;
    border: 4px solid rgb(158, 158, 158);
    animation: l20-1 0.8s infinite linear alternate, l20-2 1.6s infinite linear;
}

.loading .loader {
    display: block;
}

.button.loading {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    justify-content: center;

    pointer-events: none;
    cursor: not-allowed;
    opacity: 0.5;
}

button[data-popup="#popup-gift"] {
    display: none !important;
}

@keyframes l20-1 {
    0% {
        clip-path: polygon(50% 50%, 0 0, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%)
    }

    12.5% {
        clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%)
    }

    25% {
        clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 100% 100%, 100% 100%)
    }

    50% {
        clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%)
    }

    62.5% {
        clip-path: polygon(50% 50%, 100% 0, 100% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%)
    }

    75% {
        clip-path: polygon(50% 50%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 50% 100%, 0% 100%)
    }

    100% {
        clip-path: polygon(50% 50%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 0% 100%)
    }
}

@keyframes l20-2 {
    0% {
        transform: scaleY(1) rotate(0deg)
    }

    49.99% {
        transform: scaleY(1) rotate(135deg)
    }

    50% {
        transform: scaleY(-1) rotate(0deg)
    }

    100% {
        transform: scaleY(-1) rotate(-135deg)
    }
}

.item-review__body {
    background: url('/image/phone.webp') no-repeat top center / 100% !important;
}

/* cart add product popup */
.cart-popup {
    position: fixed;
    top: 40px;
    right: 0;
    width: fit-content;
    display: flex;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cart-popup--active {
    opacity: 1;
    visibility: visible;
}

.cart-popup__content {
    border: 2px solid black;
    max-width: 600px;
    background: white;
    padding: 30px;
    border-radius: 5px;
    width: 90%;
    text-align: center;
}

.cart-popup__content a {
    border-bottom: 1px solid #000;
    transition: opacity 0.3s ease;
}

.iti{
    width: 100%;
}

.cart-popup__content a:hover {
    opacity: 0.6;
}

.cart-popup__message {
    margin-bottom: 20px;
    font-size: 18px;
}

.cart-popup__buttons {
    text-wrap: nowrap;
    font-size: .875rem;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.button--secondary {
    background-color: #e0e0e0;
    color: #333;
}



.single_options_container {
    display: none;
}


.ocf-selected.checkbox::before {
    background: #1e1e1e url(../img/icons/check.svg) no-repeat center/contain
}


.cart-popup__message.error {
    color: red;
}

.main-product__text.text,
.main-product__text.text p,
.main-product__text.text h1,
.main-product__text.text h2,
.main-product__text.text h3,
.main-product__text.text h4,
.main-product__text.text h5,
.main-product__text.text h6,
.main-product__text.text font,
.main-product__text.text span
{
    font-family: 'Geologica', serif !important;
}

.popup__content{
    max-height: 90vh;
    overflow-y: scroll;
    overflow-x: hidden;
}

.header__lang{
    z-index: 1;
}