@charset "UTF-8";
/*=================================================
    바디
=================================================*/
body {
  position: relative;
  height: 100%;
  font-family: "NANUMSQUARE-400", sans-serif;
  font-weight: 400;
  line-height: 1.5;
  color: #333;
  letter-spacing: 0.02em;
  box-sizing: content-box;
}
body.popup-body {
  min-width: 100%;
}
body.modal-open {
  overflow: hidden;
}
a {
  display: inline-block;
}
.btn {
  line-height: 1.3;
  padding: 10px 20px;
  border-radius: 0;
}

.btn-group-vertical > .btn-check:checked + .btn,
.btn-group-vertical > .btn-check:focus + .btn,
.btn-group-vertical > .btn.active,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn:hover,
.btn-group > .btn-check:checked + .btn,
.btn-group > .btn-check:focus + .btn,
.btn-group > .btn.active,
.btn-group > .btn:active,
.btn-group > .btn:focus,
.btn-group > .btn:hover {
  border-color: #002F7E;
  background-color: #002F7E;
}
.btn-primary {
  border-color: #002F7E;
  background-color: #002F7E;
  transition: all 0.2s ease;
}
.btn-primary:hover {
  border-color: #002F7E;
  background-color: #002F7E;
  opacity: 0.9;
}
.btn-outline-primary {
  color: #002F7E;
  border-color: #002F7E;
  transition: all 0.2s ease;
}
.btn-outline-primary:hover {
  background-color: #002F7E;
}
.btn-success {
  color: #fff;
  border-color: #2fa301;
}
.btn-orange {
  color: #fff;
  background: #e69138;
}
.btn-yellow {
  color: #fff;
  background: #f1c232;
}

button {
  opacity: 1;
  transition: all 0.2s ease;
}
button:hover {
  opacity: 0.9;
}
button.default-bordered {
  font-size: 13px;
  font-weight: 700;
  padding: 5px 10px;
  border: 1px solid #ddd;
  border-radius: 10px;
}
.mobile {
  display: none !important;
}

.bold {
  font-weight: 700 !important;
}

@media (max-width: 768px) {

  .pc {
    display: none !important;
  }
  .mobile {
    display: table !important;
  }

}

/*================================
    폰트 컬러
================================*/
.font-basic {
  color: #333 !important;
}

.font-point {
  color: #0038a9 !important;
}

.font-blue {
  color: #0038a9 !important;
}

.font-red {
  color: #e9411d !important;
}

.font-orange {
  color: #ffba00 !important;
}

.font-green {
  color: #b7ca10 !important;
}

.font-darkgreen {
  color: #00900a !important;
}

.font-black {
  color: #000 !important;
}

.font-gray {
  color: #888 !important;
}

.font-gray-light {
  color: #aaa !important;
}

/*================================
    배경 컬러
================================*/
.bg-point {
  background-color: #0038a9 !important;
}

.bg-point-light {
  background-color: #f5f7fd !important;
}

.bg-blue {
  background-color: #0038a9 !important;
}

.bg-blue-light {
  background-color: #ecf1fc !important;
}

.bg-green {
  background-color: #b7ca10 !important;
}

.bg-green-light {
  background-color: #e4f3ef !important;
}

.bg-red-light {
  background-color: #ffede9 !important;
}

.bg-gray-light {
  background-color: #f7f7f7 !important;
}

.bg-white {
  background-color: #fff;
}

.flex-center {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.flex-center > i {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  line-height: 100%;
  font-size: 16px;
}

/*=================================================
    헤더
=================================================*/
.gnb {
  min-width: 1024px;
  width: 100%;
  border-top: 4px solid #002F7E;
  border-bottom: 1px solid #e6e6e6;
}
.gnb .top-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}
.gnb .top-header > .flex {
  align-items: center;
}
.gnb .top-header > .flex > a {
  height: 60px;
}
.gnb .top-header > .flex > a > img {
  height: 100%;
}
.gnb .top-header > .flex > h3 {
  position: relative;
  line-height: 22px;
  font-size: 18px;
  font-weight: 700;
  margin-left: 25px;
  padding-left: 20px;
}
.gnb .top-header > .flex > h3:before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 15px;
  display: block;
  content: "";
  background-color: #999;
}
.gnb .top-header > .flex > h3 > br {
  display: none;
}
.gnb .top-header > .flex span.grader {
  font-size: 14px;
  font-weight: 500;
  color: #0f9df9;
  margin-left: 20px;
  padding: 5px 10px;
  border: 1px solid #0f9df9;
  border-radius: 10px;
}
.labo_info {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  margin-right: 30px;
}
.labo_info > p {
  font-size: 18px;
  font-weight: 700;
  color: #002F7E;
}
.labo_info > span {
  display: inline-block;
  padding: 5px 10px;
  margin-left: 10px;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
}
button.logout {
  line-height: 40px;
  font-size: 14px;
  font-weight: 500;
  padding: 0 15px;
  border: 1px solid #c8c8c8;
  border-radius: 10px;
  background: #fff;
  transition: all 0.2s ease-in-out;
}
button.logout:hover {
  border-color: #969696;
}

/*=================================================
    푸터
=================================================*/
footer {
  width: 100%;
  padding: 30px 0;
  background-color: #101010;
}
footer .inner {
  position: relative;
  display: flex;
  width: 1000px;
  margin: 0 auto;
}
footer .logo {
  width: 100px;
}
footer .logo > img {
  width: 100%;
}
footer .company_info {
  margin-left: 100px;
  color: #fff;
}
footer .company_info > dl {
  display: flex;
}
footer .company_info > dl > dd {
  position: relative;
  line-height: 20px;
  font-size: 12px;
  font-weight: 300;
  color: #eee;
}
footer .company_info > dl > dd + dd {
  margin-left: 20px;
  padding-left: 20px;
}
footer .company_info > dl > dd + dd:after {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: block;
  width: 2px;
  height: 10px;
  content: "";
  background-color: #666;
}
footer .company_info > p {
  line-height: 20px;
  font-size: 11px;
  color: #666;
  margin-top: 20px;
}

/*=================================================
    로그인
=================================================*/
.login {
  display: flex;
  align-items: center;
  justify-content: center;
  height: calc(100% - 245px);
}
.login > .inner {
  width: 500px;
  padding: 20px;
}
.login h1 {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -1px;
}
.login h2 {
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.login .info {
  margin-top: 30px;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  overflow: hidden;
}
.login .info > div {
  display: flex;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}
.login .info > div + div {
  border-top: 1px solid #e6e6e6;
}
.login .info .tit {
  flex-grow: 0;
  flex-basis: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  background: #fbfbfb;
}
.login .info .tit + div {
  border-left: 1px solid #e6e6e6;
}
.login .info .con {
  flex-grow: 1;
  flex-basis: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
}
.login .login_form {
  margin-top: 50px;
  padding: 40px 50px;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
}
.login .login_form .form-wrap {
  margin-bottom: 10px;
}
.login .login_form .form-label {
  font-size: 12px;
  margin-bottom: 5px;
}
.login .login_form input {
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 10px;
}
.login .login_form .d-grid {
  margin-top: 30px;
}
.login .login_form button.btn {
  line-height: 50px;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  padding: 0;
  border-radius: 10px;
  background: #002F7E;
}

/*=================================================
    채점자 리스트
=================================================*/
.grader_list {
  width: 1000px;
  margin: 50px auto 300px;
}
.grader_list > .top_label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #002F7E;
}
.grader_list > .top_label > h3 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  padding: 10px 20px;
  background: #002F7E;
}
.grader_list > .top_label > p {
  font-size: 14px;
  font-weight: 500;
  color: #666;
}
.grader_list > .control_bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
}
.grader_list > .control_bar .left {
  display: flex;
  align-items: center;
}
.grader_list > .control_bar .left > p {
  font-size: 14px;
  font-weight: 700;
  margin-left: 10px;
}
.grader_list > .control_bar label.btn {
  font-size: 14px;
  font-weight: 600;
  color: #002F7E;
  border-color: #002F7E;
}

