.fpm-modal {
    position: fixed;
    width: 100vw;
    height: 100vh;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fpm-title {
    color: #5d727e;
    text-align: left;
    text-shadow: 0 0 0 rgb(2 2 2 / 23%);
    font-family: inherit;
    font-weight: 100;
    font-size: 32px;
    text-transform: uppercase;
    line-height: 36px;
    margin-bottom: 0.5em;
}
.fpm-modal.fpm-open {
    visibility: visible;
    opacity: 1;
    transition-delay: 0s;
}
.fpm-modal-bg {
    position: absolute;
    background-color: rgba(10,0,0,.7);
    width: 100%;
    height: 100%;
}
.fpm-modal-container {
    border-radius: 10px;
    background: #fff;
    position: relative;
    padding: 30px;
    padding: 35px;
    border-radius: 3px;
    border: 5px none #f7901e;
    box-shadow: 0 0 30px 0 rgb(2 2 2);
    background-color: rgba(255,255,255,1);
    width: 95%;
    overflow: auto;
    max-height: 90vh;
}
@media only screen and (min-width: 1024px) {
    .fpm-modal-container {
        width: 30%;
        min-width: 550px;
    }
}
.fpm-modal-close {
    position: absolute;
    height: 25px;
    width: 25px;
    left: auto;
    right: 2px;
    bottom: auto;
    top: 2px;
    padding: 0;
    color: #fff;
    font-family: inherit;
    font-weight: 100;
    font-size: 18px;
    line-height: 0;
    border: 0 solid #fff;
    border-radius: 2px;
    box-shadow: 0 0 15px 1px rgb(2 2 2 / 0%);
    text-shadow: 0 0 0 rgb(0 0 0 / 23%);
    background-color: rgba(114,114,114,.64);
}
