@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

@media (max-width: 1200px) {
    
    .listas {
        display: none;
    }
  
    .listaResp{
        display: block !important;
    }

    .global{
        max-height: 100% !important;
    }

    .dadosLateral {
        padding: 0 !important;
    }
    
    .bloco{
        display: block !important;
    }
    
    .imgLogoCaprem{
      margin: 20px 10px 20px 70px !important;
    }

    .imagem{
        display:none;
    }
    
   .listaResp .listDropResp .dropdown .sub-menu-resp {
        position: absolute !important;
        top: 0 !important;
        left: -100% !important;
        width: 50vw !important;
        height: 40vh !important;
        overflow-y: auto !important;
        margin-top: 50px !important;
        padding: 20px !important;
        box-shadow: none !important;
        z-index: 3000 !important;
    }
    
    footer{
        display:none !important;
    }
}


@media (min-width: 1201px) {
  .global {
    height: 100vh;
  }
}

*{
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}



.container{
    max-width: 100%;
}

.global{
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem 0 0;
    display: flex;
    justify-content: flex-start;
    overflow: hidden;

}

 .zindex{
      z-index: -1; 
  }
  

  /*estilização do botão*/
  .botao{
    display: flex;
    justify-content: flex-end;
    padding: 10px;
    gap: 10px;
    border-radius: 2px;
}

.btnEnvia{
    padding: 10px;
    background: #0b612d;
    color: white;
    border: none;
}

.btnEnvia:hover{
    opacity: .7
}

.hide{
    display:none;
}





/*estilização dos inputs */
/* Input container */
.input-container {
  position: relative;
  margin: 15px;
}

/* Input field */
.input-field {
  display: block;
  width: 100%;
  padding: 5px;
  font-size: 13px;
  border: none;
  border-bottom: 2px solid #45986a73;
  outline: none;
  background-color: transparent;
}

/* Input label */
.input-label {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 16px;
  color: rgba(204, 204, 204, 0);
  pointer-events: none;
  transition: all 0.3s ease;
}

/* Input highlight */
.input-highlight {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background-color: #0b612d;
  transition: all 0.3s ease;
}

/* Input field:focus styles */
.input-field:focus + .input-label {
  top: -20px;
  font-size: 12px;
  color: #0b612d;
}

.input-field:focus + .input-label + .input-highlight {
  width: 100%;
}





/*estilizacao do radio*/


  .radios {
      display: flex;
  }
  
  .radios label {
    display: flex;
    cursor: pointer;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    margin-bottom: 0.375em;
  }
  
  .radios  label input {
    position: absolute;
    left: -9999px;
  }
  
  .radios label input:checked + span {
    background-color: #0b612d;
    color: white;
  }
  
  .radios label input:checked + span:before {
    box-shadow: inset 0 0 0 0.4375em #45986a73;
   
  }
  
  .radios label span {
    display: flex;
    align-items: center;
    padding: 3px;
    border-radius: 99em;
    transition: 0.25s ease;
    color: #0b612d;
  }
  
  .radios label span:hover {
    background-color: #45986a73;
    color: #0b612d
  }
  
  .radios label span:before {
    display: flex;
    flex-shrink: 0;
    content: "";
    background-color: #fff;
    width: 1.5em;
    height: 1.5em;
    border-radius: 50%;
    margin-right: 0.375em;
    transition: 0.25s ease;
    box-shadow: inset 0 0 0 0.125em #0b612d;
  }
  
  
  
  /*estilizando carregamento*/
  /* HTML: <div class="loader"></div> */
.loader {
  width: 40px;
    aspect-ratio: 2;
    --_g: no-repeat radial-gradient(circle closest-side, #fff 90%, #0000);
    background: var(--_g) 0% 50%, var(--_g) 50% 50%, var(--_g) 100% 50%;
    background-size: calc(100% / 3) 50%;
    animation: l3 1s infinite linear;
}
@keyframes l3 {
    20%{background-position:0%   0%, 50%  50%,100%  50%}
    40%{background-position:0% 100%, 50%   0%,100%  50%}
    60%{background-position:0%  50%, 50% 100%,100%   0%}
    80%{background-position:0%  50%, 50%  50%,100% 100%}
}
    
 