.grader_list > .control_bar .btn-check:checked + label.btn {
  color: #fff;
  background-color: #002F7E;
  border-color: #002F7E;
}
.grader_list > .control_bar .right {
  display: flex;
}
.grader_list > .control_bar .right > .form-select {
  width: 120px;
  margin-right: 10px;
}
.grader_list .table {
  text-align: center;
  margin-top: 20px;
}
.grader_list .table > thead > tr {
  background-color: #fbfbfb;
}
.grader_list .table > thead > tr > th {
  height: 50px;
  font-weight: 600;
  vertical-align: middle;
}
.grader_list .table > tbody > tr > td {
  height: 50px;
  color: #333;
  font-weight: 500;
}
.grader_list .table > tbody > tr > td > a {
  display: block;
  color: #0f9df9;
  font-weight: 700;
  padding: 10px 0;
  transition: all 0.2s ease-in-out;
}
.grader_list .table > tbody > tr > td > a:hover {
  color: #0b559b;
}
.grader_list .table > tbody > tr > td .ing {
  display: inline-block;
  line-height: 32px;
  font-weight: 500;
  color: #fff;
  padding: 0 15px;
  border-radius: 10px;
  background-color: #002F7E;
}
.grader_list .table > tbody > tr > td .start {
  line-height: 32px;
  font-weight: 500;
  color: #666;
  text-align: center;
  padding: 0 15px;
  border: 1px solid #999;
  border-radius: 10px;
  transition: all 0.2s ease-in-out;
}
.grader_list .table > tbody > tr > td .start:hover {
  color: #000;
  border-color: #333;
}

/*=================================================
    응시자별 채점표
=================================================*/
.grader_score_sheet {
  width: 100%;
  margin: 50px auto 100px;
}
.grader_score_sheet > .top_label {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.grader_score_sheet > .top_label > p {
  font-size: 16px;
  font-weight: 700;
  color: #002F7E;
}
.grader_score_sheet > .top_label > ul {
  display: flex;
}
.grader_score_sheet > .top_label > ul > li {
  position: relative;
  font-size: 16px;
  font-weight: 700;
  padding: 10px 15px;
}
.grader_score_sheet > .top_label > ul > li:first-child {
  padding-left: 0;
}
.grader_score_sheet > .top_label > ul > li + li:after {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: block;
  width: 1px;
  height: 10px;
  content: "";
  background-color: #ccc;
}
.accord_top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 20px;
  font-weight: 700;
  margin-top: 30px;
  padding: 20px 30px;
  border: 1px solid #e6e6e6;
}
.accord_top > button {
  color: #fff;
  background-color: #002F7E;
}
.accord_top > button:hover {
  color: #fff;
  background-color: #045ada;
}
.accord_top > button > i {
  font-size: 20px;
}
.accord_top > button.btn-outline-secondary {
  color: #999;
  border-color: #aaa;
  background: #fff;
}
.score_sheet {
  margin-top: 20px;
}
.score_sheet td {
  padding: 0;
}
.score_sheet td .flex + div {
  border-top: 1px solid #e6e6e6;
}
.score_sheet td .flex > div + div {
  border-left: 1px solid #e6e6e6;
}
.score_sheet td .num {
  flex-grow: 0;
  flex-basis: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 10px;
}
.score_sheet td .con {
  flex-grow: 1;
  flex-basis: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}
.score_sheet td .con > p {
  flex-grow: 1;
  flex-basis: 0;
  font-size: 16px;
  font-weight: 700;
  margin-right: 10px;
}
.score_sheet td .con > .btn {
  flex-grow: 0;
  flex-basis: 70px;
  padding: 8px 0;
}
.score_sheet td .con dl dt {
  font-size: 16px;
  margin-bottom: 5px;
}
.score_sheet td .con dl dd {
  line-height: 24px;
  font-size: 15px;
  font-weight: 600;
}
.score_sheet td .con dl dd img {
  margin: 10px 0;
}
.score_sheet td .score {
  flex-grow: 0;
  display: flex;
  align-items: center;
  width: 450px;
  padding: 10px;
}
.score_sheet td .score > textarea {
  color: #002F7E;
  border: 1px solid #002F7E;
}
.score_sheet td .score > label {
  flex-grow: 1;
  flex-basis: 0;
  line-height: 24px;
  padding: 0;
}
.score_sheet td .score > label > p {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  line-height: 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.5px;
  padding: 10px;
}
.score_sheet td .score > label > b {
  display: block;
  border-top: 1px solid #045ada;
  padding: 10px 0;
}
.score_sheet td .card {
  flex-direction: row;
  border: none;
}
.score_footer {
  margin-top: 20px;
}
.score_footer .feedback > textarea {
  border-color: #e6e6e6;
  border-radius: 0;
}
.score_footer .button_wrap {
  display: flex;
  align-items: center;
  margin-top: 20px;
}
.score_footer .button_wrap.center {
  justify-content: center;
}
.score_footer .button_wrap .golist {
  flex-grow: 0;
  flex-basis: 120px;
}
.score_footer .button_wrap .totalscore {
  flex-grow: 1;
  flex-basis: 0;
  font-weight: 700;
  padding: 0 20px;
}
.score_footer .button_wrap .save {
  flex-grow: 0;
  flex-basis: 120px;
  font-weight: 700;
  color: #fff;
  background-color: #002F7E;
}
.score_footer .button_wrap .save:hover {
  background-color: #045ada;
}

