﻿.modalv-mask {
    position: fixed;
    z-index: 9998;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .5);
    display: none;
    transition: opacity .3s ease;
   
}

.modalv-wrapper {
    display: table-cell;
    vertical-align: middle;
}

.modalv-container {
    /*width: 650px;*/
    margin: 0px auto;
    padding: 20px 30px;
    background-color: #fff;
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .33);
    transition: all .3s ease;
    font-family: Helvetica, Arial, sans-serif;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    max-width:45%;
}

.modalv-header h3 {
    margin-top: 0;
    color: #000000;
    font-size:12px;
}

.modalv-body {
    margin: 20px 0;
}

.modalv-default-button {
    float: right;
}

/*
 * The following styles are auto-applied to elements with
 * transition="modal" when their visibility is toggled
 * by Vue.js.
 *
 * You can easily play with the modal transition by editing
 * these styles.
 */

.modalv-enter {
    opacity: 0;
}

.modalv-leave-active {
    opacity: 0;
}

    .modalv-enter .modalv-container,
    .modalv-leave-active .modalv-container {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
