﻿@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;600;700;800&family=Source+Sans+Pro:wght@200;300;400;600;700;900&display=swap");

/* ROOT */

:root {
  --font-title: "Nunito", sans-serif;
  --font-text: "Source Sans Pro", sans-serif;
  --primary: #295fcb;
  --primary-1: #16439e;
  --info: #3fbfe4;
  --orange: #ff800f;
  --orange-1: #d05418;
  --yellow: #ffb021;
  --yellow-1: #ec8d0e;
  --danger: #f64e60;
}

/* END ROOT */

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;
}

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;
}

img {
  max-width: 100%;
  vertical-align: middle;
}


html,
body {
  position: relative;
  line-height: 1;
  font-family: var(--font-title);
}

.sidebar-scroll {
  height: calc(100vh - 400px);
  overflow-y: auto;
}
/* FORM */

.form-groups {
  margin-bottom: 25px;
  position: relative;
}

.form-groups label {
  margin-bottom: 5px;
  font-size: 14px;
  color: var(--primary);
  line-height: 16px;
}

.form-controls {
  width: 100%;
  box-shadow: 0px 4px 0 0 #e2ecf7;
  border: 2px solid #e2ecf7;
  border-radius: 8px;
  outline: none;
  font-size: 16px;
  padding: 12px 15px 11px 15px;
  display: block;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s;
}

.form-controls:disabled {
  background: #f1f8ff;
  cursor: not-allowed;
}

.form-controls:focus {
  box-shadow: 0px 4px 0 0 var(--yellow);
  border: 2px solid var(--yellow);
}

.form-controls.is-invalid {
  box-shadow: 0px 4px 0 0 var(--danger);
  border: 2px solid var(--danger);
}

textarea.form-controls {
  line-height: 24px;
}

.progress-file {
  box-shadow: 0px 4px 0 0 #e2ecf7;
  border: 2px solid #e2ecf7;
  border-radius: 8px;
  position: relative;
  padding: 0 15px;
  background: rgb(255 255 255 / 67%);
}

.progress-file .progress {
  position: absolute;
  width: calc(100% - 30px);
  top: 50%;
  transform: translateY(-50%);
}

.progress-file input {
  opacity: 0;
  pointer-events: none;
}

/* END FORM */

.scrollbar-custom::-webkit-scrollbar-track {
  width: 10px;
  background-color: #dbf8fd;
  border-radius: 10px;
}

.scrollbar-custom::-webkit-scrollbar {
  width: 10px;
  background-color: #dbf8fd;
  border-radius: 10px;
}

.scrollbar-custom::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #4fc3fb;
}

/* SIZE */

.w-150px {
  width: 150px;
}

/* SIZE */

/* FLEX */

.flex-1 {
  flex: 1;
}

/* END FLEX */

.bg-cnv {
  background: #f63ff7;
}
.bg-ccd {
  background: #a0ffac;
}
.bg-dcd {
  background: var(--success);
  color: #fff;
  text-align: center;
}

/* TEXT */

.font-weight-800 {
  font-weight: 800;
}

.font-weight-700 {
  font-weight: 700;
}

.font-weight-600 {
  font-weight: 600;
}

/* END TEXT */

/* BUTTON */

.btn {
  padding: 13px 25px 12px;
  border-radius: 25px;
  transition: all 40ms linear;
  font-size: 15px;
}

.btn-xs {
  padding: 5px 15px 4px;
  font-size: 14px;
}

.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary-1);
  -moz-box-shadow: 0 6px 0 var(--primary-1), 0 10px 15px rgba(0, 0, 0, 0);
  -webkit-box-shadow: 0 6px 0 var(--primary-1), 0 10px 15px rgb(0 0 0 / 0%);
  box-shadow: 0 6px 0 var(--primary-1), 0 10px 15px rgb(0 0 0 / 0%);
}

.btn-primary:hover,
.btn-primary:focus {
  -moz-box-shadow: 0 6px 0 var(--primary-1), 0 10px 15px rgba(0, 0, 0, 0);
  -webkit-box-shadow: 0 6px 0 var(--primary-1), 0 10px 15px rgb(0 0 0 / 0%);
  box-shadow: 0 6px 0 var(--primary-1), 0 10px 15px rgb(0 0 0 / 0%);
}