@media (max-width: 768px) {

  .gnb {
    width: 100%;
    min-width: 0;
  }
  .gnb .top-header {
    flex-direction: column;
    padding: 10px;
  }
  .gnb .top-header > div + div {
    justify-content: space-between;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #e6e6e6;
  }
  .gnb .top-header > .flex {
    width: 100%;
  }
  .gnb .top-header > .flex > a {
    height: 40px;
  }
  .gnb .top-header > .flex > h3 {
    flex-grow: 1;
    line-height: 18px;
    font-size: 13px;
    margin-left: 15px;
    padding-left: 15px;
  }
  .gnb .top-header > .flex > h3 > br {
    display: inline-block;
  }
  .gnb .top-header > .flex span.grader {
    display: none;
  }
  button.logout {
    padding: 0 10px;
  }

  footer {
    padding: 20px;
  }
  footer .inner {
    width: 100%;
    flex-direction: column;
  }
  footer .company_info {
    margin: 20px 0 0;
  }
  footer .company_info > dl > dd {
    line-height: 18px;
    font-size: 11px;
    letter-spacing: -0.5px;
  }
  footer .company_info > dl > dd + dd {
    margin-left: 10px;
    padding-left: 10px;
  }
  footer .company_info > dl > dd + dd:after {
    width: 1px;
  }
  footer .company_info > p {
    line-height: 18px;
    margin-top: 10px;
  }

  .login {
    height: auto;
  }
  .login > .inner {
    width: 100%;
    padding: 10%;
  }
  .login h1 {
    font-size: 20px;
  }
  .login .info .tit {
    height: 30px;
  }
  .login .info .con {
    height: 30px;
  }
  .login .login_form {
    padding: 10%;
  }

  .grader_list {
    width: 100%;
    padding: 0 5%;
    margin: 20px 0;
  }
  .grader_list > .control_bar {
    flex-direction: column;
    margin-top: 10px;
  }
  .grader_list > .control_bar .left {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
  .grader_list > .control_bar .left > label {
    width: 100%;
  }
  .grader_list > .control_bar .left > p {
    margin: 10px 0 0;
  }
  .grader_list > .control_bar .right {
    width: 100%;
    margin-top: 10px;
  }

  .table-responsive {
    white-space: nowrap;
  }
  .grader_list .table > tbody > tr > td > .flex {
    justify-content: space-between;
    align-items: center;
    padding: 0 0.5rem;
  }
  .grader_list .table > tbody > tr > td > .flex > a {
    display: block;
    line-height: 30px;
    color: #0f9df9;
    font-weight: 700;
  }
  .grader_list .table > tbody > tr.bb {
    border-bottom: 3px solid #d5d5d5;
  }

  .grader_score_sheet {
    width: 100%;
    padding: 0 5%;
    margin: 20px 0;
  }
  .grader_score_sheet > .top_label > ul {
    display: block;
    margin-bottom: 10px;
  }
  .grader_score_sheet > .top_label > ul:after {
    display: block;
    content: "";
    clear: both;
  }
  .grader_score_sheet > .top_label > ul > li {
    min-width: 33.333%;
    font-size: 12px;
    text-align: center;
    float: left;
    padding: 5px;
  }
  .grader_score_sheet > .top_label > ul > li:nth-child(4):after {
    display: none;
  }
  .accord_top {
    font-size: 18px;
    padding: 10px;
  }
  .score_sheet td > .flex {
    flex-direction: column;
  }
  .score_sheet td .flex > div + div {
    border-left: none
  }
  .score_sheet td .num {
    display: none;
  }
  .score_sheet td .score {
    width: 100%;
  }
  .score_sheet td .score > label > p {
    line-height: 16px;
    font-size: 12px;
  }

}


/*  관리자 리스트  */
.gnb .nav_wrap {
  position: relative;
  background: #002F7E;
  color: #fff;
}
.gnb .nav_wrap .nav_list_wrap {
  display: flex;
  align-items: center;
  width: 1000px;
  height: 60px;
  line-height: 60px;
  margin: auto;
}
.gnb .nav_wrap .nav_list_wrap > li {
  flex: 1;
}
.gnb .nav_wrap .nav_list_wrap > li a {
  display: inline-block;
  width: 100%;
  height: 100%;
  padding: 0 20px;
  font-size: 15px;
  font-weight: 900;
  text-align: center;
  vertical-align: middle;
}
.gnb .nav_wrap .nav_list_wrap > li a:hover {
  background-color: #0f9df9;
}
.gnb .nav_wrap .nav_list_wrap > li.active a {
  background-color: #0f9df9;
}

.admin_list {
  width: 1000px;
  margin: 30px auto 300px;
}
.admin_list > .top_label {
  font-size: 24px;
  font-weight: 700;
  color: #002F7E;
}
.admin_list > .control_bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
}
.admin_list > .control_bar .left {
  display: flex;
  align-items: center;
}
.admin_list > .control_bar .left > p {
  font-size: 14px;
  font-weight: 700;
  margin-left: 10px;
}
.admin_list > .control_bar label.btn {
  font-size: 14px;
  font-weight: 600;
  color: #002F7E;
  border-color: #002F7E;
}
.admin_list > .control_bar .btn-check:checked + label.btn {
  color: #fff;
  background-color: #002F7E;
  border-color: #002F7E;
}
.admin_list > .control_bar .right {
  display: flex;
}
.admin_list > .control_bar .right > .form-select {
  width: 120px;
  margin-right: 10px;
}
.admin_list .table {
  text-align: center;
  margin-top: 20px;
}
.admin_list .table > thead > tr {
  background-color: #fbfbfb;
}
.admin_list .table > thead > tr > th {
  height: 50px;
  font-weight: 600;
}
.admin_list .table > tbody > tr > td {
  height: 50px;
  color: #333;
}
.admin_list .table > tbody > tr > td > a {
  display: block;
  color: #0f9df9;
  font-weight: 700;
  padding: 10px 0;
  transition: all 0.2s ease-in-out;
}
.admin_list .table > tbody > tr > td > a:hover {
  color: #0b559b;
}
.admin_list .table > tbody > tr > td .ing {
  display: inline-block;
  line-height: 32px;
  font-weight: 500;
  color: #fff;
  padding: 0 15px;
  border-radius: 10px;
  background-color: #002F7E;
}
.admin_list .table > tbody > tr > td .start {
  line-height: 32px;
  font-weight: 500;
  color: #666;
  text-align: center;
  padding: 0 15px;
  border: 1px solid #999;
  border-radius: 10px;
  transition: all 0.2s ease-in-out;
}
.admin_list .table > tbody > tr > td .start:hover {
  color: #000;
  border-color: #333;
}

.exam_list {
  width: 1000px;
  margin: 30px auto 100px;
}
.exam_list .side_menu {
  position: absolute;
  top: 0;
  left: 0;
  width: 180px;
  border-top: 3px solid #002F7E;
  border-right: none;
  transition: all 0.3s ease-in-out;
  opacity: 1;
  z-index: 1;
}
.exam_list .side-hide .side_menu {
  opacity: 0;
  display: none;
}
.exam_list .side_menu > h3 {
  font-size: 20px;
  font-weight: 700;
  padding: 20px;
  border-bottom: 1px solid #ddd;
}
.exam_list .side_menu > ul {
  padding: 20px;
}
.exam_list .side_menu > ul li a {
  font-size: 16px;
  font-weight: 500;
  padding: 10px 0;
}
.exam_list .side_menu > ul li.active a {
  color: #002F7E;
  font-weight: 700;
}
.exam_list .right_con {
  position: relative;
  width: 100%;
  padding-left: 230px;
  transition: all 0.3s ease-in-out;
}
.exam_list .side-hide .right_con {
  padding-left: 0;
}
.exam_list .top_label {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 24px;
  font-weight: 700;
  color: #002F7E;
}
.exam_list .top_label > h3 {
  font-size: 24px;
  font-weight: 700;
  color: #000;
}
.exam_list .top_label > p {
  font-size: 14px;
  color: #000;
}
.exam_list .top_label > button {
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
}
.exam_list .top_label > button > i {
  font-size: 24px;
}
.exam_list .top_label > button > i:hover {
  opacity: 0.8;
}
.label_info {
  font-size: 14px;
  margin: 20px 0;
}
.exam_list .control_bar {
  padding: 20px 30px;
  margin-top: 30px;
  border: 1px solid #ddd;
}
.exam_list .file_bar {
  display: flex;
  align-items: center;
  margin-top: 20px;
  padding: 20px 30px;
  border: 1px solid #ddd;
}
.exam_list .file_bar > .file_text {
  flex-grow: 0;
  flex-basis: 180px;
  margin-right: 20px;
}
.exam_list .file_bar .control_file {
  flex-grow: 1;
  flex-basis: 0;
}
.exam_list .file_bar .control_file input {
  display: none;
}
.exam_list .file_bar .control_file > label {
  position: relative;
  display: block;
  line-height: 40px;
  text-align: center;
  padding: 0 20px;
  border: 1px solid #ddd;
  border-radius: 4px;
}
.exam_list .file_bar .control_file > label:after {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 130px;
  line-height: 40px;
  content: "파일선택";
  border-left: 1px solid #ddd;
  border-radius: 0 4px 4px 0;
  background: #eee;
}
.exam_list .control_bar > h3 {
  font-size: 16px;
  font-weight: 700;
}
.exam_list .control_bar > .select_wrap {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  margin-top: 10px;
}
.exam_list .control_bar > .select_wrap > select {
  flex-grow: 1;
  flex-basis: 0;
  height: 40px;
}
.exam_list .control_bar > .select_wrap > button {
  flex-grow: 0;
  flex-basis: 200px;
  height: 40px;
  margin-left: 20px;
}
.exam_list .control_bar.search > .select_wrap > button {
  margin-left: 0;
}
.exam_list .control_bar > .select_wrap span.dash {
  flex-basis: 20px;
  flex-grow: 0;
  line-height: 40px;
  text-align: center;
}
.exam_list .control_bar > .select_wrap .input-group {
  flex-grow: 0;
  flex-basis: 140px;
}
.exam_list .control_bar > .select_wrap input[type="text"] {
  flex-grow: 0;
  flex-basis: 105px;
}

