@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
/* body {
	font-family: 'Roboto', sans-serif;
} */

:root {
  --primary: #c33136;
}

/* blank state css */
.blank-state {
  background: #eee;
  position: relative;
  width: 100%;
  min-height: 50px;
  overflow: hidden;
}

.blank-state::after {
  content: '';
  display: block;
  position: absolute;
  background: -moz-linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0,
    rgba(255, 255, 255, 0.5) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  background: -webkit-linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0,
    rgba(255, 255, 255, 0.5) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0,
    rgba(255, 255, 255, 0.5) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  width: 200px;
  height: 100%;
  top: 0;
  left: -200px;

  animation: btnAnimate infinite ease-in 1.5s;
  -moz-animation: btnAnimate infinite ease-in 1.5s;
  -o-animation: btnAnimate infinite ease-in 1.5s;
  -webkit-animation: btnAnimate infinite ease-in 1.5s;
  -ms-animation: btnAnimate infinite ease-in 1.5s;
}

@keyframes btnAnimate {
  from {
    left: -200px;
  }
  to {
    left: 100%;
  }
}

/* service worker toast notification */
#notification-wrapper {
  position: fixed;
  bottom: -200px;
  left: 0;
  width: 100%;
  padding: 0.5em;
  background: #222;
  color: #fafafa;
  z-index: 2000;
  transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
}
#notification-wrapper.show {
  bottom: 0;
}
#notification-wrapper .notification-title {
  margin-top: 0.3em;
}

/* offline online notification */
#offline-notification {
  position: fixed;
  bottom: 0em;
  left: 0em;
  z-index: 2001;
  width: 100%;
  transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
}

#offline-notification .offline-wrapper {
  margin: 0.5em;
  border-radius: 5px;
  -moz-border-radius: 5px;
  overflow: hidden;
  display: inline-block;
  padding: 0.5em;
}

#offline-notification.online {
  bottom: -200px;
  opacity: 0;
}

.btn-light-custom {
  display: flex;
  align-items: center;
  background-color: #dee1e4 !important;
  font-weight: 700;
}
.btn-light-custom:hover {
  background-color: #c8cacf !important;
}
.sidebar-collapse aside span.hidden {
  display: none;
}
.sidebar-collapse .main-sidebar:hover span.hidden {
  display: inline;
}
body:not(.sidebar-collapse) .main-sidebar {
  width: 250px !important;
}
/* CONTAINER
.content-wrapper {
	padding-top: 10px;
	padding-bottom: 10px;
}

.tab-content {
	margin: 20px;
} */

/* LOGIN PAGE */
.login-box {
  display: flex;
  align-items: center;
  flex: 1 1 0%;
  justify-content: center;
}

.login-box .card-body {
  padding: 0 2.125rem;
}

.info-box .info-box-text {
  white-space: unset;
}
/* FONTS */
h1 {
  font-style: normal !important;
  font-weight: 700 !important;
  font-size: 28px !important;
  line-height: 32px !important;
  color: var(--primary);
}

h2 {
  font-style: normal !important;
  font-weight: 700 !important;
  font-size: 26px !important;
  line-height: 30px !important;
}

h3 {
  font-style: normal !important;
  font-weight: 600 !important;
  font-size: 24px !important;
  line-height: 28px !important;
}

.font-subtitle2 {
  font-style: normal;
  font-weight: 700;
  font-size: 13px;
  line-height: 17px;
}

.font-body1 {
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
}

.font-body2 {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
}

/* FORM CONTROL */
.input-group-sm > .form-control {
  border-radius: 10px;
}

.dataTables_wrapper .dataTables_filter input {
  border-radius: 10px;
}

.select2-container--default .select2-selection--single {
  border-radius: 10px;
}

/* CARD */
.login-box .card {
  width: 100%;
  border-radius: 30px;
}

.card-footer {
  background-color: rgba(52, 58, 64, 0);
  border-radius: 30px;
  margin-top: 10px;
}

.card.card-chart {
  border-radius: 30px;
  margin-bottom: 0;
}

.login-box .card.card-outline .card-header.text-center .card-header,
.card.card.card-chart .card-header {
  border-bottom: none;
}

.card.card-chart .card-header {
  padding: 20px 25px;
}

.card.card-chart .card-header .card-title {
  color: #bf2328;
}

.custom-switch .custom-control-label::before {
  left: -2.25rem;
  width: 1.75rem;
  pointer-events: all;
  border-radius: 0.5rem;
}

.custom-switch.custom-switch-off-primary
  .custom-control-input
  ~ .custom-control-label::before {
  background-color: #bfc0c1;
  border-color: #bfc0c1;
}

.custom-switch.custom-switch-off-primary
  .custom-control-input
  ~ .custom-control-label::after {
  background-color: #ffffff;
}

/* HEADER */
.brand-link {
  padding: 0.2rem 0.5rem;
}

.brand-link-collapsed {
  display: flex;
  align-items: center;
  justify-content: center;
}

.layout-navbar-fixed .wrapper .brand-link,
.layout-navbar-fixed .wrapper .main-sidebar:hover .brand-link {
  width: 240px;
}

.layout-fixed .brand-link,
.layout-navbar-fixed.sidebar-mini.sidebar-collapse .wrapper .brand-link {
  height: calc(3.5rem + 1px);
}

.nav {
  align-items: stretch;
}

.nav-item.navbars {
  font-size: 18px;
  font-weight: 500;
  font-family: 'Roboto';
  font-style: normal;
  color: #16181e;
  margin-bottom: 5px;
}

.nav-sidebar .nav-item > .nav-link {
  margin-bottom: 0;
}

