:root {
  scroll-behavior: smooth;
}

div.col-xxl-4.col-md-6 {
  animation-name: scaledb;
  animation-duration: 0.5s;
}

div.col-xxl-4.col-xl-12 {
  animation-name: scaledb;
  animation-duration: 0.5s;
}

::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.619);
  border-radius: 30px;
  width: 0px;
}

::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 255, 0.026);
  width: 0px;
}

::-webkit-scrollbar {
  background-color: rgba(0, 0, 255, 0.177);
  width: 0px;
}

body {
  font-family: "Open Sans", sans-serif;
  background: #f6f9ff;
  color: #444444;
}

a {
  color: #4154f1;
  text-decoration: none;
}

a:hover {
  color: #717ff5;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Nunito", sans-serif;
}

#row_action {
  width: 30%;
  margin: 1em 0em;
  display: flex;
}

#row_select {
  width: 35%;
  margin: 1em 0em;
  display: -webkit-inline-box;
}

#row_input {
  width: 35%;
  margin: 1em 0em;
  display: -webkit-inline-box;
}

#row_input_dv {
  width: 30%;
  margin: 1em 0em;
  display: -webkit-inline-box;
}

/*--------------------------------------------------------------
# Main
--------------------------------------------------------------*/
#main {
  margin-top: 60px;
  padding: 20px 30px;
  transition: all 0.3s;
  scroll-behavior: smooth;
  margin-left: 300px;
}

@media (max-width: 1199px) {
  #main {
    padding: 10px;
  }
}

/*--------------------------------------------------------------
# Page Title
--------------------------------------------------------------*/
.pagetitle {
  margin-bottom: 10px;
}

.pagetitle h1 {
  font-size: 24px;
  margin-bottom: 0;
  font-weight: 600;
  color: #012970;
}

.pagetitle input {
  width: 44%;
  padding: 0px 5px;
  border-radius: 5px;
  outline: none;
  border: 1px solid black;
}

.pagetitle select {
  width: 44%;
  padding: 0px 5px;
  border-radius: 5px;
  outline: none;
  border: 1px solid black;
}

.pagetitle form {
  display: inline-flex;
  justify-content: space-between;
  width: 50%;
}

.pagetitle .search_form_tk {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.pagetitle .search_form_tk .select {
  width: 50%;
  padding: 0px 5px;
  display: inline-flex;
  justify-content: space-between;
  outline: 1px solid black;
  margin: 5px;
  border-radius: 5px;
}

.pagetitle .search_form_tk input {
  width: 20%;
  padding: 7px;
}

.pagetitle .search_form_tk .btn_timkiem {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px;
  width: 15%;
  background-color: #007cff;
  border-radius: 5px;
  color: white;
  margin: 0px 5px;
}

.pagetitle input:focus {
  outline: 1px solid rgb(0, 204, 255);
}

.pagetitle label {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 8%;
  background-color: #007cff;
  border-radius: 5px;
  color: white;
  margin: 0px 5px;
}

.pagetitle .li_action {
  margin: 0.1em;
  float: right;
  padding: 0px;
  font-weight: bold;
  border-radius: 5px;
  width: auto;
  animation-name: scaley;
  animation-duration: 0.3s;
}

@-webkit-keyframes body {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes body {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@-webkit-keyframes scaledb {
  from {
    transform: scale(0);
  }

  to {
    transform: scale(1);
  }
}

@keyframes scaledb {
  from {
    transform: scale(0);
  }

  to {
    transform: scale(1);
  }
}

@-webkit-keyframes scaley {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

@keyframes scaley {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

.pagetitle .btn_action {
  margin: 0px 0px;
  float: right;
  border: 1px solid;
  background-color: #00ffff29;
  font-weight: bold;
  border-radius: 5px;
  width: auto;
}

.pagetitle .btn_action_show {
  margin: 0px 0px;
  float: right;
  border: 1px solid;
  background-color: #00ffff29;
  font-weight: bold;
  border-radius: 5px;
  width: auto;
}

.pagetitle .btn_action a {
  color: green;
  font-size: 12px;
  padding: 7px 10px;
}

.pagetitle .btn_action:hover {
  outline: 3px solid rgb(0, 225, 255);
  border-radius: 3px;

}

.btn_c_action_add {
  float: right;
  border: 1px solid;
  padding: 5px 5px;
  background-color: #00ffff29;
  font-weight: bold;
  border-radius: 5px;
  margin: 0.1em;
  width: auto;
}

.btn_c_action {
  float: right;
  border: 1px solid;
  padding: 5px 5px;
  background-color: #00ffff29;
  font-weight: bold;
  border-radius: 5px;
  margin: 0.1em;
  width: auto;
}

.btn_c_action_dot {
  display: none;
  float: right;
  border: 1px solid;
  padding: 5px 5px;
  background-color: #00ffff29;
  font-weight: bold;
  border-radius: 5px;
  margin: 0.1em;
  width: auto;
}

.btn_c_action a {
  color: green;
  font-size: 12px
}

.btn_c_action:hover {
  background-color: #00ffff29;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: #10943e;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
  border-radius: 20px;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #6776f4;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Override some default Bootstrap stylings
--------------------------------------------------------------*/
/* Dropdown menus */
.dropdown-menu {
  border-radius: 4px;
  padding: 10px 0;
  animation-name: dropdown-animate;
  animation-duration: 0.2s;
  animation-fill-mode: both;
  border: 0;
  box-shadow: 0 5px 30px 0 rgba(82, 63, 105, 0.2);
}

.dropdown-menu .dropdown-header,
.dropdown-menu .dropdown-footer {
  text-align: center;
  font-size: 15px;
  padding: 10px 25px;
}

.dropdown-menu .dropdown-footer a {
  color: #444444;
  text-decoration: underline;
}

.dropdown-menu .dropdown-footer a:hover {
  text-decoration: none;
}

.dropdown-menu .dropdown-divider {
  color: #a5c5fe;
  margin: 0;
}

.dropdown-menu .dropdown-item {
  font-size: 14px;
  padding: 10px 15px;
  transition: 0.3s;
}

.dropdown-menu .dropdown-item i {
  margin-right: 10px;
  font-size: 18px;
  line-height: 0;
}

.dropdown-menu .dropdown-item:hover {
  background-color: #f6f9ff;
}

@media (min-width: 768px) {
  .dropdown-menu-arrow::before {
    content: "";
    width: 13px;
    height: 13px;
    background: #fff;
    position: absolute;
    top: -7px;
    right: 20px;
    transform: rotate(45deg);
    border-top: 1px solid #eaedf1;
    border-left: 1px solid #eaedf1;
  }

}

@keyframes dropdown-animate {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }

  0% {
    opacity: 0;
  }
}

/* Light Backgrounds */
.bg-primary-light {
  background-color: #cfe2ff;
  border-color: #cfe2ff;
}

.bg-secondary-light {
  background-color: #e2e3e5;
  border-color: #e2e3e5;
}

.bg-success-light {
  background-color: #d1e7dd;
  border-color: #d1e7dd;
}

.bg-danger-light {
  background-color: #f8d7da;
  border-color: #f8d7da;
}

.bg-warning-light {
  background-color: #fff3cd;
  border-color: #fff3cd;
}

.bg-info-light {
  background-color: #cff4fc;
  border-color: #cff4fc;
}

.bg-dark-light {
  background-color: #d3d3d4;
  border-color: #d3d3d4;
}

/* Card */
.card {
  margin-bottom: 0px;
  border: none;
  border-radius: 5px;
  padding: 5px;
  background-color: #f1f1f1;
}

.card .row.g-3 {
  padding: 0px 10px;
}

.card-header,
.card-footer {
  border-color: #ebeef4;
  background-color: #fff;
  color: #798eb3;
  padding: 15px;
}

.card-title {
  padding: 5px;
  font-size: 18px;
  font-weight: 500;
  border-radius: 5px;
  background-color: #e8e8e8fc;
  color: #012970;
  font-family: "'Open Sans'", sans-serif;
}

.card-title span {
  color: #899bbd;
  font-size: 14px;
  font-weight: 400;
}

.card-body {
  padding: 0 5px 20px 5px;
  height: 25em;
  overflow-y: auto;
}

.card-img-overlay {
  background-color: rgba(255, 255, 255, 0.6);
}

/* Alerts */
.alert-heading {
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
}

/* Close Button */
.btn-close {
  background-size: 25%;
}

.btn-close:focus {
  outline: 0;
  box-shadow: none;
}

/* Accordion */
.accordion-item {
  border: 1px solid #ebeef4;
}

.accordion-button:focus {
  outline: 0;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  color: #012970;
  background-color: #f6f9ff;
}

.accordion-flush .accordion-button {
  padding: 15px 0;
  background: none;
  border: 0;
}

.accordion-flush .accordion-button:not(.collapsed) {
  box-shadow: none;
  color: #4154f1;
}

.accordion-flush .accordion-body {
  padding: 0 0 15px 0;
  color: #3e4f6f;
  font-size: 15px;
}

.pagetitle #table {
  display: flex;
  justify-content: left;
  align-content: flex-start;
  align-items: start;
  height: 67vh;
  overflow-y: scroll;
  background-color: #e6e6e6;
  padding: 10px;
  margin: 0;
  border-radius: 7px;
}

.pagetitle #table .li_table {
  width: 15%;
  animation-name: scaley;
  animation-duration: 0.3s;
  margin: 5px;
  display: flex;
  outline: 3px solid #00c7ff;
  border-radius: 7px;
}

.breadcrumb #btn_action {
  color: white;
}



.pagetitle #table .li_table .btn_table {
  padding: 15px 0px;
  font-weight: bold;
  width: 100%;
  height: 100px;
  border-radius: 5px;
  text-align: center;
  background-color: green;
  color: rgb(0, 0, 0);
  background-color: #ffffff;
  box-shadow: 0px 10px 13px -7px #000000, 5px 5px 15px 5px rgba(0, 0, 0, 0);
}

.pagetitle #table .li_table .btn_table:hover {
  background: blue;
  color: white;
}

