.form-loading {
    background: url(/images/loading.gif) no-repeat center 100px;
    min-height: 150px;
}

.mbd-search-default {
    position: relative;
    padding: 0;
    margin: 0;
    font-size: 14px;
}

.mbd-search-default .sd-fields {}

.mbd-search-default .sd-fields .sd-field {
    margin-bottom: 25px;
    min-height: 60px;
}

.mbd-search-default .sd-fields .sd-field .sd-field-text {
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary-subtle);
}

.mbd-search-default .sd-fields .sd-field .sd-field-required {
    font-weight: 700;
    color: red;
    display: none;
}

.filter-svg {
    background-color: rgb(217, 217, 217, 20%);
    border-radius: var(--radius-12);
    width: 3.4rem;
    aspect-ratio: 1;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.mbd-field-list-selective-image .cat-item .img-box {
    width: 2.8rem;
    aspect-ratio: 1;
    max-width: 100%;
}

.mbd-field-list-selective-image .cat-item .img-box img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-6);
}

.mbd-field-list-selective-image .swiper-slide {
    width: max-content !important;
}

.mbd-field-list-selective-image .cat-item {
    background-color: rgb(217, 217, 217, 20%);
    border-radius: var(--radius-12);
    padding: 0.57rem 0.85rem;

}

.rect-glass-border {
    position: relative;
    isolation: isolate;
}

.rect-glass-border::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(180deg,
            rgba(255, 235, 201, 1) 0%,
            rgba(255, 235, 201, 1) 5%,
            rgba(43, 4, 4, 0.5) 15%,
            rgba(43, 4, 4, 0.5) 85%,
            rgba(255, 235, 201, 0.5) 95%,
            rgba(255, 235, 201, 0.5) 100%);
    -webkit-mask:
        linear-gradient(#ffffff 0 0) content-box,
        linear-gradient(#ffffff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    filter: drop-shadow(0 0 3px rgba(255, 210, 210, .18));
    pointer-events: none;
}

.mbd-field-list-selective-image .cat-item span {
    color: var(--text-light-4);
}

.mbd-field-list-selective-image {
    overflow-x: auto;
    overflow-y: auto;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    padding: 0.57rem 0;
}

.mbd-field-list-selective-image:active {
    cursor: grabbing;
}

.mbd-field-list-selective-image::-webkit-scrollbar {
    width: 1px;
    height: 1px;
    border: 1px solid var(--primary-subtle);
}

.mbd-field-list-selective-image::-webkit-scrollbar-track {
    background: 0 0;
}

.mbd-field-list-selective-image::-webkit-scrollbar-thumb {
    background: var(--accent-color);
}

.mbd-field-list-selective-image::-webkit-scrollbar-thumb:hover {
    background: #484848
}

.filter-header .close-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2.7rem;
    aspect-ratio: 1;
    color: var(--primary-subtle);
    background-color: rgb(255, 235, 201, 20%);
    border-radius: 50%;
    margin: 1rem;
    cursor: pointer;
}
.filter-header  .img-box img{
width: 100%;
}
.filter-items {
    transition: transform 0.6s ease,
        opacity 0.6s ease,
        visibility 0s linear 0.6s;
    transform: translateX(100%);
    position: fixed;
    top: 0;
    background-color: var(--dark-red);
    z-index: 2;
    height: 100vh;
    visibility: hidden;
    opacity: 0;
    width: 30rem;
    max-width: 100%
}

.filter-items.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    transition:
        transform 0.6s ease,
        opacity 0.6s ease,
        visibility 0s linear 0s;
}

.filter-items.closing {
    opacity: 0;
    visibility: visible;
    transform: translateX(0);

    transition:
        opacity 0.6s ease,
        visibility 0s linear 0.6s;
}

.swiper-scrollbar {
    border: 1px solid var(--primary-main-color);
    background-color: rgb(217, 217, 217, 20%);
    bottom: 0;
    opacity: 0.5;
}

.swiper-wrapper {
    padding: 1rem 0px;

}

.swiper-scrollbar-drag {
    background: var(--primary-subtle);
}