@charset "UTF-8";
#wrap {
  max-width: 1360px;
  padding: 0 20px;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 540px) {
  #wrap {
    padding: 0 10px;
  }
}

/*나의학습실 헤더*/
.top_header {
  background-color: whitesmoke;
  font-size: 14px;
}
.top_header #wrap {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 50px;
}
.top_header #wrap .btn a {
  display: inline-block;
  margin-left: 15px;
  padding: 10px 0;
}
@media (max-width: 500px) {
  .top_header #wrap .btn {
    display: none;
  }
}
.top_header #wrap .logo {
  width: 80px;
  position: absolute;
  left: 50%;
  margin-left: -40px;
  cursor: pointer;
}
.top_header #wrap .logo img {
  width: 100%;
}

.middle_header {
  padding: 20px 0;
  border-bottom: 1px solid #ccc;
}
@media (max-width: 1000px) {
  .middle_header {
    display: none;
  }
}
.middle_header #wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}
.middle_header #wrap .left {
  display: flex;
  align-items: center;
}
.middle_header #wrap .left .logo {
  width: 250px;
  margin-right: 30px;
  cursor: pointer;
}
.middle_header #wrap .left .logo img {
  width: 100%;
}
.middle_header #wrap .left h1 {
  font-size: 30px;
  font-weight: bold;
  line-height: 60px;
}
.middle_header #wrap .right {
  font-weight: 400;
}
.middle_header #wrap .right a {
  padding: 0 15px;
  font-size: 17px;
}
.middle_header #wrap .right a:hover,
.middle_header #wrap .right a.on {
  color: #3a87ef;
}
.middle_header #wrap .right .point {
  color: #fff;
  background-color: #3252a3;
  padding: 5px 14px;
  border-radius: 20px;
}
.middle_header #wrap .right i {
  margin-right: 9px;
}

