*,
*:before,
*:after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  outline: 0;
}

ul, ol {
  list-style: none;
}

a {
  text-decoration: none;
}

body {
  font-family: "Montserrat", sans-serif;
}

input[type=text],
input[type=password],
input[type=number],
input[type=email],
textarea,
select {
  width: 100%;
  height: 50px;
  display: block;
  padding: 0 20px;
  font-family: "Montserrat", sans-serif;
  border: 1px solid #E0E0E0;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.blue_btn {
  width: 100%;
  background: #68AAFF;
  box-shadow: 0 5px 6px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  border: none;
  text-decoration: none;
  display: block;
  color: #fff;
}

.login_wrapper {
  width: 100%;
  min-height: 100vh;
  background: url("../images/backround.jpg") no-repeat center/cover;
  position: relative;
}
.login_wrapper .login_flex {
  width: 100%;
  max-width: 800px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 10px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
  background: url("../images/login_bg.jpg") no-repeat top center/cover;
  padding: 60px 40px 100px;
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
}
.login_wrapper .login_box {
  max-width: 60%;
}
.login_wrapper .login_box img {
  display: block;
  margin-bottom: 10px;
}
.login_wrapper .login_box p {
  margin-bottom: 20px;
}
.login_wrapper .login_box .blue_btn {
  margin: 20px 0 40px;
}
.login_wrapper .login_box .forget_text {
  color: #000000;
  text-decoration: underline;
  font-size: 14px;
}
.login_wrapper .login_box .form_box:first-child {
  margin-bottom: 5px;
}
.login_wrapper .login_box #form_id {
  background: url("../images/icon_people.svg") no-repeat left 20px center;
  padding-left: 70px;
  border: none;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.4);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  font-size: 16px;
}
.login_wrapper .login_box #form_password {
  background: url("../images/icon_lock.svg") no-repeat left 20px center;
  padding-left: 70px;
  border: none;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.4);
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  font-size: 16px;
}
.login_wrapper .powered_box {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: block;
  background: #FFFFFF;
  padding: 10px 20px;
  font-style: italic;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.login_wrapper .powered_box img {
  display: inline-block;
  vertical-align: middle;
}
.login_wrapper .powered_box span {
  display: inline-block;
  vertical-align: middle;
  font-size: 10px;
}

.wrapper {
  width: 100%;
  min-height: 100vh;
  position: relative;
}

header {
  width: 100%;
  padding: 10px;
  background: #fff;
}
header .container {
  background: #68AAFF;
  border-radius: 10px;
  height: 80px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 0 20px;
  position: relative;
  font-family: "MuseoSans300";
  font-size: 14px;
}
header nav {
  margin-left: 10px;
}
header nav ul li {
  display: inline-block;
}
header nav ul li a {
  color: #fff;
  display: block;
  padding: 0 10px;
  line-height: 80px;
  position: relative;
}
header nav ul li a.active:after, header nav ul li a:hover:after {
  content: "";
  width: 100%;
  height: 4px;
  border-radius: 10px;
  background: #fff;
  display: block;
  position: absolute;
  bottom: 2px;
  left: 0;
}
header .header_right {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  z-index: 100;
}
header .search_box {
  width: 280px;
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
header .search_box input[type=text] {
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.4);
  border: none;
  border-radius: 40px;
}
header .search_box .search_btn {
  width: 50px;
  height: 50px;
  position: absolute;
  top: 0;
  right: 0;
  border: none;
  background: url("../images/icon_search.svg") no-repeat center;
  cursor: pointer;
}
header .profile_box {
  width: 50px;
  height: 50px;
  display: inline-block;
  vertical-align: middle;
  border-radius: 50px;
  background: #fff;
  margin-left: 10px;
  position: relative;
  border: 1px solid #E0E0E0;
  cursor: pointer;
}
header .profile_box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50px;
}
header .profile_box .notif {
  background: #D81F2A;
  border-radius: 20px;
  width: 20px;
  height: 20px;
  display: block;
  color: #fff;
  text-align: center;
  font-size: 10px;
  line-height: 20px;
  font-family: "MuseoSans500";
  position: absolute;
  bottom: -5px;
  right: 0;
}
header .profile_box .profile_menu {
  width: 85px;
  position: absolute;
  top: 55px;
  right: 0;
  background: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  display: none;
}
header .profile_box .profile_menu a {
  padding: 10px;
  color: #585E64;
  display: block;
  font-size: 12px;
  text-align: right;
}

