@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255,102,0, 0.4);
  }
  70% {
      -webkit-box-shadow: 0 0 0 20px rgba(255,102,0, 0);
  }
  100% {
      -webkit-box-shadow: 0 0 0 0 rgba(255,102,0, 0);
  }
}
@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(255,102,0, 0.4);
    box-shadow: 0 0 0 0 rgba(255,102,0, 0.4);
  }
  70% {
      -moz-box-shadow: 0 0 0 20px rgba(255,102,0, 0);
      box-shadow: 0 0 0 20px rgba(255,102,0, 0);
  }
  100% {
      -moz-box-shadow: 0 0 0 0 rgba(255,102,0, 0);
      box-shadow: 0 0 0 0 rgba(255,102,0, 0);
  }
}
#pedidos .card{
    padding: 11px 10px;
    border-radius: 10px;
    box-shadow: rgb(0 0 0 / 10%) 0px 0px 16px 7px;
    margin-bottom: 30px;
}
#pedidos .card.cancelado{
  background: #d121214a;
  opacity: 1;
}
#pedidos .list-group-item{
  background-color: #ffffff30;
}
.list-group-item-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
}
.list-group-item-header div:first-child{
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.list-group-item-header .n_pedido{
    font-weight: 600;
    font-size: 20px;
}
.list-group-item-header .data_hora{
    font-size: 14px;
}
.orderStatus, .orderStatus_concluido, .orderStatus_cancelado{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 11px;
    padding-top: 11px;
}
.orderStatus i{
    -webkit-box-shadow: 0 0 0 2px var(--bs-primary);
    box-shadow: 0 0 0 2px var(--bs-primary);
    background: var(--bs-primary);
    animation: pulse 2s infinite;
    width: 12px;
    height: 12px;
    display: inline-block;
    border-radius: 100%;
}
.orderStatus_concluido i{
    -webkit-box-shadow: 0 0 0 2px #4caf50;
    box-shadow: 0 0 0 2px #4caf50;
    background: #4caf50;
    width: 12px;
    height: 12px;
    display: inline-block;
    border-radius: 100%;
}
.orderStatus_cancelado i{
    -webkit-box-shadow: 0 0 0 2px #ef0017;
    box-shadow: 0 0 0 2px #ef0017;
    background: #ef0017;
    width: 12px;
    height: 12px;
    display: inline-block;
    border-radius: 100%;
}
#pedidos .qtd{
    border: 1px solid #ccc; 
    border-radius: 100%;
    width: 18px;
    height: 18px;
    display: inline-block;
    text-align: center;
    line-height: 18px;
    font-size: 12px;
    font-weight: 600;
    background: #f5f5f5;
    color: #212529;
    margin-right: 5px;
}
#pedidos .list-group-items{
    margin-bottom: 5px;
    font-size: 15px;
    color: rgb(113, 113, 113);
}
#pedidos .pedido-tipo{
    color: #fff;
    border: 1px solid;
    background-color: var(--bs-primary);
    border-radius: 10px;
    text-align: center;
    width: 150px;
    padding: 4px 0px;
}
#pedidos .pedido-tipo span:first-child{
    font-size: 18px;
    font-weight: 600;
}
#pedidos .pedido-tipo span:nth-child(2){
    font-size: 13px;
    font-weight: 500;
}
#pedidos h3.title-historico{
    font-weight: 600;
    padding: 10px 24px;
    margin-bottom: 35px;
}
#pedidos .pedido-detalhes-forma-pagamento-text {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    justify-content: flex-end;
}
#pedidos .pedido-detalhes-forma-pagamento-text img {
    width: 22px;
    vertical-align: top;
}
#pedidos .pedido-detalhes-forma-pagamento-text span {
    text-transform: uppercase;
    font-size: 12px;
}
#pedidos .list-group-item-footer{  
    display: flex;     
    flex-direction: row;    
    justify-content: space-between;   
    align-items: center;
}
#pedidos .list-group-item-footer .list-total{
    font-weight: 600;
    font-size: 25px;
}
#header_m{
    display: none;
}
.div-historico{
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
    padding-bottom: 12px;
}
#pedidos .div-historico h3.title-historico{
    margin-bottom: 13px;
}
.small_total_pedidos{
    font-size: 14px;
    margin-left: 10px;
    color: #6c757d;
    font-weight: 500;
}
.card.footerAni{
    animation: footerAni 1s infinite;
}
a.card{
    text-decoration: none;
}

@media (max-width: 1024px){
    header{
        display: none;
    }
    #header_m{
        display: block;
    }
    body{
        padding-top: 61px;
    }
    #header_m .modal-header{
        max-width: 100%;
        display: grid;
    }
}
@media (max-width: 320px){
    .list-group-item-header .data_hora {
        font-size: 11px;
    }
    #pedidos .pedido-tipo{
        width: 119px;
    }
    #pedidos .list-group-item-footer .list-total{
        font-size: 20px;
    }
}