.pagetitle #table .li_table .btn_table:hover .b2 {
  background: rgb(255, 255, 255);
  color: #000000;
}

.pagetitle #table .li_table .btn_table:hover .b1 {
  border: 1px solid rgb(255, 255, 255);
}

.pagetitle #table .li_table .btn_table_active {
  padding: 15px 0px;
  font-weight: bold;
  width: 100%;
  height: 100px;
  cursor: pointer;
  border-radius: 5px;
  text-align: center;
  background-color: red;
  color: white;
  box-shadow: 0px 10px 13px -7px #000000, 5px 5px 15px 5px rgba(0, 0, 0, 0);
}

.pagetitle #table .li_table .btn_table_active:hover {
  background-color: rgb(148, 2, 2);
}

.pagetitle #table .li_table .btn_table .b2 {
  background-color: #0088f7;
  border-radius: 6px;
  color: rgb(255, 255, 255);
  padding: 5px 10px;
}

.pagetitle #table .li_table .btn_table .b1 {
  border-radius: 6px;
  border: 1px solid black;
  padding: 5px 10px;
  margin-right: 0.2em;
}

.pagetitle #table .li_table .btn_table_active .b1 {
  border-radius: 6px;
  border: 1px solid rgb(255, 255, 255);
  padding: 5px 10px;
  margin-right: 0.2em;
}

.pagetitle #table .li_table .btn_table_active .b2 {
  background-color: white;
  border-radius: 6px;
  color: black;
  padding: 5px 10px;
}

.pagetitle #table .li_table .btn_table_active label {
  width: 90%;
  margin: 0.8em 0px 0px 0.38em;
  background-color: white;
  color: black;
  font-size: 20px;
}

.pagetitle #table .li_table .btn_table_active label .icon-bell-alt {
  color: blue;
}

.pagetitle #table .li_table .btn_table_active label .icon-check {
  color: blue;
  font-size: 22px;
}

.pagetitle #table .li_table .btn_table_active label .icon-plus-circled {
  color: blue;
  font-size: 22px;
}

.pagetitle #table .li_table .btn_table_active label .icon-ok-circle {
  color: green;
  font-size: 22px;
}

.pagetitle #tablekv {
  background-color: #e6e6e6;
  padding: 10px;
  margin: 0;
  border-radius: 7px;
  margin-bottom: 10px;
}

/* Breadcrumbs */
.breadcrumb {
  font-size: 14px;
  font-family: "Nunito", sans-serif;
  color: #899bbd;
  font-weight: 600;
  align-items: center;
}




.breadcrumb .breadcrumb-item::before {
  color: #899bbd;
}

.breadcrumb .active {
  color: #51678f;
  font-weight: 600;
}

/* Bordered Tabs */
.nav-tabs-bordered {
  border-bottom: 2px solid #ebeef4;
}

.nav-tabs-bordered .nav-link {
  margin-bottom: -2px;
  border: none;
  color: #2c384e;
}

.nav-tabs-bordered .nav-link:hover,
.nav-tabs-bordered .nav-link:focus {
  color: #4154f1;
}

.nav-tabs-bordered .nav-link.active {
  background-color: #fff;
  color: #4154f1;
  border-bottom: 2px solid #4154f1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.logo {
  line-height: 1;
}

@media (min-width: 1200px) {
  .logo {
    width: 280px;
  }
}

.logo img {
  max-height: 28px;
  margin-right: 6px;
}

.logo span {
  font-size: 32px;
  font-weight: bold;
  font-family: "Nunito", sans-serif;
  color: transparent;
  background: #005bfb;
  background-clip: text;
  text-shadow: 0px 3px 3px rgba(0, 0, 0, 0.278);
}

.header {
  transition: all 0.5s;
  z-index: 997;
  height: 60px;
  box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1);
  background-color: #fff;
  padding-left: 20px;
  /* Toggle Sidebar Button */
  /* Search Bar */
}

.header .toggle-sidebar-btn {
  font-size: 25px;
  cursor: pointer;
  padding: 0px 7px;
  color: #012970;
  font-weight: bold;
  border: 1px solid #0000004a;
  background-color: aliceblue;
  border-radius: 5px;
}

.header .search-bar {
  min-width: 500px;
  padding: 0 20px;
}

@media (max-width: 1199px) {
  .header .search-bar {
    position: fixed;
    top: 50px;
    left: 0;
    right: 0;
    padding: 20px;
    box-shadow: 0px 0px 15px 0px rgba(1, 41, 112, 0.1);
    background: white;
    z-index: 9999;
    transition: 0.3s;
    visibility: hidden;
    opacity: 0;
  }

  .header .search-bar-show {
    top: 60px;
    visibility: visible;
    opacity: 1;
  }
}

.header .search-form {
  width: 100%;
}

.header .search-form input {
  border: 0;
  font-size: 14px;
  color: #012970;
  border: 1px solid rgba(1, 41, 112, 0.2);
  padding: 7px 38px 7px 8px;
  border-radius: 3px;
  transition: 0.3s;
  width: 100%;
}

.header .search-form input:focus,
.header .search-form input:hover {
  outline: none;
  box-shadow: 0 0 10px 0 rgba(1, 41, 112, 0.15);
  border: 1px solid rgba(1, 41, 112, 0.3);
}

.header .search-form button {
  border: 0;
  padding: 0;
  margin-left: -30px;
  background: none;
}

.header .search-form button i {
  color: #012970;
}

/*--------------------------------------------------------------
# Header Nav
--------------------------------------------------------------*/
.header-nav ul {
  list-style: none;
}

.header-nav>ul {
  margin: 0;
  padding: 0;
}

.header-nav .nav-icon {
  font-size: 22px;
  color: #012970;
  margin-right: 25px;
  position: relative;
}

.header-nav .nav-profile {
  color: #012970;
}

.header-nav .nav-profile img {
  max-height: 36px;
}

.header-nav .nav-profile span {
  font-size: 14px;
  font-weight: 600;
}

.header-nav .badge-number {
  position: absolute;
  inset: -2px -5px auto auto;
  font-weight: normal;
  font-size: 12px;
  padding: 3px 6px;
}

.header-nav .notifications {
  inset: 8px -15px auto auto !important;
}

.header-nav .notifications .notification-item {
  display: flex;
  align-items: center;
  padding: 15px 10px;
  transition: 0.3s;
}

.header-nav .notifications .notification-item i {
  margin: 0 20px 0 10px;
  font-size: 24px;
}

.header-nav .notifications .notification-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.header-nav .notifications .notification-item p {
  font-size: 13px;
  margin-bottom: 3px;
  color: #919191;
}

.header-nav .notifications .notification-item:hover {
  background-color: #f6f9ff;
}

.header-nav .messages {
  inset: 8px -15px auto auto !important;
}

.header-nav .messages .message-item {
  padding: 15px 10px;
  transition: 0.3s;
}

