/*** Overlay Start Here ***/

.cms-overlay {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 999;
    -webkit-transition: .4s;
    transition: .4s all ease;
}

.cms-overlay .modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, .8);
}

.modal-pop {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 100;
}

.pop-body {
    height: 100%;
    display: flex;
    align-items: center;
}

.pop-inner {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    max-width: 982px;
    margin: 0 auto;
    background: #283d90;
    width: 90%;
    animation: slide-in 0.8s forwards;
    position: relative;
    box-shadow: 0 0px 10px 5px #fff;
    border-radius: 5px;
}

.pop-inner .banner-img img {
    border-radius: 5px;
}

.pop-close {
    position: absolute;
    padding: 8px;
    color: #fff;
    right: 0;
    top: 0;
}


/*** Overlay Ends Here ***/

@keyframes slide-in {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }
    50% {
        transform: translateY(-2%);
        opacity: .5;
    }
    100% {
        transform: initial;
    }
}