.parejolocation-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 3000;
}

.parejolocation-modal.is-open {
  display: block;
}

.parejolocation-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(23, 23, 23, .55);
}

.parejolocation-modal__dialog {
  position: relative;
  margin: 4vh auto;
  width: 92%;
  max-width: 900px;
  max-height: 92vh;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
}

.parejolocation-modal__form-side {
  flex: 1 1 320px;
  padding: 40px 36px;
  box-sizing: border-box;
}

.parejolocation-modal__logo {
  max-width: 160px;
  max-height: 48px;
  object-fit: contain;
  margin-bottom: 32px;
}

.parejolocation-modal__heading {
  font-size: 15px;
  font-weight: 500;
  color: #171717;
  margin: 0 0 24px;
  line-height: 1.5;
  text-transform: none !important;
}

.parejolocation-modal__heading p {
  margin: 0;
}

.parejolocation-modal__label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: #8a8a8a;
  margin-bottom: 4px;
}

.parejolocation-modal__select {
  width: 100%;
  border: none;
  border-bottom: 1px solid #ece5d6;
  background: transparent;
  font-size: 15px;
  color: #171717;
  padding: 6px 0 10px;
  margin-bottom: 22px;
  border-radius: 0;
  appearance: none;
}

.parejolocation-modal__select:disabled {
  color: #8a8a8a;
}

.parejolocation-modal__checkbox-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #171717;
  margin-bottom: 18px;
  cursor: pointer;
}

.parejolocation-modal__checkbox-row input {
  width: 16px;
  height: 16px;
  accent-color: #171717;
}

.parejolocation-modal__checkbox-row--muted {
  color: #8a8a8a;
  margin-top: 4px;
}

.parejolocation-modal__continue {
  width: 100%;
  padding: 14px;
  border-radius: 24px;
  border: none;
  background: #171717;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  cursor: pointer;
  margin-bottom: 18px;
}

.parejolocation-modal__continue:disabled {
  opacity: .6;
  cursor: default;
}

.parejolocation-modal__image-side {
  flex: 1 1 320px;
  min-height: 260px;
  background: #f3efe6;
}

.parejolocation-modal__image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 767px) {
  .parejolocation-modal__dialog {
    margin: 6vh auto;
    width: 90%;
    max-height: 88vh;
    border-radius: 16px;
    overflow-y: auto;
  }

  .parejolocation-modal__image-side {
    display: none;
  }

  .parejolocation-modal__form-side {
    padding: 28px 20px;
  }
}