/*나의학습실 메뉴*/
.mypage_menu {
  position: absolute;
  top: 0;
  width: 220px;
  height: 100%;
  text-align: center;
  background-color: whitesmoke;
  /*depth1*/
}
@media (max-width: 1000px) {
  .mypage_menu {
    width: 100%;
    margin-left: -20px;
    background-color: #fff;
  }
}
.mypage_menu h1 {
  font-size: 30px;
  font-weight: bold;
  margin: 70px 0 45px 0;
}
.mypage_menu .menuicon {
  display: none;
}
@media (max-width: 1000px) {
  .mypage_menu .menuicon {
    display: block;
    position: absolute;
    top: 21px;
    right: 21px;
  }
  .mypage_menu .menuicon i {
    font-size: 20px;
  }
}
.mypage_menu .top_point {
  width: 180px;
  background-color: #2c5db4;
  margin: 0 auto;
  padding: 20px;
  color: #fff;
  border-radius: 22px;
  margin-top: 50px;
}
@media (max-width: 1000px) {
  .mypage_menu .top_point {
    background-color: transparent;
    width: 150px;
    padding: 10px;
    color: #2c5db4;
    margin: 0;
  }
}
.mypage_menu .top_point > div {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.mypage_menu .top_point > div .icon {
  width: 42px;
  height: 42px;
  display: block;
  background-color: #fff;
  border-radius: 50%;
  padding: 4px 0;
  border: 4px solid #aeccf3;
}
.mypage_menu .top_point > div .icon img {
  width: 24px;
}
.mypage_menu .top_point > div .name b {
  font-size: 20px;
}
.mypage_menu p {
  margin-top: 10px;
  line-height: 24px;
}
@media (max-width: 1000px) {
  .mypage_menu p {
    display: none;
  }
}
.mypage_menu > ul {
  margin-top: 50px;
  padding: 0 15px;
}
@media (max-width: 1000px) {
  .mypage_menu > ul {
    margin-top: 0;
    width: 100%;
    z-index: 100;
    top: 99px;
    right: -100%;
    position: fixed;
    opacity: 0;
    background-color: #fff;
  }
}
.mypage_menu > ul > li {
  border-bottom: 1px solid #bcbcbc;
}
@media (max-width: 1000px) {
  .mypage_menu > ul > li {
    background-color: #fff;
  }
}
.mypage_menu > ul > li > a {
  padding: 15px 0;
  display: block;
  position: relative;
}
@media (max-width: 400px) {
  .mypage_menu > ul > li > a {
    padding: 12px 0;
  }
}
.mypage_menu > ul > li > a i {
  position: absolute;
  right: 10px;
  top: 50%;
  margin-top: -8px;
}
@media (max-width: 1000px) {
  .mypage_menu > ul > li > ul {
    background-color: aliceblue;
  }
  .mypage_menu > ul > li > ul > li {
    padding: 10px 0;
  }
}
@media (max-width: 1000px) and (max-width: 400px) {
  .mypage_menu > ul > li > ul > li {
    padding: 3px 0;
  }
}
.mypage_menu > ul > li:first-of-type {
  border-top: 1px solid #bcbcbc;
}
.mypage_menu > ul > li.on {
  background-color: #3a87ef;
  /*depth2*/
}
.mypage_menu > ul > li.on > a {
  color: #fff;
}
.mypage_menu > ul > li.on > ul {
  background-color: whitesmoke;
  text-align: left;
  padding-left: 40px;
  padding-bottom: 20px;
  padding-top: 5px;
}
@media (max-width: 1000px) {
  .mypage_menu > ul > li.on > ul {
    display: none;
    padding: 5px;
    padding-left: 15px;
  }
}
@media (max-width: 1000px) {
  .mypage_menu > ul > li.on > ul li {
    padding: 7px 0;
  }
}
.mypage_menu > ul > li.on > ul li a {
  display: block;
  padding-top: 7px;
  font-size: 14px;
}
@media (max-width: 400px) {
  .mypage_menu > ul > li.on > ul li a {
    font-size: 12px;
  }
}
.mypage_menu > ul > li.on > ul li a i {
  font-weight: 900;
  margin-right: 5px;
}
.mypage_menu > ul > li.on > ul li.on a {
  font-weight: 600;
  color: #2c5db4;
}

.mypage_content {
  padding-left: 270px;
  min-height: 900px;
  /*토론방*/
  /*쿠폰함*/
}
@media (max-width: 1000px) {
  .mypage_content {
    padding-left: 0px;
    padding-top: 62px;
  }
  .mypage_content .sb_box {
    display: none;
  }
}
@media (max-width: 400px) {
  .mypage_content {
    min-height: 400px;
  }
}
.mypage_content h1 {
  font-size: 30px;
  font-weight: bold;
  margin: 50px 0 35px 0;
}
.mypage_content .navi {
  padding-top: 70px;
  color: #767676;
  font-size: 14px;
  padding-bottom: 20px;
}
.mypage_content > .content {
  padding-bottom: 70px;
  position: relative;
  /*관심강의*/
  /*수강후기*/
}
.mypage_content > .content h2 {
  border-top: 2px solid;
  font-size: 20px;
  font-weight: bold;
  line-height: 30px;
  padding: 20px 0;
}
@media (max-width: 1000px) {
  .mypage_content > .content h2 {
    font-size: 18px;
    padding: 10px 0;
  }
}
.mypage_content > .content .search_box {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  margin-top: 10px;
}
@media (max-width: 1000px) {
  .mypage_content > .content .search_box {
    display: block;
  }
}
.mypage_content > .content .search_box .tab_btn {
  margin-left: 20px;
}
@media (max-width: 1000px) {
  .mypage_content > .content .search_box .tab_btn {
    margin-top: 10px;
    margin-left: 6px;
  }
}
.mypage_content > .content .search_box .tab_btn button {
  width: 45px;
  font-size: 14px;
  height: 26px;
  background-color: #fff;
  border: 0.3px solid #676767;
  margin-left: -5px;
}
.mypage_content > .content .search_box .tab_btn button.on {
  background-color: #676767;
  color: #fff;
}
.mypage_content > .content .search_box .date_input {
  margin-left: 10px;
}
@media (max-width: 1000px) {
  .mypage_content > .content .search_box .date_input {
    margin-left: 1px;
    margin-top: 10px;
  }
  .mypage_content > .content .search_box .date_input img {
    width: 19px;
    margin-top: 6px;
  }
}
.mypage_content > .content .search_box .date_input input[id*=DateStart] {
  height: 26px;
  border: 0.3px solid #676767;
  width: 130px;
  margin-top: 3px;
}
@media (max-width: 1000px) {
  .mypage_content > .content .search_box .date_input input[id*=DateStart] {
    height: 22px;
    width: 90px;
  }
}
.mypage_content > .content .search_box .date_input input[id*=DateEnd] {
  height: 26px;
  border: 0.3px solid #676767;
  width: 130px;
  margin-top: 3px;
}
@media (max-width: 1000px) {
  .mypage_content > .content .search_box .date_input input[id*=DateEnd] {
    height: 22px;
    width: 90px;
  }
}
.mypage_content > .content .search_box .date_input button {
  background-color: #676767;
  color: #fff;
  width: 26px;
  height: 26px;
}
@media (max-width: 1000px) {
  .mypage_content > .content .search_box .date_input button {
    width: 23px;
    height: 24px;
  }
}
.mypage_content > .content table {
  width: 100%;
  text-align: center;
}
@media (max-width: 400px) {
  .mypage_content > .content table {
    margin-top: 0px !important;
  }
}
@media (max-width: 700px) {
  .mypage_content > .content table .mh {
    display: none;
    visibility: hidden;
    width: 0%;
  }
  .mypage_content > .content table .al {
    padding: 20px 5px;
  }
}
.mypage_content > .content table thead {
  background-color: whitesmoke;
}
.mypage_content > .content table thead th {
  padding: 15px 0;
}
.mypage_content > .content table tbody tr {
  border-bottom: 1px solid #bcbcbc;
}
.mypage_content > .content table tbody tr td.clip {
  max-width: 400px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
@media (max-width: 850px) {
  .mypage_content > .content table tbody tr td.clip {
    max-width: 300px;
  }
}
.mypage_content > .content table tbody tr td {
  padding: 15px 0;
}
.mypage_content > .content table tbody tr td button.small {
  background-color: #fff;
  border: 0.5px solid #707070;
  padding: 3px 10px;
}
@media (max-width: 1000px) {
  .mypage_content > .content table tbody tr td button.small {
    padding: 0px 0px;
    font-size: 12px;
    line-height: 18px;
  }
}
.mypage_content > .content table tbody tr td img {
  width: 26px;
}
@media (max-width: 1000px) {
  .mypage_content > .content table tbody tr td img {
    width: 22px;
  }
}
.mypage_content > .content table tbody tr td.al {
  padding: 15px 10px;
}
.mypage_content > .content .top_button {
  display: flex;
  justify-content: space-between;
  padding-bottom: 15px;
  border-bottom: 1px solid #ccc;
  padding-top: 15px;
  border-top: 1px solid #ccc;
}
.mypage_content > .content .top_button .left input {
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
  cursor: pointer;
}
.mypage_content > .content .top_button .left label {
  font-size: 14px;
  margin-left: 5px;
}
.mypage_content > .content .top_button .right button {
  padding: 3px 0;
  width: 75px;
  font-size: 14px;
  border-radius: 3px;
}
.mypage_content > .content .top_button .right button.delete {
  color: #767676;
}
.mypage_content > .content .top_button .right button.enrolment {
  background-color: #767676;
  color: #fff;
}
.mypage_content > .content .top_button .right button.enrolment i {
  font-size: 12px;
  margin-left: 1px;
}
.mypage_content > .content ul.saved_lecture_list li {
  border-bottom: 1px solid #ccc;
  display: flex;
  position: relative;
  padding: 35px 0;
  padding-left: 28px;
}
@media (max-width: 1000px) {
  .mypage_content > .content ul.saved_lecture_list li {
    padding: 25px 0;
    padding-left: 28px;
  }
}
@media (max-width: 500px) {
  .mypage_content > .content ul.saved_lecture_list li {
    display: block;
  }
}
.mypage_content > .content ul.saved_lecture_list li input {
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
  position: absolute;
  top: 30px;
  left: 0;
  cursor: pointer;
}
.mypage_content > .content ul.saved_lecture_list .left {
  margin-right: 40px;
}
@media (max-width: 500px) {
  .mypage_content > .content ul.saved_lecture_list .left {
    display: none;
  }
}
.mypage_content > .content ul.saved_lecture_list .left .lecture_img {
  width: 260px;
  height: 128px;
}
.mypage_content > .content ul.saved_lecture_list .left .lecture_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.mypage_content > .content ul.saved_lecture_list .left button {
  width: 260px;
  padding: 10px 0;
  margin-top: 10px;
  border-radius: 5px;
  background-color: #ededed;
  position: relative;
  padding-left: 24px;
}
.mypage_content > .content ul.saved_lecture_list .left button::before {
  position: absolute;
  top: 16px;
  left: 80px;
  width: 15px;
  height: 12px;
  background-image: url(../img/gray_video.png);
  background-size: contain;
  content: "";
}
.mypage_content > .content ul.saved_lecture_list .left button:hover {
  background-color: #3a87ef;
  color: #fff;
}
.mypage_content > .content ul.saved_lecture_list .left button:hover::before {
  background-image: url(../img/white_video.png);
}
.mypage_content > .content ul.saved_lecture_list .right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.mypage_content > .content ul.saved_lecture_list .right strong {
  font-size: 18px;
  font-weight: bold;
  line-height: 30px;
}
@media (max-width: 1000px) {
  .mypage_content > .content ul.saved_lecture_list .right strong {
    font-size: 14px;
    line-height: 25px;
  }
}
.mypage_content > .content ul.saved_lecture_list .right .top .tag_box {
  margin-top: 9px;
}
.mypage_content > .content ul.saved_lecture_list .right .top .tag_box span {
  padding: 4px 10px;
  background-color: #e8e8e8;
  border-radius: 5px;
  font-size: 14px;
}
@media (max-width: 1000px) {
  .mypage_content > .content ul.saved_lecture_list .right .top .tag_box span {
    font-size: 12px;
  }
}
@media (max-width: 1000px) {
  .mypage_content > .content ul.saved_lecture_list .right .bottom {
    margin-top: 16px;
    display: flex;
    width: 100%;
    justify-content: space-between;
    flex-direction: column;
  }
}
.mypage_content > .content ul.saved_lecture_list .right .bottom .price {
  display: inline-block;
}
.mypage_content > .content ul.saved_lecture_list .right .bottom button.enrolment {
  display: inline-block;
  margin-left: 20px;
  width: 134px;
  padding: 10px 0;
  background-color: #ef0000;
  color: #fff;
  font-weight: 500;
}
@media (max-width: 1000px) {
  .mypage_content > .content ul.saved_lecture_list .right .bottom button.enrolment {
    padding: 8px 0;
    margin-left: 0px;
    margin-top: 10px;
  }
}
.mypage_content > .content ul.saved_lecture_list .right .bottom button.enrolment i {
  font-size: 14px;
  margin-left: 4px;
}
@media (max-width: 1000px) {
  .mypage_content > .content ul.saved_lecture_list .right .bottom button.enrolment i {
    font-size: 12px;
  }
}
.mypage_content > .content td span.lecture_name {
  font-size: 14px;
  display: block;
  color: #888;
}
.mypage_content > .content .star i {
  color: #d54e4e;
  margin-right: 1px;
}
.mypage_content button#load {
  width: 100%;
  margin: 30px 0 100px 0;
  padding: 12px 0;
  background-color: #fff;
  border: 1px solid;
}
.mypage_content .topic {
  margin-bottom: 30px;
}
.mypage_content .topic .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-top: 1px solid;
}
@media (max-width: 600px) {
  .mypage_content .topic .top {
    display: block;
  }
}
.mypage_content .topic .top .left .title {
  font-size: 18px;
  font-weight: bold;
  line-height: 30px;
  cursor: pointer;
}
@media (max-width: 1000px) {
  .mypage_content .topic .top .left .title {
    font-size: 16px;
  }
}
.mypage_content .topic .top .left .detail {
  font-size: 14px;
  margin-top: 5px;
}
.mypage_content .topic .top .left .detail i {
  margin: 0 10px;
}
.mypage_content .topic .top .right button {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  background-color: #c80000;
  padding: 5px 10px;
  border-radius: 22px;
}
@media (max-width: 1000px) {
  .mypage_content .topic .top .right button {
    margin-top: 10px;
    font-size: 14px;
  }
}
.mypage_content .topic .bottom {
  padding: 15px 0;
  border-top: 1px solid #ccc;
}
.mypage_content .topic .bottom strong {
  font-size: 18px;
  font-weight: bold;
  line-height: 30px;
}
@media (max-width: 600px) {
  .mypage_content .topic .bottom strong {
    font-size: 16px;
  }
}
.mypage_content .topic .bottom .content {
  padding: 20px;
  background-color: whitesmoke;
  font-size: 16px;
  margin: 10px 0;
  line-height: 28px;
  cursor: pointer;
}
@media (max-width: 600px) {
  .mypage_content .topic .bottom .content {
    font-size: 14px;
    padding: 15px;
  }
}
.mypage_content .topic .answer {
  line-height: 25px;
  padding: 5px;
  margin-bottom: 30px;
}
.mypage_content .topic .comment {
  padding: 20px;
  background-color: whitesmoke;
  position: relative;
}
.mypage_content .topic .comment .detail {
  font-size: 13px;
  color: #777;
  margin-bottom: 6px;
}
.mypage_content .topic .comment .detail i {
  margin: 0 10px;
}
.mypage_content .topic .comment span {
  background-color: #5ea8d9;
  color: #fff;
  padding: 0px 9px;
  font-size: 14px;
  border-radius: 30px;
  position: absolute;
  top: 49px;
}
.mypage_content .topic .comment p {
  padding-left: 52px;
}
.mypage_content .coupon_box {
  display: flex;
  background-color: #ebf5fc;
  padding: 20px;
  font-size: 12px;
  align-items: center;
}
@media (max-width: 1000px) {
  .mypage_content .coupon_box {
    display: block;
    padding: 10px;
  }
}
.mypage_content .coupon_box .left {
  display: flex;
  align-items: center;
}
@media (max-width: 540px) {
  .mypage_content .coupon_box .left .img {
    display: none;
  }
}
.mypage_content .coupon_box .left .input_box {
  padding: 0 20px;
}
.mypage_content .coupon_box .left .input_box input[type=number] {
  border: 0.3px solid #aaa;
  margin-top: 5px;
}
.mypage_content .coupon_box .left .input_box button {
  margin-left: 10px;
  padding: 1px 6px;
  background-color: #2d2d2d;
  color: #fff;
  font-weight: bold;
  font-size: 12px;
  margin-top: 5px;
}
.mypage_content .coupon_box .left .input_box .radio_box {
  vertical-align: middle;
}
.mypage_content .coupon_box .left .input_box .radio_box input[type=radio] {
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
}
.mypage_content .coupon_box .left .input_box .radio_box label {
  margin-left: 3px;
  margin-right: 10px;
}
.mypage_content .coupon_box .left .txt {
  padding: 0 20px;
}
.mypage_content .coupon_box .left .txt p {
  font-size: 16px;
  margin-bottom: 5px;
}
.mypage_content .coupon_box .left .txt span {
  margin-right: 10px;
}
.mypage_content .coupon_box .left .txt span i {
  font-weight: 700;
  margin-right: 2px;
}
.mypage_content .coupon_box .right {
  padding-left: 20px;
  border-left: 1px solid #ccc;
}
@media (max-width: 1000px) {
  .mypage_content .coupon_box .right {
    display: none;
  }
}
.mypage_content .coupon_box .right i {
  font-weight: 700;
  margin-right: 7px;
}
.mypage_content h3 {
  margin: 30px 0 20px 0;
  font-weight: bold;
  font-size: 17px;
}
@media (max-width: 1000px) {
  .mypage_content h3 {
    margin: 20px 0 10px 0;
  }
}
.mypage_content .tab-list {
  display: flex;
  border-bottom: 1px solid #ccc;
  margin-bottom: 20px;
}
.mypage_content .tab-list .tab-button {
  padding: 0 15px 7px 15px;
  cursor: pointer;
}
.mypage_content .tab-list .tab-button.on {
  border-bottom: 2px solid;
}

