@charset "UTF-8";
/*---------------------------------------*/
/*--------   Table of contents   --------*/
/*
0.  _reset.scss         : 초기화
0.  incommon.scss       : @use "theme"; @use "mixin"; 공통 scss 
1.  login.scss          : 로그인, 회원가입 관련
2.  manage.scss         : 학습관리-수업반목록, 학생목록, 학습리포트, 유닛별 학습리포트, 월별 학습리포트
-----------------------------------------*/
/* @use "mypage.scss"; */
/* @use "myhome.scss"; */
/* @use "ac_manage.scss";
@use "ac_preparation.scss";
@use "ac_manage2.scss";
@use "ac_class.scss";
@use "ac_class2.scss";
@use "ac_building.scss"; */
/* @use "std_class.scss";
@use "std_class2.scss";
@use "std_manage.scss"; */
/* @use "app_student.scss"; */
/* @use "main.scss"; */
@import url("/js/bootstrap/bootstrap.min.css");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;500;700&display=swap");
/*---------------------------------------*/
/*--------   0. reset.scss   ------------*/
/*---------------------------------------*/
/* 
http://meyerweb.com/eric/tools/css/reset/ 
v2.0 | 20110126
License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
  font-size: 100px;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*---------------------------------------*/
/*--------   theme.scss   ---------------*/
/*---------------------------------------*/
/* All */
html,
body {
  height: 100%;
  font-family: "Noto Sans KR", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  color: #454545;
  letter-spacing: -0.5px;
}

ul,
ol {
  margin-bottom: 0;
}

::-webkit-scrollbar {
  -webkit-appearance: none;
}

::-webkit-scrollbar:vertical {
  width: 10px;
}

::-webkit-scrollbar:horizontal {
  height: 10px;
}

::-webkit-scrollbar-thumb {
  background-color: #D1D3D4;
  border-radius: 10px;
  border: 2px solid #ffffff;
}

::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: #ffffff;
}


.form-control1
{
  height: 30px;  
  padding: 0px;
  font-size: 16px;
  border-radius: 5px;
  border-color: rgba(167, 169, 172, 0.4);
  border-width: 0.4px;
  width:100%;    
}
.form-control1::-moz-placeholder {
  color: #D1D3D4;
  font-size:16px;
}
.form-control1::placeholder {
  color: #D1D3D4;
  font-size:16px;
}
.form-control1:focus {
  color: #454545;
  box-shadow: none;
  border-color: #7391FA;
  border-width: 1px;
}


/* Form Elements */
.form-control {
  height: 39px;  
  padding: 10px;
  font-size: 14px;
  border-radius: 5px;
  border-color: rgba(167, 169, 172, 0.4);
  border-width: 0.4px;
}
.form-control::-moz-placeholder {
  color: #D1D3D4;
}
.form-control::placeholder {
  color: #D1D3D4;
  font-size:14px;
}
.form-control:focus {
  color: #454545;
  box-shadow: none;
  border-color: #7391FA;
  border-width: 1px;
}
.form-control.xs-input {
  padding: 1px 8px;
  width: auto;
  min-width: 100px;
  height: 20px;
  font-size: 12px;
  line-height: 17px;
}

.form-group label {
  margin-right: 5px;
  line-height: 39px;
  vertical-align: middle;
  font-size: 14px !important;
  font-weight: 400;
}

.form-inline {
  width: auto;
  display: inline-block;
  vertical-align: middle;
}

.input-group .input-search{
  position: relative;
  display: inline-block;
}
.input-group.input-search .form-control{
  display: block;
  flex: none;
  float: left;
  width: -moz-fit-content;
  width: fit-content;
  width: 100%;
  border-top-right-radius: 5px !important;
  border-bottom-right-radius: 5px !important;
  padding-right: 40px;
}
.input-group.input-search .form-control:focus + .input-group-append .icons_search_off {
  background-image: url(/images/v2/icons/icon_search_on.svg);  
}
.input-group.input-search .input-group-append {
  z-index: 0;
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  height: 39px;
  padding: 8px;
}
.input-group.input-search .input-group-append .btn {
  float: left;
}
.input-group.input-search .input-group-append .btn.icons_x_circle_off {
  margin-top: 2px;
  margin-right: 2px;
  padding: 8px;
}

.btn_crud_point {
  align-items: center;
  min-width: 70px;
  height: 40px;
  padding: 7px 24px;
  gap: 10px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 400;
  background: #FF8900;
  color: #FFFFFF;
  font-weight: 500;
}
.btn_crud_point:hover, .btn_crud_point:focus, .btn_crud_point:active {
  background: #2C51D7;
  color: #FFFFFF;
  font-weight: 500;
}
.btn_crud_point.disabled {
  cursor: default;
  box-shadow: none;
  background: #FDFDFD;
  color: #D1D3D4;
  border: 0.4px solid #E6E7E8;
  font-weight: 400;
}

.btn_crud_default {
  align-items: center;
  min-width: 70px;
  height: 40px;
  padding: 7px 24px;
  gap: 10px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 400;
  background: #F9F9FC;
  border: 0.4px solid #D1D3D4;
  color: #454545;
}
.btn_crud_default:hover, .btn_crud_default:focus, .btn_crud_default:active {
  background: #E6E7E8;
  border-color: #A7A9AC;
  color: #454545;
}
.btn_crud_default.disabled {
  cursor: default;
  box-shadow: none;
  background: #FDFDFD;
  color: #D1D3D4;
  border: 0.4px solid #E6E7E8;
  font-weight: 400;
}

.btn_crud_danger {
  align-items: center;
  min-width: 70px;
  height: 40px;
  padding: 7px 24px;
  gap: 10px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 400;
  background: #FFFBFB;
  border: 0.4px solid #FB5353;
  color: #FB5353;
}
.btn_crud_danger:hover, .btn_crud_danger:focus, .btn_crud_danger:active {
  background: #FB5353;
  border: 0.4px solid #FB5353;
  color: #FFFFFF;
}
.btn_crud_danger.disabled {
  cursor: default;
  box-shadow: none;
  background: #FDFDFD;
  color: #D1D3D4;
  border: 0.4px solid #E6E7E8;
  font-weight: 400;
}

.dropdown .dropdown-toggle {
  color: #454545;
  font-size: 16px;
  box-shadow: none;
  border-radius: 5px;
  border-color: rgba(167, 169, 172, 0.4);
  background: #fff;
}
.dropdown .dropdown-toggle::after {
  border: none;
  display: inline-block;
  width: 16px;
  height: 16px;
  text-align: center;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url("/images/v2/icons/icon_arrow.svg");
  transform: rotate(180deg);
}
.dropdown.show .dropdown-toggle::after {
  border: none;
  display: inline-block;
  width: 16px;
  height: 16px;
  text-align: center;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url("/images/v2/icons/icon_arrow.svg");
  transform: rotate(0deg);
}
.dropdown:not(.form-inline) .btn,
.dropdown:not(.form-inline) .dropdown-menu {
  width: 100%;
}
.dropdown .dropdown-item {
  font-size: 16px;
}

/* Navs */
.nav_dapth01 {
  margin-bottom: -1px;
  margin-left: 110px !important;
}
.nav_dapth01 .nav-link {
  padding: 20px 34px;
  color: #303033;
  font-size: 16px;
  font-weight: 400;
  line-height: 23px;
}
.nav_dapth01 .nav-link.active {
  background-color: #FFFFFF;
  color: #FF8900;
  font-weight: 500;
  /* border-bottom: 1px solid $color_blue; */
}
.nav_dapth01 .nav-link:hover {
  color: #2C51D7;
}

.btn_nav_user {
  text-align: center;
  min-width: 90px;
  height: 32px;
  border: 1px solid #A7A9AC;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 400;
  color: #A7A9AC;
  vertical-align: middle;
  line-height: 18px;
}
.btn_nav_user.active, .btn_nav_user:hover, .btn_nav_user:focus {
  border-color: #7391FA;
  color: #7391FA;
}

.btn_nav_myhome {
  text-align: center;
  min-width: 90px;
  height: 32px;
  border: 1px solid #A7A9AC;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 400;
  color: #A7A9AC;
  vertical-align: middle;
  line-height: 18px;
}
.btn_nav_myhome.active, .btn_nav_myhome:hover, .btn_nav_myhome:focus {
  border-color: #7391FA;
  color: #7391FA;
}

.btn_nav_myhome.active::before,
.btn_nav_myhome:hover::before,
.btn_nav_myhome:focus::before {
  background: url(/images/v2/icons/icon_home_active.svg) no-repeat center;
  background-size: contain;
}

