@charset "utf-8";

/* fade up animation */
.fade_up {
  position: relative;
  top: 50px;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.fade_up.active {
  top: 0;
  opacity: 1;
}

/* Tutorials */
.wrapper {
  height: 100%;
}
.wrapper_inner {
  min-height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
}
.container {
  margin-top: 72px;
  padding: 120px 0 100px;
}
.page_tit_row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.page_tit_row>div,
.page_tit_row>p {
  width: 604px;
}
.page_tit_en {
  color: var(--black-60);
  font-size: 2.4rem;
  font-weight: 600;  
}
.page_tit {
  margin-top: 20px;
  font-size: 5.6rem;
  font-weight: 600;
  letter-spacing: -2.24px;  
}
.page_tit_row>p {
  color: var(--black-70);
  font-size: 2rem;
  line-height: 150%;
}
.page_img {
  position: relative;
  top: -40px;
  left: -40px;
  margin-top: 120px;
  width: 1320px;
  height: 560px;
}
.page_img img {
  width: 100%;
  vertical-align: top;
}
.page_img_border {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0 solid var(--white);
  -webkit-animation: imageLine 0.6s 0.4s ease-in forwards; 
  animation: imageLine 0.6s 0.4s ease-in forwards; 
}
.sec_tit {
  font-size: 3.2rem;
  font-weight: 600;
  letter-spacing: -1.28px;  
}
.tuts_list {
  margin-top: 80px;
}
.tuts_list li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--black-10);
}
.tuts_list li:last-child {
  margin-bottom: 0;
  border: none;
}
.tuts_list li>div {
  width: 604px;
}
.tuts_list_tit {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 600;
}
.tuts_list_tit .num {
  margin-right: 16px;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -1.2px;  
}
.tuts_list li img {
  width: 100%;
}
.tuts_list_desc {
  margin-top: 32px;
  color: var(--black-70);
  line-height: 150%;
}

