.FilterleftPanel
{
    height: fit-content;
    background-color: #F2F4F7;
    position: relative;
}
.FilterleftPanel::-webkit-scrollbar
{
    display: none;
}
.BudgetInputFieldContainer
{
    width: 100%;
    height: fit-content;
    display: flex;
}
.InputFieldSeparator
{
    height: fit-content;
    display: flex;
    flex-direction: column;
}
.FilterContainerWrapper
{
    position: relative;
    width: auto;
    height: fit-content;
    overflow: hidden;
}
.PopularFilterPanel
{
    width: auto;
    height: fit-content;
    display: flex;
    background-color: white;
    overflow: hidden;
    position: relative;
}

.FilterleftPanel
{
    -webkit-transition: left 0.3s ease;
    -moz-transition: left 0.3s ease;
    -o-transition: left 0.3s ease;
    -ms-transition: left 0.3s ease;
    transition: left 0.3s ease;
}
.FilterRightSection
{
    width: 100%;
    height: fit-content;
    overflow: visible;
}
.FilterSortByTopContainer
{
    flex-grow: 1;
    height: fit-content;
    background-color: #F2F4F7;
    display: flex;
}
.SortTopButtonContainer
{
    flex-grow: 1;
    height: fit-content;
    display: flex;
    position: relative;
}
.SortTopButton
{
    height: fit-content;
    font-family: 'Inter Regular';
    color: #475467;
    background-color: transparent;
    border: 0;
    cursor: pointer;
    display: flex;
}
.SortTopButton p
{
    width: fit-content;
    height: fit-content;
    margin: auto;
    z-index: 1;
}
.SortTopButtonSelected
{
    color: white;
    font-family: 'Inter Medium';
}

.SearchResultPanelContainer
{
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
}
.FilterSearchButton
{
    width: fit-content;
    height: fit-content;
    background-color: #ED7C42;
    position: fixed;
    border: 0;
    border-radius: 100%;
}


@media screen and (max-width: 560px)
{
    .FilterleftPanel
    {
        top: 0;
        left: -999;
        position: fixed;
        z-index: 999;
        width: 80vw;
        height: 100%;
        padding: 3vw 4vw;
        overflow-y: auto;
    }
    .FilterleftPanelOpen
    {
        left: 0;
    }
    .InputFieldSeparator
    {
        width: 47%;
    }
    .FilterContainerWrapper
    {
        border-radius: 1vw;
        outline: 0.4vw solid rgb(225, 225, 225);
        outline-offset: -0.4vw;
        margin-top: 1vw;
    }
    .PopularFilterPanel
    {
        border-bottom: 0.4vw solid rgb(225, 225, 225);
        padding: 0 2vw;
        height: 8vw;
    }
    .FilterContainerWrapper .PopularFilterPanel:not(:last-child)
    {
        border-bottom: 0.4vw solid rgb(225, 225, 225);
    }
    .FilterSortByTopContainer
    {
        width: 93%;
        margin: 0 auto;
        padding: 1vw 2vw;
    }
    .SortTopButtonContainer
    {
        margin-left: 2vw;
    }
    .SortTopButton
    {
        width: 25%;
        font-size: 2.2vw;
        padding: 2vw 0;
    }
    .SearchResultPanelContainer
    {
        margin: 2vw 0;
    }
    .FilterSearchButton
    {
        padding: 3.5vw;
        right: 3vw;
        bottom: 7vw;
        z-index: 100;
        box-shadow: 0 0.5vw 1vw rgba(0, 0, 0, 0.2);
    }
    .FilterSearchButton img
    {
        width: 7vw;
        height: 7vw;
    }
    body:has(.FilterleftPanelOpen)
    {
        overflow: hidden;
    }
}

@media screen and (max-width: 960px) and (min-width: 561px)
{
    .FilterSortByTopContainer
    {
        width: 91%;
        margin: 0 auto;
        padding: calc(4px + 0.5vw) calc(10px + 0.5vw);
    }
}
@media screen and (max-width: 1200px) and (min-width: 961px)
{
    .FilterSortByTopContainer
    {
        padding: calc(4px + 0.5vw) calc(10px + 0.5vw);
    }
}
@media screen and (max-width: 1200px) and (min-width: 561px)
{
    .FilterleftPanel
    {
        top: 0;
        left: -999;
        position: fixed;
        z-index: 999;
        width: calc(320px + 0.5vw);
        height: 100%;
        padding: calc(15px + 0.5vw) calc(15px + 0.5vw);
        overflow-y: auto;
    }
    .FilterleftPanelOpen
    {
        left: 0;
    }
    .InputFieldSeparator
    {
        width: 45%;
    }
    .FilterContainerWrapper
    {
        border-radius: 0.5vw;
        outline: 0.2vw solid #EAECF0;
        outline-offset: -0.1vw;
        margin-top: calc(2px + 0.5vw);
    }
    .PopularFilterPanel
    {
        padding: 0 calc(5px + 0.5vw);
        height: calc(30px + 0.5vw);
    }
    .FilterContainerWrapper .PopularFilterPanel:not(:last-child)
    {
        border-bottom: 0.2vw solid #EAECF0;
    }
    .SortTopButtonContainer
    {
        margin-left: calc(10px + 0.5vw);
    }
    .SortTopButton
    {
        width: 25%;
        font-size: calc(9px + 0.5vw);
        padding: 10px 0;
    }
    .SearchResultPanelContainer
    {
        margin: calc(15px + 0.5vw) 0;
    }
    .FilterSearchButton
    {
        padding:  calc(13px + 0.5vw);
        right: calc(20px + 0.5vw);
        bottom: calc(20px + 0.5vw);
        z-index: 100;
        box-shadow: 0 0.5vw calc(5px + 0.5vw) rgba(0, 0, 0, 0.2);
    }
    .FilterSearchButton img
    {
        width: calc(25px + 0.5vw);
        height: calc(25px + 0.5vw);
    }
    body:has(.FilterleftPanelOpen)
    {
        overflow: hidden;
    }
}

@media screen and (min-width: 1201px)
{
    .FilterleftPanel
    {
        width: 360px;
        min-width: 260px;
        padding: 20px 15px;
        border-radius: 5px;
    }
    .InputFieldSeparator
    {
        width: 45%;
    }
    .FilterContainerWrapper
    {
        border-radius: 5px;
        outline: 2px solid #EAECF0;
        outline-offset: -2px;
        margin-top: 8px;
    }
    .PopularFilterPanel
    {
        padding: 0 10px;
        height: 40px;
    }
    .FilterContainerWrapper .PopularFilterPanel:not(:last-child)
    {
        border-bottom: 2px solid #EAECF0;
    }
    .FilterRightSection
    {
        margin-left: 20px;
    }
    .FilterSortByTopContainer
    {
        padding: 8px 15px;
    }
    .SortTopButtonContainer
    {
        margin-left: 20px;
    }
    .SortTopButton
    {
        width: 25%;
        font-size: 14px;
        padding: 10px 0;
    }
    .SelectedSortOrangeWrapper
    {
        width: 25%;
        height: 100%;
    }
    .SelectedSortOrange
    {
        width: 90%;
        height: 100%;
    }
    .SearchResultPanelContainer
    {
        margin: 20px 0;
    }
    .FilterSearchButton
    {
        display: none;
    }
}