.header-nav .messages .message-item a {
  display: flex;
}

.header-nav .messages .message-item img {
  margin: 0 20px 0 10px;
  max-height: 40px;
}

.header-nav .messages .message-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #444444;
}

.header-nav .messages .message-item p {
  font-size: 13px;
  margin-bottom: 3px;
  color: #919191;
}

.header-nav .messages .message-item:hover {
  background-color: #f6f9ff;
}

.header-nav .profile {
  min-width: 240px;
  padding-bottom: 0;
  top: 8px !important;
}

.header-nav .profile .dropdown-header h6 {
  font-size: 18px;
  margin-bottom: 0;
  font-weight: 600;
  color: #444444;
}

.header-nav .profile .dropdown-header span {
  font-size: 14px;
}

.header-nav .profile .dropdown-item {
  font-size: 14px;
  padding: 10px 15px;
  transition: 0.3s;
}

.header-nav .profile .dropdown-item i {
  margin-right: 10px;
  font-size: 18px;
  line-height: 0;
}

.header-nav .profile .dropdown-item:hover {
  background-color: #f6f9ff;
}

/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/
.sidebar {
  position: fixed;
  top: 60px;
  left: 0;
  bottom: 0;
  width: 300px;
  z-index: 996;
  transition: all 0.3s;
  padding: 10px;
  overflow-y: auto;
  scrollbar-width: none;
  scrollbar-color: #aab7cf transparent;
  box-shadow: 0px 0px 20px rgba(1, 41, 112, 0.1);
  background-color: #fff;
}

#open_search {
  position: fixed;
  bottom: 4em;
  right: 1em;
  display: none;
}

#open_search span {
  background-color: red;
  border-radius: 11px;
  color: white;
  padding: 6px;
}

@media (max-width: 1199px) {
  .sidebar {
    left: -300px;
  }

}

.sidebar::-webkit-scrollbar {
  width: 5px;
  height: 8px;
  background-color: #fff;
}

.sidebar::-webkit-scrollbar-thumb {
  background-color: #aab7cf;
}

@media (min-width: 1200px) {

  #footer {
    margin-left: 0px;
  }

}

@media (max-width: 1199px) {
  .toggle-sidebar .sidebar {
    left: 0;
    width: 100%;
  }

  .toggle-sidebar .sidebar .sidebar-nav {
    width: 80%;
  }

}

@media (min-width: 1200px) {

  .toggle-sidebar #main,
  .toggle-sidebar #footer {
    margin-left: 0;
  }

  .toggle-sidebar .sidebar {
    left: -300px;
  }
}

.sidebar-nav {
  padding: 0;
  margin: 0;
  list-style: none;
}

.sidebar-nav li {
  padding: 0;
  margin: 0;
  list-style: none;
}

.sidebar-nav .nav-item {
  margin-bottom: 5px;
}

.sidebar-nav .nav-heading {
  font-size: 11px;
  text-transform: uppercase;
  color: #899bbd;
  font-weight: 600;
  margin: 13em 0em 0em 0em;
}

.sidebar-nav .nav-link {
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 600;
  color: #4154f1;
  transition: 0.3;
  background: #8bfbde;
  padding: 10px 15px;
  border-radius: 4px;
}

.sidebar-nav .nav-link i {
  font-size: 16px;
  margin-right: 10px;
  color: #4154f1;
}

.sidebar-nav .nav-link.collapsed {
  color: #012970;
  background: #eae2e2;
}

.sidebar-nav .nav-link.collapsed i {
  color: #899bbd;
}

.sidebar-nav .nav-link:hover {
  color: #4154f1;
  background: #c6ede3de;
}

.sidebar-nav .nav-link:hover i {
  color: #4154f1;
}

.sidebar-nav .nav-link .bi-chevron-down {
  margin-right: 0;
  transition: transform 0.2s ease-in-out;
}

.sidebar-nav .nav-link:not(.collapsed) .bi-chevron-down {
  transform: rotate(180deg);
}

.sidebar-nav .nav-content {
  padding: 5px 0 0 0;
  margin: 0;
  list-style: none;
}

.sidebar-nav .nav-content a {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: #012970;
  transition: 0.3;
  padding: 10px 0 10px 40px;
  transition: 0.3s;
}

.sidebar-nav .nav-content a i {
  font-size: 6px;
  margin-right: 8px;
  line-height: 0;
  border-radius: 50%;
}

.sidebar-nav .nav-content a:hover,
.sidebar-nav .nav-content a.active {
  color: #4154f1;
}

.sidebar-nav .nav-content a.active i {
  background-color: #4154f1;
}

/*--------------------------------------------------------------
# Dashboard
--------------------------------------------------------------*/
/* Filter dropdown */
.dashboard .filter {
  position: absolute;
  right: 0px;
  top: 10px;
  margin: 0px 10px;
}

.dashboard .filter .icon {
  color: #ffffff;
  padding: 0px 5px;
  transition: 0.3s;
  font-size: 16px;
  border-radius: 4px;
  background-color: #0000005a;
}

.dashboard .filter .icon:hover,
.dashboard .filter .icon:focus {
  color: #4154f1;
}

.dashboard .filter .dropdown-header {
  padding: 8px 15px;
}

.dashboard .filter .dropdown-header h6 {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #aab7cf;
  margin-bottom: 0;
  padding: 0;
}

.dashboard .filter .dropdown-item {
  padding: 8px 15px;
}

/* Info Cards */
.dashboard .info-card {
  padding: 15px;
  animation-name: widthani;
  animation-duration: 0.5s;
  border-radius: 7px;
  box-shadow: 0px 17px 23px -11px #a4a4a4;
  background-color: #d5fff1;
}

#bar-action-cf {
  padding: 0px 10px;
}

#bar-action-fc {
  padding: 0px 10px;
}

.accordion-header {
  padding: 0px 10px;
}

.dashboard .info-card h6 {
  font-size: 20px;
  color: #012970;
  font-weight: 700;
  margin: 0;
  padding: 0;
}

.dashboard .card-icon {
  font-size: 32px;
  line-height: 0;
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  flex-grow: 0;
}

.dashboard .sales-card .card-icon {
  color: black;
  background: #00ff60;
}

.dashboard .revenue-card .card-icon {
  color: black;
  background: #00ff60;
}

.dashboard .customers-card .card-icon {
  color: #ffffff;
  background: #ff7272;
}

/* Activity */
.dashboard .activity {
  font-size: 14px;
}

.dashboard .activity .activity-item .activite-label {
  color: #888;
  position: relative;
  flex-shrink: 0;
  flex-grow: 0;
  min-width: 64px;
}

.dashboard .activity .activity-item .activite-label::before {
  content: "";
  position: absolute;
  right: -11px;
  width: 4px;
  top: 0;
  bottom: 0;
  background-color: #eceefe;
}

.dashboard .activity .activity-item .activity-badge {
  margin-top: 3px;
  z-index: 1;
  font-size: 11px;
  line-height: 0;
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid #fff;
  flex-grow: 0;
}

.dashboard .activity .activity-item .activity-content {
  padding-left: 10px;
  padding-bottom: 20px;
}

.dashboard .activity .activity-item:first-child .activite-label::before {
  top: 5px;
}

.dashboard .activity .activity-item:last-child .activity-content {
  padding-bottom: 0;
}

/* News & Updates */
.dashboard .news .post-item+.post-item {
  margin-top: 15px;
}

.dashboard .news img {
  width: 80px;
  float: left;
  border-radius: 5px;
}

.dashboard .news h4 {
  font-size: 15px;
  margin-left: 95px;
  font-weight: bold;
  margin-bottom: 5px;
}

.dashboard .news h4 a {
  color: #012970;
  transition: 0.3s;
}

.dashboard .news h4 a:hover {
  color: #4154f1;
}

.dashboard .news p {
  font-size: 14px;
  color: #777777;
  margin-left: 95px;
}

/* Recent Sales */
.dashboard .recent-sales {
  font-size: 14px;
}

.dashboard .recent-sales .table thead {
  background: #f6f6fe;
}

.dashboard .recent-sales .table thead th {
  border: 0;
}

.dashboard .recent-sales .dataTable-top {
  padding: 0 0 10px 0;
}

.dashboard .recent-sales .dataTable-bottom {
  padding: 10px 0 0 0;
}

/* Top Selling */
.dashboard .top-selling {
  font-size: 14px;
}

.dashboard .top-selling .table thead {
  background: #f6f6fe;
}

.dashboard .top-selling .table thead th {
  border: 0;
}