.tab-content {
  display: none;
}

.tab-content.on {
  display: block;
}

/*설문*/
.survey_wrap {
  max-width: 1060px;
  margin: 0 auto;
  padding-bottom: 150px;
  padding-left: 220px;
  min-height: 800px;
}
.survey_wrap .top {
  text-align: center;
  margin: 50px 0 70px 0;
}
.survey_wrap .top h1 {
  font-size: 60px;
  font-weight: bold;
  line-height: 100px;
}
.survey_wrap .top p {
  line-height: 29px;
}
.survey_wrap h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}
.survey_wrap .content {
  margin-bottom: 40px;
}
.survey_wrap .content .title {
  border-top: 1px solid;
  border-bottom: 1px solid #ccc;
  padding: 13px 0;
}
.survey_wrap .content .title span {
  margin-left: 17px;
  font-size: 14px;
}
.survey_wrap .content .input_box input {
  width: 12px;
  height: 12px;
  margin-right: 5px;
}
.survey_wrap .content .input_box label {
  font-size: 14px;
  line-height: 14px;
  margin-right: 20px;
}
.survey_wrap .content .input_box.bg {
  background-image: url(../img/survey.png);
  width: 830px;
  height: 120px;
  background-repeat: no-repeat;
  background-position: 8% 99%;
  background-size: contain;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 80px;
}
.survey_wrap .content > label {
  margin-top: 10px;
  display: block;
}
.survey_wrap .content > input {
  display: block;
  border: 1px solid;
  width: 100%;
  padding: 5px;
  margin-top: 10px;
}
.survey_wrap .content textarea {
  display: block;
  width: 100%;
  height: 138px;
  margin-top: 10px;
  padding: 10px;
}
.survey_wrap .content .q {
  display: flex;
  flex-direction: column;
  padding: 10px;
  justify-content: space-between;
}
.survey_wrap .btn_black {
  margin: 0 auto;
  display: block;
  padding: 13px 60px;
  background-color: #2d2d2d;
  color: #fff;
  font-weight: bold;
}
.survey_wrap .complete_wrap {
  text-align: center;
  display: flex;
  flex-direction: column;
  padding: 150px 0 50px 0;
}
.survey_wrap .complete_wrap .check_icon {
  margin-bottom: 35px;
  width: 60px;
  height: 60px;
  background-color: #357af2;
  color: #fff;
  padding: 13px 0;
  border-radius: 50%;
  font-size: 32px;
  margin: 0 auto;
  text-align: center;
}
.survey_wrap .complete_wrap span {
  font-size: 20px;
}
.survey_wrap .complete_wrap strong {
  font-size: 40px;
  line-height: 80px;
}
.survey_wrap .complete_wrap p {
  line-height: 30px;
}
.survey_wrap .complete_wrap button {
  margin-top: 40px;
}

