#wa-main-content {
    margin-top: 0 !important;
}

.wasa-custompromo-container {
    margin-top: 0 !important;
}

.notes {
    background: #00427c;
    color: #fff;
}

.notes li a {
    color: #fff;
    font-size: 30px;
    padding-inline: 16px;
    border-right: 1px solid #fff;
    font-family: "Avenir Next W05" !important;
}

.notes li:last-child a {
    border-right: none;
}

.minimum-tec {
    font-size: 14px;
    font-family: "Avenir Next W05" !important;
}


@media screen and (max-width:467px) {


    .notes li {
        margin-right: 0;
    }

    .notes li a {
        color: #fff;
        font-size: 13px !important;
        padding-inline: 8px !important;
        border-right: 1px solid #fff;
    }

    .wasa-custompromo-container .gamma-container .packs:nth-child(2) {
        z-index: 1;
        margin-bottom: -192px;
        position: relative;
        top: -39px;
    }

    .wasa-custompromo-container .gamma-container .packs:nth-child(1) {
        z-index: 0;
        position: relative;
        margin-right: 18px;
        margin-left: -4px;
    }

    .wasa-custompromo-container .gamma-container .packs:nth-child(3) {
        z-index: 0;
        position: relative;
        margin-left: -10px;
        margin-right: 50px;
        top: 180px;
    }

}


#loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0.5);
    align-items: center;
    /* centro verticale */
    justify-content: center;
    /* centro orizzontale */
    z-index: 9999;
    display: flex;
}

.spinner {
    width: 64px;
    height: 64px;
    border: 8px solid;
    /* quattro lati: top, right, bottom, left */
    border-color: #4379be #4379be #4379be transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.spinner-mini {
    width: 16px;
    height: 16px;
    border: 2px solid;
    /* quattro lati: top, right, bottom, left */
    border-color: #4379be #4379be #4379be transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    display: block;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}


/*********** FIX HEADER  ***********/
@media screen and (min-width:1024px) and (max-width: 1439px) {
    .WaHeader .desktop-menu .brand {
        margin-left: 0 !important;
    }

    .WaHeader .desktop-menu .icons {
        margin: 0 0 0 0 !important;
    }
}

@media screen and (max-width:1024px) {

    .wasa-custompromo-container h1,
    .wasa-custompromo-container .h1 {
        font-size: 40px;
    }

    .wasa-custompromo-container .explainer-container .exp .exp-card-content .exp-card-title {
        font-size: 36px;
    }

    .wasa-custompromo-container .giftcard-container .giftcard-title {
        font-family: "Wasa Crunch";
        font-weight: 600;
        font-size: 40px;
    }

    .wasa-custompromo-container .giftcard-container .giftcard-subtitle {
        font-size: 16px;
        font-weight: 500;
    }

    .wasa-custompromo-container .giftcard-container .giftcard-text {
        font-size: 16px;
        font-weight: 400;
    }

    .wasa-custompromo-container .explainer-container .exp .exp-card-content .exp-card-text {
        font-weight: 400;
        font-size: 24px;
        text-align: center;
        line-height: 1.1;
    }

    .otnotice-sections > .otnotice-section > .otnotice-section-content {
        margin-right: 0 !important;
        margin-left: 0 !important;
    }
    .otnotice-menu-mobile {
        width: auto !important;
    }
}

.otnotice-menu {
    position: absolute !important;
}

.ot-privacy-notice-language-dropdown-container {
    display: none !important;
}


/* checkbox custom */
.cbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

/* input “vero” ma invisibile (non display:none) */
.cbox__input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  padding: 0;
  opacity: 0;
  pointer-events: none;
}

/* label con spazio a sinistra per il box */
.cbox__label {
  position: relative;
  cursor: pointer;
  line-height: 1.25;
  padding-left: 42px; /* 30px box + gap */
}

/* box base (non checked) */
.cbox__label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 30px;
  height: 30px;
  border: 2px solid #00427C;
  border-radius: 6px;
  background: #fff;
  box-sizing: border-box;
}

/* overlay checked: blu + check bianco */
.cbox__label::after {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 30px;
  height: 30px;
  border-radius: 6px;
  background-color: #00427C;

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10'%3E%3Cpath d='M1 5L4 8L11 1' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 70% 70%;

  opacity: 0;
  transform: scale(0.98);
  transition: opacity 0.12s ease, transform 0.12s ease;
}

/* toggle visivo quando l’input è checked */
.cbox__input:checked + .cbox__label::after {
  opacity: 1;
  transform: scale(1);
}

/* focus accessibile */
.cbox__input:focus-visible + .cbox__label::before {
  outline: 3px solid rgba(0, 66, 124, 0.35);
  outline-offset: 2px;
}

/* disabled (opzionale) */
.cbox__input:disabled + .cbox__label {
  opacity: 0.6;
  cursor: not-allowed;
}