.dashboard .top-selling .table tbody td {
  vertical-align: middle;
}

.dashboard .top-selling img {
  border-radius: 5px;
  max-width: 60px;
}

/*--------------------------------------------------------------
# Icons list page
--------------------------------------------------------------*/
.iconslist {
  display: grid;
  max-width: 100%;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
  padding-top: 15px;
}

.iconslist .icon {
  background-color: #fff;
  border-radius: 0.25rem;
  text-align: center;
  color: #012970;
  padding: 15px 0;
}

.iconslist i {
  margin: 0.25rem;
  font-size: 2.5rem;
}

.iconslist .label {
  font-family: var(--bs-font-monospace);
  display: inline-block;
  width: 100%;
  overflow: hidden;
  padding: 0.25rem;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #666;
}

/*--------------------------------------------------------------
# Profie Page
--------------------------------------------------------------*/
.profile .profile-card img {
  max-width: 120px;
}

.profile .profile-card h2 {
  font-size: 24px;
  font-weight: 700;
  color: #2c384e;
  margin: 10px 0 0 0;
}

.profile .profile-card h3 {
  font-size: 18px;
}

.profile .profile-card .social-links a {
  font-size: 20px;
  display: inline-block;
  color: rgba(1, 41, 112, 0.5);
  line-height: 0;
  margin-right: 10px;
  transition: 0.3s;
}

.profile .profile-card .social-links a:hover {
  color: #012970;
}

.profile .profile-overview .row {
  margin-bottom: 20px;
  font-size: 15px;
}

.profile .profile-overview .card-title {
  color: #012970;
}

.profile .profile-overview .label {
  font-weight: 600;
  color: rgba(1, 41, 112, 0.6);
}

.profile .profile-edit label {
  font-weight: 600;
  color: rgba(1, 41, 112, 0.6);
}

.profile .profile-edit img {
  max-width: 120px;
}

/*--------------------------------------------------------------
# F.A.Q Page
--------------------------------------------------------------*/
.faq .basic h6 {
  font-size: 18px;
  font-weight: 600;
  color: #4154f1;
}

.faq .basic p {
  color: #6980aa;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  padding: 28px 30px;
}

.contact .info-box i {
  font-size: 38px;
  line-height: 0;
  color: #4154f1;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #012970;
  font-weight: 700;
  margin: 20px 0 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 0;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #4154f1;
}

.contact .php-email-form input {
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type=submit] {
  background: #4154f1;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #5969f3;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Error 404
--------------------------------------------------------------*/
.error-404 {
  padding: 30px;
}

.error-404 h1 {
  font-size: 150px;
  font-weight: 700;
  color: #4154f1;
  margin-bottom: 0;
  line-height: 150px;
}

.error-404 h2 {
  font-size: 24px;
  font-weight: 700;
  color: #012970;
  margin-bottom: 30px;
}

.error-404 .btn {
  background: #51678f;
  color: #fff;
  padding: 8px 30px;
}

.error-404 .btn:hover {
  background: #3e4f6f;
}

@media (min-width: 992px) {
  .error-404 img {
    max-width: 40%;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  padding: 20px 0;
  font-size: 14px;
  transition: all 0.3s;
  border-top: 1px solid #cddfff;
  background-color: #7fffd433;
  border-radius: 14px;
}

.footer .copyright {
  text-align: center;
  color: #012970;
}

.footer .credits {
  padding-top: 5px;
  text-align: center;
  font-size: 13px;
  color: #012970;
}

#modal_thanhtoan #card-body-inforbill #btn-info-cart {
  display: block;
  border: 1px solid #ffffff9e
}

#modal_thanhtoan #card-body-inforbill #btn-info-cart-res {
  display: none;
  border: none;
}

.bar-function {
  display: none;
}

#bar-action {
  display: flex;
  margin: 10px;
}

.table_view {
  border-collapse: collapse;
  border-radius: 3px;
  width: 100%;
  animation-name: aniview;
  animation-duration: 0.5s;
  border: 1px solid #ffffff8a;
}

.table_view th {
  background-color: #607d8b38;
  color: #324ad4;
  padding: 5px 0px 5px 10px;
}

.table_view tr {
  font-size: 12px;
  background-color: #00a2ff15;
  border: 1px solid #ffffff8a;
}

.table_view td {
  width: 8%;
  text-align: center;
  color: black;
  word-wrap: break-word;
  padding: 10px 0px;
}

.table_view .td_action {
  width: 8%;
}

.table_view th:nth-child(even) {
  background-color: #0746b821;
}

.table_view .title_s td:nth-child(even) {
  background-color: #0746b847;
}

.table_view p {
  padding: 0;
  margin: 0;
}

.table_view img {
  padding: 0px;
  width: 40%;
  border-radius: 10px;
}

.table_view input {
  border-radius: 5px;
  border: 0.5px solid #03a9f4a6;
  width: 100%;
  padding: 10px;
}

.table_view select {
  border-radius: 5px;
  border: 0.5px solid #03a9f4a6;
  width: 100%;
  padding: 10px;
}

.table_view .btn_gpkd {
  font-size: 12px;
  border: 1px solid #03a9f4a6;
  display: inline-block;
  padding: 4px 5px 5px 5px;
  border-radius: 5px;
  color: blue;
  text-decoration: none;
}

.table_view .btn_submit {
  color: white;
  transition: all ease-in-out 0.1s;
  background-color: #03a9f4;
  width: 15%;
  font-weight: bold;
  cursor: pointer;
}

.table_view .btn_submit:hover {
  background-color: #0686c2;
  font-weight: bold;
}

.table_view .btn_action {
  display: inline-block;
  border: 1px solid #036ff4;
  padding: 5px 3px;
  color: rgb(0, 60, 255);
  font-weight: bold;
  font-size: 16px;
  border-radius: 5px;
  text-decoration: none;
}

.table_view .btn_action {
  display: inline-block;
  border: 1px solid #036ff4;
  padding: 5px 3px;
  color: rgb(0, 60, 255);
  font-weight: bold;
  font-size: 16px;
  border-radius: 5px;
  text-decoration: none;
}

.table_view .btn_action_port {
  display: inline-block;
  border: 1px solid #036ff4;
  padding: 5px 10px;
  color: white;
  background-color: #0091ff;
  font-weight: bold;
  font-size: 14px;
  border-radius: 5px;
  text-decoration: none;
}


.table_view_action_js {
  border-collapse: collapse;
  border-radius: 15px;
  animation-name: aniview;
  animation-duration: 0.5s;
  width: 100%;
  border: 1px solid white;
}

.table_view_action_js th {
  background-color: #607d8b38;
  color: #324ad4;
  padding: 10px 5px 10px 5px;
  width: 8%;
  font-size: 12px;
}

.table_view_action_js tr {
  background-color: #ffffff00;
  border: 1px solid white;
}

.table_view tr:nth-child(even) {
  background: rgba(255, 255, 255, 0);
}

.table_view_action_js td {
  font-size: 12px;
  word-wrap: break-word;
  font-weight: bold;
  text-align: center;
  padding: 0.2em 0.2em;
  color: black;
}

.table_view_action_js p {
  padding: 0;
  margin: 0;
}

.table_view_action_js img {
  padding: 10px;
  border-radius: 10px;
}

.table_view_action_js input {
  border-radius: 6px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  border-bottom: none;
  border-top: none;
  border-right: none;
  border-left: 0.5px solid #03a9f4a6;
  width: 90%;
  padding: 12px;
  accent-color: #0000ff;
}

.table_view_action_js .font {
  display: inline-flex;
  width: 16%;
  justify-content: center;
  align-items: center;
  border: 1px solid #00000066;
  color: black;
  border-radius: 5px;
  margin: 0.5em 0em;
  background-color: #00d9ff0f;
}

.table_view_action_js button {
  color: black;
  font-size: 30px;
  cursor: pointer;
  display: inline-flex;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  background-color: #03a9f447;
  width: 20%;
}

.table_view_action_js p {
  padding: 0px 15px 0px 15px;
  margin: 0;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
  color: #0080ff;
  font-size: 10px;
  width: 40%;
}

.table_view_action_js select {
  display: inline-flex;
  width: 100%;
  padding: 12px;
}

.table_view_action_js select option {
  font-weight: bold;
}

.table_view_action_js .btn_submit {
  color: white;
  transition: all ease-in-out 0.1s;
  background-color: #03a9f4;
  width: 15%;
  font-weight: bold;
  float: right;
}

