.selectLocationsSection {
  padding: 150px 0;
}

.selectLocationsSection h3 {
  font-size: 50px;
  font-weight: 600;
}

.selectLocationsSection .selectLocationWrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 32px;
}

.selectLocationsSection .selectLocationWrapper .locationBox {
  cursor: pointer;
  padding: 20px;
  overflow: hidden;
  flex: 1 1 calc(33.333% - 20px);
  box-sizing: border-box;
  height: 330px;
  position: relative;
  transition: all 0.3s ease-in-out;
  border-radius: 10px;
}

.selectLocationsSection .selectLocationWrapper .locationBox::before {
  position: absolute;
  transition: all 0.7s ease-in-out;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-image: var(--background);
  background-size: cover;
  background-position: center;
}

.selectLocationsSection .selectLocationWrapper .locationBox::after {
  position: absolute;
  transition: all 0.3s ease-in-out;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, #000000 0%, rgba(0, 0, 0, 0.4) 100%);
}

.selectLocationsSection .selectLocationWrapper .locationBox:hover::before {
  transform: scale(1.1);
}

.selectLocationsSection .selectLocationWrapper .locationBox:hover::after {
  background: linear-gradient(0deg, #e37231 0%, rgba(0, 0, 0, 0.4) 100%);
  transition: all 0.3s ease-in-out;
}

.selectLocationsSection .selectLocationWrapper .locationBox .locationContent {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  height: 100%;
}

.selectLocationsSection .selectLocationWrapper .locationBox .locationContent .locationTagsList {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
}

.selectLocationsSection .selectLocationWrapper .locationBox .locationContent .locationTagsList li {
  height: 22px;
  background-color: rgba(9, 9, 9, 0.7);
  display: flex;
  gap: 6px;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  border-radius: 40px;
  color: #fff;
  font-weight: 400;
  font-size: 11px;
  padding: 8px;
}

.selectLocationsSection .selectLocationWrapper .locationBox .locationContent .locationTagsList p {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
}

.selectLocationsSection .selectLocationWrapper .locationBox .locationInfo {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: self-start;
  justify-content: flex-end;
  height: 100%;
}

.selectLocationsSection .selectLocationWrapper .locationBox .locationInfo .locationName {
  display: flex;
  align-items: center;
  gap: 6px;
}

.selectLocationsSection .selectLocationWrapper .locationBox .locationInfo .locationName h6 {
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
  color: #fff;
  margin-bottom: 0px;
}

.selectLocationsSection .selectLocationWrapper .locationBox .locationAddress p {
  font-size: 14px;
  font-weight: 400;
  margin-top: 8px;
}

#askPaymentType.askPaymentType .modal {
  max-width: 550px;
  padding: 20px 24px 40px;
  border-radius: 0;
}

#askPaymentType.askPaymentType .modal h6 {
  font-size: 20px;
  font-weight: 600;
  text-align: left;
  margin-bottom: 30px;
}

.paymentOptionsWrapper {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.paymentOptionsWrapper .labelContainer {
  padding: 20px;
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  border: 2px solid black;
  border-radius: 5px;
}
.paymentOptionsWrapper .labelContainer:hover {
  background-color: #faeae1;
}

.paymentOptionsWrapper .labelContainer input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.paymentOptionsWrapper .labelContainer input:checked ~ .checkmark {
  border-color: #000;
}

.paymentOptionsWrapper .labelContainer input:checked ~ .checkmark:after {
  display: block;
}

.paymentOptionsWrapper .labelContainer .checkmark {
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 18px;
  width: 18px;
  border: 2px solid #838383;
  background-color: transparent;
  border-radius: 3px;
}

.paymentOptionsWrapper .labelContainer .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 0;
  top: -1px;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 5px;
  height: 10px;
  border: solid #000;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.paymentOptionsWrapper .labelContainer:hover input ~ .checkmark {
  border-color: #000;
}

.paymentOptionsWrapper .labelContainer .labelConetent {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  text-align: left;
}

.paymentOptionsWrapper .labelContainer .labelConetent .labelInfo {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 10px;
}

.paymentOptionsWrapper .labelContainer .labelConetent p {
  font-size: 16px;
  font-weight: 500;
}

.paymentOptionsWrapper .labelContainer .labelConetent .tag {
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1px 0;
  font-size: 18px;
  font-weight: 900;
  color: #000000;
  border-radius: 40px;
}

.paymentOptionsWrapper .labelContainer .typeImage {
  width: 80px;
  height: 85px;
  margin-right: 10px;
}

.paymentOptionsWrapper .labelContainer .typeImage img {
  max-width: -moz-max-content;
  max-width: max-content;
  position: relative;
}

.paymentOptionsWrapper .labelContainer:nth-child(2) .typeImage img {
  top: -15px;
}

.paymentOptionsWrapper .labelContainer:nth-child(3) .typeImage img {
  top: -10px;
}

.modal-container.active.out {
  opacity: 0;
}

@media (max-width: 992px) {
  .selectLocationsSection {
    padding: 100px 0 60px;
  }
  .selectLocationsSection .selectLocationWrapper .locationBox {
    flex: 1 1 calc(50% - 20px);
  }
  .selectLocationsSection h3 {
    font-size: 36px;
  }
}
@media (max-width: 640px) {
  .selectLocationsSection {
    padding: 100px 0 60px;
  }
  .selectLocationsSection h3 {
    font-size: 20px;
  }
  .selectLocationsSection .selectLocationWrapper .locationBox {
    flex: 1 1 100%;
    height: 240px;
  }
  .selectLocationsSection .selectLocationWrapper .locationBox .locationAddress p {
    font-size: 14px;
    margin-top: 5px;
  }
  #askPaymentType.askPaymentType .modal {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    padding: 18px;
  }
  #askPaymentType.askPaymentType .modal h6 {
    font-size: 18px;
  }
  .paymentOptionsWrapper .labelContainer {
    height: 160px;
  }
  .paymentOptionsWrapper .labelContainer .typeImage img {
    top: 0 !important;
  }
}
@media (max-width: 380px) {
  .paymentOptionsWrapper .labelContainer {
    padding: 0 10px 0 50px;
  }
  .paymentOptionsWrapper .labelContainer .checkmark {
    left: 15px;
  }
  .paymentOptionsWrapper .labelContainer .typeImage {
    width: 60px;
  }
  .paymentOptionsWrapper .labelContainer .typeImage img {
    max-width: 90px;
  }
  .paymentOptionsWrapper .labelContainer .labelConetent .labelInfo p {
    font-size: 14px;
  }
  .paymentOptionsWrapper .labelContainer .labelConetent .labelInfo .tag {
    font-size: 12px;
    height: 20px;
  }
}
.openInfo {
  font-size: 12px;
  color: #fff;
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.openInfo svg {
  display: inline-block;
}
.openInfo svg.closed {
  fill: #ea7d7d;
}
.openInfo svg.opened {
  fill: #37ff88;
}

/*# sourceMappingURL=select-location.css.map */
