﻿/*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: 50vh;
    max-height: 80vh;
    /*overflow-y:auto;*/
    position: absolute;
    top: 10vh;
    width: 100%;
    -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;
}

.pop-up-content {
    max-height: 65vh;
    overflow-y: auto;
    padding-bottom: 25px;
    /*border: solid 1px red;*/
    /* Firefox */
    scrollbar-width: thin;
    /* IE/Edge Legacy */
    -ms-overflow-style: auto;
}

    /* Chrome, Edge, Safari */
    .pop-up-content::-webkit-scrollbar {
        width: 6px;
    }

    .pop-up-content::-webkit-scrollbar-track {
        background: transparent;
    }

    .pop-up-content::-webkit-scrollbar-thumb {
        border-radius: 10px;
    }

.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;
}



