﻿/*Pop Up Notificatio Control*/
@import url('notification.css');
.pop-up {
    background-color: rgba(0, 0, 0, 0.4);
    height: 100vh;
    opacity: 1;
    position: fixed;
    top: 0;
    width: 100vw;
    z-index: 999;
}

.pop-up-bg {
    background-color: #fff;
    min-height: 80vh;
    position: absolute;
    top: 10vh;
    left: 5%;
    width: 90%;
    -webkit-box-shadow: 5px 5px 20px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 5px 5px 20px 0px rgba(0,0,0,0.75);
    box-shadow: 5px 5px 20px 0px rgba(0,0,0,0.75);
    transition: .5s ease;
    padding: 25px;
    z-index: 100;
}

    .pop-up-bg .ButtonTurquoise {
        bottom: 50px;
        left: 8%;
        position: absolute;
    }

.pop-up-close {
    opacity: 0;
    z-index: -1;
    transition: .5s ease;
}

.pop-up-close-btn {
    background-color: #000;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: inline;
    padding: 10px 15px;
    position: absolute;
    right: -20px;
    top: -20px;
}
.pop-up .logo {
    position: absolute;
    left: 85%;
    bottom: 10px;
}
.pop-up .logo img {
    max-width: 50px;
}

.notificationWrap
{
    max-height:70vh;
    overflow-y:auto;
    overflow-x:hidden;
}

@media screen and (min-width: 768px) {
    .pop-up-bg {
        width: 60%;
        left: 33%;
    }
}
@media screen and (min-width: 992px) {
    .pop-up-bg {
        width: 50%;
        left: 25%;
    }
}