.vm-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #00000080
}

.vm-wrapper {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0
}

.vm {
    position: relative;
    margin: 0 auto;
    width: calc(100% - 20px);
    min-width: 110px;
    max-width: 670px;
    background-color: rgb(0, 0, 0);
    top: 0px;
    cursor: default;
    box-shadow: 0 5px 15px #00000080
}

.vm-titlebar {
    padding: 10px 15px;
    overflow: auto;
    border-bottom: 1px solid #9c0000
}

.vm-title {
    margin-top: 2px;
    margin-bottom: 0;
    display: inline-block;
    font-size: 18px;
    font-weight: 400
}

.vm-btn-close {
    color: #ccc;
    padding: 0;
    cursor: pointer;
    background: 0 0;
    border: 0;
    float: right;
    font-size: 24px;
    line-height: 1em
}

.vm-btn-close:before {
    content: "\d7";
    font-family: Arial
}

.vm-btn-close:hover,
.vm-btn-close:focus,
.vm-btn-close:focus:hover {
    color: #bbb;
    border-color: transparent;
    background-color: transparent
}

.vm-content {
    padding: 10px 15px 15px
}

.vm-content .full-hr {
    width: auto;
    border: 0;
    border-top: 1px solid #e5e5e5;
    margin: 15px -14px
}

.vm-fadeIn {
    -webkit-animation-name: vm-fadeIn;
    animation-name: vm-fadeIn
}

@keyframes vm-fadeIn {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.vm-fadeOut {
    -webkit-animation-name: vm-fadeOut;
    animation-name: vm-fadeOut
}

@keyframes vm-fadeOut {
    0% {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

.vm-fadeIn,
.vm-fadeOut {
    -webkit-animation-duration: .25s;
    animation-duration: .25s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}