@charset "utf-8";

/* 사용료 및 결제 정보 */
.mypage_cont .pay_history > ul {
  display: flex;
  flex-wrap: wrap;
  margin: -40px 0 0 -40px;
}
.mypage_cont .pay_history > ul > li {
  flex: 0 0 50%;
  padding: 40px 0 0 40px;
  font-size: 16px;
  box-sizing: border-box;
}
.mypage_cont .pay_history > ul > li .box_cont {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 18px 32px 32px;
  border-radius: 16px;
  border: 1px solid #c0c7ce;
  box-sizing: border-box;
}
.mypage_cont .pay_history > ul > li .box_cont .history_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0 10px 0;
  border-bottom: 1px solid #c0c7ce;
}
.mypage_cont .pay_history > ul > li .box_cont .history_top strong {
  font-size: 20px;
  line-height: 30px;
  font-size: 16px;
  font-weight: bold;
}
.mypage_cont .pay_history > ul > li .box_cont .history_cont {
  margin: 32px 0 0 0;
  position: relative;
}
.mypage_cont .pay_history > ul > li .box_cont .history_cont .num_box {
  text-align: center;
}
.mypage_cont .pay_history > ul > li .box_cont .history_cont .num_box p {
  font-size: 16px;
  font-weight: bold;
  line-height: 24px;
  padding: 0 0 8px;
}
.mypage_cont .pay_history > ul > li .box_cont .history_cont .num_box strong {
  display: block;
  color: #00c1bb;
  line-height: 24px;
  font-size: 22px;
}
.mypage_cont
  .pay_history
  > ul
  > li
  .box_cont
  .history_cont
  .num_box
  strong
  span {
  display: block;
  color: #55616d;
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
}
.mypage_cont .pay_history > ul > li .box_cont .history_cont dl {
  display: table;
  width: 100%;
  margin-top: 16px;
}
.mypage_cont .pay_history > ul > li .box_cont .history_cont dl:first-child {
  margin-top: 0;
}
.mypage_cont .pay_history > ul > li .box_cont .history_cont dl dt,
.mypage_cont .pay_history > ul > li .box_cont .history_cont dl dd {
  display: table-cell;
  font-size: 16px;
  line-height: 24px;
}
.mypage_cont .pay_history > ul > li .box_cont .history_cont dl dt {
  font-weight: bold;
  width: 90px;
}
.mypage_cont .pay_history > ul > li .box_cont .history_cont dl dd {
  color: #55616d;
  text-align: left;
}
.mypage_cont .pay_history > ul > li .box_cont .history_cont .sms_box {
  position: absolute;
  right: 0;
  bottom: 0;
}
.mypage_cont .pay_history > ul > li .box_cont .btn_area {
  flex: 1;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 4px 12px;
  margin: 32px 0 0 0;
}

/* brd_box */
.brd_box {
  margin-top: 50px;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 6px;
  overflow: hidden;
}
.brd_box:first-child {
  margin-top: 0;
}
.brd_box .info_wrap {
  display: flex;
  justify-content: space-between;
  align-items: end;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0 0 10px;
}
.brd_box .info_wrap .infos {
  display: flex;
  flex-wrap: wrap;
}
.brd_box .info_wrap .infos li {
  position: relative;
  margin-right: 10px;
  padding-right: 10px;
  font-size: 14px;
}
.brd_box .info_wrap .infos li:last-child {
  margin-right: 0;
  padding-right: 0;
}
.brd_box .info_wrap .infos li:after {
  content: "";
  position: absolute;
  right: 0;
  top: 7px;
  width: 1px;
  height: 10px;
  background: #666;
}
.brd_box .info_wrap .infos li:last-child:after {
  display: none;
}
.brd_box .info_wrap .infos li .tit {
  padding-right: 10px;
  font-weight: 600;
}
.brd_box .info_wrap .btns {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
}

@media (max-width: 1080px) {
  /* 사용료 및 결제 정보 */
  .mypage_cont .pay_history > ul {
    margin: -20px 0 0 0;
  }
  .mypage_cont .pay_history > ul > li {
    padding: 20px 0 0 0;
    flex: 0 0 100%;
  }
  .mypage_cont .pay_history > ul > li .box_cont {
    padding: 15px 20px 20px;
  }
  .mypage_cont .pay_history > ul > li .box_cont .history_top strong {
    font-size: 15px;
  }
  .mypage_cont .pay_history > ul > li .box_cont .history_cont {
    margin: 16px 0 0 0;
  }
  .mypage_cont .pay_history > ul > li .box_cont .history_cont .num_box strong {
    font-size: 22px;
  }
  .mypage_cont .pay_history > ul > li .box_cont .history_cont dl dt,
  .mypage_cont .pay_history > ul > li .box_cont .history_cont dl dd {
    font-size: 14px;
  }
  .mypage_cont .pay_history > ul > li .box_cont .history_cont .sms_box {
    position: static;
    margin: 10px 0 0 0;
  }
  .mypage_cont .pay_history > ul > li .box_cont .btn_area {
    margin: 16px 0 0 0;
  }

  /* brd_box */
  .brd_box {
    margin-top: 30px;
    padding: 15px;
  }
  .brd_box .info_wrap .infos li {
    font-size: 12px;
  }
}