.exam_list .control_bar > .select_wrap input[type="text"].exam_name {
  flex-grow: 1;
  flex-basis: 0;
  margin-left: 20px;
}
.exam_list .control_bar > .select_wrap input[type="text"].score_item {
  flex-grow: 1;
  flex-basis: 0;
  margin-right: 5px;
}
.exam_list .control_bar > .select_wrap input[type="text"].score_criteria {
  flex-grow: 1;
  flex-basis: 0;
}
.exam_list .datepicker > .input-group > input[type="text"] {
  flex-basis: 135px;
  padding: 5px 35px 5px 10px;
  background: url("../img/calendar-check.svg") no-repeat right 10px center;
  cursor: pointer;
}

.exam_list .assignment .select_wrap {
  align-items: center;
}
.exam_list .assignment .select_wrap input[type="text"] {
  flex: 1;
  text-align: center;
}
.exam_list .assignment .select_wrap input[name="name"] {
  margin-left: 20px !important;
}
.exam_list .assignment .select_wrap .input-group {
  flex-grow: 1;
  flex-basis: 0;
  margin-left: 20px;
}
.exam_list .assignment .select_wrap .input-group:first-child {
  margin-left: 0;
}

.control_bar.search > .select_wrap {
  justify-content: flex-start;
}
.control_bar.search > .select_wrap > p {
  line-height: 34px;
}
.control_bar.search .checkbox_wrap {
  display: flex;
  margin-left: 10px;
}
.control_bar.search .checkbox_wrap .form-check {
  margin-right: 10px;
  padding: 0;
}
.control_bar.search .checkbox_wrap .form-check > input {
  display: none;
}
.control_bar.search .checkbox_wrap .form-check > label {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 34px;
  padding: 0 10px;
  border: 1px solid #ddd;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.control_bar.search .checkbox_wrap .form-check > input:checked + label {
  color: #fff;
  border-color: #002F7E;
  background: #002F7E;
}

.state_wrap {
  flex-grow: 1;
  flex-basis: 0;
  display: flex;
  align-items: center;
  margin-right: 5px;
}
.state_wrap > p {
  flex: 1;
  font-size: 16px;
  font-weight: 700;
  padding: 0 10px;
}
.state_wrap .form-check {
  flex: 1;
  margin: 0 0 0 10px;
  padding: 0;
}
.state_wrap .form-check > input {
  display: none;
}
.state_wrap .form-check > input + label {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  font-weight: 500;
  color: #aaa;
  border: 1px solid #ddd;
  border-radius: 5px;
  transition: all 0.2s ease-in-out;
}
.state_wrap .form-check > input:checked + label {
  font-weight: 700;
  color: #2fa301;
  border-color: #2fa301;
}

.exam_list.grade_card {
  width: 100%;
  max-width: 1000px;
}

.table_wrap {
  margin-top: 30px;
}
.table_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 10px 0 0;
}
.table_top .total {
  flex-grow: 1;
  flex-basis: 0;
  display: flex;
  align-items: center;
}
.table_top .total h3 {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 700;
}
.table_top .total > b {
  color: #0f9df9;
  margin-left: 10px;
}
.table_top .total > span {
  color: #ddd;
  padding: 0 10px;
}
.table_top > button {
  flex-grow: 0;
  flex-basis: 200px;
}
.table_top .left {
  display: flex;
  align-items: center;
}
.table_top .left > p {
  font-size: 18px;
}
.table_top .info_list {
  flex-grow: 1;
  flex-basis: 0;
  display: flex;
}
.table_top .info_list > span {
  display: flex;
  align-items: center;
  margin-left: 10px;
}
.table_top .info_list > span a {
  color: #0f9df9;
  text-decoration: underline;
  text-underline-position: under;
  padding: 0 10px
}
.table_top > select.right {
  width: 140px;
}
.table_top.password .input-group {
  width: 450px;
}
.table_top.password .input-group > button {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}

.table_bot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.table_wrap .table {
  text-align: center;
  margin-top: 10px;
}
.table_wrap .table.table-hover tbody > tr {
  cursor: pointer;
}
.table_wrap .table.table-hover tbody > tr:hover td:nth-child(3) {
  text-decoration: underline;
  text-underline-position: under;
}
.table_wrap .table th {
  height: 45px;
  vertical-align: middle;
  background: #fbfbfb;
}
.table_wrap .table td {
  height: 45px;
  vertical-align: middle;
}
.table_wrap .table td > input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 0;
}
.table_wrap .table td > button {
  color: #0f9df9;
  text-decoration: underline;
  text-underline-position: under;
}
.table_wrap .table td > button:hover {
  color: #002F7E;
}
.table_wrap .table td .required {
  display: inline-block;
  line-height: 10px;
  color: #ff0000;
  margin: 5px 0 0 5px;
}
.table_wrap .table td.cancel {
  color: #0f9df9;
}
.table_wrap .table td.cancel button {
  font-size: 12px;
  color: #666;
  text-decoration: unset;
  padding: 5px 10px;
  margin-left: 5px;
  border: 1px solid #ddd;
  border-radius: 5px;
}
.table_wrap .table td.cancel button:hover {
  border-color: #aaa;
}
.table_wrap .table td > a {
  color: #0f9df9;
  text-decoration: underline;
  text-underline-position: under;
}
.table_wrap .table td > a:hover {
  color: #002F7E;
}
.table_wrap .table td > a.gray {
  color: #999;
}

