
@import url(../Libreria/fonts/Poppins.css);

/* @font-face {
  font-family: NeuroPol;
  src: url(../Libreria/fonts/NEUROPOL.ttf);
} */

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
/* 
H1 {
  font-family: NeuroPol !important;
}

H4 {
  font-family: NeuroPol !important;
}

H2 {
  font-family: NeuroPol !important;
} */




.cta, span[data-w-e-type='attachment'] {
    color: rgb(34, 34, 34);
    text-decoration: none;
    cursor: pointer;
}

.cta:hover, span[data-w-e-type='attachment']:hover {
    color: #5ca314;
}

.cta {
    position: relative;
    padding: 10px 11px;
    transition: all 0.2s ease;
}

.cta:before {
    content: "";
    position: absolute;
    top: 0;
    display: block;
    border-radius: 28px;
    background: #5ebd00;
    width: 45px;
    height: 45px;
    transition: all 0.3s ease;
}

.cta span {
    position: relative;
    font-size: 16px;
    line-height: 18px;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    vertical-align: middle;
}

.cta i {
    position: relative;
    top: 2px;
    margin-left: 10px;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke: #000;
    stroke-width: 2;
    transform: translateX(-5px);
    transition: all 0.3s ease;
}

.cta:hover:before {
    width: 90%;
    background: #fff;
}

.cta:hover i {
    transform: translateX(0);
}

.cta:active {
    transform: scale(0.96);
}