/*기존 소스*/
/* table 게시판 */
.tbl_typeA,
.tbl_typeA th,
.tbl_typeA td {
  border: 0;
  text-align: middle;
}

.tbl_typeA {
  width: 100%;
  margin-top: 10px;
  border-bottom: 1px solid #e2e2e4;
  text-align: center;
}

.tbl_typeA caption {
  display: none;
}

.tbl_typeA th {
  padding: 18px 10px;
  border-top: 0px solid #82a3e6;
  border-bottom: 2px solid #4ca4d4;
  background-color: #f5f5f5;
  color: #222222;
  font-weight: 400;
}

.tbl_typeA tr:hover {
  background: none;
}

.tbl_typeA td {
  padding: 30px 10px;
  border-top: 1px solid #e2e2e4;
  color: #222222;
  font-weight: 300;
}

.tbl_typeA .down_ico {
  background: url(/images/common/filedown.png) no-repeat;
  width: 31px;
  height: 35px;
  background-position: center;
}

.inp_01 {
  padding-left: 5px;
  text-align: left;
}

/* button */
.btn_01 {
  display: inline-block;
  padding: 8px 25px;
  border-radius: 3px;
  background-color: #4ca4d4;
  color: #fff;
  text-decoration: none !important;
  line-height: normal;
}

