.card {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  color: #fff;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
}

.card .card-body {
  cursor: pointer;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.card .card-header {
  background: #eee;
  color: #666;
}

.color-success {
  background-color: var(--success);
}

.color-danger {
  background-color: var(--danger);
}

.color-warning {
  background-color: var(--warning);
}

.color-info {
  background-color: var(--info);
}

.color-secondary {
  background-color: var(--secondary);
}

.color-indigo {
  background-color: var(--indigo);
}

.color-orange {
  background-color: var(--orange);
}

.txt-success {
  color: var(--success) !important;
}

.txt-danger {
  color: var(--danger) !important;
}

.txt-warning {
  color: var(--warning) !important;
}

.txt-info {
  color: var(--info) !important;
}

.txt-secondary {
  color: var(--secondary) !important;
}

.txt-indigo {
  color: var(--indigo) !important;
}

.txt-orange {
  color: var(--orange) !important;
}

.navbar {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

body {
  min-height: 100vh;
}

.content_login {
  width: 100%;
  height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.content {
  max-width: 100%;
  width: 450px;
  padding: 10px;
  border: 2px solid #ddd;
  border-radius: 5px;
}

.navbar,
footer {
  background-color: #fff;
  z-index: 99;
}

footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  box-shadow: 0 -1px 3px rgba(0, 0, 0, 0.24), 0 1px 2px rgba(0, 0, 0, 0.12);
}

footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 40px;
}

footer p {
  margin: 0;
  font-size: 12px;
  text-transform: uppercase;
}

.card_main i {
  position: absolute;
  top: 10px;
  left: 10px;
  color: #eee;
}

.card_time {
  font-weight: bold;
  font-size: 12px;
  position: absolute;
  top: 10px;
  right: 10px;
}

.card_product {
  font-size: 14px;
  position: absolute;
  top: 30px;
  left: 10px;
}

.card_name {
  font-size: 14px;
  position: absolute;
  bottom: 10px;
  left: 10px;
  font-weight: bold;
  letter-spacing: 2px;
  white-space: nowrap;
  width: 20em;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card_qtd {
  font-size: 26px;
  font-weight: bold;
}

.legenda_caixa {
  display: flex;
  /*justify-content: space-between;*/
  flex-wrap: wrap;
}

.legenda_caixa div:hover {
  border: 1px solid #666;
}

.legenda_caixa div {
  width: 25%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 10px;
  border: 1px solid transparent;
  transition: .2s;
}

.legenda_caixa div span {
  font-size: 12px;
  font-weight: bold;
}

.legenda {
  height: 20px;
  width: 20px;
}

.btn-pulse{
  /*background-color: #c82333;*/
  /*border: 1px solid #c82333;*/
  -webkit-animation-name: btnpulse; /* Safari 4.0 - 8.0 */
  -webkit-animation-duration: 2s; /* Safari 4.0 - 8.0 */
  -webkit-animation-iteration-count: infinite; /* Safari 4.0 - 8.0 */
  animation-name: btnpulse;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-delay: 0s;
}
/* Safari 4.0 - 8.0 */
@-webkit-keyframes btnpulse {
  0% {
      box-shadow: 0px 0px 0px 0px rgb(249, 197, 197);
  }
  70% {
      box-shadow: 0px 0px 0px 5px rgba(252,123,123);
  }
  100% {
      box-shadow: 0px 0px 0px 0px rgba(255,0,0);
  }
}

/* Standard syntax */
@keyframes btnpulse {
  0% {
      box-shadow: 0px 0px 0px 0px rgb(249, 197, 197);
  }
  70% {
      box-shadow: 0px 0px 0px 5px rgba(252,123,123);
  }
  100% {
      box-shadow: 0px 0px 0px 0px rgba(255,0,0);
  }
}

.my-ob-class {
  position: relative;
}

.my-ob-class:hover .my-ob-span {
  display: block;
}

.my-ob-span {
  background: #fff;
  padding: 10px;
  border: 1px solid #dcdcdc;
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  display: none;
  z-index: 99;
}

.highcharts-credits {
  display: none !important;
}

.font-ajus {
  font-size: 18px;
  font-weight: 600;
}

@media (min-width: 576px) and (max-width: 767px) {
  .card_name {
    font-size: 12px !important;
  }
}

@media (max-width: 600px) {
  .caixa_logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
  }
}
