
/* CSS Document 2026 */
.new_freezer_icon {
  display: inline-block;
  cursor: pointer;
  min-width: 14px;
  height: 14px;
  margin-right: 4px;
  background-image: url("images/icon/freezer_bn.png");
  background-size: contain;
  background-repeat: no-repeat;
}

.nota_in_alto {
    position: relative;
    background-color: #c7c7c7;
    color: #ffffff;
    width: calc(100% + 4px);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    top: -6px;
    left: -2px;
}    
.prodotto_acquistato {
    background-color: #516f20; /* verde => acquistato */
    padding: 1px 0;
}    
.prodotto_prenotato {
    background-color: #b58747; /* arancio => prenotato */
    padding: 1px 0;
}    


/* CSS Document 2025 */
.bio-bag .boxer { /*min-width: 300px !important;*/ }
.bio-bag .boxer h1 { margin-bottom: 2px; }
.bio-bag .boxer h3 { margin: 6px 0px; }
.bio-bag .boxer img { max-width: 100%; }

.bio-bag .boxer.in_colonna { margin: 6px; width: 300px; }

.bio-bag #content ul { padding-left: 20px; padding-right: 20px; }
.bio-bag #content ul > li { list-style: disc; margin-left: 20px; margin-bottom: 4px;  }
.bio-bag #content ul h1 { margin-top: 20px; margin-bottom: 6px; font-size: 18px; }
.bio-bag #content ul h3 { margin-top: 20px; margin-bottom: 6px; }
.boxer.no-sfondo { background-color: unset !important; }

table.lightboxed { border-bottom: 0px solid #b3b3b3; margin: 0 auto; padding: 0; border-spacing: 0; }
table.lightboxed td { border: 1px solid #b3b3b3; margin: 0; padding: 4px; text-align: left; }
table.lightboxed tr.intestazione td,
table.lightboxed tr:first-child td {
    border-top-width: 0 !important;
    border-left-width: 0 !important;
    border-right-width: 0 !important;
    font-weight: bold;
    font-size: 90%;
}
table.lightboxed tr.no_border td {
    border-top-width: 0 !important;
    border-left-width: 0 !important;
    border-right-width: 0 !important;
    font-weight: normal;
    font-size: 100%;
}
table.lightboxed td.price { text-align: right; }


#paypal_button { display: inline-block; }
#paypal_button:hover, #satispay_button:hover img { transform: scale(1.1); transition-duration: 0.5s; }

/* Stile del loader */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Animazione del loader */
.loading::after {
    content: '';
    border: 4px solid #f3f3f3; /* Colore di sfondo */
    border-top: 4px solid #3498db; /* Colore della parte in movimento */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

/* Animazione di rotazione */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }                           
}

/* Drag&Drop per upload image usato in scheda produttore */
.drop-zone {
    width: 300px;
    height: 200px;
    padding: 20px;
    border: 2px dashed #666;
    border-radius: 10px;
    text-align: center;
    color: #666;
    font-family: sans-serif;
    cursor: pointer;
    transition: 0.2s;
}
.drop-zone.dragover {
    background-color: #e3e3e3;
    border-color: #333;
    color: #333;
}
.drop-zone img {
    max-width: 100%;
    max-height: 100%;
    margin-top: 10px;
}

/* tabs  DIC 2025 */
.tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 0px;
}
.tab-button {
    padding: 10px 16px;
    margin-right: 8px;
    cursor: pointer;
    border: none;
    background-color: #a8a6a680;
    font-size: 16px;
    transition: background-color 0.3s;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.tab-button:hover {
    background-color: #428504;
}
.tab-button.active {
    background-color: #ffffff80 !important;
}
.tab-content {
    display: none;
}
.tab-content h2 {
    margin-top: 0;
}
/* Attiva la tab selezionata */
.tab-content.active {
    display: block;
}