.bgGreen{
    background: linear-gradient(to right, #069e2d 0%, #25A244 100%);
    color: #000;
}

.borderGreen{
    border: solid 2px #069e2d;
}


/*Estilo de fomrularios*/
.form-field{
    width: 100%;
    height: 46px;
    padding: 0 16px;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-family: "Rubik", sans-serif;
    outline: 0;
    transition: 0.1s;
  }
  
.form-field:focus {
border-color: #0f7ef1;
}

.form-select:focus {
  border-color: #0f7ef1;
}


.close:hover,
.close:focus {
  box-shadow: inset -30em 0 0 0 var(--hover), inset 30em 0 0 0 var(--hover);
  color: #069e2d;
  border: 2px solid #069e2d;
}
.close {
  --color: #069e2d;
  --hover: #fff;
}

.btnForm {
    color: var(--color);
    -webkit-transition: 0.25s;
    transition: 0.25s;
  }
  
  
  .btnForm {
    background: none;
    border: 2px solid;
    font: inherit;
    line-height: 1;
    margin: 0.5em;
    padding: 12px 10px;
    background: linear-gradient(to right, #069e2d 0%, #1A7431 100%);
    border-radius: 4px;
    color: #fff;
    letter-spacing: 1px;
    font-family: "Rubik", sans-serif;
    cursor: pointer;
  }
  
  .alertHome {
    width: 100%;
    margin: 20px auto;
    border-radius: 5px;
    box-shadow: 0 0 15px 5px #ccc;
  }
  
  .cerrarAlerta {
    position: relative;
    width: 30px;
    height: 30px;
    opacity: 0.5;
    border-width: 1px;
    border-style: solid;
    border-radius: 50%;
    left: 50%;
    text-align: center;
    font-size: 1.1em;
    cursor: pointer;
  }
  
  .neutraAlerta {
    background-color: #ebebeb;
    border-left: 5px solid #6c6c6c;
  }
  .neutraAlerta .cerrarAlerta {
    border-color: #6c6c6c;
    color: #6c6c6c;
  }

  .infoAlerta {
    background-color: #cff4fc;
    border-left: 5px solid #055160;
  }
  .infoAlerta .cerrarAlerta {
    border-color: #6c6c6c;
    color: #6c6c6c;
  }
  
  .successAlerta {
    background-color: #a8f0c6;
    border-left: 5px solid #178344;
  }
  .successAlerta .cerrarAlerta {
    border-color: #178344;
    color: #178344;
  }
  
  .dangerAlerta {
    background-color: #f7a7a3;
    border-left: 5px solid #8f130c;
  }
  .dangerAlerta .cerrarAlerta {
    border-color: #8f130c;
    color: #8f130c;
  }
  
  .warningAlerta {
    background-color: #ffd48a;
    border-left: 5px solid #8a5700;
  }
  .warningAlerta .cerrarAlerta {
    border-color: #8a5700;
    color: #8a5700;
  }

  select{
    cursor: pointer;
  }

  .containerAdjunt {
    width: 100%;
    align-items: center;
    display: flex;
    justify-content: center;
    background-color: #fcfcfc;
  }
  
  .cardAdjunt {
    border-radius: 10px;
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.3);
    width: 600px;
    height: 230px;
    background-color: #ffffff;
    padding: 10px 30px 40px;
  }
  
  .cardAdjunt h3 {
    font-size: 22px;
    font-weight: 600;
    
  }
  
  .dropAdjun {
    margin: 10px 0;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border: 3px dotted #069e2d;
    border-radius: 5px;
  }
  
  .dropAdjun h4 {
    font-size: 16px;
    font-weight: 500;
    color: #2e2e2e;
  
  }
  
  .dropAdjun p {
    margin-top: 10px;
    margin-bottom: 20px;
    font-size: 12px;
    color: #a3a3a3;
  }
  
  .btnAdjunt {
    text-decoration: none;
    background: linear-gradient(to right, #069e2d 0%, #25A244 100%);
    color: #ffffff;
    padding: 10px 20px;
    border: none;
    outline: none;
    transition: 0.3s;
  }
  
  .btnAdjunt:hover{
    text-decoration: none;
    background-color: #ffffff;
    color: #069e2d;
    padding: 10px 20px;
    font-size: 15px;
    border: none;
    border: 1px solid #069e2d;
  }

  .cajaCheck{
    display: inline-flex;
    height: 80px;
    width: 100%;
    align-items: center;
    justify-content: space-evenly;
    border-radius: 5px;
    padding: 10px 10px;
  }

  .cajaCheck .option{
    background: #fff;
    height: 80%;
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    margin: 0 10px;
    border-radius: 5px;
    cursor: pointer;
    padding: 0 10px;
    border: 2px solid lightgrey;
    transition: all 0.3s ease;
  }
  .cajaCheck .option .dot{
    height: 20px;
    width: 20px;
    background: #d9d9d9;
    border-radius: 50%;
    position: relative;
  }
  .cajaCheck .option .dot::before{
    position: absolute;
    content: "";
    top: 4px;
    left: 4px;
    width: 12px;
    height: 12px;
    background: #069e2d;
    border-radius: 50%;
    opacity: 0;
    transform: scale(1.5);
    transition: all 0.3s ease;
  }
  .radioCajaCheck{
    display: none;
  } 
  
  .labelCheckNew{
    font-size: 1rem;
    line-height: 1.1;
    display: grid;
    grid-template-columns: 1em auto;
    gap: 0.5em;
  }
  
  .checkNew{
    -webkit-appearance: none;
    -moz-appearance: none;
         appearance: none;
    margin: 0;
    font: inherit;
    color: currentColor;
    width: 1.15em;
    height: 1.15em;
    border: 0.15em solid #069e2d;
    border-radius: 0.15em;
    transform: translateY(-0.075em);
    display: grid;
    place-content: center;
  }
  
  .checkNew::before {
    content: "";
    width: 0.65em;
    height: 0.65em;
    transform: scale(0);
    transform-origin: bottom left;
    transition: 80ms transform ease-in-out;
    box-shadow: inset 1em 1em #069e2d;
    background-color: CanvasText;
  }
  
  .checkNew:checked::before {
    transform: scale(1);
  }

  .checkbox {
    margin: 15px;
  }
  
  .listChecks {
    list-style-type: none;
  }
  

  
  @keyframes pop {
    0% {
      opacity: 0;
    }
    75% {
      opacity: 1;
    }
    100% {
      transform: scale(1.2);
    }
  }
  