.btn_01_off {
  display: inline-block;
  padding: 8px 25px;
  border-radius: 3px;
  background-color: #d6d6d6 !important;
  border: #d6d6d6 !important;
  color: #fff;
  text-decoration: none !important;
  line-height: normal;
  cursor: default;
}

.btn_01g {
  display: inline-block;
  padding: 8px 25px;
  border: 1px solid #e4e4e4;
  border-radius: 3px;
  background-color: #f5f5f5;
  color: #222222;
  text-decoration: none !important;
  line-height: normal;
}

.btn_01r {
  display: inline-block;
  padding: 8px 25px;
  border-radius: 3px;
  background-color: red;
  color: #fff;
  text-decoration: none !important;
  line-height: normal;
}

.btn_01b {
  display: inline-block;
  padding: 8px 15px;
  border-radius: 3px;
  background-color: #2e3092;
  color: #fff;
  text-decoration: none !important;
  line-height: normal;
  margin-bottom: 5px;
}

.btn_02 {
  display: inline-block;
  padding: 3px 8px;
  border: 1px solid #d5d5d5;
  border-radius: 3px;
  font-size: 13px;
  background-color: #fff;
  color: #555;
  text-decoration: none !important;
  line-height: normal;
  font-weight: 300;
}

.btn_02.small_org {
  padding: 3px 12px;
  border: 1px solid #e35000;
  font-size: 12px;
  background-color: #fff;
  color: #67544a;
  text-decoration: none !important;
  line-height: normal;
}

.btn_02.small_violet {
  padding: 3px 3px;
  border: 1px solid #7f34d4;
  font-size: 12px;
  background-color: #fff;
  color: #7f34d4;
  text-decoration: none !important;
  line-height: normal;
}

.btn_02 {
  display: inline-block;
  padding: 3px 8px;
  border: 1px solid #d5d5d5;
  border-radius: 3px;
  font-size: 13px;
  background-color: #fff;
  color: #555;
  text-decoration: none !important;
  line-height: normal;
}

.btn_03 {
  display: inline-block;
  width: 78px;
  height: 40px;
  border: 1px solid #3e3e3e;
  margin-left: 10px;
  border-radius: 0px;
  background-color: #3e3e3e;
  color: #fff;
  text-decoration: none !important;
  line-height: 35px;
  vertical-align: middle;
  cursor: pointer;
}

.btn_04 {
  display: inline-block;
  width: 211px;
  padding: 14px 0px;
  border: 1px solid #d4d4d4;
  border-radius: 5px;
  font-size: 16px;
  background-color: #f5f5f5;
  color: #222222;
  text-decoration: none !important;
  line-height: normal;
  font-weight: 300;
}

.btn_04:hover {
  border: 1px solid #1f98af;
}

.btn_04.on {
  background-color: #1f98af;
  color: #fff;
  border: 1px solid #1f98af;
}

.btn_05 {
  display: inline-block;
  width: 211px;
  padding: 14px 0px;
  border: 1px solid #e4e4e4;
  border-radius: 5px;
  font-size: 18px;
  background-color: #f5f5f5;
  color: #222222;
  text-decoration: none !important;
  line-height: normal;
  font-weight: 300;
}

.btn_05.on {
  background-color: #3c43dd;
  color: #fff;
  border: 1px solid #3c43dd;
}

.btn_01olive {
  display: inline-block;
  padding: 8px 25px;
  border-radius: 3px;
  background-color: #3cb371;
  color: #fff;
  text-decoration: none !important;
  line-height: normal;
  margin-bottom: 5px;
}

.btn_01olive:hover {
  color: #fff;
}

/*iconplay*/
.icon_play_on {
  display: inline-block;
  width: 34px;
  height: 34px;
  background: url(../img/icon_play_on.svg) no-repeat;
  background-size: cover;
  cursor: pointer;
}

.icon_play_off {
  display: inline-block;
  width: 34px;
  height: 34px;
  background: url(../img/icon_play_off.svg) no-repeat;
  background-size: cover;
}

/*mypage.css*/
.graph_color_01 {
  color: #4ca4d4;
}

.graph_color_02 {
  color: #bbd81d;
}

.graph_color_03 {
  color: #f15921;
}

.graph_color_04 {
  color: #ee1d23;
}

.graph_color_05 {
  color: #2e3092;
}

.graph_bg_01 {
  background-color: #4ca4d4;
}

.graph_bg_02 {
  background-color: #bbd81d;
}

.graph_bg_03 {
  background-color: #f15921;
}

.graph_bg_04 {
  background-color: #ee1d23;
}

.graph_bg_05 {
  background-color: #2e3092;
}

.lecture_header {
  margin-bottom: 80px;
}

.lecture_title {
  display: flex;
  align-items: center;
  margin-top: 30px;
  height: 70px;
  border-bottom: 1px solid #e4e4e4;
}
@media (max-width: 1000px) {
  .lecture_title {
    margin-top: 20px;
    padding-bottom: 10px;
  }
}