.table_view_action_js .btn_submit:hover {
  background-color: #0686c2;
  font-weight: bold;
}

.table_view_action_js .btn_action {
  display: inline-block;
  border: 1px solid #607d8b94;
  padding: 5px 6px 7px 6px;
  color: #046998;
  font-weight: bold;
  font-size: 16px;
  border-radius: 10px;
}


.table_view_action_data_form {
  border-collapse: collapse;
  border-radius: 15px;
  animation-name: aniview;
  animation-duration: 0.5s;
  width: 100%;
  border: 1px solid white;
}

.table_view_action_data_form th {
  background-color: #607d8b38;
  color: #324ad4;
  padding: 10px 5px 10px 5px;
  width: 8%;
  font-size: 12px;
  text-align: center;
}

.table_view_action_data_form tr {
  background-color: #ffffff00;
  border: 1px solid white;
}

.table_view tr:nth-child(even) {
  background: rgba(255, 255, 255, 0);
}

.table_view_action_data_form td {
  font-size: 12px;
  word-wrap: break-word;
  font-weight: bold;
  text-align: center;
  padding: 0.2em 0.2em;
  color: black;
}

.table_view_action_data_form p {
  padding: 0;
  margin: 0;
}

.table_view_action_data_form img {
  padding: 10px;
  border-radius: 10px;
}

.table_view_action_data_form input {
  border-radius: 2px;
  border: 0.5px solid #03a9f4a6;
  width: 100%;
  padding: 5px;
  accent-color: #0000ff;
}

.table_view_action_data_form .font {
  display: inline-flex;
  width: 16%;
  justify-content: center;
  align-items: center;
  border: 1px solid #00000066;
  color: black;
  border-radius: 5px;
  margin: 0.5em 0em;
  background-color: #00d9ff0f;
}

.table_view_action_data_form button {
  color: black;
  font-size: 30px;
  cursor: pointer;
  display: inline-flex;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  background-color: #03a9f447;
  width: 30%;
}

.table_view_action_data_form p {
  padding: 0px 15px 0px 15px;
  margin: 0;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
  color: #0080ff;
  font-size: 10px;
  width: 40%;
}

.table_view_action_data_form select {
  display: inline-flex;
  width: 100%;
  padding: 5px;
}

.table_view_action_data_form select option {
  font-weight: bold;
}

.table_view_action_data_form .btn_action {
  display: inline-block;
  border: 1px solid #607d8b94;
  padding: 5px 6px 7px 6px;
  color: #046998;
  font-weight: bold;
  font-size: 16px;
  border-radius: 10px;
}

.btn_action_show {
  display: inline-block;
  border: 1px solid #607d8b94;
  padding: 5px 6px 7px 6px;
  color: #046998;
  font-weight: bold;
  font-size: 16px;
  border-radius: 10px;
}


.datatable {
  border-collapse: collapse;
  border-radius: 3px;
  width: 100%;
  animation-name: aniview;
  animation-duration: 0.5s;
  border: 1px solid #ffffff8a;
}

.datatable th {
  background-color: #0745b809;
  color: #324ad4;
  padding: 3px 0px 3px 0px;
  text-align: center;
}

.datatable tr {
  font-size: 12px;
  background-color: #00a2ff00;
  border: 1px solid #ffffff8a;
}

.datatable tbody tr:hover {
  background-color: #00d5ffcc;
}

.datatable tr:nth-child(even) {
  background-color: #007df11f;
}

.datatable td {
  width: auto;
  text-align: center;
  color: black;
  word-wrap: break-word;
  padding: 5px 0px 5px 0px;
}

.datatable .td_action {
  width: auto;
  padding: 5px;
}

.datatable th:nth-child(even) {
  background-color: #0745b809;
}

.datatable .title_s td:nth-child(even) {
  background-color: #0746b847;
}

.datatable p {
  padding: 0;
  margin: 0;
}

.datatable img {
  padding: 0px;
  width: 30%;
  border-radius: 10px;
  display: inline-block;
  cursor: pointer;
}

.datatable input {
  border-radius: 5px;
  border: 0.5px solid #03a9f4a6;
  width: 100%;
  padding: 10px;
}

.datatable select {
  border-radius: 5px;
  border: 0.5px solid #03a9f4a6;
  width: 100%;
  padding: 10px;
}

.datatable .btn_submit {
  color: white;
  transition: all ease-in-out 0.1s;
  background-color: #03a9f4;
  width: 15%;
  font-weight: bold;
  cursor: pointer;
}

.datatable .btn_submit:hover {
  background-color: #0686c2;
  font-weight: bold;
}

.datatable .btn_action {
  display: inline-block;
  border: 0px solid #036ff4;
  padding: 3px 4px;
  color: rgb(255 255 255);
  font-weight: bold;
  font-size: 16px;
  border-radius: 5px;
  text-decoration: none;
  background-color: blue;
  outline: 0.5px solid rgba(0, 0, 0, 0.384);
}

.datatable .btn_action_show {
  display: none;
  border: 0px solid #036ff4;
  padding: 3px 4px;
  color: rgb(255 255 255);
  font-weight: bold;
  font-size: 16px;
  border-radius: 5px;
  text-decoration: none;
  background-color: blue;
  outline: 0.5px solid rgba(0, 0, 0, 0.384);
}

.datatable .btn_action_port {
  display: inline-block;
  border: 1px solid #036ff4;
  padding: 5px 10px;
  color: white;
  background-color: #0091ff;
  font-weight: bold;
  font-size: 14px;
  border-radius: 5px;
  text-decoration: none;
}

.table-striped {
  border-collapse: collapse;
  border-radius: 3px;
  width: 100%;
  animation-name: aniview;
  animation-duration: 0.5s;
  border: 1px solid #ffffff8a;
}

.table-striped th {
  background-color: #0745b800;
  color: #324ad4;
  padding: 10px 0px 10px 0px;
  text-align: center;
}

.table-striped tr {
  font-size: 12px;
  background-color: #5c5d5d2b;
  border: 1px solid #ffffff8a;
}

.table-striped tbody tr:hover {
  background-color: #00d5ffcc;
}

.datatable tr:nth-child(even) {
  background-color: #007df11f;
}

.table-striped td {
  width: auto;
  text-align: center;
  color: black;
  word-wrap: break-word;
  padding: 13px 0px 5px 0px;
}

.table-striped .td_action {
  width: auto;
  padding: 5px;
  text-align: right;
}

.table-striped .td_action .btn-success,
.table-striped .td_action .btn-primary,
.table-striped .td_action .btn-danger {
  padding: 5px
}

.table-striped th:nth-child(even) {
  background-color: #0745b800;
}

.table-striped .title_s td:nth-child(even) {
  background-color: #0746b847;
}

.table-striped p {
  padding: 0;
  margin: 0;
}

.table-striped img {
  padding: 0px;
  width: 30%;
  border-radius: 10px;
  display: inline-block;
  cursor: pointer;
}

.table-striped input {
  border-radius: 5px;
  border: 0.5px solid #03a9f4a6;
  width: 100%;
  padding: 10px;
}

.table-striped select {
  border-radius: 5px;
  border: 0.5px solid #03a9f4a6;
  width: 100%;
  padding: 10px;
}

.table-striped .btn_submit {
  color: white;
  transition: all ease-in-out 0.1s;
  background-color: #03a9f4;
  width: 15%;
  font-weight: bold;
  cursor: pointer;
}

.table-striped .btn_submit:hover {
  background-color: #0686c2;
  font-weight: bold;
}

.table-striped #btn_action {
  display: inline-block;
}

.table-striped #btn_action_show {
  display: none;
}

.table-striped .btn_action_port {
  display: inline-block;
  border: 1px solid #036ff4;
  padding: 5px 10px;
  color: white;
  background-color: #0091ff;
  font-weight: bold;
  font-size: 14px;
  border-radius: 5px;
  text-decoration: none;
}

.search_form {
  background-color: #2949ff17;
  padding: 10px;
  box-shadow: 0px 10px 13px -7px #000000, 5px 5px 15px 5px rgba(0, 0, 0, 0);
}

.search_form input {
  padding: 9px 10px;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  border-top-right-radius: 7px;
  border-bottom-right-radius: 7px;
  border: 0px solid black;
  background-color: rgb(255, 255, 255);
  color: black;
  display: inline-block;
}

.search_form input::placeholder {
  color: black;
}

.search_form .label_icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  outline: 1px solid #00000054;
  border-radius: 5px;
}



