﻿@charset "UTF-8";
@keyframes shrink {
  0% {
    background-size: 100%;
  }
  100% {
    background-size: 130%;
  }
}
@keyframes shrink2 {
  0% {
    background-size: 95%;
  }
  100% {
    background-size: 100%;
  }
}
@keyframes opacitymove {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes opacitymoveup {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes opacitymovedown {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes translateXmove {
  from {
    transform: translateX(-30px);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes translateYmoveup {
  from {
    transform: translateY(30px);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes translateYmovedown {
  from {
    transform: translateY(-30px);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes translateLoad {
  0% {
    left: 0%;
    right: 100%;
    width: 0%;
  }
  10% {
    left: 0%;
    right: 75%;
    width: 25%;
  }
  90% {
    right: 0%;
    left: 75%;
    width: 25%;
  }
  100% {
    left: 100%;
    right: 0%;
    width: 0%;
  }
}
@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2);
  }
  100% {
    box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
  }
}
@keyframes animate {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
    border-radius: 0;
  }
  100% {
    transform: translateY(-1000px) rotate(720deg);
    opacity: 0;
    border-radius: 50%;
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/******* 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é****/
/*$secondary-color: #cf0921;
$primary-color: #014eff;
$text-active: #FCE731;*/
header.custom {
  background: none;
  border-bottom: solid 1px rgba(255, 255, 255, 0.3);
}
header.custom .nav-panel .logo .title p {
  color: #fff;
}
header.custom .nav-panel .menu .item a, header.custom .nav-panel .menu .item i, header.custom .nav-panel .menu .item .dropdown-toggle::after, header.custom .nav-panel .menu .item .dropdown-toggle > span {
  color: #fff;
}
header.custom:hover {
  background: #fff;
  border-bottom: solid 1px rgba(0, 0, 0, 0.3);
}
header.custom:hover .nav-panel .logo .title p {
  color: #2c3542;
}
header.custom:hover .nav-panel .menu .item a, header.custom:hover .nav-panel .menu .item i, header.custom:hover .nav-panel .menu .item .dropdown-toggle::after, header.custom:hover .nav-panel .menu .item .dropdown-toggle > span {
  color: #2c3542;
}

.container-vw {
  width: 90vw !important;
}

/*.page-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    min-height: calc(100vh - $headerHeight);
    position: relative;
    background: $background-color;
}*/
.page-body {
  background: #f9fafb;
  padding-bottom: 30px;
}

.page-top {
  width: 100%;
  height: 400px;
  margin-top: -86px;
  animation: shrink2 5s;
  background-image: url("../../images/banner/bg.jpg");
  background-size: cover;
  background-position-x: center;
  filter: blur(0.5px);
}

.page-bottom {
  margin-top: -250px;
  position: relative;
}
.page-bottom .row {
  row-gap: 20px;
}

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

.page-right {
  width: calc(20% - 15px);
  transition: ease-in-out all 0.5s;
  background: #fff;
  box-shadow: rgba(50, 50, 105, 0.15) 0px 0px 5px 0px, rgba(0, 0, 0, 0.05) 0px 1px 1px 0px;
  border-radius: 10px;
  padding: 20px;
  height: calc(100vh - 20px);
  position: sticky;
  top: 10px;
}
.page-right ul {
  padding: 0;
}
.page-right li {
  font-weight: 600;
  padding: 10px;
  margin-bottom: 10px;
  border-bottom: solid 1px #ccc;
  border-radius: 3px;
  position: relative;
  display: flex;
  align-items: center;
}
.page-right li a {
  color: #2c3542;
}
.page-right li:hover {
  cursor: pointer;
  background: aliceblue;
}
.page-right li:hover a {
  color: #1A52CD;
}
.page-right li:hover:before {
  height: 70%;
  border-radius: 0 5px 5px 0;
}
.page-right li:before {
  content: "";
  background: #1A52CD;
  width: 5px;
  height: 5px;
  border-radius: 5px;
  margin: auto;
  position: absolute;
  margin-left: -10px;
  margin-top: 0px;
  transition: ease-in-out all 0.5s;
}
.page-right p {
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 10px;
  margin-top: 10px;
  color: #1A52CD;
}
.page-right.fullscr {
  display: none;
}

.page-left {
  transition: ease-in-out all 0.5s;
  width: 80%;
}
.page-left.fullscr {
  width: 100%;
}

/*.left-toggle {
    position: absolute;
    top: 0;
    left: 10px;
    transition: ease-in-out all 1s;
    z-index: 2;
    font-size: 1.2rem;
    color: #ccc;
    cursor: pointer;

    &:hover {
        opacity: 0.8;
    }

    &.toggled {
        left: calc(20vw - 25px);
        transform: scaleX(-1);
    }
}

.page-left {
    z-index: 1;
    background: #fff;
    box-shadow: rgba(50, 50, 105, 0.15) 0px 0px 5px 0px, rgba(0, 0, 0, 0.05) 0px 1px 1px 0px;
    height: calc(100vh - 43px);
    position: sticky;
    top: 48px;
    width: calc(20vw + 1px);
    padding: 10px;
    transition: ease-in-out all 1s;
    margin-left: 0;

    p, .page-menu {
        visibility: visible;
    }

    p {
        font-weight: 600;
        margin: 10px 0;
    }

    .page-menu {
        border-left: solid 1px #eee;

        .sub-item {
            width: 100%;
            padding: 5px 15px;
            margin: 5px 0;

            a {
                color: $text-color;
                display: block;
                width: 100%;
                font-weight: 500;
            }

            i {
                margin-right: 10px;
            }

            &:hover, &.active {
                background: $background-color;

                a {
                    color: $color-primary;
                }
            }
        }
    }
}

.page-right {
    //background: $background-color;
    width: calc(80% - 1px);
    padding-top: 20px;
    padding-bottom: 20px;
    transition: ease-in-out all 1s;
}

.page-wrapper.fullscr {
    .page-left {
        p, .page-menu {
            visibility: hidden;
        }
        // width: 0;
        //padding: 0px;
        margin-left: calc(-20vw - 1px);
    }

    .page-right {
        width: 100%;
    }
}*/
.box-linhvuc {
  display: none;
}
.box-linhvuc.active {
  display: block;
}

.heading {
  padding: 10px 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
}
.heading .page-title-btn {
  display: flex;
}
.heading .page-title-btn .listLinhVuc {
  display: none;
}
.heading .page-title-btn a {
  font-size: 1rem;
  cursor: pointer;
  color: #fff;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  margin-bottom: 15px;
  background: rgba(255, 255, 255, 0.43);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(7.9px);
  border: 1px solid rgba(255, 255, 255, 0.37);
  opacity: 0.8;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 10px;
}
.heading .page-title-btn a:hover {
  opacity: 1;
}
.heading .page-title span {
  color: #fff;
  display: block;
  margin-bottom: 10px;
}
.heading .page-title span:last-child {
  font-size: 2.5rem;
  font-weight: 800;
}
.heading span {
  font-weight: 600;
  font-size: 1.1em;
  text-transform: uppercase;
}
.heading.title {
  cursor: pointer;
  padding: 10px 5px;
  margin-bottom: 5px;
  border-radius: 10px;
  color: #1A52CD;
  background: rgba(255, 255, 255, 0.43);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(7.9px);
  border: 1px solid rgba(255, 255, 255, 0.37);
}
.heading.title:hover {
  background: #eee;
}
.heading.title.toggled i {
  transform: rotate(0deg);
}
.heading.title i {
  font-weight: 600;
  font-size: 1.2em;
  color: #fff;
  background: #1A52CD;
  border-radius: 20px;
  margin-right: 10px;
  display: flex;
  padding: 3px 6px 2px 6px;
  justify-content: center;
  align-items: center;
  transition: ease-in-out all 0.5s;
  transform: rotate(-90deg);
}
.heading.title span {
  display: block;
  width: 100%;
  padding-bottom: 5px;
  border-bottom: solid 2px #1A52CD;
}

.groupc1 {
  margin-bottom: 20px;
}

.group {
  height: 100%;
  border-radius: 10px;
  background-color: #fff;
  position: relative;
  display: flex;
  flex-direction: column;
  animation: opacitymove 1.5s;
  padding: 20px 30px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
  /*    .viewInfo {
          margin-left: auto;
          font-size: 0.8em;
          cursor: pointer;
          text-transform: none;
          font-weight: 500;
          background: #eee;
          padding: 5px 7px;
          border-radius: 3px;

          &:hover {
              background: aliceblue;
          }

          i {
              margin-right: 3px;
          }
      }
  */
}
.group .heading span:first-child {
  font-weight: 700;
  background: #1A52CD;
  width: max-content;
  padding: 10px 20px;
  color: #fff;
  border-radius: 0 0 10px 10px;
}
.group .heading span {
  margin-bottom: 20px;
  margin-top: -30px;
}
.group .downloadGroup {
  margin-left: auto;
  margin-top: -20px;
  font-size: 0.8em;
  cursor: pointer;
  text-transform: none;
  font-weight: 500;
  background: aliceblue;
  padding: 5px 7px;
  border-radius: 3px;
  color: #1A52CD;
  min-width: 70px;
}
.group .downloadGroup:hover {
  background: #eee;
}
.group .downloadGroup i {
  margin-right: 3px;
}

.pchart {
  position: relative;
  width: 100%;
  max-height: 400px;
  height: 400px;
  border-radius: 10px;
  border: solid 1px #eee;
  color: #5e5e5e;
  margin-bottom: 30px;
}
.pchart > div {
  border-radius: 10px;
}

.stable {
  position: relative;
}
.stable table {
  border: none;
  margin-top: 10px;
  margin-bottom: 30px;
  max-height: 500px;
  overflow-y: scroll;
  width: 100%;
}
.stable table th {
  background: #e7efff;
  padding: 0.5rem 0.7rem;
  border-top: none;
  border-bottom: 3px solid #1A52CD;
  color: #2c3542;
  text-transform: uppercase;
  position: sticky;
  top: 0;
  z-index: 1;
  font-size: 0.9rem;
}
.stable table td {
  max-width: 50%;
  padding: 0.5rem 0.7rem;
}
.stable table tr:hover {
  background: #f9fafb;
}
.stable table tbody {
  border-bottom: 2px solid #ccc;
}
.stable .title {
  font-weight: 800;
  font-size: 1.1rem;
  color: #1A52CD;
  position: relative;
  z-index: 1;
  padding: 5px 10px;
}
.stable .title:before {
  content: "";
  height: 3rem;
  width: 3rem;
  display: block;
  position: absolute;
  border-radius: 50%;
  background: antiquewhite;
  z-index: -1;
  top: -5px;
  left: -5px;
  animation: opacitymove 2s;
}

.danhgia {
  margin-top: 10px;
}
.danhgia .dgTitle {
  position: relative;
  display: inline-block;
  cursor: pointer;
  margin-bottom: 10px;
  padding: 7px 10px;
  border-radius: 7px;
  background-color: bisque;
  font-size: 0.9em;
  font-weight: 600;
  color: #1A52CD;
}
.danhgia .dgTitle:hover {
  opacity: 0.8;
}
.danhgia .dgTitle.open:after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 20%;
  border-style: solid;
  border-width: 12px 5px 0 5px;
  border-color: bisque transparent transparent;
  transform-origin: top;
  animation: opacitymove 0.5s;
}
.danhgia .dgContent {
  padding: 30px 35px;
  position: relative;
  background: #f9fafb;
  border-radius: 7px;
  margin: 10px 0;
  animation: opacitymove 1.5s;
}
.danhgia .dgContent ul {
  padding: 0;
}
.danhgia .dgContent li, .danhgia .dgContent p {
  padding: 0;
  margin: 8px 0;
  text-align: justify;
  font-size: 0.9rem;
  font-weight: 500;
  display: block;
}

.editData {
  position: absolute;
  top: 5px;
  right: 5px;
  z-index: 1;
  background: #ccc;
  color: #fff;
  padding: 3px 6px;
  border-radius: 5px;
  cursor: pointer;
  opacity: 0.7;
  font-size: 0.8rem;
}
.editData:hover {
  opacity: 1;
}
.editData.chart {
  right: 20px;
}
@media only screen and (min-width: 992px) {
  .heading .page-title-btn .listLinhVuc {
    display: flex;
  }
}
