/* ============================================== section Vechile-listing  ================================================= */
.vechile-listing-main {
    padding: 64px 16px;
}

.vechile-listing-header {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
}

.vechile-listing-header-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.vechile-listing-header a {
    color: var(--blue);
    font-size: 18px;
}

.vechile-listing-header h4 {
    color: var(--dark-blue);
    font-size: 26px;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    padding-top: 18px;
}

.accordion-item {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: none;
}

/* .accordion-item:not(:first-of-type)                      {border-top: 1px solid var(--gray);} */
.accordion-button {
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-bottom: 1px solid transparent;
}

.accordion-btn-left {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary);
}

.accordion-btn-left img {
    width: 32px;
    height: 32px;
}

.accordion-btn-right img {
    width: 24px;
    aspect-ratio: 1;
}

.accordion-button:not(.collapsed) {
    background: var(--white);
    border-color: var(--gray-01);
}

.accordion-button:not(.collapsed) .accordion-btn-right img {
    transform: rotate(180deg);
    transform-origin: center center;
}

.accordion-button::after {
    content: none;
}

.accordion-item:first-of-type .accordion-button {
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

.accordion-item:first-of-type {
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

.accordion-item:last-of-type .accordion-button.collapsed {
    border-bottom-right-radius: 16px;
    border-bottom-left-radius: 16px;
}

.accordion-item:last-of-type {
    border-bottom-right-radius: 16px;
    border-bottom-left-radius: 16px;
}

.accordion-button:focus {
    border-color: var(--gray-01);
}

.accordion-body {
    padding: 16px;
}

.vechile-listing-content {
    margin-top: 18px;
}

/*  */
.custom-radio {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    margin-bottom: 12px;
    justify-content: space-between;
}

.custom-radio-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.custom-radio-right span {
    font-size: 14px;
    line-height: 20px;
    color: #75797C;
}

.custom-radio:last-child {
    margin-bottom: 0;
}

.radio-checkmark {
    width: 16px;
    height: 16px;
    border: 1px solid var(--blue);
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}

.radio-checkmark::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--white);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    transition: all ease-in-out 0.15s;
}

.custom-radio:hover input~.radio-checkmark::after {
    background: var(--white);
}

.custom-radio input:checked~.radio-checkmark::after {
    background: var(--blue);
}

.custom-radio input {
    display: none;
}

/*  */
.price-range-input-container {
    display: flex;
    gap: 12px;
}

.price-range-input-container label {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 4px;
    color: var(--secondary);
}

.price-range-input-container input {
    padding: 9px 16px !important;
    border-color: var(--gray) !important;
    background: var(--gray) !important;
    color: var(--dark-blue) !important;
}

/*  */
.custom-checkbox {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.custom-checkbox:last-child {
    margin-bottom: 0;
}

.custom-checkbox-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-checkmark {
    width: 16px;
    height: 16px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--blue);
    background: var(--white)
}

.checkbox-checkmark img {
    width: 7.5px;
    height: 5.25px;
}

.custom-checkbox input {
    display: none;
}

.custom-checkbox input:checked~.checkbox-checkmark {
    background: var(--blue);
}

.custom-checkbox-right span {
    font-size: 14px;
    line-height: 20px;
    color: #75797C;
}

/*  */
.write-off-message {
    padding: 16px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #F2F8FD;
    margin-top: 16px;
}

.write-off-message p {
    font-size: 14px;
    line-height: 20px;
    color: var(--light-blue);
}

/* keyword-search-container */
.keyword-search-container>div {
    width: 100%;
}

.keyword-search-container button {
    max-width: 65px;
}

