.contact-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 350px;
    z-index: 1000;
    color:#fff!important;
}

#contact-button {
  /*  background-color: #0c4672;*/
    background-color:darkred;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 50px;
}

#contact-button2 {
    background-color:darkred;
    color: white!important;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 50px;
}

#contact-button3 {
    background-color:darkred;
    color: white!important;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 50px;
}
#contact-button5 {
  background:none!important;
  border:none!important;
  min-width: 100%;
  min-height: 100%;
}
#contact-buttonRT {
    background-color:darkred;
    color: white!important;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 50px;
}

#contact-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    background-color: rgba(255, 40, 0, 0.8)!important;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: 10px;
    animation: slideIn 0.3s ease-out forwards;
}

.show {
    display: block!important;
}

.hidden {
    display: none!important;
}

#contact-form h3 {
    margin-top: 0;
}

#contact-form button[type="submit"] {
    background-color:darkred;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 5px;
}

#close-button {
    background-color: #c6c6c6;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 50px;
    justify-self: end;
}

@keyframes slideIn{
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

/* BOTON SALTAR */
.boton-saltando {
    display: inline-block;
/*    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px; */
    cursor: pointer;
/*    font-size: 16px; */
    animation: saltar 1s infinite;
  }

  @keyframes saltar {
        0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
      }
      40% {
        transform: translateY(-20px);
        }
      60% {
        transform: translateY(-10px);
       }
    }
