/* Modal */

#contacto-form .form-actions {
	position: relative;
}

span#loader {
    position: absolute;
    left: 10px;
    /* top: 50%; */
top: 11px;
    width: 45px;
    height: 45px;
	padding: 11px;
    animation: spin .5s infinite linear;
    transform: translateY(-50%);
}
.modal-login__btn-login .loader {
    position: absolute;

}

@keyframes spin {
    100% {
      transform: rotate(360deg);
    }
  }

.hidden {
    display: none;
  }
  
  .fm-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
  }
  
  .fm-modal__content {
    position: relative;
    width: 400px;
    margin: 100px auto;
    background-color: #fff;
    border-radius: 30px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 2;
    animation: fadeInTop 0.4s cubic-bezier(0.87, 0, 0.13, 1) forwards;
    animation-delay: 0.2s;
    opacity: 0;
  }
  
  .fm-modal__header {
    display: flex;
    align-items: center;
    padding: 16px;
  }
  
  .fm-modal__title {
      text-align: center;
      font-family: 'Montserrat';
      font-weight: 500;
      color: #333;
      font-size: 1.5rem;
      margin: 0 0 15px;
  }
  .fm-modal__close {
    margin-left: auto;
    padding: 8px;
    border: none;
    background-color: transparent;
    cursor: pointer;
  }
  
  .fm-modal__body {
  padding: 0 25px 25px;
  text-align: center;
  }
  
  .fm-modal__footer {
    display: flex;
    justify-content: flex-end;
    padding: 16px;
  }
  
  .fm-modal__overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
  }
  #fm-modal__close {
    background: #e11a1d;
    border: none;
    border-radius: 200px;
    color: #fff;
    font-size: 1rem;
    width: 100%;
  }
  div.fm-modal__close {
      position: absolute;
      right: 10px;
      background: #e6e6e6 !important;
      border: #abc;
      width: 40px !important;
      height: 40px !important;
      border-radius: 200px !important;
      padding: 12px 10px;
      color: #999;
      top: 10px;
  }
  #error-message {
    color: #d0922c;
    margin-top: 10px;
    display: block;
    border: 2px solid #ecd799;
    background: #eee8cd;
    padding: 10px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
  }
  #lottie-animation {
  width: 35%;
      margin: 00 auto;
      position: relative;
      top: 10px;
  }
  @keyframes fadeInLeft {
    from {
      opacity: 0;
      transform: translateX(-50px); /* Empuja el elemento desde la izquierda */
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  @keyframes fadeInRight {
    from {
      opacity: 0;
      transform: translateX(50px); /* Empuja el elemento desde la izquierda */
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  @keyframes fadeInBottom {
    from {
      opacity: 0;
      transform: translateY(-50px); /* Empuja el elemento desde la izquierda */
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  @keyframes fadeInTop {
    from {
      opacity: 0;
      transform: translateY(50px); /* Empuja el elemento desde la izquierda */
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  