.elementor-98 .elementor-element.elementor-element-bc9b312{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-5066578 */.nodo-check{
    height: 10vh;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5%;
}

@keyframes floatUpDown {
  0%, 100% {
    transform: translateY(-5px);
  }
  50% {
    transform: translateY(0px);
  }
}

@keyframes floatUpDownMobile {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-5px);
  }
}

.nodo-check input{
    padding:1px;
    color: black;
    min-height: 70px;
    max-width: 70px;
    border:4px solid black;
    border-radius: 13px;
    text-transform: uppercase;
    text-align: center;
    transition: all 1s ease;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    font-weight: 700;
    font-size: 2em;
}

.nodo-check input:hover {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
    transform: translateY(-5px);
}
.nodo-check input:focus{
    color:orange;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
    border: 4px solid orange;
    animation: floatUpDown 2.5s ease-in-out infinite;
}

#button-container{
    justify-content: center;
}

#mi-boton{
    opacity: 0;
    transition: all 1.5s ease;
}

/* Animación suave */
.fade-out {
  opacity: 0;
  transition: opacity 1.5s ease;
}

@media (max-width: 480px) {
  .nodo-check input{
    min-height: 50px;
    max-width: 50px;
    font-size:1.7em;
    border:3.5px solid black;
    border-radius: 10px;
  }
  
  .nodo-check input:focus{
    border: 3.5px solid orange;
    animation: floatUpDownMobile 2.5s ease-in-out infinite;
  }
}/* End custom CSS */