﻿/* ZV ECS-33359 4/26/2019 Adding Evolv modal styling based on UX demo. */
.evolv-modal-wrapper {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    display: none;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    outline: 0;
    overflow-y: auto;
    overflow-x: hidden;
    transition: opacity .15s linear;
    opacity: 0;
    -webkit-transition: opacity .15s linear;
    transition: opacity .15s linear;
    text-align:center;
}

.evolv-modal-dialog{
    margin:30px auto;
    display:inline-block;
}

.evolv-modal-content {
    background-color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,.5);
    border:1px solid black;
    text-align:left;
}

.evolv-modal-header {
    background-color: #003A5D;
    font-size:25px;
    color:white;
    padding:4px;
    text-align:center;
}

.evolv-modal-body{
    padding:15px;
}

.evolv-modal-footer{
    padding:15px;
    text-align:right;
}

.evolv-modal-button {
    min-width: 120px;
    color: white !important;
    background-color: #003a5d;
    border-radius: 20px;
    padding: 0px 8px;
    margin-left: 8px;
    cursor:pointer;
}

.evolv-modal-button:hover{
    text-decoration:none !important;
}

.evolv-modal-backdrop{
    background-color:black;
    z-index:1049;
    top:0;
    bottom:0;
    right:0;
    left:0;
    position:fixed;
    opacity:.5;
}