@charset "UTF-8";
/* Button */
.btn {
  display: inline-block;
  border-radius: 4px;
  text-align: center;
}
.btn-mini {
  height: 32px;
  line-height: 32px;
  font-size: 16px;
  text-align: center;
  border-radius: 4px;
}
.btn-xs {
  height: 38px;
  line-height: 38px;
  font-size: 14px;
  text-align: center;
  border-radius: 4px;
}
.btn-xsm {
  height: 36px;
  line-height: 36px;
  font-size: 14px;
  text-align: center;
  border-radius: 4px;
}
.btn-sm {
  height: 40px;
  line-height: 40px;
  font-size: 14px;
  text-align: center;
  border-radius: 4px;
}
.btn-md {
  height: 44px;
  line-height: 44px;
  font-size: 16px;
  text-align: center;
}
.btn-lg {
  height: 48px;
  line-height: 48px;
  font-size: 16px;
  text-align: center;
}
.btn-big {
  height: 56px;
  line-height: 56px;
  font-size: 16px;
  text-align: center;
}
.btn-w100p {
  width: 100%;
}
.btn-textType {
  text-decoration: underline;
  font-size: 14px;
  font-weight: 400;
  color: var(--info_text);
}
.btn_p8 {
  padding: 0 8px;
}
.btn_p12 {
  padding: 0 12px;
}
.btn_p16 {
  padding: 0 16px;
}
.btn_p20 {
  padding: 0 20px;
}
.btn.disabled {
  background-color: var(--bg_light);
  color: var(--disabled);
  border: 1px solid var(--bg_light);
}
.btn:disabled {
  background-color: var(--bg_light) !important;
  color: var(--disabled) !important;
  border: 1px solid var(--bg_light) !important;
}
.btn_black {
  background: #384046;
  color: #fff;
}
.btn_black_bor {
  border: 1px solid #384046;
  color: #384046;
}
.btn_gray_bor {
  background: #fff;
  border: 1px solid #e5e5ec;
  color: #111111;
  border-radius: 6px;
}
.btn_gray_bor_B {
  background: #fff;
  border: 1px solid #e5e5ec;
  color: #111111;
}
.btn_blue {
  background: #159bff;
  color: #fff;
}
.btn_blue_bor {
  border: 1px solid #159bff;
  background: #fff;
  color: #159bff;
}
.btn_bor_black {
  border: 1px solid #111111;
  color: #111111;
}
.btn_red {
  background: #fff;
  border: 1px solid #ff3e3e;
  color: #ff3e3e;
}
.btn_gray {
  color: #111111;
  background: #f1f1f5;
}
.btn_gray_B {
  color: #999999;
  background: #f1f1f5;
}
.btn_green {
  background: #35a854;
  color: #fff;
}
/* #### Modal #### */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: -1;
  opacity: 0;
}

.modal.open {
  z-index: 1000;
  opacity: 1;
}

.modal__inner {
  position: absolute;
  top: 47.5%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 4px;
  background-color: #fff;
  transition: 0.45s;
  opacity: 0;
}
.modal__close {
  width: 28px;
  height: 28px;
  position: absolute;
  top: 10px;
  right: 24px;
}
.btn_modal-close {
  width: 100%;
  height: 100%;
  background: url(../_img/icon/icon_x_btn.svg) no-repeat center center / contain;
}
.modal.open .modal__inner {
  top: 50%;
  opacity: 1;
}

.modal__inner::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

.modal__inner::-webkit-scrollbar-thumb {
  height: 30%;
  background: #dddddd;
  border-radius: 10px;
}

.modal__inner::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 20px;
}
/* modal-basic */
.modal-basic .modal__inner {
  width: 380px;
  max-width: calc(100% - 40px);
}
.modal-basic .modal__content {
  padding: 48px 24px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.modal-basic .modal__content img.w56 {
  width: 56px;
  height: 56px;
}

.modal-basic .modal__content img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 16px;
}

