.location-select {
  position: relative;
}
.location-select.show .location-select__list-wrapper {
  display: flex;
}
.location-select.show .location-select__menu-arrow {
  transform: rotate(180deg);
}
.location-select__list-wrapper {
  display: none;
  flex-direction: column;
  position: absolute;
  padding: 48px 35px;
  bottom: -210px;
  left: 10px;
  z-index: 50;
  display: flex;
  gap: 30px;
  width: 380px;
  border-radius: 24px;
  font-family: Gilroy;
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  background: #fff;
  color: #000;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.25);
}
@media (max-width: 768px) {
  .location-select__list-wrapper {
    padding: 30px 20px;
    bottom: -195px;
    width: 324px;
  }
}
@media (max-width: 768px) {
  .location-select__list-wrapper p {
    font-size: 16px;
  }
}
.location-select__list-wrapper:before {
  content: "";
  background-image: url("./images/arrow.png");
  position: absolute;
  top: -40px;
  display: block;
  width: 80px;
  height: 70px;
}
@media (max-width: 768px) {
  .location-select__list-wrapper:before {
    top: -29px;
    display: block;
    width: 50px;
    height: 45px;
    background-size: contain;
  }
}
.location-select__items-wrapper {
  display: flex;
  justify-content: center;
  gap: 30px;
}
@media (max-width: 768px) {
  .location-select__items-wrapper {
    justify-content: left;
    gap: 16px;
  }
}
.location-select__item {
  border-radius: 10px;
  border: 1px solid #1e3a5e;
  color: #1e3a5e;
  font-family: Gilroy;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 10px 20px;
  cursor: pointer;
}
.location-select__item--selected {
  background: #1e3a5e;
  color: #fff;
}
.location-select__selected {
  font-family: Gilroy;
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  display: flex;
  align-items: center;
  cursor: pointer;
}
@media (max-width: 768px) {
  .location-select__selected {
    font-size: 15px;
  }
}
.location-select__selected-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.location-select__city {
  display: flex;
  align-items: center;
  gap: 5px;
}
.location-select__address {
  font-family: Gilroy;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (max-width: 768px) {
  .location-select__address {
    font-size: 14px;
  }
}

.location-select {
  display: flex;
  align-items: center;
}
.location-select img {
  margin-right: 5px;
}
@media (max-width: 768px) {
  .location-select img {
    width: 20px;
  }
}
.location-select .location-select__menu-arrow {
  margin-top: 4px;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .location-select .location-select__menu-arrow {
    width: 15px;
  }
}/*# sourceMappingURL=style.css.map */