.btn-orange {
  color: var(--white);
  background-color: var(--orange);
  border-color: var(--orange);
  -moz-box-shadow: 0 6px 0 var(--orange-1), 0 10px 15px rgba(0, 0, 0, 0);
  -webkit-box-shadow: 0 6px 0 var(--orange-1), 0 10px 15px rgb(0 0 0 / 0%);
  box-shadow: 0 6px 0 var(--orange-1), 0 10px 15px rgb(0 0 0 / 0%);
  /* box-shadow: 0 5px 0 var(--primary-1); */
}

.btn-orange.btn-xs {
  border-radius: 4px;
  -moz-box-shadow: 0 6px 0 var(--orange-1), 0 10px 15px rgba(0, 0, 0, 0);
  -webkit-box-shadow: 0 6px 0 var(--orange-1), 0 10px 15px rgb(0 0 0 / 0%);
  box-shadow: 0 3px 0 var(--orange-1), 0 10px 15px rgb(0 0 0 / 0%);
}

.btn-orange:hover,
.btn-orange:focus {
  color: var(--white);
  background-color: #f98823;
  -moz-box-shadow: 0 6px 0 var(--orange-1), 0 7px 10px rgba(0, 0, 0, 0);
  -webkit-box-shadow: 0 6px 0 var(--orange-1), 0 7px 10px rgb(0 0 0 / 0%);
  box-shadow: 0 6px 0 var(--orange-1), 0 7px 10px rgb(0 0 0 / 0%);
}

.btn.spinner {
  cursor: not-allowed;
  opacity: 0.7;
}

.btn-add {
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 6px;
    background: #e2ecf7;
    font-weight: 700;
    outline: none;
    box-shadow: none;
    padding: 0 18px;
    height: 100%;
}

.spinner {
  position: relative;
}

.spinner:before {
  content: "";
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  border-radius: 50%;
  width: 1.5rem;
  height: 1.5rem;
  margin-top: -0.75rem;
  -webkit-animation: animation-spinner 0.5s linear infinite;
  animation: animation-spinner 0.5s linear infinite;
}

.spinner.spinner-right.btn:not(.btn-block) {
  padding-right: 3.5rem;
}

.spinner.spinner-right:before {
  left: auto;
  right: 1rem;
}

.spinner.spinner-white:before {
  border: 2px solid #ffffff;
  border-right: 2px solid transparent;
}