.modal-basic .modal__content h1 {
  font-weight: 700;
  font-size: 20px;
  line-height: 140%;
}
.modal-basic .modal__content p {
  margin-top: 12px;
  color: #505050;
  font-weight: 500;
  font-size: 14px;
  line-height: 140%;
  margin-bottom: 24px;
}
.modal-basic .modal__content .btn {
  font-size: 14px;
  font-weight: 700;
}
/* modal-basic dark */
.modal-basic.dark .modal__inner {
  background: #222222;
}
.modal-basic.dark .modal__content h1 {
  color: #fff;
}
.modal-basic.dark .modal__content p {
  color: #e5e5ec;
  text-align: center;
}
.modal-basic.dark .btn_modal-close {
  background: url(../_img/icon/icon_x_wh.svg) no-repeat center center / contain;
}
/* modal-review */
.modal-review .modal__inner {
  width: 900px;
  max-width: 100%;
}
.modal-review .modal__close {
  top: 28px;
  right: 24px;
}
.modal-review .modal__header {
  padding: 28px 24px;
}
.modal-review .modal__header h1 {
  font-weight: 700;
  font-size: 20px;
  line-height: 140%;
}
.modal-review .modal__header h1 b {
  color: #159bff;
  font-weight: 700;
}
.modal-review .modal__content {
  padding: 0 24px 32px;
}
.modal-review .pagination {
  margin-top: 16px;
}
.modal-review .sel_area {
  gap: 8px;
  margin-bottom: 16px;
}
.modal-review .review_area {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.modal-review .review_area .item {
  border: 1px solid #f1f1f5;
  background: #fff;
  border-radius: 8px;
  padding: 20px;
}
.modal-review .content {
  color: #505050;
  font-weight: 400;
  font-size: 14px;
  line-height: 160%;
  margin-top: 8px;
}
/* modal_question */
.modal-question .modal__inner {
  max-width: calc(100% - 40px);
  width: 720px;
  background: #222222;
}
.modal-question .modal__header {
  height: 68px;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal-question .modal__header .modal__close {
  position: static;
}
.modal-question .modal__header h1 {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
}
.modal-question .modal__content {
  padding: 0 24px 98px;
  position: relative;
}
.modal-question .modal__content .fix_btn {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #222222;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 24px;
  gap: 8px;
}
.modal-question .modal__content .ip_box h6 {
  color: #e5e5ec;
  font-size: 16px;
  line-height: 140%;
  margin-bottom: 4px;
  display: flex;
}
.modal-question .modal__content .ip_box .req_txt {
  color: #159bff;
}
.modal-question .ip_box .textarea_box {
  border: none;
  background: #333333;
}
.modal-question .ip_box .textarea_box input,
.modal-question .ip_box .textarea_box textarea {
  background: #333333;
  color: #fff;
}
.modal-question .ip_box .textarea_box input {
  border-bottom: 1px solid #444444;
}
.modal-question .file_area {
  background: #333333;
  border: none;
}
.modal-question .file_area .file-upload {
  background: #444444;
  color: #f1f1f5;
}
.modal-question .btn_modal-close {
  background: url(../_img/icon/icon_x_wh.svg) no-repeat center center / contain;
}

/*강의질문 첨부파일 */
#question-file-list .file_name {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 6px;
}
#question-file-list .file_name p {
  flex: 1;
  font-size: 14px;
  color: #e5e5ec;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
#question-file-list .file_name .x_btn {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  background: url(/_img/icon/icon_x_btn_one.svg) no-repeat center center / contain;
  border: none;
  cursor: pointer;
  text-indent: -9999px;
}

/*  */

.modal-question.reflection .modal__inner {
  background: #111111;
  overflow: hidden;
  max-height: 80dvh;
}
.modal-question.reflection .modal__inner > * {
  color: #fff;
}
.modal-question.reflection .fix_btn {
  background: #222222;
  border: 1px solid #222222;
}
.modal-question.reflection .modal__header h1 {
  color: #fff;
}
.modal-question.reflection .btn_modal-close {
  background: url(../_img/icon/icon_x_wh.svg) no-repeat center center / contain;
}
.modal-question.reflection .modal__content {
  padding: 0;
}

.modal-question.reflection .modal__content .reflection_cont {
  overflow: auto;
  padding: 0 24px;
  margin-bottom: 88px;
  max-height: calc(80vh - 156px);
}
.modal-question.reflection .modal__content .reflection_cont .final_title {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  gap: 8px;
  align-items: center;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #444444;
}
.modal-question.reflection .modal__content .reflection_cont .final_title::before {
  content: "";
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  background: url(../_img/icon/icon_final_check_B.svg) no-repeat center center/contain;
}

.modal-question.reflection .modal__content .reflection_cont::-webkit-scrollbar {
  width: 6px;
  background: #222222;
}