section {
  padding-bottom: 60px;
}
section .breadcrumb_box {
  width: calc(100% - 20px);
  border-bottom: 1px solid #E0E0E0;
  margin: 0 auto;
  padding: 0 20px 10px;
}
section .breadcrumb_box.back {
  padding-left: 40px;
  position: relative;
}
section .breadcrumb_box.back .back_btn {
  width: 40px;
  height: 100%;
  background: url("../images/icon_chevron_left.svg") no-repeat top 10px center/16px;
  text-indent: -9999px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
section .breadcrumb_box .title {
  font-family: "MuseoSans700";
  font-size: 24px;
}
section .breadcrumb_box ul {
  overflow: hidden;
}
section .breadcrumb_box ul li {
  font-size: 14px;
  color: #585E64;
  display: block;
  float: left;
}
section .breadcrumb_box ul li a {
  color: #585E64;
}
section .breadcrumb_box ul li:after {
  content: "/";
  display: inline-block;
  margin: 0 5px;
}
section .breadcrumb_box ul li:last-child:after {
  display: none;
}
section .user_profile_wrapper {
  width: calc(100% - 60px);
  margin: 40px auto 40px;
}
section .user_profile_wrapper .upw_title {
  position: absolute;
  top: 97px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
  background: #D2D2D2;
  border-radius: 10px;
}
section .user_profile_wrapper .upw_title a {
  padding: 16px 20px;
  display: inline-block;
  color: #000000;
}
section .user_profile_wrapper .upw_title a.active {
  color: #fff;
  background: #68AAFF;
  border-radius: 10px;
}
section .user_profile_wrapper .upw_title .notif {
  background: #FF0000;
  width: 20px;
  height: 20px;
  margin-left: 5px;
  display: inline-block;
  border-radius: 20px;
  color: #fff;
  line-height: 20px;
  text-align: center;
}
section .user_profile_wrapper .upw_content table {
  width: 100%;
  border: 1px solid #E0E0E0;
  border-collapse: collapse;
}
section .user_profile_wrapper .upw_content table tr th {
  white-space: nowrap;
  background: #fff;
  border-color: #E0E0E0;
  padding: 40px 10px 40px;
}
section .user_profile_wrapper .upw_content table tr th.sorting_disabled:before {
  display: none !important;
}
section .user_profile_wrapper .upw_content table tr th.sorting_disabled:after {
  display: none !important;
}
section .user_profile_wrapper .upw_content table tr td {
  background: #fff;
  border-bottom: 1px solid #E0E0E0;
  padding: 20px 10px;
}
section .user_profile_wrapper .upw_content table tr td a {
  color: #000000;
}
section .user_profile_wrapper .upw_content #myTable tr td:first-child {
  opacity: 0;
}
section .user_profile_wrapper .upw_content #myTable tr td:last-child {
  opacity: 0;
}
section .user_profile_wrapper .upw_content .filter_wrapper {
  position: relative;
}
section .user_profile_wrapper .upw_content .filter_wrapper .filter_btn {
  width: 42px;
  height: 42px;
  margin: 0 auto;
  background: #F0F0F0 url("../images/icon_gear.png") no-repeat center;
  display: block;
  border-radius: 42px;
  cursor: pointer;
}
section .user_profile_wrapper .upw_content .filter_wrapper .filter_box {
  width: 260px;
  position: absolute;
  top: 40px;
  right: 0;
  border: 1px solid #B1B1B1;
  background: #F8F7FA;
  border-radius: 10px;
  z-index: 99990;
  display: none;
}
section .user_profile_wrapper .upw_content .filter_wrapper .filter_check {
  padding: 10px 20px;
  border-bottom: 1px solid #B1B1B1;
  position: relative;
}
section .user_profile_wrapper .upw_content .filter_wrapper .filter_check button,
section .user_profile_wrapper .upw_content .filter_wrapper .filter_check input[type=checkbox] {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
section .user_profile_wrapper .upw_content .filter_wrapper .filter_check button:checked + span,
section .user_profile_wrapper .upw_content .filter_wrapper .filter_check input[type=checkbox]:checked + span {
  background: url("../images/icon_checklist_fill.png") no-repeat left center/18px;
}
section .user_profile_wrapper .upw_content .filter_wrapper .filter_check span {
  background: url("../images/icon_checklist.png") no-repeat left center/18px;
  padding-left: 28px;
  font-family: "MuseoSans500";
}
section .user_profile_wrapper .upw_content .filter_wrapper .filter_check span.active_filter {
  background: url("../images/icon_checklist_fill.png") no-repeat left center/18px;
}
section .user_profile_wrapper .upw_content .setting_wrapper .setting_btn {
  width: 42px;
  height: 42px;
  display: block;
  margin: 0 auto;
  border-radius: 42px;
  background: #F0F0F0 url("../images/icon_dots_three.png") no-repeat center/5px;
}
section .user_profile_wrapper .upw_content .setting_wrapper .setting_box {
  width: 190px;
  position: absolute;
  top: 70px;
  right: 10px;
  border: 1px solid #B1B1B1;
  background: #F8F7FA;
  border-radius: 10px;
  z-index: 100;
  display: none;
}
section .user_profile_wrapper .upw_content .setting_wrapper .setting_box a {
  display: block;
  height: 36px;
  line-height: 36px;
  padding: 0 20px 0 40px;
  color: #000000;
  border-bottom: 1px solid #B1B1B1;
}
section .user_profile_wrapper .upw_content .setting_wrapper .setting_box .download_btn {
  background: url("../images/icon_download.png") no-repeat left 15px center/18px;
}
section .user_profile_wrapper .upw_content .setting_wrapper .setting_box .delete_btn {
  background: url("../images/icon_trash.png") no-repeat left 15px center/18px;
}
section .user_profile_wrapper .upw_content input[type=checkbox] {
  width: 20px;
  height: 20px;
}
section .user_profile_wrapper .upw_content .status {
  width: 100%;
  height: 38px;
  display: block;
  text-align: center;
  line-height: 38px;
  display: block;
  border-radius: 16px;
}
section .user_profile_wrapper .upw_content .status.subject {
  display: inline-block;
  width: auto;
  padding: 0 20px;
  margin-right: 10px;
  margin-bottom: 10px;
  font-size: 14px;
}
section .user_profile_wrapper .upw_content .status.occupancy {
  width: 150px;
}
section .user_profile_wrapper .upw_content .status.blue_bg {
  background: #03A9F4;
  color: #fff;
}
section .user_profile_wrapper .upw_content .status.grey_bg {
  background: #BDBDBD;
  color: #fff;
}
section .user_profile_wrapper .upw_content .status.red_bg {
  background: #EF5350;
  color: #fff;
}
section .user_profile_wrapper .upw_content .status.green_bg {
  background: #4CAF50;
  color: #fff;
}
section .user_profile_wrapper .upw_content .status.green2_bg {
  background: #EDF7EE;
  color: #000000;
}
section .user_profile_wrapper .upw_content .dataTables_wrapper.no-footer .dataTables_scrollBody {
  border: none;
}
section .user_profile_wrapper .upw_content .DTFC_LeftHeadWrapper table {
  border-right: 0 !important;
  border-radius: 10px;
}
section .user_profile_wrapper .upw_content .DTFC_LeftBodyWrapper .DTFC_LeftBodyLiner table {
  border-right: 0 !important;
}
section .user_profile_wrapper .upw_content .DTFC_RightHeadWrapper table {
  border-left: 0 !important;
  border-radius: 10px;
}
section .user_profile_wrapper .upw_content .DTFC_RightBodyWrapper {
  overflow: visible !important;
}
section .user_profile_wrapper .upw_content .DTFC_RightBodyWrapper .DTFC_RightBodyLiner {
  overflow: visible !important;
}
section .user_profile_wrapper .upw_content .DTFC_RightBodyWrapper .DTFC_RightBodyLiner table {
  border-left: 0 !important;
}
section .user_profile_wrapper .upw_content .DTFC_RightBodyWrapper .DTFC_RightBodyLiner table tr td {
  position: relative;
}
section .user_profile_wrapper .upw_content .dataTables_scrollHeadInner {
  margin: 0 auto;
}
section .user_profile_wrapper .upw_content .dataTables_scrollHeadInner table tr th:first-child {
  opacity: 0;
}
section .user_profile_wrapper .upw_content .dataTables_scrollHeadInner table tr th:last-child {
  opacity: 0;
}
section .user_profile_wrapper .upw_content #myTable_info {
  display: none;
}
section .user_profile_wrapper .upw_content .bottom {
  border: 1px solid #E0E0E0;
  border-top: none;
  text-align: right;
}
section .user_profile_wrapper .upw_content .bottom:after {
  content: "";
  display: block;
  clear: both;
}
section .user_profile_wrapper .upw_content .bottom #myTable_length {
  display: inline-block;
  float: none;
}
section .user_profile_wrapper .upw_content .bottom #myTable_paginate {
  display: inline-block;
  float: none;
  padding: 5px 0;
}
section .avatar_img {
  width: 42px;
  height: 42px;
  display: inline-block;
  vertical-align: middle;
  overflow: hidden;
  border-radius: 40px;
  border: 1px solid #E0E0E0;
}
section .avatar_img.student {
  display: inline-block;
  vertical-align: middle;
  margin-left: -15px;
}
section .avatar_img.student:first-child {
  margin-left: 0;
}
section .avatar_img .image_text {
  display: inline-block;
  vertical-align: middle;
}
section .avatar_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section .avatar_img + .image_text {
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
}
section .profile_detail_wrapper {
  width: calc(100% - 60px);
  margin: 10px auto 0;
}
section .row_flex {
  display: flex;
  flex-wrap: wrap;
}
section .pd_box {
  width: calc((68% - 20px) / 3);
  margin-right: 10px;
}
section .pd_box.width40 {
  width: 40%;
}
section .pd_box.width40 .withdrawal_wrapper h3 {
  font-size: 24px;
  font-family: "MuseoSans300";
  padding-left: 20px;
  margin-bottom: 20px;
}
section .pd_box.width40 .withdrawal_wrapper .ww_box {
  border: 1px solid #E0E0E0;
  margin-bottom: 20px;
}
section .pd_box.width40 .withdrawal_wrapper .withdraw_box {
  border-bottom: 1px solid #E0E0E0;
  padding: 15px 20px;
}
section .pd_box.width40 .withdrawal_wrapper .withdraw_box:last-child {
  border: none;
}
section .pd_box.width40 .withdrawal_wrapper .withdraw_box::after {
  content: "";
  display: block;
  clear: both;
}
section .pd_box.width40 .withdrawal_wrapper .withdraw_box .left {
  float: left;
  font-size: 14px;
}
section .pd_box.width40 .withdrawal_wrapper .withdraw_box .right {
  width: 150px;
  float: right;
  text-align: left;
}
section .pd_box.width40 .withdrawal_wrapper .form_box {
  margin-bottom: 20px;
}
section .pd_box.width40 .withdrawal_wrapper textarea {
  background: #F0F0F0;
  border-radius: 10px;
  height: 100px;
  box-shadow: inset 0 0 5px #C8C8C8;
  resize: none;
  padding: 20px;
}
section .pd_box.width40 .withdrawal_wrapper .uplopdb_img {
  background: #F0F0F0 url("../images/icon_upload_grey.svg") no-repeat right 20px center;
  border-radius: 10px;
  height: 50px;
  box-shadow: inset 0 0 5px #C8C8C8;
  padding: 0 20px;
  position: relative;
  line-height: 50px;
  font-size: 12px;
  display: block !important;
}
section .pd_box.width40 .withdrawal_wrapper .uplopdb_img input[type=file] {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  cursor: pointer;
}
section .pd_box.width40 .withdrawal_wrapper .recipe_box {
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding-left: 20px;
  padding-right: 20px;
}
section .pd_box.width40 .withdrawal_wrapper .recipe_box:after {
  content: "";
  display: block;
  clear: both;
}
section .pd_box.width40 .withdrawal_wrapper .recipe_box .recipe_img {
  width: 60px;
}
section .pd_box.width40 .withdrawal_wrapper .recipe_box .recipe_img img {
  width: 100%;
  display: block;
}
section .pd_box.width40 .withdrawal_wrapper .recipe_box .recipe_text {
  width: calc(100% - 60px);
  padding-left: 10px;
}
section .pd_box.width40 .withdrawal_wrapper .remark_box {
  padding-left: 20px;
  padding-right: 20px;
}
section .pd_box.width40 .withdrawal_wrapper .remark_box h4 {
  margin-bottom: 10px;
}
section .pd_box.width40 .withdrawal_wrapper .remark_box p {
  font-size: 14px;
}
section .pd_box.width27 {
  width: 27%;
}
section .pd_box.width27 .wh_action {
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  text-align: right;
}
section .pd_box.width27 .wh_action span {
  display: inline-block;
  vertical-align: middle;
}
section .pd_box.width27 .wh_action a {
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
}
section .pd_box.schedule:nth-child(2) {
  width: 800px;
  padding-left: 40px;
}
section .pd_box.schedule:first-child {
  width: calc((68% - 20px) / 3);
}
section .pd_box.schedule.custom_one {
  width: calc((68% - 20px) / 3);
  padding-left: 0;
}
section .pd_box.schedule .pdb_main {
  padding: 0;
}
section .pd_box.schedule .name_class {
  padding: 12px;
  background: #899B9A;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
section .pd_box.schedule .nc_img {
  width: 77px;
  height: 77px;
  display: block;
  border-radius: 70px;
  border: 1px solid #707070;
  position: relative;
  overflow: hidden;
}
section .pd_box.schedule .nc_img:before {
  content: "Cover";
  display: block;
  position: absolute;
  font-size: 12px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
section .pd_box.schedule .nc_img img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
section .pd_box.schedule .nc_img input[type=file] {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
section .pd_box.schedule .nc_text {
  width: calc(100% - 77px);
  font-size: 18px;
}
section .pd_box.schedule .nc_text a {
  color: #fff;
  display: block;
  padding-left: 20px;
  font-family: "MuseoSans700";
}
section .pd_box.schedule .nc_text input[type=text] {
  width: calc(100% - 20px);
  background: none;
  border: none;
  border-bottom: 1px solid #E0E0E0;
  font-family: "MuseoSans700";
  margin-left: 20px;
  color: #fff;
  padding: 0px;
}
section .pd_box.schedule .tutor_box {
  padding: 20px 12px;
  border-bottom: 1px solid #E0E0E0;
}
section .pd_box.schedule .tutor {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
section .pd_box.schedule .tutor_img {
  width: 50px;
  height: 50px;
  display: block;
  border-radius: 50px;
  border: 1px solid #707070;
  border-radius: 50px;
  overflow: hidden;
}
section .pd_box.schedule .tutor_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
section .pd_box.schedule .tutor_name {
  width: calc(100% - 50px);
  padding-left: 47px;
  font-family: "MuseoSans500";
  color: #000;
}
section .pd_box.schedule .topic_wrapper {
  padding: 20px 0;
}
section .pd_box.schedule .topic_wrapper h4 {
  padding-left: 12px;
  margin-bottom: 12px;
}
section .pd_box.schedule .topic_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #E0E0E0;
  padding: 12px 12px;
}
section .pd_box.schedule .topic_box:last-child {
  border: none;
}
section .pd_box.schedule .topic_box.active, section .pd_box.schedule .topic_box:hover {
  background: #EDF2F7;
}
section .pd_box.schedule .topic_empty_box img {
  display: block;
  margin: 0 auto 20px;
}
section .pd_box.schedule .topic_empty_box span {
  text-align: center;
  display: block;
  font-family: "MuseoSans500";
  font-size: 16px;
}
section .pd_box.schedule .topic_empty_box span:last-child {
  font-size: 14px;
  font-family: "MuseoSans300";
}
section .pd_box.schedule .topic_cal {
  width: 40px;
  height: 40px;
  border-radius: 5px;
  background: #68AAFF;
  text-align: center;
  font-size: 12px;
  padding-top: 5px;
}
section .pd_box.schedule .topic_cal a {
  color: #fff;
}
section .pd_box.schedule .topic_cal a span {
  display: block;
  font-weight: 700;
}
section .pd_box.schedule .topic_title {
  width: calc(100% - 40px);
  padding: 0 0 0 10px;
}
section .pd_box.schedule .topic_title a {
  color: #000;
  font-size: 14px;
  display: block;
  padding: 10px 20px 10px 0;
  background: url("../images/icon_calendar2.svg") no-repeat right center;
}
section .pd_box.schedule .pds_wrapper.add_ad h3 {
  font-family: "MuseoSans300";
  margin-bottom: 40px;
}
.upload_image {
  width: 100%;
  height: 70px;
  border: 2px dashed #000;
  border-radius: 10px;
  position: relative;
  line-height: 70px;
  font-size: 14px;
}
.upload_image.container {
  border: none;
  height: auto;
}
.upload_image.container .ui_box {
  opacity: 0;
}
.upload_image .ui_text {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
}
.upload_image .blue_btn {
  width: 150px;
  position: absolute;
  top: 50%;
  right: 6px;
  transform: translateY(-50%);
}
.upload_image input[type=file] {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  cursor: pointer;
}
.upload_image img {
  width: 100%;
  display: block;
}

section .pd_box.schedule .pds_wrapper .form_loop {
  padding-bottom: 10px;
  border-bottom: 1px solid #E0E0E0;
  margin-bottom: 30px;
}
section .pd_box.schedule .pds_wrapper .add_multiple_btn {
  border: 1px solid #03A9F4;
  border-radius: 10px;
  display: block;
  width: 180px;
  height: 50px;
  font-size: 14px;
  margin-bottom: 40px;
  line-height: 50px;
  padding-left: 60px;
  color: #03A9F4;
  background: url("../images/icon_add_blue.svg") no-repeat left 20px center;
}
section .pd_box.schedule .pds_wrapper h3 {
  font-size: 24px;
  margin-bottom: 60px;
}
section .pd_box.schedule .pds_wrapper .form_box {
  margin-bottom: 20px;
}
section .pd_box.schedule .pds_wrapper .form_box .title {
  font-weight: 300;
  font-size: 14px;
  font-style: italic;
  display: block;
  margin-bottom: 5px;
}
section .pd_box.schedule .pds_wrapper .ct_box {
  background: #F0F0F0;
  border-radius: 10px;
  padding: 12px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  position: relative;
}
section .pd_box.schedule .pds_wrapper .ct_box.normal {
  padding: 0;
}
section .pd_box.schedule .pds_wrapper .ct_box input[type=text] {
  width: 100%;
  background: url("../images/icon_people.svg") no-repeat left 20px center;
  border-radius: 10px;
  padding-left: 80px;
  height: 66px;
}
section .pd_box.schedule .pds_wrapper .ct_box input[type=text]#start-time, section .pd_box.schedule .pds_wrapper .ct_box input[type=text]#end-time {
  height: 50px;
  background: url("../images/icon_time.svg") no-repeat left 20px center;
  padding-left: 60px;
}
section .pd_box.schedule .pds_wrapper .ct_box input[type=text]#datepicker {
  height: 50px;
  background: url("../images/icon_calendar3.svg") no-repeat left 20px center;
  padding-left: 60px;
}
section .pd_box.schedule .pds_wrapper .ct_box input[type=text].no_icon {
  padding-left: 60px;
  background: url("../images/icon_line.svg") no-repeat left 20px center;
}
section .pd_box.schedule .pds_wrapper .ct_box input[type=text].no_bg {
  padding-left: 60px;
  background: none;
}
section .pd_box.schedule .pds_wrapper .ct_box .delete_btn {
  width: 30px;
  height: 30px;
  display: block;
  background: url("../images/icon_line.svg") no-repeat left 0 center;
  position: absolute;
  top: 18px;
  left: 20px;
  cursor: pointer;
}
section .pd_box.schedule .pds_wrapper .ct_box textarea {
  background: url("../images/icon_line.svg") no-repeat left 20px top 12px;
  border: 1px solid #E0E0E0;
  border-radius: 10px;
  resize: none;
  padding: 12px 20px 12px 60px;
  height: 100px;
}
section .pd_box.schedule .pds_wrapper .ct_box.ad_input input,
section .pd_box.schedule .pds_wrapper .ct_box.ad_input textarea {
  background: none;
  padding: 0 20px;
}
section .pd_box.schedule .pds_wrapper .ct_box.ad_input textarea {
  padding: 20px;
}
section .pd_box.schedule .pds_wrapper .ct_img {
  width: 42px;
  height: 42px;
  border-radius: 40px;
  overflow: hidden;
  border: 1px solid #707070;
}
section .pd_box.schedule .pds_wrapper .ct_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
section .pd_box.schedule .pds_wrapper .ct_info {
  width: calc(100% - 42px);
  padding-left: 20px;
  font-family: "MuseoSans700";
}
section .pd_box.schedule .pds_wrapper .blue_btn {
  box-shadow: none;
}
section .pd_box.schedule .pds_wrapper .half_box::after {
  content: "";
  display: block;
  clear: both;
}
section .pd_box.schedule .pds_wrapper .half_box .form_box {
  width: calc((100% - 20px) / 2);
  margin-right: 20px;
  float: left;
}
section .pd_box.schedule .pds_wrapper .half_box .form_box:last-child {
  margin-right: 0;
}
section .pd_box.schedule .tutors_wrapper {
  border: 1px solid #E0E0E0;
  border-radius: 10px;
  padding: 12px 12px 40px;
  position: relative;
}
section .pd_box.schedule .tutors_wrapper h4 {
  font-family: "MuseoSans300";
  text-transform: uppercase;
  margin-bottom: 20px;
  font-size: 14px;
}
section .pd_box.schedule .tutors_wrapper .tutors_box {
  background: #F8F7FA;
  border: 1px solid #F0F0F0;
  border-radius: 10px;
  margin-bottom: 15px;
}
section .pd_box.schedule .tutors_wrapper .tb_title {
  padding: 5px 12px;
  position: relative;
  border-bottom: 1px solid rgba(112, 112, 112, 0.25);
}
section .pd_box.schedule .tutors_wrapper .tb_img {
  width: 26px;
  height: 26px;
  border-radius: 26px;
  display: inline-block;
  vertical-align: middle;
  overflow: hidden;
  margin-right: 5px;
}
section .pd_box.schedule .tutors_wrapper .tb_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
section .pd_box.schedule .tutors_wrapper .tb_name {
  display: inline-block;
  vertical-align: middle;
  font-size: 12px;
}
section .pd_box.schedule .tutors_wrapper .tb_info {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  font-size: 12px;
}
section .pd_box.schedule .tutors_wrapper .star {
  background: url("../images/icon_star.svg") no-repeat left center;
  padding-left: 18px;
  margin-right: 10px;
  display: inline-block;
  vertical-align: middle;
}
section .pd_box.schedule .tutors_wrapper .medal {
  background: url("../images/icon_medal.svg") no-repeat left center;
  padding-left: 18px;
  display: inline-block;
  vertical-align: middle;
}
section .pd_box.schedule .tutors_wrapper .tb_content {
  padding: 12px 12px 12px 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
section .pd_box.schedule .tutors_wrapper .tb_chart {
  width: 60px;
  height: 60px;
  position: relative;
}
section .pd_box.schedule .tutors_wrapper .count_class_available {
  font-size: 12px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
section .pd_box.schedule .tutors_wrapper .count_class_full {
  font-size: 12px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
section .pd_box.schedule .tutors_wrapper .tb_desc {
  width: calc(100% - 60px);
  padding: 0 0 0 5px;
  position: relative;
}
section .pd_box.schedule .tutors_wrapper .tb_desc .strong {
  font-family: "MuseoSans700";
  font-size: 12px;
}
section .pd_box.schedule .tutors_wrapper .tb_desc span {
  font-size: 10px;
  display: block;
}
section .pd_box.schedule .tutors_wrapper .tb_desc .tb_cost {
  position: absolute;
  top: 0;
  right: 0;
}
section .pd_box.schedule .tutors_wrapper .tutors_paging {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  font-size: 12px;
  padding: 0 12px;
  text-align: right;
}
section .pd_box.schedule .tutors_wrapper .tutors_paging select {
  width: auto;
  border: none;
  height: auto;
  display: inline-block;
  padding: 10px;
}
section .pd_box.schedule .tutors_wrapper .tutors_paging .tp_box {
  display: inline-block;
  margin-right: 5px;
  font-size: 10px;
  vertical-align: middle;
}
section .pd_box.schedule .tutors_wrapper .tutors_paging .tp_box:last-child {
  margin-right: 0;
}
section .pd_box.schedule .tutors_wrapper .tutors_paging .prev_btn {
  width: 20px;
  height: 20px;
  background: url("../images/icon_prev_black.svg") no-repeat center/8px;
  display: inline-block;
  margin-right: 10px;
}
section .pd_box.schedule .tutors_wrapper .tutors_paging .next_btn {
  width: 20px;
  height: 20px;
  background: url("../images/icon_next_black.svg") no-repeat center/8px;
  display: inline-block;
}
section .pd_box.schedule .book_wrapper {
  border: 1px solid #E0E0E0;
  border-radius: 10px;
  position: relative;
}
section .pd_box.schedule .book_wrapper h4 {
  font-family: "MuseoSans300";
  text-transform: uppercase;
  padding: 12px;
  font-size: 14px;
  border-bottom: 1px solid #E0E0E0;
}
section .pd_box.schedule .book_wrapper h4.background {
  background: url("../images/icon_add_black.svg") no-repeat right 12px center;
}
section .pd_box.schedule .book_wrapper .book_box {
  display: flex;
  flex-wrap: wrap;
  padding: 12px;
  border-bottom: 1px solid #E0E0E0;
}
section .pd_box.schedule .book_wrapper .book_empty_box {
  padding: 40px 0;
}
section .pd_box.schedule .book_wrapper .book_empty_box img {
  display: block;
  margin: 0 auto 20px;
}
section .pd_box.schedule .book_wrapper .book_empty_box span {
  text-align: center;
  display: block;
  font-family: "MuseoSans500";
  font-size: 16px;
}
section .pd_box.schedule .book_wrapper .book_empty_box span:last-child {
  font-size: 14px;
  font-family: "MuseoSans300";
}
section .pd_box.schedule .book_wrapper .book_img {
  width: 120px;
}
section .pd_box.schedule .book_wrapper .book_img img {
  width: 100%;
  display: block;
}
section .pd_box.schedule .book_wrapper .book_desc {
  width: calc(100% - 120px);
  padding-left: 15px;
  font-size: 14px;
}
section .pd_box.schedule .book_wrapper .book_desc .strong {
  font-family: "MuseoSans700";
}
section .pd_box.schedule .book_wrapper .book_desc span {
  display: block;
}
section .pd_box.schedule .book_wrapper .bd_box {
  margin-bottom: 10px;
}
section .pd_box.schedule .book_wrapper .button_wrapper {
  padding: 12px;
}
section .pd_box.schedule .book_wrapper .button_wrapper .blue_btn {
  box-shadow: none;
}
section .pd_box.course .overview_box {
  padding: 20px 12px 0;
}
section .pd_box.course .overview_box h4 {
  text-transform: none;
  font-family: "MuseoSans700";
  font-size: 16px;
}
section .pd_box.course .overview_box p {
  font-size: 12px;
  margin-bottom: 20px;
  line-height: 18px;
}
section .pd_box.course .overview_box .form_box {
  margin-bottom: 12px;
}
section .pd_box.course .overview_box .form_box select {
  background: #F0F0F0 url("../images/icon_chevron_down.svg") no-repeat right 10px center;
  border-radius: 10px;
  border: none;
  box-shadow: 0 0 5px #C8C8C8;
  padding-left: 10px;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}
section .pd_box.course .overview_box .form_box textarea {
  background: #F0F0F0;
  border-radius: 10px;
  height: 100px;
  box-shadow: 0 0 5px #C8C8C8;
  resize: none;
  padding: 10px;
}
section .pd_box.course .no_margin h4 {
  margin-bottom: 0;
}
section .pd_box.course .no_margin span {
  font-size: 12px;
  line-height: 18px;
}
section .pd_box.course .topic_wrapper {
  padding: 20px 0;
}
section .pd_box.course .topic_wrapper h4 {
  text-transform: none;
  font-family: "MuseoSans700";
  font-size: 16px;
}
section .pd_box.course .topic_wrapper .blue_btn {
  box-shadow: none;
  width: calc(100% - 24px);
  margin: 20px auto 0;
}
section .pd_box.course .topic_title a {
  background: none;
}
section .pd_box:first-child {
  width: calc(32% - 10px);
}
section .pd_box:last-child {
  margin-right: 0;
}
section .pd_box.guardian .pd_top {
  background: #987ABF;
}
section .pd_box.student .pd_top {
  background: #899B9A;
}
section .pdb_one {
  border: 1px solid #E0E0E0;
  border-radius: 10px;
}
section .pd_top {
  width: 100%;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
}
section .pd_image {
  width: 80px;
  height: 80px;
  overflow: hidden;
  border-radius: 40px;
  border: 1px solid #707070;
  margin-right: 20px;
}
section .pd_image img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
section .pd_info {
  width: calc(100% - 125px);
  padding-right: 100px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
}
section .pd_info span {
  display: block;
  font-size: 18px;
  font-family: "MuseoSans500";
  color: #fff;
}
section .pd_status {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 120px;
  height: 32px;
  line-height: 30px;
  text-align: center;
  border-radius: 32px;
  font-size: 14px;
}
section .pd_status.blue_bg {
  background: #03A9F4;
  color: #fff;
  border: 1px solid #fff;
}
section .pd_status.wallet {
  color: #fff;
  line-height: normal;
  text-align: left;
}
section .pd_status.wallet span {
  display: block;
  font-family: "MuseoSans700";
}
section .pd_main {
  padding: 20px;
}
section .pd_main h4 {
  text-transform: uppercase;
  font-size: 16px;
  margin-bottom: 20px;
}
section .pd_main .half_box {
  display: flex;
  flex-wrap: wrap;
}
section .pd_main .half_box .form_box {
  width: calc((100% - 20px) / 2);
  margin-right: 20px;
}
section .pd_main .half_box .form_box:last-child {
  margin-right: 0;
}
section .pd_main .form_box {
  margin-bottom: 30px;
}
section .pd_main .form_box .title {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.5);
  display: block;
  padding-left: 20px;
}
section .pd_main .form_box .value {
  width: 100%;
  display: block;
  border-bottom: 1px solid #E0E0E0;
  font-size: 18px;
  padding: 10px 20px;
  height: auto;
  font-family: "MuseoSans300";
}
section .pd_main .form_box input[type=text] {
  border: none;
  border-bottom: 1px solid #000;
  font-size: 18px;
  padding: 10px 20px;
  height: auto;
  font-family: "MuseoSans300";
}
section .pd_main .form_box select {
  width: 100%;
  border: none;
  border-bottom: 1px solid #000;
  padding: 9px 16px;
  font-size: 18px;
  font-family: "MuseoSans300";
  height: auto;
}
section .pd_main .form_box textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #000;
  padding: 10px 20px;
  font-size: 18px;
  font-family: "MuseoSans300";
  resize: none;
}
section .pd_main .blue_btn {
  box-shadow: none;
}
section .pdb_main {
  border: 1px solid #E0E0E0;
  padding: 12px;
  border-radius: 10px;
  margin-bottom: 20px;
}
section .pdb_main h4 {
  font-size: 14px;
  text-transform: uppercase;
  font-family: "MuseoSans300";
  margin-bottom: 20px;
}
section .pdb_main h5 {
  font-size: 14px;
  text-transform: uppercase;
  font-family: "MuseoSans700";
  margin-bottom: 10px;
  color: #68AAFF;
}
section .pdb_main .pdb_img {
  padding: 40px 0 80px;
  text-align: center;
  display: block !important;
}
section .pdb_main .pdb_img img {
  display: block;
  margin: 0 auto 40px;
}
section .pdb_main .pdb_img h4 {
  text-transform: none;
  font-family: "MuseoSans700";
  font-size: 16px;
  margin-bottom: 0;
}
section .pdb_main .pdb_img span {
  font-size: 12px;
}

.button_action {
  position: absolute;
  top: 97px;
  right: 10px;
}
.button_action .download_btn {
  background: #68AAFF url("../images/icon_download.svg") no-repeat left 20px center/20px;
  color: #fff;
  height: 50px;
  line-height: 50px;
  display: inline-block;
  padding-left: 55px;
  padding-right: 20px;
  border-radius: 10px;
  margin-left: 5px;
}
.button_action .payment_btn {
  background: #68AAFF url("../images/icon_payment.svg") no-repeat left 20px center/20px;
  color: #fff;
  height: 50px;
  line-height: 50px;
  display: inline-block;
  padding-left: 55px;
  padding-right: 20px;
  border-radius: 10px;
  margin-left: 5px;
}
.button_action .delete_btn {
  background: #EF5350 url("../images/icon_trash.svg") no-repeat left 20px center/20px;
  color: #fff;
  height: 50px;
  line-height: 50px;
  display: inline-block;
  padding-left: 55px;
  padding-right: 20px;
  border-radius: 10px;
  margin-left: 5px;
}
.button_action .block_btn {
  background: #EF5350 url("../images/icon_block.svg") no-repeat left 20px center/20px;
  color: #fff;
  height: 50px;
  line-height: 50px;
  display: inline-block;
  padding-left: 55px;
  padding-right: 20px;
  border-radius: 10px;
  margin-left: 5px;
}
.button_action .approve_btn {
  background: #68AAFF url("../images/icon_checklist.svg") no-repeat left 20px center/20px;
  color: #fff;
  height: 50px;
  line-height: 50px;
  display: inline-block;
  padding-left: 55px;
  padding-right: 20px;
  border-radius: 10px;
  margin-left: 5px;
}
.button_action .rejected_btn {
  background: #EF5350 url("../images/icon_close.svg") no-repeat left 20px center/20px;
  color: #fff;
  height: 50px;
  line-height: 50px;
  display: inline-block;
  padding-left: 55px;
  padding-right: 20px;
  border-radius: 10px;
  margin-left: 5px;
}
.button_action .reassign_btn {
  background: #68AAFF url("../images/icon_reassign.svg") no-repeat left 20px center/20px;
  color: #fff;
  height: 50px;
  line-height: 50px;
  display: inline-block;
  padding-left: 55px;
  padding-right: 20px;
  border-radius: 10px;
  margin-left: 5px;
}
.button_action .reschedule_btn {
  background: #68AAFF url("../images/icon_calendar.svg") no-repeat left 20px center/20px;
  color: #fff;
  height: 50px;
  line-height: 50px;
  display: inline-block;
  padding-left: 55px;
  padding-right: 20px;
  border-radius: 10px;
  margin-left: 5px;
}
.button_action .cancel_btn {
  background: #EF5350 url("../images/icon_calendar1.svg") no-repeat left 20px center/20px;
  color: #fff;
  height: 50px;
  line-height: 50px;
  display: inline-block;
  padding-left: 55px;
  padding-right: 20px;
  border-radius: 10px;
  margin-left: 5px;
}
.button_action .add_btn {
  background: #68AAFF url("../images/icon_plus.svg") no-repeat left 20px center/20px;
  color: #fff;
  height: 50px;
  line-height: 50px;
  display: inline-block;
  padding-left: 55px;
  padding-right: 20px;
  border-radius: 10px;
  margin-left: 5px;
}

.list_student {
  display: flex;
  flex-wrap: wrap;
  border: 1px solid #F0F0F0;
  border-radius: 10px;
}
.list_student .ls_box {
  width: 100%;
  background: #F8F7FA;
  border-bottom: 1px solid #F0F0F0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 12px;
  position: relative;
}
.list_student .ls_img {
  border: 1px solid #707070;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  overflow: hidden;
}
.list_student .ls_img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.list_student .ls_info {
  width: calc(100% - 50px);
  padding-left: 10px;
  position: relative;
  padding-right: 110px;
}
.list_student .ls_name {
  display: block;
  font-family: "MuseoSans500";
  font-size: 16px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.list_student .ls_name a {
  color: #000;
}
.list_student .ls_grade {
  font-size: 12px;
  display: block;
  font-family: "MuseoSans300";
}
.list_student .ls_status {
  display: block;
  width: 100px;
  height: 32px;
  display: block;
  border-radius: 32px;
  border: 1px solid #fff;
  line-height: 30px;
  text-align: center;
  position: absolute;
  color: #fff;
  font-size: 14px;
  top: 0;
  right: 0;
}
.list_student .ls_status.blue_bg {
  background: #03A9F4;
}
.list_student .ls_status.red_bg {
  background: #EF5350;
}
.list_student .ls_status.grey_bg {
  background: #BDBDBD;
}
.list_student .next_btn {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  background: url("../images/icon_chevron_right.svg") no-repeat center right 20px/12px;
  transform: translateY(-50%);
}

.purchase_record .pr_box {
  position: relative;
  padding: 12px 100px 12px 0;
}
.purchase_record .pr_box span {
  display: block;
}
.purchase_record .pr_box .pr_date {
  font-size: 14px;
}
.purchase_record .pr_box .pr_package {
  font-size: 12px;
}
.purchase_record .pr_box .pr_price {
  width: 100px;
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  text-align: right;
}

.schedule_class {
  border: 1px solid #F0F0F0;
  border-radius: 10px;
  overflow: hidden;
}
.schedule_class.tutor {
  border: none;
  border-radius: 0;
}
.schedule_class.tutor .sc_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  border: 1px solid #F0F0F0;
  border-radius: 10px;
}
.schedule_class .sc_box {
  width: 100%;
  padding: 12px;
  position: relative;
  background: #F8F7FA;
}
.schedule_class .sc_box:hover {
  background: #FF9100;
}
.schedule_class .sc_box:hover span {
  color: #fff;
}
.schedule_class .sc_box.custom {
  background: #FFF5E3;
  border: 1px solid #F3E8C3;
}
.schedule_class .sc_box.custom:hover {
  background: #FF9100;
}
.schedule_class .sc_box span {
  display: block;
  color: #000000;
}
.schedule_class .sc_box .count_class_available {
  font-size: 12px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.schedule_class .sc_box .count_class_full {
  font-size: 12px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.schedule_class .sc_box .name_class {
  font-family: "MuseoSans500";
  font-size: 16px;
  margin-bottom: 5px;
}
.schedule_class .sc_box .time_class {
  font-family: "MuseoSans300";
  font-size: 12px;
}
.schedule_class .sc_box .schedule_next {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: url("../images/icon_chevron_right.svg") no-repeat right 20px center/12px;
}
.schedule_class .sc_chart {
  width: 50px;
  height: 50px;
  display: block;
  position: relative;
}
.schedule_class .sc_chart canvas {
  width: 50px;
  height: 50px;
}
.schedule_class .sc_chart img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.schedule_class .sc_text {
  width: calc(100% - 50px);
  position: relative;
  padding-left: 10px;
}
.schedule_class .sc_pos {
  position: absolute;
  top: 0;
  right: 0;
  text-align: right;
}

.qualification_box {
  margin-bottom: 20px;
}
.qualification_box .qualification {
  border: 1px solid #F0F0F0;
  border-radius: 10px;
  overflow: hidden;
}
.qualification_box .qual_box {
  background: #F8F7FA;
  padding: 12px;
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #F0F0F0;
  align-items: center;
}
.qualification_box .qual_box span {
  display: block;
}
.qualification_box .qual_img {
  width: 40px;
  height: 40px;
  margin-right: 12px;
}
.qualification_box .qual_info {
  width: calc(100% - 52px);
}
.qualification_box .qual_name {
  margin-bottom: 2px;
}
.qualification_box .qual_name.university a {
  font-family: "MuseoSans300";
  display: block;
  padding-right: 25px;
  background: url("../images/icon_chevron_right.svg") no-repeat right center;
}
.qualification_box .qual_name a {
  font-family: "MuseoSans500";
  color: #000;
  display: block;
}
.qualification_box .qual_text {
  font-size: 12px;
}

.resume .resume_box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 20px;
}
.resume .resume_img {
  width: 50px;
  height: 60px;
  margin-right: 15px;
}
.resume .resume_img img {
  width: 100%;
  display: block;
}
.resume .resume_info {
  width: calc(100% - 65px);
}
.resume .resume_info a {
  color: #000;
  background: url("../images/icon_chevron_right.svg") no-repeat right 12px center;
  display: block;
}

.total_earn {
  margin-bottom: 20px;
}
.total_earn .te_box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background: #7D7D7D;
  color: #fff;
  height: 140px;
  border-radius: 20px;
  text-align: center;
}
.total_earn .te_box span {
  display: block;
  font-size: 32px;
  font-family: "MuseoSans500";
  margin-top: 10px;
}

.section_schedule {
  display: flex;
  flex-wrap: wrap;
}
.section_schedule .schedule_box {
  width: 24%;
}
.section_schedule .upw_content {
  width: calc(76% - 20px);
  margin-left: 20px;
}

.dataTables_wrapper .dataTables_length select {
  width: 50px;
  display: inline-block;
  height: 30px;
}

table.dataTable > thead > tr > th, table.dataTable > thead > tr > td {
  border-bottom: none !important;
}

.calendar_height {
  margin-bottom: 20px;
}

.cal_top {
  position: relative;
}
.cal_top .block_calendar {
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  top: 8px;
  cursor: pointer;
}
.cal_top .block_calendar img {
  width: 100%;
  display: block;
}

.fc-toolbar-title {
  color: #68AAFF;
  font-size: 10px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.fc-toolbar-title h2 {
  font-weight: normal;
  font-family: "MuseoSans500";
  text-transform: uppercase;
}

.cal_filter {
  background: #F0F0F0;
  display: block;
  width: 120px;
  border-radius: 10px;
  margin: 0 auto;
}
.cal_filter::after {
  content: "";
  display: block;
  clear: both;
}
.cal_filter button {
  width: 60px;
  display: block;
  float: left;
  color: #000;
  border: none;
  padding: 10px 0;
  border-radius: 10px;
}
.cal_filter button.active {
  background: #68AAFF;
  color: #fff;
}

#chartContainer {
  background-color: transparent !important;
  margin: 0 !important;
  padding: 0 !important;
}

.fc .fc-scrollgrid {
  border: none;
}

.fc-theme-standard td, .fc-theme-standard th {
  border: none;
}

.fc .fc-daygrid-day-top {
  display: flex;
  flex-direction: unset;
  text-align: center;
  height: 100%;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.fc .fc-daygrid-event-harness {
  margin-top: 0px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(3, 169, 244, 0.25);
  border-radius: 10px;
}
.fc .fc-daygrid-event-harness .fc-event {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.fc .fc-daygrid-day-events {
  position: relative;
  z-index: -1;
}

.fc-media-screen .fc-timegrid-col-events {
  top: 24px;
}

.fc-timegrid-body {
  min-height: 0;
  max-height: 210px;
  overflow-y: scroll;
}

.fc .fc-daygrid-day-frame {
  min-height: 0;
  height: 45px;
}

.flatpickr-monthDropdown-months {
  display: inline-block !important;
}

.popup_certificate {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  overflow: scroll;
  display: none;
}
.popup_certificate .overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
}
.popup_certificate .popup_box {
  width: 100%;
  max-width: 1028px;
  height: 90vh;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.popup_certificate .popup_box .other_crt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
  padding: 20px;
  font-size: 18px;
  width: 300px;
  text-align: center;
  border-radius: 10px;
  color: #fff;
}
.popup_certificate .popup_box .other_crt a {
  margin-top: 20px;
}
.popup_certificate .popup_box img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.popup_certificate .popup_box .close_btn {
  width: 60px;
  height: 60px;
  border-radius: 60px;
  background: #EF5350;
  color: #fff;
  line-height: 60px;
  position: absolute;
  top: -20px;
  right: -20px;
  font-size: 32px;
  text-align: center;
}

.fc .fc-daygrid-day.fc-day-today {
  background: #0F65B9;
  border-radius: 10px;
  color: #fff;
}

#myTable_filter {
  position: absolute;
  top: 10px;
  right: 10px;
}

.popup_block_calendar {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  display: none;
  top: 0;
  left: 0;
  z-index: 100;
}
.popup_block_calendar .popup_box {
  position: absolute;
  top: 50%;
  left: 50%;
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  width: 100%;
  max-width: 680px;
  transform: translate(-50%, -50%);
}
.popup_block_calendar .popup_box h2 {
  color: #03A9F4;
  margin-bottom: 20px;
}
.popup_block_calendar .popup_box .form_box {
  margin-bottom: 20px;
}
.popup_block_calendar .popup_box select {
  background: #F0F0F0;
}
.popup_block_calendar .popup_box #start-time,
.popup_block_calendar .popup_box #end-time {
  height: 50px;
  background: #F0F0F0 url("../images/icon_time.svg") no-repeat left 20px center;
  padding-left: 60px;
}
.popup_block_calendar .popup_box #datepicker_start,
.popup_block_calendar .popup_box #datepicker_end {
  height: 50px;
  background: #F0F0F0 url("../images/icon_calendar3.svg") no-repeat left 20px center;
  padding-left: 60px;
}
.popup_block_calendar .popup_box .half_box:after {
  content: "";
  display: block;
  clear: both;
}
.popup_block_calendar .popup_box .half_box .form_box {
  width: calc((100% - 20px) / 2);
  margin-right: 20px;
  margin-bottom: 20px;
  float: left;
}
.popup_block_calendar .popup_box .half_box .form_box:last-child {
  margin-right: 0;
}
.popup_block_calendar .popup_box .button_wrapper:after {
  content: "";
  display: block;
  clear: both;
}
.popup_block_calendar .popup_box .button_wrapper a {
  width: calc((100% - 20px) / 2);
  margin-right: 20px;
  float: left;
}
.popup_block_calendar .popup_box .button_wrapper a:last-child {
  margin-right: 0;
}
.popup_block_calendar .popup_box .button_wrapper .blue_btn {
  box-shadow: none;
}
.popup_block_calendar .popup_box .button_wrapper .blue_btn.border_blue {
  border: 1px solid #68AAFF;
  background: #fff;
  color: #68AAFF;
}
.popup_block_calendar .popup_box .full_day {
  position: relative;
  font-size: 14px;
  margin-bottom: 20px;
}
.popup_block_calendar .popup_box .full_day .check_box {
  position: absolute;
  top: 4px;
  right: 0;
}
.popup_block_calendar .popup_box .full_day .check_box input[type=checkbox] {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 100;
  opacity: 0;
  cursor: pointer;
}
.popup_block_calendar .popup_box .full_day .check_box input[type=checkbox]:checked + span {
  background: rgba(104, 170, 255, 0.45);
}
.popup_block_calendar .popup_box .full_day .check_box input[type=checkbox]:checked + span:before {
  background: #68AAFF;
  left: 22px;
}
.popup_block_calendar .popup_box .full_day .check_box span {
  width: 40px;
  height: 10px;
  border-radius: 20px;
  background: rgba(240, 240, 240, 0.65);
  display: block;
}
.popup_block_calendar .popup_box .full_day .check_box span:before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 18px;
  background: #F0F0F0;
  position: absolute;
  top: -4px;
  left: 0;
}

