@media screen {
  a.change_hover_color:hover {
      color: white !important;
  }
  a.change_hover_color {
      color: white !important;
  }

  .alert-fixed {
    position:fixed;
    top: 0px;
    right: 0px;
    width: 40%;
    z-index:9999;
    border-radius:0px
  }
  .order-box {
    max-width: 80%;
    margin: auto;
    padding: 10px;
    font-size: 16px;
    line-height: 12px;
    font-family: 'Helvetica Neue', 'Helvetica', Helvetica, Arial, sans-serif;
    /* color: #555; */
  }

  .order-box table {
    width: 100%;
    line-height: inherit;
    text-align: left;
  }

  .order-box table td {
    padding: 10px;
    vertical-align: top;
    
  }

  .order-box table tr td:nth-child(2) {
    text-align: right;
  }

  .order-box table tr.top table td {
    padding-bottom: 20px;
  }

  .order-box table tr.top table td.title {
    font-size: 20px;
    line-height: 45px;
    color: #333;
  }

  .order-box table tr.information table td {
    padding-bottom: 40px;
    border: double 6px #000000;
  }

  .order-box table tr.heading td {
    background: #eee;
    /* border-bottom: 1px solid #ddd; */
    /* font-weight: bold;
    text-align: center; */
  }

  .order-box table tr.details td {
    padding-bottom: 20px;
  }

  .order-box table tr.item td {
    border-bottom: 1px solid #eee;
  }

  .order-box table tr.item.last td {
    border-bottom: none;
  }

  .order-box table tr.total td:nth-child(2) {
    border-top: 2px solid #eee;
    font-weight: bold;
  }

  .order-box table tr.top table td {
    width: 100%;
    display: block;
    text-align: center;
  }

  .order-box table tr.information table td {
    width: 100%;
    display: block;
    text-align: center;
  }
}

@media screen and (max-width: 1200px) {
  .container {
    padding-right:0 !important;
    padding-left:0 !important;
    max-width: initial !important;
  }
}

#logo{
}

body{
  background-color: #ffffff;
}

#total-orders{
  background-color: #4cb4c7;
}

#orders-delivered{
  background-color: #7abecc;
}

#orders-pending{
  background-color: #7CD1C0;
}

#total-invoices{
  background-color: #4cb4c7;
}

#invoices-delivered{
  background-color: #7abecc;
}

#invoices-pending{
  background-color: #7CD1C0;
}

html {
  scroll-behavior: smooth;
}


@keyframes redflash {
  to {
    background-color: #ff011a;
  }
}
@keyframes greenflash {
  to {
    background-color: #00ff08;
  }
}
.red {
  animation: redflash 0.06s 2 alternate ease-out;
}
.green {
  animation: greenflash 0.06s 2 alternate ease-out;
}