.modal-question.reflection .modal__content .reflection_cont::-webkit-scrollbar-thumb {
  background: #444444;
  border-radius: 100px;
}
/* modal-application  */
.modal_appliccation .modal__inner {
  max-width: calc(100% - 40px);
  overflow: hidden;
  width: 520px;
}
.modal_appliccation .modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 84px;
}
.modal_appliccation .modal__header h1 {
  font-weight: 700;
  font-size: 20px;
}
.modal_appliccation .modal__header .modal__close {
  position: static;
}
.modal_appliccation.coupon .modal__content {
  height: fit-content;
  max-height: 90vh;
  overflow: auto;
}
.modal_appliccation .modal__content {
  padding: 0 24px 96px;
  overflow: scroll;
  height: 498px;
}
.modal_appliccation .modal__content .ip_box .tit {
  color: #111111;
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  margin-bottom: 12px;
  display: inline-block;
}
.modal_appliccation .modal__content .ip_box .select {
  height: 48px;
}
.modal_appliccation .modal__content .ip_box .number {
  display: flex;
  gap: 8px;
}
.modal_appliccation .modal__content .ip_box .number .shot {
  width: 104px;
}
.modal_appliccation .modal__content .blue_box {
  background: #f7f7fb;
  border-radius: 4px;
  margin-top: 12px;
  padding: 16px;
}
.modal_appliccation .modal__content .blue_box h1 {
  color: #111111;
  font-weight: 500;
  font-size: 15px;
  line-height: 150%;
  margin-bottom: 12px;
}
.modal_appliccation .modal__content .blue_box ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.modal_appliccation .modal__content .blue_box ul li {
  color: #111111;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
}
.modal_appliccation .modal__content .check-A {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 12px;
}
.modal_appliccation .modal__content .check-A h6 {
  color: #111111;
  font-size: 16px;
}
.modal_appliccation .modal__content .check-A h6 b {
  color: #159bff;
}
.modal_appliccation .fix-btn {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  padding: 16px 24px 32px;
}
/* modal-video */
.modal_video .modal__inner {
  max-width: calc(100% - 40px);
  width: 900px;
}
.modal_video .modal__header {
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: end;
  padding: 0 24px;
}
.modal_video .modal__header .modal__close {
  position: static;
}
.modal_video .modal__content {
  padding: 0 24px 32px;
}
.modal_video .modal__content .video_area {
  width: 100%;
  aspect-ratio: 852/481;
}
.video_area iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.modal_video .modal__content .shorts_text {
  margin-top: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e5e5ec;
}
.modal_video .modal__content .shorts_text h1 {
  color: #111111;
  font-weight: 700;
  font-size: 24px;
  line-height: 140%;
}
.modal_video .modal__content .shorts_text .sub_text {
  margin-top: 16px;
  justify-content: space-between;
}
.modal_video .modal__content .related_courses {
  margin-top: 16px;
}
.modal_video .modal__content .related_courses .btn-lnb {
  display: flex;
  gap: 4px;
  align-items: center;
}
.modal_video .modal__content .related_courses .btn-lnb h2 {
  color: #505050;
  font-weight: 600;
  font-size: 16px;
}
.modal_video .modal__content .related_courses .btn-lnb.active .arrow_down {
  transform: rotate(180deg);
}
.modal_video .modal__content .related_courses .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;
}
.modal_video .modal__content .related_courses .lnb__list {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.modal_video .modal__content .related_courses .lnb__list .item {
  border: 1px solid #e5e5ec;
  border-radius: 4px;
  padding: 16px;
  display: flex;
  gap: 8px;
  align-items: center;
}
.badge-basic {
  height: 26px;
  line-height: 26px;
  border-radius: 4px;
  padding: 0 8px;
  font-size: 12px;
  font-weight: 600;
}
.badge-basic.blue {
  background: #159bff;
  color: #fff;
}
.badge-basic.premium {
  background: linear-gradient(to right, #35a854, #159bff);
  color: #fff;
}
.modal_video .modal__content .related_courses .lnb__list .item h2 {
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
}
.modal_video .btn_right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}
.modal_video .btn {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
}
.modal_video .btn img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}
/* Form */
input[type="text"],
input[type="password"],
input[type="number"],
input[type="email"],
input[type="tel"] {
  border: 1px solid #e2e2e2;
  border-radius: 4px;
  background-color: #fff;
  padding: 0 16px;
  font-size: 14px;
}

