﻿@charset "UTF-8";
/******* RESPONSIVE ********/
/****Màn hình máy tính thông thường****/
/****Màn hình desktop loại bé****/
/**** Màn hình ipad hiển thị theo chiều ngang (Landscape) ****/
/****Màn hình ipad loại bé hiển thị theo chiều ngang (Landscape)****/
/****Màn hình ipad hiển thị theo chiều dọc (Portrait)****/
/****Màn hình ipad loại bé hiển thị theo chiều dọc (Portrait)****/
/****Màn hình điện thoại hiển thị theo chiều ngang (Landscape)****/
/****Màn hình điện thoại Iphone Plus****/
/****Màn hình điện thoại Iphone****/
/****Màn hình điện thoại loại bé****/
@import url("../../fonts/roboto/font-roboto.css");
* {
  box-sizing: inherit;
  padding: 0;
  margin: 0;
}

body {
  box-sizing: border-box;
  font-size: 15px;
  line-height: 1.5;
  scroll-behavior: smooth;
}

p {
  margin: 0 auto;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  max-width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@font-face {
  font-family: "manrope-regular";
  src: url("../../fonts/manrope/static/manrope-regular.ttf") format("truetype");
}
@font-face {
  font-family: "Merriweather";
  src: url("../../fonts/merriweather/merriweather-variablefont_opsz,wdth,wght.ttf") format("truetype");
}
@font-face {
  font-family: "fontawesome-webfont";
  src: url("../../fonts/fontawe4/fontawesome-webfont.ttf") format("truetype");
}
@font-face {
  font-family: "Nunito";
  src: url("../../fonts/nunito/nunito-variablefont_wght.ttf") format("truetype");
}
@font-face {
  font-family: "bevietnampro-regular";
  src: url("../../fonts/be_vietnam_pro/bevietnampro-regular.ttf") format("truetype");
}
ul, li {
  list-style: none;
}

body {
  color: #0a2540;
  font-family: Roboto, Helvetica, Arial, sans-serif;
  font-size: 14px;
}

p {
  margin: 0 auto;
}

a:hover {
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  height: 90px;
  display: flex;
  align-items: center;
  background: #174898;
  padding-left: 15px;
  padding-right: 15px;
}
header .container-fluid {
  transition: all ease-in-out 0.5s;
}

#nav-logo {
  display: flex;
  align-self: center;
  padding: 10px 0;
}
#nav-logo .logo {
  margin-right: 10px;
}
#nav-logo .title_text {
  font-family: Merriweather;
  color: #fff;
  text-transform: uppercase;
  font-size: 0.9vw;
}
#nav-logo .title_text:last-child {
  color: #ffe807;
}
#nav-logo img {
  width: 45px;
  height: 45px;
}

#nav-login-lg {
  padding: 10px 20px;
}
#nav-login-lg .menu {
  display: inline-block;
}
#nav-login-lg .menu, #nav-login-lg .menu:focus {
  color: #ffffff;
  background: #207bbf;
  font-size: 14px;
  padding: 5px;
  margin: 0 0 0 30px;
  border-radius: 50%;
  border-radius: 50px;
  transition: 0.3s;
  cursor: pointer;
}
#nav-login-lg .menu:hover, #nav-login-lg .menu:focus:hover {
  color: #ffffff;
  background: color-mix(in srgb, #207bbf, transparent 15%);
}

#nav-sm {
  height: calc(100vh - 65px);
  width: 100%;
  position: absolute;
  top: 67px;
  right: -20px;
  visibility: hidden;
  transition: all 0.2s ease-in-out;
}
#nav-sm #overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

#nav-menu-sm {
  background: #fff;
  z-index: 10;
  position: absolute;
  height: 100%;
  width: 100%;
  right: 0;
  padding: 20px;
  overflow-y: auto;
}
#nav-menu-sm .submenu-mobile {
  color: #222 !important;
}
#nav-menu-sm ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#nav-menu-sm li {
  border-bottom: 1px solid #eee;
}
#nav-menu-sm a {
  text-decoration: none;
  color: #222;
  display: block;
  padding: 14px 0;
  font-weight: 500;
}
#nav-menu-sm .menu-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
#nav-menu-sm .dropdown-icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
#nav-menu-sm .submenu {
  display: none;
  padding-left: 15px;
}
#nav-menu-sm .submenu li {
  border: none;
}
#nav-menu-sm .submenu a {
  font-size: 14px;
  color: #666;
  padding: 10px 0;
}
#nav-menu-sm .has-dropdown.active > .menu-toggle .dropdown-icon {
  transform: rotate(180deg);
}
#nav-menu-sm .has-dropdown.active > .submenu {
  display: block;
}
#nav-menu-sm .child-dropdown {
  margin-top: 5px;
}

#nav-toggle {
  display: none;
  text-align: center;
  padding: 10px;
  font-size: 25px;
  cursor: pointer;
}

#nav-toggle-button {
  display: none;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  cursor: pointer;
  user-select: none;
}
#nav-toggle-button span {
  height: 4px;
  width: 35px;
  border-radius: 2px;
  background-color: #fff;
  position: relative;
  display: block;
  transition: all 0.2s ease-in-out;
}
#nav-toggle-button span:before {
  top: -10px;
  visibility: visible;
}
#nav-toggle-button span:after {
  top: 10px;
}
#nav-toggle-button span:before, #nav-toggle-button span:after {
  height: 4px;
  width: 35px;
  border-radius: 2px;
  background-color: #fff;
  position: absolute;
  content: "";
  transition: all 0.2s ease-in-out;
}
#nav-toggle-button:hover span, #nav-toggle-button:hover span:before, #nav-toggle-button:hover span:after {
  background: #fff;
}