.keyword-search-form {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

/*  */
.distance-search-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.vechile-listing-content .single-select-dropdown-main .select2-container--default .select2-selection--single,
.vechile-listing-content .single-select-dropdown-main .select2-container--default .select2-selection--multiple {
    padding: 9px 16px;
    background: var(--gray);
    border-color: var(--gray);
}

.vechile-listing-content .input-wrap {
    margin-bottom: 16px;
}

/*  */
.input-wrapper-list {
    position: relative;
}

.distance-button {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
}

.distance-search-container .input-wrapper-list {
    overflow: hidden;
}

/*  */
.offcanvas-md {
    background: var(--gray);
}

/* .section-listing                                            {padding-top: 5px;} */
.section-listing .row {
    row-gap: 28px;
}

.vechile-listing-content .section-button-wrap .comman-btn {
    width: 100%;
    max-width: 500px;
}

.vechile-listing-content .col-lg-9 {
    padding-top: 60px;
}

/* .vechile-listing-content .col-lg-3                           {padding-top: 50px;}  */
/* .vechile-listing-content .col-lg-3, */
/* .vechile-listing-content .col-lg-3::-webkit-scrollbar               {width: 4px;}
.vechile-listing-content .col-lg-3::-webkit-scrollbar-track         {background: var(--white);}
.vechile-listing-content .col-lg-3::-webkit-scrollbar-thumb         {background: var(--blue);border-radius: 4px;}
.vechile-listing-content .col-lg-3::-webkit-scrollbar-thumb:hover   {background: var(--blue-01);}
.vechile-listing-content .col-lg-9                                  {scrollbar-width: none;-ms-overflow-style: none; }
.vechile-listing-content .col-lg-9::-webkit-scrollbar               {} */
/*  */
.listing-filter-btn img {
    width: 24px;
    aspect-ratio: 1;
}



/* ======================================================== Media Query ================================================= */
@media screen and (max-width:1600px) {
    .vechile-listing-header a {
        font-size: 17px;
        line-height: 22px;
    }

    .vechile-listing-header h4 {
        font-size: 23px;
        line-height: 32px;
    }
}

@media screen and (max-width:1500px) {
    .vechile-listing-main {
        padding: 50px 0;
    }
    .vechile-listing-header a {
        font-size: 16px;
        line-height: 20px;
    }
    .vechile-listing-header h4 {
        font-size: 20px;
        line-height: 28px;
    }
    .vechile-listing-main .row{--bs-gutter-x:10px;}
}

@media screen and (max-width:1400px) {

    /* .vechile-listing-header                                 {gap: 120px;} */
    .vechile-listing-main {
        padding: 40px 0;
    }
}

@media screen and (max-width:1199px) {
    .accordion {
        gap: 12px;
    }

    .vechile-listing-main {
        padding: 30px 0;
    }
}

@media screen and (max-width:991px) {
    

    .vechile-listing-content {
        margin-top: 30px;
    }

    .section-listing .row {
        row-gap: 20px;
    }

    .pagination {
        margin-top: 40px;
    }

    /* .vechile-listing-header{
        position: sticky !important;
        top: -100px;
    } */
    .vechile-listing-content .col-lg-3,
    .vechile-listing-content .col-lg-9 {
        height: unset;
        overflow: unset;
    }

    .section-listing {
        margin-top: 40px;
    }    

    .vechile-listing-content .col-lg-9 {
        padding-top: 0px;
    }
    .selling-card-content-desc p:first-child {
        margin-bottom: 9px;
        min-height: 82px;
        font-size: 13px;
        line-height: 18px;
    }
    .inner-page-wrapper.listing-page-inner-page-wrapper .row {
        --bs-gutter-x: 0px !important;
    }
    .selling-card-content-desc p{
        font-size: 13px !important;
        line-height: 18px !important;
        margin-bottom: 9px !important;
    }
    .selling-card-content-desc p:last-child {
        margin-bottom: 9px !important;
    }
    .selling-card-content-inner .heading-style-10 {
        min-height: 48px;
    }
}

@media screen and (max-width:767px) {
.vechile-listing-header {
        justify-content: space-between;
        position: fixed;
        top: 60px;
        /* z-index: 100; */
        left: 0;
        padding: 16px;
        background: var(--white);
        width: 100%;
        border-block: 1px solid var(--blue-01);
    }

    .vechile-listing-header.fixed {
        position: fixed;
        top: 0 !important;
    }
    .vechile-listing-header {
        position: fixed;
        width: 100%;
        background-color: #fff;
        z-index: 999;
        transition: top 0.3s ease;
    }
}

@media screen and (max-width:575px) {
    .vechile-listing-content {
        margin-top: 20px;
    }

    .vechile-listing-main {
        padding: 20px 0;
    }

    .section-listing .row {
        row-gap: 16px;
    }

    .section-listing .col-sm-6 {
        padding: 0;
    }

    .vechile-listing-content .section-button-wrap .comman-btn {
        max-width: 100%;
    }

    .vechile-listing-header {
        top: 55px !important;
        padding: 12px;
    }


}