/* Remove box shadow and rounded corners from Select2 inputs and dropdown */
.select2 > * {
  outline: none !important;
}
.select2-container--default .select2-selection--single {
    border-radius: 0; /* Remove rounded corners */
    box-shadow: none; /* Remove box shadow */
    border: 1px solid #ccc; /* Optional: Define a standard border */
    height: 40px;
    outline: none !important;
}

/* Remove box shadow and rounded corners from the dropdown */
.select2-container--default .select2-dropdown {
    border-radius: 0; /* Remove rounded corners */
    box-shadow: none; /* Remove box shadow */
    border: 1px solid #ccc; /* Optional: Define a standard border */
}

/* Ensure the hover state also respects the no shadow/no corners design */
.select2-container--default .select2-selection--single:hover {
    box-shadow: none; /* Remove box shadow */
}

/* Remove box shadow on focus */
.select2-container--default .select2-selection--single:focus {
    box-shadow: none; /* Remove box shadow */
    border-color: #999; /* Optional: Adjust the border color for focus */
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 40px;
  font-size: 14px;
  color: #555;
  font-weight: 400;
  padding-left: 14px;
  padding-right: 40px;
  outline: none !important;
  padding-top: 0;
  padding-bottom: 0;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 40px;
  width: 19px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
  font-size: 16px;
  text-rendering: auto;
  transform: translate(0,-50%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  left: -3px;
  margin-left: 0;
  color: #888;
  width: 15px;
  height: 15px;
  border: none;
  text-align: center;
  line-height: 16px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  -webkit-transition: transform .25s ease;
  -moz-transition: transform .25s ease;
  -o-transition: transform .25s ease;
  transition: transform .25s ease;
}


.select2-container .select2-dropdown {
  border-radius: 0;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
  z-index: 1055;
  border-color: #e7e8e8;
    border-bottom-color: rgb(231, 232, 232);
}
.select2-dropdown {
  border-radius: 0;
  border-color: #e7e8e8;
}
.select2-container--default .select2-search--dropdown .select2-search__field {
  height: 32px;
}
.select2-search--dropdown .select2-search__field {
  padding: 4px;
  width: 100%;
  box-sizing: border-box;
}
.select2-container--default .select2-results > .select2-results__options {
  max-height: 350px;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #f0f2f5;
  border-bottom-color: #f0f2f5;
  color: #555;
}
.select2-results__options li {
  font-size: 13px;
  border-bottom: 1px solid #f0f2f5;
    margin-bottom: 0;
  padding-left: 14px;  
}
.select2-container .select2-dropdown{
    min-width: 200px;
}
#vehicle-search-form .vsf-btn{
    line-height: 40px;
    padding-top: 0;
    padding-bottom: 0;
}
@media only screen and (max-width:768px){
    .swiper-button-next::after, .swiper-button-prev::after {
        font-size: 20px;
    }
}