.plan_regist .table th > span {
  color: #ff0000;
  margin-left: 5px;
}
.plan_regist .table th:first-child {
  border-right: none;
}
.plan_regist .table td {
  height: auto;
  padding: 10px;
}
.plan_regist .table td input[type="text"],
.plan_regist .table td select,
.plan_regist .table td button {
  height: 40px;
}
.plan_regist .table td .datepicker {
  display: flex;
}
.plan_regist .table td .datepicker .input-group {
  flex-grow: 0;
  flex-basis: 300px;
  display: flex;
}
.plan_regist .table td .datepicker .input-group .datepicker {
  flex: 1;
  text-align: center;
}
.plan_regist .table td .datepicker .input-group .timepicker {
  flex: 1;
  text-align: center;
  padding: 5px 35px 5px 10px;
  background: url(../img/clock.svg) no-repeat right 10px center;
  cursor: pointer;
}
.plan_regist .table td .datepicker .add_date {
  flex-grow: 1;
  flex-basis: 0;
  text-align: right;
}
.plan_regist .table td .datepicker .add_date > button {
  width: 200px;
}
.plan_regist .registrant {
  display: flex;
  align-items: stretch;
}
.plan_regist .registrant > select {
  margin-right: 10px;
}
.plan_regist .registrant > button {
  flex-grow: 0;
  flex-basis: 100px;
  min-width: 100px;
}
.plan_regist .lookup {
  text-align: left;
}
.plan_regist .relationship {
  display: flex;
  align-items: center;
}
.plan_regist .relationship .form-check + .form-check {
  margin-left: 10px;
}
.select_scoresheet {
  position: relative;
  padding-right: 70px;
}
.select_scoresheet + .select_scoresheet {
  margin-top: 10px;
}
.select_scoresheet > .selected {
  flex-grow: 1;
  flex-basis: 0;
  position: relative;
  display: flex;
  align-items: center;
  padding-right: 34px;
}
.select_scoresheet > .selected > button {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  color: #aaa;
  border: 1px solid #ccc;
}
.select_scoresheet > .selected > p {
  max-width: 200px;
  line-height: 24px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.select_scoresheet > .selected > button:hover {
  color: #555;
  border-color: #aaa;
}
.select_scoresheet > .selected > button > i {
  line-height: 10px;
  font-size: 12px;
}
.select_scoresheet > button {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 28px !important;
  font-size: 12px;
  font-weight: 700;
}

.selectScoresheetModal .select_wrap {
  margin-bottom: 20px;
}
.selectScoresheetModal .select_wrap > select {
  flex-grow: 0;
  flex-basis: 120px;
  margin: 0;
}
.selectScoresheetModal .select_wrap > input[type="text"].exam_name {
  flex-grow: 1;
  flex-basis: 0;
  margin-left: 10px;
}
.selectScoresheetModal .select_wrap > button {
  margin-left: 10px;
}
.selectScoresheetModal .d-grid {
  margin-top: 10px;
}
.selectScoresheetModal .checkbox_wrap {
  height: 250px;
  margin-top: 20px;
  overflow-y: auto;
}
.selectScoresheetModal .checkbox_wrap .form-check {
  position: relative;
  padding: 0;
  margin: 0;
}
.selectScoresheetModal .checkbox_wrap .form-check input[type="checkbox"] {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  margin: 0;
}
.selectScoresheetModal .checkbox_wrap .form-check input[type="checkbox"] + label {
  display: block;
  line-height: 30px;
  padding: 10px 10px 10px 50px;
  font-size: 16px;
}
.selectScoresheetModal .checkbox_wrap .form-check input[type="checkbox"]:checked + label {
  color: #002F7E;
  background: #ebf9ff;
}

.ui-menu-item .ui-corner-all {
  height: 30px;
  cursor: pointer;
}
.ui-menu-item .ui-state-hover {
  color: #fff;
  background: #002F7E;
}

.table_wrap .pagination .page-link {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.table_wrap .pagination .active .page-link {
  background-color: #002F7E;
  border-color: #002F7E;
}

#checkModal .modal-header {
  padding: 30px;
  border-bottom: 5px solid #002F7E;
}
#checkModal .modal-header h5 {
  font-size: 20px;
  font-weight: 700;
}
#checkModal .modal-body {
  padding: 30px;
}
#checkModal .modal-body .table_top .info_list {
  flex-grow: 1;
  flex-basis: 0;
  text-align: left;
}
#checkModal .modal-body .search {
  flex-grow: 0;
  flex-basis: 350px;
  display: flex;
}
#checkModal .modal-body .search select {
  width: 100px;
}
#checkModal .modal-body .search .input-group {
  margin-left: 10px
}
#checkModal .modal-body .search .input-group > input {
  min-width: 100px;
}

.modal-header {
  padding: 20px;
}
.modal-header > h5 {
  font-size: 16px;
  font-weight: 700;
}
.modal-header > h5 span {
  display: block;
  line-height: 16px;
  font-size: 12px;
  font-weight: 400;
}
.modal-body {
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  padding: 20px;
}
.modal-footer {
  position: relative;
  padding: 20px;
}
.modal-footer.center {
  justify-content: center;
}

.tab_wrap {
  position: relative;
  margin-top: 20px;
}
.tab_wrap .nav-pills {
  border-bottom: 1px solid #ddd;
}
.tab_wrap .nav-pills .nav-link {
  width: 150px;
  text-align: center;
  color: #333;
  border-radius: 0;
}
.tab_wrap .nav-pills .nav-link.active, .tab_wrap .nav-pills .show>.nav-link {
  color: #fff;
  background: #002F7E;
}
.tab_wrap .nav-bar {
  border-bottom: 1px solid #ddd;
}
.tab_wrap .nav-bar .nav-link {
  width: 150px;
  text-align: center;
  color: #333;
  border-radius: 0;
}
.tab_wrap .nav-bar .nav-link.active, .tab_wrap .nav-pills .show>.nav-link {
  font-weight: 700;
  color: #002F7E;
  border-bottom: 3px solid #002F7E;
}
.tab_wrap .tab-content {
  padding: 10px 0;
}

table.examroom {
  text-align: center;
  margin: 10px 0;
  border-color: #ddd;
}
.examroom th {
  background: #fbfbfb;
}
.examroom td {
  padding: 10px;
}
.examroom td > button {
  color: #0f9df9;
  text-decoration: underline;
  text-underline-position: under;
  padding: 4px;
}
.examroom td > button:focus {
  box-shadow: none;
}
.examroom td.proceeding {
  color: #fff;
  background: #2fa301;
}
.examroom td.professor_complete {
  color: #fff;
  background: #e69138;
}
.examroom td.patient_complete {
  color: #fff;
  background: #f1c232;
}
.examroom td.noshow {
  color: #777;
  background: #eee;
}

table.assignment {
  text-align: center;
  margin: 10px 0;
  border-color: #ddd;
}
.assignment th {
  background: #fbfbfb;
}
.assignment td {
  padding: 10px;
}
.assignment td > input[type="text"].exam_num {
  display: inline-block;
  width: 120px;
  text-align: center;
}
.assignment td > input[type="text"].exam_num.same_warning {
  color: #ff0000;
  border-color: #ff0000;
}
.assignment td.null {
  color: #aaa;
  padding: 30px 0;
}

.assign_timetable {
  text-align: center;
  margin: 10px 0;
  border-color: #ddd;
}
.assign_timetable th {
  font-size: 12px;
  background: #fbfbfb;
}
.assign_timetable th.bold {
  font-size: 14px;
}
.assign_timetable th.null {
  background: #eee;
}
.assign_timetable td {
  padding: 10px 5px;
}
.assign_timetable td input[type="text"] {
  width: 70px;
  font-size: 11px;
  text-align: center;
  padding: 5px;
  border: none;
  border-bottom: 1px solid #ddd;
  border-radius: 0;
}
.assign_timetable td > input[type="text"][readonly] {
  display: inline-block;
  background: #fff;
}
.assign_timetable td .btn {
  font-size: 12px;
  padding: 10px;
}
.assign_timetable td .btn.icon {
  padding: 0 4px;
}
.assign_timetable td .btn.icon i {
  font-size: 10px;
}
.assign_timetable td .time-input {
  display: flex;
  align-items: center;
  justify-content: center;
}
.assign_timetable td .time-input > input[type="text"] {
  width: 35px;
}
.assign_timetable td.reference {
  background: #f1f9ff;
}
.assign_timetable td.reference input[type="text"] {
  padding: 5px;
  background: transparent;
}

.completeModal .accord_top > p {
  position: absolute;
  top: -35px;
  left: 0;
}
.completeModal .regist_bot {
  margin-top: 20px;
}

.excelUpload .modal-body {
  padding: 30px;
}
.excelUpload .input-group {
  width: 70%;
  margin: 30px auto 0;
}
.excelUpload .input-group > input[type="file"] {
  line-height: 30px;
  border-radius: 5px !important;
}
.excelUpload .input-group > button {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: #aaa;
  transition: all 0.2s ease-in-out;
  z-index: 5;
}
.excelUpload .input-group > button:hover {
  color: #002F7E;
}
.excelUpload .input-group > button > i {
  line-height: 20px;
  font-size: 20px;
}
.excelUpload .modal-footer {
  justify-content: space-between;
}

