.selectModal__trigger {
  cursor: pointer;
}
.selectModal__trigger:nth-child(n+2) {
  margin-top: 60px;
}

.selectModal__wrapper,
.selectModal__wrapper * {
  max-width: 100vw;
}

.selectModal__wrapper {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  width: 100%;
  height: 100%;
  max-height: 100vh;
  padding: 20vh 4vw;
  background: rgba(50, 50, 50, 0.85);
  background-color: rgba(0, 0, 0, 0.5);
}

.selectModal__container {
  position: relative;
  border-radius: 12px;
  width: 100%;
  height: 100%;
  max-width: 540px;
  max-height: 600px;
  margin: 0 auto;
  padding: 16px;
  background: #fff;
  overflow: hidden;
}

.selectModal__content {
  line-height: 1.5;
}

.selectModal__inner {
  position: relative;
  overflow-y: scroll;
  height: 100%;
}

.modalTitle {
  padding: 16px 40px;
  background: #E96E1F;
  color: #fff;
  font-size: 1.125rem;
  font-weight: bold;
}

.modalList {
  list-style: none;
  margin: 0;
  padding: 0;
}

.modalList__unit label {
  display: flex;
  align-items: center;
  padding: 16px 40px;
  border-bottom: 1px solid #ccc;
  cursor: pointer;
  position: relative;
  font-size: 16px;
}
.modalList__unit label::before {
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  background-image: url("../../img/icon_check.svg");
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
}
.modalList__unit label:has(input:checked)::before {
  opacity: 1;
}

.p0 {
  padding: 0;
}

/*# sourceMappingURL=modal.css.map */