input[type=checkbox] {
  /*display: none;*/
}

input[type=checkbox]:checked ~ #nav-sm {
  visibility: visible;
}

input[type=checkbox]:checked ~ #nav-toggle-button:hover span, input[type=checkbox]:checked ~ #nav-toggle-button span {
  background: transparent;
}
input[type=checkbox]:checked ~ #nav-toggle-button span:before {
  transform: rotate(45deg) translate(7px, 7px);
  opacity: 1;
}
input[type=checkbox]:checked ~ #nav-toggle-button span:after {
  transform: rotate(-45deg) translate(7px, -7px);
}

#lst-user, #lsthoidap {
  right: 0;
  left: unset;
}

.time-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border-radius: 12px;
  background: #fafafa;
  border: 1px solid #ececec;
  transition: 0.25s;
  margin-bottom: 12px;
}
.time-card:hover {
  background: #f5f9ff;
  border-color: #bcd5ff;
}
.time-card:last-child {
  margin-bottom: 0;
}

.time-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #e8f2ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.time-icon h6 {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 600;
}
.time-icon span {
  color: #666;
  font-size: 14px;
}

@media (max-width: 415px) {
  #nav-logo {
    flex-direction: unset !important;
  }
  #dt-content {
    align-items: start !important;
    justify-content: center !important;
  }
  #dt-content .title_text:first-of-type {
    display: none;
  }
  #dt-content .title_text {
    font-size: 13px;
    font-weight: 700;
    color: #f5d76e;
    line-height: 1.3;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    width: 75%;
  }
  #nav-toggle-button span {
    height: 4px;
    width: 30px;
  }
  #nav-toggle-button span::before, #nav-toggle-button span::after {
    height: 4px;
    width: 30px;
  }
  #main {
    top: 90px !important;
  }
}
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
    height: 100%;
  }
  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
    height: 100%;
  }
  .navmenu li {
    position: relative;
  }
  .navmenu .dropdown ul {
    margin: 0;
    background: #ffffff;
    display: block;
    position: absolute;
    visibility: hidden;
    left: 7px;
    top: 130%;
    opacity: 0;
    transform: none;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 10;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    height: max-content;
  }
  .navmenu > ul > li {
    white-space: nowrap;
    padding: 15px 0.4vw;
    height: 100%;
    border-bottom: solid 3px transparent;
  }
  .navmenu a,
  .navmenu a:focus {
    color: #fff;
    font-size: 1vw;
    padding: 0 2px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
    text-transform: uppercase;
    height: 100%;
  }
  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }
  .navmenu a:hover:before,
  .navmenu li:hover > a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }
  .navbar-item.active {
    border-bottom: solid 3px #ffe807;
  }
  .submenu-link.active {
    background: #eee;
  }
  .submenu-link.active a {
    color: #207bbf !important;
  }
  .navmenu .dropdown ul li a {
    min-width: 200px;
    border-top: 1px dashed;
  }
  .navmenu .dropdown ul li:first-child a {
    border-top: 3px solid #207bbf;
  }
  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 1vw;
    text-transform: none;
    color: #2c4964;
  }
  .navmenu .dropdown ul a i {
    font-size: 12px;
  }
  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover > a {
    color: #207bbf;
  }
  .navmenu .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: 90%;
    visibility: hidden;
  }
  .navmenu .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 102%;
    visibility: visible;
  }
}
@media (max-width: 1199px) {
  #nav-toggle-button {
    display: block;
  }
  .navmenu {
    padding: 0;
    z-index: 9997;
  }
  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: #ffffff;
    border: 1px solid color-mix(in srgb, #444444, transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }
  .navmenu a,
  .navmenu a:focus {
    color: #2c4964;
    padding: 10px 20px;
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }
  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, #207bbf, transparent 90%);
  }
  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: #ffffff;
    transition: all 0.5s ease-in-out;
  }
  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }
  .navmenu .dropdown > .dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }
  .mobile-nav-active {
    overflow: hidden;
  }
  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }
  .mobile-nav-active .navmenu ul {
    display: block;
  }
}
@media (max-width: 992px) {
  #nav-logo .title_text {
    font-size: 14px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  #nav-logo .title_text {
    font-size: 14px;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  #nav-logo .title_text {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .container-fluid {
    padding: 0;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  #nav-logo {
    flex-direction: unset !important;
  }
  #dt-content .title_text:first-of-type {
    display: none;
  }
  #dt-content .title_text {
    font-size: 13px;
    font-weight: 700;
    color: #f5d76e;
    line-height: 1.3;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    width: 75%;
  }
  header {
    padding: 0 28px !important;
  }
  .header-transparent .container-fluid {
    padding-top: 8px !important;
  }
  #dt-content {
    align-items: start;
    margin-top: 10px;
  }
  #nav-toggle-button {
    top: 30%;
  }
  header {
    height: 120px;
  }
}
@media (max-width: 575.98px) {
  #nav-logo {
    flex-direction: unset !important;
  }
  #dt-content .title_text:first-of-type {
    display: none;
  }
  #dt-content .title_text {
    font-size: 13px;
    font-weight: 700;
    color: #f5d76e;
    line-height: 1.3;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    width: 75%;
  }
  #nav-sm {
    top: 79px;
    right: -28px;
  }
  header {
    height: 90px;
  }
  header {
    padding: 0 28px !important;
  }
  .header-transparent .container-fluid {
    padding-top: 8px !important;
  }
}
