@charset "UTF-8";
/* 마이페이지 */
.mypage_de {
  display: flex;
  gap: 48px;
}
.mypage_nav {
  max-width: 320px;
  width: 100%;
}
.mypage_nav .profile {
  display: flex;
  margin-bottom: 16px;
  justify-content: space-between;
  align-items: center;
}
.mypage_nav .profile .flex {
  gap: 12px;
  align-items: center;
}
.mypage_nav .profile .profile_img {
  width: 48px;
  height: 48px;
  overflow: hidden;
  border-radius: 100%;
  border: 1px solid #e5e5ec;
}

.mypage_nav .profile .profile_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mypage_nav .profile h1 {
  font-weight: 500;
  font-size: 16px;
}
.mypage_nav .profile h1 b {
  margin-right: 2px;
  font-size: 18px;
  font-weight: 700;
}
.mypage_nav .btns {
  gap: 8px;
  align-items: center;
}

.mypage_nav .membership {
  background: #159bff;
  border-radius: 4px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 16px 0;
}
.mypage_nav .membership .txt {
  display: flex;
  gap: 8px;
  align-items: center;
}

.mypage_nav .membership .txt h1 {
  color: #fff;
  font-weight: 600;
  font-size: 16px;
}

.mypage_nav .membership .txt h2 {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  opacity: 0.8;
}

.mypage_nav .mypage_list li a {
  height: 48px;
  line-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  color: #111111;
  font-weight: 600;
  font-size: 16px;
  padding: 0 16px;
}
.mypage_nav .mypage_list li a::after {
  content: "";
  width: 20px;
  height: 20px;
  background: url(../_img/icon/icon_gray_arrowdown.svg) no-repeat center center / contain;
  display: inline-block;
  rotate: -90deg;
}
.mypage_nav .mypage_list li.active a {
  background: #f7f7fb;
  font-weight: 700;
}

.mypage_nav .mypage_list li.active a::after {
  rotate: 0deg;
  background: url(../_img/icon/icon_arrow_right_bl.svg) no-repeat center center / contain;
}
.mypage_main {
  width: 100%;
}
.mypage_main.gap56 {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.mypage_main .title_area {
  margin-bottom: 16px;
}
.mypage_main .title_area.flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mypage_main .title_area.mb24 {
  margin-bottom: 24px;
}
.mypage_main .title_area.mb28 {
  margin-bottom: 28px;
}

.mypage_main .title_area.flex {
  align-items: center;
  justify-content: space-between;
}
.mypage_main .title_area.flex.al_start {
  align-items: flex-start;
}

.mypage_main .title_area .mypage_tit {
  font-weight: 700;
  font-size: 20px;
  display: flex;
  align-items: center;
}

.mypage_main .title_area .mypage_tit.big {
  font-size: 24px;
}
.mypage_main .title_area .mypage_tit.arrow_right::after {
  content: "";
  width: 20px;
  height: 20px;
  display: inline-block;
  background: url(../_img/icon/icon_arrow_right_bl.svg) no-repeat center center / contain;
}
.mypage_main .title_area .mypage_sub {
  color: #505050;
  margin-top: 8px;
  font-weight: 500;
  font-size: 14px;
  line-height: 140%;
}
.mypage_main .title_area .btn {
  font-size: 16px;
  flex-shrink: 0;
}
.mypage_main .title_area .sub_txt {
  color: #505050;
  font-weight: 500;
  font-size: 14px;
  line-height: 140%;
  margin-top: 8px;
}
.mypage_main .title_area .sub_area {
  margin-top: 8px;
  display: flex;
  gap: 6px;
  align-items: center;
}

.mypage_main .title_area .sub_area .sub_txt {
  color: #333333;
  font-weight: 500;
  font-size: 14px;
  margin-top: 0;
}
.mypage_main .title_area .sub_area .gray_badge {
  font-size: 14px;
  font-weight: 600;
  color: #111111;
}
.recommend_list.flex_3 {
  /* display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  column-gap: 20px;
  row-gap: 48px; */
  display: grid;
  grid-template-columns: repeat(auto-fill, 277px);
  justify-content: center;
  column-gap: 20px;
  row-gap: 48px;
}
.recommend_list.flex_3 li {
  flex: 1;
  width: 100%;
}
.mypage_main .recommend_list.flex {
  display: flex;
  gap: 20px;
}
.mypage_main .reflection {
  margin-top: 12px;
}
.mypage_main .reflection .btn-lnb {
  display: flex;
  align-items: center;
}

.mypage_main .reflection .btn-lnb .badge {
  border-radius: 4px;
  width: fit-content;
  padding: 0 10px;
  color: #111111;
  font-size: 14px;
  font-weight: 500;
}

.mypage_main .reflection .btn-lnb h2 {
  color: #505050;
  font-size: 14px;
  font-weight: 500;
  margin-left: 12px;
  margin-right: 4px;
}
.mypage_main .reflection .btn-lnb .arrow_down {
  width: 20px;
  height: 20px;
  background: url(../_img/icon/icon_arrow_bottom_gray.svg) no-repeat center center / contain;
  transition: transform 0.3s;
  flex-shrink: 0;
}
.mypage_main .reflection .btn-lnb.active .arrow_down {
  transform: rotate(180deg);
}

.mypage_main .reflection .lnb__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  padding: 16px;
  margin-top: 12px;
  background: #f7f7fb;
}
.mypage_main .reflection .lnb__list .item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #e5e5ec;
  border-radius: 4px;
  padding: 6px 6px 6px 16px;
  background: #fff;
}

.mypage_main .reflection .lnb__list .item.final {
  border-color: #111111;
}
.mypage_main .reflection .lnb__list .item .check_img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}
.mypage_main .reflection .lnb__list .item .lecture {
  display: flex;
  align-items: center;
  gap: 8px;
}
.mypage_main .reflection .lnb__list .item .lecture .lesson {
  color: #999999;
  font-size: 13px;
  font-weight: 600;
  flex-shrink: 0;
}