.lecture_title .left {
  display: flex;
  align-items: center;
  flex-grow: 1;
  font-size: 18px;
  font-weight: 400;
}
@media (max-width: 1000px) {
  .lecture_title .left {
    display: initial;
    line-height: 28px;
  }
}

.lecture_title .left > span {
  display: block;
  margin-top: 1px;
}
@media (max-width: 1000px) {
  .lecture_title .left > span {
    display: inline;
  }
}

.lecture_title .right {
  padding: 5px 10px;
  font-size: 13px;
  text-align: right;
  border: 1px solid #777; /* #fff */
  border-radius: 5px;
}

.lecture_title .right:hover {
  padding: 5px 10px;
  font-size: 13px;
  text-align: right;
  border: 1px solid #f59000;
  border-radius: 5px;
}

.lecture_title .right > span {
  padding-left: 25px;
  background: url(/images/common/icon_down.svg) no-repeat;
  background-size: contain;
}

.lecture_detail {
  display: flex;
  margin-top: 25px;
}
@media (max-width: 1000px) {
  .lecture_detail {
    display: block;
  }
}

.lecture_detail .lecture_detail_left {
  width: 50%;
  padding-right: 30px;
}
@media (max-width: 1000px) {
  .lecture_detail .lecture_detail_left {
    width: 100%;
    padding-right: 0;
  }
}

.lecture_detail .lecture_detail_left > div {
  display: flex;
  font-size: 16px;
  line-height: 28px;
  font-weight: 300;
}

.lecture_detail .lecture_detail_left .left_title {
  margin-bottom: 25px;
  padding: 11px 15px 9px 15px;
  border: 1px solid #e7e7e7;
  border-radius: 25px;
  background-color: #f7f7f7;
  text-align: center;
}

.lecture_detail .lecture_detail_left .left_text {
  margin-bottom: 25px;
  padding: 12px 20px 12px 20px;
}

.lecture_detail .lecture_detail_right {
  margin-top: 10px;
  padding-left: 30px;
  width: 50%;
  border-left: 1px solid #e7e7e7;
}
@media (max-width: 1000px) {
  .lecture_detail .lecture_detail_right {
    padding: 10px;
    width: 100%;
    border-left: 0px;
  }
}

.lecture_detail .lecture_detail_right .lecture_graph {
  position: relative;
  font-size: 18px;
  margin-top: 55px;
}

.lecture_detail .lecture_detail_right .lecture_graph:nth-child(1) {
  margin-top: 37px;
}

.lecture_detail .lecture_detail_right .lecture_graph > .left {
  position: absolute;
  left: 0;
  top: -30px;
  padding-left: 8px;
  background: url(/images/common/arrow_right_dot.png) no-repeat;
  background-position: 0 50%;
}

.lecture_detail .lecture_detail_right .lecture_graph > .right {
  position: absolute;
  right: 10px;
  top: -30px;
  letter-spacing: 2px;
}

.lecture_detail .lecture_detail_right .lecture_graph .graph_bg {
  position: relative;
  width: 100%;
  height: 20px;
  border: 1px solid #d6d6d6;
  background-color: #eee;
  border-radius: 50px;
  z-index: 1;
}

.lecture_detail .lecture_detail_right .lecture_graph .graph_bg .graph {
  position: absolute;
  left: 0;
  top: 0px;
  width: 20%;
  height: 20px;
  border-radius: 50px;
  z-index: 2;
}

.classdate {
  display: flex;
  align-items: center;
  margin-top: 40px;
  height: 30px;
}
@media (max-width: 400px) {
  .classdate {
    margin-top: 27px;
  }
}

.classdate .left {
  display: flex;
  align-items: center;
  flex-grow: 1;
  font-size: 18px;
  font-weight: 400;
}
@media (max-width: 400px) {
  .classdate .left {
    font-size: 14px;
  }
}

.classdate .left > span {
  display: block;
  margin-top: 1px;
}

.classdate .right {
  padding: 5px 10px;
  font-size: 13px;
  text-align: right;
  border: 1px solid #d4d4d4; /*#fff*/
  border-radius: 5px;
}
@media (max-width: 400px) {
  .classdate .right {
    display: none;
  }
}

.classdate .right:hover {
  padding: 5px 10px;
  font-size: 13px;
  text-align: right;
  border: 1px solid #4ca4d4;
  border-radius: 5px;
}

.classdate .right > span {
  padding-left: 25px;
  background: url(/images/common/icon_down.svg) no-repeat;
  background-size: contain;
}

/*회원정보*/
.memberinfo_wrap {
  max-width: 500px;
  margin: 0 auto;
}

.memberinfo_wrap .Requiredinfo_area {
  padding-bottom: 30px;
  margin-bottom: 3px;
}

.memberinfo_wrap .Requiredinfo_area .chkarea {
  margin-top: 10px;
}

.memberinfo_wrap .Requiredinfo_area .chkarea li {
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
}

.memberinfo_wrap .Requiredinfo_area .chkarea input {
  width: 18px;
  height: 18px;
  margin-top: -3px;
}

.memberinfo_wrap .Requiredinfo_area .speechbubble {
  position: relative;
  background: #fff;
  border: 1px solid #3c43dd;
  margin-top: 15px;
  color: #3c43dd;
  font-size: 15px;
  padding: 8px 16px;
  border: 1px solid #3c43dd;
  border-radius: 5px;
  text-align: center;
  box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.2);
}

