/*
 * 1796 Proposte Engine - Stili per il contatore proposte
 */
.p1796-counter-stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  flex-wrap: wrap;
}
.p1796-discount {
  font-size: 1rem;
  font-weight: 400;
  color: var(--e-global-color-f74f461);
}
.p1796-counter-stats div span:first-child {
  font-size: 1rem;
  color: var(--e-global-color-text);
  margin-right: 10px;
}
.p1796-counter-stats div span:last-child {
  font-size: 24px;
  font-weight: bold;
}
.p1796-current-quantity {
  color: var(--e-global-color-f74f461);
}
.p1796-counter-stats div:last-child span:last-child {
  color: #333;
}
.p1796-progress-bar {
  background: #e9ecef;
  border-radius: 5px;
  height: 25px;
  margin-bottom: 15px;
  overflow: hidden;
}
.p1796-progress-fill {
  background: #28a745;
  height: 100%;
  transition: width 0.3s ease;
}
.p1796-counter-message {
  font-weight: 500;
  padding: 10px 0;
}
.p1796-counter-message.warning {
  color: #856404;
}
.p1796-counter-message.success {
  color: #28a745;
}
.p1796-go-to-cart {
  margin-top: 10px;
  text-align: left;
}
.p1796-go-to-cart .button {
  background: #0073aa;
  color: white;
  padding: 8px 15px;
  text-decoration: none;
  border-radius: 4px;
  display: inline-block;
}
.p1796-go-to-cart .button:hover {
  background: #005a87;
}
.p1796-ajax-message {
  margin: 10px 0;
  padding: 10px;
  animation: p1796-slideDown 0.3s ease;
}
.box-bottiglie {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border-radius: 50px;
  background-color: #CCCCCC;
  padding: 3px 3px 3px 15px;
  border: 3px solid #FFFFFF;
  font-weight: 400;
}
.valore-bottiglie {
  
  font-size: 1.5rem !important;
  color: #8C0605 !important;
  background-color: #FFFFFF;
  display: flex;
  width: 40px;
  min-height: 40px;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  padding: 0;
  margin-left: 20px;
}
@keyframes p1796-slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .p1796-counter-stats {
    flex-direction: column;
    align-items: flex-start;
  }
  .p1796-counter-stats div {
    margin-bottom: 10px;
  }
}