﻿.cssNotificationManager
{
	font-family: "Segoe UI",Arial,Helvetica,sans-serif !important;
	font-size: 16px;
	display: none;
	box-shadow: 1px 1px 7px 1px rgba(128,128,128,.2);
	z-index: 99999999999999999 !important;
}

.cssNotificationManagerDivNotification
{
	font-family: "Segoe UI",Arial,Helvetica,sans-serif !important;
	font-size: 16px;
	color: #000;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	z-index: 9999999;
	cursor: pointer;
	overflow-y: auto;
	display: flex;
	justify-content: center;
	min-height: 48px;
	padding: 5px;
	display: none;
	border-radius: 10px;
	text-align: center;
}

@media only screen and (max-width: 800px) {
    .cssNotificationManagerDivNotification {
        width: Calc(100% - 30px);
    }
}

@media only screen and (min-width: 801px) {
    .cssNotificationManagerDivNotification {
        min-width: 500px;
    }
}

.cssNotificationManagerDivTitleWindow {
    padding: 5px;
    padding-top: 0px;
    text-align: center;
    background-color: #51B3E1;
    color: #FFF;
    font-size: 24px;
}

.cssNotificationManagerTitleColored {
    color: #51B3E1;
    padding-bottom: 3px;
}

.cssNotificationManagerDivTitleContent
{
	padding: 5px;
	height: calc(100% - 100px);
	overflow-y: auto;
}

.cssNotificationManagerCloseButton {
    padding: 8px;
    background-color: #FFF;
    box-shadow: none;
    border: solid 1px #CCC;
    font-size: 16px;
    float: right;
    cursor: pointer;
    position: absolute;
    right: 6px;
    bottom: 7px;
}