﻿@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é****/
@media only screen and (max-width: 767px) {
  .canvas__open {
    display: block;
    font-size: 22px;
    color: #111111;
    height: 35px;
    width: 35px;
    line-height: 35px;
    text-align: center;
    border: 1px solid #111111;
    border-radius: 2px;
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 25px;
  }
  .offcanvas-menu-overlay {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    content: "";
    z-index: 98;
    -webkit-transition: all, 0.5s;
    -o-transition: all, 0.5s;
    transition: all, 0.5s;
    visibility: hidden;
  }
  .offcanvas-menu-overlay.active {
    visibility: visible;
  }
  .offcanvas-menu-wrapper {
    position: fixed;
    left: -300px;
    width: 300px;
    height: 100%;
    background: #ffffff;
    padding: 50px 20px 30px 30px;
    display: block;
    z-index: 99;
    overflow-y: auto;
    -webkit-transition: all, 0.5s;
    -o-transition: all, 0.5s;
    transition: all, 0.5s;
    opacity: 0;
  }
  .offcanvas-menu-wrapper.active {
    opacity: 1;
    left: 0;
  }
  .offcanvas__menu {
    display: none;
  }
  .slicknav_btn {
    display: none;
  }
  .slicknav_menu {
    background: transparent;
    padding: 0;
    margin-bottom: 20px;
  }
  .slicknav_nav ul {
    margin: 0;
  }
  .slicknav_nav .slicknav_row,
  .slicknav_nav a {
    padding: 7px 0;
    margin: 0;
    color: #111111;
    font-weight: 600;
  }
  .slicknav_nav .slicknav_arrow {
    color: #111111;
  }
  .slicknav_nav .slicknav_row:hover {
    border-radius: 0;
    background: transparent;
    color: #111111;
  }
  .slicknav_nav a:hover {
    border-radius: 0;
    background: transparent;
    color: #111111;
  }
  .slicknav_nav {
    display: block !important;
  }
  .offcanvas__top__hover {
    display: inline-block;
    position: relative;
  }
  .offcanvas__top__hover:hover ul {
    top: 24px;
    opacity: 1;
    visibility: visible;
  }
  .offcanvas__top__hover span {
    color: #111111;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    cursor: pointer;
    font-weight: 600;
  }
  .offcanvas__top__hover span i {
    font-size: 20px;
    position: relative;
    top: 3px;
    right: 2px;
  }
  .offcanvas__top__hover ul {
    background: #111111;
    display: inline-block;
    padding: 2px 0;
    position: absolute;
    left: 0;
    top: 44px;
    opacity: 0;
    visibility: hidden;
    z-index: 3;
    -webkit-transition: all, 0.3s;
    -o-transition: all, 0.3s;
    transition: all, 0.3s;
  }
  .offcanvas__top__hover ul li {
    list-style: none;
    font-size: 13px;
    color: #ffffff;
    padding: 2px 15px;
    cursor: pointer;
  }
  .header__top {
    display: none;
  }
  .header .container {
    position: relative;
  }
  .header__menu {
    display: none;
  }
  .header__nav__option {
    display: none;
  }
  .search-model-form input {
    width: 100%;
    font-size: 24px;
  }
  .hero__slider.owl-carousel .owl-nav button {
    left: 15px;
    top: 80%;
  }
  .hero__slider.owl-carousel .owl-nav button.owl-next {
    left: 75px;
    right: 0;
  }
  .banner__item.banner__item--middle {
    margin-top: 0;
  }
  .banner__item.banner__item--last {
    margin-top: 0;
  }
  .banner__item {
    margin-bottom: 40px;
  }
  .banner {
    padding-bottom: 60px;
  }
  .banner__item__pic {
    float: none;
  }
  .banner__item__pic img {
    min-width: 100%;
  }
  .banner__item__text {
    max-width: 100%;
    position: relative;
    top: 0;
    padding-top: 22px;
  }
  .filter__controls li {
    margin-right: 15px;
  }
  .categories__text {
    margin-bottom: 40px;
  }
  .categories__hot__deal {
    margin-bottom: 40px;
  }
  .instagram__text {
    padding-top: 70px;
  }
  .instagram__pic__item {
    width: 50%;
  }
  .shop__product__option__right {
    text-align: left;
    padding-top: 20px;
  }
  .shop__sidebar {
    padding-right: 0;
    margin-bottom: 40px;
  }
  .testimonial__text {
    padding: 100px 40px 100px;
  }
  .product__details__breadcrumb {
    text-align: left;
  }
  .product__details__pic .nav-tabs {
    width: auto;
    margin-bottom: 40px;
  }
  .product__details__pic .nav-tabs .nav-item {
    margin-bottom: 0;
    margin-right: 10px;
  }
  .product__details__option__size {
    display: block;
    margin-right: 0;
    margin-bottom: 25px;
  }
  .product__details__last__option h5:before {
    width: 440px;
  }
  .product__details__tab .nav-tabs .nav-item {
    margin-bottom: 15px;
  }
  .shopping__cart__table {
    overflow-y: auto;
  }
  .shopping__cart__table table tbody tr td.product__cart__item .product__cart__item__pic {
    float: none;
    margin-right: 0;
  }
  .continue__btn {
    text-align: center;
  }
  .continue__btn.update__btn {
    text-align: center;
    margin-top: 20px;
  }
  .cart__discount {
    margin-top: 40px;
  }
  .checkout__order {
    margin-top: 20px;
  }
  .blog__details__share {
    position: relative;
    left: 0;
    margin-bottom: 18px;
  }
  .blog__details__share span {
    margin-bottom: 14px;
    margin-right: 0;
  }
  .blog__details__share ul li {
    margin-bottom: 15px;
    display: inline-block;
    margin-right: 10px;
  }
  .blog__details__share ul li:last-child {
    margin-right: 0;
  }
  .blog__details__author {
    text-align: center;
    margin-bottom: 20px;
  }
  .blog__details__tags {
    text-align: center;
  }
  .contact__text {
    margin-bottom: 40px;
  }
  .hero__social {
    margin-top: 180px;
  }
}
@font-face {
  font-family: "Roboto";
  src: url("../../fonts/roboto/roboto-variablefont_wdth,wght.ttf") format("truetype");
}
@font-face {
  font-family: "Noto-Sans";
  src: url("../../fonts/noto_sans/notosans-variablefont_wdth,wght.ttf") format("truetype");
}
@font-face {
  font-family: "Manrope";
  src: url("../../fonts/manrope/manrope-variablefont_wght.ttf") format("truetype");
}
@font-face {
  font-family: "manrope-extrabold";
  src: url("../../fonts/manrope/static/manrope-extrabold.ttf") format("truetype");
}
@font-face {
  font-family: "Montserrat";
  src: url("../../fonts/montserrat/montserrat-variablefont_wght.ttf") format("truetype");
}
ul, li {
  list-style: none;
}

