/* ============================================================
   Giuliano Store - values row structure fix
   Loaded after responsive.css.
   ============================================================ */

/*
  Desktop: i wrapper non devono modificare il layout assoluto già approvato.
  Le vecchie classi .gs-value e .gs-dot-row continuano a posizionarsi come prima.
*/

.gs-value-row {
  display: flex;
  text-align: center;
}
.gs-value-row:not(:last-child) {
    margin-bottom: 60px;
}
@media( max-width: 767.98px){
  .gs-value-row {
    display: flex;
    text-align: center;
  }
  .gs-value-row:not(:last-child) {
      margin-bottom: 30px !important;
  }
  .gs-value-row:last-child {
      margin-bottom: 0px !important;
  }
}