.btn_nav_user.active::before,
.btn_nav_user:hover::before,
.btn_nav_user:focus::before {
  background: url(/images/v2/icon_user_active.svg) no-repeat center;
  background-size: contain;
}

.btn_nav_user::before {
  display: inline-block;
  content: "";
  margin-right: 4px;
  width: 18px;
  height: 18px;
  background: url(/images/v2/icon_user.svg) no-repeat center;
  background-size: contain;
  margin-bottom: -4px;
}

.btn_nav_myhome::before {
  display: inline-block;
  content: "";
  margin-right: 4px;
  margin-bottom: -2px;
  width: 16px;
  height: 16px;
  background: url(/images/v2/icons/icon_home.svg) no-repeat center;
  background-size: contain;
}

.nav_dapth02 {
  margin-left: 110px !important;
  margin-top : 10px;
}
.nav_dapth02 .nav-link {
  margin: 0 20px;
  padding: 8px 30px;
  color: #303033;
  font-size: 16px;
  font-weight: 400;
  line-height: 23px;
}
.nav_dapth02 .nav-link.active, .nav_dapth02 .nav-link:hover, .nav_dapth02 .nav-link:focus, .nav_dapth02 .nav-link:active {
  border-radius: 30px;
  /* background: $color_gradiant; */
  color: #303033;
  font-weight: 700;
}

.icons_search_off {
  display: inline-block;
  width: 22px;
  height: 22px;
  text-align: center;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url("/images/v2/icons/icon_search_off.svg");
  margin-top:-4px;
}
.icons_search_off:hover, .icons_search_off:focus, .icons_search_off:active {
  background-image: url(/images/v2/icons/icon_search_on.svg);
  cursor: pointer;
}

.input-group.input-search {
  position: relative;
  display: inline-block;
}
.input-group.input-search .form-control {
  display: block;
  flex: none;
  float: left;
  width: -moz-fit-content;
  width: fit-content;
  width: 100%;
  border-top-right-radius: 5px !important;
  border-bottom-right-radius: 5px !important;
  padding-right: 40px;
}
.input-group.input-search .form-control:focus + .input-group-append .icons_search_off {
  background-image: url(/images/v2/icons/icon_search_on.svg);
}
.input-group.input-search .input-group-append {
  z-index: 10;
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  height: 39px;
  padding: 8px;
}
.input-group.input-search .input-group-append .btn {
  float: left;
}
.input-group.input-search .input-group-append .btn.icons_x_circle_off {
  margin-top: 2px;
  margin-right: 2px;
  padding: 8px;
}

.icons_x_circle_off {
  display: inline-block;
  width: 16px;
  height: 16px;
  text-align: center;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(/images/v2/icons/icon_x_circle_off.svg);
}
.icons_x_circle_off:hover, .icons_x_circle_off:focus, .icons_x_circle_off:active {
  background-image: url(/images/v2/icons/icon_x_circle_on.svg);
  cursor: pointer;
  
}


.nav_dapth02 .nav-link.active,
.nav_dapth02 .nav-link:hover,
.nav_dapth02 .nav-link:focus,
.nav_dapth02 .nav-link:active {
  border-radius: 30px;
  background: #E6E7E8;
  color: #454545;
  font-weight: 500;
}

.content_area {
  display: flex;
  justify-content: center;
}
.content_area .tab-content {
  width: 95%;
}

.tab-content.depth03 .pagination_section,
.modal .modal-body .pagination_section {
  position: relative;
  display: flex;
  justify-content: center;
}

.pagination .page-link {
  width: 39px;
  height: 39px;
  margin: 10px 1px;
  border: 1px solid rgba(167, 169, 172, 0.4);
  border-radius: 5px;
  background: #F9F9FB;
  font-weight: 500;
  font-size: 16px;
  color: #A7A9AC;
  text-align: center;
}

.pagination .page-link > span.previous {
  display: block;
  width: 100%;
  height: 100%;
  /*background: url(/images/v2/icons/arrow_left.svg) no-repeat center center;*/
}

.pagination .page-link > span.next {
  display: block;
  width: 100%;
  height: 100%;
  /*background: url(/images/v2/icons/arrow_left.svg) no-repeat center center;*/
  transform: rotate(180deg);
}

.pagination .page-link.active {
  background: #ffE7E8;
  color: #454545;
}


.icon_explanation {
  display: inline-block;
  width: 49px;
  height: 49px;
  text-align: center;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(/images/v2/icons/icon_explanation.png);
}

.icon_explanation {
  display: inline-block;
  width: 49px;
  height: 49px;
  text-align: center;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(/images/v2/icons/icon_explanation.png);
}

.icons_close {
  display: inline-block;
  width: 20px;
  height: 20px;
  text-align: center;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(/images/v2/icons/icon_close.svg);
}

.icon_score_blank {
  display: inline-block;
  width: 29px;
  height: 29px;
  text-align: center;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(/images/v2/icons/icon_score_blank.png);
}

.icon_score_no {
  display: inline-block;
  width: 29px;
  height: 29px;
  text-align: center;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(/images/v2/icons/icon_score_no.png);
}


