.hidden {
    display: none;
}

:root {
    --space-unit-mobile: 0.5rem;
}

:root,
* {
    --space-md-mobile: calc(1.25 * var(--space-unit-mobile));
    --component-padding-mobile: var(--space-md-mobile);
}

:root {
    --list-filter-height: 180px !important;
}

#filter-panel {
    top: 75px;
}

@media screen and (max-width: 1023px) {

    .adv-filter .container {
        width: calc(100% - 2 * var(--component-padding-mobile)) !important;
    }

    .f-header__mobile-content {
        width: calc(100% - 2 * var(--component-padding-mobile)) !important;
    }

    #filter-panel {
        top: 50px;
    }
}

@media screen and (min-width: 511px) {
    .back-to-top {
        display: none;
    }
}

.btn {
    line-height: 1.2;
}

/* @media screen and (min-width: 1023px) {
    #filter-panel {
        position: fixed;
    }

    .main-filter-element {
        margin-left: 300px;
    }
} */

.page-loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle-loader {
    text-align: center;
    /* Add any other necessary styles for the loader here */
}

.btn-icons-custom {
    padding-top: 0.1em;
}

.absolute-max-width {
    width: 100%;
    /* Fallback for other browsers */
    width: -webkit-fill-available;
    /* Safari/WebKit specific */
    width: -moz-available;
    /* Firefox specific */
    width: stretch;
    /* Some browsers support this */
}