.menta-modal-backdrop {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.75);
    display: none;
    z-index: 10;
}

.menta-modal-close {
    float: right;
    top: 0;
    color: #FFF;
    padding: .5em;
    font-size: 2em;
    width: auto;
}

.menta-modal {
    max-width: 780px;
    max-height: 90vh;
    width: 90%;
    text-align: center;
    margin: auto auto auto 0;
    padding: 1rem;
    background: #FFF;
    box-shadow: 0 0 20px #FFF;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: auto;
}