/*
 * CSS personalizzato del plugin N-Key MyVP Addon
 */


 /* Modifico l'imput per il campo quantità nel single product */
 .input-text.qty.text {
    width: 6em !important;
}
/* Unità di misura vicino quantità*/
.quantity .quantity-unit {
    display: inline-block;
    vertical-align: middle;
    font-size: 18px;
    line-height: 36px;
}


/* Badge Ordini */

.badge-yellow {
    display: inline-flex;
    align-items: center;
    border-radius: 0.375rem;
    background-color: #fefce8; /* yellow-50 */
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: #854d0e; /* yellow-800 */
    box-shadow: inset 0 0 0 1px rgba(202, 138, 4, 0.2); /* yellow-600/20 */
    margin: 0px 3px;
  }
  
  .badge-green {
    display: inline-flex;
    align-items: center;
    border-radius: 0.375rem;
    background-color: #f0fdf4; /* green-50 */
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: #15803d; /* green-700 */
    box-shadow: inset 0 0 0 1px rgba(22, 163, 74, 0.2); /* green-600/20 */
    margin: 0px 3px;
  }
  
  .badge-blue {
    display: inline-flex;
    align-items: center;
    border-radius: 0.375rem;
    background-color: #eff6ff; /* blue-50 */
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: #1d4ed8; /* blue-700 */
    box-shadow: inset 0 0 0 1px rgba(29, 78, 216, 0.1); /* blue-700/10 */
    margin: 0px 3px;
  }
  .badge-red {
    display: inline-flex;
    align-items: center;
    border-radius: 0.375rem;
    background-color: #ffefef; /* blue-50 */
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: #d81d49; /* blue-700 */
    box-shadow: inset 0 0 0 1px rgba(29, 78, 216, 0.1); /* blue-700/10 */
    margin: 0px 3px;
  }
  

  .flex.flex-wrap.gap-2.legenda-stati {
    padding: 14px 0px;
    text-align: right;
}
.order-status {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: flex-end;
}

/* Unità di misura 
*/
/*.quantity-wrapper {
    position: relative;
    display: inline-block;
}

.quantity-wrapper input.qty {
    padding-right: 2.5em;
    box-sizing: border-box;
}

.quantity-wrapper .quantity-unit-inside {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #555;
    font-weight: 500;
    font-size: 0.9em;
}*/