.cycle {
  min-width: 1280px;
  width: 100%;
  border-top: 4px solid #002F7E;
  border-bottom: 1px solid #e6e6e6;
}
.cycle .top-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px;
}
.cycle .top-header > .flex > h3 {
  position: relative;
  line-height: 22px;
  font-size: 18px;
  font-weight: 700;
}
.cycle .top-header .flex > span {
  line-height: 24px;
  font-size: 12px;
  padding: 0 20px;
  margin-left: 5px;
  border: 1px solid #ddd;
}
.cycle .top-header .flex > span.complete {
  color: #fff;
  border-color: #002F7E;
  background-color: #002F7E;
}
.cycle .top-header .flex > span.professor_complete {
  color: #fff;
  border-color: #e69138;
  background-color: #e69138;
}
.cycle .top-header .flex > span.patient_complete {
  color: #fff;
  border-color: #f1c232;
  background-color: #f1c232;
}
.cycle .top-header .flex > span.proceeding {
  color: #fff;
  border-color: #2fa301;
  background-color: #2fa301;
}

.examroom_timetable {
  width: 100%;
  padding: 30px
}
.examroom_timetable > .top_label {
  font-size: 24px;
  font-weight: 700;
  color: #002F7E;
}
.examroom_timetable > .control_bar {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  padding: 20px 30px;
  border: 1px solid #ddd;
}

.select_wrap {
  display: flex;
  align-items: stretch;
}
.select_wrap:hover {
  border-color: #aaa;
}
.select_wrap > select {
  flex-grow: 0;
  flex-basis: 150px;
  height: 40px;
  cursor: pointer;
  margin-right: 5px;
}
.select_wrap > .input-group {
  flex-grow: 1;
  flex-basis: 0;
  display: flex;
  align-items: center;
}
.select_wrap > .input-group > h3 {
  font-size: 18px;
  font-weight: 700;
  color: #002F7E;
  margin-right: 20px;
}
.select_wrap > .input-group > input[type="text"] {
  height: 40px;
}
.select_wrap > .input-group > h3 + input[type="text"] {
  width: 45px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  padding: 0 10px;
  border-radius: 0;
  background-color: #fff;
}
.select_wrap > .input-group > p {
  font-size: 18px;
  font-weight: 700;
  margin-right: 20px;
}
.select_wrap > .input-group > p + input[type="text"] {
  width: 60px;
  height: 34px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  padding: 0 10px;
  border-radius: 0;
  background-color: #fff;
}
.select_wrap > .input-group .btn {
  border-radius: 3px;
}
.select_wrap.left > select {
  flex-basis: 110px;
}

.examroom_timetable .control_bar > .update {
  padding: 0 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  transition: all 0.2s ease-in-out;
}
.examroom_timetable .control_bar > .update:hover {
  border-color: #666;
}

.cycle_wrap {
  margin-top: 30px;
}
.cycle_wrap h2 {
  font-size: 30px;
}
.cycle_wrap ul {
  width: 100%;
  margin: 20px 0 0 -2px;
}
.cycle_wrap ul:after {
  display: block;
  content: "";
  clear: both;
}
.cycle_wrap ul li {
  width: 8.0682%;
  font-size: 12px;
  text-align: center;
  float: left;
  padding: 10px 0;
  margin: 2px;
  border: 1px solid #ddd;
}
.cycle_wrap ul li > p {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 5px;
}
.cycle_wrap ul.head li {
  background-color: #fbfbfb;
}
.cycle_wrap ul.head li.rest {
  color: #fff;
  border-color: #666;
  background-color: #666;
}

.cycle_wrap .body {
  margin-top: 20px;
}
.cycle_wrap .body > h3 {
  font-size: 16px;
  font-weight: 700;
}
.cycle_wrap .body ul li {
  padding: 0;
  transition: all 0.2s ease-in-out;
}
.cycle_wrap .body ul li:hover {
  border-color: #aaa;
}
.cycle_wrap .body ul li.complete {
  color: #fff;
  border-color: #002F7E;
  background-color: #002F7E;
}
.cycle_wrap .body ul li.proceeding {
  color: #fff;
  border-color: #2fa301;
  background-color: #2fa301;
}
.cycle_wrap .body ul li.professor_complete {
  color: #fff;
  border-color: #e69138;
  background-color: #e69138;
}
.cycle_wrap .body ul li.patient_complete {
  color: #fff;
  border-color: #f1c232;
  background-color: #f1c232;
}
.cycle_wrap .body ul li.noshow {
  color: #777;
  border-color: #ddd;
  background-color: #ddd;
}
.cycle_wrap .body ul li a {
  display: block;
  line-height: 24px;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 5px;
}

.popover.show .popover-header {
  text-align: center;
  background-color: #fbfbfb;
}
.popover.show .popover-body {
  text-align: center;
}
.popover.show .popover-body a {
  font-weight: 700;
  color: #0d6efd;
}


.slide_table {
  display: flex;
  margin: 10px 0;
}
.slide_table th {
  min-width: 50px;
  height: 50px;
  line-height: 16px;
  font-size: 12px;
  text-align: center;
  padding: 10px 5px;
  background: #fbfbfb;
  vertical-align: middle;
}
.slide_table th.link {
  color: #0f9df9;
  cursor: pointer;
}
.slide_table th.link:hover {
  color: #0d6efd;
}
.slide_table td {
  min-width: 50px;
  height: 50px;
  line-height: 16px;
  font-size: 12px;
  text-align: center;
  padding: 10px;
  background: #fff;
  vertical-align: middle;
}
.slide_table > .table {
  flex-grow: 0;
  flex-basis: 280px;
  height: 100%;
  margin: 0;
}
.slide_table > .table thead th {
  height: 100px;
}
.slide_table .mcs-horizontal {
  flex-grow: 1;
  flex-basis: 0;
  margin: 0;
  white-space: nowrap;
  overflow-x: auto;
}
.slide_table .mcs-horizontal table th:first-child,
.slide_table .mcs-horizontal table td:first-child {
  border-left: none;
}
.slide_table .mcs-horizontal .mCSB_horizontal.mCSB_inside > .mCSB_container,
.slide_table .mcs-horizontal table {
  margin: 0;
}
.radio_wrap {
  display: flex;
  justify-content: center;
  margin-left: 10px;
}
.radio_wrap > .form-check {
  margin-bottom: 0;
  padding-left: 5px;
}
.radio_wrap input {
  display: none;
}
.radio_wrap label {
  line-height: 40px;
  padding: 0 30px;
  border: 1px solid #999;
  border-radius: 5px;
  cursor: pointer;
}
.radio_wrap input:checked + label {
  color: #fff;
  border: none;
  background: #002F7E;
}

.video_table td a {
  color: #0f9df9;
  text-decoration: underline;
  text-underline-position: under;
}
.video_table td.red a {
  color: #ff0000;
}
.video_modal .title {
  text-align: left;
  padding: 0 0 10px;
}
.video_modal .ratio {
  margin: 0 0 20px;
}

.scoring_status {
  width: 1000px;
  margin: auto;
  padding-bottom: 1px;
}
.scoring_status > h1 {
  width: 100%;
  line-height: 30px;
  font-size: 16px;
  font-weight: 700;
  padding: 20px 0;
  border-bottom: 1px solid #dedede;
}
.scoring_status .video_body {
  font-size: 16px;
  font-weight: 700;
  padding: 40px 0;
  overflow-y: auto;
}
.scoring_status .video_body .title {
  padding: 0 0 10px;
}
.scoring_status .video_body .ratio {
  margin: 0 0 20px;
}
.scoring_status .video_footer {
  display: flex;
  justify-content: center;
  padding: 20px;
  border-top: 1px solid #eee;
}
.scoring_status .video_footer > button {
  flex-grow: 0;
  flex-basis: 120px;
}