/* 팝업창의 배경을 흐리게 처리 */
.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 팝업창 본체 */
.popup-content {
  background-color: white;
  padding: 20px;
  width: 400px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* 확인 버튼 스타일 */
button {
  background-color: #007BFF;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

/* button:hover {
  background-color: #0056b3;
} */
.pop-header {
  font-size: 16px;
  font-weight: 500;
  background: #FDFDFD;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}

.pop-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  padding: 0.75rem;
  border-top: 1px solid #dee2e6;
  border-bottom-right-radius: calc(0.3rem - 1px);
  border-bottom-left-radius: calc(0.3rem - 1px);
  border: none;
  justify-content: center;
  padding-top: 30px;
}


.custom-control {
  z-index: 0;
}


/*---------------------------------------*/
/*--------   0.incommon.scss   ----------*/
/*---------------------------------------*/
/* CSS-Common */
.inline_block {
  display: inline-block;
}

.form-group.form-inline {
  margin-bottom: 0;
}

.hide {
  display: none;
}

/* Layout-Common - nav */
.nav_top_wrap {
  border-bottom: 2px solid #ffd613;
}

.nav_top {
  position: relative;
  height: 64px;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  padding: 0 20px;
}
.nav_top .logo_area {
  line-height: 64px;
  padding: 0 15px;
}
.nav_top .logo_area img {
  vertical-align: middle;
  height: 30px;
}
.nav_top .nav_area {  
  line-height: 64px;
  margin-right: auto !important;
  margin-left: -100px;
  margin-top:-15px;	
}
.nav_top .function_area {
  line-height: 64px;
}
.nav_top .function_area .btn-refresh {
  margin-right: 10px;
}
.nav_top .mobile_navbtn_area {
  width: 26px;
  line-height: 60px;
}
.nav_top .mobile_navbtn_area .icons_mobilemu,
.nav_top .mobile_navbtn_area .icons_close {
  width: 22px;
  height: 25px;
}

.nav_mobile .nav_top {
  height: 60px;
  min-width: unset;
  position: fixed;
  height: 60px;
  background-color: #fff;
  width: 100%;
  z-index: 100;
  border-bottom: 1px solid #E6E7E8;
}
.nav_mobile .logo_area,
.nav_mobile .title_area {
  line-height: 60px;
  font-size: 18px;
  font-weight: 700;
}
.nav_mobile .mobilemu_open {
  overflow: auto;
  z-index: 2000;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0px;
  margin-left: -1300px;
  background-color: #FFFFFF;
}
.nav_mobile .mobilemu_open li > a {
  text-decoration: none;
}
.nav_mobile .mobilemu_open .momu_dapth00 {
  position: absolute;
  top: 0px;
  left: 0px;
}
.nav_mobile .mobilemu_open .momu_dapth00 .line {
  width: 140%;
  height: 0px;
  border: 0.4px solid #D1D3D4;
  margin-top: 30px;
  margin-left: -25px;
}
.nav_mobile .mobilemu_open .momu_dapth00 .btn_nav_login.active::before,
.nav_mobile .mobilemu_open .momu_dapth00 .btn_nav_login:hover::before,
.nav_mobile .mobilemu_open .momu_dapth00 .btn_nav_login:focus::before {
  background: url(/images/v2/icons/icon_login.svg) no-repeat center;
  background-size: contain;
}
.nav_mobile .mobilemu_open .momu_dapth00 .btn_nav_login::before {
  display: inline-block;
  content: "";
  margin-right: 4px;
  margin-bottom: -2px;
  background: url(/images/v2/icons/icon_login.svg) no-repeat center;
  background-size: contain;
}
.nav_mobile .mobilemu_open .momu_dapth00 .btn_nav_login::before {
  width: 24px;
  height: 24px;
  line-height: normal;
  vertical-align: middle;
  margin-top: -7px;
}
.nav_mobile .mobilemu_open .momu_dapth00 .btn_nav_login {
  text-align: center;
  min-width: 90px;
  height: 32px;
  border: 1px solid #A7A9AC;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 400;
  color: #A7A9AC;
  vertical-align: middle;
  line-height: 18px;
}
.nav_mobile .mobilemu_open .momu_dapth00 .function_area button {
  text-align: left;
  border: none;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  margin: 5px 0;
}
.nav_mobile .mobilemu_open .momu_dapth00 .btn_nav_join.active::before,
.nav_mobile .mobilemu_open .momu_dapth00 .btn_nav_join:hover::before,
.nav_mobile .mobilemu_open .momu_dapth00 .btn_nav_join:focus::before {
  background: url(/images/v2/icons/icon_memjoin.svg) no-repeat center;
  background-size: contain;
}
.nav_mobile .mobilemu_open .momu_dapth00 .btn_nav_join::before {
  display: inline-block;
  content: "";
  margin-right: 4px;
  margin-bottom: -2px;
  background: url(/images/v2/icons/icon_memjoin.svg) no-repeat center;
  background-size: contain;
}
.nav_mobile .mobilemu_open .momu_dapth00 .btn_nav_join::before {
  width: 24px;
  height: 24px;
  line-height: normal;
  vertical-align: middle;
  margin-top: -7px;
}
.nav_mobile .mobilemu_open .momu_dapth00 .btn_nav_join {
  text-align: center;
  min-width: 90px;
  height: 32px;
  border: 1px solid #A7A9AC;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 400;
  color: #A7A9AC;
  vertical-align: middle;
  line-height: 18px;
}
.nav_mobile .mobilemu_open .momu_dapth00 .function_area button {
  text-align: left;
  border: none;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  margin: 5px 0;
}
.nav_mobile .mobilemu_open .momu_dapth01 {
  padding: 0px 240px 0px 40px;
  margin-top: 90px;
}
.nav_mobile .mobilemu_open .momu_dapth01 li {
  position: relative;
  padding: 10px 0;
  font-weight: 500;
}
.nav_mobile .mobilemu_open .momu_dapth01 li a {
  display: inline-block;
  width: 200%;
  color: #303033;
  text-align: left;
}
.nav_mobile .mobilemu_open .momu_dapth01 li a > i {
  position: absolute;
  top: 13px;
  right: -160px;
}
.nav_mobile .mobilemu_open .momu_dapth01 > li > a.changed > i {
  background-image: url("/images/v2/icons/icon_arrow.svg");
  transform: rotate(360deg);
}
.nav_mobile .mobilemu_open .momu_dapth02 {
  padding-left: 15px;
}
.nav_mobile .mobilemu_open .momu_dapth02.hide {
  display: none;
}
.nav_mobile .mobilemu_open .momu_dapth02 li {
  padding: 10px 0;
}
.nav_mobile .mobilemu_open .momu_dapth02 li a {
  font-weight: 400;
  font-size: 14px;
  color: #454545;
  width: 210%;
}
.nav_mobile .mobilemu_open .momu_dapth03 {
  padding-left: 15px;
}
.nav_mobile .mobilemu_open .momu_dapth03 li {
  padding: 2px 0;
}
.nav_mobile .mobilemu_open .momu_dapth03 li a {
  font-weight: 400;
  font-size: 12px;
  color: #A7A9AC;
  width: 200%;
}
.nav_mobile .mobilemu_open .function_area {
  margin-top: 30px;
  margin-left: 25px;
  margin-bottom: 10px;
}
.nav_mobile .mobilemu_open .function_area button {
  text-align: left;
  border: none;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  margin: 5px 0;
}
.nav_mobile .mobilemu_open .function_area .btn_nav_myhome::before,
.nav_mobile .mobilemu_open .function_area .btn_nav_user::before,
.nav_mobile .mobilemu_open .function_area .btn_nav_bell::before,
.nav_mobile .mobilemu_open .function_area .btn_nav_sub::before {
  width: 24px;
  height: 24px;
  line-height: normal;
  vertical-align: middle;
  margin-top: -7px;
}
.nav_mobile .mobilemu_open .member_area {
  padding: 10px 28px;
  border-top: 1px solid rgba(167, 169, 172, 0.4);
}
.nav_mobile .mobilemu_open .member_area button {
  text-align: left;
  border: none;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  margin: 2px 0;
}
.nav_mobile .mobilemu_open .member_area .btn_login::before,
.nav_mobile .mobilemu_open .member_area .btn_memjoin::before,
.nav_mobile .mobilemu_open .member_area .btn_logout::before {
  width: 16px;
  height: 16px;
  line-height: normal;
  vertical-align: middle;
  margin-top: -7px;
  margin-right: 8px;
}
.nav_mobile .mu_cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: none;
}

/* Layout-Common - depth03content */
.web_only .header,
.web_only .content,
.web_only .nav_top {
  min-width: 992px;
  /*overflow-x: auto;*/
  /* height: calc(100% - 130px); */
}
@media (max-width: 991.98px) {
  .web_only #content {
    padding: 20px 25px 30px;
  }
}
.web_only.modal-open .modal {
  overflow-x: auto;
}

