:root {
    --font-family: "Source Sans Pro", sans-serif;
    --font-weight-regular: 400;
    --font-weight-semibold: 600;
    --body-color: #f3f8fa;
    --input-color: #fcfeff;
    --font-color: #fff;
  
    --primary: #304355;
    --primary-grey: #425563;
    --medium-grey: #506678;
    --medium-light-grey: #7992a1;
    --light-grey: #a6c3d0;
  
    --primary-green: #007367;
    --dark-green: #004039;
    --medium-green: #008c7c;
    --medium-light-green: #00a996;
    --light-green: #a5ffd6;

    --filter-dark-green-color: brightness(0) saturate(100%) invert(20%) sepia(11%) saturate(5004%) hue-rotate(133deg) brightness(91%) contrast(102%);
    --filter-light-green: brightness(0) saturate(100%) invert(95%) sepia(2%) saturate(7000%) hue-rotate(75deg) brightness(105%) contrast(102%);
  
    --greyscale-0: #ffffff;
    --greyscale-50: rgba(251, 252, 252, 1);
    --greyscale-100: #f6f7f7;
    --greyscale-200: #eceeef;
    --greyscale-400: #d9dde0;
    --greyscale-600: #b3bbc1;
    --greyscale-800: #304355;
    --greyscale-900: #0f1929;
    --greyscale-1000: #000000;
  
    --yellow-warning: #fdd06a;
    --link: #6bb4f6;
  
    --primary-1: rgba(48, 67, 85, 0.1);
    --primary-5: rgba(48, 67, 85, 0.5);
    --primary-7: rgba(48, 67, 85, 0.7);
  }
  
  .button {
    padding: 0 2rem;
    border-radius: 50px;
    max-height: 4rem;
    height: 4rem;
    width: max-content;
    line-height: 4rem;
    font-weight: var(--font-weight-regular) !important;
    font-size: 1.125rem;
    letter-spacing: 0.02rem;
    cursor: pointer;
    border: 1px solid var(--primary-green);
    text-decoration: none;
    text-align: center;
    min-height: unset;
  }
  
  @media screen and (max-width: 992px) {
    .button {
      height: 3rem;
      max-height: 3rem;
      line-height: 3rem;
    }
  }
  
  .button--primary {
    color: var(--font-color) !important;
    font-size: 0.875rem;
    line-height: 1rem;
    letter-spacing: 0.02rem;
    font-weight: var(--font-weight-semibold);
    border: 0;
    background: linear-gradient(90deg, #007367 0%, #1e8c7f 100%);
  }
  
  .button--primary-greyscale-900 {
    color: var(--greyscale-0) !important;
    font-size: 0.875rem;
    line-height: 1rem;
    letter-spacing: 0.02rem;
    font-weight: var(--font-weight-semibold);
    border: 0;
    background: linear-gradient(90deg, #0a122a 0%, #00204a 100%);
  }
  
  .button--primary-black {
    color: #fff !important;
    background: var(--greyscale-1000);
    border: 0;
  }
  
  .button--link {
    padding: 0;
    height: unset;
    max-height: unset;
    color: var(--primary-green);
    font-weight: var(--font-weight-semibold) !important;
    background-color: transparent;
    border: 0;
    font-size: 0.875rem;
    line-height: 1rem;
    letter-spacing: 0.02rem;
  }
  
  .button--rounded {
    border-radius: 50%;
    height: 2rem;
    width: 2rem;
    line-height: 2rem;
    padding: 0;
  }
  
  .button--primary:hover {
    background: var(--dark-green);
    box-shadow: none;
  }
  
  .button--secondary {
    color: var(--greyscale-900);
    background-color: transparent;
    border: 1px solid var(--greyscale-900);
  }
  
  .button--secondary:hover {
    background: linear-gradient(90deg, #0a122a 0%, #00204a 100%);
    color: var(--greyscale-0);
    border: 1px solid var(--greyscale-0);
  }
  
  .button--medium {
    height: 3rem;
    max-height: 3rem;
    line-height: 3rem;
    font-size: 1.125rem;
    font-weight: var(--font-weight-semibold);
  }
  
  @media screen and (max-width: 870px) {
    .button--medium {
      height: 2.5rem;
      max-height: 2.5rem;
      line-height: 2.5rem;
      font-size: 1rem;
    }
  }
  
  .button--small {
    height: 2.5rem;
    max-height: 2.5rem;
    line-height: 2.5rem;
    font-size: 0.875rem;
    font-weight: var(--font-weight-semibold);
  }
  
  @media screen and (max-width: 870px) {
    .button--small {
      height: 2rem;
      max-height: 2rem;
      line-height: 2rem;
      font-size: 0.875rem;
    }
  }
  
  .button--accent {
    color: var(--greyscale-900);
    border: 1px solid transparent;
    background-color: var(--light-green);
  }
  
  .button--accent:hover {
    background: var(--medium-light-green);
    border: 1px solid var(--medium-light-green);
    color: var(--dark-green);
  }
  
  .button--disabled {
    color: var(--greyscale-600) !important;
    border: 1px solid var(--greyscale-400);
    background-color: var(--greyscale-200);
    box-shadow: none;
    font-weight: var(--font-weight-regular) !important;
    cursor: not-allowed;
  }
  
  .button--disabled:hover {
    background-color: var(--greyscale-400);
    border-color: var(--greyscale-400);
    color: var(--greyscale-600) !important;
  }
  
  .button--gradient {
    background: linear-gradient(92.35deg, var(--greyscale-900) 0%, #304355 100%);
    border: 1px solid var(--greyscale-900);
    font-weight: var(--font-weight-regular) !important;
    color: #fff !important;
  }
  
  .button--selector-variant {
    border: 1px solid #97a5b0;
    box-shadow: 0px 2px 0px 0px #d9dde01a;
    background: var(--input-color);
    font-size: 14px;
    color: var(--greyscale-900);
    font-weight: 700;
    border-radius: 8px;
    padding: 8px 16px 8px 16px;
    height: unset;
    line-height: 20px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .button:hover {
    font-weight: var(--font-weight-regular);
  }

  .animate-right .animation-item,
  .animate-right .animation-arrow-rigth{
    transition: transform 0.2s ease-in-out;
}

.animate-right:hover .animation-item {
    transform: translateX(1rem);
  }


.animate-right:hover .animation-arrow-rigth {
    transform: translateX(1rem) rotate(270deg);
  }
  
  
  /* Classi colori */
  .black { color: var(--greyscale-1000) !important; }
  .primary-green { color: var(--primary-green) !important; }
  .greyscale-50 { color: var(--greyscale-50) !important; }
  .greyscale-50-background { background-color: var(--greyscale-50) !important; }
  .primary-grey { color: var(--primary-grey) !important; }
  .medium-grey { color: var(--medium-grey) !important; }
  .dark-green { color: var(--dark-green) !important; }
  .green-medium-light { color: var(--medium-light-green) !important; }
  .light-grey { color: #97a5b0; }
  .light-green { color: var(--light-green) !important; }
  .medium-green { color: var(--medium-green) !important; }
  .medium-light-green { color: var(--medium-light-green) !important; }
  .dark-grey,
  .grey-800 { color: var(--greyscale-800) !important; }
  .grey-600 { color: var(--greyscale-600) !important; }
  .grey-400 { color: var(--greyscale-400) !important; }
  .grey-900 { color: var(--greyscale-900) !important; }
  .white-background-widget { background-color: #fafcfc; }
  .bg-white { background-color: var(--greyscale-0); }
  .bg-input-color { background-color: var(--input-color) !important; }
  .border-r-15 { border-radius: 1.5rem; }
  .filter-light-green { filter: var(--filter-light-green); }
  .dark-green-color { filter: var(--filter-dark-green-color); }
  
  /* Hover effects */
  .hover-green-medium-light-border {
    border: 1px solid transparent;
  }
  .hover-green-medium-light-border:hover {
    border: 1px solid var(--medium-light-green);
    cursor: pointer;
  }
  
  
  html,
  body {
    margin: 0;
    padding: 0;
    font-family: var(--font-family);
    font-weight: var(--font-weight-regular);
    background-color: var(--body-color);
    font-size: 1rem;
    line-height: 1.5;
    color: var(--greyscale-800);
    scroll-behavior: smooth;
  }
  
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  .h6 {
    filter: var(--greyscale-900);
  }
  
  h1 {
    font-size: 4rem;
    line-height: 5rem;
  }
  
  @media screen and (max-width: 576px) {
    h1 {
      font-size: 3.5rem;
      line-height: 4rem;
    }
  }
  
  h2 {
    font-size: 3.5rem;
    line-height: 4rem;
    letter-spacing: -0.02rem;
  }
  
  h3 {
    font-size: 3rem;
    line-height: 4rem;
  }
  
  @media screen and (max-width: 576px) {
    h3 {
      text-align: center;
    }
  }
  
  h4 {
    font-size: 4rem;
    line-height: 4.25rem;
  }
  
  @media screen and (max-width: 870px) {
    h4 {
      font-size: 3.25rem;
      line-height: 3.5rem;
    }
  }
  
  @media screen and (max-width: 576px) {
    h4 {
      font-size: 2.5rem;
      line-height: 2.75rem;
    }
  }
  
  h5 {
    font-size: 2.25rem;
    line-height: 100%;
    font-weight: var(--font-weight-semibold);
  }
  
  @media screen and (max-width: 576px) {
    h5 {
      font-size: 1.75rem;
    }
  }
  
  h6,
  .h6 {
    font-size: 1.5rem;
    line-height: 1.75rem;
    font-weight: var(--font-weight-semibold);
  }
  
  @media screen and (max-width: 576px) {
    h6,
    .h6 {
      font-size: 1.25rem;
      line-height: 1.5rem;
    }
  }
  
  p,
  label {
    font-size: 1rem;
    line-height: 1.25rem;
    letter-spacing: unset;
  }
  
  @media screen and (max-width: 870px) {
    p,
    label {
      font-size: 0.875rem;
      line-height: 1rem;
    }
  }
  
  p,
  label,
  ul li {
    /* max-width: 30rem; */
  }
  
  span.small,
  p.small,
  a.small,
  label.small,
  address.small,
  sup.small {
    font-size: 0.875rem;
    line-height: 1rem;
    letter-spacing: 0;
  }
  
  @media screen and (max-width: 870px) {
    span.small,
    p.small,
    a.small,
    label.small,
    address.small,
    sup.small {
      font-size: 0.75rem;
      line-height: 0.875rem;
      letter-spacing: 0.02rem;
    }
  }
  
  span.medium,
  p.medium,
  a.medium,
  label.medium,
  address.medium,
  sup.medium {
    font-size: 1rem;
    line-height: 1.25rem;
    letter-spacing: 0;
    font-weight: var(--font-weight-regular);
  }
  
  @media screen and (max-width: 870px) {
    span.medium,
    p.medium,
    a.medium,
    label.medium,
    address.medium,
    sup.medium {
      font-size: 0.875rem;
      line-height: 1rem;
      letter-spacing: 0.02rem;
    }
  }
  
  span.ultra-small,
  p.ultra-small,
  a.ultra-small,
  label.ultra-small {
    font-size: 0.75rem;
    line-height: 1.125rem;
    letter-spacing: 0.02rem;
  }
  
  ul li {
    font-size: 1.125rem;
    line-height: 1.75rem;
    letter-spacing: 0.02rem;
    list-style-type: disc;
    margin-left: 1rem;
  }
  
  a {
    color: #6bb4f6;
    font-weight: var(--font-weight-semibold);
    text-decoration-line: none;
    letter-spacing: 0.02rem;
  }
  
  a.showmore {
    text-decoration: underline;
    font-weight: normal;
  }
  
  a.showmore:hover {
    filter: brightness(0.5);
  }
  
  textarea {
    font-family: var(--font-family);
    font-size: 1rem;
    line-height: 1.5;
  }

.container-formats-supported {
    padding: 1px 8px 3px 8px;
   background: rgba(235, 236, 239, 1);
border-radius: 99px; font-size: 12px; color: rgba(10, 18, 42, 1)
}

.container-icon-cards {
    height: 80px; 
    width: 80px; 
    background-color: var(--light-green);
    border-radius: 1rem
}


/* Start modal */
.modal {
    position: fixed;
    z-index: 9000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(10, 18, 42, 0.5);
  }

.modal::-webkit-scrollbar {
    width: 9px;
  }
  
  .modal::-webkit-scrollbar-track {
    background: var(--greyscale-400); /* sfondo del track */
    border-radius: 9px; /* arrotonda sopra e sotto */
  }
  
 .modal::-webkit-scrollbar-thumb {
    background-color: var(--primary-green); /* colore del thumb */
    border-radius: 9px; /* arrotonda sopra e sotto */
    border: none; /* rimuove bordo interno */
  }
  
  .modal .modal__content {
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    padding: 2rem;
    width: calc(100% - 4rem);
    max-width: 60rem;
    border-radius: 1.5rem;
    background-color: #ffffff;
    overflow: scroll;
  }
  
  @media screen and (max-width: 576px) {
    .modal .modal__content {
      padding: 1rem;
      position: relative;
      top: unset;
      left: unset;
      transform: unset;
      min-width: unset;
      width: 100%;
      height: 100%;
      border-radius: 0;
    }
  }
  
  .modal .modal__content-3d,
  .modal .modal__content-image-ai,
  .modal .modal__content-no-3d {
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: calc(100% - 4rem);
    max-height: calc(100% - 4rem);
    max-width: 60rem;
    border-radius: 1.5rem;
    background-color: #ffffff;
  }
  
  @media screen and (max-width: 870px) {
    .modal .modal__content-3d,
    .modal .modal__content-image-ai {
      padding: 1rem;
      position: relative;
      top: unset;
      left: unset;
      transform: unset;
      min-width: 100%;
      width: 100%;
      height: 100%;
      max-height: unset;
      border-radius: 0;
    }
  }

  .modal .modal__content-3d .div-close-modal,
  .modal__content-image-ai .div-close-modal,
  .modal .modal__content-no-3d .div-close-modal {
    position: sticky;
    top: 1rem;
    left: 95%;
    width: min-content;
    border: 1px solid var(--greyscale-900);
    border-radius: 100%;
    padding: 0.5rem;
    background: white;
    cursor: pointer;
    z-index: 9999999999;
  }

  .modal .modal__content-3d .div-close-modal:hover,
  .modal__content-image-ai .div-close-modal:hover,
  .modal .modal__content-no-3d .div-close-modal:hover {
    background: linear-gradient(90deg, #0a122a 0%, #00204a 100%);
    border: 1px solid var(--greyscale-0);
  }

  .modal .modal__content-3d .div-close-modal:hover div,
  .modal__content-image-ai .div-close-modal:hover div,
  .modal__content-no-3d .div-close-modal:hover div {
    filter: brightness(0) invert(1);
  }
/* End modal */

/* Start dropzone area */
.drop-zone {
    border: 1px dashed var(--medium-green);
    border-radius: 1rem;
    color: var(--greyscale-600);
    padding: 1.5rem;
    font-size: 0.875rem;
    line-height: 1.5rem;
    letter-spacing: 0.02rem;
    height: 100%;
    max-height: 240px;
    background-color: rgba(239, 251, 255, 1);
  }

  .drop-zone--disabled {
    border: 1px dashed var(--greyscale-200);
    border-radius: 1rem;
    color: var(--greyscale-400);
    padding: 1.5rem;
    font-size: 0.875rem;
    line-height: 1.5rem;
    letter-spacing: 0.02rem;
    height: 100%;
    max-height: 240px;
    background-color: rgba(239, 251, 255, 0.25);
    cursor: not-allowed!important;
  }

  .drop-zone--disabled * {
    cursor: not-allowed!important;
  }
  
  .drop-zone,
  .drop-zone label {
    cursor: pointer;
  }
  
  .drop-zone--over {
    background-color: rgba(165, 255, 214, 0.5);
  }
  .drop-zone--over .icon {
    transform: rotate(180deg);
  }
  
  .drop-zone__input {
    display: none;
  }
  
  .drop-zone__drag-content {
    display: none;
  }
  
  .drop-zone--over .drop-zone__default-content {
    display: none;
  }
  
  .drop-zone--over .drop-zone__drag-content {
    display: block;
  }
  
  .drop-zone__with-files {
    height: 104px;
    min-height: unset!important;
    max-height: unset;
  }
  
  .drop-zone__with-files > label {
    flex-direction: row;
    gap: 1rem;
    justify-content: flex-start;
  }

  .card-upload-file-image > :first-child {
    width: inherit;
    max-width: 250px;
    height: auto
  }

  #extension-supportated-upload-3d div {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .drop-zone {
    max-height: 100%;
  }
  
  @media screen and (max-width: 870px) {
    .drop-zone__with-files {
        height: auto!important;
        min-height: unset!important;
    }

    .drop-zone__with-files .drop-zone__default-content :first-child {
        flex-direction: row;
        gap: 0.25rem;
        align-items: flex-start;
    }

    .card-upload-file-image :first-child {
        max-height: 75px!important;
        width: 100px!important;
    }

    #extension-supportated-upload-3d div {
        justify-content: center;
    }
  }
  
  .upload-image {
    height: 80px;
    width: 80px;
    background-color: rgba(165, 255, 214, 1);
    border-radius: 1rem;
  }
  
  .drop-zone__with-files .upload-image {
    height: 40px;
    max-width: 40px;
    width: 100%;
    background-color: rgba(165, 255, 214, 1);
    border-radius: 0.5rem;
  }

  .drop-zone__with-files .upload-image .icon {
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
  }
  
  .drop-zone__with-files .drop-zone__default-content {
    align-items: center;
    flex-direction: row;
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  
  @media screen and (max-width: 870px) {
    .drop-zone__with-files .drop-zone__default-content {
      flex-direction: column;
      align-items: flex-start;
    }
  }
  
  .drop-zone__with-files .drop-zone__default-content :first-child {
    flex-direction: column;
    align-items: flex-start;
  }
  
  @media screen and (max-width: 870px) {
    .drop-zone__with-files .drop-zone__default-content :first-child {
      flex-direction: row;
      gap: 0.25rem;
      align-items: flex-start;
    }
  }
  
  .drop-zone__with-files .drop-zone__default-content :last-child {
    align-items: flex-end;
  }
  
  @media screen and (max-width: 870px) {
    .drop-zone__with-files .drop-zone__default-content :last-child {
      align-items: flex-start;
    }
  }
  
  .drop-zone__with-files .drop-zone__default-content :last-child :first-child {
    flex-direction: row;
    gap: 1rem;
    align-items: flex-end;
  }
  
  @media screen and (max-width: 870px) {
    .drop-zone__with-files .drop-zone__default-content :last-child :first-child {
      flex-direction: column;
      align-items: flex-start;
      gap: 0.25rem;
    }
  }

  .drop-zone__prompt {
    padding: 0px!important;
  }
/* End dropzone area */

.upload-line--inactive, .upload-line--gradient {
    position: absolute;
    height: 0.25rem;
    width: 100%;
    border-radius: 20px;
    background-color: #eceeef;
}

/* Start funnel */

.funnel-layout {
    width: 100%;
    max-width: 90.75rem;
    margin: 8rem auto;
    padding-left: 6rem;
    padding-right: 6rem;
}

@media screen and (max-width: 992px) {
    .funnel-layout {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media screen and (max-width: 744px) {
    .funnel-layout {
        margin: 5rem auto;
    }
}

@media screen and (max-width: 576px) {
    .funnel-layout {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

.funnel {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.banner-upload {
    background-image: url("../img/funnel/texture-dx.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right;
    padding: 4rem 6rem;
}

@media screen and (max-width: 870px) {
    .banner-upload {
        padding: 2rem;
    }
}

.funnel .span {
    font-weight: var(--font-weight-semibold);
    font-size: 0.875rem;
    line-height: 1.5rem;
    letter-spacing: 0.02em;
    color: var(--greyscale-800);
}

.funnel .span--primary {
    color: var(--primary-green);
}

.funnel .span--link {
    color: #6bb4f6;
}

.funnel .span--icon__info::before {
    content: url("../img/svg/generic/info.svg");
    line-height: 1.5rem;
    padding: 0 0.5rem 0 0;
}

.funnel .span--icon__alert::before {
    content: url("../img/svg/generic/error.svg");
    line-height: 1.5rem;
    padding: 0 0.5rem 0 0;
}

.sticky {
    position: sticky;
    top: 6rem;
    align-self: flex-start;
    width: 100%;
}

.funnel .sub-header {
    display: flex;
    justify-content: space-between;
    background-color: var(--body-color);
    padding: 0.5rem 1rem;
}

.funnel .sub-controller {
    display: flex;
    justify-content: space-between;
    align-items: start;
    padding: 0 0.5rem;
}

.funnel .add-controller {
    background-image: url("../img/svg/generic/add.svg");
    background-repeat: no-repeat;
    width: 2.625rem;
    height: 2.625rem;
}

.funnel .payment-method-card-imgs > img {
    height: 2rem;
    width: auto;
}

.funnel-cols {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
}

.funnel-cols > div:first-child {
    flex: 2;
}

.funnel-cols > div:last-child {
    flex: 1;
}

@media screen and (max-width: 870px) {
    .funnel-cols {
        flex-direction: column-reverse;
    }
    
    .funnel-cols > div:first-child,
    .funnel-cols > div:last-child {
        flex: 1;
    }
}

.funnel-col {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media screen and (max-width: 744px) {
    .funnel-col {
        width: 100% !important;
    }
}

.upload-img {
    position: relative;
    width: 100%;
    flex: 1;
}

@media screen and (max-width: 1024px) {
    .upload-img {
        display: none;
    }
}

.upload-img img {
    position: absolute;
    top: 0;
    right: 0;
    top: -10rem;
    right: -10rem;
    height: 270px;
}

.funnel .payment {
    background-color: var(--greyscale-200);
    padding: 1.5rem 1rem;
    cursor: pointer;
}

.funnel .payment--active {
    background-color: #fafcfc;
}

.funnel .payment input {
    cursor: pointer;
}

.funnel .payments > div:first-child {
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
}

.funnel .payments > div:last-child {
    border-bottom-left-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
    border-bottom: none;
}

.funnel .payment:not(.payment--active) {
    border-bottom: 1px solid #d9dde0;
}

.funnel .payments .payment--active {
    border: 1px solid #008c7c !important;
    box-shadow: 0px 2px 0px rgba(151, 165, 176, 0.1);
}

.our-proposal {
    margin-top: 2rem;
}

@media screen and (max-width: 576px) {
    .our-proposal {
        gap: 1rem;
    }
}

.our-proposal > div {
    min-height: 10.625rem;
    text-align: center;
    min-width: 9rem;
    border: 1px solid #d9dde0;
    border-radius: 0.5rem;
    display: flex;
    justify-content: center;
}

.our-proposal > div > p {
    max-width: 5rem;
}

@media screen and (max-width: 576px) {
    .our-proposal > div {
        width: 100%;
    }
}

@media screen and (max-width: 576px) {
    .funnel-form__header {
        align-items: start;
    }
    
    .funnel-form__header a {
        width: 100%;
    }
}

/* Loading animation */
.reverse-direction .loading {
    -webkit-animation-direction: reverse;
    -moz-animation-direction: reverse;
}

.loading div {
    background: var(--body-color);
    position: absolute;
}

/* First two funnel-cards */
.funnel-cards__loading-container {
    height: 20rem;
    width: 100%;
    position: relative;
}

.funnel-cards__loading-container .loading {
    animation-duration: 1s;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    animation-name: wave;
    animation-timing-function: linear;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-name: wave;
    -webkit-animation-timing-function: linear;
    -moz-animation-duration: 1s;
    -moz-animation-fill-mode: forwards;
    -moz-animation-iteration-count: infinite;
    -moz-animation-name: wave;
    -moz-animation-timing-function: linear;
    background: var(--greyscale-200);
    background-image: -webkit-gradient(
        linear,
        left center,
        right center,
        from(var(--greyscale-200)),
        color-stop(0.2, #f5f5f5),
        color-stop(0.4, #e5e5e5),
        to(var(--greyscale-200))
    );
    background-image: -webkit-linear-gradient(
        left,
        var(--greyscale-200) 0%,
        #f5f5f5 20%,
        #e5e5e5 40%,
        var(--greyscale-200) 100%
    );
    background-image: -moz-gradient(
        linear,
        left center,
        right center,
        from(var(--greyscale-200)),
        color-stop(0.2, #f5f5f5),
        color-stop(0.4, #e5e5e5),
        to(var(--greyscale-200))
    );
    background-image: -moz-linear-gradient(
        left,
        var(--greyscale-200) 0%,
        #f5f5f5 20%,
        #e5e5e5 40%,
        var(--greyscale-200) 100%
    );
    background-repeat: no-repeat;
    background-size: 100% 20rem;
    height: 20rem;
    position: relative;
}

.funnel-cards__loading-container .shape-1 {
    top: 0;
    left: 80%;
    height: 20.5rem;
    width: 1rem;
}

.funnel-cards__loading-container .shape-2 {
    top: 0;
    right: calc(30% - 1rem);
    height: 1rem;
    width: 40%;
}

.funnel-cards__loading-container .shape-3 {
    top: 1rem;
    left: 0;
    height: 1rem;
    width: 80%;
}

.funnel-cards__loading-container .shape-4 {
    top: 2.75rem;
    left: 0;
    height: 0.5rem;
    width: 80%;
}

.funnel-cards__loading-container .shape-5 {
    top: 4rem;
    left: 0;
    height: 0.5rem;
    width: 80%;
}

.funnel-cards__loading-container .shape-6 {
    top: 0rem;
    left: 65%;
    height: 20rem;
    width: 1rem;
}

.funnel-cards__loading-container .shape-7 {
    top: 5.25rem;
    left: 0;
    height: 3rem;
    width: 80%;
}

.funnel-cards__loading-container .shape-8 {
    top: 4.25rem;
    left: 45%;
    height: 1rem;
    width: 35%;
}

.funnel-cards__loading-container .shape-9 {
    top: 8.25rem;
    left: 15%;
    height: 0.75rem;
    width: 60%;
}

.funnel-cards__loading-container .shape-10 {
    top: 9rem;
    left: 0;
    height: 2rem;
    width: 100%;
}

.funnel-cards__loading-container .shape-11 {
    top: 11rem;
    right: calc(30% - 1rem);
    height: 1rem;
    width: 40%;
}

.funnel-cards__loading-container .shape-12 {
    top: 12rem;
    left: 0;
    height: 1rem;
    width: 80%;
}

.funnel-cards__loading-container .shape-13 {
    top: 13.75rem;
    left: 0;
    height: 0.5rem;
    width: 80%;
}

.funnel-cards__loading-container .shape-14 {
    top: 15rem;
    left: 0;
    height: 0.5rem;
    width: 80%;
}

.funnel-cards__loading-container .shape-15 {
    top: 16.25rem;
    left: 0;
    height: 3rem;
    width: 80%;
}

.funnel-cards__loading-container .shape-16 {
    top: 15.25rem;
    left: 45%;
    height: 1rem;
    width: 35%;
}

.funnel-cards__loading-container .shape-17 {
    top: 19.25rem;
    left: 15%;
    height: 0.75rem;
    width: 60%;
}

.funnel-cards__loading-container .shape-18 {
    top: 20rem;
    left: 0;
    height: 2rem;
    width: 100%;
}

/* Optimized funnel-card */
.funnel-cards-optimized__loading-container {
    height: 9rem;
    width: 100%;
    position: relative;
}

.funnel-cards-optimized__loading-container .loading {
    animation-duration: 1s;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    animation-name: wave;
    animation-timing-function: linear;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-name: wave;
    -webkit-animation-timing-function: linear;
    -moz-animation-duration: 1s;
    -moz-animation-fill-mode: forwards;
    -moz-animation-iteration-count: infinite;
    -moz-animation-name: wave;
    -moz-animation-timing-function: linear;
    background: var(--greyscale-200);
    background-image: -webkit-gradient(
        linear,
        left center,
        right center,
        from(var(--greyscale-200)),
        color-stop(0.2, #f5f5f5),
        color-stop(0.4, #e5e5e5),
        to(var(--greyscale-200))
    );
    background-image: -webkit-linear-gradient(
        left,
        var(--greyscale-200) 0%,
        #f5f5f5 20%,
        #e5e5e5 40%,
        var(--greyscale-200) 100%
    );
    background-image: -moz-gradient(
        linear,
        left center,
        right center,
        from(var(--greyscale-200)),
        color-stop(0.2, #f5f5f5),
        color-stop(0.4, #e5e5e5),
        to(var(--greyscale-200))
    );
    background-image: -moz-linear-gradient(
        left,
        var(--greyscale-200) 0%,
        #f5f5f5 20%,
        #e5e5e5 40%,
        var(--greyscale-200) 100%
    );
    background-repeat: no-repeat;
    background-size: 100% 9rem;
    height: 9rem;
    position: relative;
}

.funnel-cards-optimized__loading-container .shape-1 {
    top: 0;
    left: 80%;
    height: 9rem;
    width: 1rem;
}

.funnel-cards-optimized__loading-container .shape-2 {
    top: 0;
    right: calc(30% - 1rem);
    height: 1rem;
    width: 40%;
}

.funnel-cards-optimized__loading-container .shape-3 {
    top: 1rem;
    left: 0;
    height: 1rem;
    width: 80%;
}

.funnel-cards-optimized__loading-container .shape-4 {
    top: 2.75rem;
    left: 0;
    height: 0.5rem;
    width: 80%;
}

.funnel-cards-optimized__loading-container .shape-5 {
    top: 4rem;
    left: 0;
    height: 0.5rem;
    width: 80%;
}

.funnel-cards-optimized__loading-container .shape-6 {
    top: 0rem;
    left: 65%;
    height: 9rem;
    width: 1rem;
}

.funnel-cards-optimized__loading-container .shape-7 {
    top: 5.25rem;
    left: 0;
    height: 3rem;
    width: 80%;
}

.funnel-cards-optimized__loading-container .shape-8 {
    top: 4.25rem;
    left: 45%;
    height: 1rem;
    width: 35%;
}

.funnel-cards-optimized__loading-container .shape-9 {
    top: 8.25rem;
    left: 15%;
    height: 0.75rem;
    width: 60%;
}

/* Best solution card */
.best-solution__loading-container {
    height: 30rem;
    width: 100%;
    position: relative;
}

.best-solution__loading-container .loading {
    animation-duration: 1s;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    animation-name: wave;
    animation-timing-function: linear;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-name: wave;
    -webkit-animation-timing-function: linear;
    -moz-animation-duration: 1s;
    -moz-animation-fill-mode: forwards;
    -moz-animation-iteration-count: infinite;
    -moz-animation-name: wave;
    -moz-animation-timing-function: linear;
    background: var(--greyscale-200);
    background-image: -webkit-gradient(
        linear,
        left center,
        right center,
        from(var(--greyscale-200)),
        color-stop(0.2, #f5f5f5),
        color-stop(0.4, #e5e5e5),
        to(var(--greyscale-200))
    );
    background-image: -webkit-linear-gradient(
        left,
        var(--greyscale-200) 0%,
        #f5f5f5 20%,
        #e5e5e5 40%,
        var(--greyscale-200) 100%
    );
    background-image: -moz-gradient(
        linear,
        left center,
        right center,
        from(var(--greyscale-200)),
        color-stop(0.2, #f5f5f5),
        color-stop(0.4, #e5e5e5),
        to(var(--greyscale-200))
    );
    background-image: -moz-linear-gradient(
        left,
        var(--greyscale-200) 0%,
        #f5f5f5 20%,
        #e5e5e5 40%,
        var(--greyscale-200) 100%
    );
    background-repeat: no-repeat;
    background-size: 100% 30rem;
    height: 30rem;
    position: relative;
}

.best-solution__loading-container .shape-1 {
    top: 1.5rem;
    left: 0;
    height: 1rem;
    width: 100%;
}

.best-solution__loading-container .shape-2 {
    top: 0;
    right: 0;
    height: 1.5rem;
    width: 20%;
}

.best-solution__loading-container .shape-3 {
    top: calc(2.5rem + 1px);
    right: 0;
    height: 1rem;
    width: 100%;
}

.best-solution__loading-container .shape-4 {
    top: 4.5rem;
    right: 0;
    height: 0.75rem;
    width: 100%;
}

.best-solution__loading-container .shape-5 {
    top: 7.5rem;
    right: 0;
    height: 1rem;
    width: 100%;
}

.best-solution__loading-container .shape-6 {
    top: 3.5rem;
    left: calc(50% - 0.5rem);
    height: 4rem;
    width: 1rem;
}

.best-solution__loading-container .shape-7 {
    top: calc(8.5rem + 1px);
    right: 0;
    height: 1rem;
    width: 100%;
}

.best-solution__loading-container .shape-8 {
    top: 10.5rem;
    right: 0;
    height: 0.75rem;
    width: 100%;
}

.best-solution__loading-container .shape-9 {
    top: 11.25rem;
    left: calc(35% - 0.5rem);
    height: 7.75rem;
    width: 1rem;
}

.best-solution__loading-container .shape-10 {
    top: 13rem;
    right: 0;
    height: 0.75rem;
    width: 100%;
}

.best-solution__loading-container .shape-11 {
    top: 12rem;
    left: 0;
    height: 3rem;
    width: calc(35% - 0.5rem);
}

.best-solution__loading-container .shape-12 {
    top: 14.5rem;
    right: 0;
    height: 0.75rem;
    width: 100%;
}

.best-solution__loading-container .shape-13 {
    top: 16rem;
    left: 0;
    height: 3rem;
    width: calc(35% - 0.5rem);
}

.best-solution__loading-container .shape-14 {
    top: 18rem;
    right: 0;
    height: 1rem;
    width: 100%;
}

.best-solution__loading-container .shape-15 {
    top: calc(19rem + 1px);
    right: 0;
    height: 1rem;
    width: 100%;
}

.best-solution__loading-container .shape-16 {
    top: 21rem;
    right: 0;
    height: 1rem;
    width: 100%;
}

.best-solution__loading-container .shape-17 {
    top: 20rem;
    right: 30%;
    height: 1rem;
    width: 30%;
}

.best-solution__loading-container .shape-18 {
    top: 23rem;
    right: 0;
    height: 1rem;
    width: 100%;
}

.best-solution__loading-container .shape-19 {
    top: 22rem;
    right: 20%;
    height: 1rem;
    width: 45%;
}

.best-solution__loading-container .shape-20 {
    top: 25rem;
    right: 0;
    height: 1rem;
    width: 100%;
}

.best-solution__loading-container .shape-21 {
    top: 24rem;
    right: 20%;
    height: 1rem;
    width: 45%;
}

.best-solution__loading-container .shape-22 {
    top: calc(26rem + 1px);
    right: 0;
    height: 1rem;
    width: 100%;
}

.best-solution__loading-container .shape-23 {
    top: 27rem;
    right: 20%;
    height: 1rem;
    width: 45%;
}

.best-solution__loading-container .shape-24 {
    top: 28rem;
    right: 0;
    height: 2rem;
    width: 100%;
}

/* Notes */
.notes__loading-container {
    height: 15rem;
    width: 100%;
    position: relative;
}

.notes__loading-container .loading {
    animation-duration: 1s;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    animation-name: wave;
    animation-timing-function: linear;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-name: wave;
    -webkit-animation-timing-function: linear;
    -moz-animation-duration: 1s;
    -moz-animation-fill-mode: forwards;
    -moz-animation-iteration-count: infinite;
    -moz-animation-name: wave;
    -moz-animation-timing-function: linear;
    background: var(--greyscale-200);
    background-image: -webkit-gradient(
        linear,
        left center,
        right center,
        from(var(--greyscale-200)),
        color-stop(0.2, #f5f5f5),
        color-stop(0.4, #e5e5e5),
        to(var(--greyscale-200))
    );
    background-image: -webkit-linear-gradient(
        left,
        var(--greyscale-200) 0%,
        #f5f5f5 20%,
        #e5e5e5 40%,
        var(--greyscale-200) 100%
    );
    background-image: -moz-gradient(
        linear,
        left center,
        right center,
        from(var(--greyscale-200)),
        color-stop(0.2, #f5f5f5),
        color-stop(0.4, #e5e5e5),
        to(var(--greyscale-200))
    );
    background-image: -moz-linear-gradient(
        left,
        var(--greyscale-200) 0%,
        #f5f5f5 20%,
        #e5e5e5 40%,
        var(--greyscale-200) 100%
    );
    background-repeat: no-repeat;
    background-size: 100% 20rem;
    height: 20rem;
    position: relative;
}

.notes__loading-container .shape-1 {
    top: 1.5rem;
    left: 0;
    height: 1rem;
    width: 80%;
}

.notes__loading-container .shape-2 {
    top: 0;
    right: 0;
    height: 2.5rem;
    width: 20%;
}

.notes__loading-container .shape-3 {
    top: 3.25rem;
    left: 0;
    height: 0.75rem;
    width: 100%;
}

.notes__loading-container .shape-4 {
    top: 4.75rem;
    left: 0;
    height: 0.75rem;
    width: 100%;
}

.notes__loading-container .shape-5 {
    top: 6.25rem;
    left: 0;
    height: 0.75rem;
    width: 90%;
}

.notes__loading-container .shape-6 {
    top: 7.75rem;
    left: 0;
    height: 10rem;
    width: 100%;
}

.notes__loading-container .shape-7 {
    top: 7rem;
    right: 0;
    height: 1.5rem;
    width: 35%;
}

.notes__loading-container .shape-8 {
    top: 5.5rem;
    right: 0;
    height: 1.5rem;
    width: 10%;
}

.notes__loading-container .shape-9 {
    top: 17.75rem;
    left: 0;
    height: 2.25rem;
    width: 78%;
}

.notes__loading-container .shape-10 {
    top: 17.75rem;
    right: 0;
    height: 2.25rem;
    width: 3%;
}

/* Our proposal 3 cards */
.our-proposal__loading-container {
    height: 10rem;
    padding-top: 5%;
    width: 100%;
    position: relative;
}

.our-proposal__loading-container .loading {
    animation-duration: 1s;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    animation-name: wave;
    animation-timing-function: linear;
    background: var(--greyscale-200);
    background-image: -webkit-gradient(
      linear,
      left center,
      right center,
      from(var(--greyscale-200)),
      color-stop(0.2, #f5f5f5),
      color-stop(0.4, #e5e5e5),
      to(var(--greyscale-200))
    );
    background-image: -webkit-linear-gradient(
      left,
      var(--greyscale-200) 0%,
      #f5f5f5 20%,
      #e5e5e5 40%,
      var(--greyscale-200) 100%
    );
    background-image: -moz-linear-gradient(
      left,
      var(--greyscale-200) 0%,
      #f5f5f5 20%,
      #e5e5e5 40%,
      var(--greyscale-200) 100%
    );
    background-repeat: no-repeat;
    background-size: 100% 10rem;
    height: 10rem;
    position: relative;
  }
  
  @keyframes wave {
    0% { background-position: -468px 0; }
    100% { background-position: 468px 0; }
  }
  @-webkit-keyframes wave {
    0% { background-position: -468px 0; }
    100% { background-position: 468px 0; }
  }
  @-moz-keyframes wave {
    0% { background-position: -468px 0; }
    100% { background-position: 468px 0; }
  }
  
  /* Shapes positions */
  .our-proposal__loading-container .shape-1 {
    position: absolute;
    top: 0;
    left: calc(33% - 1.5rem);
    height: 10rem;
    width: 2.25rem;
  }
  .our-proposal__loading-container .shape-2 {
    position: absolute;
    top: 0;
    left: calc(66% - 0.5rem);
    height: 10rem;
    width: 2.25rem;
  }
  .our-proposal__loading-container .shape-3 {
    position: absolute;
    top: 5rem;
    left: 0;
    height: 1.25rem;
    width: 100%;
  }
  .our-proposal__loading-container .shape-4 {
    position: absolute;
    top: 7rem;
    left: 0;
    height: 0.5rem;
    width: 100%;
  }
  .our-proposal__loading-container .shape-5 {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1.75rem;
    width: 100%;
  }
  
  /* Payment section visibility */
  #payment-section {
    display: none;
  }
  @media screen and (min-width: 744px) {
    #payment-section {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
  }
  #payment-section--mobile {
    display: none;
  }
  @media screen and (max-width: 744px) {
    #payment-section--mobile {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
  }
  
  /* Funnel boxed-data */
  .funnel .boxed-data {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid var(--greyscale-400);
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
  }
  
  /* Upload steps mobile-only */
  @media screen and (max-width: 576px) {
    #upload-step-2 > div:first-child,
    #upload-step-3 > div:first-child,
    #upload-step-4 > div:first-child {
      border-bottom: 1px solid var(--greyscale-600);
      padding-bottom: 2rem;
      margin-bottom: 1rem;
    }
    #upload-step-3 select,
    #upload-step-4 select,
    #select-all-unit {
      min-width: unset;
      max-width: 100%;
      width: 100%;
    }
    #uploaded-files-list select {
      max-width: 100%;
      width: 100%;
    }
  }
  
  /* Step 4 custom style */
  #upload-step-4 > div {
    border-color: #fdd06a;
    background: linear-gradient(0deg, #f6f7f7, #f6f7f7),
                linear-gradient(0deg, #fdd06a, #fdd06a);
    color: var(--greyscale-600);
  }
  #upload-step-4 a:hover:not(.button) {
    filter: brightness(0.5);
  }
  
  /* Delete hover */
  #upload-step-3 .delete:hover,
  #upload-step-4 .delete:hover {
    filter: brightness(0) saturate(100%) invert(7%) sepia(15%) saturate(2533%) hue-rotate(178deg) brightness(92%) contrast(94%);
  }
  
  /* Uploaded-files-list */
  #uploaded-files-list {
    max-height: 25rem;
    overflow-y: auto;
  }

  #uploaded-files-list::-webkit-scrollbar {
    width: 9px;
  }
  
  #uploaded-files-list::-webkit-scrollbar-track {
    background: var(--greyscale-200); /* sfondo del track */
    border-radius: 9px; /* arrotonda sopra e sotto */
  }
  
  #uploaded-files-list::-webkit-scrollbar-thumb {
    background-color: var(--primary-green); /* colore del thumb */
    border-radius: 9px; /* arrotonda sopra e sotto */
    border: none; /* rimuove bordo interno */
  }
  
  
  /* Firefox */
  #uploaded-files-list {
    scrollbar-width: thin;
    scrollbar-color: var(--primary-green) var(--greyscale-200);
  }
  

  #uploaded-files-list .card-upload-file-image {
    height: 200px;
  }

  @media screen and (max-width: 870px) {
    #uploaded-files-list {
      max-height: calc(100vh - 2rem);
    }
    #uploaded-files-list .card-upload-file-image {
      height: 75px;
    }
    #uploaded-files-list .card-upload-file-image .icon {
      width: 64px;
      height: 64px;
      min-width: 64px;
      min-height: 64px;
    }
  }

  .card-upload-file {
    border: 1px solid #eceeef;
    border-radius: 0.5rem;
    padding: 1rem;
    background-color: #ffffff;
}
  
  /* Card layout adjustments */
  #uploaded-files-list .card-upload-file {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    justify-content: center !important;
    position: relative;
  }

  #uploaded-files-list .card-upload-file .delete-item-before-upload,
  #uploaded-files-list .card-upload-file .edit-file {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: var(--primary-green);
    padding: 0.5rem;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .blocked-element-dom.blocked {
    opacity: 0.5;
    cursor: not-allowed!important;
  }

  #uploaded-files-list .card-upload-file .card-upload-file-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    width: 100%;
  }
  @media screen and (max-width: 870px) {
    #uploaded-files-list .card-upload-file .card-upload-file-header {
      flex-direction: row;
      align-items: center;
      gap: 1rem;
    }
  }
  #uploaded-files-list .card-upload-file .card-upload-file-header .card-upload-file-image {
    width: 100%;
  }
  @media screen and (max-width: 870px) {
    #uploaded-files-list .card-upload-file .card-upload-file-header .card-upload-file-image {
      width: auto;
      padding: 0;
    }
    #uploaded-files-list .card-upload-file .card-upload-file-header .card-upload-file-image .icon {
      margin: auto;
      width: 3.75rem;
      height: 3.75rem;
      min-width: 3.75rem;
      min-height: 3.75rem;
    }
    #uploaded-files-list .card-upload-file .card-upload-file-header .card-upload-file-image .placeholder-img {
      width: 3.75rem;
      height: 3.75rem;
      min-width: 3.75rem;
      min-height: 3.75rem;
    }
  }
  
  /* Placeholder image behavior */
  #uploaded-files-list .card-upload-file .card-upload-file-header .card-upload-file-image .placeholder-img {
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url("/assets/img/svg/generic/placeholder-uploaded.png");
  }
  
  /* Card footer */
  #uploaded-files-list .card-upload-file .card-upload-file-footer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    width: 100%;
  }
  
  /* Card header title */
  .card-upload-file-header h6 {
    max-width: 12.5rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  @media screen and (max-width: 870px) {
    .card-upload-file-header h6 {
      max-width: calc(100% - 6rem);
    }
  }
  
/* End funnel */

/* Start Grid */
.grid-table {
    display: flex;
    flex-direction: column;
  }
  
  .grid-table > div:not(:first-child) {
    border-top: none;
  }
  
  .grid-table > div:first-child {
    border-left: 1px solid var(--greyscale-400);
  }
  
  .grid-table > div {
    border: 1px solid var(--greyscale-400);
  }
  
  .grid-table .grid-th,
  .grid-table .grid-td {
    padding: 1rem 1.5rem;
  }
  
  .grid-table .grid-th {
    background-color: var(--body-color);
    border-bottom: 1px solid var(--greyscale-400);
  }
  
  .grid-table .grid-th label {
    white-space: nowrap;
  }
  
  @media screen and (max-width: 576px) {
    .grid-table label {
      width: 10rem;
      display: inline-block;
      overflow-wrap: break-word;
    }
  }
  
  @media screen and (min-width: 992px) {
    .grid-table {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      grid-auto-rows: auto;
    }
  
    .grid-table > div:nth-child(2n+0) {
      border-left: none;
    }
  
    .grid-table > div:not(:first-child) {
      border-top: 1px solid var(--greyscale-400);
    }
  
    .grid-table > div:not(:nth-child(-n+2)) {
      border-top: none;
    }
  }
  
  @media screen and (min-width: 1361px) {
    .grid-table {
      grid-template-columns: repeat(3, 1fr);
    }
  
    .grid-table > div:not(:first-child) {
      border: 1px solid var(--greyscale-400);
    }
  
    .grid-table > div:nth-child(3n),
    .grid-table > div:nth-child(3n-1) {
      border-left: none;
    }
  
    .grid-table > div:not(:nth-child(-n+3)) {
      border-top: none;
    }
  }
  
  .grid-3 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  @media screen and (min-width: 870px) {
    .grid-3 {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      grid-auto-rows: auto;
      grid-gap: 2rem;
    }
  }
  
  @media screen and (min-width: 992px) {
    .grid-3 {
      grid-template-columns: repeat(3, 1fr);
      grid-gap: 2rem;
    }
  }
  
  .grid-4 {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--greyscale-400);
    border-radius: 0.5rem;
  }
  
  .grid-4 > div:not(:last-child) {
    border-bottom: 1px solid var(--greyscale-400);
  }
  
  .grid-item {
    padding: 1rem;
    text-align: left;
  }
  
  .grid-4 > div > .grid-item:first-child {
    display: flex;
    align-items: center;
    width: 10rem;
  }
  
  .grid-4 img {
    height: 174px;
    max-height: 174px;
    object-fit: contain;
  }
  
  .grid-4 > div > .grid-item:not(:first-child) {
    border-left: 1px solid var(--greyscale-400);
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    flex: 1;
  }
  
  .grid-4 > div > .grid-item--left {
    align-items: flex-start !important;
    justify-content: flex-start !important;
  }
  
  #final-quality-check-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  @media screen and (min-width: 870px) {
    #final-quality-check-options {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      grid-auto-rows: auto;
      grid-gap: 2rem;
    }
  }
  
  @media screen and (min-width: 992px) {
    #final-quality-check-options {
      grid-template-columns: repeat(3, 1fr);
      grid-gap: 2rem;
    }
  }
  
  .funnel-card--basic .grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: auto;
    justify-items: start;
  }

  .container-upload-file-and-file-uploaded,
  .container-image-ai {
    padding: 0.5rem 2rem 0rem 2rem!important;
  }

  .container-buttons-footer-modal-upload-3d,
  .container-buttons-footer-modal-image-ai {
      position: sticky;
      bottom: 0;
      background-color: white;
      border-top: 1px solid var(--primary-green);
      padding: 0.75rem 2rem 1rem 2rem!important;
  }
  
  @media screen and (max-width: 870px) {
    .funnel-card--basic .grid {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .funnel-card--basic .grid > div {
      width: 100%;
    }
  
    .funnel-card--basic .grid > div:nth-child(2n) {
      align-items: flex-end;
    }

    .container-buttons-footer-modal-upload-3d {
      padding-bottom: 0px!important;
    }

    .container-buttons-footer-modal-image-ai {
      bottom: -1rem;
    }
  }
  
/* End Grid */

.upload-line {
    position: relative;
    display: flex;
    width: 100%;
    max-width: 100%;
    height: 0.25rem;
}

.upload-line--gradient {
    background: linear-gradient(270deg, #007367 0%, #55d5b0 100%);
}

.error-file-upload-footer {
    color: #e86b59;
    font-size: 0.875rem;
    line-height: 1rem;
    letter-spacing: 0;
}

.reupload-file-error {
    color: #2f4355;
    font-size: 0.875rem;
    line-height: 1rem;
    letter-spacing: 0;
}

.flex-row-box-card-modal {
  flex-direction: row;
}

@media screen and (max-width: 489px) {
  .flex-row {
    flex-direction: row;
  }

  .flex-row-box-card-modal {
    flex-direction: column;
  }
}

.uploadtest.invisible {
  height: 0px;
  overflow: hidden;
}