.vue-modal {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index:100;
    position:fixed;
    top:0px;
    left:0;
    width:100vw;
    height:100vh;
    background:rgba(0,0,0,0.7);
    backdrop-filter: blur(4px);
}


@media (max-width: 430px) {

    .vue-modal-container {
        height: 100%;
    }
}

.vue-modal-container {
    position: relative;
    margin-top: 80px;
    max-width: 800px;
    background:rgba(255,255,255,1);
    max-height:calc(100vh - 80px);
    overflow:auto;
}

.vue-modal-content {
    padding:0 20px 20px 20px;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.75;
    font-family: "Montserrat";
    color: black;
    /* margin-bottom: 30px; */
    /* position:relative; */
}

.vue-modal-close {
    cursor:pointer;
    font-family: Montserrat;
    font-size: 40px;
    font-weight: lighter;
    color:#ccc;
    top:0;
    height: 36px;
    padding-right:12px;
    position:sticky;
    text-align:right;
}