.tab-content.depth03 .search_section,
.modal .modal-body .search_section {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.tab-content.depth03 .search_section .left_area,
.tab-content.depth03 .search_section .right_area,
.modal .modal-body .search_section .left_area,
.modal .modal-body .search_section .right_area {
  align-items: center;
}
.tab-content.depth03 .search_section .right_area,
.modal .modal-body .search_section .right_area {
  margin-left: auto;
}
.tab-content.depth03 .search_section .info_txt,
.modal .modal-body .search_section .info_txt {
  display: inline-block;
  margin-left: 5px;
  padding-top: 2px;
  font-weight: 400;
  font-size: 16px;
  vertical-align: middle;
}
.tab-content.depth03 .search_section .info_box,
.modal .modal-body .search_section .info_box {
  display: inline-block;
  padding: 0 20px;
  border: 0.4px solid rgba(167, 169, 172, 0.4);
  border-radius: 5px;
  font-weight: 400;
  font-size: 16px;
  line-height: 40px;
  vertical-align: middle;
}
.tab-content.depth03 .search_section .input-search input[type=text]::-moz-placeholder, .modal .modal-body .search_section .input-search input[type=text]::-moz-placeholder {
  font-size: 16px;
  color: rgba(167, 169, 172, 0.7);
}
.tab-content.depth03 .search_section .input-search input[type=text]::placeholder,
.modal .modal-body .search_section .input-search input[type=text]::placeholder {
  font-size: 16px;
  color: rgba(167, 169, 172, 0.7);
}

.nav_dapth01 {
  margin-bottom: -1px;
  justify-content: center !important;
}

.nav_sub {
  position: relative;
  height: 65px;
  padding: 14px 0 10px;
}

/* .nav_dapth02 {
  justify-content: center !important;
} */
/* IE 9+10 속성 */
/* 미디어쿼리 ******************************************************/
/* Extra small devices (portrait phones, less than 576px) *********/
/* No media query for `xs` since this is the default in Bootstrap */
/* Small devices (landscape phones, ≥576px and up) ~sm*/
@media (min-width: 576px) {
  .mobile_only {
    display: block;
  }
}
/* Medium devices (tablets, ≥768px and up) ~md*/
/* Large devices (desktops, ≥992px and up) ~lg*/
@media (min-width: 992px) {
  .nav_mobile {
    display: none;
  }
  .web_only .nav_web {
    display: block;
  }
  .mobile_only {
    display: none;
  }
}
/* Extra large devices (large desktops, ≥1200px and up) ~xl*/
@media (max-width: 1272px) {
  .main_mb {
    display: block;
  }
}
@media (max-width: 1199.98px) {
  .web_only .modal-xl {
    max-width: 950px;
    width: 950px;
  }
  .mobile_only {
    display: none;
  }
  .web_only .modal-lg {
    max-width: 800px;
    width: 800px;
  }
}
@media (max-width: 991.98px) {
  .nav_web {
    display: none;
  }
  .web_only .nav_web {
    display: block;
  }
  .web_only .nav_mobile {
    display: none;
  }
  /* .mobile_only {
  	display: none;
  } */
  .lgW100 {
    display: block;
    width: 100%;
  }
}
/* mobile only */
@media (max-width: 767.98px) {
  .sm_hidden {
    display: none;
  }
  .mdW100 {
    display: block;
    width: 100%;
  }
  .web_only02 {
    display: none;
  }
  .mobile_only {
    display: block;
  }
}
/* Extra small devices (portrait phones, less than 576px) ≤xs*/
/* @use "cl.scss"; */
/* @use "mixin"; */
/*---------------------------------------*/
/*--------   1.login.scss   -------------*/
/*---------------------------------------*/
.header.login {
  position: fixed;
  z-index: 1000;
  width: 100%;
  top: 0;
  left: 0;
  background: #fff;
}

.page_login {
  display: flex;
  height: 100%;
  overflow: hidden;
  text-align: center;
}
@media (max-width: 991.98px) {
  .page_login {
    padding-top: 61px;
  }
}
.page_login .icon_home_login {
  display: inline-block;
  width: 50px;
  height: 50px;
  text-align: center;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(/images/v2/icon_home.png);
  cursor: pointer;
  margin-bottom: 24px;
}
.page_login .icon_home_login:hover, .page_login .icon_home_login:focus, .page_login .icon_home_login:active {
  background-image: url(/images/v2/icon_home_focus.png);
  cursor: pointer;
}
.page_login .left_section {
  width: calc(100vw - 40%);
  height: 100%;
  padding-top: calc(50vh - 260px);
  background-color: #FECB3E;
}
.page_login .left_section .wrap {
  position: relative;
  height: auto;
  overflow: hidden;
  width: 70%;
  margin: 0 auto;
}
.page_login .left_section .text {
  margin-top: 10px;
  color: #1C0000;
  font-size: 16px;
  font-weight: 700;
}
.page_login .left_section .visualimg {
  width: 100%;
  margin-top: 48px;
}
@media (max-width: 991.98px) {
  .page_login .left_section {
    display: none;
  }
}
.page_login .right_section {
  position: relative;
  display: flex;
  align-items: center;
  width: calc(100vw - 60%);
  min-height: 680px;
  height: 100%;
  overflow-y: auto;
}
.page_login .right_section .form-confirm {
  display: flex;
  gap: 10px;
}
.page_login .right_section .form-confirm .form-inline {
  max-width: 83%;
}
.page_login .right_section .form-confirm .confirm_time {
  line-height: 35px;
  margin: 0px 10px;
  font-size: 14px;
  font-weight: 400;
}
.page_login .right_section .form-confirm .confirm_btn {
  width: 95px !important;
}
@media (max-width: 767.98px) {
  .page_login .right_section .form-confirm .form-confirm .form-inline {
    width: 50%;
  }
}
@media (max-width: 991.98px) {
  .page_login .right_section {
    width: 100%;
    min-height: 0;
  }
  .page_login .right_section h2 {
    display: none;
  }
}
.page_login .right_section .wrap {
  width: 374px;
  margin: 0 auto;
  padding-bottom: 60px;
}
@media (max-width: 991.98px) {
  .page_login .right_section .wrap {
    width: calc(100vw - 40px);
  }
}
.page_login .right_section .wrap .btn {
  width: 100%;
}
.page_login .right_section h2 {
  color: #FF8900;
  font-size: 24px;
  font-weight: 700;
}
.page_login .right_section .title_type2 h2 {
  color: #2C51D7;
  font-size: 16px;
  font-weight: 700;
  padding-bottom: 18px;
  margin-bottom: 15px;
  border-bottom: 1px solid #E6E7E8;
}
.page_login .right_section .title_type2 .text {
  font-size: 14px;
}
.page_login .right_section .title_type2 .text span {
  color: #2C51D7;
}
.page_login .right_section .form_section {
  width: 100%;
  margin: 40px auto 0;
}
@media (max-width: 575.98px) {
  .page_login .right_section .form_section {
    margin-top: 0px;
  }
}
.page_login .right_section .form_section .form-group {
  position: relative;
  margin-bottom: 15px;
  text-align: left;
}
.page_login .right_section .form_section .form_password ~ i {
  position: absolute;
  z-index: 100;
  cursor: pointer;
  bottom: 12px;
  right: 10px;
}
.page_login .right_section .form_section .form_password ~ i.hide {
  display: none !important;
}
.page_login .right_section .form_section .form_password ~ i.change {
  background-image: url(/images/v2/icons/icon_eye_on.svg);
}
.page_login .right_section .form_section .btn {
  width: 100%;
}
.page_login .right_section .form_section .btn + .custom-control {
  margin-top: 15px;
}

/*---------------------------------------*/
/*--------   학습관리 manage  ----*/
/*---------------------------------------*/
.btn_crud_point {
  align-items: center;
  background: #7391fa;
  border-radius: 5px;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  font-weight: 500;
  gap: 10px;
  height: 40px;
  min-width: 70px;
  padding: 7px 24px;
  cursor: pointer;
}

.btn_crud_default {
  align-items: center;
  background: #f9f9fc;
  border: 0.4px solid #d1d3d4;
  border-radius: 5px;
  color: #454545;
  font-size: 16px;
  font-weight: 400;
  gap: 10px;
  height: 40px;
  min-width: 70px;
  padding: 7px 24px;
  cursor: pointer;
}

.book_img {
  display: inline-block;
  width: 65px;
  height: 82px;
  text-align: center;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(/images/v2/book.png);
  margin-right: 10px;
}

/* 유닛별 학습리포트01 */
.UnitReport {
  /* 	.active {
  	border: 2px solid #D1D3D4;
  } */
}
.UnitReport .cnts_section {
  position: relative;
  height: auto;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
}
.UnitReport .class_section_left {
  width: 30%;
  margin-left: 40px;
}
.UnitReport .class_section_left .tit {
  width: 100%;
  margin: 20px 0;
  font-size: 24px;
  font-weight: 500;
}
.UnitReport .class_section_right {
  height: 740px;
  /* 		overflow: auto; */
  width: 70%;
  margin-right: 40px;
}
.UnitReport .class_section_right .tit {
  width: 100%;
  margin: 20px 0;
  font-size: 24px;
  font-weight: 500;
}
.UnitReport .class_section_right_table {
  height: 740px;
  overflow: auto;
  width: 70%;
  margin-right: 40px;
}
.UnitReport .class_section_right_table .tit {
  width: 100%;
  margin: 20px 0;
  font-size: 24px;
  font-weight: 500;
}

.UnitReport .class_section_right_table .scroe_fix {
  width: 370px;
}
	
.UnitReport .list_section .list_area {
  /* border: 0.4px solid rgba(167, 169, 172, 0.4); */
  border-radius: 5px;
  height: 700px;
  overflow-y: auto;
  background-color: #FFF6EC;
  padding-bottom: 80px;
}
.UnitReport .list_section .list_area li {
  background-color: #fff;
  margin-left: 10px;
  margin-right: 10px;
  padding: 10px;
  border-radius: 12px;
  margin-bottom: 6px;
}
.UnitReport .list_section .list_area .active {
  background-color: #FFD7A8;
  border: 3px solid #FF9F2E;
}
.UnitReport .list_section .list_area_right {
  padding-top: 6px;
  border-radius: 5px;
  height: 700px;
  overflow-y: auto;
  background-color: #F9F9FC;
  padding-bottom: 80px;
}
.UnitReport .list_section .list_area_right li {
  background-color: #fff;
  margin-left: 10px;
  margin-right: 10px;
  padding: 10px;
  border-radius: 12px;
  margin-bottom: 6px;
}
.UnitReport .list_section .list_area_right .active {
  background-color: #E7EDFF;
  border: 3px solid #7391FA;
}
.UnitReport .form-group {
  display: flex;
  align-items: center;
}
.UnitReport .form-group label {
  width: 80px;
  font-size: 16px !important;
  font-weight: 500;
}
.UnitReport .form-group .lec_regi01,
.UnitReport .form-group .input_area {
  width: calc(100% - 90px);
}
.UnitReport .exp {
  font-weight: 400;
  font-size: 12px;
  line-height: 17px;
  align-items: center;
  color: #A7A9AC;
  padding-left: 90px;
  margin-top: -10px;
  margin-bottom: 10px;
}
.UnitReport .list_section .list_area,
.UnitReport .list_section .list_area02,
.UnitReport .list_section .list_area03,
.UnitReport .list_section .list_area04 {
  padding-top: 10px;
}
.UnitReport .list_area02 li {
  padding: 8px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.UnitReport .list_area02 li i {
  margin-left: 10px;
}
.UnitReport .list_area03 li {
  padding: 8px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.UnitReport .list_area03 li i {
  margin-left: 10px;
}
.UnitReport .list_area02 {
  border: 0.4px solid rgba(167, 169, 172, 0.4);
  border-radius: 5px;
  height: 203px;
  overflow-y: auto;
}
.UnitReport .list_area03 {
  border: 0.4px solid rgba(167, 169, 172, 0.4);
  border-radius: 5px;
  height: 203px;
  overflow-y: auto;
}
.UnitReport .list_area03 .button_right {
  display: flex;
  gap: 10px;
}
.UnitReport .search_class02 {
  margin: 18px 0 30px 0px;
}
.UnitReport i.icons_plus_circle_off.more_mu {
  width: 20px;
}
.UnitReport .icons_check_circle {
  margin-left: 10px;
}
.UnitReport .more_list li {
  padding: 5px 14px;
  min-width: 100px;
  text-align: left;
  border-top: 0.4px solid #D1D3D4;
}
.UnitReport .more_list li:first-child {
  border-top: none;
}
.UnitReport .theme_color01 {
  width: 24px;
  height: 24px;
  background: #F1E869;
  border-radius: 30px;
  margin-right: 5px;
  cursor: pointer;
}
.UnitReport .theme_color02 {
  width: 24px;
  height: 24px;
  background: #AFECED;
  border-radius: 30px;
  margin-right: 5px;
  cursor: pointer;
}
.UnitReport .theme_color03 {
  width: 24px;
  height: 24px;
  background: #4FCED0;
  border-radius: 30px;
  margin-right: 5px;
  cursor: pointer;
}
.UnitReport .theme_color04 {
  width: 24px;
  height: 24px;
  background: #7391FA;
  border-radius: 30px;
  margin-right: 5px;
  cursor: pointer;
}
.UnitReport .theme_color05 {
  width: 24px;
  height: 24px;
  background: #2C51D7;
  border-radius: 30px;
  cursor: pointer;
}
.UnitReport .lec_regi03 {
  height: 100px;
  width: calc(100% - 90px);
}
.UnitReport .lec_regi02 {
  height: 45px;
  width: calc(100% - 90px);
}

/* 유닛별 학습리포트02 */
.UnitReport2 .cnts_section {
  margin-top: 20px;
}
.UnitReport2 .book_info {
  display: flex;
  width: 94%;
  justify-content: flex-start;
  margin-left: 40px;
  align-items: center;
}
.UnitReport2 .book_info_info {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 76px;
  border: 0.5px solid #D1D3D4;
  padding-left: 20px;
  align-items: center;
  padding-right: 40px;
  border-radius: 7px;
}
.UnitReport2 .tit_area {
  width: 94%;
  margin-bottom: -40px;
  margin-left: 37px;
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
}
.UnitReport2 .tit_area .tit {
  color: #454545;
  font-size: 24px;
  font-weight: 500;
  padding-bottom: 18px;
  margin-bottom: 15px;
  margin-top: -14px;
  margin-bottom: 14px;
}

.class_section_left1 {
  width: 20%;
  margin-left: 40px;
  margin-top: 30px;
}
.class_section_left1 .tit {
  margin-top: -14px;
  margin-bottom: 10px;
}

.class_section_left2 {
  width: 10%;
  margin-left: -10px;
  margin-top: 30px;
}
.class_section_left2 .tit {
  margin-top: -14px;
  margin-bottom: 10px;
}
.class_section_left2 .list_area .active {
  background-color: #E7EDFF !important;
  border: 3px solid #7391FA !important;
}

.list_section .list_area {
  border-radius: 5px;
  height: auto;
  overflow-y: auto;
  background-color: #FFF6EC;
  margin-bottom: 40px;
}

.icon_bar_30 {
  display: inline-block;
  width: 158px;
  height: 28px;
  text-align: center;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(/images/v2/icons/icon_bar_30.png);
}

.icon_bar_50 {
  display: inline-block;
  width: 158px;
  height: 28px;
  text-align: center;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(/images/v2/icons/icon_bar_50.png);
}

.icon_bar_70 {
  display: inline-block;
  width: 158px;
  height: 28px;
  text-align: center;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(/images/v2/icons/icon_bar_70.png);
}

.icon_bar_100 {
  display: inline-block;
  width: 158px;
  height: 28px;
  text-align: center;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(/images/v2/icons/icon_bar_100.png);
}

.icon_sub_v {
  display: inline-block;
  width: 29px;
  height: 29px;
  text-align: center;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(/images/v2/icons/icon_sub_v.png);
}

.icon_sub_p {
  display: inline-block;
  width: 29px;
  height: 29px;
  text-align: center;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(/images/v2/icons/icon_sub_p.png);
}

.icon_sub_c {
  display: inline-block;
  width: 29px;
  height: 29px;
  text-align: center;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(/images/v2/icons/icon_sub_c.png);
}

.icon_sub_r {
  display: inline-block;
  width: 29px;
  height: 29px;
  text-align: center;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(/images/v2/icons/icon_sub_r.png);
}

.icon_scroe_s {
  display: inline-block;
  width: 29px;
  height: 29px;
  text-align: center;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(/images/v2/icons/icon_scroe_s.png);
}

.icon_scroe_a {
  display: inline-block;
  width: 29px;
  height: 29px;
  text-align: center;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(/images/v2/icons/icon_scroe_a.png);
}

.icon_scroe_b {
  display: inline-block;
  width: 29px;
  height: 29px;
  text-align: center;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(/images/v2/icons/icon_scroe_b.png);
}

.icon_scroe_c {
  display: inline-block;
  width: 29px;
  height: 29px;
  text-align: center;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(/images/v2/icons/icon_scroe_c.png);
}

.icon_scroe_d {
  display: inline-block;
  width: 29px;
  height: 29px;
  text-align: center;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(/images/v2/icons/icon_scroe_d.png);
}

.score_up {
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
}

.score_down {
  display: flex;
  justify-content: space-between;
}

.table_section tbody {
  background-color: #F9F9FC;  
  
  /*display: block;
  max-height: 700px;
  overflow-y: scroll;   */
}

/*
.table_section .table thead, table tbody tr {
  display: table;
  width: 100%;
}*/

.table_section .table thead th {
  vertical-align: middle;
  border-bottom: none;    
}

.table_section .table th {
  padding: 0.75rem;
  vertical-align: top;
  border-top: none;  
  /*border:solid 1px #000;border-collapse:collapse;*/
}

/*.table_section .table td {
  border:solid 1px #000;border-collapse:collapse;
}*/


/* 월별 학습리포트.html */
.monthReport .book_img {
  display: inline-block;
  width: 65px;
  height: 82px;
  text-align: center;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(/images/v2/book.png);
  margin-right: 10px;
}
.monthReport .cnts_section {
  position: relative;
  height: auto;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
}
.monthReport .month01_class_section {
  height: 740px;
  width: 20%;
  margin-left: 40px;
}
.monthReport .month01_class_section .tit {
  width: 100%;
  margin: 20px 0;
  font-size: 24px;
  font-weight: 500;
}
.monthReport .month02_student_section {
  height: 740px;
  width: 20%;
}
.monthReport .month02_student_section .tit {
  width: 100%;
  margin: 20px 0;
  font-size: 24px;
  font-weight: 500;
}
.monthReport .month03_book_section {
  height: 740px;
  width: 20%;
}
.monthReport .month03_book_section .tit {
  width: 100%;
  margin: 20px 0;
  font-size: 24px;
  font-weight: 500;
}
.monthReport .month04_report_section {
  height: 740px;
  width: 40%;
  margin-right: 40px;
}
.monthReport .month04_report_section .tit {
  width: 100%;
  margin: 20px 0;
  font-size: 24px;
  font-weight: 500;
}
.monthReport .list_section .list_area {
  /* border: 0.4px solid rgba(167, 169, 172, 0.4); */
  border-radius: 5px;
  height: 700px;
  overflow-y: auto;
  background-color: #FFF6EC;
  padding-bottom: 80px;
}
.monthReport .list_section .list_area li {
  background-color: #fff;
  margin-left: 10px;
  margin-right: 10px;
  padding: 10px;
  border-radius: 12px;
  margin-bottom: 6px;
}
.monthReport .list_section .list_area .active {
  background-color: #FFD7A8;
  border: 3px solid #FF9F2E;
}
.monthReport .list_section .list_area_right {
  padding-top: 6px;
  border-radius: 5px;
  height: 700px;
  overflow-y: auto;
  background-color: #F9F9FC;
  padding-bottom: 80px;
}
.monthReport .list_section .list_area_right li {
  background-color: #fff;
  margin-left: 10px;
  margin-right: 10px;
  padding: 10px;
  border-radius: 12px;
  margin-bottom: 6px;
}
.monthReport .list_section .list_area_right .active {
  background-color: #E7EDFF;
  border: 3px solid #7391FA;
}
.monthReport .icon_circle_30 {
  display: inline-block;
  width: 68px;
  height: 68px;
  text-align: center;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(/images/v2/icons/icon_circle_30.png);
  align-items: center;
  justify-content: center;
  display: flex;
}
.monthReport .icon_circle_50 {
  display: inline-block;
  width: 68px;
  height: 68px;
  text-align: center;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(/images/v2/icons/icon_circle_50.png);
  align-items: center;
  justify-content: center;
  display: flex;
}
.monthReport .icon_circle_70 {
  display: inline-block;
  width: 68px;
  height: 68px;
  text-align: center;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(/images/v2/icons/icon_circle_70.png);
  align-items: center;
  justify-content: center;
  display: flex;
}
.monthReport .icon_circle_100 {
  display: inline-block;
  width: 68px;
  height: 68px;
  text-align: center;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(/images/v2/icons/icon_circle_100.png);
  align-items: center;
  justify-content: center;
  display: flex;
}
.monthReport .book_process {
  background-color: #fff;
  margin-left: 10px;
  margin-right: 10px;
  padding: 10px;
  border-radius: 7px;
  margin-bottom: 10px;
}
.monthReport .book_process .book_cover {
  margin-bottom: 10px;
}
.monthReport .book_process .cont {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 10px;
}
.monthReport .month_report_cal {
  display: flex;
  gap: 10px;
}
.monthReport .month_report {
  display: flex;
  gap: 10px;
  margin: 10px;
}
.monthReport .date {
  margin-left: 20px;
  margin-right: 10px;
}
.monthReport .time {
  font-weight: 500;
}
.monthReport .month_report_con01 {
  background-color: #FFD7A8;
  width: 100%;
  display: flex;
  flex-flow: column;
  border-radius: 9px;
  padding: 10px;
  text-align: center;
}
.monthReport .month_report_con02 {
  background-color: #FFE457;
  width: 100%;
  display: flex;
  flex-flow: column;
  border-radius: 9px;
  padding: 10px;
  text-align: center;
}
.monthReport .month_report_con03 {
  background-color: #8BEE73;
  width: 100%;
  display: flex;
  flex-flow: column;
  border-radius: 9px;
  padding: 10px;
  text-align: center;
}
.monthReport .month_report_con04 {
  background-color: #AFC0FF;
  width: 100%;
  display: flex;
  flex-flow: column;
  border-radius: 9px;
  padding: 10px;
  text-align: center;
}
.monthReport .month_report_con05 {
  background-color: #E7EDFF;
  width: 100%;
  display: flex;
  flex-flow: column;
  border-radius: 9px;
  padding: 10px;
  text-align: center;
}
.monthReport .line {
  border: 0.4px solid #D1D3D4;
  width: 100%;
  justify-content: center;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.dropdown .dropdown-toggle {
  color: #454545;
  font-size: 14px;
  box-shadow: none;
  border-radius: 5px;
  border-color: rgba(167, 169, 172, 0.4);
  background: #fff;
}
.dropdown .dropdown-toggle::after {
  border: none;
  /* 			@include icons(16px, 16px); */
  background-image: url("/images/v2/icons/icon_arrow.svg");
  transform: rotate(180deg);
}
.dropdown.show .dropdown-toggle::after {
  border: none;
  /* 			@include icons(16px, 16px); */
  background-image: url("/images/v2/icons/icon_arrow.svg");
  transform: rotate(0deg);
}
.dropdown:not(.form-inline) .btn,
.dropdown:not(.form-inline) .dropdown-menu {
  width: 100%;
}
.dropdown .dropdown-item {
  font-size: 14px;
}

/* 학습리포트01.html */
.study_report .class_section_left {
  width: 40%;
  margin-left: 40px;
}
.study_report .class_section_right_table {
  height: 740px;
  overflow: auto;
  width: 60%;
  margin-right: 40px;
  margin-top: 43px;
}
.study_report .cnts_section {
  position: relative;
  height: auto;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
}
.study_report .list_section .list_area {
  border-radius: 5px;
  height: 700px;
  overflow-y: auto;
  background-color: #FFF6EC;
  padding-bottom: 80px;
  margin-bottom: 40px;
}
.study_report .list_section .list_area .active {
  background-color: #FFD7A8;
  border: 3px solid #FF9F2E;
}
.study_report .list_section .list_area li {
  background-color: #fff;
  margin-left: 10px;
  margin-right: 10px;
  padding: 10px;
  border-radius: 12px;
  margin-bottom: 6px;
  margin-top: 10px;
}
.study_report .book_img {
  display: inline-block;
  width: 65px;
  height: 82px;
  text-align: center;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(/images/v2/book.png);
  margin-right: 10px;
}
.study_report .icon_detail {
  display: inline-block;
  width: 42px;
  height: 42px;
  text-align: center;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(/images/v2/icons/icon_detail.png);
  cursor: pointer;
}
.study_report .form-group label {
  margin-left: 17px;
}
.study_report .img_plus01 {
  margin-bottom: 10px;
}

/* 학습리포트02.html */
.study_report02 .list_area_blue {
  /* border: 0.4px solid rgba(167, 169, 172, 0.4); */
  border-radius: 5px;
  height: 700px;
  overflow-y: auto;
  background-color: #F9F9FC;
  padding-bottom: 80px;
}
.study_report02 .list_area_blue li {
  background-color: #fff;
  margin-left: 10px;
  margin-right: 10px;
  padding: 10px;
  border-radius: 12px;
  margin-bottom: 6px;
}
.study_report02 .list_area_blue .active {
  background-color: #E7EDFF;
  border: 3px solid #7391FA;
}
.study_report02 .report_right {
  height: 740px;
  display: flex;
  flex-flow: column;
}
.study_report02 .class_section_left1 {
  width: 25%;
  margin-left: 40px;
  margin-top: 30px;
}
.study_report02 .class_section_right_up {
  display: flex;
  gap: 10px;
}
.study_report02 .class_section_right_up1 {
  margin-top: 30px;
}
.study_report02 .class_section_right_up1 .tit {
  margin-top: -12px;
  margin-bottom: 11px;
}
.study_report02 .class_section_right_up2 {
  margin-top: 30px;
}
.study_report02 .class_section_right_up2 .tit {
  margin-top: -12px;
  margin-bottom: 11px;
}
.study_report02 .info_section {
  background-color: #FFF6EC;
  height: 100px;
  border-radius: 10px;
  margin-bottom: 10px;
}
.study_report02 .reprot_section {
  display: flex;
  gap: 10px;
  margin-left: 20px;
  padding-top: 10px;
  padding-right: 130px;
}
.study_report02 .report_info {
  display: flex;
  flex-flow: column;
}
.study_report02 .report_info .text {
  font-weight: 500;
}
.study_report02 .report_con {
  display: flex;
  flex-flow: column;
  margin-left: 10px;
}
.study_report02 .score_bar {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}
.study_report02 .score_bar_set .text {
  font-weight: 500;
}
.study_report02 .table .table_unit {
  width: 5%;
}
.study_report02 .table .table_lesson {
  width: 2%;
}
.study_report02 .class_section_right_down {
  overflow: auto;
}

/* 학습관리-수업반목록.html */
.class_list .tit_area {
  width: 94%;
  margin-bottom: -40px;
  margin-left: 37px;
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
}
.class_list .tit_area .tit {
  color: #454545;
  font-size: 24px;
  font-weight: 500;
  padding-bottom: 18px;
  margin-bottom: 15px;
  margin-top: -14px;
  margin-bottom: 14px;
}
.class_list .form-group label {
  font-size: 16px !important;
  font-weight: 500;
  margin-left: 24px;
  width: 28%;
}
@media (max-width: 1199.98px) {
  .class_list .form-group label {
    width: 28%;
  }
}
.class_list .form-group {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: flex-start;
  margin-top: 30px;
}
.class_list .search_bar {
  width: 50%;
}
.class_list .input-group.input-search {
  display: flex;
  flex-flow: row;
}
.class_list .input-group.input-search .form-control {
  display: block;
  flex: none;
  float: left;
  width: -moz-fit-content;
  width: fit-content;
  width: 100%;
  border-top-right-radius: 5px !important;
  border-bottom-right-radius: 5px !important;
  padding-right: 40px;
}
.class_list .input-group.input-search .input-group-append {
  z-index: 10;
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  height: 39px;
  padding: 8px;
}
.class_list .line {
  border: 0.4px solid #D1D3D4;
  width: 95%;
  justify-content: center;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  margin-left: 40px;
}
.class_list .category_set {
  display: flex;
}
.class_list .category_set .tit {
  display: flex;
  flex-flow: column;
  width: 464px;
}
.class_list .category_set .tit .title {
  font-size: 16px !important;
  font-weight: 500;
  margin-left: 40px;
  margin-bottom: 48px;
}
.class_list .category_set .category {
  display: flex;
  flex-flow: column;
}
.class_list .category_set .category .cate01 {
  margin-bottom: 20px;
}

.class_list .category_set .category .cate03 {
  margin-bottom: 20px;
  width: 256px;
}
.class_list .category_set .category .box {
  border: 1px solid #D9D9D9;
  padding: 5px;
  display: inline-block;
  margin: 2px;
  border-radius: 7px;
  padding-left: 20px;
  padding-right: 20px;
  margin-right: 20px;
  cursor: pointer;
  width:auto;
}
.class_list .category_set .category .active {
  border: 2px solid #FF8900;
  padding: 5px;
  display: inline-block;
  margin: 2px;
  border-radius: 7px;
  padding-left: 20px;
  padding-right: 20px;
  margin-right: 20px;
  color: #FF8900;
  font-weight: 500;
  cursor: pointer;
}
.class_list .cate_level {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  margin-top: 20px;
}
.class_list .cate_level .title {
  font-size: 16px !important;
  font-weight: 500;
  margin-left: 40px;
  width: 9%;
}
.class_list .cate_level .box {
  border: 1px solid #D9D9D9;
  padding: 5px;
  display: inline-block;
  margin: 2px;
  border-radius: 7px;
  padding-left: 20px;
  padding-right: 20px;
  margin-right: 20px;
  cursor: pointer;
}
.class_list .cate_level .active {
  border: 2px solid #FF8900;
  padding: 5px;
  display: inline-block;
  margin: 2px;
  border-radius: 7px;
  padding-left: 20px;
  padding-right: 20px;
  margin-right: 20px;
  color: #FF8900;
  font-weight: 500;
  cursor: pointer;
}
.class_list .cate_level .cate {
  margin-left: 79px;
}
@media (max-width: 1199.98px) {
  .class_list .cate_level .cate {
    margin-left: 62px;
  }
}
.class_list .cate_cate {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  margin-top: 20px;
}
.class_list .cate_cate .title {
  font-size: 16px !important;
  font-weight: 500;
  margin-left: 40px;
  width: 17%;
}
@media (max-width: 1199.98px) {
  .class_list .cate_cate .title {
    width: 9%;
  }
}
.class_list .cate_cate .box {
  border: 1px solid #D9D9D9;
  padding: 5px;
  display: inline-block;
  margin: 2px;
  border-radius: 7px;
  padding-left: 20px;
  padding-right: 20px;
  margin-right: 20px;
  margin-bottom: 10px;
  cursor: pointer;
}
.class_list .cate_cate .active {
  border: 2px solid #FF8900;
  padding: 5px;
  display: inline-block;
  margin: 2px;
  border-radius: 7px;
  padding-left: 20px;
  padding-right: 20px;
  margin-right: 20px;
  color: #FF8900;
  font-weight: 500;
  cursor: pointer;
}
.class_list .cate_cate .cate {
  margin-left: 89px;
}
.class_list .class_section_right {
  height: 740px;
  /* 		overflow: auto; */
  width: 70%;
  margin-left: 40px;
}
.class_list .class_section_right .tit {
  width: 100%;
  margin: 20px 0;
  font-size: 24px;
  font-weight: 500;
}
.class_list .class_section_left {
  margin-right: 40px;
}
.class_list .cnts_section {
  position: relative;
  height: auto;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
}
.class_list .class_section_left .tit {
  width: 100%;
  margin: 20px 0;
  font-size: 24px;
  font-weight: 500;
}
.class_list .list_section .list_area_right {
  padding-top: 10px;
  border-radius: 5px;
  height: 720px;
  overflow-y: auto;
  background-color: #F9F9FC;
  padding-bottom: 30px;
}
.class_list .list_section .list_area_right .active {
  background-color: #E7EDFF;
  border: 3px solid #7391FA;
}
.class_list .list_section .list_area_right .chosen {
  background-color: #E6E7E8;
}
.class_list .list_section .list_area_right .chosen .book_img {
  margin-left: -146px;
  margin-right: 15px;
}
.class_list .list_section li {
  background-color: #fff;
  margin-left: 10px;
  margin-right: 10px;
  padding: 10px;
  border-radius: 12px;
  margin-bottom: 6px;
}
.class_list .list_section_chosen .btn_area {
  width: 98%;
  background-color: #FFF6EC;
  margin-top: -46px;
  height: 51px;
  position: relative;
  /* 자식 요소(.btn_crud_point)가 절대 위치할 수 있도록 relative로 설정 */
  padding-bottom: 60px;
  /* 버튼이 가려지지 않도록 하단 여백 추가 */
}
.class_list .list_section_chosen .btn_area .btn_crud_point_fix {
  width: 96%;
  justify-content: center;
  display: flex;
  align-items: center;
  background: #7391fa;
  border-radius: 5px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  gap: 10px;
  height: 40px;
  min-width: 70px;
  cursor: pointer;
  position: absolute;
  bottom: 0;
  /* 부모 요소(.list_area)의 하단에 고정 */
  left: 8px;
  text-align: center;
  padding: 10px;
  margin-bottom: 10px;
}
.class_list .list_section_chosen .list_area {
  /* border: 0.4px solid rgba(167, 169, 172, 0.4); */
  border-radius: 5px;
  height: 700px;
  overflow-y: auto;
  background-color: #FFF6EC;
  padding-bottom: 35px;
  padding-top: 10px;
  display: flex;
  flex-flow: column;
  align-items: center;
}
.class_list .list_section_chosen .list_area .icons_x_circle_off {
  width: 20px;
  height: 20px;
}
.class_list .list_section_chosen li {
  background-color: #fff;
  margin-left: 10px;
  margin-right: 10px;
  padding: 10px;
  border-radius: 12px;
  margin-bottom: 6px;
}
.class_list .list_section_chosen .active {
  background-color: #FFD7A8;
  border: 3px solid #FF9F2E;
}
.class_list .list_section_chosen .book_set {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.class_list .list_section_chosen .book_set .book_img {
  width: 28%;
  margin-left: 0px;
  margin-right: -7px;
}
.class_list .list_section_chosen .book_set .book_info {
  width: 68%;
}
.class_list .list_section_chosen .book_set .book_info .text {
  font-weight: 500;
}
.class_list .list_section_chosen .book_set .book_info .text_s {
  color: #D1D3D4;
}
.class_list .list_section_chosen .book_set .book_info .text_info {
  font-size: 10pt;
  font-weight: 300;
  color: #454545;
}
.class_list .list_section .list_area {
  /* border: 0.4px solid rgba(167, 169, 172, 0.4); */
  border-radius: 5px;
  height: 700px;
  overflow-y: auto;
  background-color: #FFF6EC;
  padding-bottom: 30px;
  padding-top: 10px;
}
.class_list .list_section li {
  background-color: #fff;
  margin-left: 10px;
  margin-right: 10px;
  padding: 10px;
  border-radius: 12px;
  margin-bottom: 6px;
}
.class_list .list_section .active {
  background-color: #FFD7A8;
  border: 3px solid #FF9F2E;
}
.class_list .book_set {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.class_list .book_set .book_img {
  width: 8%;
  margin-left: -30px;
  margin-right: 15px;
}
.class_list .book_set .book_info {
  width: 68%;
}
.class_list .book_set .book_info .text {
  font-weight: 500;
}
.class_list .book_set .book_info .text_s {
  color: #D1D3D4;
}
.class_list .book_set .book_info .text_info {
  font-size: 10pt;
  font-weight: 300;
  color: #454545;
}

/* 진행중-학습관리-수업반목록-교재편집.html */
.class_list02 .tit_area {
  width: 94%;
  margin-bottom: -40px;
  margin-left: 37px;
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
}
.class_list02 .book_list {
  height: 740px;
  width: 70%;
  margin-left: 9px;
  width: 95%;
}
.class_list02 .book_list .tit {
  margin: 20px 0;
  font-size: 24px;
  font-weight: 500;
}
.class_list02 .list_section .list_area_right {
  padding-top: 10px;
  border-radius: 5px;
  height: 720px;
  overflow-y: auto;
  background-color: #F9F9FC;
  padding-bottom: 30px;
}
.class_list02 .list_section .list_area_right .active {
  background-color: #E7EDFF;
  border: 3px solid #7391FA;
}
.class_list02 .list_section .list_area_right .chosen02 {
  background-color: #E6E7E8;
}
.class_list02 .list_section .list_area_right .chosen02 .book_img {
  margin-right: 11px;
}
.class_list02 .list_section li {
  background-color: #fff;
  margin-left: 10px;
  margin-right: 10px;
  padding: 10px;
  border-radius: 12px;
  margin-bottom: 6px;
}
.class_list02 .tit_sec {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}
.class_list02 .book_set02 {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 10px;
}
.class_list02 .book_set02 .book_img {
  width: 8%;
  margin-right: 15px;
}
.class_list02 .book_set02 .book_info {
  width: 68%;
}
.class_list02 .book_set02 .book_info .text {
  font-weight: 500;
}
.class_list02 .book_set02 .book_info .text_s {
  color: #D1D3D4;
}
.class_list02 .book_set02 .book_info .text_info {
  font-size: 10pt;
  font-weight: 300;
  color: #454545;
}

/* 콘텐츠관리-콘텐츠목록.html */
.content_manage .table_section {
  margin-left: 35px;
  width: 95%;
  overflow: scroll;
  height: 700px;
  margin-top: 20px;
}

/* 학습관리-수업반목록.html */
.study_list_setting .icon_book_edit {
  display: inline-block;
  width: 42px;
  height: 42px;
  text-align: center;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(/images/v2/icons/icon_book_edit.png);
  margin-right: 10px;
}
.study_list_setting .icon_report01 {
  display: inline-block;
  width: 42px;
  height: 42px;
  text-align: center;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(/images/v2/icons/icon_report01.png);
  margin-right: 10px;
}
.study_list_setting .icon_report02 {
  display: inline-block;
  width: 42px;
  height: 42px;
  text-align: center;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(/images/v2/icons/icon_report02.png);
  margin-right: 10px;
}
.study_list_setting .icon_report03 {
  display: inline-block;
  width: 42px;
  height: 42px;
  text-align: center;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(/images/v2/icons/icon_report03.png);
  margin-right: 10px;
}
.study_list_setting .search_bar {
  display: flex;
  margin-top: 20px;
  margin-left: 28px;
  width: 90%;
}
.study_list_setting .search_bar .col {
  justify-content: flex-end;
  display: flex;
}
.study_list_setting .table_section {
  margin-left: 35px;
  width: 95%;
  overflow: scroll;
  height: 700px;
  margin-top: 20px;
}
.study_list_setting .study_list_set {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 95%;
  gap: 5px;
  margin-left: 40px;
}
.study_list_setting .study_list_set .class_list {
  width: 50%;
  background-color: #FF8900;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  border-radius: 6px;
  color: #fff;
  font-weight: 500;
  cursor: pointer;
}
.study_list_setting .study_list_set .study_list {
  width: 50%;
  background-color: #E6E7E8;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  border-radius: 6px;
  cursor: pointer;
}

/* 학습관리-학생목록.html */
.student_list_setting .icon_book_edit {
  display: inline-block;
  width: 42px;
  height: 42px;
  text-align: center;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(/images/v2/icons/icon_book_edit.png);
  margin-right: 10px;
}
.student_list_setting .icon_report01 {
  display: inline-block;
  width: 42px;
  height: 42px;
  text-align: center;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(/images/v2/icons/icon_report01.png);
  margin-right: 10px;
}
.student_list_setting .icon_report02 {
  display: inline-block;
  width: 42px;
  height: 42px;
  text-align: center;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(/images/v2/icons/icon_report02.png);
  margin-right: 10px;
}
.student_list_setting .icon_report03 {
  display: inline-block;
  width: 42px;
  height: 42px;
  text-align: center;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(/images/v2/icons/icon_report03.png);
  margin-right: 10px;
}
.student_list_setting .search_bar {
  display: flex;
  margin-top: 20px;
  margin-left: 28px;
  width: 90%;
}
.student_list_setting .search_bar .col {
  justify-content: flex-end;
  display: flex;
}
.student_list_setting .table_section {
  margin-left: 35px;
  width: 95%;
  overflow: scroll;
  height: 700px;
  margin-top: 20px;
}
.student_list_setting .study_list_set {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 95%;
  gap: 5px;
  margin-left: 40px;
}
.student_list_setting .study_list_set .class_list {
  width: 50%;
  background-color: #E6E7E8;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  border-radius: 6px;
  cursor: pointer;
}
.student_list_setting .study_list_set .study_list_on {
  width: 50%;
  background-color: #FF8900;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  border-radius: 6px;
  color: #fff;
  font-weight: 500;
  cursor: pointer;
}

/* 회원정보관리-기본정보.html */
.info_manage .table_section {
  margin-left: 0px;
  width: 99%;
  overflow: scroll;
  height: 700px;
  margin-top: 20px;
}
.info_manage .upper_area {
  display: flex;
  justify-content: space-between;
}
.info_manage .year_status {
  display: flex;
  flex-flow: column;
  margin-left: 40px;
  margin-bottom: 50px;
}
.info_manage .year_status .tit {
  margin: 20px 0;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 10px;
}
.info_manage .year_status .box {
  width: 80%;
  height: 360px;
  border: 1px solid #D9D9D9;
  padding: 5px;
  display: inline-block;
  margin: 2px;
  border-radius: 7px;
  padding-left: 20px;
  padding-right: 20px;
  margin-right: 20px;
  margin-bottom: 10px;
}
.info_manage .master_detail {
  display: flex;
  flex-flow: column;
  margin-left: 40px;
}
.info_manage .master_detail .table_set {
  display: flex;
}
.info_manage .master_detail .table_section {
  margin-left: 0px;
  width: 99%;
  overflow: scroll;
  height: 280px !important;
  margin-top: 20px;
}
.info_manage .master_detail .tit {
  margin-top: 60px !important;
  margin: 20px 0;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 10px;
}
.info_manage .master_detail .table_section {
  display: flex;
  justify-content: flex-start;
  flex-wrap: nowrap;
  overflow-x: auto;
}
.info_manage .master_detail .table {
  display: flex;
  flex-flow: row;
}
.info_manage .master_detail .table thead,
.info_manage .master_detail .table tbody {
  display: flex;  
}
.info_manage .master_detail .table tr {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border-right: 1px solid #fff;
  padding: 10px;
}
.info_manage .master_detail .table th,
.info_manage .master_detail .table td {
  display: block;
  text-align: left;
  white-space: nowrap;
  border-top: none;
}
.info_manage .master_detail .table thead tr {
  background-color: #FFF6EC;
}
.info_manage .master_detail .table tbody tr {
  border-bottom: 1px solid #fff;
  background-color: #fff;  
}
.info_manage .instite_status {
  display: flex;
  flex-flow: column;
  margin-left: 40px;
  margin-bottom: 100px;
}
.info_manage .instite_status .table_section {
  margin-left: 0px;
  width: 99%;
  height: 100px;
  margin-top: 20px;
  overflow: hidden;
}
.info_manage .instite_status .tit {
  margin-top: 60px !important;
  margin: 20px 0;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 10px;
}
.info_manage .month_status {
  display: flex;
  flex-flow: column;
  margin-left: 40px;
  margin-bottom: 100px;
}
.info_manage .month_status .table_section {
  margin-left: 0px;
  width: 99%;
  height: 700px;
  margin-top: 20px;
  overflow: hidden;
}
.info_manage .month_status .tit {
  margin-top: 60px !important;
  margin: 20px 0;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 10px;
}
.info_manage .icons_arrow_square_r {
  display: inline-block;
  width: 39px;
  height: 39px;
  text-align: center;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(/images/v2/icons/icons_arrow_square_r.png);
  margin-right: 10px;
}
.info_manage .icons_arrow_square_l {
  display: inline-block;
  width: 39px;
  height: 39px;
  text-align: center;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(/images/v2/icons/icons_arrow_square_l.png);
  margin-right: 10px;
}/*# sourceMappingURL=common.css.map */


