﻿@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;*/
@font-face {
  font-family: "manrope";
  src: url("../../fonts/manrope/manrope-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;
}

#statistical {
  width: 90%;
  margin: 30px auto;
  /* Header */
  /* KPI Cards */
  /* Charts Section */
  /* Table */
  /* Footer Alert */
  /* Responsive */
}
@media only screen and (max-width: 769px) {
  #statistical {
    width: 100%;
  }
}
#statistical .header-statistical {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid #e0e0e0;
}
#statistical .title {
  font-size: 28px;
  font-weight: bold;
  color: #2c3542;
}
@media only screen and (max-width: 769px) {
  #statistical .title {
    font-size: 18px;
  }
}
#statistical .kpi-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}
#statistical .kpi-card {
  background: white;
  padding: 20px;
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  border-left: 4px solid;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 769px) {
  #statistical .kpi-card {
    padding: 10px;
  }
}
#statistical .kpi-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, transparent 50%, rgba(255, 255, 255, 0.1) 50%);
  transform: translate(30px, -30px);
}
#statistical .kpi-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
#statistical .kpi-card:nth-child(1) {
  border-left-color: #667eea;
}
#statistical .kpi-card:nth-child(2) {
  border-left-color: #f093fb;
}
#statistical .kpi-card:nth-child(3) {
  border-left-color: #4facfe;
}
#statistical .kpi-card:nth-child(4) {
  border-left-color: #43e97b;
}
#statistical .kpi-card:nth-child(5) {
  border-left-color: #fa709a;
}
#statistical .kpi-label {
  font-size: 13px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
@media only screen and (max-width: 769px) {
  #statistical .kpi-label {
    font-size: 11px;
  }
}
#statistical .kpi-value {
  font-size: 32px;
  font-weight: bold;
  color: #2c3e50;
  margin-bottom: 5px;
}
@media only screen and (max-width: 769px) {
  #statistical .kpi-value {
    font-size: 24px;
  }
}
#statistical .charts-container {
  display: grid;
  gap: 25px;
  margin-bottom: 30px;
}
#statistical .chart-wrapper {
  background: white;
  padding: 20px;
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
#statistical .chart-title {
  font-size: 18px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f0f0f0;
}
@media only screen and (max-width: 769px) {
  #statistical .chart-title {
    font-size: 16px;
  }
}
@media only screen and (max-width: 769px) {
  #statistical table {
    font-size: 12px;
  }
}
#statistical .chart-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}
#statistical .map-container {
  height: 350px;
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
#statistical .map-placeholder {
  text-align: center;
  color: #1976d2;
}
#statistical .table-wrapper {
  background: white;
  padding: 20px;
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}
#statistical .btn-detail {
  background: #e7efff;
  color: white;
  border: none;
  padding: 6px 16px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 13px;
  transition: all 0.3s;
}
#statistical .btn-detail:hover {
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}
#statistical .alert-footer {
  background: #ff6b6b;
  color: white;
  padding: 20px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 15px;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.9;
  }
}
#statistical .alert-icon {
  font-size: 24px;
}
#statistical .alert-icon i {
  color: #e7efff;
}
#statistical .alert-content h3 {
  margin-bottom: 5px;
  font-size: 16px;
}
@media only screen and (max-width: 769px) {
  #statistical .alert-content h3 {
    font-size: 13px;
  }
}
#statistical .alert-content p {
  font-size: 14px;
  opacity: 0.95;
}
@media only screen and (max-width: 769px) {
  #statistical .alert-content p {
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  #statistical .header {
    flex-direction: column;
    gap: 20px;
  }
  #statistical .filters {
    flex-direction: column;
    width: 100%;
  }
  #statistical .filter-group {
    width: 100%;
  }
  #statistical select, #statistical input[type=date] {
    width: 100%;
  }
  #statistical .chart-row {
    grid-template-columns: 1fr;
  }
  #statistical .kpi-container {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
  #statistical .table-wrapper {
    overflow-x: auto;
  }
}
