@charset "utf-8";

.tl {
  text-align: left !important;
}

.tr {
  text-align: right !important;
}

.tc {
  text-align: center !important;
}

.pd0 {
  padding: 0px 10px !important;
}

.pd20 {
  padding: 20px 20px !important;
}

.pd40 {
  padding: 0px 40px !important;
}

.pd50 {
  padding: 50px 0px !important;
}

.pd120 {
  padding: 0px 120px !important;
}

.pl10 {
  padding-left: 10px !important;
}

.pr10 {
  padding-right: 10px !important;
}

.pb0 {
  padding-bottom: 0px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.pl0 {
  padding-left: 0px !important;
}

.mr0 {
  margin-right: 0px !important;
}

.mr10 {
  margin-right: 10px;
}

.mr20 {
  margin-right: 20px;
}

.mr30 {
  margin-right: 30px;
}

.mr50 {
  margin-right: 50px;
}

.ml0 {
  margin-left: 0px !important;
}

.ml10 {
  margin-left: 10px !important;
}

.ml20 {
  margin-left: 20px !important;
}

.ml30 {
  margin-left: 30px !important;
}

.mt0 {
  margin-top: 0px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mt35 {
  margin-top: 35px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mb0 {
  margin-bottom: 0px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb35 {
  margin-bottom: 35px !important;
}

.box {
  position: relative;
}

.red-txt {
  color: #f5535b !important;
}

.blue-txt {
  color: #0e4095 !important;
}

.black-txt {
  color: #222222 !important;
}

.gray-bg {
  background: #f3f3f3;
}

.layer-bg {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  background: #000;
  opacity: 0.7;
  z-index: 10;
  display: none;
}

/*  팝업   */
.pop-layer {
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.75;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
}

.ok-btn {
  background: #63d7e8;
  border: 1px #63d7e8 solid;
  color: #fff;
}

.ok-btn:hover {
  background: #4abfd1 !important;
  border: 1px #4abfd1 solid;
}

.ok-btn:focus {
  background: #4abfd1 !important;
  border: 1px #4abfd1 solid;
}

.ok-btn:disabled {
  background: #ccc !important;
  border: 1px #ccc solid;
}

.del-btn {
  background: #222 !important;
  border: 1px #222 solid;
  color: #fff;
}

.del-btn:hover {
  background: #4a4a4a !important;
  border: 1px #4a4a4a solid;
}

.del-btn:focus {
  background: #4a4a4a !important;
  border: 1px #4a4a4a solid;
}

.del-btn:disabled {
  background: #ccc !important;
  border: 1px #ccc solid;
}

.list-btn {
  background: #fff !important;
  border: 1px #4a4a4a solid;
  color: #4a4a4a;
}

.list-btn:hover {
  background: #f3f3f3 !important;
  border: 1px #4a4a4a solid;
}

.list-btn:focus {
  background: #f3f3f3 !important;
  border: 1px #4a4a4a solid;
}

.list-btn:disabled {
  background: #ccc !important;
  border: 1px #ccc solid;
}

.check {
  font-size: 14px;
  margin: 6px 8px;
}

input.checkbox {
  width: 16px;
  height: 16px;
  border: 1px #40bd5b solid;
  display: inline-block;
  margin: 0px 5px 5px 5px;
}

input.input {
  display: inline-block;
  width: 100%;
  background: #fff;
  border: 1px #ddd solid;
  padding: 1px 3px;
  text-align: left;
  color: #4a4a4a;
}

.discription {
  font-weight: 300;
  color: #666;
  text-align: left;
  position: relative;
}

.point {
  color: #ff6600;
}

.under-line {
  color: #0099ec !important;
  text-decoration: underline !important;
  padding: 0px 3px;
}

/*  radio btn    */

.radio-check {
  display: inline-block;
  position: relative;
  width: auto;
  height: 30px;
  line-height: 30px;
  margin-right: 15px;
  font-weight: 400;
  padding-left: 25px;
  font-size: 16px;
  cursor: pointer;
  text-align: left;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.radio-check input[type="radio"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  width: 1px;
  height: 1px;
}

.radio-check:hover input[type="radio"]~.checkmark {}

.radio-check input[type="radio"]:checked~.checkmark {
  background: url("../images/common/radio_on.png") no-repeat center top;
  background-size: contain;
}

.radio-check input[type="radio"]:checked~.checkmark:after {
  display: block;
}

.checkmark {
  position: absolute;
  top: 4px;
  left: 0px;
  width: 20px;
  height: 20px;
  background: url("../images/common/radio_off.png") no-repeat center top;
}

.checkmark:after {
  display: none;
  position: absolute;
}

.radio-check .checkmark:after {
  top: 2px;
  left: 7px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
}

.view-btn {
  position: relative;
  height: 32px;
}

.view-btn img {
  height: 100%;
}

.disable {
  background-color: #e5e5e5 !important;
  border: 1px #e5e5e5 solid !important;
}

.border-top {
  border-top: 1px #b4d3e6 solid;
}

.border-right {
  border-right: 1px #dbdbdb solid;
}

.border-bottom {
  border-bottom: 1px #ccc solid;
}

.no-border-bottom {
  border-bottom: 0px #ccc solid !important;
}

.tb-margin p.point {
  display: block;
  text-align: right;
  font-size: 14px;
}

/*  팝업   */
.pop-layer {
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.75;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
}



/* paging   */

.page-wrap {
  width: 100%;
  height: auto;
  position: relative;
  padding: 20px 0px 0px 0px;
  margin: 20px 0px 0px 0px;
}

.page-wrap ul {
  text-align: center;
  width: auto;
  height: auto;
  position: relative;
  margin: 0 auto;
}

.page-wrap ul li {
  display: inline-block;
  line-height: 16px;
  font-size: 14px;
  font-weight: 400;
  padding: 7px 4px;
}

.page-wrap ul li a {
  color: #000;
  display: block;
  padding: 0px 7px;
  letter-spacing: -1px;
}

.page-wrap ul li a:hover {
  color: #0099ec;
}

.page-wrap ul li a:focus {
  color: #0099ec;
}

.page-wrap ul li.on {
  background: #63d7e8;
  border: 1px #63d7e8 solid;
  border-radius: 30px;
}

.page-wrap ul li.on a {
  color: #ffffff;
}

.page-wrap ul li.pre a {
  border-right: 1px #cdcdcd solid;
  padding: 0px 16px 0px 8px;
  font-weight: 600;
}

.page-wrap ul li.next a {
  border-left: 1px #cdcdcd solid;
  padding: 0px 8px 0px 16px;
  font-weight: 600;
}

.overflow {
  overflow-x: auto;
}

.coming-soon {
  width: 100%;
  height: auto;
  position: relative;
  text-align: center;
  padding: 30% 0%;
  background: #fffaf2;
}

.coming-soon p {
  font-size: 20px;
  font-weight: 400;
  line-height: 40px;
  margin-top: 20px;
  color: #000;
  text-align: center;
}

.loading-bar {
  width: 100%;
  height: auto;
  position: relative;
  text-align: center;
  padding: 20% 0%;
}

.loading-bar p {
  font-size: 20px;
  font-weight: 400;
  line-height: 40px;
  margin-top: 20px;
  color: #000;
  text-align: center;
}

textarea.textarea {
  width: auto;
  height: 200px;
  border: 1px #ddd solid;
  overflow-y: auto;
  padding: 20px 20px;
  font-size: 16px;
  font-weight: 400;
  color: #4a4a4a;
  line-height: 24px;
  word-break: break-all;
  white-space: normal;
  text-align: left;
}

.upload {
  display: flex;
  align-items: center;
  margin-left: 12px;
  background-color: #222;
  font-size: 16px;
  line-height: 18px;
  padding: 6px 24px;
}

.upload label {
  display: block;
  color: #fff;
  cursor: pointer;
}

.upload label::after {
  content: "file upload";
}

.upload label .file-input {
  display: none;
}

.file-wrap {
  flex-flow: wrap;
}

.file-wrap .file-list {
  display: block;
  position: relative;
  width: 100%;
  padding: 10px 0px 0px 0px;
}

.file-wrap .file-list .box {
  display: inline-block;
  padding-right: 10px;
}

.file-wrap .file-list span {
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
}

.file-wrap .file-list button {
  width: 20px;
}

.file-wrap .file-list button img {
  width: 100%;
}



.study-info .slick-prev:before,
.study-info .slick-next:before {
  font-size: 60px;
  line-height: 140%;
  opacity: .75;
  color: #4a4a4a;
}

.study-info .slick-next:before {
  content: '>';
}

.study-info .slick-prev:before {
  content: '<';
}


.study-info .slick-next {
  right: 30px;
  top: 40%;
}

.study-info .slick-prev {
  left: 30px;
  top: 40%;
}


.main-slide .slick-prev:before,
.main-slide .slick-next:before {
  font-size: 90px;
  font-weight: 300;
  opacity: .75;
  color: #fff;
}

.main-slide .slick-next:before {
  content: '>';
}

.main-slide .slick-prev:before {
  content: '<';
}


.main-slide .slick-next {
  right: 10%;
  top: 50%;
  z-index: 5;
}

.main-slide .slick-prev {
  left: 10%;
  top: 50%;
  z-index: 5;
}


@media screen and (min-width: 1400px) and (max-width: 1600px) {
  .main-slide .slick-next {
    right: 5%;
  }

  .main-slide .slick-prev {
    left: 5%;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1399px) {
  .main-slide .slick-next {
    right: 3%;
  }

  .main-slide .slick-prev {
    left: 3%;
  }
}


@media screen and (max-width: 599px) {

  .main-slide .slick-prev:before,
  .main-slide .slick-next:before {
    font-size: 60px;

  }
}


/* datepicker 주말 색상지정 -------------------------------------------------------------------------- */
.ui-datepicker-calendar > thead th.ui-datepicker-week-end:first-child span { color:#f00; }
.ui-datepicker-calendar > thead th.ui-datepicker-week-end:last-child span { color:#00f; }
.ui-datepicker-calendar > tbody td.ui-datepicker-week-end:first-child a { color:#f00; }
.ui-datepicker-calendar > tbody td.ui-datepicker-week-end:last-child a { color:#00f; }
.ui-datepicker-today a { background-color:#c7f18c !important; }
#ui-datepicker-div { z-index: 999999 !important; }