@font-face {
    font-family: 'MyFont';
    src: url('./fonts/GE-Dinar-Two-Medium_1E.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}
html{
    font-size: 90%;
}
body {
    font-family: 'MyFont', sans-serif;
    background-color: #fff;
    color: #333;
    line-height: 1.6;
    text-align: right;
    overflow-x: hidden;
}

button {
    cursor: pointer;
}

.intro {
    background-image: url('./images/Mask group.png');
    background-size: cover;
}

.product {
    background-image: url('./images/Mask group.png');
    background-size: cover;
}

.box-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(auto, 1fr));
    gap: 1rem;
}

.intro .box-grid .image {
    max-height: 35.25rem;
    position: relative;
}

.intro .box-grid .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;

}

/* Hide scrollbar for the options list */
.country-options::-webkit-scrollbar {
    display: none;
}

.country-options {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Custom radio button */
.custom-radio {
    appearance: none;
    background-color: #fff;
    border: 2px solid #d1d5db;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    cursor: pointer;
}

.custom-radio:checked {
    border-color: #c29957;
}

.custom-radio:checked::after {
    content: '';
    width: 0.65rem;
    height: 0.65rem;
    border-radius: 50%;
    background: #c29957;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.shipping-tab.active {
    border: 2px solid #BE935B;
    background-color: #FBF8F4;
}
.shipping-tab.active .check-icon {
    color: #BE935B;
}
.colored-toast.swal2-popup {
    /*background-color: #ab2c1e !important;*/
    background-color: #910910 !important;
}
.colored-toast .swal2-title,
.colored-toast .swal2-html-container {
    color: white !important;
}
