@charset "UTF-8";
.checkboxForm {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
.checkboxForm__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border: 1px solid #D9D9D9;
  border-radius: 6px;
}
.checkboxForm__input {
  display: none;
}
.checkboxForm__input:checked + .checkboxForm__label::after {
  border-color: #000000;
}
.checkboxForm__input:checked + .checkboxForm__label::before {
  border-color: #000000;
}
.checkboxForm__label {
  font-size: 15px;
  font-weight: 600;
  color: black;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  height: 60px;
  cursor: pointer;
  padding-left: 20px;
  border-radius: 6px;
}
.checkboxForm__label::before {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  border-radius: 7px;
  border: 1px solid #B8B8B8;
}
.checkboxForm__label::after {
  content: "";
  position: absolute;
  top: 22px;
  left: 28.2px;
  width: 5px;
  height: 10px;
  border: solid #B8B8B8;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.checkboxForm .read-more {
  padding-right: 15px;
  color: #212121;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
}

.radioForm {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  margin-top: 27px;
}
.radioForm__title {
  font-size: 16px;
  font-weight: 600;
  color: black;
}
.radioForm__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #D9D9D9;
  border-radius: 6px;
}
.radioForm .radioForm__input {
  display: none;
}
.radioForm .radioForm__input:checked + .radioForm__label::after {
  background: black;
  border: 1px solid black;
}
.radioForm .radioForm__input:checked + .radioForm__label::before {
  border-color: #000000;
}
.radioForm .radioForm__label {
  font-size: 15px;
  font-weight: 600;
  color: black;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  height: 60px;
  cursor: pointer;
  padding-left: 20px;
  border-radius: 6px;
}
.radioForm .radioForm__label::before {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid #B8B8B8;
}
.radioForm .radioForm__label::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 32px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: #E0E0E0;
  border: 1px solid #D9D9D9;
  border-radius: 50%;
  opacity: 1;
  -webkit-transition: all 0.2s, opacity 0.2s;
  transition: all 0.2s, opacity 0.2s;
}
.radioForm .ticket-count {
  padding: 6px 10px;
  margin-right: 13px;
  color: #0B7BBF;
  background-color: #CDECFE;
  border-radius: 99px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
}
.radioForm .ticket-price {
  padding-right: 15px;
  color: #212121;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
}
.radioForm .ticket-price::after {
  content: "원";
}
.radioForm__subtxt {
  font-size: 14px;
  color: #757575;
  font-weight: 500;
  padding-left: 5px;
  line-height: 1.5;
}

.inputForm__group {
  margin-bottom: 8px;
  border: 1px solid #CDCDCD;
  border-radius: 6px;
  background-repeat: no-repeat;
  background-position: 10px center;
}
.inputForm__group--name {
  background-image: url("/img/form_person--off.svg");
}
.inputForm__group--phoneNum {
  background-image: url("/img/form_call--off.svg");
}
.inputForm__group:focus-within {
  outline: #000000 solid 2px;
}
.inputForm__group:focus-within.inputForm__group--name {
  background-image: url("/img/form_person--on.svg");
}
.inputForm__group:focus-within.inputForm__group--phoneNum {
  background-image: url("/img/form_call--on.svg");
}
.inputForm__input {
  width: calc(100% - 44px);
  padding: 0 10px;
  height: 49px;
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #000000;
  margin-left: 43px;
  border: none;
  border-radius: 6px;
  background-color: transparent;
}
.inputForm__input::-webkit-input-placeholder {
  color: #6C6C6C;
}
.inputForm__input::-moz-placeholder {
  color: #6C6C6C;
}
.inputForm__input:-ms-input-placeholder {
  color: #6C6C6C;
}
.inputForm__input::-ms-input-placeholder {
  color: #6C6C6C;
}
.inputForm__input::placeholder {
  color: #6C6C6C;
}
.inputForm__input:focus {
  outline: none;
}/*# sourceMappingURL=form-element.css.map */