* {
  font-family: "Noto Sans", sans-serif;
}

.container {
  max-width: 1340px;
  margin: 0 auto;
  width: 100%;
  padding: 0 16px;
}

@media screen and (max-width: 1400px) {
  .container {
    max-width: 1240px;
  }
}

.hero {
  height: 75vh;
  background: url("../img/hero.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.ls-8 {
  letter-spacing: 8px;
}

/* form */
section.form {
  position: relative;
  top: -50px;
  z-index: 1000;
  margin-bottom: -50px;
}

.grid-input {
  border-radius: 5px;
  border: 1px solid #f4f4f4;
  background: #fcfbfb;
}

.outline {
  border-radius: 5px;
  border: 2px solid #374360;
}
.brand-item {
  border-radius: 10px;
  background: #fff;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
}

.brand-item img {
  width: 50px;
}
.heart {
  right: 30px;
  bottom: -18px;
}
img#flag {
  min-width: 20px;
  min-height: 20px;
  width: 20px;
  height: 20px;
  object-fit: contain;
}

/* listing page */
.listing-hero {
  background: url("../img/listing-hero.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
input[type="range"]::-webkit-slider-thumb {
  pointer-events: all;
  width: 24px;
  height: 24px;
  -webkit-appearance: none;
  /* @apply w-6 h-6 appearance-none pointer-events-auto; */
}

/* favorite page */
.dropdown-items {
  min-width: 200px;
  right: 0;
  z-index: 100000000;
  background-color: white;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
  border-radius: 15px;
  overflow: hidden;
}
.dropdown-items li a {
  padding-top: 15px;
  padding-bottom: 15px;
}
.dropdown-items * {
  background-color: white;
  border-radius: 0;
}

/* my listings */
.tabBtn.active {
  color: #f3a94d;
  border-bottom: 3px solid #f3a94d;
}

/* post listing */
.radio-btn {
  display: flex;
  width: 40px;
  height: 40px;
  border: 1px solid #bcbcbc;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
}
input[type="radio"] {
  display: none;
}
input[type="radio"]:checked + .radio-btn {
  border: 1px solid #f3a94d;
  background-color: #f3a94d;
  color: white;
}
select {
  appearance: none;
  background: url("../img/chevron.png");
  background-size: 15px;
  background-repeat: no-repeat;
  background-position: 97%;
}

/* car-make-modal */
/* Hide scrollbar for Chrome, Safari and Opera */
.car-make-modal::-webkit-scrollbar,
.car-make-modal *::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.car-make-modal,
.car-make-modal * {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
.make-item:last-child {
  border: unset;
}
.item.arrow{
  position: relative;
}
img.arr {
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
}
.car-make{
  display: none;
}
.car-make.active{
  display: block;
}
@media screen and (max-width: 767px) {
  .menu {
    background: white;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    height: 100vh;
    padding: 30px;
    flex-direction: column;
    width: 50%;
    justify-content: flex-start;
    align-items: flex-start;
    font-size: 22px;
    transition: 0.5s;
    transform: translateX(-100%);
  }
  .menu.active {
    transform: translateX(0);
  }
  .menu-bg {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
  }
  .menu-bg.active {
    display: block;
  }
  .hero .container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 100%;
  }

  .hero {
    padding-top: 50px;
    padding-bottom: 100px;
  }
  .cols {
    text-align: center;
  }
  footer .item {
    margin-top: 45px;
  }
  .sm-text * {
    font-size: 11px;
  }
  .sm-text {
    margin-bottom: 20px;
  }

  /* car browsing history */
  .history p {
    font-size: 14px;
  }

  /* profile */
  .profile p {
    font-size: 13px;
  }
  .profile .card {
    padding: 15px 18px;
  }

  .listings button {
    width: 100%;
  }

  img.arr{
    display: none;
  }
}