input[type="text"]::placeholder,
input[type="password"]::placeholder,
input[type="number"]::placeholder,
input[type="email"]::placeholder,
input[type="tel"]::placeholder,
textarea::placeholder {
  font-size: 14px;
  font-weight: 400;
  color: #999999;
}
input:disabled {
  background: #f7f7fb;
}
/* ip_typeA */
.ip_typeA input,
.ip_typeA textarea {
  height: 48px;
  width: 100%;
  border: 1px solid #e5e5ec;
  font-size: 16px;
}
.ip_typeA textarea {
  padding: 13px 16px;
  height: 140px;
  border-radius: 4px;
}
.ip_typeA input::placeholder,
.ip_typeA textarea::placeholder {
  font-size: 16px;
}
.ip_typeA .textarea_B {
  height: 152px;
}
/* class_choice_checkbox */
.class_choice_checkbox {
  position: relative;
}
.class_choice_checkbox input {
  display: none;
}
.class_choice_checkbox input + em {
  width: 22px;
  height: 22px;
  position: absolute;
  top: 8px;
  right: 8.33px;
  background: url(../_img/icon/icon_check_A.svg) no-repeat center center/contain;
  z-index: 10;
}
.class_choice_checkbox input:checked + em {
  background: url(../_img/icon/icon_check_A_on.svg) no-repeat center center/contain;
}
/* check-A */
.check-A input {
  display: none;
}
.check-A input + em {
  background: url(../_img/icon/icon_check_A.svg) no-repeat center center / contain;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  display: inline-block;
}
.check-A input:checked + em {
  background: url(../_img/icon/icon_check_A_on.svg) no-repeat center center / contain;
}
/* num_radio */
.num_radio {
  width: 100%;
}
.num_radio input {
  display: none;
}
.num_radio label {
  display: flex;
  gap: 8px;
  align-items: center;
  height: 46px;
  width: 100%;
  justify-content: center;
}
.num_radio input + em {
  width: 22px;
  height: 22px;
  background: url(../_img/icon/icon_radio_black.svg) no-repeat center center/contain;
}
.num_radio input:checked + em {
  background: url(../_img/icon/icon_radioA_on.svg) no-repeat center center/contain;
}
.num_radio input + em + h6 {
  font-size: 16px;
  color: #e5e5ec;
  font-weight: 500;
}
/* radio_typeTab */
.radio_typeTab input {
  display: none;
}
.radio_typeTab input + em {
  background: #f7f7fb;
  border-radius: 100px;
  padding: 0 16px;
  height: 36px;
  line-height: 36px;
  display: inline-block;
  font-style: normal;
  color: #999999;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
}
.radio_typeTab input:checked + em {
  background: #384046;
  color: #fff;
}
/* radio_typeTab-B */
.radio_typeTab-B input {
  display: none;
}
.radio_typeTab-B input + em {
  background: #f7f7fb;
  border-radius: 100px;
  white-space: nowrap;
  padding: 0 16px;
  height: 38px;
  line-height: 38px;
  display: inline-block;
  font-style: normal;
  color: #999999;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
}
.radio_typeTab-B input:checked + em,
.radio_typeTab-B input:hover + em {
  background: #384046;
  color: #fff;
}
/* check-target */
.check-target label {
  padding: 0 16px;
  height: 46px;
  border: 1px solid #e5e5ec;
  display: inline-block;
  display: flex;
  gap: 8px;
  align-items: center;
  width: fit-content;
  border-radius: 4px;
}
.check-target input {
  display: none;
}
.check-target input + em {
  background: url(../_img/icon/icon_check_A.svg) no-repeat center center / contain;
  width: 22px;
  height: 22px;
  display: inline-block;
}
.check-target input + em + p {
  color: #111111;
  font-size: 16px;
  font-weight: 500;
}
.check-target input:checked + em {
  background: url(../_img/icon/icon_check_A_on.svg) no-repeat center center / contain;
}
/*  */
.input_txt input {
  display: none;
}
.input_txt input + em {
  background: #fff;
  border: 1px solid #e5e5ec;
  border-radius: 4px;
  padding: 0 16px;
  height: 48px;
  line-height: 48px;
  display: inline-block;
  font-style: normal;
  color: #111111;
  font-weight: 500;
  font-size: 16px;
  width: 160px;
  text-align: center;
  cursor: pointer;
}
.input_txt input:checked + em {
  background: #159bff;
  border-color: #159bff;
  color: #fff;
}
/* input_txt-B */
.input_txt-B input {
  display: none;
}
.input_txt-B input:hover + em {
  color: #159bff;
}
.input_txt-B input + em {
  height: 41px;
  line-height: 41px;
  display: inline-block;
  font-style: normal;
  color: #999999;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
}
.input_txt-B input:checked + em {
  color: #159bff;
}
/* input_month */
.input_month {
  display: flex;
  gap: 0;
}
.input_month input {
  display: none;
}
.input_month input + em {
  display: inline-block;
  font-style: normal;
  height: 48px;
  line-height: 48px;
  width: 72px;
  border: 1px solid #e5e5ec;
  border-right: 0;
  color: rgba(153, 153, 153, 0.46);
  font-weight: 600;
  font-size: 16px;
  text-align: center;
}
.input_month label:last-child input + em {
  border-right: 1px solid #e5e5ec;
}
.input_month input:checked + em {
  border: 1px solid #111111;
  color: #111111;
}
.input_month label:last-child input:checked + em {
  border-right: 1px solid #111111;
}
/* input-txtC */
.input_txt-C input {
  display: none;
}
.input_txt-C input + em {
  line-height: 51px;
  height: 51px;
  display: inline-block;
  padding: 0 20px;
  color: #767676;
  font-weight: 600;
  font-size: 18px;
  font-style: normal;
  cursor: pointer;
}

