div#proModalToggle {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 111;
}

.description_text {
    width: 100%;
    display: flex;
    align-items: flex-start;
    font-size: 16px;
    padding: 20px 18px 0px;
}
.modalMainBody {
    width: 100%;
    max-width: 80%;
    height: 80%;
}

.modalMainBody .modal-body {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.modalMainBody .modal-body .proModalTitle {
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    color: var(--text_clr_black);
}

button.closeIcon {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: flex-end;
    padding: 10px 10px 0 0;
    cursor: pointer;
}

div#loading-bar-spinner {
    width: 40px;
    height: 40px;
    border: solid 4px transparent;
    border-top-color: #e7930d !important;
    border-left-color: #e7930d !important;
    border-radius: 50%;
    top: 40%;
    left: 50%;
}

.loader {
    animation: loading-bar-spinner 400ms linear infinite;
}

/* Basic modal styling */
#emailPasswordModal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0, 0, 0); /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
    padding-top: 60px;
}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
.productScroll {
    /* width: 100%;
    overflow: auto;
    padding-block:15px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px; */
}
/*.productScroll {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    /* padding-block-start: 20px; *
    gap: 20px;
    width: 100%;
}
.productBorder {
    border: 2px solid var(--clr_border2);
    position: relative;
 }
.prCode {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.skuNo {
    display: block;
    font-size: 12px;
    font-weight: normal;
    font-family: "Proxima Nova Rg";
    color: var(--text_clr_grey3);
    margin-block-start: 0;
    font-weight: normal;
    padding: 0;
    text-align: left;
}
.productInfo h5 {
    color: var(--text_clr_frontstorered);
    font-family: "Proxima Nova Rg";
    font-weight: normal;
    padding: 0;
    font-size: 17px;
    text-align: center;
    margin-bottom: 8px;
}
.productInfoColor label {
    display: inline-block;
    height: 20px;
    width: 20px;
    position: relative;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}
.productInfoColor span {
    display: block;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    position: absolute;
    border-radius: 3px;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-radius: 50%;
    border: 1px solid black;
}
.productInfoColor input[type="radio"] {
    -webkit-appearance: none;
    display: none;
}
.moreInfoBtn {
    background: var(--bg_clr_frontstorered);
    color: var(--text_clr_white);
    font-size: 13px;
    padding: 6px 10px;
    border-radius: 3px;
    cursor: pointer;
}
.moreInfoBtn:hover {
    color: var(--text_clr_white);
    background: var(--bg_clr_frontstore);
} */
/* button.closeIcon i.fa-solid.fa-circle-xmark {
            position: absolute;
            top: 10px;
            right: 10px;
        } */

/* button.closeIcon i {
            position: absolute;
            top: 16px;
            right: 16px;
            font-size: 18px;
            color: var(--text_clr_grey1);
            opacity: 0.6;
        } */

/* .div#proModalToggle .modalMainBody div#loading-bar-spinner .loader {
    animation: loading-bar-spinner 400ms linear infinite;
} */

/* .div#proModalToggle .modalMainBody .modal-body div#loading-bar-spinner .loader {
    width: 40px;
    height: 40px;
    border: solid 4px transparent;
    border-top-color: #00C8B1 !important;
    border-left-color: #00C8B1 !important;
    border-radius: 50%;
} */

/* .div#proModalToggle .modal-body #loading-bar-spinner.spinner {
            width: 40px;
            height: 40px;
            border: solid 4px transparent;
            border-top-color: #00C8B1 !important;
            border-left-color: #00C8B1 !important;
            border-radius: 50%;
        } */

@keyframes loading-bar-spinner {
    0% {
        transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/* .coupon-popup {
    position: absolute;
    right: 4px;
    top: 130px;
    border: 2px solid var(--text_clr_frontstorered);
    border-radius: 4px;
    padding: 4px;
    background-color: var(--bg_clr_frontstorered);
    text-align: center;
    color: var(--text_clr_white);
    max-width: 100px;
    width: 100%;
} */
button.dismiss-coupon {
    position: absolute;
    right: 0;
    top: 0;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 16px;
    width: 16px;
    background: var(--bg_clr_frontstorebrown);
    border-radius: 100%;
    line-height: 18px;
    font-size: 15px;
    padding: 0;
    color: var(--text_clr_white);
    opacity: 0.8;
    transition: all 0.4s ease;
}
/* .coupon-popup label {
    font-size: 11px;
    display: block;
    font-weight: 600;
    margin-block-end: 0px;
} */
.coupon-popup .aslowas {
    font-size: 20px;
    font-weight: 9700;
    display: inline-block;
    width: 100%;
    vertical-align: top;
    line-height: 24px;
    margin-block-start: 2px;
}
.field-popup-coupon {
    width: 100%;
    padding: 2px 6px;
    background: var(--bg_clr_white);
    color: var(--text_clr_frontstorered);
    border-radius: 3px;
    font-size: 14px;
    font-weight: 600;
    margin-top: 3px;
}
@media screen and (max-width: 767px) {
    .modalMainBody {
        height: 40%;
    }
}
@media screen and (max-width: 380px) {
    .productScroll {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    }
}
/* .scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.scrollbar-hide::-webkit-scrollbar {
    display: none;
} */

/* Custom scrollbar styling */
.scrollbar-custom {
    overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap; /* Ensures items stay on one line */
    scroll-behavior: smooth; /* Smooth scrolling effect */
    padding-bottom: 10px; /* Optional padding for spacing */
}

/* Styling the scrollbar */
.scrollbar-custom::-webkit-scrollbar {
    height: 8px; /* Scrollbar height */
}

.scrollbar-custom::-webkit-scrollbar-track {
    background: #f1f1f1; /* Track color */
    border-radius: 10px;
}

.scrollbar-custom::-webkit-scrollbar-thumb {
    background: #888; /* Thumb (handle) color */
    border-radius: 10px;
}

.scrollbar-custom::-webkit-scrollbar-thumb:hover {
    background: #555; /* Hover color for thumb */
}

/* Optional styling for slider items */
.scrollbar-custom .item {
    display: inline-block;
    width: 250px; /* Example width of each item */
    margin-right: 15px; /* Space between items */
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    border-radius: 8px; /* Rounded corners */
}
