.cursor-pointer {
    cursor: pointer;
}

.fs-10 {
    font-size: 10px !important;
}

.fs-12 {
    font-size: 12px !important;
}

.fs-14 {
    font-size: 14px !important;
}

.fs-16 {
    font-size: 16px !important;
}

.fs-18 {
    font-size: 18px !important;
}

.fs-20 {
    font-size: 20px !important;
}

.ellipsis {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.lock-container {
    z-index: 900;
    width: 100%;
    top: 0px;
    left: 0px;
    position: absolute;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    
    backdrop-filter: blur(2px);
}

.navbar-nav {
    padding-top: 10px;
    padding-bottom: 10px;
}

.lock-container .text-primary {
    color:#1A365D !important;
}

/*
===============================================
    INVENTORY STYLE
===============================================
*/

.inventory-banner {
    min-height: unset !important;
    padding-top: 130px;
    padding-bottom: 20px;
}

.inventory-banner:after {
    content: "";
    position: absolute;
    left: 0px;
    top:0px;
    width:100%;
    height: 100%;
    background:linear-gradient(180deg, rgba(255,255,255,0.5), white);
}

.invenotry-filter {
    padding: 15px;
    background-color: white;
}

.slider-label {
    font-size: 12px;
    display: block;
    margin-top: -5px;
    margin-bottom: 14px;
}

.slider-container {
    padding: 0px 25px 0px 20px;
}


.btn-order:hover,
.btn-order {
    border: 1px solid #1A365D !important;
    color: #1A365D; 
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}


.btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active {
    background: #1A365D !important;
    color: white;

}


.mfilter-block {
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 10px;
    background-color: rgba(255,255,255,0.7);
    margin-bottom: 10px;
}

.filter-check-item {
    padding: 4px 0px;
    display: flex;
    align-items:flex-start;

}

.filter-check-item input{
    margin-top: 1   px;
    margin-right: 5px;
}

.filter-check-item label {
    font-size: 16px;
    line-height: 1.3;
    font-weight: 500;
}

.filter-check-item input:checked {
    background-color: #1A365D;
    border: #1A365D;
}
.filter-check-item input:checked[type=checkbox] {
    background-image: url(/public/assets/images/check.svg);
}

.filter-info-item {
    width: 130px;
    padding: 0px 10px;
    display: flex;
    flex-flow: column;
    border-left: solid 1px #ddd;
    margin-bottom: 15px;
}

.filter-info-item .filter-title{
    color: #1A365D;
}

.filter-card.hide {
    overflow: hidden;
    /*height: 75px;*/
}

.filter-card .filter-container-info {
    display: none !important;
}

.filter-card.hide .filter-container-info{
    display: flex !important;
}

.filter-card.hide {
    padding-bottom: 10px !important;
}

.filter-card .filter-container-input {
    display: flex !important;
}

.filter-card.hide .filter-container-input{
    display: none !important;
}

/*
===============================================
    VEHICLE CARD
===============================================
*/

.nav-tabs-vehicle{
    border-bottom: 2px solid #ebeef4;
}

.nav-tabs-vehicle .nav-link:active,
.nav-tabs-vehicle .nav-link:focus,
.nav-tabs-vehicle .nav-link {
    border: none;
    color: unset;
    background:unset;
    position: relative;
    font-size: 14px;
}

.nav-tabs-vehicle .nav-link.active {
    position: relative;
    background:unset;
    font-weight: 500;
}

.nav-tabs-vehicle .nav-link::after {
    content: "";
    background: #1A365D;
    height: 2px;
    position: absolute;
    width: 100%;
    left: 0;
    bottom: -1px;
    transition: all 250ms ease 0s;
    transform: scale(0);
}

.nav-tabs-vehicle .nav-link.active::after {
    transform:unset;
}

.vehicle-general-item {
    display: flex;
    margin-bottom: 20px;
}

.vehicle-general-item h4 {
    color: #1A365D;
     
    margin: 0px;
    font-size: 12px;
    font-weight: 500;
}

.vehicle-general-item .vehicle-value {
    font-size: 14px;
    font-weight: 500;
}

.vehicle-general-item img {
    max-width: 30px;
    margin-right: 5px;
}

.vehicle-feature i {
}

.vehicle-feature {
    color: #1A365D;
    font-size: 14px;
    font-weight: 500;
    padding: 5px 20px;
}



.form-order .site-input:focus,
.form-order .site-input {
  border:1px solid #d5d5d5;
  border-radius: 20px;
}

.form-order .site-input::placeholder {
  font-weight: 400;
  color: #333;
  opacity: 0.5;
}

.form-order .site-input {
  font-weight: 400;
}

.form-order input[type=submit] {
    margin: auto;
    max-width: 200px;
    border-color: #1A365D;
    background-color: #1A365D;
    color: white;
    transition: all 0.5s ease;
}

.form-order input[type=submit]:hover {
    background:rgba(4, 26, 32, 0.9);
    text-decoration: none !important;
    color: #e7bd01 ;
  }

/*
===============================================
    BREADCRUMBS STYLE
===============================================
*/

.breadcrumbs a {
    padding-right: 5px;
    position: relative;
    text-decoration: unset;
    font-size: 14px;
    font-weight: 500;
    color: #1A365D;
}

.breadcrumbs a:not(.info):after {
    font-size: 12px;
    font-weight: 600;
    padding-left: 7px;
    content: "/";
    color: #bbb;

}

.breadcrumbs a:not(.info):hover {
    color: #e7bd01;;
}

/*
===============================================
    CHOICES STYLE
===============================================
*/


.choices__inner {
    /*border: 1px solid #1A202C !important;*/
    /*border: 2px solid rgba(26, 32, 44, 0.2) !important;*/
    padding: 8px 8px !important;
    border-radius: 20px !important;
    width: 100% !important;
    appearance: none !important;
    font-weight: 500 !important;
}

.choices__input {
    padding-bottom: 0px;
    padding-left: 10px;
    min-width: 100px;
}

.choices__list--multiple .choices__item.is-highlighted,
.choices__list--multiple .choices__item {
    background-color: #1A365D ;
    border-color: #1A365D ;
}

.choices__placeholder {
    padding-left: 6px;
    font-weight: 400;
    color: #757575;
    opacity: 1;
    
}

 

.choices[data-type*=select-multiple] .choices__button, .choices[data-type*=text] .choices__button {
    border-left-color: white;;
}

.choices__list--dropdown, .choices__list[aria-expanded] {
    z-index: 999;
}

.choices__list--dropdown, .choices__list[aria-expanded] {
    margin-top: 5px;
    border-radius: 20px !important;
}

@media (min-width: 640px) {
    .choices__list--dropdown .choices__item--selectable, .choices__list[aria-expanded] .choices__item--selectable {
        padding-right: unset;
    }
}


/*
===============================================
    NOUI SLIDER STYLE
===============================================
*/

.noUi-target {
    box-shadow: none;
    background-color: #1A365D;
    border-color: #1A365D;
}

.noUi-connect {
    background-color: #1A365D;
}

.noUi-horizontal {
    height: 6px;
}

.noUi-target {
    background: #FAFAFA;
    border-radius: 4px;
    border: 1px solid #D3D3D3;
    box-shadow: inset 0 1px 1px #F0F0F0,0 3px 6px -5px #BBB;
}

.noUi-target {
    position: relative;
}

.noUi-target, .noUi-target * {
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    -ms-touch-action: none;
    touch-action: none;
    -ms-user-select: none;
    -moz-user-select: none;
    user-select: none;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
 
*, *::before, *::after {
    box-sizing: border-box;
}

.noUi-touch-area {
    height: 100%;
    width: 100%;
}

.noUi-horizontal .noUi-handle {
    height: 16px;
    width: 16px;
    border-radius: 50%;
    right: -10px !important;
    top: -7px;
}

.noUi-handle {
    background: var(--color-accent);
    border: 2px solid var(--color-accent);
    box-shadow: none;
}

.noUi-handle:after, .noUi-handle:before {
    display: none;
    content: unset;
} 
.noUi-horizontal .noUi-tooltip {
    font-size: 12px;
    bottom:-8px;
    font-weight: 500;
    border-radius: 10px;
    min-width: 45px !important;
    color: #1A365D;

}

/*
===============================================
    PAGINATOR STYLE
===============================================
*/


.search-results{padding:70px 0}
.pagination .page-item:first-child .page-link,.pagination .page-item:last-child .page-link{color:#1A365D}
.pagination{border:1px solid #1A365D;display:inline-flex;border-radius:6px}
.pagination .page-item:first-child,.pagination .page-item:first-child .page-link{border-radius:6px 0 0 6px}
.pagination .page-link {
  color: #1A365D;
  transition: all 0.5s ease;
  font-size: 16px;
  font-weight: 500;
}

@media (max-width:540px) {
    .pagination .page-link {
        font-size: 12px;
    }

}

.active>.page-link, .page-link:hover,
.active>.page-link, .page-link.active {
  border-color: #1A365D;
  background-color: #1A365D;
  color: white !important;
}

.active>.page-link, .page-link i{
  transition: all 0.5s ease;
}

.active>.page-link, .page-link:hover i {
  color: white;
}



/*
===============================================
    SCROLL STYLE
===============================================
*/

::-webkit-scrollbar {
    width: 7px; 
    height: 7px;
}

::-webkit-scrollbar-thumb {
    background-color: #1A365D;
    border-radius: 20px;
}


@media (max-width:540px) {
    a.location {
        width: 100% !important;
    }        
}

a.location {
    background: #fff;
    color: #1A365D;
    font-weight: 500 !important;
}

a.location:hover {
    background: #1A365D;
    color: white;
}

.dropdown-item:active {
    background: #1A365D;
}