@media only screen and (max-width: 1530px) {
  body {
    font-size: 12px;
  }
  .list_student .ls_info {
    padding-right: 30px;
    font-size: 14px;
  }
  section .pd_box.guardian {
    width: 32%;
  }
  section .pd_box.guardian .list_student .ls_info {
    padding-right: 100px;
  }
  section .pd_box.custom {
    width: calc((100% - 30px) / 4);
  }
  section .pd_box.custom:first-child {
    width: calc((100% - 30px) / 4);
  }
  section .pd_box.custom .pd_main .form_box .title {
    padding-left: 0;
  }
  section .pd_box.custom .pd_main .form_box input[type=text] {
    padding-left: 0;
    padding-right: 0;
  }
  section .pd_box.custom .pd_main .form_box select {
    padding-left: 0;
    padding-right: 0;
  }
  section .pd_box.custom .pd_main .form_box textarea {
    padding-left: 0;
    padding-right: 0;
  }
  section .pd_box.custom .pd_main .half_box .form_box {
    width: 100%;
    margin-right: 0;
  }
  section .pd_box.custom .pd_image {
    width: 60px;
    height: 60px;
  }
  section .pd_box.custom .pd_info {
    width: 100%;
  }
  section .pd_box.custom .pd_status {
    top: 20px;
    transform: none;
    width: 100px;
    height: 26px;
    line-height: 24px;
    font-size: 12px;
  }
  section .pd_box.custom .list_student .ls_img {
    margin-bottom: 5px;
  }
  section .pd_box.custom .list_student .ls_info {
    width: 100%;
    padding-right: 0;
    padding-left: 0;
  }
  section .pd_box.custom .list_student .ls_status {
    top: -60px;
    height: 26px;
    line-height: 24px;
    font-size: 12px;
  }
  .fc-toolbar-title h2 {
    font-size: 12px;
  }
  .fc .fc-col-header-cell-cushion,
  .fc .fc-daygrid-day-number {
    font-size: 12px;
  }
  .fc .fc-daygrid-day-frame {
    height: 35px;
  }
  .fc .fc-timegrid-axis-cushion,
  .fc .fc-timegrid-slot-label-cushion {
    font-size: 12px;
  }
  .cal_filter {
    width: 100px;
  }
  .cal_filter button {
    font-size: 12px;
    width: 50px;
  }
}/*# sourceMappingURL=main.css.map */