.input_txt-C input:checked + em {
  border-bottom: 2px solid #111111;
  color: #111111;
}
/* choice-radio */

.choice_radio label {
  display: flex;
  gap: 4px;
  align-items: center;
  border-radius: 4px;
  background: #333333;
  width: 100px;
  justify-content: center;
  height: 40px;
  line-height: 40px;
  cursor: pointer;
}
.choice_radio label p {
  font-size: 16px;
  font-weight: 600;
  color: #999999;
}
.choice_radio label input {
  display: none;
}
.choice_radio label input + em {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.ok_radio label input + em {
  background: url(../_img/icon/icon_ok.svg) no-repeat center center / contain;
}
.ok_radio label:has(input:checked) {
  background: #ecf7ff;
}
.ok_radio label input:checked + em + p {
  color: #159bff;
}
.ok_radio label input:checked + em {
  background: url(../_img/icon/icon_ok_on.svg) no-repeat center center / contain;
}
.no_radio label:has(input:checked) {
  background: #fff0f0;
}
.no_radio label input:checked + em + p {
  color: #ff3e3e;
}
.no_radio label input + em {
  background: url(../_img/icon/icon_no.svg) no-repeat center center / contain;
}
.no_radio label input:checked + em {
  background: url(../_img/icon/icon_no_on.svg) no-repeat center center / contain;
}
/* radio_typePay */
.radio_typePay {
  height: 54px;
  border: 1px solid #e5e5e5;
  display: flex;
  border-radius: 4px;
  padding: 16px;
  gap: 8px;
  align-items: center;
}
.radio_typePay input {
  display: none;
}
.radio_typePay input + em {
  display: inline-block;
  font-style: normal;
  cursor: pointer;
  width: 22px;
  height: 22px;
  border-radius: 100%;
  background: #fff;
  border: 6px solid #999999;
  opacity: 0.8;
}
.radio_typePay input:checked + em {
  background: #fff;
  border: 6px solid #159bff;
  opacity: 1;
}
.radio_typePay:has(input:checked) {
  border-color: #159bff;
}
.radio_typePay p {
  color: #111111;
  font-weight: 600;
  font-size: 16px;
}
/* Select */
.select-primary {
  height: 48px;
  line-height: 48px;
  float: none;
  width: 200px;
  display: inline-block;
  border-radius: 0;
  border: 1px solid #e5e5ec;
  font-size: 16px;
  font-weight: 500;
}

.select-primary .list {
  width: inherit;
  max-height: 190px;
  overflow-y: auto;
  z-index: 1000;
}

.select-primary:active,
.select-primary.open,
.select-primary:focus {
  border-color: #ddd;
}

.select-primary .option {
  border-bottom: 1px solid #ddd;
  height: 40px;
  line-height: 40px;
  border-radius: 0;
}

.select-primary .option:last-child {
  border-bottom: none;
}

.select-primary .option.selected {
  font-weight: normal;
}

.select-primary:after {
  border-bottom: none;
  border-right: none;
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(../_img/icon/icon_arrow_bottom.svg) no-repeat center center / contain;
  transform: translateY(-50%) rotate(0deg);
  margin-top: 0;
  right: 16px;
}

.select-primary.open:after {
  transform: translateY(-50%) rotate(-180deg);
  transform-origin: center !important;
}
/* select_basic */
.select_basic {
  width: 100%;
  border-radius: 4px;
  height: 48px;
  line-height: 48px;
  font-size: 14px;
  font-weight: 700;
}
.select_basic:after {
  border-bottom: none;
  border-right: none;
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(../_img/icon/icon_partner_down.svg) no-repeat center center / contain;
  transform: translateY(-50%) rotate(0deg);
  margin-top: 0;
  right: 16px;
}
.select_basic.open:after {
  transform: translateY(-50%) rotate(-180deg);
  transform-origin: center !important;
}
.select_basic .list {
  width: inherit;
  max-height: 190px;
  overflow-y: auto;
  z-index: 1000;
}
/* select_partner */
.select_partner {
  width: 130px;
  padding: 0 40px 0 16px;
  color: #111111;
  font-weight: 600;
  font-size: 14px;
  height: 40px;
}
.select_partner .list {
  width: inherit;
  max-height: 190px;
  overflow-y: auto;
  z-index: 1000;
}

.select_partner:after {
  border-bottom: none;
  border-right: none;
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(../_img/icon/icon_partner_down.svg) no-repeat center center / contain;
  transform: translateY(-50%) rotate(0deg);
  margin-top: 0;
  right: 14px;
}

.select_partner.open:after {
  transform: translateY(-50%) rotate(-180deg);
  transform-origin: center !important;
}
/* qna_select */
.qna-select {
  max-width: 320px;
  width: 100%;
}
.custom-select {
  position: relative;
  width: 100%;
  font-size: 15px;
  font-weight: 600;
  font-size: 16px;
  color: #111111;
}

.custom-select .selected {
  width: 100%;
  text-align: left;
  height: 54px;
  padding: 0 36px 0 16px;
  background: #fff;
  border: 1px solid #e5e5ec;
  border-radius: 4px;
  cursor: pointer;
}
.custom-select .selected::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 20px;
  height: 20px;
  transform: translateY(-50%) rotate(0deg);
  background: url(../_img/icon/icon_gray_arrowdown.svg) no-repeat center / contain;
  transition: transform 0.25s ease;
}

