.brochures-page.collection-hero {
    min-height: 60dvh;
}

#BrochuresPage {
    & .brochuresPage {
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding: 20px 0;
    }

    & .brochuresFilters {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        max-width: 700px;
    }

    & .brochuresSearchInput {
        display: flex;
        flex-direction: column;
        gap: 4px;

        & label {
            color: #989898;
            font-size: 14px;
            line-height: 20px;
        }
    }

    & .searchInputWrapper {
        display: flex;
        align-items: center;
        border: 1px solid #ccc;

        & input {
            flex: 1;
            border: none;
            padding: 8px 15px;
            font-size: 14px;
            line-height: 24px;
            color: var(--primary);
            outline: none;
            font-family: var(--bodyFont);
        }

        & .searchIconBtn {
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px 12px;
            color: var(--primary);
            display: flex;
            align-items: center;

            & i {
                font-size: 18px;
                width: 18px;
                height: 18px;
            }
        }
    }

    & .brochuresLoadMore {
        display: flex;
        justify-content: center;
        margin-top: 10px;
    }

    & .loadingModal {
        display: flex;
        justify-content: center;
        align-items: center;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 9999;
        width: 100vw;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.6);
    }
}

@keyframes roundtime {
    to {
        transform: scaleX(0);
    }
}
