.modal {
    backdrop-filter: blur(14px);
    background: rgba(0, 0, 0, 0.33);
    bottom: 0;
    display: none;
    height: 100%;
    left: 0;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    right: 0;
    top: 0;
    transition: all 0.3s;
    visibility: hidden;
    width: 100%;
    z-index: 999;
}

.modal--open {
    display: block;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.modal__content {
    box-shadow: 0 10px 38px 0 rgba(0, 0, 0, 0.15);
    background: #fff;
    left: 0;
    padding: 24px;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
}

.fa-close {
    font-size: 24px;
}

.modal-close {
    line-height: 40px;
    position: absolute;
    right: 0;
    text-align: center;
    top: 0;
    width: 40px;
    text-decoration: none;
    z-index: 999;
}

.Button.is-loading {
    cursor: progress;
    filter: brightness(0.85);
}

@media (min-width: 580px) {
    .modal__content {
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 70%;
        height: auto;
        max-height: 80%;
    }
}
