.btn-standalone {
    max-width: 280px;
    display: block;
    margin: auto;

    font-size: 28px;
    font-weight: 700;
    line-height: 32px;
}

.bffm-modal--backdrop {
    display: none;

    position: fixed;
    top: 0; right: 0; left: 0; bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 9998;
}

.bffm-modal {
    display: none;

    width: 80vw;
    height: 80vh;
    min-width: 600px;

    position: fixed;
    left: 50%;
    top: calc(50% - 40vh);
    padding: 68px 20px 20px;

    border-radius: 10px;
    background-color: var(--primary);
    transform: translate(-50%);

    z-index: 9999;
}

.bffm-modal .bffm-modal--close {
    position: absolute;
    top: 0; right: 20px;

    font-size: 45px;
    color: #fff;

    z-index: 20;
    cursor: pointer;
}

.bffm-modal .bffm-modal--content {
    position: relative;

    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;
    background-color: #fff;
}

.bffm-modal .bffm-modal--content .bffm-modal--content_inner {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: auto;
}

.bffm-modal .bffm-modal--content .bffm-modal--content_inner iframe {
    border-radius: 10px;
}

.bffm-modal .bffm-modal--loader {
    display: none;
    position: absolute;
    z-index: 99;
}

.bffm-modal.is-loading .bffm-modal--loader {
    display: block;
}

.bffm-modal .bffm-modal--loader span {
    display: block;

    font-size: 18px;
    font-weight: 700;
    color: var(--secondary);
    text-align: center;
}

.bffm-modal .bffm-modal--loader figure {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 10px;
}

.bffm-modal .bffm-modal--loader figure div {
    position: absolute;
    border: 4px solid var(--secondary);
    opacity: 1;
    border-radius: 50%;
    animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.bffm-modal .bffm-modal--loader figure div:nth-child(2) {
    animation-delay: -0.5s;
}

.bffm-modal .bffm-modal--content_inner > form {
    font-size: 0;
}

.bffm-modal .bffm-modal--content_inner input[type="submit"],
.bffm-modal .bffm-modal--content_inner .fileuploader {
    font-size: 16px;
}

.fileuploader-popup {
    z-index: 99999;
}

.fileuploader-items .fileuploader-item .fileuploader-action.fileuploader-action-remove:after {
    content: '×';
    font-size: 16px;
    color: #fff;
}

@keyframes lds-ripple {

    0% {
        top: 36px;
        left: 36px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0;
        left: 0;
        width: 72px;
        height: 72px;
        opacity: 0;
    }
}

@media only screen and (max-width: 1024px) {

    .bffm-modal {
        min-width: 0;
        left: 10px;
        right: 10px;
        transform: none;
        top: 40px;
        width: auto;
    }
}