.search_form .select {
  display: inline-block;
  padding: 0px;
  width: 20%;
}

.search_form button a {
  padding: 6px 0px;
}

.search_form button:hover {
  cursor: pointer;
  transition: all ease-in-out 0.2s;
  outline: 4px solid #00fff1;
}

.search_form button:focus {
  transform: scale(0.9);
}

.search_form_product {
  width: 60%;
  padding: 0px;
  display: flex;
  margin-left: 0%;
}

.search_form_product input {
  padding: 8px 10px;
  border-radius: 3px;
  width: 38%;
  border: 1px solid black;
  background-color: rgb(255, 255, 255);
  color: BLACK;
}

.search_form_product #myInput {
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}

.search_form_product input::placeholder {
  color: black;
}

.search_form_product select {
  padding: 8px 10px;
  color: white;
  width: 25%;
  border: 1px solid #ffffff8a;
  border-left: none;
  background-color: rgba(255, 255, 255, 0);
}

.search_form_product select option {
  color: black;
}

.search_form_product input:focus::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0);
  font-weight: bold;
}

.search_form_product input:focus {
  outline: none;
}

.search_form_product .btn_timkiem {
  display: flex;
  padding: 8px;
  justify-content: center;
  align-items: center;
  background-color: #1b41da12;
  border: 1px solid black;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  color: white;
  background-color: #03f44b9c;
  cursor: pointer;
  width: 5%;
}

.search_form_product .btn_timkiem:hover {
  background-color: #1b41dad3;
}

.title {
  display: flex;
  margin-bottom: 10px;
  border: 1px solid rgba(0, 0, 0, 0);
  justify-content: space-between;
  align-items: center;
  background-color: #2195f3;
  padding: 5px 10px 5px 10px;
  width: 98%;
  box-shadow: 0px 10px 13px -7px #000000, 5px 5px 15px 5px rgba(0, 0, 0, 0);
}

.title ul {
  display: inline-flex;
  list-style-type: none;
  justify-content: center;
  align-items: center;
  padding-left: 0;
  margin: 0;
}

.title li {
  display: inline-block;
  margin: 2px;
}

.title li a {
  text-decoration: none;
  text-align: center;
  width: auto;
  display: block;
  font-size: 11px;
  font-weight: bold;
  background-color: #00800000;
  padding: 10px 15px 9px 15px;
  color: rgb(255, 255, 255);
  border: 1px solid rgb(255, 255, 255);
  border-radius: 5px;
}

.title li a:hover {
  background-color: red;
  margin: 0;
}

.title p {
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: bold;
  color: white;
}

#view_cart {
  height: 25em;
  padding: 10px;
  overflow-y: auto;
  background-color: #f2f2f2;
  margin-bottom: 5px;
}

#view_cart #close {
  display: none;

}

.view_cart {
  font-size: 12px;
  color: black;
  border: none;
  text-align: center;
  width: 100%;
  margin-top: 0px;
  background-color: #ffffff;

}

.view_cart .timg {
  width: 10%;
}

.view_cart img {
  width: 50%;
  border-radius: 11px;
}

.view_cart tr .pmbtn .changebnthidden {
  display: none;
}

.view_cart tr .pmbtn .changebntshow {
  display: inline;
}

#modal_thanhtoan #card-body-inforbill {
  padding: 10px;
  background-color: #ffffff;
  border-radius: 5px;
  display: flex;
  align-items: center;
}

#modal_thanhtoan #card-body-inforbill #btn-cart {
  display: none;
}

#modal_thanhtoan #card-body-inforbill #btn-search {
  display: none;
}

#category-form nav ul {
  margin: 10px;
  background-color: #42484b24;
  padding: 10px;
  border-radius: 11px;
}

.product_list {
  width: 100%;
  margin-top: 0;
  list-style-type: none;
  margin: 0px;
  padding: 0px 0px;
  text-align: center;

}

.product_list li {
  border-bottom: 1px solid #0000002b;
  background-color: #ffffff;
  align-items: center;
  font-weight: bold;
  font-size: 11px;
  width: 15%;
  display: inline-block;
  transition: all ease-in-out 0.2s;
  padding: 5px 0px 0 0;
  outline: 1px solid #00000042;
  border-radius: 7px;
  margin: 0em 0.5em 0em 0em;
}

.product_list li .giaban,
.sl,
.tensp {
  display: none;
}

.product_list .name_sp_hidden {
  color: black;
  background: #00b4ff33;
  padding: 5px;
  border-radius: 5px;
  width: 100%;
  margin-top: 0.8em;
  display: block;
  border: 1px solid #00000000;
  text-align: center;
  transition: all ease-in-out 0.2s;
}

.product_list table .hinhanh {
  width: 10%;
  text-align: center;
  padding: 5px;
}

#data_list {
  float: left;
  list-style: none;
  margin-top: -12px;
  padding: 0;
  width: 93%;
  position: absolute;
  border-radius: 10px;
  z-index: 2;
  border: 0;
}

#data_list li {
  padding: 10px;
  background: #ffffff;
  border: #bbb9b9 1px solid;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
  margin-bottom: 2px;
}

#data_list li:hover {
  background: rgb(115, 227, 247);
}

.product_list table .hinhanh img {
  width: 100%;
  height: 100px;
  transform: scale(1);
  background-color: white;
  transition: all ease-in-out 0.2s;
  border-radius: 7px;
  border: 1px solid rgb(0 0 0 / 22%);
  animation-name: scaledb;
  animation-duration: 0.3s;
}

.product_list li:hover .name_sp {
  transform: scale(1.1);
  background-color: white;
  color: black;
}

.product_list li:hover {
  outline: 2px solid rgb(0, 34, 255);
  background-color: #00000016;
}

.product_list table .action {
  width: 25%;
}

.product_list p {
  padding: 0;
  color: black;
  display: inline-block;
  margin: 0px;
}

.product_list .name_sp {
  color: white;
  background: #00801e;
  padding: 10px 5px;
  border-radius: 5px;
  width: 100%;
  text-align: center;
  transition: all ease-in-out 0.2s;
}

.product_list li:hover p {
  color: red;
}

.product_list li table {
  padding: 0px 10px 0px 10px;
  width: 100%;
}

.product_list input {
  padding: 0.5em;
  width: 80%;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.496);
}

.product_list .value_sl {
  width: 40%;
  margin: 0.5em;
  padding: 1em;
  text-align: center;
  font-weight: bold;
}

.product_list .value_sl:focus {
  outline: 1px solid rgb(0, 179, 255);
  border: none;
}

.product_list .value_sl::-webkit-outer-spin-button,
.product_list .value_sl::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.product_list .btn_action {
  padding: 0.5em;
  width: 70%;
  background-color: aquamarine;
  font-weight: bold;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.496);
}

.product_rp {
  width: 100%;
  margin-top: 0;
  list-style-type: none;
  margin: 0px;
  padding: 0px 0px;
}

.product_rp li {
  border-bottom: 1px solid black;
  background-color: #ffffff;
  align-items: center;
  font-weight: bold;
  font-size: 11px;
  width: 100%;
  transition: all ease-in-out 0.2s;
  padding: 10px 0px;
}

.product_rp li:hover {
  background-color: rgb(30, 30, 178);
  color: white;
}

.product_rp table .masp {
  width: 10%;
  text-align: center;
}

.product_rp table .hinhanh {
  width: 10%;
  text-align: center;
}

.product_rp table .hinhanh img {
  width: 20%;
  height: 20%;
  transform: scale(1);
  background-color: white;
  transition: all ease-in-out 0.2s;
  border-radius: 7px;
  border: 0px solid rgba(0, 0, 0, 0.549);
}

.product_rp li:hover img {
  transform: scale(3);
  border: 1px solid rgb(0, 242, 255);
}

.product_rp li:hover .name_sp {
  transform: scale(1.1);
  background-color: white;
  color: black;
}

.product_rp table .tensprp {
  width: 20%;
}

.product_rp table .slrp {
  width: 15%;
  text-align: center;
}

.product_rp table .giabanrp {
  width: 10%;
}

.product_rp table .action {
  width: 12%;
}

.product_rp p {
  padding: 0;
  color: black;
  display: inline-block;
  margin: 0px;
}

.product_rp .name_sp {
  color: white;
  background: #00801e;
  padding: 5px 0px;
  border-radius: 5px;
  width: 100%;
  text-align: center;
  transition: all ease-in-out 0.2s;
}

.product_rp li:hover p {
  color: white;
}

