#loader_back3 {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #ededed94;
  z-index: 1000;
  display: none;
}
#loader2 {
  position: absolute;
  width: 80px;
  height: 80px;
  top: calc(50% - 40px);
  left: calc(50% - 40px);
  border: 8px solid #39b1d2;
  border-radius: 50%;
  border-top: 8px solid #fff;
  -webkit-animation: spin 1s linear infinite;
  animation: spin 1s linear infinite;
  z-index: 2002;
}
/********** 과목소개 타이틀(course_title) **********/
.due_date {
  text-align: left;
  margin: 40.5px 0px 35.5px 0px;
  font-size: 16px;
  float: left;
  color: #fff;
  font-weight: 600;
  padding: 4.5px 9px;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.4);
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.4);
}
.class_wrap_name {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
     -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;  
}
.class_wrap_name2 {
  width: 100%;
  position: relative;
}
.course_name {
  font-family: "Noto Sans Korean";
  font-size: 26px;
  font-weight: 500;
  text-align: left;
  line-height: 1;
  color: #000;
  clear: both;
  margin-bottom: 18px;
  position: relative;
  display: flex;
  align-items: center;
}
.course_name > a {
  display: inline-block;
  color: #000;
   max-width: calc(100% - 35px); 
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.course_name > img {
  margin-left: 10px;
  width: 34px;
  height: 34px;
}
.course_name > .course_credit {
  position: absolute;
  right: 0;
  top: 3px;
  font-size: 18px;
}
.course_name > .course_credit > img {
  vertical-align: middle;
}
.course_name > .course_credit > span {
  vertical-align: middle;
  margin-left: 5px;
}
.course_sub_name {
  margin-bottom: 18px;
  font-family: "Noto Sans Korean";
  font-size: 14px;
  text-align: left;
  line-height: 1;
  color: #666;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 75%;
}
.course_wrap_price {
  position: absolute;
  bottom: 0;
  right: 0;
  font-family: "Noto Sans Korean";
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  color: #000;  
}
.course_wrap_price > span {
  font-size: 24px;
}
.course_certificate {
  float: right;
  font-size: 17px;
  padding-top: 25px;
  margin-bottom: 25px;
}
.course_line {
  clear: both;
  overflow: hidden;
  border-top: 1px solid #999;
  width: 100%;
  margin-bottom: 18px;
}
.course_top_info  {
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 5px;
  height: 50px;
  padding: 10px;
  font-size: 22px;
  line-height: 30px;
  margin-right: 10px;
}
.course_top_left {
  margin-bottom: 10px;
  color: #333
}
.course_top_left:last-child {
  margin-bottom: 0px;
}
.course_top_left > .title {
  margin-right: 12px;
  font-weight: 500;
}
/* 수강신청 완료 팝업 */
#poplayer_apply {
  width: 90%;
  max-width: 700px;
}
/* 수강후기 팝업 */
#poplayer_review {
  width: 90%;
  width: 580px;
}
/* 수강생 추가 */
#poplayer_add_id_ {
  width: 100%;
  width: 250px;
}
/* 강의실 팝업 */
#poplayer_class {
  width: 90%;
  max-width: 500px;
}
/* 강의실 신청 경고 팝업 */
#apply_alert_poplayer {
  width: 90%;
  max-width: 350px;
  background-color: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  z-index: 101;
}

.apply_pop_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.apply_pop_content {
  margin: 0 auto;
  padding-top: 50px;
  text-align: center;
  font-size: 15px;
  color: #333333;
}
.pop_btn_wrap {
  overflow: hidden;
  width: 330px;
  margin: 0 auto;
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
  justify-content:space-around;
}
.encoding_back{
  border:0;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  padding:0px;
  background: rgba(0,0,0,0.6);
}
.encoding_div {
  margin-top: calc(50% - 40px);
}
.encoding {
    -webkit-animation: encoding 0.5s; /* Chrome, Safari, Opera */
    -webkit-animation-iteration-count: infinite; /*Végtelen újrajátszás */
    -webkit-animation-timing-function: linear;
    -moz-animation: encoding 0.5s; /*Mozilla*/
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
     animation: encoding 0.5s; /*Explorer*/
     animation-iteration-count: infinite;
     animation-timing-function: linear;
}
@-webkit-keyframes encoding{
  from   {  -webkit-transform: rotate(0deg); }
  to   {  -webkit-transform: rotate(360deg); }
}

@-moz-keyframes encoding{
  from   {  -moz-transform: rotate(0deg); }
  to   {  -moz-transform: rotate(360deg); }
}