.active-sidebar {
  background-color: #f1b948;
  border-radius: 10px;
}

.nav-item.navbars:hover {
  background-color: #f8dca4;
  border-radius: 10px;
}

.nav-item.navbars .nav-link:hover {
  color: #16181e !important;
}

.nav-sidebar .nav-link .nav-icon {
  color: #f1b948;
}

.nav-sidebar .active-sidebar .nav-link .nav-icon,
.nav-sidebar .nav-link:hover .nav-icon {
  color: #16181e;
}

.sidebar-search .input-group {
  justify-content: center;
  margin-top: 5px;
}

/* BUTTON */
.btn-primary,
.btn-primary:active,
.btn-primary:focus,
.btn-primary:not(:disabled):not(.disabled):active {
  background-color: #4fa3d2;
  border-color: #4fa3d2;
  border-radius: 10px;
}

.btn-primary:hover {
  color: #4fa3d2;
  background-color: #fff;
  border-color: #4fa3d2;
}

.btn-warning,
.btn-warning:active,
.btn-warning:focus,
.btn-warning:not(:disabled):not(.disabled):active {
  background-color: #f3c25f;
  border-color: #f3c25f;
  border-radius: 10px;
}

.btn-warning:hover,
.btn-warning:hover .fas.fa-list {
  color: #f3c25f;
  background-color: #fff;
  border-color: #f3c25f;
}

.btn-danger,
.btn-danger:active,
.btn-danger:focus,
.btn-danger:not(:disabled):not(.disabled):active {
  background-color: #cf5a5e;
  border-color: #cf5a5e;
  border-radius: 10px;
}

.btn-danger:hover {
  color: #cf5a5e;
  background-color: #fff;
  border-color: #cf5a5e;
}
.btn-success,
.btn-success:active,
.btn-success:focus,
.btn-success:not(:disabled):not(.disabled):active {
  background-color: #28a745;
  border-color: #28a745;
  border-radius: 10px !important;
}

.btn-success:hover {
  color: #28a745;
  background-color: #fff;
  border-color: #28a745;
}

.btn-info,
.btn-info:active,
.btn-info:focus,
.btn-info:not(:disabled):not(.disabled):active {
  background-color: #2e7edc;
  border-color: #2e7edc;
  border-radius: 10px;
}

.btn-info:hover {
  color: #2e7edc;
  background-color: #fff;
  border-color: #2e7edc;
}

.btn-login {
  display: flex;
  width: 150px;
  height: 48px;
  justify-content: center;
  margin: auto;
}

.btn-large {
  min-width: 132px;
  height: 52px;
}

.btn-medium {
  min-width: 114px;
  height: 42px;
  padding-left: 20px;
  padding-right: 24px;
}

.btn-small {
  min-width: 83px;
  height: 36px;
  padding-left: 14px;
  padding-right: 16px;
}

.btn-sm {
  display: inline-flex;
  padding: 10px 10px;
  width: 36px;
  height: 36px;
}

.btnImport {
  background-color: #ffff;
  border-radius: 10px;
  color: #4fa3d2;
}

.btnImport:hover,
.btnImport:focus,
.btnImport:active,
.btnImport:not(:disabled):not(.disabled):active {
  color: #ffffff;
  background-color: #4fa3d2;
  border-color: #4fa3d2;
}

.btn-primary.btnImport .fa.fa-upload,
.btn-primary:hover .fa.fa-upload,
.btn-primary:focus .fa.fa-upload {
  color: #4fa3d2;
}

.btn-primary .fa.fa-upload,
.btnImport:hover .fa.fa-upload,
.btnImport:focus .fa.fa-upload,
.btnImport:not(:disabled):not(.disabled):active .fa.fa-upload {
  color: #ffffff;
}

.fa-list {
  color: #fff;
}

/* TABLE */
thead {
  background-color: #f2be54;
  border-color: #fff;
}

.table thead th,
.table-bordered {
  border: 1px solid #fff;
}

.pagination {
  margin-top: 15px;
}

.page-item .page-link {
  width: 30px;
  height: 30px;
  margin-right: 5px;
  color: #16181e;
  border-radius: 8px;
  border: 1px solid #87888b;
}

.page-item.active .page-link {
  color: #16181e;
  background-color: #f2be54;
  border-color: #f2be54;
}

.page-item:first-child .page-link {
  width: auto;
  height: auto;
  margin-right: 5px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.page-item:last-child .page-link {
  width: auto;
  height: auto;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.page-link {
  text-align: center;
  padding: 5px 8px;

  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;

  letter-spacing: 0.005em;

  color: #000000;
}

.page-link:hover {
  color: #6b5f47;
  background-color: #f8dca4;
  border-color: #f8dca4;
}

div.dataTables_wrapper div.dataTables_info {
  padding-top: 0;
}

/* MODAL */
.modal-header {
  background-color: #f2be54;
  /* padding-top: 47px;
	padding-bottom: 47px;
	padding-left: 50px */
  overflow-y: hidden !important;
}

.grid-container {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-right: 30px;
  margin-left: 30px;
}

.total-sales-performance {
  grid-column: span 2 / span 2;
}

@media screen and (max-width: 768px) {
  .grid-container {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .total-sales-performance {
    grid-column: auto;
  }
}

.graphic-img-bottom {
  display: flex;
  align-items: flex-end;
  flex: 1 1 0%;
  height: 100vh;
}

.graphic-img-top {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row-reverse;
  flex: 1 1 0%;
  height: 100vh;
}

@media screen and (max-width: 768px) {
  .graphic-img-bottom {
    display: none;
  }

  .graphic-img-top {
    display: none;
  }
}
