@charset "UTF-8";
.wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.header {
  height: 87px;
  background-color: #000000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.header__logo img {
  display: block;
  width: 120px;
}

.content {
  padding: 0 20px 30px 20px;
  padding-bottom: 60px;
  border-bottom: 5px solid #F5F5F5;
}
.content-pdTop {
  padding-top: 30px;
}
.content .title {
  padding: 30px 0 6px 0;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
}
.content .title-pd {
  padding-bottom: 30px;
}
.content .subTitle {
  padding-bottom: 30px;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  line-height: 1.3;
}
.content:last-of-type {
  border-bottom: none;
}

.inputForm {
  padding-bottom: 27px;
}
.inputForm-pd {
  padding-bottom: 47px;
}
.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--intro {
  background-image: url("../../img/form_profile--off.svg");
}
.inputForm__group--id {
  background-image: url("../../img/form_person--off.svg");
}
.inputForm__group--email {
  background-image: url("../../img/form_email--off.svg");
}
.inputForm__group--etc {
  display: none;
}
.inputForm__group--etc .inputForm__input {
  margin-left: 10px;
}
.inputForm__group--pw {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-image: url("../../img/form_lock--off.svg");
}
.inputForm__group:focus-within {
  outline: #000000 solid 2px;
}
.inputForm__group:focus-within.inputForm__group--id {
  background-image: url("../../img/form_person--on.svg");
}
.inputForm__group:focus-within.inputForm__group--pw {
  background-image: url("../../img/form_lock--on.svg");
}
.inputForm__group:focus-within.inputForm__group--email {
  background-image: url("../../img/form_email--on.svg");
}
.inputForm__group:focus-within.inputForm__group--intro {
  background-image: url("../../img/form_profile--on.svg");
}
.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: black;
  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;
}
.inputForm__pw-toggle {
  cursor: pointer;
  margin-right: 10px;
  background: url("../../img/form-black_pw-hide.svg");
  background-repeat: no-repeat;
  background-size: 24px 24px;
  width: 24px;
  height: 24px;
  color: transparent;
}
.inputForm__pw-toggle.active {
  background: url("../../img/form-black_pw-show.svg");
}

.select-menu {
  position: relative;
}
.select-menu__btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  border: 1px solid #CDCDCD;
  border-radius: 6px;
  background-repeat: no-repeat;
  background-position: 10px center;
  cursor: pointer;
}
.select-menu__btn span {
  display: block;
  padding: 0 10px;
  height: 49px;
  line-height: 49px;
  margin-left: 43px;
  text-align: left;
  font-size: 14px;
  font-weight: 600;
}
.select-menu__btn--field {
  background-image: url("../../img/form_swim--off.svg");
}
.select-menu__btn:focus {
  outline: #000000 solid 2px;
}
.select-menu__btn:focus.select-menu__btn--field {
  background-image: url("../../img/form_swim--on.svg");
}
.select-menu__btn::after {
  content: "";
  display: block;
  position: absolute;
  right: 10px;
  width: 20px;
  height: 20px;
  background: url("../../img/ico_arrow-right--black.svg") no-repeat center center;
  background-size: contain;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.select-menu__btn.active::after {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.select-menu__dropdown {
  margin-top: 4px;
  min-width: 150px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  border: 1px solid #CDCDCD;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 6px 6px 6px 6px;
}
.select-menu__dropdown::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  background: inherit;
  -webkit-filter: blur(10px);
          filter: blur(10px);
  z-index: -1;
  pointer-events: none;
}
.select-menu__option {
  text-align: left;
}
.select-menu .inputForm__group {
  margin-top: 10px;
}

.select-menu__dropdown.hide {
  display: none;
}

.settlement-summary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 9.5px;
  margin-top: 30px;
}
.settlement-summary__item {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 17px 17px;
  border: 1px solid #cbcbcb;
  border-radius: 20px;
}
.settlement-summary__label {
  font-size: 14px;
  font-weight: 600;
  color: #929292;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 15px;
}
.settlement-summary__label::before {
  content: "";
  display: block;
  margin-right: 8px;
  width: 15px;
  height: 16px;
}
.settlement-summary__label--withdrawable::before {
  background-image: url("../../img/ico-withdrawable.svg");
}
.settlement-summary__label--accumulated::before {
  background-image: url("../../img/ico-accumulated.svg");
}
.settlement-summary__value {
  font-size: 20px;
  font-weight: 700;
}
.settlement-summary__value::after {
  content: "원";
  margin-left: 2px;
}

.withdrawal-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  margin-top: 30px;
  border-top: 5px solid #F5F5F5;
}
.withdrawal-list .withdrawal-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  padding: 20px 0;
  border-bottom: 1px solid #E5E5E5;
}
.withdrawal-list .withdrawal-item .withdrawal-date {
  font-size: 13px;
  color: #848484;
  font-weight: 400;
}
.withdrawal-list .withdrawal-item .withdrawal-info {
  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;
}
.withdrawal-list .withdrawal-item .withdrawal-info .withdrawal-price {
  color: #000;
  font-size: 16px;
  font-weight: 700;
}
.withdrawal-list .withdrawal-item .withdrawal-info .withdrawal-price::after {
  content: "원";
  margin-left: 1px;
}
.withdrawal-list .withdrawal-item .withdrawal-info .withdrawal-status {
  font-size: 14px;
  font-weight: 600;
  color: #696969;
  padding: 5px 7px;
  border-radius: 999px;
}
.withdrawal-list .withdrawal-item .withdrawal-info .withdrawal-status--wait {
  background-color: #F1F1F1;
  color: #717171;
}
.withdrawal-list .withdrawal-item .withdrawal-info .withdrawal-status--complete {
  background-color: #E2E5FF;
  color: #3F53FF;
}
.withdrawal-list .withdrawal-item .withdrawal-info .withdrawal-status--reject {
  background-color: #FFE9E9;
  color: #FF3232;
}

.prepare-coach__accountNumber {
  margin-top: 20px;
}
.prepare-coach__accountNumber-pdTop {
  padding-top: 10px;
}
.prepare-coach__accountNumber .inputForm__label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}
.prepare-coach__accountNumber .inputForm__input {
  width: 100%;
  padding: 10px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.btn {
  margin-top: 20px;
  width: 100%;
  height: 48px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  border-radius: 6px;
  cursor: pointer;
}
.btn--primary {
  background-color: #007bff;
  color: #fff;
  border: none;
}
.btn--primary:hover {
  background-color: #0056b3;
}

.btn {
  margin: 30px auto 20px;
  height: 49px;
  border: 1px solid #B5B5B5;
  width: 100%;
  font-size: 16px;
  font-weight: 700;
  border-radius: 6px;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
  cursor: pointer;
}
.btn--primary {
  color: #0B7BBF;
  background-color: white;
  border-color: #0B7BBF;
}
.btn:hover {
  background-color: #0B7BBF;
  color: white;
}

.bottom-btn {
  margin: auto auto 20px;
  height: 49px;
  border: 1px solid #B5B5B5;
  width: calc(100% - 40px);
  font-size: 16px;
  font-weight: 700;
  border-radius: 6px;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
  cursor: pointer;
}
.bottom-btn--primary {
  color: #0B7BBF;
  background-color: white;
  border-color: #0B7BBF;
}
.bottom-btn:hover {
  background-color: #0B7BBF;
  color: white;
}/*# sourceMappingURL=form-common.css.map */