.score_cards {
  position: relative;
  display: flex;
  margin-top: 30px;
}
.score_cards .control_bar > .select_wrap > select {
  flex-grow: 0;
  flex-basis: 120px;
}
.score_cards .control_bar.search > .select_wrap > select {
  flex-basis: 150px;
}
.score_cards .table_wrap .table td > button {
  text-decoration: unset;
  text-underline-position: under;
}
.score_cards .table_wrap .table td > button.default-bordered {
  color: #303030;
}

.regist_top {
  text-align: center;
  margin-top: 30px;
}
.regist_top th {
  background: #fbfbfb;
}
.regist_top td {
  padding: 0 10px;
}
.regist_top td .multiSelect_wrap {
  padding: 10px;
  border: none;
  background: #fff;
}
.multiSelect_wrap {
  padding: 20px;
  margin-bottom: 30px;
  border: 1px solid #ddd;
  background: #fbfbfb;
}
.multiSelect_wrap:last-child {
  margin: 0;
}
.multiSelect_wrap > .select_item {
  position: relative;
  display: flex;
  padding-bottom: 5px;
  border-bottom: 1px solid #ddd;
  cursor: pointer;
}
.multiSelect_wrap > .dropdown-menu.show {
  min-width: calc(100% - 40px);
  max-height: 200px;
  overflow-y: auto;
}
.select_item:hover {
  border-color: #aaa;
}
.multiSelect_select {
  display: none;
  position: absolute;
  top: 100%;
}
.multiSelect_item {
  display: flex;
  align-items: center;
  line-height: 14px;
  font-size: 13px;
  color: #fff;
  padding: 7px 10px;
  border-radius: 5px;
  background: #002F7E;
  cursor: default;
}
.multiSelect_item + div {
  margin-left: 5px;
}
.multiSelect_item > i {
  line-height: 14px;
  font-size: 10px;
  margin-left: 10px;
  cursor: pointer;
}
.multiSelect_item > i:hover {
  color: #0f9df9;
}
.item_add {
  max-width: 770px;
  white-space: nowrap;
  overflow: overlay;
}
.item_add::-webkit-scrollbar {
  height: 10px;
}
.item_add::-webkit-scrollbar-thumb {
  border-radius: 100px;
  background-color: hsla(0, 0%, 20%, 0.2);
}
.item_add:after {
  display: block;
  content: "";
  clear: both;
}
.item_add > button {
  width: 50px;
  height: 50px;
  font-size: 18px;
  font-weight: 700;
  color: #303030;
  margin-right: -5px;
}
.item_add > button.active {
  color: #fff;
  background: #002F7E;
}
.item_add > button:hover {
  background-color: #eee;
}
.item_add > button.active:hover {
  background-color: #002F7E;
}
.item_add > button.prev {
  position: sticky;
  left: 0;
  background: #fff;
}
.item_add > button.next {
  position: sticky;
  right: 0;
  background: #fff;
}
.item_add2 > button.add {
  position: sticky;
  right: 49px;
  width: 170px;
  border: 1px solid #666;
  margin: 5px;
  background: #fff;
}
.item_add2 > button > i {
  line-height: 24px;
  font-size: 24px;
  margin-right: 5px;
}
.item_add2 > button {
  width: 50px;
  height: 50px;
  font-size: 18px;
  font-weight: 700;
  color: #303030;
  margin-right: -5px;
}
.item_add2 {
  max-width: 770px;
  white-space: nowrap;
  overflow: overlay;
}
.regist_con {
  display: flex;
  margin-top: 30px;
}
.regist_con > div > h3 {
  line-height: 24px;
  font-size: 18px;
  font-weight: 700;
  color: #002F7E;
  margin-bottom: 15px;
}
.input-group > iframe {
  height: 270px !important;
}
.regist_con .left {
  flex-grow: 1;
  flex-basis: 0;
  margin-right: 20px;
  padding-right: 20px;
  border-right: 1px solid #ddd;
}
.regist_con .left .input-group {
  margin-bottom: 30px;
}
.regist_con .right {
  flex-grow: 0;
  flex-basis: 240px;
}
.regist_con .right .grade_wrap {
  margin-bottom: 20px;
}
.regist_con .right .grade_wrap tr {
  cursor: pointer;
}
.regist_con .right .grade_wrap tr.active {
  background: #002F7E;
}
.regist_con .right .grade_wrap tr.active td {
  color: #fff;
}
.regist_con .right .grade_wrap td:first-child {
  text-align: center;
}
.regist_con .right .grade_wrap td {
  padding: 10px;
}
.regist_con .input_score {
  position: relative;
  text-align: right;
}
.regist_con .input_score:after {
  position: absolute;
  top: 0;
  right: 5px;
  display: block;
  line-height: 30px;
}
.regist_con .input_score > input {
  max-width: 50px;
  line-height: 30px;
  text-align: center;
  outline: none;
  padding-right: 15px;
  border: none;
  border-bottom: 1px solid #ddd;
}
.regist_con .align-right {
  text-align: right;
}
.regist_con.table th {
  text-align: center;
  background: #fbfbfb;
}
.regist_con.table td {
  text-align: center;
}
.regist_con.table td.text-left {
  text-align: left;
}
.regist_con.table th.text-left {
  text-align: left;
}
.regist_con.score_sheet .score {
  width: 250px;
}
.regist_con.score_sheet .con {
  text-align: left;
}
.regist_con.table tr.group_header td {
  padding: 1rem;
}
.regist_con .add_wrap {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  border: 1px solid #ddd;
}
.regist_con .add_wrap > button {
  position: relative;
  width: 35px;
  height: 28px;
  color: #0d514c;
  padding: 0;
}
.regist_con .add_wrap > button:hover {
  opacity: 0.8;
}
.regist_con .add_wrap > button + button:before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 10px;
  content: "";
  background: #ddd;
}
.option_box {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 5px;
}
.option_box > p {
  flex-grow: 0;
  flex-basis: 30px;
  line-height: 28px;
  font-size: 16px;
  text-align: center;
  border: 1px solid #ddd;
  border-right: none;
  cursor: default;
}
.option_box > .btn-group-vertical {
  flex-grow: 0;
  flex-basis: 20px;
}
.option_box > .btn-group-vertical > button {
  width: 100%;
  height: 15px;
  padding: 0;
  border: 1px solid #ddd;
  border-radius: 0;
}
.option_box > .btn-group-vertical > button:hover,
.option_box > .btn-group-vertical > button:focus {
  color: #fff;
}
.option_box > .btn-group-vertical > button:last-child {
  margin-top: 0 !important;
  border-top: 1px solid transparent;
}
.option_box > button.close {
  flex-grow: 0;
  flex-basis: 30px;
  height: 30px;
  margin-left: auto;
  padding: 0;
  border-radius: 0;
}
.option_box > button.close > i {
  line-height: 30px;
  font-size: 24px;
  color: #333;
}