@-webkit-keyframes animation-spinner {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes animation-spinner {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.text-blinker span {
  animation: blinker 0.8s step-end infinite;
  letter-spacing: 0.5px;
}

.text-blinker:hover span {
  animation: none;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}

.tooltip-custom {
  position: relative;
}

.tooltip-custom .tooltip-content {
  z-index: 1070;
  position: absolute;
  padding: 0.4rem 0;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
}

.tooltip-custom:hover .tooltip-content {
  visibility: visible;
  opacity: 1;
}

.tooltip-custom .tooltip-content .arrow {
  position: absolute;
  display: block;
  width: 0.8rem;
  height: 0.4rem;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.tooltip-custom .tooltip-content .arrow:before {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
  top: 0;
  left: 0;
  border-width: 0.4rem 0.4rem 0;
  border-top-color: var(--white);
}

.tooltip-custom .tooltip-content .tooltip-title {
  -webkit-box-shadow: 0px 0px 20px 0px rgb(0 0 0 / 15%);
  box-shadow: 0px 0px 20px 0px rgb(0 0 0 / 15%);
  max-width: 200px;
  padding: 0.75rem 1rem;
  color: #3f4254;
  text-align: center;
  background-color: var(--white);
  border-radius: 3px;
  line-height: 1.5;
  white-space: nowrap;
}

.page-loading {
  position: fixed;
  width: 100%;
  height: 100%;
  background: url(/Teaching/_assets/images/Loading.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.badge {
  padding: 0.25em 0.6em;
}

.badge-warning {
  background-color: var(--yellow);
  color: #fff;
}

/* END BUTTON */

.modal-custom {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 1002;
  top: 0;
  left: 0;
  display: none;
}

.modal-custom.show {
  display: block;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.modal-custom .logo {
  position: absolute;
  top: 30px;
  left: 30px;
  z-index: 10;
}

.modal-custom .modal-custom__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  /*-webkit-animation-name: fadeIn;
    -webkit-animation-duration: 1s;
    animation-name: fadeIn;
    animation-duration: .3s;*/
  background: url(/Teaching/_assets/images/background-phu.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
}

.modal-custom .modal-custom__bg.story {
  background: #fff;
}

.modal-custom .btn-close {
  position: absolute;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 20px;
  color: #fff;
  right: 30px;
  top: 30px;
  z-index: 10;
}

.modal-custom.show .modal-custom__content {
  position: relative;
  width: auto;
  pointer-events: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  box-shadow: none;
}

.modal-custom.show .modal-custom__content .modal-content {
  border: 0;
  /* -webkit-box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 10%);
    box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 10%);*/
  border: 0 solid rgba(0, 0, 0, 0.2);
  border-radius: 2px;
}

.modal-custom.show .modal-custom__content .modal-content iframe {
  min-height: calc(100vh - (1.75rem * 2));
  display: block;
  width: 100%;
}
.modal-custom.show .modal-custom__content .modal-content embed {
    min-height: calc(100vh - (1.75rem * 2));
  display: block;
  width: 100%;
}

/* TOASTIFY */

.toastify {
  padding: 20px 15px 20px 50px !important;
  opacity: 0.8 !important;
  -webkit-box-shadow: 0 0.5rem 1.5rem 0.5rem rgb(0 0 0 / 8%) !important;
  box-shadow: 0 0.5rem 1.5rem 0.5rem rgb(0 0 0 / 8%) !important;
  background-position: 15px center !important;
  background-repeat: no-repeat !important;
  border-radius: 4px;
  max-width: 370px;
  line-height: 22px;
}

.toastify.toastify-success {
  background: #1bc5bd;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADsSURBVEhLY2AYBfQMgf///3P8+/evAIgvA/FsIF+BavYDDWMBGroaSMMBiE8VC7AZDrIFaMFnii3AZTjUgsUUWUDA8OdAH6iQbQEhw4HyGsPEcKBXBIC4ARhex4G4BsjmweU1soIFaGg/WtoFZRIZdEvIMhxkCCjXIVsATV6gFGACs4Rsw0EGgIIH3QJYJgHSARQZDrWAB+jawzgs+Q2UO49D7jnRSRGoEFRILcdmEMWGI0cm0JJ2QpYA1RDvcmzJEWhABhD/pqrL0S0CWuABKgnRki9lLseS7g2AlqwHWQSKH4oKLrILpRGhEQCw2LiRUIa4lwAAAABJRU5ErkJggg==) !important;
}

.toastify.toastify-error {
  background: #f64e60;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAHOSURBVEhLrZa/SgNBEMZzh0WKCClSCKaIYOED+AAKeQQLG8HWztLCImBrYadgIdY+gIKNYkBFSwu7CAoqCgkkoGBI/E28PdbLZmeDLgzZzcx83/zZ2SSXC1j9fr+I1Hq93g2yxH4iwM1vkoBWAdxCmpzTxfkN2RcyZNaHFIkSo10+8kgxkXIURV5HGxTmFuc75B2RfQkpxHG8aAgaAFa0tAHqYFfQ7Iwe2yhODk8+J4C7yAoRTWI3w/4klGRgR4lO7Rpn9+gvMyWp+uxFh8+H+ARlgN1nJuJuQAYvNkEnwGFck18Er4q3egEc/oO+mhLdKgRyhdNFiacC0rlOCbhNVz4H9FnAYgDBvU3QIioZlJFLJtsoHYRDfiZoUyIxqCtRpVlANq0EU4dApjrtgezPFad5S19Wgjkc0hNVnuF4HjVA6C7QrSIbylB+oZe3aHgBsqlNqKYH48jXyJKMuAbiyVJ8KzaB3eRc0pg9VwQ4niFryI68qiOi3AbjwdsfnAtk0bCjTLJKr6mrD9g8iq/S/B81hguOMlQTnVyG40wAcjnmgsCNESDrjme7wfftP4P7SP4N3CJZdvzoNyGq2c/HWOXJGsvVg+RA/k2MC/wN6I2YA2Pt8GkAAAAASUVORK5CYII=) !important;
}

.toastify.toastify-warning {
  background: #ffa800;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGYSURBVEhL5ZSvTsNQFMbXZGICMYGYmJhAQIJAICYQPAACiSDB8AiICQQJT4CqQEwgJvYASAQCiZiYmJhAIBATCARJy+9rTsldd8sKu1M0+dLb057v6/lbq/2rK0mS/TRNj9cWNAKPYIJII7gIxCcQ51cvqID+GIEX8ASG4B1bK5gIZFeQfoJdEXOfgX4QAQg7kH2A65yQ87lyxb27sggkAzAuFhbbg1K2kgCkB1bVwyIR9m2L7PRPIhDUIXgGtyKw575yz3lTNs6X4JXnjV+LKM/m3MydnTbtOKIjtz6VhCBq4vSm3ncdrD2lk0VgUXSVKjVDJXJzijW1RQdsU7F77He8u68koNZTz8Oz5yGa6J3H3lZ0xYgXBK2QymlWWA+RWnYhskLBv2vmE+hBMCtbA7KX5drWyRT/2JsqZ2IvfB9Y4bWDNMFbJRFmC9E74SoS0CqulwjkC0+5bpcV1CZ8NMej4pjy0U+doDQsGyo1hzVJttIjhQ7GnBtRFN1UarUlH8F3xict+HY07rEzoUGPlWcjRFRr4/gChZgc3ZL2d8oAAAAASUVORK5CYII=) !important;
}

.toastify .toast-close {
  opacity: 0.8;
  padding-left: 30px;
}

/* TOASTIFY */

/* PAGE SIDEBAR */

.page-sidebar {
  position: fixed;
  z-index: 1001;
  width: 320px;
  height: 100vh;
  background: rgb(22, 67, 158, 0.89);
  transition: width 0.2s ease;
}

.page-sidebar .sidebar-scrollbar {
  padding-right: 5px;
}

.page-sidebar .sidebar-scrollbar .scrollbar-custom {
  overflow: auto;
}

.page-sidebar .sidebar-scrollbar .scrollbar-custom::-webkit-scrollbar,
.page-sidebar .sidebar-scrollbar .scrollbar-custom::-webkit-scrollbar-track {
  background-color: transparent;
  width: 5px;
}

.page-sidebar.zoom-out {
  width: 80px;
}

.page-sidebar .page-sidebar_head {
  display: flex;
  align-items: flex-end;
  padding: 15px;
  white-space: nowrap;
}

.page-sidebar.zoom-out .page-sidebar_head {
  padding: 15px 10px;
}

.page-sidebar .page-sidebar_head .image {
  width: 70px;
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.page-sidebar .page-sidebar_head .text {
  width: calc(100% - 70px);
  color: var(--white);
  padding-left: 15px;
  -webkit-animation: fadein 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) 0s 1 normal
    forwards;
  animation: fadein 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) 0s 1 normal forwards;
}

.page-sidebar.zoom-out .page-sidebar_head .text {
  display: none;
}

.page-sidebar .page-sidebar_head .text .text-sub {
  font-size: 15px;
  line-height: 24px;
}

.page-sidebar .page-sidebar_head .text .text-title {
  font-weight: 700;
  font-size: 18px;
}

.page-sidebar .page-sidebar_body {
  height: 65%;
}

.page-sidebar .page-sidebar_body .sidebar-btn {
  width: 100%;
  height: 50px;
  border: 0;
  background: var(--primary-1);
  font-size: 24px;
  color: var(--white);
  outline: none;
  display: none;
}

.page-sidebar .page-sidebar_body .page-sidebar_menu {
  height: 100%;
}

.page-sidebar.zoom-out .page-sidebar_body .sidebar-btn {
  display: block;
}

.page-sidebar.zoom-out .page-sidebar_body .page-sidebar_menu ul {
  display: none;
}

.page-sidebar .page-sidebar_menu {
  margin-top: 30px;
}

.page-sidebar .page-sidebar_menu ul li a {
  display: flex;
  align-items: center;
  color: var(--white);
  padding: 14px 15px;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.page-sidebar .page-sidebar_menu ul li a:hover,
.page-sidebar .page-sidebar_menu ul li a.active {
  background: var(--primary-1);
}

.page-sidebar .page-sidebar_menu ul li a i {
  font-size: 20px;
  margin: 0 20px;
}

.page-sidebar.zoom-out .page-sidebar_menu ul li a i {
  font-size: 22px;
  margin: 0 18px 0 11px;
  min-width: 24px;
  text-align: center;
}

.page-sidebar .page-sidebar_menu span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
}

/* .page-sidebar.zoom-out .page-sidebar_menu ul li a span {
  display: none;
} */

.page-sidebar .page-sidebar-hide {
  position: absolute;
  bottom: 30px;
  right: -20px;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  font-size: 30px;
  background: var(--white);
  border: 2px solid var(--primary-1);
  color: var(--primary-1);
  box-shadow: 0px 8px 15px rgb(0 0 0 / 10%);
  outline: none;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-sidebar .page-sidebar-hide i {
  height: 27px;
}

.page-sidebar.zoom-out .page-sidebar-hide i {
  height: 29px;
  margin-left: -3px;
}

.page-sidebar.zoom-out .page-sidebar-hide {
  transform: rotate(180deg);
}

.page-sidebar .page-sidebar_footer {
  position: absolute;
  bottom: 80px;
  left: 0;
  width: 100%;
}

/* END PAGE SIDEBAR */

/* PAGE LOGIN */

.page-login {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url(/Teaching/_assets/images/background-phu.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
}

.page-login .page-login__box {
  width: 500px;
}

.page-login .page-login__title {
  text-align: center;
  margin-bottom: -2px;
}

.page-login .page-login__title img {
  vertical-align: middle;
}

.page-login .page-login__form {
  background: var(--white);
  padding: 50px;
  border-radius: 35px;
  border: 5px solid var(--primary);
  position: relative;
  z-index: 1;
}

.page-login .page-login__form:before {
  content: "";
  position: absolute;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  border: 2px dashed var(--info);
  border-radius: 25px;
  top: 10px;
  left: 10px;
  z-index: -1;
}

.page-login .page-login__btn {
  margin-top: 15px;
}

/* END PAGE LOGIN */

/* GRADE */

.grade-list {
  position: relative;
}

.grade-list ul {
  display: flex;
  justify-content: center;
}

.grade-list ul li {
  margin: 0 2px;
}

.grade-list ul li a {
  display: block;
  text-decoration: none;
  font-weight: bold;
  padding: 11px 25px 10px;
  border-radius: 10px;
  transition: all 0.2s;
  font-size: 15px;
  color: #000;
  background-color: #d5d5d5;
  border-color: #d5d5d5;
  -moz-box-shadow: 0 6px 0 var(--orange-1), 0 10px 15px rgba(0, 0, 0, 0);
  -webkit-box-shadow: 0 6px 0 #bdbbbb, 0 10px 15px rgb(0 0 0 / 0%);
  box-shadow: 0 6px 0 #bdbbbb, 0 10px 15px rgb(0 0 0 / 0%);
}

.grade-list ul li a.active,
.grade-list ul li a:hover {
  color: var(--white);
  background-color: var(--orange);
  border-color: var(--orange);
  -moz-box-shadow: 0 6px 0 var(--orange-1), 0 10px 15px rgba(0, 0, 0, 0);
  -webkit-box-shadow: 0 6px 0 var(--orange-1), 0 10px 15px rgb(0 0 0 / 0%);
  box-shadow: 0 6px 0 var(--orange-1), 0 10px 15px rgb(0 0 0 / 0%);
}

/* End GRADE */

/* PAGE CONTAINER */

.page-container {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url(/Teaching/_assets/images/background-phu.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
}

.page-header {
  position: absolute;
  width: 100%;
  top: 0;
  display: flex;
  justify-content: flex-end;
  padding: 15px;
  z-index: 10;
}

.page-header .page-header-btn {
  margin-left: 12px;
  padding: 13px 20px 12px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 2px 5px 1px rgb(64 60 67 / 16%);
  cursor: pointer;
}

.page-header .page-header--school {
  background: var(--white);
}

.page-header .page-header--program {
  background: var(--orange);
  color: var(--white);
}

.page-content {
  padding-left: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-content.page-content-scroll {
  overflow-y: auto;
  align-items: baseline;
}

.page-content.page-content-scroll .page-profile {
  height: auto;
}

.page-content .content-position {
  position: absolute;
  top: 0;
  left: 0;
  height: 78%;
  padding: 10% 22% 0 22%;
  width: 100%;
}

.lesson-list {
  height: calc(100% - 100px);
  margin-top: 34px;
  overflow-y: auto;
  overflow-x: hidden;
}

.lesson-list .lesson-list-tab {
  padding: 0 15px;
}

.lesson-list .lesson-list__item {
  margin-bottom: 20px;
  cursor: pointer;
}

.lesson-list .lesson-list__item .image {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.lesson-list .lesson-list__item .lesson-list__btn {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgb(22, 67, 158, 0.82);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 20px;
  transform: translateY(100%);
  transition: all 0.3s ease;
  visibility: hidden;
}

.lesson-list .lesson-list__item:hover .lesson-list__btn {
  transform: translateY(0%);
  visibility: visible;
}

.lesson-list .lesson-list__item .lesson-list__btn .lesson-btn {
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  padding: 12px 0;
  border-radius: 35px;
  font-size: 14px;
  font-weight: 700;
  outline: none;
  transition: all 0.3s ease;
}

.lesson-list .lesson-list__item .lesson-list__btn .lesson-btn:first-child {
  margin-bottom: 10px;
}

.lesson-list .lesson-list__item .lesson-list__btn .lesson-btn:hover {
  background: rgb(255 255 255 / 25%);
}

.lesson-list .lesson-list__item .title {
  font-size: 14px;
  line-height: 18px;
  margin-top: 8px;
}

/* END PAGE CONTAINER */

.page-profile {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.page-profile .page-profile--box {
  max-width: 400px;
}

.page-profile .page-profile--box h3 {
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 25px;
}

.page-profile .page-profile--box .profile-item {
  display: flex;
  font-size: 15px;
  line-height: 20px;
  margin-bottom: 10px;
}

.page-profile .page-profile--box .profile-item .profile-item__label {
  font-weight: 700;
}

.page-profile .page-profile--box .profile-item .profile-item__name {
  width: 150px;
  flex: 1;
  text-align: right;
}

.page-profile .page-profile--box .profile-note {
  background-color: #ffe2e5;
  padding: 15px;
  margin-top: 30px;
  border-radius: 0.42rem;
  color: #f64e60;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
}

.page-report {
  position: relative;
  padding: 90px 0 40px;
}

.page-report .page-report--back {
  position: absolute;
  bottom: calc(100% + 5px);
  left: 0;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  font-size: 22px;
  background: var(--white);
  border: 2px solid var(--primary-1);
  color: var(--primary-1);
  box-shadow: 0px 8px 15px rgb(0 0 0 / 10%);
  outline: none;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.page-report .page-report--back i {
  margin-top: 2px;
}

.page-report .page-report--box {
  padding: 30px;
  border-radius: 12px;
  position: relative;
}

.page-report .page-report--box .page-report--title {
  position: absolute;
  bottom: calc(100% - 1px);
  left: 70px;
  background: #fff;
  padding: 13px 20px 12px;
  text-transform: uppercase;
  font-weight: 900;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  color: var(--primary);
  font-size: 17px;
  width: 70%;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.page-report .page-report--box .table-responsive-attr table thead th {
  color: #b5b5c3 !important;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  font-weight: 800;
}

.page-report .page-report--box .table-responsive-attr table thead th,
.page-report .page-report--box .table-responsive-attr table tr td {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.page-report
  .page-report--box
  .table-responsive-attr
  table
  thead
  th:nth-child(1) {
  min-width: 60px;
  text-align: center;
}

.page-report
  .page-report--box
  .table-responsive-attr
  table
  tbody
  tr
  td:nth-child(1) {
  text-align: center;
}

.page-report
  .page-report--box
  .table-responsive-attr
  table
  thead
  th:nth-child(2) {
  min-width: 200px;
}

.page-report
  .page-report--box
  .table-responsive-attr
  table
  thead
  th:nth-child(3) {
  min-width: 190px;
}

.page-report
  .page-report--box
  .table-responsive-attr
  table
  thead
  th:nth-child(4) {
  min-width: 125px;
}

.page-report
  .page-report--box
  .table-responsive-attr
  table
  thead
  th:nth-child(5) {
  min-width: 110px;
}

.page-report
  .page-report--box
  .table-responsive-attr
  table
  thead
  th:last-child {
  text-align: center;
}

.page-report .page-report--box .table-responsive-attr table tr td:last-child {
  text-align: center;
}

.page-report .page-report--box .table-responsive-attr table tr td {
  font-size: 15px;
  line-height: 22px;
  vertical-align: middle;
}

.page-report .page-report--box .page-report__desc .dealine {
  margin-bottom: 15px;
  font-size: 15px;
  font-weight: 700;
}

.page-report .page-report--box .page-report__desc .content {
  color: #333;
  line-height: 24px;
  font-size: 15px;
}

.page-report .page-report--box .page-report__form {
  padding: 30px;
  border: 3px solid #30a1f9;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.page-report .page-report--box .page-report__post h3 {
  background: #30a1f9;
  color: #fff;
  text-align: center;
  padding: 16px 0 14px 0;
  text-transform: uppercase;
  font-weight: 800;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.page-report .list-file {
}

.page-report .list-file .list-file__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 0.75rem;
  border-radius: 0.42rem;
  padding: 0.6rem 1rem;
  background-color: #f3f6f9;
  line-height: 20px;
  position: relative;
}

.page-report .list-file .list-file__item .text {
  font-size: 13px;
  font-weight: 600;
  color: #7e8299;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding-right: 65px;
  width: 100%;
}

.page-report .list-file .list-file__item .delete {
  width: 50px;
  text-align: center;
  height: 100%;
  position: absolute;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #7e8299;
  cursor: pointer;
}

.page-report .comment {
  margin-top: 40px;
  border-top: 1px solid #e0f6ff;
  padding-top: 40px;
}

.page-report .comment .comment-title {
  text-transform: uppercase;
  font-weight: 800;
  color: #333;
}

.page-report .comment .comment-user {
  justify-content: space-between;
  display: flex;
}

.page-report .comment .comment-user > div {
  width: 50%;
  font-size: 15px;
  line-height: 20px;
  display: flex;
}

.page-report .comment .comment-user > div .title {
  width: 90px;
}

.page-report .comment .comment-user > div .data {
  padding-left: 12px;
  font-weight: 800;
  border-bottom: 1px dotted#999;
  flex: 1;
}

.page-report .comment .comment-desc {
  margin-top: 15px;
  color: #333;
  line-height: 24px;
  font-size: 15px;
}

.page-report .comment .comment-poin {
  -moz-box-shadow: 0 6px 0 var(--orange-1), 0 7px 10px rgba(0, 0, 0, 0);
  -webkit-box-shadow: 0 6px 0 var(--orange-1), 0 7px 10px rgb(0 0 0 / 0%);
  box-shadow: 0 6px 0 var(--orange-1), 0 7px 10px rgb(0 0 0 / 0%);
  text-align: center;
  border-radius: 5px;
  border: 2px solid var(--orange);
}

.page-report .comment .comment-poin .title {
  background: var(--orange);
  padding: 10px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
}

.page-report .comment .comment-poin .poin {
  font-size: 75px;
  font-weight: 700;
  padding: 15px 0;
}

.page-report .page-report__list {
  margin-top: 30px;
}

.page-report .page-report__list .title {
  text-transform: uppercase;
  margin-bottom: 12px;
  color: #333;
  font-weight: 700;
  font-size: 16px;
}

.page-report .page-report__list ul li .key-title {
  line-height: 22px;
  color: var(--orange-1);
  font-weight: 700;
}

.page-report .page-report__list ul li .key-title span {
  padding-left: 5px;
}

.page-report .page-report__list ul li .key-desc {
  color: #757575;
  font-size: 15px;
  line-height: 20px;
  margin: 5px 0 10px;
}

.page-report .page-report__list ul li .key-files a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 0.75rem;
  border-radius: 0.42rem;
  padding: 0.6rem 1rem;
  background-color: #f3f6f9;
  line-height: 20px;
  position: relative;
  font-weight: 600;
  color: #7e8299;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 14px;
  text-decoration: none;
}

.page-report .page-report__list ul li .key-files a span {
  margin-right: 8px;
}

.page-report .page-report--left {
  padding-right: 30px;
}

.support-call {
    position: fixed;
    z-index: 1001;
    right: 25px;
    bottom: 25px;
}
.support-call a {
    display: flex;
    background: rgb(22, 67, 158, 0.89);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 2px 5px 1px rgb(64 60 67 / 16%);
    border-radius: 25px;
}
.support-call a .icon {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    text-align: center;
    line-height: 48px;
    background: #16439e;
    font-size: 24px;
}
.support-call a .icon img {
    height: 30px;
}
.support-call a .phone {
    width: 0;
    visibility: hidden;
    padding: 0;
    line-height: 50px;
    font-weight: 500;
    text-align: center;
    transition: all .2s ease;
    overflow: hidden;
}
.support-call:hover a .phone {
    visibility: visible;
    width: 140px;
}

@media (min-width: 576px) {
  .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .modal-dialog {
    margin: 1.75rem auto;
  }
}

@media (min-width: 768px) {
  .modal-xls {
    max-width: 640px;
  }
}

@media (min-width: 992px) {
  .modal-xls {
    max-width: 800px;
  }
}

@media (min-width: 1350px) {
  .modal-xls {
    max-width: 1140px;
  }
}

@media (max-width: 767px) {
  .page-content.page-content-scroll {
    padding-left: 0px;
  }
  .page-report .page-report--box .page-report--title {
    font-size: 15px;
  }
  .page-sidebar.zoom-out {
    transform: translateX(-80px);
  }
  .page-sidebar.zoom-out .page-sidebar-hide {
    right: -55px;
    bottom: 15px;
  }
  .page-report .page-report--box {
    padding: 30px 15px 15px;
  }
  .page-report__post {
    margin-top: 20px;
  }
  .page-report .page-report--box .table-responsive-attr table thead {
    display: none;
  }
  .page-report .page-report--box .table-responsive-attr table tbody,
  .page-report .page-report--box .table-responsive-attr table tbody tr,
  .page-report .page-report--box .table-responsive-attr table tbody td {
    display: block;
  }
  .page-report .page-report--box .table-responsive-attr table tbody tr {
    border-left: 1px solid #ebedf3;
    border-right: 1px solid #ebedf3;
    border-bottom: 1px solid #ebedf3;
    position: relative;
    margin-bottom: 15px;
  }
  .page-report .page-report--box .table-responsive-attr table tbody tr td {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 1rem 1rem 1rem 40%;
    min-height: 45px;
    border: 0;
    border-top: 1px solid #ebedf3;
  }
  .page-report
    .page-report--box
    .table-responsive-attr
    table
    tbody
    tr
    td:before {
    content: attr(data-title);
    position: absolute;
    left: 12px;
  }
  .page-report .comment .comment-desc {
    margin-bottom: 15px;
  }
  .page-report .comment .comment-user {
    margin-top: 15px;
    flex-direction: column;
  }
  .page-report .comment .comment-user > div {
    width: 100%;
    margin-top: 15px;
  }
  .left-15 {
    left: 15px !important;
  }
  .page-login .page-login__box {
    width: 100%;
    padding: 0 15px;
  }
}


.inapp{

}
.inapp-item { display: flex; min-height: 103px; margin: 6px 0; border-radius: 4px; border: solid 1px rgba(224,224,224) ; position:relative}
    .inapp-item:hover { background: rgba(32,33,36,0.05); }

.inapp-item-ico { flex: 0 0 96px; display: flex; padding: 15px; align-items:center }
    .inapp-item-ico .fal { font-size: 2rem; display: block;text-align: center; flex-grow:1 }
    .inapp-item-ico .img{ width:100%; height:100%; background-position:center center; background-size:contain; background-repeat:no-repeat}
    .inapp-item-detail { flex-grow: 1; padding: 15px 60px 15px 15px; border-inline-start: 1px #d8d8d8 solid; }

.inapp-item-x { position: absolute; top: 5px; right: 5px; width: 48px; height: 48px; line-height: 48px; text-align: center; border-radius: 50%; cursor: pointer }
.inapp-item-x:hover{
    background:rgba(32,33,36,0.1);
}
    .inapp-item-times:active { background: rgba(32,33,36,0.16); }
.inapp-item-name{ font-weight:bold}
.inapp-item-desc{ font-size:11px; margin:6px 0; opacity:0.8}
.inapp-item-status{ font-size:12px; opacity:0.8; display:flex; justify-content:space-between}
.inapp-item-status-value[data-value="Đang thực hiện"] { color:#f00; }

.inapp-item-confirm { position: absolute; top: 0; right: 0px; bottom: 0; background: #fff; border-radius: 0 4px 4px 0; padding: 7px; width: 250px; background: #d5d5d5; display: flex; flex-direction: column; justify-content: space-between }
    .inapp-item-confirm > div:first-child { text-align:center; padding:7px 0 }
.inapp-item-confirm>div:last-child{
    display:flex;
    justify-content:space-between
}
.inapp-item-confirm .btn{ padding:5px 10px;}
.inapp-item-times{
    font-size:11px;
}
.lesson-disabled{
    filter:grayscale()
}
.lessonInApp { border-radius: 5px; background: #dedede; min-height: 24px;  display:flex; align-items:center; overflow:hidden; font-size:12px}
    .lessonInApp > div { display: flex; flex-grow:1; min-height:24px }
.lessonInApp-action { flex: 0 0 32px; align-items: center; justify-content: center; display: flex; cursor:pointer;  }
.lessonInApp-status { flex-grow: 1; align-items: center; justify-content: center; display: flex; padding: 5px; word-break:break-all }

.lessonInApp-action:hover{
    background:#bbb;
}
.lessonInApp-action:active { opacity:0.5; }
.lessonInApp-action.danger { background: #dc3545; color: #fff }