.product_rp li table {
  padding: 0px 10px 0px 10px;
  width: 100%;
}

.product_rp input {
  padding: 0.5em;
  width: 80%;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.496);
}

.product_rp .btn_action {
  padding: 0.5em;
  width: 70%;
  background-color: aquamarine;
  font-weight: bold;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.496);
}

.view_cart th {
  background-color: #0000ff17;
}

.view_cart tr td {
  padding: 5px 10px 5px 10px;
  animation-name: opacity0_1;
  animation-duration: 0.2s;
}

.over_view_nolist_hidden {
  display: none;
}

.over_view_nolist_tb_hidden {
  display: none;
}

.over_view_nolist_sp1 {
  height: 29.8em;
  display: inline-block;
  width: 65%;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 10px;
  margin-top: 10px;
  border-radius: 11px;
  border: 1px solid #0000003b;
}

.over_view_nolist_sp2 {
  height: 29.8em;
  display: inline-block;
  width: 33%;
  overflow-y: hidden;
  border: 1px solid #00000024;
  border-radius: 11px;
}

.over_view_nolist_sp2 fieldset legend {
  font-size: 18px;
  width: 100%;
  background-color: #4e5f67;
  padding: 8px 5px;
  border-radius: 5px;
  float: inherit;
  color: white;
  font-weight: bold;
}

.dangky {
  padding: 5px 10px;
  background-color: #03a9f412;
  display: inline-block;
  height: auto;
  width: 100%;
  margin-top: 3px;
}

.dangky tr td {
  width: auto;
}

.dangky input {
  border: none;
  border: 0px solid #00000061;
  padding: 10px 5px;
  width: 100%;
  background-color: rgb(255 255 255);
  border-top-right-radius: 7px;
  border-bottom-right-radius: 7px;
}

.dangky input::placeholder {
  color: rgba(0, 0, 0, 0.692);
}

.dangky input:focus {
  outline: 2px solid rgb(0, 204, 255);
}

.dangky input:focus::placeholder {
  color: rgba(255, 0, 0, 0);
}

.dangky select {
  border: 0px solid #00000061;
  padding: 10px;
  width: 200px;
  background-color: #2effb9;

}

.dangky button {
  margin: 10px 0px;
  padding: 10px;
}

.dangky button:hover {
  background-color: #03f4b4e4;
}

.dangky .label_icon {
  display: flex;
  justify-content: center;
  align-items: center;
  outline: 1px solid #00000054;
  border-radius: 7px;
  margin-top: 20px;
}

.dangky .label_icon label {
  padding: 0px 0px;
  width: 10%;
  text-align: center;
}

.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 28px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

#category-form nav ul a {
  animation-name: scaledb;
  animation-duration: 0.2s;
}

input:checked+.slider {
  background-color: #2196F3;
}

input:focus+.slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked+.slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(21px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 60%;
}

#bar-action-search #close_search {
  display: none;
}

#list-page {
  display: flex;
  justify-content: right;
}

.alert {
  padding: 10px;
  color: white;
  min-width: 23em;
  right: 0.4em;
  opacity: 0;
  top: em;
  position: fixed;
  z-index: 1000;
  font-weight: bold;
  margin-bottom: 15px;
  animation-name: alert;
  font-size: 12px;
  animation-duration: 7s;
  animation-timing-function: ease-in;
}

.alert-dismissible .btn-close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  padding: 0.8rem 1rem;
}

.alert-success {
  background-color: #04AA6D;
}

.alert-danger {
  background-color: #f44336;
}

.alert-warning {
  background-color: #ff9800;
}