body {
  font-family: Manrope, Roboto, Helvetica, Arial, sans-serif;
  font-size: 15px;
}

p {
  margin: 0 auto;
}

a:hover {
  text-decoration: none;
}

/*$secondary-color: #cf0921;
$primary-color: #014eff;
$text-active: #FCE731;*/
@media (min-width: 1200px) {
  .container {
    max-width: 1300px !important;
    padding: 0;
  }
}
.container-fluid {
  width: 100%;
  padding-right: 0;
  padding-left: 0;
  margin-right: 0;
  margin-left: 0;
}

body {
  background: #f8f9fa;
}

.report-form {
  margin-top: 75px;
}
.report-form h2 {
  font-size: 20px;
  font-weight: 700;
  padding-top: 25px;
}
.report-form .filter-box {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.report-form .filter-box #openPopupBtn {
  margin-left: auto;
}
.report-form .filter-box .type-years {
  border-radius: 20px;
  border: none;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
  padding: 0 20px;
}
.report-form .filter-box .type-years:hover {
  border: none;
}
.report-form .filter-box .tt-select {
  border-radius: 20px;
  border: none;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
  cursor: pointer;
  padding-left: 20px;
  padding-right: 20px;
}
.report-form .filter-box .tt-select option {
  cursor: pointer;
  transition: 0.5s all ease;
  background-color: aliceblue;
}
.report-form .filter-box input, .report-form .filter-box select {
  min-width: 150px;
}
.report-form .filter-box button {
  border: none;
  background-color: #1A52CD;
  color: #fff;
  cursor: pointer;
  padding: 5px 15px;
  transition: 0.5s all ease;
  border-radius: 20px;
}
.report-form .filter-box button:hover {
  color: #fff;
  background-color: #006fe6;
  border-color: #007bff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05), 0 4px 10px rgba(0, 123, 255, 0.25);
}
.report-form .filter-box .close-btn {
  border: none;
  background-color: #1A52CD;
  color: #fff;
  cursor: pointer;
  padding: 5px 15px;
  transition: 0.5s all ease;
  border-radius: 20px;
  position: absolute;
  right: 41px;
}
.report-form .filter-box .close-btn:hover {
  color: #fff;
  background-color: #006fe6;
  border-color: #007bff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05), 0 4px 10px rgba(0, 123, 255, 0.25);
}
.report-form .filter-box .popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.report-form .filter-box .popup-overlay .popup {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  width: 100%;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  animation: fadeIn 0.3s ease;
  position: relative;
}
.report-form .filter-box .popup-overlay .popup .form-content {
  padding-top: 30px;
}
.report-form .filter-box .popup-overlay .popup .form-content .input-container {
  transition: all 0.3s ease;
}
.report-form .filter-box .popup-overlay .popup .form-content .input-container:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}
.report-form .filter-box .popup-overlay .popup .form-content .input-field:focus {
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.2);
}
.report-form .filter-box .popup-overlay .popup .form-content .form-container {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}
.report-form .filter-box .popup-overlay .popup input[type=text],
.report-form .filter-box .popup-overlay .popup input[type=tel] {
  width: 100%;
  padding: 12px 15px;
  border-radius: 12px;
  border: 1px solid #d2d2d7;
  font-size: 15px;
  outline: none;
  transition: all 0.2s ease;
}
.report-form .danhsachbaocao-wrapper .danhsachbaocao-item {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: start;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  padding: 0px 10px;
  padding-left: 25px;
  margin-bottom: 20px;
}
.report-form .danhsachbaocao-wrapper .danhsachbaocao-item .info-list {
  display: flex;
  flex-direction: column;
  justify-content: start;
  gap: 15px;
}
.report-form .danhsachbaocao-wrapper .danhsachbaocao-item .info-list .text-list {
  display: flex;
  gap: 10px;
}
.report-form .danhsachbaocao-wrapper .danhsachbaocao-item .info-list .text-list strong {
  color: rgb(94, 110, 130);
}
.report-form .danhsachbaocao-wrapper .danhsachbaocao-item .info-list .tencongtrinh {
  background-color: #EEF9FF;
  padding: 10px;
  border-radius: 10px;
}
.report-form .danhsachbaocao-wrapper .danhsachbaocao-item .info-list .toplist-title {
  display: flex;
  align-items: center;
  margin-top: 10px;
}
.report-form .danhsachbaocao-wrapper .danhsachbaocao-item .info-list .toplist-title h2 strong {
  color: #cf0921;
}
.report-form .danhsachbaocao-wrapper .danhsachbaocao-item .info-list .toplist-title h2 span {
  font-size: 18px;
  color: #006fe6;
}
.report-form .danhsachbaocao-wrapper .danhsachbaocao-item .info-list .toplist-title .ttbaocao {
  display: inline-block;
  padding: 0.5rem 0.75rem;
  font-size: 0.75rem;
  font-weight: bold;
  border-radius: 0.5rem;
  border: 1px solid transparent;
  margin-left: auto;
  margin-right: 25px;
  text-align: center;
  border: none;
}
.report-form .danhsachbaocao-wrapper .danhsachbaocao-item .info-list .toplist-title .ttbaocao.dagui {
  background-color: rgba(255, 172, 50, 0.1);
  color: #2b9348;
}
.report-form .danhsachbaocao-wrapper .danhsachbaocao-item .info-list .toplist-title .ttbaocao.chuagui {
  background-color: rgba(255, 172, 50, 0.1);
  color: #ea3546;
}
.report-form .danhsachbaocao-wrapper .danhsachbaocao-item .info-list .toplist-title .ttbaocao.choduyet {
  background-color: rgba(255, 172, 50, 0.1);
  color: rgb(231.7307692308, 184.6153846154, 5.7692307692);
}
.report-form .danhsachbaocao-wrapper .danhsachbaocao-item .btn-list {
  padding: 20px 0;
  display: flex;
  gap: 15px;
}
.report-form .danhsachbaocao-wrapper .danhsachbaocao-item .btn-list .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #ffffff;
  color: #fff;
  border-radius: 20px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 14px;
}
.report-form .danhsachbaocao-wrapper .danhsachbaocao-item .btn-list .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.report-form .danhsachbaocao-wrapper .danhsachbaocao-item .btn-list .guibaocao {
  background-color: #006fe6;
  color: #fff;
}
.report-form .danhsachbaocao-wrapper .danhsachbaocao-item .btn-list .suabaocao {
  background: linear-gradient(135deg, #FFC107, #FF9800);
}
.report-form .danhsachbaocao-wrapper .danhsachbaocao-item .btn-list .xctbaocao {
  background-color: #cf0921;
}
.report-form .statistical-side {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  padding: 10px;
}
.report-form .statistical-side .statistical-wrapper .card {
  border: none;
}
.report-form .statistical-side .statistical-wrapper .card .card-body {
  color: #232323;
}
.report-form .statistical-side .statistical-wrapper .card .card-body .top-title h2 {
  padding-top: 0px;
  font-size: 18px;
  color: rgb(44, 123, 229);
}
.report-form .statistical-side .statistical-wrapper .card .card-body h6 {
  font-weight: 500;
}
.report-form .statistical-side .statistical-wrapper .card .card-body p {
  font-size: 17px;
  font-weight: 700;
}
.report-form .statistical-side .statistical-wrapper .card .card-body .fa-folder-open {
  color: #1A52CD;
}
.report-form .statistical-side .statistical-wrapper .card .card-body .fa-check-circle {
  color: #2b9348;
}
.report-form .statistical-side .statistical-wrapper .card .card-body .fa-hourglass-half {
  color: rgb(231.7307692308, 184.6153846154, 5.7692307692);
}
.report-form .statistical-side .statistical-wrapper .card .card-body .fa-times-circle {
  color: #ea3546;
}
