.parking-properties .container{
    max-width: 1200px;
}
.parking-properties{
    margin: 60px 0 150px;
}
.parking-properties .filter label {
    font-size: 21px;
    font-weight: 700;
    color: #000;
    letter-spacing: 0.15px;
    margin: 0 25px 0 0;
}
.parking-properties .filter select {
    background-image: url(../../images/arrow.svg);
    background-repeat: no-repeat;
    background-position: calc(100% - 25px) 50%;
    border: 1px solid var(--dark-gray);
    border-radius: 8px;
    color: #000;
    padding: 17px 50px 17px 20px;
    letter-spacing: 0.15px;
    font-size: 20px;
    font-weight: 500;
    appearance: none;
    min-width: 320px;
    outline: 0 !important;
    cursor: pointer;
}
.parking-properties .accordion-sign{
    margin-left: auto;
}
.parking-properties .filter {
    margin-bottom: 50px;
}
.parking-properties .accordion-box{
    border: 1px solid var(--dark-gray);
    padding: 18px 24px;
    border-radius: 8px;
}
.parking-properties .content{
    display: none;
    padding-top: 25px;
}
.parking-properties .btn-wrapper{
    gap: 20px 24px;
    margin-top: 35px;
}
.parking-properties .btn-wrapper .btn{
    color: var(--blue);
    border: 1px solid var(--blue);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.5px;
    border-radius: 50px;
    transition: all 0.5s;
    padding: 9px 38px;
    background-color: transparent;
}
.parking-properties .btn-wrapper .btn:hover{
    color: var(--white);
    background-color: var(--blue);
}
.parking-properties .content p{
    margin-bottom: 17px;
}
.parking-properties .content a:not(.btn){
    color: var(--blue);
    text-decoration: underline;
    text-underline-offset: 4px;
}
.parking-properties .btn-wrapper .btn.btn-price{
    border-radius: 4px;
    color: var(--white);
    background-color: var(--blue);
    padding: 9px 30px;
    cursor: default;
}
.parking-properties .btn-wrapper .btn.btn-price:hover{
/*     color: var(--blue);
    background-color: transparent; */
}
.accordion-box .accordion-sign {
    transition: all 0.4s;
}
.accordion-box.active .accordion-sign {
    transform: rotate(180deg);
}
.parking-properties .accordion-box:not(:last-child){
    margin-bottom: 23px;
}
.parking-properties .btn-wrapper .btn:not(.btn-price)::after{
    content: url(../../images/arrow-filter-btn.png);
    padding-left: 6px;
    top: 1px;
    position: relative;
}
.parking-properties .btn-wrapper .btn:not(.btn-price):hover::after{
    filter: brightness(0) invert(1);
}
@media only screen and (max-width: 1199px) {
    .parking-properties {
        margin: 10px 0 70px;
    }
    .parking-properties .filter {
        margin-bottom: 30px;
    }
}
@media only screen and (max-width: 991px) {
    .parking-properties .filter label,
    .parking-properties .filter select{
        font-size: 18px;
    }
    .parking-properties {
        margin: 0 0 60px;
    }
}
@media only screen and (max-width: 767px) {
    .parking-properties .filter label,
    .parking-properties .filter select{
        font-size: 16px;
    }  
    .parking-properties {
        margin: 0 0 50px;
    }
    .parking-properties .filter label {
        display: block;
        margin: 0 0 15px;
        text-align: center;
    }
    .parking-properties .filter select {
        min-width: auto;
        width: 100%;
    }
}