.closebtn {
  margin-left: 15px;
  color: white;
  font-weight: bold;
  float: right;
  font-size: 22px;
  line-height: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.closebtn:hover {
  color: black;
}

@-webkit-keyframes alert {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes alert {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@-webkit-keyframes opacity0_1 {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes opacity0_1 {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.over_view_nolist {
  height: 27em;
  overflow-y: auto;
  overflow-x: hidden;
}

#modal_search_sp .action_group_search {
  display: inline-block;
  width: 20%;
  margin: 0em;
}

@media screen and (max-width: 1080px) {
  .card-body {
    padding: 0px;
    height: 29.5em;
  }

  #bar-action-cf {
    padding: 0px;
  }

  #list-view {
    display: ruby;
    text-align: center;
    margin: 0;
  }

  .sidebar-nav .nav-heading {
    margin: 7em 0em 0em 0em;
  }

  #modal_search_sp .action_group_search {
    display: inline-block;
    width: 20%;
    margin: 0.5em;
  }

  @media screen and (max-width: 667px) {
    .footer {
      display: none;
    }

    #main {
      margin-left: 0em;
    }

    #row_action {
      width: auto;
      margin: 1em 0em;
      display: flex;
      padding: 0;
    }

    #row_select {
      width: 42%;
      margin: 1em 0em;
      display: -webkit-inline-box;
    }

    #row_select select {
      font-size: 13px;
    }

    #row_select select option {
      font-size: 13px;
    }

    #row_input {
      width: 35%;
      margin: 1em 0em;
      display: -webkit-inline-box;
    }

    #row_input_dv {
      width: 75%;
      margin: 1em 0em;
      display: -webkit-inline-box;
    }

    .datatable .btn_action_show {
      display: inline-block;
    }

    .datatable .btn_action {
      display: none;
    }

    .datatable .masp {
      display: none;
    }

    .datatable .nhomhang {
      display: none;
    }

    .datatable .nguoinhap {
      display: none;
    }

    .datatable .hidden {
      display: none;
    }

    .datatable .giaban {
      display: none;
    }

    .datatable .stt {
      display: none;
    }

    .datatable .tenhang {
      width: auto;
      padding: 5px 0px;
    }

    .datatable .tengoi {
      display: none;
    }

    .datatable .tonkho {
      width: auto;
      padding: 5px 0px;
    }

    .datatable .ngay {
      display: none;
    }

    .datatable .so_hd {
      display: none;
    }

    .datatable .start {
      display: none;
    }

    .datatable .end {
      display: none;
    }

    .datatable .user_confrim {
      display: none;
    }

    .datatable .ngaydat {
      display: none;
    }

    .datatable img {
      padding: 0px;
      width: 100%;
      border-radius: 10px;
      display: inline-block;
      cursor: pointer;
    }

    .table-striped #btn_action_show {
      display: inline-block;
    }

    .table-striped .tr-r {
      display: none;
    }

    .table-striped #btn_action {
      display: none;
    }

    .table-striped .hiddentd {
      display: none;
    }

    .table-striped img {
      padding: 0px;
      width: 100%;
      border-radius: 10px;
      display: inline-block;
      cursor: pointer;
    }

    .btn_c_action {
      display: none;
    }

    .btn_c_action_dot {
      display: block;
    }

    .product_list table .hinhanh img {
      width: 100%;
      height: 100px;
      transform: scale(1);
      background-color: white;
      transition: all ease-in-out 0.2s;
      border-radius: 7px;
      border: 1px solid rgb(0 0 0 / 22%);
    }


    #view_cart {
      font-size: 10px;
      color: black;
      border: none;
      text-align: center;
      width: 100%;
      padding: 10px 10px;
      margin-top: -10px;
      background-color: #ffffff;
      display: none;
      height: 80em;
      overflow-y: scroll;
      position: fixed;
      top: 7em;
      z-index: 1;
      left: 0;
      zoom: 95%;
    }

    #view_cart #close {
      display: flex;
      background-color: #faa4a43b;
      height: 4em;
      font-size: 16px;
      justify-content: center;
      align-items: center;

    }

    .view_cart {
      font-size: 12px;
      color: black;
      border: none;
      text-align: center;
      border-radius: 2px;
      width: 100%;
      background-color: #fdffff;
      box-shadow: 0px 10px 13px -7px #0000004f, 0px 8px 15px 11px rgba(0, 4, 255, 0);
    }

    .view_cart .timg {
      width: 20%;
    }

    .view_cart img {
      width: 100%;
    }

    .view_cart .thid {
      display: none;
    }

    .view_cart tr .pmbtn {
      width: auto;
      padding: 10px;
    }

    .view_cart tr .pmbtn .changebnthidden {
      display: inline;
    }

    .view_cart tr .pmbtn .changebntshow {
      display: none;
    }

    .over_view_nolist {
      display: none;
    }

    .over_view_nolist_tb {
      display: none;
    }

    .over_view_nolist_hidden {
      display: block;
      height: 27em;
      overflow-y: auto;
    }

    .over_view_nolist_tb_hidden {
      display: block;
    }

    #modal_thanhtoan {
      padding: 0px;
      display: block;
      margin-top: 0;
      height: 0;
      background-color: #ffffff;

    }

    #modal_thanhtoan form {
      background-color: white;
      zoom: 95%;
      width: 100%;
      margin-top: 0.2em;
    }

    .bar-function {
      position: fixed;
      bottom: 0em;
      left: 0em;
      width: 100%;
      zoom: 90%;
      z-index: 10;
      padding: 0.5em;
      border-top-left-radius: 11px;
      border-top-right-radius: 11px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background-color: rgb(255, 255, 255);
      box-shadow: 0px 10px 13px -7px #000000, 0px 8px 15px 11px rgba(0, 4, 255, 0);
    }

    #list-page {
      display: inherit;
      justify-content: left;
    }

    .bar-function #btn-bar,
    #btn-search,
    #btn-chart {
      border: none;
      color: rgb(0, 0, 0);
      background-color: #00000000;
      font-size: 20px;
      font-weight: bold;
      padding: 0px 10px;
    }

    .bar-function a:hover {
      background-color: #83838375;
      transition: ease-in-out 0.2s;
      border-radius: 0.3em;
    }

    .bar-function #btn-bar:hover {
      color: #031475;
    }

    .bar-function #btn-search :hover {
      color: #031475;
    }

    .bar-function #btn-bar h6,
    #btn-search h6,
    #btn-chart h6 {
      font-size: 10px;
      margin: 0;
    }

    #bar-action {
      display: none;
    }

    .pagetitle #table {
      display: flex;
      justify-content: center;
      align-items: start;
      height: 68vh;
      width: 100%;
    }

    .pagetitle #table .li_table {
      width: 45%;
      animation-name: scaley;
      animation-duration: 0.3s;
      margin: 5px;
      display: flex;
    }

    .pagetitle #table .li_table .btn_table {
      font-weight: bold;
      width: 100%;
      height: 100px;
      border-radius: 5px;
      text-align: center;
      background-color: #ffffff;
      box-shadow: 0px 10px 13px -7px #000000, 5px 5px 15px 5px rgba(0, 0, 0, 0);
    }

    .pagetitle #table .li_action {
      float: left;
    }

    .pagetitle #tablekv {
      height: 100%;
      width: 100%;
    }

    .pagetitle #tablekv .li_action {
      float: left;
    }

    #bar-action-search {
      display: none;
      position: fixed;
      z-index: 10;
      width: 100%;
      height: 100%;
      left: 0;
      justify-content: center;
      background-color: rgba(255, 255, 255, 0.218);
    }

    #bar-action-search .card {
      margin: 0;
      width: 95%;
      align-items: center;
    }

    #bar-action-search #close_search {
      display: block;
    }

    #bar-action-search form {
      width: 100%;
      padding: 10px;
      border-radius: 11px;
      background-color: white;
      box-shadow: 0px 10px 13px -7px #000000, 0px 8px 15px 11px rgba(0, 4, 255, 0);
      margin: 10px;
    }

    #bar-action-search form button {
      width: 100%;
    }

    #modal_thanhtoan #card-body-inforbill {
      position: fixed;
      bottom: 0em;
      left: 0em;
      width: 100%;
      zoom: 90%;
      padding: 0.5em;
      border-top-left-radius: 10px;
      border-top-right-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      box-shadow: 0px 10px 13px -7px #000000, 0px 8px 15px 11px rgba(255, 255, 255, 0);
    }

    #modal_thanhtoan #card-body-inforbill button:hover {
      color: rgb(255, 255, 255);
      transition: ease-in-out 0.1s;
      background-color: blue;
    }

    #modal_thanhtoan #card-body-inforbill #btn-search:hover {
      color: rgb(255, 255, 255);
      transition: ease-in-out 0.1s;
      background-color: blue;
    }

    #modal_thanhtoan #card-body-inforbill #btn-search,
    #btn-cart,
    #btn-info-cart-res {
      border: none;
      color: rgb(0, 0, 0);
      background-color: #00000000;
      font-size: 20px;
      font-weight: bold;
      padding: 0px 10px;
    }

    #modal_thanhtoan #card-body-inforbill h6 {
      font-size: 10px;
      margin: 0;
    }

    #modal_thanhtoan #card-body-inforbill #btn-export-cart {
      display: none;
    }

    #modal_thanhtoan #card-body-inforbill #btn-info-cart {
      display: none;
    }

    #modal_thanhtoan #card-body-inforbill #btn-info-cart-res {
      display: block;
    }

    #modal_thanhtoan #card-body-inforbill #btn-cart {
      display: block;
    }

    #modal_thanhtoan #card-body-inforbill #btn-search {
      display: block;
    }



    #modal_thanhtoan #card-body-inforbill #btn-cart .number-cart {
      display: block;
      position: absolute;
      top: 5px;
      background: red;
      padding: 5px 4px;
      border-radius: 20px;
      width: 6%;
      font-size: 9px;
      font-weight: bold;
      margin-left: -2px;
      animation-name: opacity0_1;
      animation-duration: 0.3s;
      color: white;
    }

    #modal-body-infobill {
      padding: 0;
    }

    #category-form {
      display: block;
      position: fixed;
      z-index: 10;
      background-color: #f0f8ff00;
      width: 100%;
      left: 0;
      zoom: 95%;
      max-height: 300px;
      overflow-y: scroll;
    }

    #category-form nav {
      background-color: #f0f8ff00;
    }

    #category-form nav ul {
      padding: 5px;
      margin-top: 0.2em;
      background-color: #ffffffba;
    }

    #category-form nav ul a {
      display: inline-block;
      margin: 3px;
      animation-name: scaledb;
      animation-duration: 0.2s;
    }

    #open_search {
      display: block;
    }
  }

  .search_form {
    background-color: #ffffff;
    padding: 10px;
    box-shadow: 0px 10px 13px -7px #000000, 5px 5px 15px 5px rgba(0, 0, 0, 0);
    animation-name: drop;
    animation-duration: 0.3s;
    border-radius: 7px;
    margin: 10px 0px;
  }

  .search_form .select {
    width: 96%;
    padding: 0px 0px;
    margin-bottom: -12px;
  }

  .search_form .label_icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 12px 8px;

  }

  .search_form input {
    padding: 11px;
    width: 100%;
    border-radius: 4px;
    border: 0px solid black;
    background-color: rgb(255, 255, 255);
    color: black;
  }

  .search_form .btn-secondary {
    padding: 10px 7px 10px 7px;
    background-color: #1b41da;
    border: 1px solid #ffffff;
    border-radius: 4px;
    font-size: 12px;
    color: white;
    width: 25%;
    font-weight: bold;
  }

  #modal_search_sp {
    padding: 10px;
    display: none;
    z-index: 20;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    margin-top: 3em;
    height: 100%;
    background-color: #dad8d8;
  }

  #modal_search_sp #to {
    display: none;
  }

  #modal_search_sp .action_group_search {
    display: inline-block;
    width: 100%;
    margin: 0.5em;
  }

  .product_list {
    width: 100%;
    list-style-type: none;
    margin: 0px 0px 0px 0px;
    padding: 0px 0px;
    text-align: center;

  }

  .product_list li {
    border-bottom: 1px solid #0000002b;
    background-color: #ffffff;
    align-items: center;
    font-weight: bold;
    font-size: 11px;
    width: 45%;
    display: inline-block;
    transition: all ease-in-out 0.2s;
    padding: 10px 0px;
  }

  .product_list li .giaban,
  .sl,
  .tensp {
    display: none;
  }

  .product_list .name_sp_hidden {
    color: black;
    background: #00b4ff33;
    padding: 5px;
    border-radius: 5px;
    width: 100%;
    margin-top: 0.8em;
    display: block;
    border: 1px solid #00000000;
    text-align: center;
    transition: all ease-in-out 0.2s;
  }

  .over_view_nolist_sp1 {
    height: 36em;
    display: block;
    width: 100%;
    overflow-y: auto;
    overflow-x: hidden;
  }

  .over_view_nolist_sp2 {
    min-height: 0;
    display: block;
    width: 100%;
    overflow: hidden;
    border: none;
  }
}

.form-control {
  display: block;
  width: 100%;
  padding: .375rem .75rem;
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--bs-body-color);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: var(--bs-body-bg);
  background-clip: padding-box;
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}