html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

@font-face {
    font-family: 'NotoNaskhArabic';
    src: url('/Font/NotoNaskhArabic-VariableFont_wght.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}


a {
    color: inherit !important;
}


html {
    position: relative;
    min-height: 100%;
}



body {
    font-family: 'NotoNaskhArabic', sans-serif;
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.logo-image {
    width: 20%;
    height: auto;
}

.footer {
    background-color: white;
    color: #ffffff;
    text-align: center;
    padding: 20px 0;
    line-height: 15px !important;
    margin-top: 32px;
}

    .footer .social-icons a {
        color: #ffffff;
        font-size: 24px;
        text-decoration: none;
        margin: 0 5px;
        display: inline-block;
        width: 40px;
        height: 40px;
        line-height: 40px;
        text-align: center;
        border-radius: 50%;
        transition: background-color 0.3s ease;
    }

        .footer .social-icons a:hover {
            background-color: rgba(255, 255, 255, 0.2);
        }


#ColorImagePreview {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 1px solid #ccc;
}

.h-40px {
    height: 40px;
}

.background-white {
    background-color: white !important;
}

.pointer-hover {
    cursor: pointer;
}


/* effect-shine */

.shine {
    position: relative;
    overflow: hidden;
}

    .shine::before {
        background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.7) 100%);
        content: "";
        display: block;
        height: 100%;
        left: -75%;
        position: absolute;
        top: 0;
        transform: skewX(-25deg);
        width:1%;
        z-index: 2;
    }

    .shine:hover::before,
    .shine:focus::before {
        animation: shine 0.85s;
    }

@keyframes shine {
    100% {
        left: 125%;
    }
}

.text-blue {
   color: #0033a2 !important
}



.sticky-sidebar {
    position: fixed;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.social-media {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.btn-floating {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}


.btn-primary {
    background-color: #0033a2 !important;
}


.f-s-10 {
    font-size: 10px !important;
}

.f-s-15{
    font-size:15px !important;
}

.f-s-14 {
    font-size: 14px !important;
}

.f-s-17 {
    font-size: 17px !important;
}

.f-s-19 {
    font-size: 19px !important;
}

.content {
    display: none;
}

.border-raduis-8px {
    border-radius: 8px;
}


.text-gold {
    color: #fe8f23 !important;
}

.text-gold-v2 {
    color: #ff9404 !important;
}

.text-green {
    color: #30cb52 !important;
}

.text-blue-hover:hover {
    color: #0033a2 !important;
}


.text-grey {
    color: #888b9b;
}

.text-grey {
    color: #a0a3ab;
}

.background-white-blue {
    background-color: #f4f8fb;
}

.quantity-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #a0a3ab;
    border-radius: 8px;
    overflow: hidden;
    width: fit-content;
}

.quantity-btn {
    border: none;
    padding: 0px 20px 9px 20px;
    cursor: pointer;
    font-size: 25px;
    height: 32px;
}

#quantity {
    width: 40px;
    text-align: center;
    font-size: 16px;
    border: none;
    height: 32px;
    margin: 0 -1px; /* Adjust to align with button borders */
}

.btn-outline-danger {
    background-color: red; /* Text color */
    border-color: red; /* Outline (border) color */
    color: white;
    border-radius: 8px;
    box-shadow: 0px 0px 6px red; /* Box shadow with the same color */
}


    .btn-outline-danger:hover {
        background-color: red !important;
        border-color: red; /* Outline (border) color */
    }


.background-color-green {
    background-color: #30cb52 !important;
}



.btn-success {
    background-color: #30cb52 !important;
}

.w-30 {
    width: 30% !important;
}

.border-top {
    border-top: 1px solid #dee2e6 !important;
}

.text-yellow {
    color: #F89C02;
}

.custom-box-shadow {
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2) !important;
    border: none !important;
    background-color: white !important;
}


.body-top-padding {
    padding-top: 65px;
}

@media (max-width: 768px) {
    .body-top-padding {
        padding-top: 60px;
    }
}