:root {
  --select-border: #000;
  --select-focus: #FAD201;
  --select-arrow: var(--select-border);
}

@font-face {
    font-family: 'Gotham Light'; /*a name to be used later*/
    src: url('/Landing/Gotham/Gotham-Light.otf'); /*URL to font*/
}

@font-face {
    font-family: 'Gotham Thin'; /*a name to be used later*/
    src: url('/Landing/Gotham/Gotham-Thin.otf'); /*URL to font*/
}

*{
    font-family: 'Gotham Light';
}
html,body{
    margin:0;
    padding:0;
    background-color: #FAD201;
}
.url-field-wrapper {
    position: absolute; 
    left: -9999px;
}
input.campi{
    height: 50px;
    border-radius: 50px/50px;
}
input, textarea{
    width: 100%;
    border: 0px #000 solid;
    border-radius: 6px/6px;
    font-size: 1rem;
    box-sizing: border-box;
    resize: vertical;
    box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.3);
    padding: 0.7em;
}
label {
  padding: 12px 12px 12px 0;
  display: inline-block;
  margin-top: 0.4em;
}
select {
  appearance: none;
  background-color: transparent;
  border: none;
  padding: 0 1em 0 0;
  margin: 0;
  margin-top: 0.4rem;
  width: 100%;
  font-family: inherit;
  font-size: inherit;
  cursor: inherit;
  line-height: inherit;
}

.custom-select {
 width: 100%;
 height: 50px;
 border: 0px #000 solid;
 border-radius: 50px/50px;
 box-sizing: border-box;
resize: vertical;
    box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.3);
    padding: 0.7em;
  font-size: 1rem;
  cursor: pointer;
  line-height: 1.1;
  background-color: #fff;
  background-image: linear-gradient(to top, #f9f9f9, #fff 33%);
}
.custom-select::after {
  content: "";
  width: 0.8em;
  height: 0.5em;
  background-color: var(--select-arrow);
  clip-path: polygon(100% 0%, 0 0%, 50% 100%);
}

.testo{
    text-align: left;
    font-size: 12px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.container{
    display: grid;
    place-items: center;
    margin-top: 1em;
    margin-left: 1em;
    margin-right: 1em;
    margin-bottom: 1em;
    padding: 1em;
}
.button-wrapper{
      text-align: center;
      padding-top: 0.7em;
      padding-bottom: 0.7em;
      padding-left: 3.4em;
      padding-right: 3.4em;
      justify-self: center;
      max-width: fit-content;
      font-family: 'Gotham Light';
      font-size: 19px;
      border-style: solid;
      border-width: 2px;
      color: #FEFCFF;
      border-color: #1c1c1c;
      border-radius: 1000px/1000px;
      background-color:#1c1c1c;
      -webkit-box-shadow: 0px 10px 20px #00000033;
              box-shadow: 0px 10px 20px #00000033;
    -webkit-tap-highlight-color: transparent;
  }
.button-link{
    text-decoration: none;
    -webkit-appearance: none;
    color: #FFF;
}
.asterisco{
    color:red;
}

.container-poweredby{
    margin: 1em;
    display: grid;
    place-items: center;
}
.poweredby{
    margin-top:0;
    height: 60px;
    max-width: 100vw;
}
.iubenda-wrapper{
      display: grid;
      place-items: center;
      margin-top: 3rem;
  }
.top-container{
      position: fixed;
      top: 0;
      left: 0;
      z-index: 80;
      background-color: #FAD201;
      width: 100vw;
      height: 100vh;
      margin: 0;
      padding: 0;
      display: -ms-grid;
      display: grid;
      place-items: center;
      -webkit-animation: dissolvenza 2s ease-in-out;
            animation: dissolvenza 2s ease-in-out;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
    -webkit-animation-delay: 11s;
            animation-delay: 11s;
  }
  .text-container{
display: -ms-grid;
display: grid;
      
      height: -webkit-fit-content;
      height: -moz-fit-content;
      height: fit-content;
  }
.top-text{
    font-family: 'Gotham Light';
    height: -webkit-fit-content;
      height: -moz-fit-content;
      height: fit-content;
    font-size: 55px;
    width: 22ch;
    max-width: 170px;
    white-space: nowrap;
    overflow: hidden;
    border-right: 2px solid;
    -webkit-animation: typing 3s steps(22);
            animation: typing 3s steps(22);
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
    grid-column-start: 1;
    grid-row-start: 1;
  }
  .middle-text{
    font-family: 'Gotham Light';
    text-align: justify;
    font-size: 32px;
    width: 22ch;
    height: -webkit-fit-content;
      height: -moz-fit-content;
      height: fit-content;
    max-width: 160px;
    margin-top: 0.3em;
    visibility: hidden;
    white-space: nowrap;
    overflow: hidden;
    border-right: 2px solid;
    -webkit-animation: typing-second 2s steps(28);
            animation: typing-second 2s steps(28);
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
    -webkit-animation-delay: 3s;
            animation-delay: 3s;
            grid-column-start: 1;
    grid-row-start: 1;
  }
  
  

@-webkit-keyframes typing {
  from {
    width: 0;
    
  }
  to{
      border-right: 0px ;
      max-height: 0px;
      
  }
}
  @keyframes typing {
  from {
    width: 0;
    
  }
  to{
      border-right: 0px ;
      visibility: hidden;
      
  }
}
@-webkit-keyframes typing-second {
  from {
    width: 0;
    visibility: visible;
    
  }
  to{
    border-right: 0px ;
    visibility: visible;
    
  }
}
@keyframes typing-second {
  from {
    width: 0;
    visibility: visible;
  }
  to{
      border-right: 0px ;
      visibility: visible;
  }
}
 
  /* 100% Image Width on Smaller Screens */
  /*@media only screen and (max-width: 700px){
    .modal-content {
      width: 100%;
    }
  }*/