.mypage_main .reflection .lnb__list .item .btn {
  flex-shrink: 0;
}
.mypage_main .reflection .lnb__list .item .btn.disabled {
  color: #767676;
  border-color: #e5e5ec;
  background: #f1f1f5;
}
.mypage_main .reflection .lnb__list .item .lecture .text {
  font-weight: 600;
  font-size: 16px;
  text-overflow: ellipsis;
  overflow: hidden;
  word-break: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.edit_inner .agree_box .agree_item {
  padding: 13px 0;
}

.edit_inner .agree_box h6 {
  color: #767676;
  font-weight: 500;
  font-size: 14px;
  line-height: 140%;
  margin-bottom: 8px;
}
.mypage_main .no_test {
  background: #f7f7fb;
  border-radius: 4px;
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.mypage_main .no_test img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.mypage_main .no_test .txt h1 {
  text-align: center;
  color: #111111;
  font-size: 18px;
  font-weight: 700;
  line-height: 140%;
  margin-bottom: 8px;
}

.mypage_main .no_test .txt p {
  color: #767676;
  font-weight: 500;
  font-size: 14px;
  line-height: 140%;
}
.mypage_main .no_test .gray_box {
  background: #f1f1f5;
  border-radius: 4px;
  max-width: 320px;
  width: 100%;
  padding: 12px 16px;
  margin-top: 16px;
}
.mypage_main .no_test .gray_box h2 {
  font-weight: 600;
  font-size: 14px;
  line-height: 140%;
  margin-bottom: 6px;
}

.mypage_main .no_test .gray_box p {
  color: #505050;
}
.mypage_main .no_test .btns {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 320px;
  width: 100%;
}

.mypage_main .no_test .btns .btn {
  font-size: 14px;
  font-weight: 700;
}
.mypage_main .gray_bor_box {
  border: 1px solid #e5e5ec;
  background: #fff;
  border-radius: 4px;
  padding: 24px;
  display: flex;
  margin-top: 16px;
  position: relative;
  gap: 32px;
}
.mypage_main .gray_bor_box .tit {
  margin-bottom: 0;
}
.mypage_main .gray_bor_box .tit h4 {
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
}
.mypage_main .gray_bor_box .tit h5 {
  margin-top: 6px;
  color: #999999;
  font-weight: 500;
  font-size: 14px;
  white-space: nowrap;
  line-height: 140%;
  margin-bottom: 8px;
}
.mypage_main .gray_bor_box .tit b {
  margin-top: 8px;
  font-weight: 700;
  font-size: 56px;
  line-height: 100%;
}
.mypage_main .progress_area {
  width: 100%;
  max-width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
}
.mypage_main .progress_box {
  width: 100%;
}
.mypage_main .chart__box {
  max-width: 100%;
}
.mypage_main .chart__box .chart_area {
  display: flex;
  align-items: center;
  justify-content: center;
}
.ai_wrap .btn-lnb {
  padding: 0 6px 0 16px;
  display: flex;
  gap: 4px;
  align-items: center;
}
.ai_wrap .btn-lnb .arrow_down {
  width: 20px;
  height: 20px;
  background: url(../_img/icon/icon_arrow_bottom_gray.svg) no-repeat center center / contain;
  transition: 0.3s;
  flex-shrink: 0;
}
.ai_wrap .btn-lnb.active {
  background: #384046;
  color: #fff;
  margin-bottom: 8px;
}
.ai_wrap .btn-lnb.active .arrow_down {
  background: url(../_img/icon/icon_arrow_bottom_wh.svg) no-repeat center center / contain;
}
.mypage_main .ai_box {
  position: relative;
  padding: 12px 16px;
  border-radius: 4px;
  background: #fff;
  z-index: 1;
  display: flex;
  gap: 12px;
  align-items: center;
}
.mypage_main .ai_box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 4px;
  padding: 1px; /* 테두리 두께 */
  background: linear-gradient(120deg, #b700ff 0%, #6200ff 50%, #159bff 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

.mypage_main .ai_box h2 {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 16px;
  background: linear-gradient(90deg, rgba(24, 98, 153, 1) 0%, rgba(127, 10, 194, 1) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.mypage_main .ai_box h2::before {
  content: "";
  width: 28px;
  height: 28px;
  display: inline-block;
  flex-shrink: 0;
  background: url(../_img/icon/icon_ai.svg) no-repeat center center / contain;
}

.mypage_main .ai_box p {
  color: #111111;
  font-weight: 500;
  font-size: 14px;
  line-height: 160%;
}

.mypage_main .ai_box.retest {
  background: #f7f7fb;
}

.mypage_main .ai_box.retest p {
  color: #767676;
}
.mypage_main .class_badges {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 16px;
}

.mypage_main .class_badges span {
  border: 1px solid #e5e5ec;
  border-radius: 4px;
  height: 46px;
  line-height: 46px;
  padding: 0 16px;
  color: #111111;
  font-size: 16px;
  font-weight: 600;
}
.target_competency {
  margin-top: 16px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.target_date {
  gap: 16px;
}
.target_date.column {
  flex-direction: column;
}
.target_date.column .ip_box h6 {
  flex-shrink: 0;
}
.target_date.gap20 {
  gap: 20px;
}
.target_date .ip_box.flex {
  display: flex;
  gap: 8px;
  align-items: center;
}
.target_date .ip_box h6 {
  color: #505050;
  font-size: 16px;
  line-height: 140%;
  margin-bottom: 4px;
}
.date_area {
  position: relative;
  max-width: 280px;
  width: 100%;
}

.date_area.w200 {
  max-width: 200px;
}
.date_area .icon_date {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 16px;
  width: 20px;
  height: 20px;
  background: url(../_img/icon/icon_date.svg) no-repeat center center / contain;
}

.date_area .datepicker {
  padding-left: 42px;
  font-size: 16px;
}
.target_date .date_wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}
.target_date .date_wrap .dash {
  color: #767676;
  font-size: 14px;
}

.target_date .ip_box .select-primary {
  width: 280px;
  border-radius: 4px;
}
.mypage_main .blue_box {
  background: #f7f7fb;
  border-radius: 4px;
  padding: 12px 16px;
  display: flex;
  gap: 12px;
  align-items: center;
}
.mypage_main .blue_box.gap20 {
  gap: 20px;
}
.mypage_main .blue_box.h56 {
  height: 56px;
}
.mypage_main .blue_box h6 {
  font-size: 16px;
  font-weight: 600;
}
.mypage_main .blue_box .price {
  font-size: 18px;
  font-weight: 600;
}
.mypage_main .blue_box .gray_txt {
  color: #767676;
  font-size: 16px;
  font-weight: 600;
}
.mypage_main .blue_box .white_badge {
  padding: 0 12px;
  color: #111111;
  font-size: 14px;
  font-weight: 500;
  height: 32px;
  line-height: 32px;
  background: #fff;
  border-radius: 4px;
  border: 1px solid #e5e5ec;
}
.mypage_main .choice_class {
  display: flex;
  gap: 8px;
  align-items: center;
}
.mypage_main .choice_class .white_badge {
  border: 1px solid #e5e5ec;
  border-radius: 4px;
  background: #fff;
  color: #111111;
  padding: 0 16px;
  height: 46px;
  line-height: 46px;
  font-size: 16px;
  font-weight: 600;
}
.mypage_main .target_date .gray_badge {
  border: 1px solid #e5e5ec;
  background: #f7f7fb;
  border-radius: 4px;
  padding: 0 16px;
  height: 48px;
  line-height: 48px;
  color: #111111;
  font-size: 16px;
  font-weight: 500;
}
.total_progress_rate {
  display: flex;
  align-items: center;
}
.total_progress_rate h1 {
  margin-right: 12px;
  color: #384046;
  font-size: 14px;
  font-weight: 500;
  flex-shrink: 0;
}
.total_progress_rate .prog {
  width: 100px;
  height: 4px;
}

.total_progress_rate .blue_txt {
  color: #159bff;
  margin-left: 8px;
  font-weight: 600;
  font-size: 14px;
}
.mypage_main .notice_list {
  margin-top: 28px;
}
.mypage_main .notice_list li a {
  height: 72px;
}
.mypage_main .notice_list li a .date_txt {
  font-size: 14px;
}
.mypage_main .notice_list li a h3 {
  font-size: 16px;
}

.mypage_main .badge {
  width: 72px;
  min-width: 72px;
  font-size: 14px;
}
.mypage_main .badge.blue {
  background: rgba(21, 155, 255, 0.08);
  color: #159bff;
}
.mypage_main .badge.gray {
  color: #767676;
  background: #f7f7fb;
}

.mypage_main .badge.black {
  color: #fff;
  background: #384046;
}
.mypage_main .pagination {
  margin-top: 28px;
}
.custom__inner .mypage_main .btn_right {
  margin-top: 28px;
}
.membership_list,
.payment_list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.membership_list li {
  border: 1px solid #e5e5ec;
  border-radius: 4px;
  background: #fff;
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.membership_list li .membership {
  display: flex;
  align-items: center;
  gap: 6px;
}
.membership_list li .membership h1 {
  font-size: 16px;
  font-weight: 600;
}

.membership_list li .membership .badge {
  border-radius: 4px;
  min-width: fit-content;
  width: fit-content;
  padding: 0 8px;
}
.membership_list li .membership .blue {
  background: rgba(21, 155, 255, 0.08);
  color: #159bff;
}
.membership_list li .usage_date {
  color: #767676;
  font-size: 14px;
  font-weight: 500;
}
.membership_list li .membership .grange {
  background: rgba(255, 154, 0, 0.08);
  color: #ff9a00;
}

.membership_list li .membership .gray {
  background: #f7f7fb;
  color: #999999;
}
.payment_list li {
  padding: 16px;
  border: 1px solid #e5e5ec;
  background: #fff;
  border-radius: 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.payment_list li .text_box {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.payment_list li h1 {
  color: #111111;
  font-size: 16px;
  font-weight: 700;
  line-height: 140%;
}
.payment_list li .pay_text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.payment_list li p {
  font-size: 14px;
  font-weight: 500;
  line-height: 140%;
  color: #767676;
  display: flex;
  gap: 2px;
}

.payment_list li .green_txt {
  color: #35a854;
}
.payment_list li .blue_txt {
  color: #159bff;
}
.payment_list li .flex {
  gap: 4px;
}
.payment_list li .flex p:not(:last-child)::after {
  content: "·";
  padding-left: 4px;
}
.refund_inner {
  max-width: 680px;
  width: 100%;
  padding: 80px 20px 160px;
  margin: 0 auto;
}

.refund_inner .inform {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.refund_inner .tit {
  font-weight: 700;
  font-size: 36px;
  line-height: 140%;
  padding-bottom: 32px;
  border-bottom: 1px solid #111111;
}
.refund_inner .sub_tit {
  font-size: 20px;
  font-weight: 700;
  line-height: 140%;
  margin-bottom: 12px;
}
.refund_inner .ip_area {
  width: 100%;
  gap: 8px;
}

.refund_inner .ip_area .ip_box {
  width: 100%;
}

.refund_inner .ip_area .ip_box h6 {
  margin-bottom: 4px;
  font-size: 16px;
  line-height: 140%;
}

.refund_inner .ip_area .ip_box input {
  font-weight: 600;
}
.refund_inner .price-summary .cell {
  height: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.refund_inner .payment_area .refund-box {
  padding: 0;
  gap: 12px;
}
.desc_txt .type_list .premium_badge {
  background: linear-gradient(to right, #35a854, #159bff);
  color: #fff;
  padding: 0 6px;
  height: 23px;
  line-height: 23px;
  font-weight: 600;
  font-size: 12px;
  border-radius: 0;
  width: fit-content;
  min-width: fit-content;
  border-radius: 4px;
}
.point_list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.point_list li {
  border: 1px solid #e5e5ec;
  border-radius: 4px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.point_list li .point {
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
}

.point_list li .green {
  color: #35a854;
}
.point_list li .blue {
  color: #159bff;
}
.point_list li .text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.point_list li .text h1 {
  font-size: 16px;
  font-weight: 600;
  line-height: 140%;
}

.point_list li .text .sub {
  display: flex;
  align-items: center;
  gap: 4px;
}

.point_list li p {
  color: #767676;
  font-size: 14px;
  font-weight: 500;
  line-height: 140%;
}
/* 내 강의실 */
.my_video_inner {
  overflow: hidden;
  height: 100vh;
  display: flex;
}
.my_video_inner .video--area {
  width: 100%;
  height: 100dvh;
  background: #111111;
  /* overflow: auto; */
  position: relative;
  padding: 120px 0 88px;
}
.my_video_inner .video--area .video_header {
  padding: 0 20px;
  position: fixed;
  top: 0;
  background: #111111;
  width: calc(100% - 460px);
  height: 120px;
}
.my_video_inner .video--area .title {
  display: flex;
  gap: 16px;
  align-items: center;
  height: 64px;
}
.my_video_inner .video--area .title h1 {
  color: #f1f1f5;
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
}
.my_video_inner .video--area .title .lesson {
  padding: 0 12px;
  height: 34px;
  line-height: 34px;
  background: #333333;
  border-radius: 800px;
  color: #e5e5ec;
  font-size: 16px;
  font-weight: 600;
}
.my_video_inner .video--area .arrow_back {
  height: 56px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}
.my_video_inner .video--area .arrow_back::before {
  content: "";
  width: 20px;
  height: 20px;
  background: url(../_img/icon/icon_arrow_left_wh.svg) no-repeat center center / contain;
}
.my_video_inner .video--area .video_main {
  /* height: calc(100% - 208px); */
  max-width: 1380px;
  width: 100%;
  aspect-ratio: 1380/782;
  margin: 0 auto;
  border-radius: 8px;

  /* height: calc(100dvh - 300px); 이거 쓸가면 width100% 뺴야댐*/
}
.my_video_inner .video_main_content {
  padding: 20px 40px;
  margin: 0 auto;
  overflow: auto;
  height: 100%;
  max-width: 1380px;
}
.my_video_inner .list--area .cont_area {
  padding: 32px 24px;
}
.my_video_inner .list--area .cont_area .title h1 {
  color: #ffffff;
  font-weight: 700;
  font-size: 20px;
  line-height: 140%;
  margin-bottom: 20px;
}

.my_video_inner .list--area .cont_area .prog_thin {
  background: #444444;
  margin-top: 8px;
}
.my_video_inner .list--area .cont_area .prog_thin::-webkit-progress-bar {
  background: #444444;
}

.my_video_inner .list--area .cont_area .progress_rate {
  justify-content: space-between;
  align-items: center;
}
.my_video_inner .list--area .cont_area .blue_txt {
  color: #159bff;
  font-weight: 600;
  font-size: 14px;
}
.reflection_cont .title {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.reflection_cont .title h1 {
  color: #ffffff;
  font-weight: 700;
  font-size: 20px;
  line-height: 140%;
}
.reflection_cont .title p {
  color: #999999;
  font-weight: 500;
  font-size: 14px;
  line-height: 140%;
}
.my_video_inner .video_main_content::-webkit-scrollbar,
.my_video_inner .list--area .cont_area::-webkit-scrollbar {
  width: 6px;
  background: #222222;
}
.my_video_inner .video_main_content::-webkit-scrollbar-thumb,
.my_video_inner .list--area .cont_area::-webkit-scrollbar-thumb {
  background: #444444;
}
.my_video_inner .video--area .Learning_contents {
  margin: 20px auto 0;
  border-radius: 8px;
  background: #222222;
  padding: 24px;
  gap: 14px;
  display: flex;
  flex-direction: column;
  max-width: 1380px;
}
.my_video_inner .video--area .Learning_contents .tit {
  color: #f1f1f5;
  font-weight: 700;
  font-size: 20px;
  line-height: 140%;
}
.my_video_inner .video--area .Learning_contents .content {
  background: #333333;
  border-radius: 4px;
  color: #fff;
}
.my_video_inner .video--area .video_footer {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  position: fixed;
  bottom: 0;
  width: calc(100% - 460px);
  background: #111111;
}
.my_video_inner .video--area .video_footer .btns {
  display: flex;
  gap: 8px;
  align-items: center;
}
.my_video_inner .video--area .video_footer .btns .play_btn {
  background: #222222;
}
.my_video_inner .video--area .video_footer .btns .btn {
  border-radius: 800px;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}
.my_video_inner .video--area .video_footer .btns img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}
.my_video_inner .video--area .video_footer .btns .prev_btn {
  color: #999999;
}
.my_video_inner .video--area .video_footer .btns .next_btn {
  color: #fff;
}
.my_video_inner .list--area {
  width: 460px;
  height: 100%;
  flex-shrink: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  background: #222222;
}
.my_video_inner .list--area .cont_area {
  overflow: auto;
  height: 100%;
}
.my_video_inner .list--area .cont_area .class_index {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.my_video_inner .list--area .cont_area .class_index .all_index {
  display: flex;
  align-items: center;
  gap: 8px;
}
.my_video_inner .list--area .cont_area .class_index .all_index p {
  display: flex;
  align-items: center;
  gap: 8px;
}
.my_video_inner .list--area .cont_area .class_index .all_index p::before {
  content: "";
  height: 16px;
  width: 1px;
  background: #444444;
  display: inline-block;
}
.my_video_inner .list--area .cont_area .class_index .gray_txt {
  color: #999999;
  font-size: 14px;
  font-weight: 500;
  line-height: 140%;
}
.my_video_inner .list--area .tab {
  background: #222222;
}
.reflection_list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 20px;
}
.reflection_list .item {
  background: #333333;
  border-radius: 4px;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.reflection_list .item:not(.final) {
  cursor: pointer;
}
.reflection_list .item.final {
  padding: 6px 16px;
  border-color: #111111;
}
.reflection_list .item .lecture {
  display: flex;
  align-items: center;
  gap: 16px;
}
.reflection_list .item .lecture.before_none::before {
  display: none;
}
.reflection_list .item .lecture::before {
  flex-shrink: 0;
  content: "";
  width: 28px;
  height: 28px;
  background: url(../_img/icon/icon_final_check_B.svg) no-repeat center center / contain;
}
.reflection_list .item.active .lecture::before {
  background: url(../_img/icon/icon_final_check_C.svg) no-repeat center center / contain;
}
.reflection_list .item.end .lecture::before {
  background: url(../_img/icon/icon_final_check_on.svg) no-repeat center center / contain;
}
.reflection_list .item .lecture .sub {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.reflection_list .item .lecture .sub .sub_desc {
  display: flex;
  gap: 8px;
}
.reflection_list .item .lecture .sub .sub_desc p {
  color: #999999;
  font-size: 14px;
  font-weight: 600;
  line-height: 140%;
  display: flex;
  align-items: center;
  gap: 8px;
}
.reflection_list .item .lecture .lesson,
.reflection_list .item .lecture .file {
  gap: 4px;
}
.reflection_list .item .lecture .lesson::before {
  content: "";
  background: url(../_img/icon/icon_play_B.svg) no-repeat center center/contain;
  width: 20px;
  height: 20px;
  display: inline-block;
  flex-shrink: 0;
}
.reflection_list .item .lecture .file::before {
  content: "";
  background: url(../_img/icon/icon_files.svg) no-repeat center center/contain;
  width: 20px;
  height: 20px;
  display: inline-block;
  flex-shrink: 0;
}
.reflection_list .item .lecture .tit {
  font-size: 16px;
  font-weight: 600;
  line-height: 160%;
  color: #fff;
}
.reflection_list .item .lecture > img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}
.reflection_list .item .lecture .sub .sub_desc p:not(:last-child)::after {
  background: #444;
  width: 1px;
  height: 16px;
  content: "";
  display: inline-block;
}

.reflection_list .item.active .lecture .sub .sub_desc p:not(:last-child)::after {
  background: rgba(255, 255, 255, 0.2);
}
.reflection_list .item.active {
  background: #159bff;
}
.reflection_list .item.active .lecture p.lesson,
.reflection_list .item.active .lecture p.file,
.reflection_list .item.active .lecture .sub .sub_desc p {
  color: #fff;
}
.reflection_list .item.active .lecture .lesson::before {
  background: url(../_img/icon/icon_play_on.svg) no-repeat center center/contain;
}

.reflection_list .item.active .lecture .file::before {
  background: url(../_img/icon/icon_file_on.svg) no-repeat center center/contain;
}
.reflection_list .item .btn {
  background: #444444;
  color: #f1f1f5;
}
.reflection_list .item.active .btn {
  color: #159bff;
  background: #f1f1f5;
  width: 100px;
}
.myclass_filedown_list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 14px;
}
.myclass_filedown_list li {
  display: flex;
  gap: 8px;
  align-items: center;
}
.myclass_filedown_list li img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}
.myclass_filedown_list li .file_area {
  background: #333333;
  border: none;
}
.myclass_filedown_list li .file_area .file_text {
  color: #e5e5ec;
}
.myclass_filedown_list li .file_area .file-upload {
  background: #444444;
  color: #f1f1f5;
}
.reflection_area {
  border-top: 1px solid #444444;
}
.reflection_area .item {
  border-bottom: 1px solid #444444;
  padding: 20px 0;
}
.reflection_area .item:last-child {
  border-bottom: 0;
}
.reflection_area .item.problem {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.reflection_area .item .title {
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
  color: #f1f1f5;
  margin-bottom: 0;
}
.reflection_area .item .title.sub {
  display: flex;
  gap: 2px;
  flex-direction: unset;
  margin-bottom: 12px;
  color: #999999;
}
.reflection_area .item .big_tit {
  font-weight: 700;
  font-size: 20px;
  line-height: 140%;
  margin-bottom: 8px;
  color: #e5e5ec;
}
.reflection_area .item .gray_txt {
  color: #767676;
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
}
.reflection_area .item .content {
  background: #333333;
  border: 1px solid #333333;
  border-radius: 4px;
  padding: 12px 16px;
  display: flex;
  gap: 8px;
  align-items: center;
}
.reflection_area .item .content p {
  color: #e5e5ec;
  font-size: 16px;
  font-weight: 600;
  line-height: 140%;
}
.reflection_area .item .content .blank {
  width: 32px;
  height: 32px;
  background: #333333;
  border-radius: 4px;
  border: 1px solid #e5e5ec;
}
.reflection_area .item .answer {
  display: flex;
  gap: 8px;
  align-items: center;
  width: 100%;
}
.reflection_area .item .answer span {
  color: #e5e5ec;
  font-size: 16px;
  font-weight: 500;
  flex-shrink: 0;
}
.reflection_area .item .answer .ip_typeA {
  width: 100%;
}
.reflection_area .item .radio_btns {
  display: flex;
  gap: 8px;
  align-items: center;
}
.reflection_area .item .check-A label {
  display: flex;
  gap: 8px;
  padding: 12px 16px;
  /* height: 46px; */
  justify-content: center;
  /* align-items: center; */
  align-items: flex-start;
}
.reflection_area .item .check-A label h3 {
  font-size: 16px;
  font-weight: 500;
  color: #e5e5ec;
}
.reflection_area .check-A input + em {
  background: url(/_img/icon/icon_check_bl.svg) no-repeat center center/contain;
}
.reflection_area .check-A input:checked + em {
  background: url(/_img/icon/icon_check_A_on.svg) no-repeat center center / contain;
}
.reflection_area input,
.reflection_area textarea,
.reflection_area .textarea_num {
  background: #333333;
  border-color: #333333;
}
.textarea_num {
  position: relative;
}
.textarea_num {
  padding: 16px 16px 48px;
  border: 1px solid #e5e5ec;
  background: #fff;
  border-radius: 4px;
  height: 152px;
}
.textarea_num textarea {
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  font-size: 16px;
}
.textarea_num textarea::placeholder {
  font-size: 16px;
}
.textarea_num .num {
  position: absolute;
  bottom: 16px;
  right: 16px;
  color: #999999;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
}
.satisfaction_box {
  background: #333333;
  border-radius: 4px;
  display: flex;
  width: 100%;
}

.comparison_list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 34px;
}
.comparison_list li {
  background-color: #333333;
  border-radius: 4px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.comparison_list li .text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
}
.comparison_list li .text h6 {
  font-size: 16px;
  font-weight: 600;
  line-height: 140%;
  color: #e5e5ec;
}
.comparison_list li .prog {
  background: #444444;
  height: 8px;
}
.comparison_list li .prog::-webkit-progress-bar {
  background: #444444;
}
.custom__inner.certi .recommend_list.flex {
  display: grid;
  grid-template-columns: repeat(auto-fill, 206px);
  justify-content: center;
  column-gap: 16px;
  row-gap: 32px;
}
.custom__inner.certi .recommend_list li .txt_box h3 {
  margin-bottom: 8px;
}
.custom__inner.certi .recommend_list li .txt_box .issue_date {
  color: #999999;
  font-size: 14px;
  font-weight: 500;
  line-height: 160%;
}
.custom__inner.certi .recommend_list .img_box {
  aspect-ratio: 206/143;
}
.certi_completion {
  background: url(../_img/common/certi_img_back.png) no-repeat center center/contain;
  width: 100%;
  aspect-ratio: 872/606.74;
}
.certi_completion .inform {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: center;
  padding-top: 25%;
}
.certi_completion .inform li {
  display: flex;
  flex-direction: column;
  gap: 3px;
  align-items: center;
  justify-content: center;
}
.certi_completion .inform li p {
  color: #767676;
  font-weight: 500;
  font-size: 12px;
  line-height: 140%;
}
.certi_completion .inform li h3 {
  color: #111111;
  font-weight: 700;
  font-size: 19px;
  line-height: 140%;
}
.certi_completion .certi_text {
  display: flex;
  flex-direction: column;
  gap: 7px;
  align-items: center;
  justify-content: center;
  margin-top: 36px;
}
.certi_completion .certi_text h4 {
  color: #505050;
  font-weight: 500;
  font-size: 15px;
  line-height: 140%;
}
.certi_completion .certi_text h5 {
  color: #767676;
  font-weight: 500;
  font-size: 12px;
  line-height: 140%;
}
.certi_btns {
  margin-top: 28px;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
}
.certi_btns .btn_gray_bor_B {
  width: 120px;
}
.certi_btns .btn_black,
.certi_btns .btn_blue {
  width: 174px;
}
.affiliation_inform {
  border-radius: 4px;
  padding: 16px;
  border: 1px solid #e5e5ec;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.affiliation_inform .text {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.affiliation_inform .text img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex-shrink: 0;
}
.affiliation_inform .text .company_inform {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.affiliation_inform .text .company_inform h1 {
  font-size: 16px;
  font-weight: 600;
  line-height: 140%;
}
.affiliation_inform .text .company_inform p {
  color: #767676;
  font-weight: 500;
  font-size: 14px;
  line-height: 140%;
}
.affiliation_inform .text .company_inform span {
  color: #111111;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 8px;
  line-height: 140%;
  border: 1px solid #e5e5ec;
  border-radius: 4px;
}
.invite_list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.invite_list li {
  border-radius: 4px;
  border: 1px solid #e5e5ec;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.invite_list li .text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.invite_list li .text h1 {
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
}
.invite_list li .text p {
  color: #767676;
  font-weight: 500;
  font-size: 14px;
  line-height: 140%;
}
.invite_list li .text .inform {
  display: flex;
  align-items: center;
  gap: 4px;
}
.invite_list li .text .inform p:not(:last-child)::after {
  content: "· ";
  margin-left: 4px;
}
.invite_list li .right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.invite_list li .right .btns {
  display: flex;
  align-items: center;
  gap: 8px;
}

.choice_class_sw {
  max-width: 872px;
}
.mo_playbtns {
  display: none;
}
@media screen and (max-width: 1100px) {
  .certi_completion .inform {
    gap: 6px;
  }
  .certi_completion .certi_text {
    margin-top: 10px;
  }
  .certi_completion .inform li p,
  .certi_completion .certi_text h4 {
    font-size: 12px;
  }
  .certi_completion .certi_text h5 {
    font-size: 10px;
  }
  .certi_completion .inform li h3 {
    font-size: 14px;
  }
}
@media screen and (min-width: 795px) and (max-width: 960px) {
  .certi_completion .inform {
    gap: 6px;
  }
  .certi_completion .certi_text {
    margin-top: 10px;
  }
  .certi_completion .inform li p,
  .certi_completion .certi_text h4 {
    font-size: 10px;
  }
  .certi_completion .certi_text h5 {
    font-size: 8px;
  }
  .certi_completion .inform li h3 {
    font-size: 12px;
  }
}
@media screen and (min-width: 766px) and (max-width: 795px) {
  .certi_completion .inform {
    gap: 6px;
  }
  .certi_completion .certi_text {
    margin-top: 6px;
  }
  .certi_completion .inform li p,
  .certi_completion .certi_text h4 {
    font-size: 8px;
  }
  .certi_completion .certi_text h5 {
    font-size: 6px;
  }
  .certi_completion .inform li h3 {
    font-size: 10px;
  }
}
@media screen and (max-width: 580px) {
  .certi_completion .inform {
    gap: 4px;
    padding-top: 22%;
  }
  .certi_completion .certi_text {
    gap: 0px;
  }
  .certi_completion .certi_text {
    margin-top: 4px;
  }
  .certi_completion .inform li p,
  .certi_completion .certi_text h4 {
    font-size: 10px;
  }
  .certi_completion .certi_text h5 {
    font-size: 8px;
  }
  .certi_completion .inform li h3 {
    font-size: 12px;
  }
}
@media screen and (max-width: 400px) {
  .certi_completion .inform {
    gap: 4px;
  }
  .certi_completion .certi_text {
    margin-top: 12px;
  }
  .certi_completion .certi_text h4 {
    font-size: 4px;
  }
  .certi_completion .inform li h3 {
    font-size: 7px;
  }
  .certi_completion .certi_text h5 {
    font-size: 5px;
  }
  .certi_completion .inform li p {
    font-size: 4px;
  }
}
@media screen and (max-width: 1200px) {
  .my_video_inner .video--area .Learning_contents .btn-lnb--mo {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .my_video_inner .video--area .Learning_contents .btn-lnb--mo .arrow_down {
    width: 24px;
    height: 24px;
    background: url(../_img/icon/icon_arrow_down_wh.svg) no-repeat center center / contain;

    transition: transform 0.3s;
  }
  .my_video_inner .video--area .Learning_contents .btn-lnb--mo.active .arrow_down {
    transform: rotate(180deg);
  }
  .mypage_main {
    max-width: calc(100% - 320px);
  }
  .target_date.gap20 {
    flex-direction: column;
  }
}
@media screen and (max-width: 1050px) {
  .my_video_inner {
    flex-direction: column;
    height: 100%;
    background: #111111;
    padding: 92px 0 60px;
  }
  .my_video_inner .video--area {
    height: 100%;
    padding: 0;
  }
  .my_video_inner .video_main_content {
    overflow: hidden;
    max-width: 100%;
    padding: 16px 0 0;
  }
  .my_video_inner .video--area .video_footer,
  .my_video_inner .video--area .video_header {
    width: 100%;
    z-index: 99;
    width: 100%;
  }
  .my_video_inner .video--area .video_header {
    height: 92px;
    padding: 0 16px;
  }
  .my_video_inner .video--area .title {
    height: 56px;
    gap: 8px;
  }
  .my_video_inner .video--area .title h1 {
    font-size: 15px;
  }
  .my_video_inner .video--area .title .lesson {
    height: 30px;
    line-height: 30px;
    padding: 0 10px;
    font-size: 13px;
  }
  .my_video_inner .video--area .arrow_back {
    height: 36px;
    font-size: 14px;
  }
  .my_video_inner .video--area .video_main {
    max-width: 100%;
    aspect-ratio: 360/240;
    border-radius: 0;
  }
  .my_video_inner .video--area .Learning_contents {
    margin: 16px 12px;
    padding: 16px;
    gap: 12px;
  }
  .my_video_inner .video--area .Learning_contents .tit {
    font-size: 16px;
  }
  .myclass_filedown_list {
    margin-top: 12px;
  }
  .myclass_filedown_list li .file_area .file_text {
    font-size: 14px;
  }
  .myclass_filedown_list li .file_area .file-upload {
    font-size: 12px;
  }
  .my_video_inner .list--area {
    width: 100%;
    background: #111111;
  }

  .my_video_inner .list--area .cont_area {
    padding: 20px 20px 80px;
  }
  .my_video_inner .list--area .cont_area .title h1 {
    font-size: 18px;
    margin-bottom: 12px;
  }
  .my_video_inner .list--area .cont_area .class_index {
    gap: 4px;
  }
  .my_video_inner .list--area .cont_area .class_index .all_index p,
  .my_video_inner .list--area .cont_area .class_index .gray_txt,
  .my_video_inner .list--area .cont_area .blue_txt,
  .reflection_list .item .lecture .sub .sub_desc p {
    font-size: 12px;
  }
  .reflection_list .item .lecture .sub .sub_desc p,
  .reflection_list .item .lecture .sub .sub_desc {
    gap: 4px;
  }
  .my_video_inner .list--area .cont_area .class_index .all_index .badge {
    height: 29px;
    line-height: 29px;
    font-size: 12px;
  }
  .my_video_inner .list--area .cont_area .prog_thin {
    margin-top: 4px;
  }
  .reflection_list {
    margin-top: 12px;
  }
  .reflection_list .item,
  .reflection_list .item.final {
    padding: 12px;
    gap: 8px;
  }
  .reflection_list .item .lecture {
    gap: 8px;
  }
  .reflection_list .item .lecture .tit {
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    font-size: 14px;
    -webkit-box-orient: vertical;
    line-height: 140%;
  }
  .reflection_list .item .btn {
    flex-shrink: 0;
    height: 38px;
    line-height: 38px;
    padding: 0 10px;
    font-size: 12px;
  }
  .mo_playbtns {
    display: flex;
    margin-top: 16px;
    padding: 0 16px;
    gap: 8px;
    align-items: center;
  }

  .mo_playbtns .btn {
    background: #222222;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #999999;
    font-weight: 700;
    border-radius: 800px;
  }
  .mo_playbtns .btn.next_btn {
    color: #fff;
  }
  .my_video_inner .video--area .video_footer {
    height: 60px;
    padding: 0 16px;
  }
  .my_video_inner .video--area .video_footer .playbtns {
    display: none;
  }
  .my_video_inner .video--area .video_footer .btns {
    width: 100%;
  }
  .my_video_inner .video--area .video_footer .btns .btn {
    width: 100%;
    border-radius: 4px;
    justify-content: center;
    font-size: 14px;
    height: 40px;
    line-height: 40px;
  }
}
@media screen and (max-width: 768px) {
  .mypage_main {
    max-width: 100%;
  }
  .mypage_de {
    flex-direction: column;
    gap: 32px;
  }
  .mypage_nav .membership {
    margin: 8px 0;
  }
  .mypage_main .title_area .mypage_tit {
    font-size: 18px;
  }
  .mypage_main .recommend_list.flex {
    gap: 8px;
  }
  .mypage_main.gap56 {
    gap: 32px;
  }
  .mypage_main .reflection .btn-lnb h2 {
    margin-left: 7px;
  }
  .mypage_main .reflection .lnb__list {
    background: #fff;
    padding: 0;
  }
  .mypage_main .reflection .lnb__list .item {
    padding: 12px 6px 16px 12px;
  }
  .mypage_main .reflection .lnb__list .item .lecture:not(.final) {
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
  }
  .mypage_main .reflection .lnb__list .item {
    gap: 12px;
  }
  .mypage_main .no_test .txt h1 {
    font-size: 16px;
  }
  .mypage_main .title_area .mypage_tit.big {
    font-size: 20px;
  }
  .mypage_main .ai_box {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .mypage_main .gray_bor_box {
    padding: 24px 20px;
    flex-direction: column;
    gap: 12px;
  }
  .mypage_main .gray_bor_box .tit.col {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
  .mypage_main .gray_bor_box .tit b {
    margin-top: 0;
    font-size: 32px;
  }
  .mypage_main .gray_bor_box .tit h5 {
    margin-bottom: 0;
  }
  .mypage_main .title_area.flex.al_start {
    flex-direction: column;
    gap: 20px;
  }
  .mypage_main .title_area.flex.al_start .btn {
    width: 100%;
    height: 38px;
    line-height: 38px;
    font-size: 14px;
  }
  .mypage_main .title_area.flex.al_start.mo_justi {
    flex-direction: unset;
    justify-content: space-between;
    align-items: center;
  }
  .mypage_main .title_area.flex.al_start.mo_justi .btn {
    width: fit-content;
    padding: 0 16px;
  }
  .mypage_main .blue_box h6 {
    font-size: 14px;
  }
  .mypage_main .total_progress_rate .prog {
    width: 100%;
  }
  .mypage_main .total_progress_rate .blue_txt {
    padding-left: 12px;
    flex-shrink: 0;
  }
  .date_area.w200 {
    max-width: 100%;
    width: 100%;
  }
  .target_date,
  .mypage_main .choice_class,
  .mypage_main .class_badges {
    flex-direction: column;
    gap: 8px;
  }
  .mypage_main .target_date .gray_badge {
    height: 40px;
    line-height: 40px;
    text-align: center;
  }
  .mypage_main .blue_box {
    padding: 7px 16px;
  }
  .mypage_main .choice_class .white_badge,
  .mypage_main .class_badges span {
    width: 100%;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
  }
  .target_date .ip_box.flex {
    flex-direction: column;
    align-items: flex-start;
  }
  .target_date .ip_box .select-primary {
    width: 100%;
    height: 48px;
    line-height: 48px;
    font-size: 16px;
  }
  .mypage_nav {
    max-width: 100%;
  }
  .mypage_main .notice_list {
    margin-top: 20px;
  }
  .mypage_main .badge {
    height: 28px;
    line-height: 28px;
    font-size: 13px;
    width: 64px;
    min-width: 64px;
  }
  .payment_list li {
    flex-direction: column;
    align-items: flex-start;
  }
  .payment_list li .btn {
    width: 100%;
  }
  .payment_list li .flex {
    flex-direction: column;
  }
  .payment_list li .flex p:not(:last-child)::after {
    display: none;
  }
  .mypage_main .blue_box .gray_txt {
    font-size: 14px;
  }
  .membership_list.mb16 {
    margin-bottom: 8px;
  }
  .mypage_main .blue_box .price {
    font-size: 16px;
  }
  .refund_inner {
    max-width: 100%;
    padding: 40px 20px 80px;
  }
  .refund_inner .tit {
    font-size: 24px;
    padding-bottom: 20px;
  }
  .refund_inner .ip_area {
    flex-direction: column;
  }
  .refund_inner .sub_tit {
    font-size: 18px;
  }
  .point_list li {
    align-items: flex-start;
  }
  .point_list li .text .sub {
    flex-direction: column;
    align-items: flex-start;
  }
  .custom__inner.certi .recommend_list.flex {
    grid-template-columns: 1fr 1fr;
    column-gap: 16px;
    row-gap: 32px;
  }
  .custom__inner.certi .payment_area .period_box h3 {
    font-size: 13px;
  }
  .certi_btns {
    margin-top: 16px;
    flex-direction: column;
  }
  .certi_btns .btn {
    width: 100%;
  }
  .certi_btns .btn_gray_bor_B {
    order: 3;
  }
  .certi_btns .btn_black {
    order: 2;
  }

  .affiliation_inform {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  .affiliation_inform .text .company_inform h1 {
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .affiliation_inform .text .company_inform h1::before {
    content: "";
    width: 24px;
    height: 24px;
    display: inline-block;
    background: url(/_img/icon/icon_check_B.svg) no-repeat center center / contain;
  }
  .affiliation_inform .text .company_inform p,
  .affiliation_inform .text .company_inform span {
    font-size: 13px;
  }
  .affiliation_inform .btn_gray_bor_B {
    width: 100%;
  }
  .invite_list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: relative;
  }
  .invite_list li .badge {
    position: absolute;
    top: 16px;
    right: 16px;
    height: 32px;
    line-height: 32px;
  }
  .invite_list li .right .btns,
  .invite_list li .right,
  .invite_list li .right .btns .btn {
    width: 100%;
  }
  .invite_list li .right .btns {
    margin-top: 12px;
  }
  .invite_list li .text {
    gap: 8px;
  }
  .invite_list li .text .inform {
    flex-direction: column;
    align-items: flex-start;
  }
  .invite_list li .text .inform p::after {
    display: none;
  }
  .reflection_cont .title {
    margin-bottom: 16px;
  }
  .reflection_area .item {
    padding: 16px 0;
  }
  .reflection_area .item .content p {
    font-size: 14px;
  }
  .reflection_area .item .title.sub {
    flex-direction: column;
    gap: 4px;
    font-size: 14px;
  }
  .reflection_area .item .gray_txt {
    font-size: 14px;
  }
  .reflection_area .item .big_tit,
  .reflection_cont .title h1 {
    font-size: 18px;
  }
  .reflection_cont.final .title h1 {
    font-size: 16px;
  }
  .modal-question.reflection .modal__content .reflection_cont .final_title {
    font-size: 18px;
  }
  .comparison_list {
    margin-bottom: 0;
  }
  .comparison_list li .text h6 {
    font-size: 14px;
  }
  .comparison_list li .badge {
    height: 30px;
    line-height: 30px;
    padding: 0 8px;
    font-size: 13px !important;
  }

  .recommend_list.flex_3 {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    row-gap: 20px;
  }
  .reflection_list .item.active .btn {
    width: 84.59px;
  }
}
