﻿.modalDialog {
    position: fixed;
    top: -45px;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 99999;
    opacity: 0;
    pointer-events: none;
    
}
.modalBackground {
    animation: fadein 0.8s;
}


.modalDialog:target {
    opacity: 1;
    pointer-events: auto;
}

.modalDialog > div {
    max-width: 800px;
    position: relative;
    margin: 10% auto;
    padding: 10px 20px 13px 20px;
    background: #fff;
}

.modalDialog h3 {
    font-weight: 500;
}

.modalDialog .content {
    padding-left: 20px;
    padding-right: 20px;
    max-height: 300px;
    overflow: auto;
}

.popupContent {
    font-size: 16px !important;
}

.text-center {
    text-align: center;
}

.margin-top-15 {
    margin-top: 15px;
}

.display-none {
    display: none;
}

/*popup animiation*/
@keyframes fadein {
    from {
        opacity: 0;
        transform: translate3d(0, -50%, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}