@keyframes encoding {
  from   {  transform: rotate(0deg); }
  to   {  transform: rotate(360deg); }
}
/********** 과목소개 본문(course_content) **********/
.content_section { /* 사이즈 구분용  */ /*원래 4.6875vw  */
  overflow: hidden;
  padding-left: 5.6vw;
  padding-right: 5.6vw;
}
.content_section>div {
  max-width: 1132px;
  width: 100%;
  margin: 0 auto;
  padding-top: 60px;
  padding-bottom: 80px;
}
.course_video {
  overflow: hidden;
  clear: both;
  position: relative;
}
.course_video>iframe {
  width: 100%;
  height: 529px;
}
.enrol_grid {
  margin: 0;
  padding: 0;
  list-style: none;
}
.enrol_grid_col {
  margin-bottom: 55px;
}
.enrol_subject {
  padding-top: 25px;
  padding-bottom: 20px;
  text-align: left;
  vertical-align: top;
  font-family: "Noto Sans Korean";
  font-weight: 500;
  font-size: 22px;
  color: #333;
  line-height: 1;
}
.enrol_content {
  border-top: 1px solid #b2b2b2;
/*  border-bottom: 1px solid #d4d4d4; */
  padding: 0px 0px 0px 0px;
  word-break: break-word;
}
.enrol_content_right {
  border-top: 1px solid #b2b2b2;
/*  border-bottom: 1px solid #d4d4d4; */
}
.enrol_content2 {
  border-top: 1px solid #b2b2b2;
  padding: 30px 0px;  
  height: 87px;
}
.enrol_text {
  width: 100%;
  text-align: left;
  margin: 0;
  padding: 0;
  font-size: 16px;
  line-height: 1.6
}
.enrol_text2 {
  float: left;
  width: 50%;
  text-align: left;
  margin: 0;
  padding: 0;
  font-size: 16px;
  line-height: 1.6 
}
.enrol_text > img,
.enrol_text > span,
.enrol_text2 > img,
.enrol_text2 > span {
  display: inline;
  vertical-align:middle;
}
.enrol_completed {
  width: 180px;
  font-size: 17px;
  font-weight: 500;
  line-height: 1;
  margin-top: 10px;
  padding: 45px 0px;
  background-color: #d4d4d4;
}
.enrol_sub_grid {
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
}
.enrol_sub_grid ol {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.enrol_sub_grid_col {
  width: 100%;
/*  border-bottom: 1px solid #d4d4d4; */
  padding: 20px 0px;
}
.enrol_sub_grid_col:last-child {
  border-bottom: 0px
}
.enrol_profile {
  width: 100px;
  text-align: center;
}
.enrol_profile>div.photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: inline-block;
  background-size: cover;
  background-position: center;
}
.enrol_prof_name {
  line-height: 1;
  /* margin-top: 16px; */
}
.enrol_professor, .enrol_curriculum {
  padding-left: 30px;
  text-align: left;
  color: #333;
  font-size: 14px;
  line-height: 1.6
}
.enrol_prof_name>span {
  font-weight: 500;
  font-size: 20px
}
.enrol_prof_dept {
  margin-top: 10px;
}
.enrol_prof_history_name {
  margin-top: 30px;
  font-weight: 500;
}
.enrol_prof_history {
  margin-top: 20px;
  line-height: 1.4;
}
.offer_univ {
  width: 190px;
  height: 70px;
}
.offer_univ>img {
  width: 100%;
  border: 1px solid #ddd;
}
/*********************수강후기**********************/
.review_section { /* 수강후기 배경 */
  padding: 0px;
  background-color: #eeeeee;
}
.review_content { /* 세션 안에서 이루워질 div 틀 */
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding-top: 80px;
  padding-bottom: 100px;
}
.review_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
     -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
     -ms-flex-direction: row;
  flex-direction: row;
}
.review_base_container {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
}
.move {
  -ms-flex-preferred-size: 80px;
  flex-basis: 80px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  line-height: 587px;
}
.move>img {
  vertical-align: middle;
}
.prev {
  margin-right: 40px;
}
.next {
  margin-left: 40px;
}
.reviews {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.review {
  width: 350px;
  height: 260px;
  background-color: #fff;
  margin-right: 15px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  margin-bottom: 15px;
  padding: 25px;
  cursor: pointer;
}
.review:nth-child(3n) {
  margin-right: 0px;
}
.review_detail {
  border-bottom: 1px solid #ccc;
  width: 100%;
  overflow: hidden;
  padding-bottom: 20px;
}
.review_detail_pop {
  border-bottom: 1px solid #ccc;
  width: 460px;
  clear: both;
  overflow: hidden;
  margin: 20px 60px 30px 60px;
  float: left;
  padding-bottom: 30px;
}
.review_writer {
  font-family: "Noto Sans Korean";
  font-size: 19px;
  font-weight: 500;
  float: left;
  margin-left: 10px;
  padding-top: 5px;
  line-height: 1;
}
.review_comment {
  padding-top: 20px;
  text-align: justify;
  height: 152px;
  font-size: 14px;
  color: #333;
  line-height: 1.6;
  overflow: hidden;
}
.review_comment_pop {
  text-align: justify;
  min-height: 150px;
  font-size: 14px;
  color: #333;
  line-height: 1.5;
  float: left;
  width: 460px;
  margin: 0px 60px 0px 60px;
}
.review_date {
  float: right;
  font-size: 13px;
  line-height: 1;
  color: #999;
}
.review_date_pop {
  float: left;
  text-align: right;
  font-size: 11px;
  color: #999;
  height: 19px;
  width: 460px;
  margin: 0px 60px 50px 60px;
}
.star {
  position: relative;
  top: 2px;
  width: 14px
}
.review_star>img {
  position: relative;
  width: 14px;
}
.review_star {
  padding-top: 5px
}
.profile_img {
  float: left;
  width: 30px;
  height: 30px;
  border-radius: 50%;
}
.review_title {
  font-family: "Noto Sans Korean";
  font-size: 40px;
  margin-bottom: 40px;
}
.review_info {
  float: left;
  font-size: 14px;
  margin-bottom: 20px;
}
.reviews_grid {
  width: 1080px;
  overflow: hidden;
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
}
.reviews_grid_col {
  width: 350px;
  margin: 9px 0px;
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
.review_stat {
  width: 350px;
  height: 260px;
  margin-right: 15px;
  margin-bottom: 15px;
  padding: 5px 15px;
}
.review_stat > .review_total_stat{
  position: relative;
  font-size: 0;
  margin-bottom: 20px;
}
.review_stat > .review_total_stat > div{
  display: inline-block;
}
.review_stat .review_avg_score {
  font-family: "Noto Sans Korean";
  font-size: 30px;
  line-height: 1;
  margin-right: 10px;
}
.review_stat .review_avg_star>img {
  position: relative;
  width: 20px;
  margin: 0 2px;
}
.review_stat .review_total_cnt {
  font-family: 'Malgun Gothic', verdana, AppleGothic;
  font-size: 16px;
  line-height: 1;
  color: #666;
  margin-left: 5px;
  position: relative;
  bottom: 4px;
}
.review_stat > .review_score_stat {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  height: 30px;
}
.review_stat > .review_score_stat > div:first-child {
  font-family: "Noto Sans Korean";
  font-size: 16px;
  color: #666;
  line-height: 1;
  margin-right: 10px;
  width: 30px;
}
.review_stat > .review_score_stat div.review_score_progress_wrap {
  width: calc(100% - 90px);
  height: 30px;
  background-color: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  position: relative;
}
.review_stat > .review_score_stat div.review_score_progress {
  position: relative;
  height: 30px;
  background-color: #fecd4c;
}
.review_stat > .review_score_stat div.review_score_cnt {
  position: absolute;
  height: 30px;
  font-family: 'Malgun Gothic', verdana, AppleGothic;
  font-size: 14px;
  line-height: 30px;
  text-indent: 10px;
  text-align: left;
  color: #666;
  top: 0px;
}
.review_stat > .review_score_stat > div:last-child {
  font-family: 'Malgun Gothic', verdana, AppleGothic;
  font-size: 14px;
  color: #666;
  line-height: 1;
  margin-left: 10px;
  width: 40px;
  text-align: left;
}
/********** 수강신청 결과(apply_result) **********/
.course {
  position: relative;
  width: 100%;
  padding-top: 63px;
  padding-bottom: 80px;
  background-size: 100% 100%;
  background-color: #eeeeee;
  background-repeat: no-repeat;
}
.course_body {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  color: #333;
}
.course_content {
  position: relative;
  padding: 30px 5px;
  margin: 0 5px;
  background-color: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
.course_apply_msg {
  padding-bottom: 40px;
  font-size: 0;
}
.course_apply_msg > img {
  position: relative;
  top: 2px;
  margin-right: 10px;
}
.course_apply_msg > span {
  position: relative;
  font-size: 20px;
  font-family: "Noto Sans Korean";
  line-height: 1;
}
.course_apply_img {
  width: 200px;
  height: 150px;
  display: inline-block;
  background-size: cover;
  background-position: center;
}
.course_apply_info {
  padding: 20px 0 30px 0;
  font-family: "Noto Sans Korean";
  line-height: 1;
}
.course_apply_info > div:first-child {
  font-size: 20px;
}
.course_apply_info > div:nth-child(2) {
  padding-top: 10px;
  font-size: 0;
}
.course_apply_info > div:nth-child(2) > span {
  font-size: 16px;
}
.course_apply_info > div:nth-child(2) > span:nth-child(n+2) {
  margin-left: 5px;
}
.course_apply_border {
  width: 95%;
  max-width: 350px;
  margin: 0 auto;
  border-top: 1px solid #ccc;
}
.course_apply_txt {
  padding: 20px 0;
  font-family: 'Malgun Gothic', verdana, AppleGothic;
  font-size: 15px;
  line-height: 1.4;
  word-break: keep-all;
}
.course_apply_share {
  padding-bottom: 30px;
  font-size: 0;
}
.course_apply_share > img:nth-child(n+2) {
  margin-left: 5px;
}
.course_apply_btn_wrap {
  display: flex;
  justify-content:center;
  width: 95%;
  max-width: 350px;
  margin: 0 auto;
}
.course_apply_btn_wrap > div {
  width: 170px;
}
.course_apply_btn_wrap > div:nth-child(2) {
  margin-left: 10px;
}
/********** 버튼(button) **********/
.go_btn, .date_btn {
  margin-right: 10px;
  -webkit-transition: color 1s, background-color 1s, border 1s;
  transition: color 1s, background-color 1s, border 1s;
}
.go_btn:hover {
  color: #555555;
  background-color: #fecd4c;
  border: 1px solid #fecd4c;
}
.date_btn {
  cursor: auto;
}
.review_btn {
  margin: 35px auto 0px auto;
}
.apply_btn_bottom {
  margin: 50px auto 0px auto;
}
.apply_btn {
  width: 19vw;
  max-width: 150px;
  padding: 14px 5%;
}
.course_apply_btn2 {
  width: 19vw;
  max-width: 200px;
  padding: 13.5px 5%;
  font-family: "Noto Sans Korean"; 
  font-weight: 400;
  font-size: 18px;
  border-radius: 3px;
}

.apply_btn_m {
  width: 100%;
}
.review_btn:hover, .apply_btn_bottom:hover, .apply_btn:hover {
  color: #555555;
  background-color: #fecd4c;
}
.interest_btn {
  width: 19vw;
  max-width: 54px;
  height: 54px;
  padding: 14px;
  background-color: #fff;
  border: 1px solid #bbbfd3;
  /* color: #777; */
  text-align: center;
}
.interest_btn:hover {
  border: 1px solid #083e84;
}
#m_heart_btn {
  float: right;
  width: 8.75vw;
  height: 8.75vw;
  color: #777;
  background-size: 100% 100%;
  margin-top: 5.47vw;
}
.m_heart_off {
  background: url('/el/images/m/course/heart_off.png');
}
.m_heart_on {
  background: url('/el/images/m/course/heart_on.png');
}
.button.apply_btn.m_hide {
  margin: 80px auto 100px auto
}
.pc_hide,
.pc_hide_flex {
  display: none
}
.pc_inline_block {
  display: inline-block;
}
.m_inline_block {
  display: none;
}
.course_bottom_info {
  margin-bottom: 15px;
}
.course_bottom_info > .course_list_btn {
  display: inline-block;
  width: 19vw;
  max-width: 180px;
  padding: 11.5px 5%;
  font-family: "Noto Sans Korean"; 
  font-weight: 400;
  font-size: 18px;
  background-color: #aaa;
  color: #fff;
  border: 2px solid #aaa;  
}
.course_bottom_info > .course_alert_btn {
  display: inline-block;
  width: 19vw;
  max-width: 180px;
  padding: 11.5px 5%;
  font-family: "Noto Sans Korean"; 
  font-weight: 400;
  font-size: 18px;
  background-color: red;
  color: #fff;
  border: 2px solid red;  
}
.course_bottom_info > .course_apply_bottom_btn {
  margin-left: 5px;
  display: inline-block;
  width: 19vw;
  max-width: 180px;
  padding: 11.5px 5%;
  font-family: "Noto Sans Korean"; 
  font-weight: 400;
  font-size: 18px;
}
.course_apply_bottom_btn:hover {
  background-color: #fff;
  color: #083e84;
}
.course_list_btn:hover {
  background-color: #fff;
  color: #aaa;
}
.course_alert_btn:hover {
  background-color: #fff;
  color: red;
}
/********** 팝업 추가분 **********/
.course_popup_top {
  height: 50px;
  padding: 15px;
}
.course_popup_title {
  font-size: 20px;
  font-family: "Noto Sans Korean";
  line-height: 1;
  display: inline-block;
  color: #ffffff;
}
.course_popup_close_btn {
  width: 20px;
  height: 20px;
}
.course_apply_alert {
  font-size: 18px;
  font-family: "Noto Sans Korean";
  margin: 15px auto 30px auto;
}
/********** 미디어 쿼리 **********/
@media screen and (max-width: 1260px) {
  .review,
  .review_stat {
    width: 31.9%
  }
}
@media screen and (max-width: 950px) {
  .review {
    width: 48.4%;
    padding: 20px
  }
  .review:nth-child(3n) {
    margin-right: 15px;
  }
  .review:nth-child(2n) {
    margin-right: 0px;
  }
  .move {
    line-height: 862px
  }
  .review_stat {
    width: 48.4%;
    padding: 5px 10px;
  }
}
@media screen and (max-width: 640px) {
  .review_star>img, .star {
    width: 4.0625vw;
    top: 0.3vw
  }
  .apply_btn {
    margin-top: 0.46875vw
  }
  .review_btn {
    margin: 9.375vw auto 4.6875vw auto;
    width: 90.625vw;
    max-width: 580px;
    padding: 4.3vw 0px;
  }
  .due_date {
    margin: 7.1875vw 0px 6.25vw 0px;
    font-size: 3.4375vw; /* 22px */
    padding: 0.9375vw 1.875vw;
  }
  .course_certificate {
    font-size: 3.75vw;
    padding-top: 3.9vw;
    margin-bottom: 3.9vw
  }
  .course_top_info  {
    height: 7.8125vw;
    font-size: 3.4375vw;
    line-height: 4.6875vw;
    padding: 1.5625vw; 
  }
  .m_share {
    margin: auto;
    margin-top: 2.6875vw;
    margin-bottom: 5.625vw;
  }
  .m_share>img {
    width: 10.94vw;
    vertical-align: middle;
  }
  .review_title {
    margin-bottom: 11vw;
    font-size: 7.8125vw;
  }
  .review_content { /* 세션 안에서 이루워질 div 틀 */
    max-width: 640px;
    padding-top: 12.5vw;
    padding-bottom: 15.625vw
  }
  .review_base_container {
    width: 100%;
  }
  .review_section {
    padding-left: 4.6875vw;
    padding-right: 4.6875vw;
  }
  .reviews {
    width: 100%;
    display: block;
    overflow: hidden;
  }
  .review {
    width: 100%;
    height: 49.21875vw;
    margin-right: 0px;
    margin-bottom: 3.125vw;
    padding: 4.6875vw;
    cursor: pointer;
  }
  .review_info {
    font-size: 2.8125vw;
    margin-bottom: 4.6875vw
  }
  .review_detail {
    padding-bottom: 3.125vw
  }
  .profile_img {
    width: 6.25vw;
    height: 6.25vw;
  }
  .review_star {
    padding-top: 0.78125vw;
    line-height: 1
  }
  .review_writer {
    font-size: 4.375vw; /* 28px */
    padding-top: 0.78vw;
    margin-left: 1.5625vw;
  }
  .review_comment {
    padding-top: 3.125vw;
    font-size: 3.4375vw; /* 22px */
    height: 24.21875vw;
    line-height: 1.6;
  }
  .review_date {
    margin-top: 3.125vw;
    font-size: 3.125vw; /* 20px */
    height: 3.125vw; /* 20px */
  }
  #poplayer_apply {
    width: 90.625vw;
  }
  .apply_pop_content {
    padding-top: 10.9375vw;
    font-size: 3.59375vw;
  }
  .pop_btn_wrap {
    width: 62.5vw;
    padding-top: 9.375vw;
    padding-bottom: 9.375vw;
  }
  .go_btn, .date_btn {
    margin-right: 1.5625vw;
  }
  .content_section {
    padding-left: 4.6875vw;
    padding-right: 4.6875vw;
  }
  .content_section>div {
    padding-top: 7.8125vw;
  }
  .course_video>iframe {
    max-height: 350px;
  }
  .enrol_grid_col {
    width: 100%;
  }
  .enrol_subject {
    font-size: 4.0625vw;
    padding-top: 4.6875vw;
    padding-bottom: 3.125vw
  }
  .enrol_content {
    padding: 4.6875vw 0px;
  }
  .enrol_content2 {
    padding: 4.6875vw 0px;
    height: 14.375vw;
  }
  .enrol_text {
    overflow: hidden;
    word-wrap: break-word;
    font-size: 3.125vw
  }
  .enrol_text2 {
    overflow: hidden;
    word-wrap: break-word;
    font-size: 3.125vw
  }
  .enrol_professor, .enrol_curriculum {
    padding-left: 3.125vw
  }
  .offer_univ {
    width: 37.5vw;
    height: 13.75vw;
  }
  .enrol_prof_name>span, .enrol_prof_history_name>span {
    font-size: 3.6vw
  }
  .enrol_prof_name {
    font-size: 3.6vw;
    margin-top: 1.875vw;
  }
  .enrol_prof_dept {
    margin-top: 1.5625vw;
    font-size: 3.125vw
  }
  .enrol_prof_history {
    margin-top: 4.6875vw;
    font-size: 3.125vw
  }
  .enrol_profile {
    width: 7.8125vw;
  }
  .enrol_profile>div.photo {
    width: 7.8125vw;
    height: 7.8125vw;
  }
  #poplayer_review {
    width: 90.625vw;
  }
  .review_detail_pop {
    width: 71.875vw;
    margin: 3.125vw 9.375vw 4.6875vw 9.375vw;
    padding-bottom: 4.6875vw;
  }
  .review_comment_pop {
    width: 71.875vw;
    font-size: 3.59375vw;
    margin: 0vw 9.375vw 0vw 9.375vw;
  }
  .review_date_pop {
    width: 71.875vw;
    margin: 0vw 9.375vw 7.8125vw 9.375vw;
  }
  .review_stat {
    width: 100%;
    height: 48.4375vw;
    margin-right: 0;
    margin-bottom: 7.8125vw;
    padding: 0 3.125vw;
  }
  .review_stat > .review_total_stat{
    margin-bottom: 3.125vw;
  }
  .review_stat .review_avg_score {
    font-size: 6.25vw;
    margin-right: 3.125vw;
  }
  .review_stat .review_avg_star>img {
    width: 4.6875vw;
    margin: 0 0.78125vw;
  }
  .review_stat .review_total_cnt {
    font-size: 3.75vw;
    margin-left: 2.34375vw;
    bottom: 0.9375vw;
  }
  .review_stat > .review_score_stat {
    margin-bottom: 2.1875vw;
    height: 5.625vw;
  }
  .review_stat > .review_score_stat > div:first-child {
    font-size: 3.75vw;
    margin-right: 2.34375vw;
    width: 6.25vw;
  }
  .review_stat > .review_score_stat div.review_score_progress_wrap {
    width: calc(100% - 21.5625vw);
    height: 5.625vw;
  }
  .review_stat > .review_score_stat div.review_score_progress {
    height: 5.625vw;
  }
  .review_stat > .review_score_stat div.review_score_cnt {
    height: 5.625vw;
    font-size: 3.125vw;
    line-height: 5.625vw;
    text-indent: 2.34375vw;
  }
  .review_stat > .review_score_stat > div:last-child {
    font-size: 3.4375vw;
    margin-left: 2.34375vw;
    width: 10.625vw;
  }
  .apply_btn_m {
    margin-top: 3.125vw;
  }
  .course {
    padding-top: 14.53125vw;
    padding-bottom: 21vw;
  }
  /* 새로 모바일 적용 */
  .class_top
  ,.class_top_title {
    height: 28.125vw;
    max-height: 180px;
  }
  .course_background_setting {
    display: none;
  }
  .class_top>div {
    height: 28.125vw;
    max-height: 180px;    
  }
  .content_section>.course_m_content {
    padding-top: 3.125vw;
    padding-bottom: 4.6875vw;
  }
  .content_section>.course_btn_content {
    padding-top: 0px;
    padding-bottom: 7.8125vw;
  }
  .course_name {
    font-size: 4.375vw;
    margin-bottom: 3.90625vw;
  }
  .course_name > a {
    max-width: calc(100% - 6.25vw);
  }
  .course_name > .course_credit {
    top: 0.3125vw;
    font-size: 3.125vw;
  }
  .course_name > .course_credit > img {
    width: 4.375vw;
    height: 4.0625vw;
  }
  .course_name > .course_credit > span {
    margin-left: 0.9375vw;
  }
  .course_sub_name {
    margin-bottom: 3.125vw;
    font-size: 3.125vw;
    text-overflow: ellipsis;
    width: 75%;
  }
  .course_wrap_price > span {
    font-size: 4.0625vw;
  }
  .course_sub_name > .course_top_left {
    font-size: 3.4375vw;
  } 
  .course_line {
    margin-bottom: 3.125vw;
  }
  .course_btn_content > div {
    display: inline-block;
    vertical-align: middle;
  }
  .course_apply_btn2 {
    padding: 4.4vw 0;
    /* width: 73.5625vw; */
    width: calc(100% - 12.5vw - 8px);
    max-width: 500px;
    font-size: 4.0625vw;
    line-height: 1;
    text-align: center;
  }
  .course_btn_app {
    width: 12.5vw;
    height: 12.5vw;
  }
  .course_m_backline {
    position: absolute;
    left: 0px;
    bottom: 0px;
    height: 3.125vw;
    background-color: #ddd;
  }
  .course_bottom_info > .m_hide {
    display: none !important;
  }
  /* 끝 */
}
@media screen and (max-width: 480px) {
  .due_date {
    font-size: 14px;
    margin: 34.5px auto 24.5px auto;
    padding: 3px 6px;
  }
  #m_heart_btn {
    margin-top: 23px;
    width: 37.2px;
    height: 37.2px;
  }
  .course_top_info  {
    height: 33.2px;
    font-size: 16px;
    line-height: 20px;
    padding: 6.6px;
  }
  .apply_btn {
    margin-top: 2px;
    padding: 8px 0px;
    width: 78px;
  }
  .enrol_grid_col {
    margin-bottom: 20px;
  }
  .enrol_subject {
    font-size: 17px;
    padding-top: 20px;
    padding-bottom: 13px;
  }
  .enrol_text,
  .enrol_text2 {
    font-size: 13px;
  }
  .enrol_prof_history_name>span {
    font-size: 14px;
  }
  .enrol_prof_name {
    font-size: 14px;
    margin-top: 9px;
  }
  .enrol_prof_name>span {
    font-size: 16px
  }
  .enrol_prof_dept {
    font-size: 13px;
    margin-top: 6.6px;
  }
  .enrol_prof_history {
    margin-top: 20px;
    font-size: 13px;
  }
  .enrol_profile {
    width: 35px;
  }
  .enrol_profile>div.photo {
    width: 35px;
    height: 35px;
  }
  .enrol_content {
    padding: 10px 0px;
  }
  .enrol_content2 {
    padding: 20px 0px;
    height: 62px;
  }
  .review_content {
    padding-top: 53px;
    padding-bottom: 66px;
  }
  .review_title {
    font-size: 33px;
    margin-bottom: 47px;
  }
  .review_star>img, .star {
    top: 1.275px;
    width: 15px;
  }
  .review_info {
    font-size: 12px;
    margin-bottom: 20px;
  }
  .review_btn {
    margin: 40px auto 20px auto;
    padding: 18.3px 0px;
  }
  .review {
    height: 193px;
    padding: 20px;
    margin-bottom: 15px;
  }
  .review_detail {
    padding-bottom: 15px;
  }
  .profile_img {
    width: 26.5px;
    height: 26.5px;
  }
  .review_writer {
    font-size: 18px;
    padding-top: 3.3px;
    margin-left: 6.6px;
  }
  .review_star {
    padding-top: 3.3px;
  }
  .review_comment {
    padding-top: 15px;
    font-size: 14px;
    height: 82px;
  }
  .review_comment_pop {
    font-size: 14px;
  }
  .review_date {
    margin-top: 15px;
    font-size: 12px;
    height: 13px;
  }
  .apply_pop_content {
    padding-top: 46.5px;
    font-size: 15px;
  }
  .pop_btn_wrap {
    padding: 40px 0;
    width: 260px;
  }
  .date_btn, .ok_btn, .go_btn {
    width: 100px;
  }
  .review_stat {
    height: 210px;
    margin-right: 0;
    margin-bottom: 20px;
    padding: 0 10px;
  }
  .review_stat > .review_total_stat{
    margin-bottom: 15px;
  }
  .review_stat .review_avg_score {
    font-size: 26px;
    margin-right: 15px;
  }
  .review_stat .review_avg_star>img {
    width: 20px;
    margin: 0 3px;
  }
  .review_stat .review_total_cnt {
    font-size: 16px;
    margin-left: 10px;
    bottom: 4px;
  }
  .review_stat > .review_score_stat {
    margin-bottom: 10px;
    height: 24px;
  }
  .review_stat > .review_score_stat > div:first-child {
    font-size: 16px;
    margin-right: 10px;
    width: 32px;
  }
  .review_stat > .review_score_stat div.review_score_progress_wrap {
    width: calc(100% - 76px);
    height: 24px;
  }
  .review_stat > .review_score_stat div.review_score_progress {
    height: 24px;
  }
  .review_stat > .review_score_stat div.review_score_cnt {
    height: 24px;
    font-size: 13px;
    line-height: 24px;
    text-indent: 10px;
  }
  .review_stat > .review_score_stat > div:last-child {
    font-size: 14px;
    margin-left: 10px;
    width: 44px;
  }
  .apply_btn_m {
    margin-top: 15px;
  }
  .course_popup_top {
    height: 40px;
    padding: 12px;
  }
  .course_popup_title {
    font-size: 16px;
  }
  .course_popup_close_btn {
    width: 16px;
    height: 16px;
  }
  /* 새로 들어가는 모바일 버전 */
  .class_top
  ,.class_top_title {
    height: 150px;
    max-height: 150px;
  }
  .class_top > div {
    height: 150px;
    max-height: 150px;    
  }
  .content_section>.course_m_content {
    padding-top: 15px;
    padding-bottom: 20px;
  }
  .content_section>.course_btn_content {
    padding-bottom: 35px;
  }
  .course_name {
    font-size: 24px;
    margin-bottom: 18px;
  }
  .course_name > a {
    max-width: calc(100% - 45px);
    overflow: visible;
    text-overflow: clip;
    white-space: normal;
  }
  .course_name > .course_credit {
    top: 3px;
    font-size: 18px;
  }
  .course_name > .course_credit > img {
    width: 21px;
    height: 19.5px;
  }
  .course_name > .course_credit > span {
    margin-left: 3px;
  }
  .course_sub_name {
    font-size: 14px;
    margin-bottom: 15px;
    text-overflow: ellipsis;
    width: 90%;
  }
  .course_wrap_price > span {
    font-size: 20px;
  }
  .course_line {
    margin-bottom: 15px;
  }
  .course_sub_name > .course_top_left {
    font-size: 16px;
  }
  .course_btn_app {
    width: 60px;
    height: 60px;
  }
  .course_apply_btn2 {
    padding: 20px 5%;
    width: calc(100% - 70px);
    max-width: 370px;
    font-size: 20px;
  }
  .course_m_backline {
    height: 15px;
  }
  .m_share>img {
    width:52px;
  }
  /* 끝 */
}
@media screen and (min-width: 641px) {
  .enrol_professor {
    width: inherit
  }
  .pc_hide,
  .pc_hide_flex {
    display: none;
  }
}
/************* 연수 신청 ************/
.content_section2>div {
  max-width: 940px;
  width: 100%;
  margin: 0 auto;
  padding-top: 60px;
  padding-bottom: 10px;
}
.register_title {
  /* margin: 40px auto 60px auto; */
  padding: 40px 0 60px 0;
  font-size: 36px;
  font-weight: 500;
  text-align: center;
  line-height: 1.25;
}
.register_sub_title {
  font-size: 22px;
  font-weight: 500;
  text-align: left;
  line-height: 1;
}
.register_top {
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
.register_top_title {
  padding: 0 30px;
  height: 60px;
  line-height: 60px;
  border-bottom: 2px solid #d1d6df;
}
.register_top_contents {
  position: relative;
  padding: 30px 30px 40px 30px;
  font-size: 0;
}
.register_course_img {
  position: relative;
  width: 200px;
  height: 145px;
  display: inline-block;
  vertical-align: top;
}
.register_course_img > .img {
  width: 100%;
  height: 100%;
  display: inline-block;
  background-size: cover;
  background-position: center;
}
.register_course_info {
  position: relative;
  display: inline-block;
  width: calc(100% - 40px);
  margin-left: 20px;
  vertical-align: top;
}
.register_course_info .course_info_top {
  position: relative;
  text-align: left;
  font-size: 14px;
  line-height: 1;
}
.register_course_info .course_info_title {
  position: relative;
  display: flex;
  align-items: center;
  height: 20px;
  font-family: "Noto Sans Korean";
  font-size: 20px;
  font-weight: 500;
}
.register_course_info .course_info_title > span {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  position: relative;
  line-height: normal;
  top: -1px;
}
.register_course_info .course_info_title > span:first-child {
  margin-right: 5px;
}
.register_course_info .course_info_prof {
  margin-top: 10px;
  width: 100%;
  max-width: calc(100% - 120px);
  color: #777;
}
.register_course_info .course_info_price {
  display: inline-block;
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 20px;
  line-height: 24px;
  font-family: "Noto Sans Korean";
}
.register_course_info .course_info_price > span {
  font-size: 24px;
  line-height: 1;
}
.register_course_info .course_normal_bar {
  overflow: hidden;
  margin: 12px 0 13px 0;
  border-top: 1px solid #d1d6df;
}
.register_course_info .course_info_bottom {
  position: relative;
  text-align: left;
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;
}
.register_course_info .course_info_bottom > div {
  font-size: 0;
  display: flex;
  align-items: center;
}
.register_course_info .course_info_bottom span {
  font-size: 14px;
  line-height: 25px;
}
.register_course_info .course_info_bottom .title {
  font-weight: 500;
  margin-right: 10px;
}
.register_menu {
  font-size: 0;
  line-height: 1;
  margin-top: 20px;
  padding: 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
.register_menu_item {
  display: inline-block;
  width: 50%;
  height: 60px;
  text-align: center;
  font-size: 20px;
  line-height: 60px;
  color: #bbbfd3;
  font-family: "Noto Sans Korean";
}
.register_menu .register_item_on {
  color: #083e84;
  background-color: #ffffff;
}
.register_bottom {
  width: 100%;
  background-color: #ffffff;
  padding: 60px;
  margin-top: 20px;
}
.register_bottom .register_sub_title {
  margin-top: 120px;
  margin-bottom: 20px;
}
.register_list {
  position: relative;
  margin: 0;
  padding: 0;
  border-top: 1px solid #222;
}
.register_list_item {
  position: relative;
  text-align: left;
  border-bottom: 1px solid #ddd;
  display: flex;
  min-height: 68px;
}
.register_list_item > .title {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 28px;
  width: 240px;
  background-color: #F2F2F2;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
}
.register_list_item > .title2 {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 28px;
  width: 240px;
  background-color: #F2F2F2;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
}
.register_list_item > .info {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: calc(100% - 240px);
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 400;
  color: #555;
}
.register_list_item .info_contents {
  position: relative;
  overflow: hidden;
}
.register_list_item .info_contents:nth-child(n+2) {
  margin-top: 10px;
}
.register_list_item .info_title {
  display: inline-block;
  font-weight: 500;
}
.register_list_item .info_text,
.register_list_item .info_text3 {
  display: inline-block;
}
.register_list_item .info_text:nth-child(n+2) {
  margin-left: 10px;
}
.register_list_item .info_text2 {
  display: inline-block;
  font-size: 16px;
  font-family: "Noto Sans Korean";
  line-height: 1;
}
.register_list_item .info_flex:nth-child(n+2) {
  margin-top: 16px;
}
.register_list_item .info_price {
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
}
.register_list_item .info_price > .total {
  font-size: 20px;
}
.register_list_item .bill_price {
  font-size: 20px;
}
.register_list_item .info_price.dc_price{
  color: #888;
}
.register_list_item .info_btn {
  margin-right: -20px;
  width: 70px;
  height: 40px;
  border: 2px solid #aaa;
  font-size: 16px;
  line-height: 36px;
  font-weight: 500;
  text-align: center;
  padding: 0;
  background-color: #aaa;
  color: #ffffff;
}
.register_list_item .info_btn:nth-child(n+2) {
  margin-top: 10px;
}
.register_list_item .site_color_btn {
  background-color: #083e84; 
  border: 2px solid #083e84; 
  color: #fff
}
.register_list_item .info_btn:hover {
  background-color: #ccc;
  border: 2px solid #ccc;
}
.register_list_item .site_color_btn:hover {
  background-color: #0088FF;
  border: 2px solid #0088FF;
}
.register_list_item > .companion_info {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: calc(100% - 240px);
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 400;
  color: #555;
  flex-grow: 1;
}
.register_list_item > .companion_info > .info_contents {
  width: 100%;
}
.register_list_item > .companion_info > .info_contents .companion_info_input {
  padding: 3px;
  width: 25%;
}
.register_list_btn {
  width: 160px;
  padding: 11px 0;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.1;
  text-align: center;
}
.register_question_icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url('/el/images/course/register/question_gray.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin-left: 5px;
}
.register_question_icon:hover {
  background-image: url('/el/images/course/register/question_blue.png');
}
.register_non_use {
  display: inline-flex;
  align-items: center;
  position: absolute;
  top: 5px;
  right: 0px;
}
.register_non_use > label {
  font-size: 14px;
  margin-left: 10px;
  line-height: 1;
}
.register_checkbox {
  position: absolute;
  top: 0;
  opacity: 0;
  z-index: 5;
  width: 20px;
  height: 20px;
}
.register_checkbox_img_off {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(/el/images/course/register/unchecked.png);
  z-index: 3;
  background-repeat: no-repeat;
}
.register_checkbox_img_on {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(/el/images/course/register/checked.png);
  z-index: 3;
}
.register_checkbox_img_disabled {
  background: url(/el/images/course/register/disabled-unchecked.png);
}
.register_contents {
  position: relative;
  width: 100%;
  padding-top: 20px;
  border-top: 1px solid #d1d6df;
  text-align: left;
}
.register_tel_input,
.register_regnum_input {
  width: 80px;
  height: 40px;
  padding: 8px 10px;
  border: 2px solid #d1d6df;
  font-size: 14px;
  text-align: center;
  vertical-align: middle;
}
.register_regnum_input:nth-child(n+2) {
  margin-left: 20px;
}
.register_regnum_input:nth-child(4) {
  width: 100px;
}
.register_regnum_ex {
  display: inline-block;
  margin-left: 30px;
  font-size: 14px;
  vertical-align: middle;
  color: #999;
}
.register_intro_wrap {
  margin-top: 120px;
}
.register_intro {
  border: 1px solid #ddd;
  width: 100%;
  padding: 28px;
  text-align: left;
  background-color: #F2F2F2;
}
.register_intro_title {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
}
.register_intro > p {
  margin: auto;
  font-size: 15px;
  font-weight: 400;
  color: #888;
  line-height: 24px;
}
.register_group_select_wrap {
  margin-top: 50px;
}
.register_group_select {
  font-size: 0;
  line-height: 1;
  padding: 0;
}
.register_group_select > label {
  position: relative;
  display: inline-block;
  width: calc(50% - 5px);
  height: 54px;
  border: 2px solid #d1d6d9;
  text-align: center;
  font-size: 16px;
  line-height: 25px;
  color: #777;
  font-family: "Noto Sans Korean";
  padding: 12.5px 20px;
}
.register_group_select > label:nth-child(2) {
  margin-left: 10px;
}
.register_group_select > label > input[type="radio"] {
  position: absolute;
  top: calc(50% - 6.5px);
  left: 20px;
  z-index: -1;
  opacity: 0;
}
.register_group_select > label > div {
  display: inline-block;
}
.register_group_select > label > .icon {
  position: absolute;
  left: 20px;
  width: 25px;
  height: 25px;
  background-image: url('/el/images/course/register/select_icon_off.png');
  background-repeat: no-repeat;
}
.register_group_select > label.register_item_on {
  border: 2px solid #083e84;
  background-color: #083e84;
  color: #ffffff;
}
.register_group_select > label.register_item_on > .icon {
  background-image: url('/el/images/course/register/select_icon_on.png');
}
.register_list_btn_wrap {
  margin-top: 16px;
  position: relative;
  height: 40px;
}

.register_input {
  width: 180px;
  height: 40px;
  padding: 8px 20px;
  border: 2px solid #d1d6df;
  font-size: 14px;
  background-color: #FFF;
}
.register_textarea {
  padding: 8px 20px;
  border: 2px solid #d1d6df;
  font-size: 14px;
}
.register_point_btn {
  display: inline-block;
  width: 80px;
  height: 40px;
  margin-left: 5px;
  padding: 0;
  font-size: 16px;
  line-height: 40px;
  font-family: "Noto Sans Korean";
  border: none;
  text-align: center;
}
.register_checkbox_wrap {
  position: relative;
  display: flex;
  text-align: left;
  align-items: center;
  margin-top: 20px;
}
.register_checkbox_wrap > label {
  display: inline-block;
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
  margin-left: 10px;
}
.register_btn_wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 80px;
  margin-bottom: 50px;
}
.register_btn_wrap2 {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
}
.register_btn_wrap > button:nth-child(n+2),
.register_btn_wrap2 > button:nth-child(n+2) {
  margin-left: 10px;
}
.register_cancel_btn {
  display: inline-block;
  width: 160px;
  padding: 11px 0;
  font-size: 17px;
  font-weight: 400;
  text-align: center;
  line-height: 1.1;
  color: #ffffff;
  border: 1px solid #aaa;
  background-color: #aaa;
}
.register_cancel_btn:hover {
  background-color: #fff;
  color: #555;
  border: 1px solid #aaa;
}
.register_normal_btn,
.register_apply_btn {
  display: inline-block;
  width: 160px;
  padding: 11px 0;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.1;
  text-align: center;
}
.register_attention {
  margin-top: 16px;
  font-size: 14px;
  text-align: left;
  line-height: 1;
  color: #999;
}
.bank_woori_img {
  display: inline-block;
  width: 84px;
  height: 18px;
  background-image: url('/el/images/course/register/bank_woori.png');
  background-repeat: no-repeat;
  vertical-align: bottom;
}
.register_popup {
  padding: 30px;
  background-color: #ffffff;
  z-index: 101;
}
#add_user_poplayer {
  width: 100%;
  max-width: 400px;
}
#receipt_poplayer {
  width: 100%;
  max-width: 520px;
}
#poplayer_update_userinfo,
#poplayer_group_question,
#poplayer_regnum_question,
#poplayer_user_list {
  width: 100%;
  max-width: 600px;
}
.register_popup_close {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
}
.register_popup_title {
  width: 100%;
  margin-top: 30px;
  margin-bottom: 40px;
  font-size: 30px;
  font-family: "Noto Sans Korean";
  line-height: 1;
  font-weight: 500;
  text-align: center;
}
.register_popup_title2 {
  width: 100%;
  margin-bottom: 30px;
  font-size: 24px;
  font-family: "Noto Sans Korean";
  line-height: 1;
  font-weight: 500;
  text-align: left;
}
.register_popup_contents {
  position: relative;
  width: 100%;
  margin-bottom: 40px;
}
.register_popup_contents > p {
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
  word-break: keep-all;
}
.register_popup_contents > p > .p_title {
  font-family: "Noto Sans Korean";
  margin-right: 10px;
}
.register_popup_contents > .regnum_info {
  margin-top: 20px;
  font-size: 14px;
  word-break: keep-all;
  color: #FF0000;
}
.register_popup_contents .register_list_item > .title2 {
  width: 120px;
}
.register_popup_contents .register_list_item > .info {
  width: calc(100% - 120px);
}
.register_popup_contents > #add_user_msg {
  position: absolute;
  display: none;
  width: 100%;
  height: 20px;
  color: #ff0000;
  text-align: center;
  font-family: "Noto Sans Korean";
  font-size: 14px;
  line-height: 20px;
}
.register_popup_contents > .add_user_input_wrap {
  margin-top: 30px;
  margin-bottom: 20px;
}
.register_popup_contents > .add_user_input_wrap > input {
  display: block;
  margin: 0 auto;
  width: 90%;
  max-width: 300px;
  height: 50px;
  padding: 13px;
  border: 2px solid #d1d6df;
  font-size: 14px;
}
.register_popup_contents > .add_user_input_wrap > input:nth-child(n+2) {
  margin-top: 10px;
}
.register_popup_btn_wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.register_popup_btn {
  display: inline-block;
  width: 180px;
  padding: 17px 0;
  font-size: 18px;
  font-family: "Noto Sans Korean";
  line-height: 20px;
  height: 54px;
  text-align: center;
}
.register_popup_btn2 {
  display: inline-block;
  width: 300px;
  padding: 17px 0;
  font-size: 18px;
  font-family: "Noto Sans Korean";
  line-height: 20px;
  color: #ffffff;
  background-color: #aaa;
  height: 54px;
  text-align: center;
}
.register_result_contents {
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  padding: 50px 50px 60px 50px;
}
.register_result_icon {
  display: inline-block;
  width: 150px;
  height: 150px;
  background-image: url('/el/images/course/register/apply_result.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  margin: 0 auto;
}
.register_result_title {
  margin-top: 30px;
  margin-bottom: 60px;
  font-size: 26px;
  font-family: "Noto Sans Korean";
  font-weight: 500;
  line-height: 1;
}
.register_popup_contents > .receipt_sign {
  margin-top: 50px;
  margin-bottom: 40px;
  font-size: 14px;
  text-align: center;
}
.register_popup_contents > .receipt_sign > div:nth-child(n+2) {
  margin-top: 20px;
}
.info_contents > .pc_hide {
  display: none;
}
@media screen and (max-width: 640px) {
  .content_section2 {
    padding: 0px;
  }
  .content_section2>div {
    padding-top: 0;
    padding-bottom: 0;
/*     padding-bottom: 9.375vw; */
    background-color: #FFF;
  }
  .register_title {
    /* margin-bottom: 9.375vw; */
    padding-bottom: 9.375vw;
    font-size: 7.1875vw;
    background-color: #F8F8F8;
  }
  .register_top {
    margin: auto 3.75vw;
    width: calc(100% - 7.5vw);
  }
  .register_top_title {
    padding: 2.65625vw 3.125vw;
    height: auto;
    line-height: 1;
  }
  .register_sub_title {
    font-size: 4.0625vw;
  }
  .register_top_contents {
    padding: 3.125vw;
  }
  .register_course_info {
    width: 100%;
    margin-left: auto;
  }
  .register_course_info .course_info_title {
    height: auto;
    font-size: 4.375vw;
    line-height: 1;
  }
  .register_course_info .course_info_prof {
    margin-top: 4.6875vw;
    font-size: 3.125vw;
    font-weight: 500;
  }
  .register_course_info .course_info_price {
    line-height: 1;
    font-size: 4.0625vw;
    bottom: 7px;
  }
  .register_course_info .course_normal_bar {
    margin: 3.125vw auto 2.8125vw auto;
  }
  .register_course_info .course_info_bottom {
    font-size: 3.4375vw;
  }
  .register_course_info .course_info_bottom span {
    font-size: 3.4375vw;
    line-height: 1.5;
  }
  .register_course_info .course_info_bottom .title {
    margin-right: 1.5625vw;
  }
  .register_menu {
    margin-top: 4.6875vw;
  }
  .register_menu_item {
    padding: 3.90625vw; 
    height: auto;
    font-size: 4.375vw;
    line-height: 1;
  }
  .register_bottom {
    width: calc(100% - 7.5vw);
    padding: 4.6875vw 3.125vw 3.125vw 3.125vw;
    margin: 4.6875vw 3.75vw 0 3.75vw;
  }
  .register_bottom .register_sub_title {
    margin-top: 12.5vw;
    margin-bottom: 2.65625vw;
  }
  .register_list_item > .title {
    width: 24.4375vw;
    font-size: 16px;
    padding: 26px 10px;
  }
  .register_list_item > .info {
    width: calc(100% - 24.4375vw);
    padding: 3.125vw;
  }
  .register_list_item .info_title {
    font-size: 3.125vw;
  }
  .register_list_item .info_text,
  .register_list_item .info_text2 {
    font-size: 3.125vw;
  }
  .register_list_item .info_contents:nth-child(n+2) {
    margin-top: 1.5625vw;
  }
  .register_list_item .info_btn {
    position: absolute;
    right: 0px;
    bottom: calc(50% - 3.90625vw);
    margin-right: 0px;
    padding: 2.03125vw;
    width: 12.5vw;
    height: auto;
    font-size: 3.125vw;
    line-height: 1;
  }
  .register_non_use {
    top: 1.25vw;
  }
  .register_non_use > label {
    font-size: 2.8125vw;
  }
  .register_tel_input, .register_regnum_input {
    padding: 1.25vw 1.5625vw;
    width: 20%;
    height: auto;
    font-size: 3.125vw;
  }
  .register_regnum_input:nth-child(n+2) {
    margin-left: 3.125vw;
  }
  .register_regnum_input:nth-child(4) {
    width: 26%;
  }
  .register_regnum_ex {
    margin-top: 2.34375vw;
    margin-left: 0px;
    font-size: 2.8125vw;
    line-height: 1;
  }
  .register_list_item .info_price {
    font-size: 4.375vw;
  }
  .register_list_item .info_text3 {
    font-size: 2.8125vw;
  }
  .register_input {
    padding: 1.25vw 3.125vw;
    font-size: 16px;
    width: calc(100% - 18.75vw);
    height: auto;
    vertical-align: middle;
  }
  .register_input:not(:last-child){margin-bottom: 10px;}
  .register_point_btn {
    margin-left: 0px;
    padding: 2.1875vw;
    font-size: 3.75vw;
    width: 18.75vw;
    height: auto;
    line-height: 1;
    vertical-align: middle;
  }
  .m_price_total {
    margin-top: 3.125vw;
    text-align: right;
  }
  .info_contents > .m_hide {
    display: none !important;
  }
  .info_contents > .pc_hide {
    display: inline-block;
  }
  .register_intro {
    margin-top: 12.5vw;
    padding: 3.125vw;
  }
  .register_intro_title {
    margin-bottom: 3.125vw;
    font-size: 3.75vw;
  }
  .register_intro_title > .icon {
    margin-right: 5px;
  }
  .register_intro_title > div {
    font-size: 3.75vw;
    line-height: 1;
  }
  .register_intro > p {
    font-size: 3.125vw;
    line-height: 1.4;
  }
  .register_intro > p:nth-child(n+2) {
    margin-top: 0px;
  }
  .register_checkbox_wrap {
    display: inline-block;
    margin-top: 4.6875vw;
  }
  .register_checkbox_img_off,
  .register_checkbox_img_on {
    vertical-align: top;
  }
  .register_checkbox_wrap > label {
    width: calc(100% - 30px);
    font-size: 3.125vw;
    margin-left: 0px;
    line-height: 1;
  }
  .register_btn_wrap {
    margin-top: 12.5vw;
    margin-bottom: 7.8125vw;
  }
  .register_normal_btn, .register_apply_btn,
  .register_cancel_btn {
    padding: 3.75vw;
    width: calc(50% - 10px);
    height: auto;
    font-size: 4.375vw;
    line-height: 1;
  }
  .register_group_select_wrap {
    margin-top: 15.625vw;
  }
  .register_list_btn_wrap {
    margin-top: 3.125vw;
    height: 9.375vw;
  }
  .register_list_btn {
    padding: 2.8125vw;
    width: 25vw;
    height: auto;
    font-size: 3.125vw;
    line-height: 1;
  }
  .bank_woori_img {
    display: block;
    width: 23.125vw;
    height: 5vw;
    background-image: url('/el/images/m/new/bank.png');
    background-size: 100% 100%;
  }
  .info_contents > .bank_text {
    /* margin-top: 1.5625vw; */
  }
  .register_attention {
    margin-top: 3.125vw;
    font-size: 2.8125vw;
  }
  .register_result_contents {
    padding: 9.375vw 3.75vw;
  }
  .register_result_title {
    margin-top: 4.6875vw;
    margin-bottom: 9.375vw;
    font-size: 4.375vw;
  }
  .register_btn_wrap2 {
    margin-top: 15.625vw;
  }
  .register_list_item .price_text {
    font-size: 4.0625vw;
  }
  .register_result_icon {
    width: 31.25vw;
    height: 31.25vw;
    background-image: url('/el/images/m/new/apply_result.png');
  }
}
/* 팝업 */
.pop_header_top {
  padding: 20px;
  font-size: 16px;
  font-weight: 500;
}
.add_detail_pop {
  padding: 10px;
  margin: auto 20px;
  line-height: 1.5;
  background: #f0f2f7;
}
.add_input_pop {
  margin: 20px;
}
.add_input_pop > input {
  padding: 5px;
  width: 100%;
}

/******************* 직무연수, 자율연수 *************************/
.search_bar_content {
  width: 100%;
}
.search_bar_content2 {
  font-size: 18px;
  line-height: calc(1.25em + 2px);
  width: 95%;
  max-width: 450px;
  height: 80px;
  margin: 0 auto
}
.course_list_search {
  display: inline-block;
  position: relative;
  margin: auto;
  width: 100%;
  height: 56px;
  border-radius: 3px;
  border: 1px solid #aaa;
  background-color: #fff;
}
.course_list_search > input {
  position: absolute;
  top: 0;
  left: 0;
  padding: 14px 24px;
  width: calc(100% - 24px);
  border: 0;
  font-size: 17px;
  font-weight: 400;
  line-height: 1;
}
.search_gray > input {
  color: #888;
}
.course_list_search > .search_img {
  position: absolute;
  top: 15px;
  right: 24px;
  width: 24px;
  height: 24px;
  background-image: url('/el/images/main/search-gray.png');
  background-size: 100% 100%;
}
.search_black > input {
  color: #333;
}
.course_list_search > .search_img:hover {
  position: absolute;
  top: 16px;
  right: 24px;
  width: 24px;
  height: 24px;
  background-image: url('/el/images/main/search-black.png');
  background-size: 100% 100%;
}
.course_list_edge {
  padding-bottom: 0px;
}
/*************** 20191007 ***************/
.search_category_title {
  margin-top: 48px;
  margin-bottom: 28px;
  font-size: 18px;
  font-weight:500;
  line-height: 1;
  color: #333;
}
.search_filter_list,
.search_filter_list2 {
  position: relative;
  margin: auto;
  width: 100%;
}
.search_filter_list2 > ul > li {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  color: #333;
  border: 1px solid #ddd;
  border-left: 0;
}
.search_filter_list2 > ul > li:first-child {
  border-left: 1px solid #ddd;
}
.search_filter_list > ul > li {
  width: 100%;
  color: #333;
}
.search_cate_title2 {
  padding: 20px;
  margin-bottom: 24px;
  font-size: 0;
  font-weight: 400;
  background-color: #F8F8F8;
  position: relative;
}
.search_cate_item {
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 20px;
  width: 25%;
  position: relative;
  padding: 0px;
  font-size: 0px;
}
.search_cate_item2 {
  padding: 0px 20px;
  margin-bottom: 20px;
  width: 100%;
  position: relative;
  font-size: 0;
  font-weight: 400;
}
.search_cate_item2:last-child {
  margin-bottom: 24px;
}
.search_cate_title2 > div,
.search_cate_title2 > label {
  display: table-cell;
  vertical-align: middle;
  font-size: 17px;
}
.search_cate_item > div,
.search_cate_item2 > div {
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  font-size: 14px;
}
.search_cate_item > label, 
.search_cate_item2 > label {
  display: inline-block;
  vertical-align: middle;
  font-size: 14px;
  width: calc(100% - 30px);
}
.program_total_cnt {
  margin-bottom: 32px;
  font-size: 14px;
  font-weight: 500;
  color: #444;
}
.course_list_tag {
  margin-top: 10px;
}
.course_list_tag > div {
  display : inline-block;
  vertical-align: middle;
  margin-right: 7px;
}
.course_list_tag > .right {
  position: absolute;
  top: 2px;
  right: 0px;
  margin-right: 0;
  font-size: 16px;
  color: #888;
}
.course_list_tag_sub {
  display: inline-block;
  padding: 4.5px 6px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  color: #fff;
  border-radius: 2px;
}
.online_color {
  padding: 3.5px 6px;
  color: #888;
  border: 1px solid #888;
  background-color: #fff;
}
.course_list_bottom_border {
  margin-top: 20px;
  overflow: hidden;
  border-top: 1px solid #ddd; 
}
.category_color1 {color: #F47800; border: 1px solid #F47800;}
.category_color2 {color: #BB2020; border: 1px solid #BB2020;}
.category_color3 {color: #074973; border: 1px solid #074973;}
.category_color4 {color: #02AAB0; border: 1px solid #02AAB0;}

.companion_phone {
  width: 50px;
}
@media screen and (max-width: 640px) {
  .course_list_edge {
    padding-bottom: 0px;
  } 
}
@media screen and (max-width: 480px) {
  .course_list_search {
    margin: auto;
    width: 100%;
    height: 30px;
    border-radius: 1.5px;
  }
  .course_list_search>img {
    width: 30px;
  }
  .register_list_item > .companion_info {
    display: block;
    width: 100%;
  }
  .companion_phone {
    width: 30%;
  }
  .register_list_item > .companion_info > .info_contents .companion_info_input {
    width: 50%;
  }
  .register_popup_contents .register_list_item > .info {
    width: 100%;
  }
  .content_section{
    padding-left: 12px;
    padding-right: 12px;
  }
}
.course_grid2 {
  position: relative;
  clear: both;
  margin: 0px auto;
  padding: 7.5px 0px 17.5px 0px;
  list-style: none;
  font-size: 14px;
  display: box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap
}
.course_cate_list {
  padding: 11px;
  margin: 2.5px;
  line-height: 1;
  border: 2px solid #d1d6df;
  width: 20%;
  max-width: 176px;
}
.course_cate_list:nth-child(5n+1) {
  margin-left: 0px;
}
.course_cate_list:nth-child(5n) {
  margin-right: 0px;
}
.category_course_name {
  font-size: 13px;
  text-align: left;
  color: #777;
  line-height: 1;
}
.cate_total {
  display : inline-block;
  text-align: left;
  font-size: 16px;
  margin: 30px 0 20px 0;
  height: 20px;
}
.cate_total > .lecture_cnt:hover{
  color: #0088FF;
}
.lecture_cnt_on{
  color: #0088FF;
}
/* 과목 페이지 부분 */
.course_cate_title {
  margin: 30px auto;
  font-family: "Noto Sans Korean";
  font-size: 20px;  
}
.title_arrow {
  margin-left: 10px;
  padding-bottom: 3px;
}
.course_stat_list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.course_stat_list > li {
  margin-left: 40px;
}
.course_stat_list > li:first-child {
  margin-left: 10px;
}
.grid3 {
  font-size: 14px;
  max-width: 600px;
}
.option_more {
  text-align: right;
  font-size: 14px;
  color: #777;
  line-height: 1;
  height: 40px;
}
.option_more > div > span {
  display: inline-block;
  vertical-align: middle;
}
.option_more_btn {
  margin-left: 8px;
  width: 16px;
  height: 16px;
  background-image: url('/el/images/course/new/more.png');
  background-size: 100% 100%;
}
.option_more_btn2 {
  margin-left: 8px;
  width: 16px;
  height: 16px;
  background-image: url('/el/images/course/new/more_over.png');
  background-size: 100% 100%;
}
.option_fold_btn {
  margin-left: 8px;
  width: 16px;
  height: 16px;
  background-image: url('/el/images/course/new/fold.png');
  background-size: 100% 100%;  
}
.option_fold_btn2 {
  margin-left: 8px;
  width: 16px;
  height: 16px;
  background-image: url('/el/images/course/new/fold_over.png');
  background-size: 100% 100%;
}
.cate_total > .select_padding {
  position: relative;
  top: -28px;
}
.course_img2 {
  position: relative;
  float: left;
  width: 255px;
  height: 175px;
  margin-right: 20px;
  z-index: 8; 
  overflow: hidden;
  background-color: #9A9EA8; 
}
.course_new_img {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 9;
}
.course_img2>.img {
  width: 100%;
  height: 100%;
  display: inline-block;
  background-size: cover;
  background-position: center;
  transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
}
.course_list2 {
  position: relative;
  width: 100%;
  padding: 8px 25px 8px 8px;
  margin-bottom: 16px;
  background-color: #fff;
}
.course_list2:hover {
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.05);
}
.course_list_top, .course_list_bottom {
  position: relative;
  text-align: left;
  font-size: 0;
  line-height: 1;
}
.course_list_title {
  position: relative;
  display: flex;
  margin-top: 15px;
  font-family: "Noto Sans Korean";
  font-size: 18px;
  font-weight: 500;
  line-height: 1.1;
  position: relative;
  width: calc(100% - 370px);
}
.course_list_title > .course_list_title_nm {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin-right: 5px;
  position: relative;
}
.course_list_title > .right {
  position: absolute;
  top: 0px;
  right: -94px;
  font-size: 20px;
}
.course_list_sub_title {
  display: inline-block;
  position: relative;
  width: calc(100% - 215px);
  border-bottom: 1px solid #d1d6df;
}
.course_list_icon {
  position: relative;
  top: 10px;
  margin-left: 5px;
}
.course_list_text {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: 10px;
  margin-top: 20px;
  margin-bottom: 16px;
  color: #777;
}
.course_list_sub {
  color: #666;
  padding: 0px 0px 0px 10px;
}
.course_list_sub:first-child {
  padding: 0;
}
.course_list_target {
  position: absolute;
  right: 0;
  top: 14px;
  font-size: 0;
}
.course_list_target > div {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 13px;
  font-size: 14px;
  font-family: "Noto Sans Korean";
  color: #fff;
  line-height: 1;
}
.course_list_target > div:nth-child(n+2) {
  margin-left: 8px;
}
.course_list_day {
  display: inline-block;
  padding-top: 12px;
}
.course_list_time {
  display: inline-block;
  padding-top: 12px;
  margin-left: 20px;
}
.course_list_etc {
  display: inline-block;
  padding-top: 12px;
  margin-left: 20px;
}
.course_list_day>img, .course_list_time>img {
  width: 2.8125vw;
  max-width: 18px;
  min-width: 12px;
}
.course_list_day>span,
.course_list_time>span,
.course_list_etc>span {
  vertical-align: 3.5px;
  margin-left: 4px;
  line-height: 1
}
.course_list_register {
  padding-top: 20px;
  line-height: 1.4;
}
.course_list_lecture {
  padding: 20px 0px;
  overflow: hidden;
}
.course_list_lecture > ul {
  padding: 0px;
  margin: 0px;
}
.lecture_col {
  margin-bottom: 12px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
  color: #333;
}
.lecture_col:last-child {
  margin-bottom: 0;
}
.lecture_col2 {
  position: relative;
  max-width: 31%;
  white-space: nowrap;
}
.lecture_col > div,
.lecture_col > span {
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  color: #444;
}
.lecture_col2 > span {
  display: inline-block;
  vertical-align: middle;
}
.lecture_col > img,
.lecture_col2 > img {
  vertical-align: middle;
  margin-right: 5px;
}
.lecture_col2 > .course_list_lecture_text {  
  max-width: calc(100% - 27px);
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: normal;
}
/* 직무,자율 연수 목록 관련 */
.select_box_content {
  display: inline-flex;
  font-size: 0;
  text-align: left;
}
.course_search {
  display: flex;
}
/********* 과정분류 내부 과정리스트 **********/
.course_category_list {
  position: relative;
  width: 100%;
  padding: 35px;
  margin-bottom: 12px;
  background-color: #fff;
}
.course_category_list:hover {
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.05);
}
.course_category_title {
  margin-bottom: 28px;
  font-size: 20px;
  font-weight: 500;
  color: #333;
}
.course_category_text {
  font-size: 15px;
  font-weight: normal;
  color: #555;
  line-height: 24px;
}
.course_category_total {
  margin-top: 68px;
  margin-bottom: 28px;
  font-size: 20px;
  font-weight: 500;
}
.course_category_info_text {
  margin-top: 68px;
  margin-bottom: 100px;
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  color: #444;
}
/********************* 개설과정 목록표  *************************/
.course_category_grid {
  position: relative;
  clear: both;
  margin: 0px auto;
  padding: 0px;
  list-style: none;
  font-size: 14px;
  display: box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
}
.course_category_grid_col {
  position: relative;
  width: calc(33.33% - 15px);
  margin: 20px 20px 0 0;
  background-color: #fff;
  border: 1px solid #E8E8E8;
  border-radius: 3px;
}
.course_category_grid_col:hover {
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.05);
}
.course_category_grid_col:nth-child(1),
.course_category_grid_col:nth-child(2),
.course_category_grid_col:nth-child(3) {
  margin-top: 0px;
}
.course_category_grid_col:nth-child(3n) {
  margin-right: 0px;
}
.course_category_top {
  position: relative;
  float: none;
  padding: 0;
  width: 100%;
  height: 10.28vw;
  min-height: 105.3px;
  overflow: hidden;
}
.course_category_top > .img {
  width: 100%;
  height: 100%;
  display: inline-block;
  background-size: cover;
  background-position: center;
  background-color: #9A9EA8;
}
.course_category_top > .img > img{
  width: 100%;
}
.course_category_main {
  text-align: left;
  padding: 28px;
}
.course_category_list_title {
  margin-bottom: 28px;
  height: 46px;
  font-weight: 500;
  font-size: 18px;
  color: #333;
  line-height: 23px;
  overflow: hidden;
}
.course_category_list_text {
  font-size: 15px;
  font-weight: 400;
  color: #555;
}
.course_category_grid_col > .course_category_list_text {
  height: 46px;
  overflow: hidden;
}

/****************** 20191010 ******************************/
/* 수강신청 */
.course_add_pop_wrap {
  margin-top: 32px;
  margin-bottom: 48px;
  position: relative;
  height: 46px;
}
.course_add_pop_title {
  font-size: 15px;
  font-weight: 400;
  color: #555;
  line-height: 1.1;
}
.course_add_pop_btn {
  float: right;
  margin-top: -31px;
  width: 160px;
  padding: 14.5px 0px;
  font-size: 17px;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  color: #fff;
  background-color: #222;
}
.info_radio_check {
  position: relative;
  margin-bottom: 10px;
}
.radio_uncheck::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 0;
  width: 20px;
  height: 20px;
  background-image: url(/el/images/icon/radio_off.png);
}
.radio_check::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 0;
  width: 20px;
  height: 20px;
  background-image: url(/el/images/icon/radio_on.png);
}
.info_radio_check > input {
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 20px;
  opacity: 0;
}
.info_radio_check > label {
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
  line-height: 1;
}
.info_radio_check:first-child {
  margin-top: 16px;
}
.info_radio_check:last-child {
  margin-bottom: 16px;
}
/*********** 20191015 *************/
/* 결제 */
.course_pay_btn {
  position: absolute;
  top: calc(50% - 20px);
  right: 0;
  width: 70px;
  height: 40px;
  font-size: 16px;
  line-height: 36px;
  font-weight: 500;
  text-align: center;
  padding: 0;
  color: #ffffff;
}
.course_pay_btn:hover {
  background-color: #339cf8;
}
/**************** select 박스용 ********************/
.select_box {
  display: inline-block;
  position: relative;
  margin-top: 40px;
  width: 200px;
  height: 40px;
  font-size: 13px;
  color: #555;
  background-color: #fff;
  border: 1px solid #D8DDE2;
  border-radius: 3px;
  /* background-image: url(/po/images/main/footer/selectbox_arrow.png); */
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px;
  cursor: default;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.select_box2 {
 /*  background-image: url(/po/images/main/footer/selectbox_arrow_2.png); */
}
.select_name {
  width: 100%; 
  padding: 12px 16px 13px 16px;
  text-align: left;
  line-height: 1;
}
.select_box > ul {
   display: none;
   position: absolute;
   margin:auto;
   left: -1px;
   padding:0px;
   width: calc(100% + 2px);
   background-color:#fff;
   border: 1px solid #D8DDE2;
   border-radius: 0px;
   z-index: 99;
}
.select_item {
  padding: 12px 16px 13px 16px;
  text-align: left;
  line-height: 1;
}
.select_title_name {
  position: absolute;
  top: -30px;
  left: -2px;
  font-size: 13px;
  color: #777;
}
.select_padding {
  height: 40px;
  border: 1px solid #D8DDE2; 
}
.select_padding > .select_name {
  padding: 11.5px 15px;
}
.select_padding > ul {
  top: 38px;
  left: -1px;
  width: calc(100% + 2px);
  border: 1px solid #D8DDE2;
}
@media screen and (max-width: 900px) {
  .content_section2 > div{
    padding-top: 10px;
  }
  .register_bottom{padding: 25px;}
  .register_bottom .register_sub_title,
  .register_intro_wrap{
    margin-top: 50px;
  }
  /* .content_section2 > div{padding-top: 20px;} */
  .register_btn_wrap{
    margin-top: 60px;
    margin-bottom: 40px;
  }
  .register_list_item > .title,
  .register_list_item > .title2{
    padding: 26px 25px;
    width: 30%;
    font-size: 16px;
  }
}
@media screen and (max-width: 800px) {
  .course_cate_list {
    width: 24%;
  }
  .course_cate_list:nth-child(5n+1) {
    margin-left: 2.5px;
  }
  .course_cate_list:nth-child(4n+1) {
    margin-left: 0px;
  }
  .course_cate_list:nth-child(4n) {
    margin-right: 0px;
  }
  .course_cate_list:nth-child(5n) {
    margin-right: 2.5px;
  }
}
@media screen and (max-width: 640px) {
  .course_search {
    display: block;
  }
  .course_grid2 {
    font-size: 3.4375vw;
    padding: 1.71875vw 0px 3.125vw 0px;
  }
  .course_stat_list > li {
    margin-left: 6.25vw;
  }
  .course_stat_list > li:first-child {
    margin-left: 0;
  }
  .course_cate_list {
    width: 32%;
    max-width: 200px;
  }
  .course_cate_list2:first-child {
    padding: 0px;
    padding-left: 3.125vw;
  }
  .course_cate_title {
    font-size: 3.125vw;  
  }
  .cate_total {
    font-size: 3.75vw;
    margin: 7.03125vw 0 3.90625vw 0;
  }  
  .search_bar_content {
    /* height: 30vw; */
  }
  .select_box_content {
    width: 100%;
    display: inline-block;
  }
  .course_select {
    margin-bottom: 20px;
    width: calc(50% - 5px);
    height: 8.75vw;
  }
  .course_select:nth-child(n+2) {
    margin-left: 10px;
  }
  .select_title_name {
    font-size: 3.125vw;
    top: -35px;
  }
  .select_name {
    font-size: 3.4375vw;
    padding: 2.34375vw 3.125vw;
  }
  .select_box > ul {
    top: 8.125vw;
    font-size: 3.4375vw;
  }
  .select_item {
    padding: 2.34375vw 3.125vw;
  }
  .course_list_search {
    /* margin-bottom: 4.6875vw; */
    width: 100%;
  }
  .course_list_search>img {
    width: 8.75vw;
  }
  .option_more {
    font-size: 3.4375vw;
    height: 8.59375vw;
  }
  #category_cont {
    position: relative;
    top: -1.5625vw;
  }
  .category_course_name {
    font-size: 3.125vw;
  }
  .course_cate_list {
    margin: 0.78125vw;
  }
  .course_cate_list:nth-child(4n+1) {
    margin-left: 0.78125vw;
  }
  .course_cate_list:nth-child(3n+1) {
    margin-left: 0px;
  }
  .course_cate_list:nth-child(3n) {
    margin-right: 0px;
  }
  .course_cate_list:nth-child(4n) {
    margin-right: 0.78125vw;
  }
  .cate_total > .select_padding {
    top: -7.03125vw;
    width: 30%;
    height: 8.4375vw;
  }
  .select_padding > .select_name {
    padding: 2.34375vw 3.125vw;
  }
  .course_list2 {
    padding: 42.1875vw 3.125vw 3.125vw 3.125vw;
    margin-bottom: 12px;
/*     margin-bottom: 3.125vw; */
  }
  .course_img2 {
    position: absolute;
    top: 0px;
    left: 0px;
    float: none;
    width: 100%;
    height: 39.0625vw;
  }
  .course_new_img {
    top: 0px;
    left: 0px;
  }
  .course_list_title {
    display: inline-block;
    margin-top: 7px;
	width: 100%;
    font-size: 4.375vw;
  }
  .course_list_title > .course_list_title_nm {
    overflow: visible;
    text-overflow: clip;
    white-space: normal;
  }
  .course_list_title > .right {
    float: none;
    margin-top: 10px;
    position: relative;
    top: 0;
    right: 0;
    font-size: 4.0625vw;
  }
  .course_list_sub_title {
    width: 100%;
  }
  .course_list_target {
    top: calc(14px + 0.3125vw);
  }
  .course_list_target > div {
    padding: 0.9375vw 1.875vw;
    border-radius: 2.34375vw;
    font-size: 2.8125vw;
  }
  .course_list_target > div:nth-child(n+2) {
    margin-left: 1.5625vw;
  }
  .course_list_top, .course_list_bottom {
    font-size: 3.125vw;
  }
  .course_list_register {
    padding-top: 3.125vw;
    height: 11.5625vw;
  }
  .lecture_col > img { 
    height: 4.0625vw;
  }
  .right > .img_1 {
    width: 11.5625vw;
    height: 4.8675vw;
  }
  .right > .img_2 {
    width: 8.75vw;
    height: 4.8675vw;
  }
  #m_next {
    float: right;
    padding: 3.125vw 4.6875vw;
    width: 50%;
    background-color: #083e84;
    text-align: right;
  }
  #m_prev {
    float: left;
    padding: 3.125vw 4.6875vw;
    width: 50%;
    background-color: #fff;
    text-align: left;
  }
  .search_cate_title2 {
    min-height: 60px;
    padding: 10px;
  }
  .search_cate_item2{
    padding: 0px 10px;
    text-align: justify;
  }
  .select_box {
    margin-top: 4.6875vw;
    height: 8.125vw;
  }
  .course_category_info_text {
    margint-top: 48px;    
  }
  .course_category_total {
    margin-top: 48px;
  }
  .course_category_grid_col {
    margin: 15px 15px 0 0;
    width: calc(50% - 8px);
  }
  .course_category_grid_col:nth-child(3n) {
    margin-top: 15px;
    margin-right: 15px;
  }
  .course_category_grid_col:nth-child(n+3) {
    margin-top: 15px;
  }
  .course_category_grid_col:nth-child(1),
  .course_category_grid_col:nth-child(2) {
    margin-top: 0px;
  }
  .course_category_grid_col:nth-child(2n) {
    margin-right: 0px;
  }
  .course_category_top {
    height: 150px;
  }
  .m_hide {
    display: none !important;
  }
  .pc_hide {
    display: block;
  }
  .pc_hide_flex {
    display: block;
  }
  .pc_inline_block {
    display: none;
  }
  .m_inline_block {
    display: inline-block;
  }  
  .lecture_col2 {
    max-width: 100%;
  }
  .lecture_col2 > div,
  .lecture_col2 > span {
    display: inline-block;
    vertical-align: middle;
  }
}
@media screen and (max-width: 480px) {
  .content_section2 > div{
    padding-top: 0;
  }
  .course_grid2 {
    font-size: 16px;
    padding: 10px 0px 15px 0px;
  } 
  .course_stat_list > li {
    margin-left: 20px;
  }
  .course_cate_list {
    width: 48%;
  }
  .course_cate_title {
    font-size: 16px;  
  }
  .cate_total {
    font-size: 14px;
    margin: 37.5px 0 15px 0;
  }   
  .title_arrow {
    padding-bottom: 2px;
  }  
  .course_cate_list2 {
    padding: 0px 5px;
    padding-left: 20px;
    margin: 15px 0px;
    line-height: 1;  
  }
  .course_cate_list2:first-child {
    padding-left: 10px;
  }  
  .search_bar_content {
    /* height: 140px; */
  }
  .select_title_name {
    font-size: 14px;
  }
  .course_select {
    height: 40px; 
    margin-bottom: 15px;
  }
  .course_select:nth-child(n+2) {
    margin-left: 10px;
  }
  .select_name {
    font-size: 16px;
    padding: 11px 15px;
  }
  .select_box > ul {
    top: 36px;
    font-size: 16px;
  }
  .select_item {
    padding: 11px 15px;
  }
  .course_list_search {
    /* margin-bottom: 20px; */
    height: 57px;
  }
  .course_list_search>img {
    width: 38px;
  }
  .option_more {
    height: 40px;
    font-size: 16px;
  }
  #category_cont {
    top: 0px;
  }
  .category_course_name {
    font-size: 14px;
  }
  .course_cate_list {
    margin: 5px;
    padding: 10px;
  }
  .course_cate_list:nth-child(n+1) {
    margin-left: 5px;
  }
  .course_cate_list:nth-child(2n+1) {
    margin-left: 0px;
  }
  .course_cate_list:nth-child(2n) {
    margin-right: 0px;
  }
  .course_cate_list:nth-child(3n) {
    margin-right: 5px;
  }
  .cate_total > .select_padding {
    top: -34px;
    width: 40%;
    height: 38px;
  }
  .select_padding > .select_name {
    padding: 10px 10px;
  }
  .cate_total > .select_padding > ul > .select_item {
    padding: 10px;
  }
  .course_img2 {
    margin-right: 0px;
    height: 160px;
  }
  .course_list2 {
    padding: 175px 12px 15px 12px;
  }
  .course_list_top, .course_list_bottom {
    font-size: 14px;
  }
  .course_list_title {
    font-size: 18px;
    width: 100%;
  }
  .course_list_title > span {
    max-width: calc(100% - 50px);
  }
  .course_list_title > .right {
    font-size: 16px;
  }
  .course_list_text {
    margin-top: 15px;
    margin-bottom: 11px; 
  }
  .course_list_icon {
    top: 14px;
  }
  .course_list_target {
    top: 9px;
  }
  .course_list_target > div {
    padding: 5px 10px;
    border-radius: 13px;
    font-size: 14px;
  }
  .course_list_target > div:nth-child(n+2) {
    margin-left: 6px;
  }
  .course_list_register {
    padding-top: 15px;
    height: 55px;
  }
  .course_list_lecture {
    padding: 10px 0px 0px 0px;
    height: auto;
  }
  .lecture_col {
    width: 31%;
  }
  .lecture_col:last-child {
    width: 38%;
  }
  .lecture_col > .course_list_lecture_text {
    margin-right: 0px;
  }
  .lecture_col > img {
    height: 18px;
    margin-right: -1px;
  }
  .right > .img_1 {
    width: 44px;
    height: 18px;
  }
  .right > .img_2 {
    width: 34px;
    height: 18px;
  }
  .course_new_img {
    width: 40px;
    height: 24px;
  }
  #m_next,
  #m_prev {
    padding: 15px 20px;
  }
  #m_next > img,
  #m_prev > img {
    width: 78px;
    height: 15px;
  }
  .register_popup {
    padding: 15px;
  }
  .search_cate_title2 {
    padding: 10px;
    min-height: 100px;
  }
  .search_cate_item2 {
    padding: 0 10px;
  }
  .select_box {
    margin-top: 28px;
    height: 38px;
  }
  .course_category_grid_col {
    margin: 0px;
    width: 100%;
  }
  .course_category_grid_col:nth-child(n+1){
    margin-top: 15px;
    margin-right: 0px;
  }
  .course_category_grid_col:nth-child(1){
    margin-top: 0px;
  }
  .course_category_list {
    padding: 24px;
  }
  .course_category_main {
    padding: 20px;
  }
  .course_category_title {
    font-size: 17px;
  }
  .course_category_list_title {
    margin-bottom: 20px;
    font-size: 14px;
  }
  .course_category_text,
  .course_category_list_text {
    font-size: 12px;
  }
  
  #poplayer_apply {
    width: 90%;
    max-width: 700px;
  }
  /* 수강후기 팝업 */
  #poplayer_review {
    width: 90%;
    width: 580px;
  }
  /* 수강생 추가 */
  #poplayer_add_id_ {
    width: 100%;
    width: 250px;
  }
  /* 강의실 팝업 */
  #poplayer_class {
    width: 90%;
    max-width: 500px;
  }
  .search_cate_title2 > div,
  .search_cate_title2 > label {
    margin-right: 0px;
    font-size: 14px;
  }
  .search_cate_item > div, .search_cate_item2 > div{
    font-size: 13px;
  }
  .search_cate_title2 > label > span {
    text-align: center;
    vertical-align: middle;
  }
  .register_list_item > .title {
    width: 100%;
    font-size: 14px;
    padding: 12px;
  }
  .register_list_item > .title2 {
    width: 100%;
    font-size: 14px;
    padding: 12px;
  }
  .register_bottom {
    width: calc(100% - 7.5vw);
    padding: 4.6875vw 3.125vw 3.125vw 3.125vw;
    margin: 4.6875vw 3.75vw 0 3.75vw;
  }
  .register_bottom .register_sub_title {
    margin-top: 40px;
    margin-bottom: 13px;
  }
  .register_list_item {
    display: block;
  }
  .register_list_item > .info {
    width: 100%;
    padding: 10px;
  }
  .register_list_item .info_title {
    font-size: 14px;
  }
  .register_list_item .info_text,
  .register_list_item .info_text2 {
    font-size: 14px;
  }
  .register_list_item .info_contents:nth-child(n+2) {
    margin-top: 5px;
  }
  .register_list_item .info_text:nth-child(n+2) {
    margin-left: 0px;
  }
  .register_list_item .info_btn {
    position: absolute;
    bottom: 8px;
    margin-right: 0px;
    padding: 6px 0px;
    width: 40px;
    height: auto;
    font-size: 13px;
    line-height: 1;
  }
  .register_non_use {
    top: 4px;
  }
  .register_non_use > label {
    font-size: 13px;
  }
  .register_tel_input, .register_regnum_input {
    padding: 6px 8px;
    width: 30%;
    height: auto;
    font-size: 14px;
  }
  .register_regnum_input:nth-child(n+2) {
    margin-left: 5px;
  }
  .register_regnum_input:nth-child(4) {
    width: 26%;
  }
  .register_regnum_ex {
    margin-top: 10px;
    margin-left: 0px;
    font-size: 13px;
    line-height: 1;
  }
  .register_list_item .info_price {
    font-size: 20px;
  }
  .register_list_item .info_text3 {
    font-size: 13px;
  }
  .register_input {
    padding: 5px 10px;
    font-size: 14px;
    width: calc(100% - 70px);
    height: auto;
  }
  .register_point_btn {
    margin-left: 0px;
    padding: 8px;
    font-size: 14px;
    width: 70px;
    height: auto;
    line-height: 1;
  }
  .m_price_total {
    margin-top: 15px;
    text-align: right;
  }
  .register_intro {
    margin-top: 10px;
    padding: 15px;
  }
  .register_intro_title {
    margin-bottom: 15px;
    font-size: 16px;
  }
  .register_intro_title > .icon {
    margin-right: 5px;
  }
  .register_intro_title > div {
    font-size: 16px;
    line-height: 1;
  }
  .register_intro > p {
    font-size: 13px;
    line-height: 1.4;
  }
  .register_intro > p:nth-child(n+2) {
    margin-top: 0px;
  }
  .register_checkbox_wrap {
    display: inline-block;
    margin-top: 22px;
    width: 100%;
  }
  .register_checkbox_wrap > label {
    width: calc(100% - 30px);
    font-size: 13px;
    margin-left: 0px;
    line-height: 1;
  }
  .register_btn_wrap {
    margin-top: 40px;
    margin-bottom: 30px;
  }
  .register_normal_btn, .register_apply_btn,
  .register_cancel_btn {
    padding: 14px;
    width: calc(50% - 10px);
    height: auto;
    font-size: 18px;
    line-height: 1;
  }
  .register_group_select_wrap {
    margin-top: 75px;
  }
  .register_list_btn_wrap {
    margin-top: 15px;
    height: 38px;
  }
  .register_list_btn {
    padding: 8px;
    width: 70px;
    height: auto;
    font-size: 14px;
    line-height: 1;
  }
  .bank_woori_img {
    display: block;
    width: 110px;
    height: 24px;
    background-image: url('/el/images/m/new/bank.png');
    background-size: 100% 100%;
  }
  .register_attention {
    margin-top: 15px;
    font-size: 13px;
  }  
  .register_group_select > label {
    padding: 14px 5px 14px 30px;
    height: auto;
    line-height: 1;
  }
  .register_group_select > #label_2 {
    padding: 14px 10px;
  }
  .register_group_select > label > .icon {
    left: 10px;
    width: 18px;
    height: 18px;
    background-size: 100% 100%;
  }
  .register_result_contents {
    padding: 40px 3.75vw;
  }
  .register_result_title {
    margin-top: 23px;
    margin-bottom: 40px;
    font-size: 20px;
  }
  .register_btn_wrap2 {
    margin-top: 70px;
  }
  .register_list_item .price_text {
    font-size: 16px;
  }
  .register_result_icon {
    width: 150px;
    height: 150px;
  }
  .register_title {
    font-size: 33px;
  }
  .register_top {
    margin: auto 3.75vw;
    width: calc(100% - 7.5vw);
  }
  .register_top_title {
    padding: 13px 15px;
    height: auto;
    line-height: 1;
  }
  .register_sub_title {
    font-size: 19px;
  }
  .register_top_contents {
    padding: 15px;
  }
  .register_course_info {
    width: 100%;
    margin-left: auto;
  }
  .register_course_info .course_info_title {
    height: auto;
    font-size: 20px;
    line-height: 1;
  }
  .register_course_info .course_info_prof {
    margin-top: 23px;
    font-size: 12px;
    font-weight: 500;
  }
  .register_course_info .course_info_price {
    line-height: 1;
    font-size: 16px;
  }
  .register_course_info .course_normal_bar {
    margin: 15px auto 13px auto;
  }
  .register_course_info .course_info_bottom {
    font-size: 14px;
  }
  .register_course_info .course_info_bottom span {
    font-size: 14px;
    line-height: 1.5;
  }
  .register_course_info .course_info_bottom .title {
    margin-right: 5px;
  }
  .register_menu {
    margin-top: 23px;
  }
  .register_menu_item {
    padding: 19px; 
    height: auto;
    font-size: 20px;
    line-height: 1;
  }
}
.content_course_list {
  margin-top: 60px;
}

