.lv2_dealer {
  padding: 0px 0 80px;
}
.lv2_dealer .choices__inner {
  padding: 0 !important;
  border: 1px solid var(--Brand-Color-Primary-200, #ccc) !important;
  background: var(--Brand-Color-Secondary-White, #fff) !important;
  min-height: 45px !important;
  height: 45px !important;
  display: flex;
  align-items: center;
}
.lv2_dealer .choices__list.choices__list--single {
  padding: 0px 20px !important;
}
.lv2_dealer .lv2-float-field.float-active > label {
  top: 0 !important;
  z-index: 2 !important;
  transform: translateY(-50%) scale(0.85) !important;
  color: var(--lv2-color-black) !important;
}
.lv2_dealer .lv2-float-field .choices {
  margin-bottom: 0;
}
.lv2_dealer .lv2-float-field .choices__inner {
  min-height: 48px;
  background: transparent;
  border: none;
  padding-top: 14px;
}
.lv2_dealer .lv2-float-field > label {
  z-index: 2;
}
.lv2_dealer .choices[data-type*=select-one]:after {
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.36458 9.36214C7.15625 9.54964 6.84375 9.54964 6.65625 9.36214L2.65625 5.36214C2.44792 5.15381 2.44792 4.84131 2.65625 4.65381C2.84375 4.44548 3.15625 4.44548 3.34375 4.65381L6.98958 8.29964L10.6563 4.65381C10.8438 4.44548 11.1563 4.44548 11.3438 4.65381C11.5521 4.84131 11.5521 5.15381 11.3438 5.34131L7.36458 9.36214Z' fill='%230A0A0A' fill-opacity='0.8'/%3E%3C/svg%3E%0A");
  border: none;
  width: 14px;
  height: 14px;
  background-size: contain;
  top: 20px;
  right: 18px;
}
.lv2_dealer .choices[data-type*=select-one].is-open::after {
  margin-top: -4.5px;
}
.lv2_dealer .choices__item.choices__item--selectable {
  color: var(--Brand-Color-Primary-Black, #000);
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px; /* 145.455% */
  letter-spacing: 0.88px;
  text-transform: capitalize;
  font-family: var(--lv2-font-regular);
}
.lv2_dealer h1 {
  color: var(--Brand-Color-Primary-Black, #000);
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 64px; /* 133.333% */
  letter-spacing: 1.92px;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-family: var(--lv2-font-regular);
}
@media (max-width: 768px) {
  .lv2_dealer h1 {
    font-size: 36px;
    line-height: 48px;
  }
}
.lv2_dealer p {
  color: var(--Brand-Color-Primary-Black, #000);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  letter-spacing: 0.32px;
}
@media (max-width: 768px) {
  .lv2_dealer p br {
    display: none;
  }
}
.lv2_dealer_grid {
  display: grid;
  grid-template-columns: minmax(0, 650px) 1fr;
  gap: 80px;
}
@media (max-width: 768px) {
  .lv2_dealer_grid {
    display: block;
  }
}
.lv2_dealer_content {
  padding-top: 180px;
}
@media (max-width: 768px) {
  .lv2_dealer_content {
    padding-top: 80px;
  }
}
.lv2_dealer_img {
  position: sticky;
  top: 0px;
  height: -moz-fit-content;
  height: fit-content;
}
@media (max-width: 768px) {
  .lv2_dealer_img {
    display: none;
  }
}
.lv2_dealer_search {
  padding: 32px 0;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.lv2_dealer .tab-content.fade-in-up {
  animation: fadeInUp 0.5s ease-out forwards;
}
.lv2_dealer .tabs {
  width: 100%;
}
.lv2_dealer .tabs__nav {
  position: relative;
  display: flex;
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  border-bottom: 0.5px solid #000;
  scrollbar-width: none;
}
@media (max-width: 768px) {
  .lv2_dealer .tabs__nav {
    gap: 16px;
  }
}
.lv2_dealer .tabs__nav::-webkit-scrollbar {
  display: none;
}
.lv2_dealer .tabs__item {
  position: relative;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  border: 0;
  background: none;
  color: #999;
  white-space: nowrap;
  cursor: pointer;
  transition: 0.25s linear;
  text-align: center;
  font-family: var(--lv2-font-regular);
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: 16.5px; /* 150% */
  letter-spacing: 1.1px;
  text-transform: uppercase;
}
.lv2_dealer .tabs__item svg path {
  fill: #999;
  transition: 0.25s linear;
}
.lv2_dealer .tabs__item.active {
  color: #000;
}
.lv2_dealer .tabs__item.active svg path {
  fill: #000;
}
.lv2_dealer .tabs__indicator {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #000;
  transition: left 0.3s ease, width 0.3s ease;
}
.lv2_dealer .tabs__content {
  padding-top: 24px;
}
.lv2_dealer .dealer_card {
  padding: 32px;
  border: 1px solid var(--Brand-Color-Primary-400, #999);
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 768px) {
  .lv2_dealer .dealer_card {
    padding: 24px;
  }
}
.lv2_dealer .dealer_card_list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.lv2_dealer .dealer_card--label {
  color: var(--Brand-Color-Primary-400, #999);
  font-family: var(--lv2-font-regular);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px; /* 128.571% */
  letter-spacing: 1.12px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}
.lv2_dealer .dealer_card--head h4 {
  color: #25292e;
  font-family: var(--lv2-font-regular);
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px; /* 145.455% */
  letter-spacing: 0.88px;
  text-transform: capitalize;
  margin-bottom: 4px;
}
@media (max-width: 768px) {
  .lv2_dealer .dealer_card--head h4 {
    font-size: 18px;
    line-height: 28px;
  }
}
.lv2_dealer .dealer_card--head p {
  color: #5c6470;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  letter-spacing: 0.32px;
}
.lv2_dealer .dealer_card_info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.lv2_dealer .dealer_card_info_each {
  display: flex;
  align-items: start;
  gap: 12px;
}
.lv2_dealer .dealer_card_info_each--text {
  max-width: 400px;
}
@media (max-width: 768px) {
  .lv2_dealer .dealer_card_info_each--text {
    max-width: 100%;
  }
}
.lv2_dealer .dealer_card_info_each--text p {
  color: var(--Brand-Color-Primary-Black, #000);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px; /* 128.571% */
  letter-spacing: 0.28px;
}
.lv2_dealer .dealer_card_info_each--text p a {
  color: var(--Brand-Color-Primary-Black, #000);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.lv2_dealer .dealer_card_info_each--text span {
  color: #808080;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px; /* 128.571% */
  letter-spacing: 0.28px;
}
.lv2_dealer .dealer_card_info_each--text.phone {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lv2_dealer .dealer_card--btns {
  display: flex;
  align-items: center;
  gap: 24px;
}
.lv2_dealer .dealer_card--btns a::after {
  display: none;
}
@media (max-width: 768px) {
  .lv2_dealer .dealer_card--btns {
    flex-direction: column;
    gap: 16px;
  }
  .lv2_dealer .dealer_card--btns a {
    width: 100%;
  }
}
.lv2_dealer .dealer_card_highlight {
  padding-top: 8px;
}
.lv2_dealer .dealer_card_highlight h4 {
  color: var(--Brand-Color-Primary-600, #666);
  font-family: var(--lv2-font-regular);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 166.667% */
  letter-spacing: 0.96px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.lv2_dealer .dealer_card_highlight ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.lv2_dealer .dealer_card_highlight ul li div {
  border: var(--Stroke-1, 1px) solid #e0e0e0;
  background: var(--Color-White, #fff);
  height: 27px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--Brand-Color-Primary-800, #333);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 166.667% */
  letter-spacing: 0.12px;
  padding: 4px 8px;
}
.lv2_dealer .choices__list--dropdown .choices__list, .lv2_dealer .choices__list[aria-expanded] .choices__list {
  max-height: 260px;
}/*# sourceMappingURL=ev-dealer.css.map */