/* FAQ */
.tab_menu {
  display: flex;
}
.tab_menu li {
  margin-right: 20px;
  padding: 10px 16px;
  border-radius: 20px;
  color: var(--black-50);
  font-size: 1.8rem;
  font-weight: 500;
  cursor: pointer;
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
}
.tab_menu li.selected {
  background-color: var(--black-90);
  color: var(--white);
}
.tab_menu li:hover {
  background-color: var(--black-90);
  color: var(--white);
}
.tab_cont02,
.tab_cont03,
.tab_cont04,
.tab_cont05 {
  display: none;
}
.faq_list {
  margin-top: 40px;
  border-top: 2px solid var(--black-90);
  border-bottom: 2px solid var(--black-90);
}
.faq_list>li {
  display: flex;
  padding: 40px 0;
  border-bottom: 1px solid var(--black-20);
}
.faq_list>li:last-child {
  border-bottom: none;
}
.faq_list_tag {
  width: 114px;
}
.faq_list_cont {
  width: 1040px;
}
.faq_list_like {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 86px;
  height: 34px;
}
.faq_tag {
  display: inline-block;
  width: 83px;
  padding: 8px 0;
  border: 1px solid var(--black-30);
  border-radius: 2px;
  color: var(--black-70);
  font-size: 1.2rem;
  text-align: center;
}
.faq_list_tit {
  overflow: hidden;
  width: calc(100% - 10px);
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 150%; 
  white-space: nowrap;
  text-overflow: ellipsis;
}
.faq_list_info {
  display: flex;
  margin-top: 20px;
}
.faq_list_info li {
  position: relative;
  margin-right: 32px;
  color: var(--black-70);
  font-size: 1.3rem;
}
.faq_list_info li:after {
  content: '|';
  position: absolute;
  top: 0;
  right: -16px;
}
.faq_list_info li:last-child {
  margin-right: 0;
}
.faq_list_info li:last-child:after {
  display: none;
}
.faq_question {
  cursor: pointer;
}
.faq_answer {
  display: none;
  padding-top: 40px;
  color: var(--black-70);
  line-height: 150%;
}
.faq_answer.visible {
  display: block;
}
.faq_list li.open .faq_tag {
  background-color: var(--prime-purple);
  border-color: var(--prime-purple); 
  color: var(--white);
}
.btn_like {
  width: 34px;
  height: 34px;
  background: url(https://d3roc6jutr2w15.cloudfront.net/assets/new_user_assets/images/main/ico_like.png) no-repeat center center/cover;
}
.btn_like:hover {
  background-image: url(https://d3roc6jutr2w15.cloudfront.net/assets/new_user_assets/images/main/ico_like_purple.png);
}
.faq_like_num {
  font-family: "Exo 2";
  font-size: 1.3rem;
}
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}
.pagination li {
  margin: 0 6px;
}
.pagination li a {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-width: 16px;
  color: var(--black-60);
  font-size: 1.4rem;
}
.pagination li a.active {
  color: var(--black-90);
}
.pagination li:hover a {
  color: var(--black-90);
}
.pagination li a.active:after,
.pagination li:hover a:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--black-90);
}
.pagination .pgn_first:hover a:after,
.pagination .pgn_prev:hover a:after,
.pagination .pgn_next:hover a:after,
.pagination .pgn_last:hover a:after {
  display: none;
}
.pagination .pgn_first,
.pagination .pgn_prev,
.pagination .pgn_next,
.pagination .pgn_last {
  margin: 0;
  padding: 0;
}
.pgn_first span,
.pgn_prev span,
.pgn_next span,
.pgn_last span {
  display: inline-block;
  width: 32px;
  height: 32px;
}
.pgn_first .disabled span {
  background: url(https://d3roc6jutr2w15.cloudfront.net/assets/new_user_assets/images/main/ico_first_gray.png) no-repeat left top/cover;
}
.pgn_first span {
  background: url(https://d3roc6jutr2w15.cloudfront.net/assets/new_user_assets/images/main/ico_first_black.png) no-repeat left top/cover;
}
.pgn_prev span {
  background: url(https://d3roc6jutr2w15.cloudfront.net/assets/new_user_assets/images/main/ico_prev_black.png) no-repeat left top/cover;
}
.pgn_prev .disabled span {
  background: url(https://d3roc6jutr2w15.cloudfront.net/assets/new_user_assets/images/main/ico_prev_gray.png) no-repeat left top/cover;
}
.pgn_next span {
  background: url(https://d3roc6jutr2w15.cloudfront.net/assets/new_user_assets/images/main/ico_next_black.png) no-repeat left top/cover;
}
.pgn_next .disabled span {
  background: url(https://d3roc6jutr2w15.cloudfront.net/assets/new_user_assets/images/main/ico_next_gray.png) no-repeat left top/cover;
}
.pgn_last span {
  background: url(https://d3roc6jutr2w15.cloudfront.net/assets/new_user_assets/images/main/ico_last_black.png) no-repeat left top/cover;
}

.pgn_last .disabled span {
  background: url(https://d3roc6jutr2w15.cloudfront.net/assets/new_user_assets/images/main/ico_last_gray.png) no-repeat left top/cover;
}

.pgn_first:hover,
.pgn_prev:hover,
.pgn_next:hover,
.pgn_last:hover {
  background-color: var(--white);
}
.aside_link {
  position: fixed;
  right: 50px;
  bottom: 50px;
  background: linear-gradient(135deg, #896DFF 0%, #5A3AE2 100%);
  border-radius: 10px;
  color: var(--white);
  text-align: center;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.aside_link.up {
  bottom: 290px;
}
.aside_cont {
  width: 180px;
  height: 180px;
  padding-top: 30px;
}
.aside_cont a {
  color: var(--white);
}
.aside_link_tit {
  font-size: 1.8rem;
  font-weight: 600;
}
.aside_link_desc {
  margin-top: 10px;
  font-size: 1.2rem;
  line-height: 120%;  
}
.aside_btn_row {
  margin-top: 20px;
}

/* 일대일 문의 */
.inquiry_wrap {
  margin-top: 40px;
  padding: 30px 0;
  border-top: 2px solid var(--black-90);
  border-bottom: 2px solid var(--black-90);
}
.inquiry_row {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}
.inquiry_row:first-child {
  margin-top: 0;
}
.inquiry_tit {
  width: 110px;
  line-height: 44px;
}
.inquiry_cont {
  width: 1110px;
}
.attach_file_area {
  display: flex;
  flex-wrap: wrap;
  width: 870px;
}
.attach_file_area>div {
  margin: 5px 20px 5px 0;
}
.attach_file {
  position: relative;
  margin-right: 20px;
}
.file_nm {
  display: inline-block;
  padding: 17px 52px 17px 16px;
  background-color: var(--black-20);
  border-radius: 2px;
  color: var(--black-80);
  font-size: 1.3rem;
}
.attach_file:hover .file_nm {
  background-color: var(--black-30);
}
.btn_file_delete {
  position: absolute;
  top: 13px;
  right: 16px;
}
.btn_file_delete img {
  width: 20px;
}
.chptcha_area {
  display: flex;
  align-items: center;
  width: 870px;
}
.chptcah_input {
  position: relative;
  width: 400px;
}
.chapcha_num {
  width: 112px;
  margin-left: 20px;
}
.chapcha_num img {
  width: 100%;
}
.btn_row {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

/* 이용권 안내 */
.voucher_upload_box {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 0;
  background-color: #F5F7FF;
}
.form_voucher {
  width: 400px;
  margin: 0 10px 0 32px;
}
.upload_tit {
  font-size: 2.4rem;
  font-weight: 600;  
}
.voucher_list {
  display: flex;
  justify-content: space-between;
  margin-top: 80px;
}
.voucher_list li {
  width: 392px;
  height: 312px;
  background-color: var(--white);
  border: 1px solid #E9E7F3;
  border-radius: 20px;
  box-shadow: 0px 20px 30px 0px rgba(85, 50, 235, 0.08);
  overflow: hidden;
}
.voucher_cont {
  position: relative;
  width: 392px;
  height: 312px;
  padding: 50px 32px 0;
}
.voucher_info {
  display: flex;
  justify-content: space-between;
}
.voucher_info>p {
  color: var(--light-purple);
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -1.2px;  
  opacity: 0.2;
}
.voucher_info>div {
  width: 180px;
  text-align: right;
}
.voucher_nm {
  font-size: 2.6rem;
  font-weight: 700;  
}
.voucher_nm span {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -1.28px;  
  vertical-align: -1px;
}
.voucher_price_wrap {
  display: flex;
  justify-content: flex-end;
  margin-top: 12px;
}
.sale {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  margin-right: 16px;
  background: url(https://d3roc6jutr2w15.cloudfront.net/assets/new_user_assets/images/pages/img_star.png) no-repeat center center/cover;
  color: var(--white);
  font-size: 1.2rem;
}
.price_origin {
  color: var(--black-40);
  font-size: 1.4rem;
}
.price_origin span {
  text-decoration: line-through;
}
.price {
  margin-top: 2px;
  color: var(--dark-purple);
  font-weight: 700;
}
.price.three {
  margin-top: 16px;
}
.price span {
  font-size: 2.2rem;
  font-weight: 700;  
}
.info_desc {
  margin-top: 40px;
  color: var(--black-60);
  font-size: 1.2rem;
  text-align: center;
  line-height: 150%;
}
.info_desc b {
  color: var(--black-80);
}
.hover_txt {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 55%;
  left: 50%;
  color: var(--white);
  font-size: 2.6rem;
  font-weight: 700;  
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.hover_txt span {
  font-size: 3.2rem;
  font-weight: 700;
}
.payment_row {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 54px;
  background: linear-gradient(135deg, #6041E6 0%, #6041E6 100%);
  color: var(--white);
  font-size: 1.8rem;
  font-weight: 500;  
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.voucher_list li:hover .payment_row {
  height: 312px;
  padding-top: 50px;
  background: linear-gradient(135deg, #896DFF 0%, #5A3AE2 100%);
  font-size: 1.8rem;
  font-weight: 500;
}
.voucher_list li:hover .hover_txt {
  top: 45%;
  visibility: visible;
  opacity: 1;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.refund_row {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 80px;
}
.refund_desc {
  margin-left: 20px;
  color: var(--black-60);
  font-size: 1.2rem;
  line-height: 150%; 
} 
.refund_desc b {
  color: var(--black-80);
  font-weight: 600;
}

/* My Lounge */
/* 응시내역 */
.lounge_wrap {
  margin-top: 80px;
}
.user_info_box {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 0;
  background-color: #F5F7FF;
}
.user_id {
  color: var(--dark-purple);
  font-size: 2rem;
  font-weight: 600;  
}
.pass_info {
  position: relative;
  margin: 0 32px 0 64px;
  font-size: 2rem;
  font-weight: 600;  
}
.pass_info:before {
  content: '|';
  position: absolute;
  top: 5px;
  left: -32px;
  color: var(--black-30);
  font-size: 1.5rem;
  font-weight: 400;
}
.pass_info span {
  color: var(--dark-purple);
  font-size: 2.4rem;
  font-weight: 600;
  vertical-align: -1px;
}
.sub_menu_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 80px 0 40px;
}
.sub_menu {
  display: flex;
}   
.sub_menu li {
  margin-right: 30px;
}
.sub_menu li:last-child {
  margin-right: 0;
}
.sub_menu li a {
  padding: 10px 0;
  color: var(--black-40);
  font-size: 2rem;
  font-weight: 600;
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
}
.sub_menu li.on a {
  color: var(--black-90);
}
.sub_menu li:hover a {
  color: var(--black-90);
}
.btn_right button:nth-child(2) {
  margin-left: 10px;
}
.tbl_style {
  width: 100%;
  table-layout: fixed;
  border-top: 2px solid var(--black-90);
  border-bottom: 2px solid var(--black-90);
}
.tbl_style th {
  vertical-align: middle;
  height: 54px; 
  background-color: var(--bg-gray);
  border-bottom: 1px solid var(--black-20);
  font-size: 1.4rem;
  font-weight: 500;
}
.tbl_style td {
  vertical-align: middle;
  padding: 32px 0;
  border-bottom: 1px solid var(--black-20);
  font-size: 1.4rem;
  text-align: center;
}
.tbl_style td.no_data {
  padding: 40px 0;
}
.nodata_desc {
  position: relative;
  padding-left: 42px;
  color: var(--black-40);
  font-size: 1.4rem;
  font-weight: 500;
}
.nodata_desc:before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  width: 32px;
  height: 32px;
  background: url(https://d3roc6jutr2w15.cloudfront.net/assets/new_user_assets/images/main/ico_nodata.png) no-repeat center center/100%;
}
.test_tit {
  overflow: hidden;
  width: 100%;
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.test_tag {
  display: inline-block;
  width: 98px;
  padding: 8px 0;
  color: var(--black-70);
  border: 1px solid var(--black-30);
  border-radius: 2px;
  font-size: 1.2rem;
  text-align: center;
}
.btn_report {
  width: 46px;
  height: 36px;
  background: url(https://d3roc6jutr2w15.cloudfront.net/assets/new_user_assets/images/main/ico_report.png) no-repeat center center/20px;
}
.btn_report_disabled {
  width: 46px;
  height: 36px;
  background: url(https://d3roc6jutr2w15.cloudfront.net/assets/new_user_assets/images/main/ico_report_gray.png) no-repeat center center/20px;
  cursor: default;
}
.aside_link_list {
  position: fixed;
  right: 50px;
  bottom: 50px;
  width: 190px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;  
}
.aside_link_list.up {
  bottom: 290px;
}
.aside_link_box {
  width: 190px;
  margin-top: 16px;
  padding: 20px;
  background: linear-gradient(135deg, #fff 0%, #fff 50%, #fff 100%);
  box-shadow: 0px 20px 20px 0px rgba(48, 52, 154, 0.08);
  border: 1px solid var(--black-20);
  border-radius: 10px;
  box-shadow: 0px 20px 20px 0px rgba(48, 52, 154, 0.08);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.aside_link_tit02 {
  position: relative;
  color: var(--prime-purple);
  font-weight: 600;
}
.aside_link_tit02:after {
  content: '';
  position: absolute;
  top: 3px;
  right: 5px;
  width: 7px;
  height: 7px;
  border-top: 2px solid var(--black-80);
  border-right: 2px solid var(--black-80);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.aside_link_desc02 {
  margin-top: 10px;
  color: var(--black-80);
  font-size: 1.2rem;
  line-height: 150%;
}
.aside_link_box:hover {
  background: linear-gradient(135deg, #EB6DFF 0%, #9054F1 50%, #5A3AE2 100%);
}
.aside_link_box:hover .aside_link_tit02,
.aside_link_box:hover .aside_link_desc02 {
  color: var(--white);
}
.aside_link_box:hover .aside_link_tit02:after {
  border-color: var(--white);
}

/* 결제 내역 */
.btn_bill {
  width: 46px;
  height: 36px;
  background: url(https://d3roc6jutr2w15.cloudfront.net/assets/new_user_assets/images/main/ico_bill.png) no-repeat center center/20px;
}
.btn_bill_disabled {
  width: 46px;
  height: 36px;
  background: url(https://d3roc6jutr2w15.cloudfront.net/assets/new_user_assets/images/main/ico_bill_gray.png) no-repeat center center/20px;
  cursor: default;
}

/* 바우처 내역 */
.txt_use {
  color: var(--notice-em);
}
.txt_unused {
  color: var(--notice-alert);
}

/* 문의 내역 */
td.faq_tbl_tag {
  vertical-align: top;
}
td.faq_tbl_item {
  vertical-align: top;
  padding-top: 36px;
}
.faq_tbl_cont {
  width: 100%;
  text-align: left;
}
.faq_manager {
  display: none;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--black-20);
}
.faq_manager.visible {
  display: block;
}
.faq_manager_answer {
  margin-top: 20px;
  color: var(--black-70);
  line-height: 150%;
}
.manager {
  color: var(--black-90);
  font-weight: 600;
}
.answered {
  color: var(--notice-em);
  font-size: 1.4rem;
}
.unanswered {
  color: var(--notice-alert);
  font-size: 1.4rem;
}
tr.open .faq_tag {
  background-color: var(--prime-purple);
  border-color: var(--prime-purple);
  color: var(--white);
}

/* 이용약관 */
.wrap_policy {
  padding: 132px 0 170px;  
}
.policy_wrap {
  color: var(--black-70);
}
.mt80 {
  margin-top: 80px;
}
.terms_type {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}
.terms_type li a {
  display: inline-block;
  width: 406px;
  padding: 20px 0;
  background-color: var(--bg-light-gray);
  border: 1px solid var(--black-10);
  font-weight: 600;
  text-align: center;
  line-height: 150%; 
  letter-spacing: -0.8px;   
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
}
.terms_type li.on a {
  background-color: var(--black-80);
  border-color: var(--black-80);
  color: var(--white);
}
.terms_type li:hover a {
  background-color: var(--black-80);
  border-color: var(--black-80);
  color: var(--white);
}
.policy_tit {
  margin-top: 40px;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 150%; 
}
.policy_tit2 {
  margin-top: 40px;
  font-weight: 600;
  line-height: 150%; 
  letter-spacing: -0.8px;  
}
.policy_desc2 {
  margin-top: 10px;
  font-size: 1.4rem;
  line-height: 150%; 
}
.site_link {
  text-decoration: underline;
}