.interactive-hero {
  position: relative;
  z-index: 1;
  color: white;
}

.video-container {
  position: absolute;
  min-width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

#bg-video {
  position: absolute;
  top: -45%;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-content {
  /* backdrop-filter: blur(18px);
  background-color: rgba(0, 0, 0, 0.2); */
  width: 100%;
  height: 100%;
  padding: 5rem 2rem;
}

.hero-title>h1 {
  float: none;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
  font-family: "Inter", sans-serif;
}

.selection-main-container {
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.4);
  margin: auto;
  border-radius: 1rem;
  max-width: 590px;
}

.select-input-container {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.vehicle-type-filter>.select-input>.select2 {
  width: 100% !important;
}

.select-input {
  display: flex;
  flex: 1 0 20px;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.select-input>.container {
  width: 100%;
}

.select-item {
  align-items: center;
  justify-content: center;
  margin: 0 auto 0 auto;
  display: block;
  min-width: 231.5px;
  width: 100%;
}

/* the code below is for the dropdown menu */
.wrapper-dropdown {
  position: relative;
  display: inline-block;
  min-width: 10rem;
  width: 100% !important;
  max-width: 483px;
  padding: 18px 0;
  min-height: 44px;
  border-radius: 15px 15px;
  background: #fff;
  text-align: left;
  color: #1c2028;
  font-weight: 700;
  cursor: pointer;
  border: #b9bac5 2px solid;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}


.scrollable-menu {
  height: auto;
  max-height: 200px;
  overflow-x: hidden;
}

.select-arrow {
  margin-left: 10px;
  margin-right: 10px;
  float: right;
  rotate: 180deg;
}

.selected-display {
  margin-left: 20px;
}

svg {
  transition: all 0.3s;
}

.wrapper-dropdown::before {
  position: absolute;
  top: 50%;
  right: 16px;

  margin-top: -2px;

  border-width: 6px 6px 0 6px;
  border-style: solid;
  border-color: #fff transparent;
}

.rotated {
  transform: rotate(-180deg);
}

.wrapper-dropdown .select-dropdown {
  transition: 0.3s;
  position: absolute;
  top: 120%;
  right: 0;
  left: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  z-index: 99;
  border-radius: 15px;
  box-shadow: inherit;
  background: inherit;
  -webkit-transform-origin: top;
  -moz-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  opacity: 0;
  visibility: hidden;
}

.wrapper-dropdown .select-dropdown li {
  padding: 0 15px;
  line-height: 45px;
  overflow: hidden;
}

.wrapper-dropdown .select-dropdown li:last-child {
  border-bottom: none;
}

.select-dropdown {
  padding: 0.5rem !important;
  border: #b9bac5 2px solid;
}

.wrapper-dropdown .select-dropdown li:hover {
  background-color: rgb(199, 199, 199);
  border-radius: 10px;
}

.wrapper-dropdown.active .select-dropdown {
  opacity: 1;
  visibility: visible;
  border-radius: 15px;
}

.wrapper-dropdown.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.search-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: .5rem;
  padding: .5rem 0;
  background-color: #ff9f1c;
  cursor: pointer;
  margin-top: 1rem;
}