@import url("common.css");
@import url("animation.css");

html {
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
}

.with-scrollbar {
    scrollbar-width: auto !important;
    -ms-overflow-style: auto !important;
}

.font-esthetic {
    font-family: 'Sacramento', cursive !important;
}

.font-arabic {
    font-family: 'Amiri', serif !important;
}

.img-center-crop {
    width: 13rem;
    height: 13rem;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

html[data-bs-theme="dark"] .btn-transparent {
    background-color: rgba(var(--bs-dark-rgb), 0.5) !important;
    backdrop-filter: blur(0.625rem);
}

html[data-bs-theme="light"] .btn-transparent {
    background-color: rgba(var(--bs-light-rgb), 0.5) !important;
    backdrop-filter: blur(0.625rem);
}

.loading-page {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1056;
}

html[data-bs-theme="light"] .color-theme-svg {
    color: rgb(255, 255, 255);
    background-color: var(--bs-light);
}

html[data-bs-theme="dark"] .color-theme-svg {
    color: rgb(0, 0, 0);
    background-color: var(--bs-dark);
}

html[data-bs-theme="light"] .bg-light-dark {
    background-color: rgba(var(--bs-light-rgb), 1);
}

html[data-bs-theme="dark"] .bg-light-dark {
    background-color: rgba(var(--bs-dark-rgb), 1);
}

html[data-bs-theme="light"] .bg-white-black {
    background-color: rgba(var(--bs-white-rgb), 1);
}

html[data-bs-theme="dark"] .bg-white-black {
    background-color: rgba(var(--bs-black-rgb), 1);
}

.bg-cover-home {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mask-image: linear-gradient(0.5turn, transparent, black 10%, black 90%, transparent);
}

.width-loading {
    width: 25%;
}

@media screen and (max-width: 992px) {
    .width-loading {
        width: 50%;
    }
}

@media screen and (max-width: 576px) {
    .width-loading {
        width: 75%;
    }
}

.no-gap-bottom {
    margin-bottom: -0.75rem !important;
}

.colors-dresscode-new {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.colors-dresscode-new .colors {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #FFFFFF;
    box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.2);
}

.colors-dresscode-new .colors:nth-of-type(2) {
    background-color: #6d8f60;
}

.colors-dresscode-new .colors:last-of-type {
    background-color: #660033;
}