.vehicle-info {
  width: 100%;
  padding: 10px;
  background-color: #0001;
}

.switch {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 20px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 15px;
  width: 15px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

.switch input:checked+.slider {
  background-color: #557eb3;
}

.switch input:focus+.slider {
  box-shadow: 0 0 1px #557eb3;
}

.switch input:checked+.slider:before {
  -webkit-transform: translateX(20px);
  -ms-transform: translateX(20px);
  transform: translateX(20px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0.25rem;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.btn {
  display: inline-block;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  border-radius: 0.25rem;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.form-select {
  display: block;
  width: 100%;
  padding: 0.375rem 2.25rem 0.375rem 0.75rem;
  -moz-padding-start: calc(0.75rem - 3px);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  
}
.form-select:not(#vehicleMake,#vehicleModel,#vehicleYear,#vehicleType,#vehicleMake_custom,#vehicleModel_custom) {
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
}
#vehicleMake,
#vehicleModel,
#vehicleYear,
#vehicleType{
  padding-right: 6px;
}
.input-group {
  margin-bottom: 1rem;
}
.mr-2{
  margin-right: 6px;
}

.input-group label:not(.font-normal) {
  font-size: 14px;
  font-weight: 600;
}
.font-normal{
  font-size: 16px;
}
.w-full {
  width: 100%;
}

.d-flex {
  display: flex;
}

.mb-1 {
  margin-bottom: 4px;
}

.mb-2 {
  margin-bottom: 8px;
}
.ps-relative{
  position: relative;
}
.d-block {
  display: block;
}
.font-normal{
  font-weight: 400;
}
.site-btn {
  background-color: #557eb3;
  color: #fff;
}
.autocomplete-items div{
  font-size: 15px;
}
.site-btn:hover {
  background-color: #000;
}
.removeCustom {
    color: #ff0000;
    position: absolute;
    right: 15px;
    top: 30px;
    cursor: pointer;
}
.text-left{
  text-align: left;
}
.text-right{
  text-align: right;
}
.autocomplete-items {
    position: absolute;
    border: 1px solid #ced4da;
    border-bottom: none;
    border-top: none;
    z-index: 99;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 300px;
    overflow-y: scroll;
    text-align: left;
}
.autocomplete-items div {
  padding: 3px 10px;
  cursor: pointer;
  background-color: #fff; 
  border-bottom: 1px solid #0002; 
}

.autocomplete-items div:hover {
  background-color: #f1f3f0; 
}
@media(min-width: 992px) {
  .vehicle-info {
    width: 300px;
    padding: 20px;
  }
}
.more_vehicle_btn{
  background: transparent;
  border: none;
  padding-top: 20px;
  cursor: pointer;
  color: #557eb3;
  font-weight: bold;
}