/* Modal llamame ahora */
#callbackModal.callback-overlay {
  position: fixed;
 top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: none;
  align-items: center;
  justify-content: center;
background: rgba(0,0,0,.5);
  z-index: 999999;
}

#callbackModal.is-open {
  display: flex;
}

/* Modal box (mobile first) */
.modal-callback {
    position: relative;
    background: #fff;
    border-radius: 16px;

    width: calc(100% - 32px);
    padding: 28px 20px 24px;

    box-shadow: 0 10px 30px rgba(0,0,0,.25);
    text-align: center;
}

/* Desktop flotante */
@media (min-width: 768px) {
    .modal-callback {
        max-width: 360px;
        padding: 32px 24px;
    }
}

/* Close */
.modal-close {
    position: absolute;
    top: 14px;
    right: 14px;

    background: transparent;
    border: 0;
    font-size: 20px;
    cursor: pointer;
    color: #666;
}

/* Title */
.modal-title {
    margin: 0 0 24px;
    font-size: 22px;
    font-weight: 600;
    color: #019df4;
}

