.custom-section {
    align-items: center;

    .search-bar-container,
    .container {
        width: 69rem;
    }

    .search-bar-container {
        justify-content: space-between;
        align-items: center;

        input {
            width: 49%;
            line-height: 2.5rem;
            font-size: 1.3rem;
            border: solid 1px black;
            border-radius: 0.7rem;
            padding: 0 0.4rem;
            border: 1px solid var(--black-50);
            background-color: var(--white-50);
        }

        .filters {
            width: 49%;
            justify-content: space-between;

            filter {
                width: 30%;
                padding: 0.5rem;
                border-radius: 0.5rem;
                border: 1px solid var(--black-50);
                background-color: var(--white-50);

                option {
                    padding: 0.5rem;
                    border-radius: 0.5rem;
                    background: var(--white-50);
                }
            }
        }
    }

    .container {
        height: 500px;
        background-color: bisque;
    }
}

.custom-select {
    position: relative;
    width: 200px;

    .selected-option {
        padding: 0.5rem;
        border: 1px solid var(--black-50);
        border-radius: 0.5rem;
        background-color: var(--white-50);
        cursor: pointer;
    }

    .options {
        display: none;
        position: absolute;
        width: 100%;
        border: 1px solid var(--black-50);
        border-radius: 0.5rem;
        background-color: var(--white-50);
        margin-top: 0.5rem;

        .option {
            padding: 0.5rem;
            cursor: pointer;
        }

        .option:hover {
            background-color: var(--black-25);
        }
    }
}