﻿/*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: 99;
}

.pop-up-bg {
    background-color: #fff;
    min-height: 50vh;
    position: absolute;
    top: 25vh;
    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;

    background-image: url(/ckfinder/userfiles/images/home/bg-smiley.png);
    background-position: bottom right;
    background-repeat: no-repeat;
    background-size: auto;
}

    .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;
}