/*********** K디지털 *************/
.info_tap_view img{
  width: 100%;
}
.course_wrap {
  position: relative;
  width: calc(33% - 11px);
  margin: 25px 16px 0 0;
  background-color: #fff;
  border-radius: 3px;
  display: inline-block;
  box-shadow: 2px 4px 4px rgba(0, 0, 0, 0.25);
}
.course_wrap:nth-child(3n) {
  margin-right: auto;
}
.course_wrap .course_top {
  position: relative;
  float: none;
  margin: 0;
  width: calc(100%);
  height: 128px;
  overflow: hidden;
}
.course_top > .img {
  width: calc(100% - 0px);
  height: calc(100% - 1px);
  display: inline-block;
  background-size: cover;
  background-position: center;
  background-color: #9A9EA8;
}
.course_main {
  position: relative;
  min-height: 72px;
  overflow: hidden;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  line-height: 23px;
  text-align: left;
  padding: 15px;
}
.course_main_top_sub_text {
  display: inline-block;
  padding: 4.5px 6px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  border-radius: 4px;
}
.category_color_1 {color: #F47800; border: 1px solid #F47800;}
.category_color_2 {color: #BB2020; border: 1px solid #BB2020;}
.category_color_3 {color: #074973; border: 1px solid #074973;}
.category_color_4 {color: #02AAB0; border: 1px solid #02AAB0;}
.category_color_5 {color: #f0f5c3; border: 1px solid #f0f5c3;}
.category_color_6 {color: #f7dabe; border: 1px solid #f7dabe;}
.like {
  width: 29px;
  height: 24px;
  position: absolute;
  top: 15px;
  right: 15px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
.course_main_content {
  position: relative;
  margin: 8px auto;
  height: 80px;
}
.course_main_title {
  position: relative;
  font-size: 17px;
  font-weight: 500;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-align: left;
  display: -webkit-box;
}
.course_tag {
  display: inline-block;
  font-size: 13px;
  font-weight: normal;
  color: #666;
  padding: 0px 8px;
  border: 1px solid #d7d7d7;
  overflow: hidden;
  border-radius: 100px;
  vertical-align: top;
  margin-left: 3px;
}
.course_tag:first-child {
  margin-left: 0;
}
.like.on {
  background-image: url('/el/images/main/like_on.png');
}
.like.off {
  background-image: url('/el/images/main/like_off.png');
}
@media screen and (max-width: 800px){
  .course_wrap {
    width: calc(50% - 11px);
  }
  .course_wrap:nth-child(3n) {
    margin-right: 16px;
  }
  .course_wrap:nth-child(2n) {
    margin-right: auto;
  }
}
@media screen and (max-width: 480px){
  .course_wrap {
    width: 100%;
  }
  .course_wrap:nth-child(n) {
    margin-right: auto;
  }
}