::-webkit-scrollbar-track {
  background-color: #F4F4F4;
}

::-webkit-scrollbar {
  width: 6px;
  background: #F4F4F4;
}

::-webkit-scrollbar-thumb {
  background: #dad7d7;
}

:root {
  --orange: #EF4000;
}

html, body {width: 100%; height: 100%;}

/* ===== LOGIN ===== */
.bgPizza {
  background: url('../images/bg-pizza.png') no-repeat center center fixed;
  background-color: rgba(0, 0, 0, 0.9);
}

#boxLogin {
  width: 95%; 
  max-width: 400px; 
  padding: 1rem; 
  background: #fff; 
  border-radius: 5px; 
}


/* ===== DASHBOARD ===== */
.menuSidebar {
  height: 100% !important;
  display: inline-block;
  background-color: var(--orange);
  position: fixed;
  bottom: 0;
  z-index: 1031;
}

#advertisements {
  position: relative;
  border-radius: 10px;
}

.cards {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
}

@media (max-width: 992px) {
  .cards {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  .analytics-card {
    margin-right: 0 !important;
    margin-top: 0.5rem !important;
  }

  .orders-card {
    margin-top: 0.5rem !important;
  }
}

.analytics-card {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  width: 100% !important;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1) !important;
  background: #FFF;
  border-radius: 16px;
}

.graphic-card {
  display: flex !important;
  width: 100% !important;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1) !important;
  background: #FFF;
  border-radius: 16px;
}

.orders-card {
  width: 100% !important;
  height: 100% !important;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1) !important;
  background: #FFF;
  border-radius: 16px;
}

.orders-card .order {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  width: 100% !important;
  background: #F4F4F4;
  border-radius: 8px;
}

.products-ranking {
  width: 100% !important;
  height: 100% !important;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1) !important;
  background: #FFF;
  border-radius: 16px;
}

/* ===== SALES ===== */
#cardSales {
  background: #FFF;
  border-radius: 8px;
}

#cardSales .sale {
  color: #FFF;
  padding: 2rem;
  border-radius: 8px;
  line-height: 1px;
}

#cardList {
  background: #FFF;
  padding: 1rem;
  border-radius: 8px;
}

/* ===== TRANSFER ===== */
#cardValues {
  border-radius: 8px;
}

#cardValues .value {
  background: #FFF;
  color: #3D3D3D;
  padding: 1.5rem;
  border-radius: 8px;
  line-height: 1px;
  min-width: 150px;
}

@media (max-width: 992px) {
  #cardValues {
    justify-content: center;
  }

  #cardValues .value {
    margin-top: 0.5rem;
  }
}

#cardValues .value small {
  color: #FF8053;
}

#cardTransfer {
  background: #FFF;
  padding: 1rem;
  border-radius: 8px;
}

.card-person .icon {
  font-size: 24px; 
  background: #111111;
  color: #FFF; 
  border-radius: 100%; 
  height: 45px; 
  width: 45px;
}

.card-active {
  background: #EF4000;
  color: #FFF;
  cursor: pointer;
}

.card-active .name {
  font-size: 14px;
}

.card-active .phone {
  font-size: 12px; 
  line-height: 1rem !important;
}

.card-active .chevron {
  color: #FFF;
}

.card-select {
  background: #F0F0F0;
  cursor: pointer;
}

.card-select .name {
  font-size: 14px;
  color: rgba(33, 37, 41, 1)
}

.card-select .phone {
  font-size: 12px; 
  line-height: 1rem !important;
  color: #EF4000;
}

.card-select .chevron {
  color: #EF4000;
}