/*결제페이지 컨테이너*/
.coupon {
  background: #f5f6fa;
  padding: 10px 20px;
  width: 100%;
  margin: auto;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  border-radius : 5px;
  max-width: 550px;
  padding-bottom: 20px;
}

@media (min-width:971px) {
  .form {
    width: fit-content;
    margin: auto;
  }
}

.coupon h3 {
  text-align: center;
  margin: 12px auto;
  padding: 0px;
  font-size: 16px;
}

.co-container {
  height: 100%;
}

.container {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}
/*영문 대문자로 변형 클래스*/
.uppercase {
  text-transform: uppercase;
}

/*버튼 효과*/
.btn {
  display: inline-block;
  background: transparent;
  color: inherit;
  font: inherit;
  border: 0;
  outline: 0;
  padding: 0;
  -webkit-transition: all 200ms ease-in;
  transition: all 200ms ease-in;
  cursor: pointer;
}

/*버튼 기본 색상*/
.btn--primary {
  background: #106bb5;
  color: #fff;
-webkit-box-shadow: 0 3px 1px -2px rgba(0, 0, 0, .2), 0 2px 2px 0 rgba(0, 0, 0, .14), 0 1px 5px 0 rgba(0, 0, 0, .12);
    box-shadow: 0 3px 1px -2px rgba(0, 0, 0, .2), 0 2px 2px 0 rgba(0, 0, 0, .14), 0 1px 5px 0 rgba(0, 0, 0, .12);
  border-radius: 2px;
  padding: 5px 20px;
  vertical-align: inherit;
}

@media (max-width:400px){
  .agree {
    font-size:14px;
  } 
}

.btn--primary:hover {
  background: #1175c6;
}

.btn--primary:active {
  background: #106bb5;
  box-shadow: inset 0 0 10px 2px rgba(0, 0, 0, 0.2);
}

.btn--inside {
  margin-left: -80px;
}

/*쿠폰코드 입력 필드*/
.form__field {
  width: 400px;
  background: #fff;
  color: #a3a3a3;
  font: inherit;
  box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.1);
  border: 0;
  outline: 0;
  padding: 10px 18px;
}

/*구매하기 버튼*/
.purchase-button {
  width: -webkit-fill-available;
  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 50px;
}

/*구매 수량 버튼*/


@media (max-width:970px) {
  .coupon {
    background: #f5f6fa;
    padding: 10px 20px;
    width: 95%;
    margin: auto;
    padding-bottom: 20px;
  }

  .form__field {
    width: 95%;
  }
}

/*직업선택*/

.coupon label {
  display: inline-block;
  color: #424242;
  cursor: pointer;
  position: relative;
}

.coupon label span {
  display: inline-block;
  position: relative;
  background-color: transparent;
  width: 25px;
  height: 25px;
  transform-origin: center;
  border: 2px solid #106bb5;
  border-radius: 50%;
  vertical-align: -6px;
  margin-right: 10px;
  transition: background-color 150ms 200ms, transform 350ms cubic-bezier(0.78, -1.22, 0.17, 1.89);
}

.coupon label span:before {
  content: "";
  width: 0px;
  height: 2px;
  border-radius: 2px;
  background: #424242;
  position: absolute;
  transform: rotate(45deg);
  top: 10px;
  left: 7px;
  transition: width 50ms ease 50ms;
  transform-origin: 0% 0%;
}

.coupon label span:after {
  content: "";
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: #424242;
  position: absolute;
  transform: rotate(305deg);
  top: 14px;
  left: 8.5px;
  transition: width 50ms ease;
  transform-origin: 0% 0%;
}

.coupon label:hover span:before {
  width: 5px;
  transition: width 100ms ease;
}

.coupon label:hover span:after {
  width: 10px;
  transition: width 150ms ease 100ms;
}

.coupon input[type="radio"] {
  display: none;
}

.coupon input[type="radio"]:checked+label span {
  background-color: #106bb5;
  transform: scale(1.25);
}

.coupon input[type="radio"]:checked+label span:after {
  width: 10px;
  background: #f5f6fa;
  transition: width 150ms ease 100ms;
}

.coupon input[type="radio"]:checked+label span:before {
  width: 5px;
  background: #f5f6fa;
  transition: width 150ms ease 100ms;
}

.coupon input[type="radio"]:checked+label:hover span {
  background-color: #106bb5;
  transform: scale(1.25);
}

.coupon input[type="radio"]:checked+label:hover span:after {
  width: 10px;
  background: #f5f6fa;
  transition: width 150ms ease 100ms;
}

.coupon input[type="radio"]:checked+label:hover span:before {
  width: 5px;
  background: #f5f6fa;
  transition: width 150ms ease 100ms;
}

.job h1 {
  margin-bottom: 30px;
}

.job-title {
  margin-bottom: 10px;
}


.payment-method {
  background-color: #fff;
  width: 400px;
  padding: 10px 20px;
  border-radius: 5px;
  margin-bottom: 5px;
  box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.1);
}

.payment-method label {
  margin-bottom: 0px;
}

.payment-method i {
  color: #424242;
  float: right;
  line-height: inherit;
}

@media (max-width:970px) {
  .payment-method {
    width: 100%;
  }
}