.upload {
  display: flex;
  width: 100%;
}
.upload > figure {
  flex-grow: 0;
  flex-basis: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  background: #eee;
}
.upload > figure > i {
  line-height: 18px;
  font-size: 20px;
}
.upload > figure > i.big {
  font-size: 30px;
  margin: 0 5px;
}
.filebox {
  flex-grow: 1;
  flex-basis: 0;
  display: flex;
  height: 60px;
  padding: 10px;
  border: 1px solid #eee;
}
.filebox .upload_name {
  flex-grow: 1;
  flex-basis: 0;
  font-size: 12px;
  color: #999;
  margin-right: 10px;
  vertical-align: middle;
}
.filebox .upload_name > span {
  display: block;
  line-height: 16px;
  font-size: 11px;
}
.filebox .upload_name > p {
  max-width: 257px;
  line-height: 24px;
  color: #333;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.filebox label {
  flex-grow: 0;
  flex-basis: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 80px;
  height: 38px;
  font-size: 12px;
  text-align: center;
  color: #fff;
  background-color: #002F7E;
  vertical-align: middle;
  cursor: pointer;
  transition: all 0.2s ease;
}
.filebox label:hover {
  opacity: 0.9;
}
.filebox input[type="file"] {
  position: absolute;
  width: 0;
  height: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
}
.form-check-input,
.form-check-label {
  cursor: pointer;
}
.form-check-input:checked {
  background: #002F7E;
  border-color: #002F7E;
}

.treatment .form-check {
  padding: 0;
  margin: 0;
}
.treatment .form-check + .form-check {
  margin-left: 5px !important;
}
.treatment .form-check > input {
  display: none;
}
.treatment .form-check > label {
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 10px;
  cursor: pointer;
}
.treatment .form-check-input:checked + label {
  color: #fff;
  background: #002F7E;
  border-color: #002F7E;
}
.regist_bot {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
}

.setting {
  margin-top: 30px;
}
.setting .set_item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.setting .set_item + .set_item {
  margin-top: 20px;
}
.setting .set_item > label {
  font-size: 16px;
  font-weight: 700;
}
.setting .set_item .fluid {
  display: flex;
  width: 100%;
  padding: 20px;
}
.setting .set_item .fluid dl {
  flex: 1;
}
.setting .set_item .fluid dl + dl {
  margin-left: 30px;
}
.setting .set_item .fluid dl > dt {
  line-height: 40px;
  color: #002F7E;
  margin-bottom: 20px;
  border-bottom: 1px solid #002F7E;
}
.setting .set_item .fluid dl > dd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}
.setting .set_item .fluid dl > dd > p {
  width: 7%;
}
.setting .set_item .fluid dl > dd input {
  width: 100%;
  height: 30px;
  padding: 0 10px;
  outline: none;
  border: none;
  border-bottom: 1px solid #002F7E;
}
.setting .set_item .fluid dl > dd input:hover,
.setting .set_item .fluid dl > dd input:focus {
  border-color: #0f9df9;
}
.setting .set_item .fluid dl > dd .question {
  width: 60%;
  padding: 0;
}
.setting .set_item .fluid dl > dd .score {
  position: relative;
  width: 20%;
}
.setting .set_item .fluid dl > dd .score:after {
  position: absolute;
  top: 0;
  right: 10px;
  display: block;
  line-height: 28px;
  content: "점";
}
.setting .set_item .fluid dl > dd button.btn {
  width: 100%;
  padding: 0;
  line-height: 30px;
  font-size: 14px;
  text-align: left;
  border-radius: 10px;
}
.setting .set_item .fluid dl.E-type dd .question {
  width: 50%;
}
.setting .set_item .fluid dl.E-type dd .del {
  width: 7%;
  line-height: 16px;
  font-size: 20px;
  color: #aaa;
}
.details {
  margin-top: 30px;
}
.details > h4 {
  padding: 15px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  border: 1px solid #ddd;
  background: #fbfbfb;
}
.details > .nav {
  margin-top: 20px;
  border-bottom: 1px solid #002F7E;
}
.details > .nav > li {
  flex: 1;
}
.details > .nav > li > button.nav-link {
  width: 100%;
  color: #303030;
  border-radius: 0;
}
.details > .nav > li > button.nav-link.active,
.details > .nav > li > button.show > .nav-link {
  color: #fff;
  background-color: #002F7E;
}
.details .tab-content .adm_title {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
}
.details .tab-content .adm_title > h5 {
  flex-grow: 0;
  flex-basis: 200px;
  line-height: 30px;
  font-size: 18px;
  font-weight: 700;
}
.details .tab-content .adm_title > h5 input {
  height: 36px;
  padding: 0 10px;
}
.details .tab-content .adm_title > .changeBtnWrap {
  flex-grow: 0;
  flex-basis: 140px;
  display: flex;
}
.details .tab-content .adm_title > .changeBtnWrap > button {
  width: 100%;
  height: 36px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  color: #002F7E;
  border: 1px solid #002F7E;
  cursor: pointer;
}
.details .tab-content .adm_title > .changeBtnWrap > button.btnCancel {
  max-width: 50px;
}
.details .tab-content .adm_title > .changeBtnWrap > button + button {
  margin-left: 10px;
}
.details_table th {
  background: #fbfbfb;
}
.details_table td > a {
  color: #0f9df9;
}
.scoring_question tbody tr {
  cursor: pointer;
}
.scoring_question tbody tr:hover {
  background: #fbfbfb;
}

.fluid_wrap {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin: 20px 0;
}
.fluid_wrap .form-check {
  font-size: 14px;
  margin-right: 20px;
}
.fluid_wrap .form-check > label {
  font-size: 14px;
}

.web_view_wrap {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 700px;
  padding: 50px;
  margin-bottom: 20px;
  background: #fbfbfb;
  overflow-y: auto;
}
.web_view_wrap .web_view {
  position: relative;
  width: 100%;
  padding: 30px;
  border: 1px solid #ddd;
  background: #fff;
  box-shadow: 5px 5px 10px rgb(0 0 0 / 5%);
}
.web_view_wrap .web_view + .web_view {
  margin-top: 50px;
}
.web_view .view_header {
  position: relative;
  text-align: center;
  padding: 20px;
  border: 1px solid #ddd;
}
.web_view.score .view_header:after {
  position: absolute;
  top: 20px;
  left: 20px;
  display: block;
  line-height: 20px;
  font-weight: 700;
  color: #fff;
  content: "채점표";
  letter-spacing: 0.5px;
  padding: 5px 15px;
  background: #002F7E;
}
.web_view.grade .view_header:after {
  position: absolute;
  top: 20px;
  left: 20px;
  display: block;
  line-height: 20px;
  font-weight: 700;
  color: #fff;
  content: "성적표";
  letter-spacing: 0.5px;
  padding: 5px 15px;
  background: #e69138;
}
.web_view .view_header > p {
  line-height: 30px;
  font-size: 16px;
  font-weight: 700;
}
.web_view .view_header > h1 {
  font-size: 30px;
  font-weight: 700;
  margin-top: 5px;
}

.web_view .grader_score_sheet {
  margin: 30px 0 0;
}
.web_view .score_sheet th {
  line-height: 30px;
  font-size: 18px;
  font-weight: 700;
  background: #fff;
}
.web_view .score_sheet td {
  padding: 0;
}
.web_view .score_sheet td .score {
  width: 350px;
}
.web_view .textarea_wrap {
  text-align: left;
  margin-top: 30px;
}

.grade_sheet > h3 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 20px;
}
.grade_sheet table {
  margin-top: 20px;
}
.grade_sheet table thead th {
  font-size: 14px;
}
.grade_sheet table thead th:first-child,
.grade_sheet .top_label table thead th {
  color: #fff;
  background: #002F7E;
}
.grade_sheet table tbody td {
  font-size: 14px;
}
.grade_sheet .table-type01 th {
  background: #fdffe8;
}
.grade_sheet .table-type02 th {
  background: #fff1f1;
}
.grade_sheet .table-type03 th {
  background: #e3f9ec;
}
.grade_sheet .table-type04 td:last-child {
  text-align: left;
}
.grade_sheet .table-type04 td:first-child {
  background: #fdffe8;
}