.memberinfo_wrap .Requiredinfo_area .speechbubble:after,
.speechbubble:before {
  bottom: 100%;
  left: 82px;
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

.memberinfo_wrap .Requiredinfo_area .speechbubble:after {
  border-color: rgba(255, 255, 255, 0);
  border-bottom-color: #fff;
  border-width: 7px;
  margin-left: -8px;
}

.memberinfo_wrap .Requiredinfo_area .speechbubble:before {
  border-color: rgba(60, 67, 221, 0);
  border-bottom-color: #3c43dd;
  border-width: 8px;
  margin-left: -9px;
}

.memberinfo_wrap h2 {
  font-size: 24px;
  font-weight: 400;
  line-height: 24px;
}

.memberinfo_wrap .Requiredinfo_area .Requiredinfo_row {
  margin-top: 20px;
}

.memberinfo_wrap .Requiredinfo_area .Requiredinfo_row .info_headerbox {
  padding: 15px 10px;
  text-align: justify;
  line-height: 26px;
  background-color: #f4f4f4;
}

.memberinfo_wrap .Requiredinfo_area .Requiredinfo_row .title {
  font-weight: 400;
}

.memberinfo_wrap .Requiredinfo_area .Requiredinfo_row .txt {
  font-weight: 400;
}

.memberinfo_wrap .Requiredinfo_area .Requiredinfo_row .content_title {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 400;
}

.memberinfo_wrap .Requiredinfo_area .Requiredinfo_row .content {
  font-weight: 400;
  margin-top: 10px;
}

.memberinfo_wrap .Requiredinfo_area .Requiredinfo_row .content .inp_txt {
  width: 100%;
  height: 38px;
  padding: 20px 20px;
  height: 40px;
  line-padding: 0 13px;
  font-size: 14px;
  border: 1px solid #000;
}

.memberinfo_wrap .Requiredinfo_area .Requiredinfo_row .content .inp_slt {
  width: 100%;
  height: 38px;
  padding: 3px;
  height: 40px;
  line-padding: 0 13px;
  font-size: 16px;
  border: 1px solid #000;
}

.memberinfo_wrap .Requiredinfo_area .Requiredinfo_row .content .inp_slt85 {
  width: 85%;
  height: 38px;
  padding: 3px 20px;
  height: 40px;
  line-padding: 0 13px;
  font-size: 16px;
  border: 1px solid #000;
}

.memberinfo_wrap .Requiredinfo_area .Requiredinfo_row .termsbox {
  overflow: auto;
  height: 120px;
  margin-top: 15px;
  padding: 0px 15px 15px 15px;
  border: 1px solid #dddddd;
  background: #fff;
  box-sizing: border-box;
  text-align: left;
}

.memberinfo_wrap .Requiredinfo_area .Requiredinfo_row .termsbox > h4 {
  font-size: 16px;
  font-weight: 500;
  margin-top: 15px;
}

.memberinfo_wrap .Requiredinfo_area .Requiredinfo_row .termsbox > h5 {
  font-size: 14px;
  font-weight: 400;
  margin-top: 10px;
}

.memberinfo_wrap .Requiredinfo_area .Requiredinfo_row .termsbox > p {
  font-size: 14px;
}

.memberinfo_wrap .Requiredinfo_area .Requiredinfo_row .content > input {
  font-weight: 400;
  width: 18px;
  height: 18px;
  margin-top: -3px;
}

.memberinfo_wrap .Requiredinfo_area .Requiredinfo_row .exp {
  margin-top: 5px;
  font-size: 14px;
  color: #4ca4d4;
}

.memberinfo_wrap .Requiredinfo_area .Requiredinfo_row .content .Sortarea {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.memberinfo_wrap .Requiredinfo_area .Requiredinfo_row .content .Sortarea .phonebox {
  width: 32%;
}

.memberinfo_wrap .Requiredinfo_area .Requiredinfo_row .content .Sortarea .zipcode {
  width: 100%;
}

.memberinfo_wrap .Requiredinfo_area .Requiredinfo_row .content .Sortarea .cardbox {
  width: 24%;
}

.memberinfo_wrap .Requiredinfo_area .Requiredinfo_row .content .Sortarea .securitycode {
  display: inline-block;
  width: 25%;
  color: #ff0000;
  font-size: 26px;
  text-align: center;
  padding: 8px 0px;
}

.memberinfo_wrap .Requiredinfo_area .Requiredinfo_row .content .Sortarea .searchbtn {
  display: inline-block;
  margin-left: 10px;
  width: 140px;
  height: 42px;
  padding: 0px 25px;
  background-color: #000;
  color: #fff;
  text-decoration: none !important;
  line-height: normal;
}

.memberinfo_wrap .Requiredinfo_area .Requiredinfo_row .content .Sortarea .matchingbtn {
  display: inline-block;
  margin-left: 10px;
  width: 190px;
  height: 42px;
  padding: 0px 25px;
  background-color: #000;
  color: #fff;
  text-decoration: none !important;
  line-height: normal;
}

.memberinfo_wrap .Requiredinfo_area .Requiredinfo_row .content {
  margin-top: 10px;
  line-height: 26px;
}

.memberinfo_wrap .Requiredinfo_area .Requiredinfo_row .content em {
  display: block;
}

.memberinfo_wrap .Requiredinfo_area .Requiredinfo_row .content input[type=checkbox] {
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
}

.btnarea {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.member_btn01 {
  display: block;
  width: 100%;
  padding: 15px 0 15px;
  font-size: 15px;
  text-align: center;
  box-sizing: border-box;
  border-radius: 5px;
  background-color: #3a87ef;
  color: #fff;
}

.member_btn02 {
  display: block;
  width: 100%;
  padding: 15px 0 15px;
  font-size: 15px;
  text-align: center;
  box-sizing: border-box;
  border-radius: 5px;
  background-color: #dfdfdf;
  color: #222222;
}

/*교육담당자*/
/* table  */
.tbl_typeD,
.tbl_typeD th,
.tbl_typeD td {
  border: 1px solid #e2e2e4;
}

.tbl_typeD {
  width: 100%;
}

.tbl_typeD td {
  padding: 20px 20px 20px 20px;
  text-align: center;
  font-weight: 300;
  vertical-align: middle;
}

.tbl_typeD .baseinfo {
  padding-left: 10px;
}

.tbl_typeD .baseinfo li {
  display: block;
  margin-top: 10px;
  text-align: left;
}

.tbl_typeD .baseinfo .subname {
  margin-top: 0px;
}

.tbl_typeD .baseinfo .name {
  font-size: 18px;
  font-weight: 500;
}
@media (max-width: 400px) {
  .tbl_typeD .baseinfo .name {
    font-size: 16px;
    line-height: 20px;
  }
}

.tbl_typeD .baseinfo .refund {
  color: #4ca4d4;
  margin-top: 20px;
  font-weight: 400;
}

/*학습자료실 게시판*/
.tableTypeA_top {
  padding-top: 40px;
  border-top: 1px solid #ccc;
}
.tableTypeA_top .title {
  font-size: 20px;
  font-weight: 600;
}
.tableTypeA_top .title span {
  margin-right: 10px;
}
@media (max-width: 1000px) {
  .tableTypeA_top .title {
    font-size: 17px;
    line-height: 28px;
  }
}
.tableTypeA_top .detail {
  overflow: hidden;
  margin: 20px 0;
}
@media (max-width: 1000px) {
  .tableTypeA_top .detail {
    margin: 10px 0;
  }
}
.tableTypeA_top .detail > div {
  float: left;
  font-size: 13px;
}
.tableTypeA_top .detail > div span {
  margin-right: 10px;
  font-weight: 500;
}
.tableTypeA_top .detail .date {
  margin-right: 30px;
}
.tableTypeA_top .detail .view {
  margin-left: 30px;
}
.tableTypeA_top div.modify {
  display: flex;
  align-items: center;
}
.tableTypeA_top div.modify span {
  width: 50px;
}
.tableTypeA_top input.modify {
  border: 1px solid #9c9c9c;
  padding: 4px 10px;
  border-radius: 5px;
  width: 100%;
}

.tableTypeA {
  margin-top: 20px;
  margin-bottom: 40px;
}
@media (max-width: 700px) {
  .tableTypeA .mh {
    display: none;
    visibility: hidden;
    width: 0%;
  }
  .tableTypeA .al {
    padding: 20px 5px;
  }
}
.tableTypeA table {
  width: 100%;
  border-top: 2px solid;
}
.tableTypeA table tr {
  border-bottom: 1px solid;
}
.tableTypeA table th,
.tableTypeA table td {
  padding: 20px 10px;
  text-align: center;
}
.tableTypeA table th {
  background-color: whitesmoke;
}
.tableTypeA table th i {
  color: #b5cff0;
  font-size: 22px;
  margin-left: 3px;
}
@media (max-width: 1000px) {
  .tableTypeA table th i {
    font-size: 18px;
    margin-left: 0;
  }
}
.tableTypeA table td a {
  display: block;
}
@media (max-width: 1000px) {
  .tableTypeA table td a {
    font-size: 11px;
    line-height: 15px;
  }
}
.tableTypeA table img.download {
  width: 26px !important;
}
.tableTypeA table img.download_view {
  width: 20px;
  margin-right: 10px;
}
@media (max-width: 1000px) {
  .tableTypeA table img.download_view {
    width: 18px !important;
  }
}
.tableTypeA table .content {
  padding: 20px 0;
  text-align: left;
  font-size: 16px;
}

.button_wrap {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
}
.button_wrap button {
  background-color: #ebebeb;
  padding: 13px 0;
  text-align: center;
  width: 142px;
  border-radius: 10px;
}

.search_box_2 {
  position: absolute;
  position: absolute;
  right: 0;
  top: 21px;
}
@media (max-width: 1000px) {
  .search_box_2 {
    display: none;
  }
}
.search_box_2 input {
  background-color: whitesmoke;
  width: 415px;
  border-bottom: none;
  border-radius: 25px;
  font-size: 14px;
  padding: 6px 30px 6px 25px;
}
.search_box_2 span {
  position: absolute;
  top: 5px;
  right: 20px;
}

.pagination {
  padding: 20px 0;
}
.pagination ol {
  display: flex;
  justify-content: center;
}
.pagination ol li {
  margin: 6px;
  width: 25px;
  height: 25px;
  text-align: center;
  cursor: pointer;
}
.pagination ol li.on {
  color: #fff;
  background-color: #2d2d2d;
  border-radius: 50%;
}

/*FLEX*/
.graph_wrap h2 {
  display: inline-block;
  border-top: none !important;
}
.graph_wrap .lecture_graph {
  position: relative;
  font-size: 18px;
  display: inline;
  margin-left: 10px;
}
.graph_wrap .lecture_graph > .right {
  letter-spacing: 2px;
  display: inline-block;
  margin-left: 10px;
}
.graph_wrap .lecture_graph .graph_bg {
  position: relative;
  top: 3px;
  width: 500px;
  height: 20px;
  border: 1px solid #d6d6d6;
  background-color: #eee;
  border-radius: 50px;
  z-index: 1;
  display: inline-block;
}
.graph_wrap .lecture_graph .graph {
  position: absolute;
  left: -1px;
  top: -1px;
  width: 20%;
  height: 20px;
  border-radius: 50px;
  z-index: 2;
}

/*모달*/
.modal-content .title {
  font-size: 20px;
  margin-bottom: 30px;
  display: inline-block;
}
.modal-content table {
  min-width: 400px;
  border-top: 1px solid #333;
}
.modal-content table tr {
  border-bottom: 1px solid #ccc;
}
.modal-content table tr th {
  text-align: left;
  padding: 15px;
}
.modal-content table tr td {
  text-align: right;
  padding: 10px;
}
.modal-content table tr td button {
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
}
.modal-content .close {
  margin-top: 30px;
}
.modal-content .close button {
  margin: 0 auto;
  width: 80px;
  display: block;
  height: 40px;
  background-color: #333;
  color: #fff;
  border-radius: 10px;
  font-size: 14px;
}/*# sourceMappingURL=mypage.css.map */