.custom-select.open .selected::after {
  transform: translateY(-50%) rotate(180deg);
}

.custom-select .options {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  border: 1px solid #e5e5ec;
  border-radius: 4px;
  margin-top: 4px;
  z-index: 1000;
}

.custom-select .options li {
  padding: 16px;
  height: 54px;
  cursor: pointer;
  border-bottom: 1px solid #e5e5ec;
  transition: background 0.2s;
}

.custom-select .options li:hover {
  background: #f5f5f5;
}

.custom-select .blue {
  color: #159bff;
  margin-left: 8px;
}
/* search */
.search__area {
  max-width: 240px;
  width: 100%;
  position: relative;
}
.search__area input {
  height: 40px;
  width: 100%;
  border: 1px solid #e5e5ec;
  background: #f7f7fb;
  border-radius: 800px;
  padding-left: 46px;
}
.search__area .search_icon {
  background: url(../_img/icon/icon_search.svg) no-repeat center center / contain;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
}

/* badge */
.badge {
  border-radius: 800px;
  height: 32px;
  line-height: 32px;
  min-width: 88px;
  width: 88px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  display: inline-block;
}
.badge.sm {
  width: fit-content !important;
  min-width: fit-content !important;
  height: 38px;
  line-height: 38px;
  padding: 0 16px;
  font-weight: 700;
}
.badge.md {
  width: fit-content !important;
  min-width: fit-content !important;
  border-radius: 4px;
  font-size: 14px !important;
  padding: 0 10px;
}
.gray_badge {
  background: #f7f7fb;
  color: #767676;
}
.black_badge {
  background: #384046;
  color: #fff;
}
.req_blue {
  color: #159bff;
  font-weight: 700;
}
.sky_badge {
  background: #ecf7ff;
  color: #159bff;
}
.green_badgeB {
  background: rgba(53, 168, 84, 0.08);
  color: #35a854;
}
.red_badge {
  background: rgba(255, 62, 62, 0.08);
  color: #ff3e3e;
}
.gray_badgeB {
  background: #f1f1f5;
  color: #767676;
}
.black_badge {
  background: #333333;
  color: #fff;
}
/* badge-tag  */
.badges-tag {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.badges-tag .badge {
  color: #767676;
  font-weight: 500;
  font-size: 13px;
  padding: 0 6px;
  border: 1px solid #e5e5ec;
  height: 24px;
  line-height: 24px;
  border-radius: 0;
  width: fit-content;
}
.file_icon {
  width: 20px;
  height: 20px;
  background: url(../_img/icon/icon_file.svg) no-repeat center center/contain;
  min-width: 20px;
}
/* Mobile */
@media screen and (max-width: 768px) {
  .select_partner {
    height: 48px;
    line-height: 48px;
    width: 100%;
    font-size: 16px;
  }
  .search__area {
    max-width: 100%;
  }
  .input_txt-B input + em,
  .radio_typeTab-B input + em {
    height: 38px;
    line-height: 38px;
    font-size: 16px;
  }
  .badge {
    min-width: fit-content;
  }
  .btn-big {
    height: 48px;
    line-height: 48px;
  }

  .modal-review .modal__inner {
    height: 100vh;
    max-height: 100vh;
    border-radius: 0;
  }
  .modal-review .modal__close {
    top: 14px;
    right: 20px;
  }
  .modal-review .modal__header {
    height: 56px;
    padding: 0 20px;
    display: flex;
    align-items: center;
  }
  .modal-review .modal__header h1 {
    font-size: 18px;
  }
  .modal-review .review_area {
    grid-template-columns: 1fr;
  }
  .select-primary {
    width: 100%;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
  }
  .modal-review .sel_area .select {
    width: 100%;
    padding-left: 16px;
  }
  .modal-review .modal__content {
    padding: 20px 20px 32px;
  }
  .modal-review .review_area .item {
    padding: 16px;
  }
  .modal-review .rating_box .rating_id .id,
  .modal-review .content,
  .modal-review .rating_box .rating_num {
    font-size: 13px;
  }
  .modal-review .rating_box .rating_id .gray_badge {
    height: 26px;
    line-height: 26px;
    font-size: 13px;
  }
  .modal-review .pagination {
    margin-top: 32px;
  }
  .modal-basic .modal__content img {
    width: 64px;
    height: 64px;
  }
  .modal-basic .modal__content h1 {
    font-size: 16px;
  }
  .modal-basic .modal__content p {
    margin-top: 8px;
    margin-bottom: 16px;
  }
  .modal-basic .modal__content .btn {
    height: 40px;
    line-height: 40px;
  }
  hr.gray_line.m40 {
    margin: 32px 0;
  }
  .custom-select,
  .radio_typePay p {
    font-size: 14px;
  }
  .custom-select .selected,
  .radio_typePay {
    height: 48px;
  }
  .input_txt-C input + em {
    font-size: 16px;
    height: 48px;
    line-height: 48px;
    padding: 0 12px;
  }
  .modal_video .modal__header {
    height: 48px;
  }
  .modal_video .modal__content .shorts_text {
    margin-top: 12px;
    padding-bottom: 12px;
  }
  .modal_video .modal__content .shorts_text h1 {
    font-size: 16px;
  }
  .badges-tag {
    display: none;
  }
  .modal_video .modal__content .related_courses {
    margin-top: 12px;
    margin-bottom: 16px;
  }
  .modal_video .modal__content .related_courses .btn-lnb h2 {
    font-size: 14px;
  }
  .modal_video .btn {
    width: 100%;
    font-size: 14px;
  }
  .modal-question.reflection .modal__inner {
    width: 100%;
    max-width: 100%;
    max-height: 100%;
    height: 100%;
  }
  .modal-question.reflection .modal__header {
    height: 56px;
  }
  .modal-question.reflection .modal__header h1 {
    font-size: 18px;
  }
  .modal-question.reflection .modal__content .reflection_cont {
    padding: 20px 16px 40px;
    margin-bottom: 80px;
    max-height: calc(100vh - 136px);
  }
  .modal-question.reflection .fix_btn {
    height: 80px;
  }
  .num_radio label {
    gap: 4px;
  }
  .num_radio input + em + h6 {
    font-size: 14px;
  }
  .input_month {
    width: 100%;
  }
  .input_month label {
    flex: 1;
    width: 100%;
  }
  .input_month input + em {
    width: 100%;
  }
}
