#edit-wizard-bottom {
  display: flex;
  align-items: start;
  justify-content: center;
  width: 100%;

  legend {
    display: none;
  }

  > .fieldset-wrapper {
    display: flex;
    align-items: start;
    justify-content: center;
    width: 100%;

    fieldset#edit-bottom {
      display: flex;
      align-items: start;
      justify-content: center;
      width: 96%;
      max-width: 360px;
      border-radius: 0.5rem;
      padding: 0.5rem;
      text-align: left;
      border: 2px solid #ccc;
      background-color: #eee;
      margin-bottom: 2rem;

      > .fieldset-wrapper {
        padding: 1rem 0.5rem;
        background: #fff;
        border-radius: 0.5rem;
      }

      fieldset.shipping-container {
        > .fieldset-wrapper {
          max-width: 245px;
        }
      }
    }
  }
}

/* Solo Desktop */
body.is-desktop {
  /* Versione modalità "right" */
  .newcom-wizard-form[data-wizard-right-mode="right"] #edit-wizard-bottom {
    display: none !important;
  }

  /* Versione modalità "right_mobile" */
  .newcom-wizard-form[data-wizard-right-mode="right_mobile"] #edit-wizard-bottom {
    max-width: 100%;
    margin-bottom: 3rem;

    > .fieldset-wrapper {
      flex-direction: row;
      align-items: start;

      h3.wizard-right-title {
        display: none !important;
      }

      /* Anteprima */
      .wizard-right-upper {
        &::before {
          content: "Anteprima";
          display: flex;
          align-items: center;
          justify-content: center;
          width: 100%;
          font-family: 'Hind', Helvetica, Arial, system-ui, sans-serif;
          font-weight: bold;
          font-size: 1.25rem;
          text-transform: uppercase;
          margin-bottom: 1rem;
        }

        /* Contaienr con immagini */
        .wizard-right-preview {
          max-width: 300px;
          margin-top: 0.5rem !important;

          .wizard-right-preview-item-text {
            left: 3%;
            top: 107px;
          }
        }

        /* Immagini qualità */
        .wizard-right-quality_images {
          &.wizard-right-quality_images_upper_right {
            top: 0px;
            right: 43px;
          }

          &.wizard-right-quality_images_lower_left {
            bottom: 13px;
            left: 34px;
          }
        }
      }
    }
  }
}
