aside .expanding-container{
    overflow: hidden;
    transition: .4s;
    padding: 0 1rem;
}
aside .expanding-subcontainer{
    padding:  0;
    display: flex;
    flex-direction: column;
}
aside .toggle-button img{
    margin-right: 0.5rem;
    transition: .4s;
}

aside{
    min-width: 300px;
    margin-right: 2rem;
}
aside .side-bar-container{
    background: #fff;
}
.reset-btn {
    font-size: 16px;
}
aside .side-bar-container h2{
    display: flex;
    align-items: center;
    font-size: 16px;
    padding: 1rem;
    color: rgba(0, 0, 0, 0.7);
}
aside .side-bar-container .dropdown-bullet{
    margin-left: auto;

    width: 20px;
    height: 10px;
    overflow: hidden;
    transition: .4s;
}
aside form{
    display: flex;
    flex-direction: column;
    padding: 1rem 0;
}
aside button:hover{
    cursor: pointer;
}
aside .search-btn{
    color: #fff;
    background: #162132;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 16px ;
    outline: none;
    border: none;

    border-radius: 30px;
    padding: 0.7rem 1.2rem;
    margin: 1rem auto 0.5rem 50%;
    transform: translateX(-50%);
    transition: .4s;
}
aside .search-btn:hover{
    background: #a81427;
}



aside .type-label img{
    margin-right: 1rem;
}
aside .input-wrapper:last-child .type-label img    {
    margin-left: 3px;
    margin-right: calc(1rem + 3px);
}

aside input{
    display: none;
}

aside .input-wrapper{
    margin: 0.3rem 0;
}

aside .input-wrapper,
aside label {
    display: inline-flex;
    align-items: center;
}
aside .custom-checkbox{
    display: block;
    position: relative;
    margin-right: 1rem;
    width: 15px;
    height: 15px;
    border: 1px solid rgba(0, 0, 0, 0.2);
}
aside .custom-checkbox::before{
    content: url(../media/sidebar/sidebar-dropdown.svg);
    visibility: hidden;
    position: absolute;
    top: -3px; left: 3px;
}
aside .custom-checkbox.checked::before{
    visibility: visible;
}
aside .reset-btn{
    white-space: nowrap;
    background: transparent;
    outline: none;
    border: none;
    color: #bdbdbd;
    text-transform: uppercase;
    font-weight: 700;
    margin: 1rem 0 3rem 50%;
    transform: translateX(-50%);
}
aside .reset-btn img{
    margin-right: 0.5rem;
}

aside .car-count{
    color: rgba(0, 0, 0, 0.3);
    margin-left: 0.5rem;
}


/* Custom select for izdošanas gads */

.expanding-container{
    position: relative;
    display: flex;
    flex-direction: column;
}

.custom-select-wrapper {
    position: relative;
    user-select: none;
    width: 100%;
}
.custom-select {
    position: relative;
    position: static;
    display: flex;
    flex-direction: column;

}
.custom-select__trigger {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 150px;
    padding: 0 22px;
    color: rgba(0, 0, 0, 0.8);
    height: 50px;
    line-height: 60px;
    background: #ffffff;
    cursor: pointer;
    border-radius: 30px;
    background: #ececec;
    overflow: hidden;
    z-index: 3;
}
/* .custom-select__trigger span::before{
    content: "No: ";
    color: rgba(0, 0, 0, 0.5);
} */
.custom-options {
    position: absolute;
    display: block;
    top: 15px;
    left: 0;
    right: 10px;
    max-height: 200px;
    border-radius: 30px;
    background: #b2b2b2;
    width: 193px;
    padding-top: 40px;
    transition: all 0.5s;
    opacity: 0;

    pointer-events: none;

    overflow-y: scroll;

    z-index: 2;
}
.custom-select.open .custom-options {
    opacity: 1;

    pointer-events: all;
}
.custom-option {
    position: relative;
    display: block;
    padding: 10px 22px;
    color: rgba(0, 0, 0, 0.8);
    line-height: 1.1;
    cursor: pointer;
    transition: all 0.5s;

}
.custom-option:hover {
    cursor: pointer;
    background-color: #ececec;
}
.custom-option.selected {
    color: #fff;
    background-color: #a81427;
}

.second-select-wrapper{
    margin-top: 2rem;
    z-index: 1;
}
/* .second-select-trigger span::before{
    content: "Līdz: ";
    color: rgba(0, 0, 0, 0.5);
} */

.arrow {
    position: relative;
    height: 15px;
    width: 15px;
}
.arrow::before, .arrow::after {
    content: "";
    position: absolute;
    bottom: 0px;
    width: 0.15rem;
    height: 100%;
    transition: all 0.5s;
}
.arrow::before {
    left: -5px;
    transform: rotate(45deg);
    background-color: #394a6d;
}
.arrow::after {
    left: 5px;
    transform: rotate(-45deg);
    background-color: #394a6d;
}
.open .arrow::before {
    left: -5px;
    transform: rotate(-45deg);
}
.open .arrow::after {
    left: 5px;
    transform: rotate(45deg);
}


/* expnading model */

.expanding-models {
    display: flex;
    flex-direction: column;
    padding-left: 1.5rem;
    overflow: hidden;
    transition: all 0.4s ease 0s
}
