.notyTheme {
            overflow: hidden;
            border: 1px solid #fff;
            box-shadow: 2px 3px 5px rgba(0, 0, 0, 0.1);
            position: relative;
        }

.notyTheme.noty_container_type_alert {
	background-color: #f5f5f5;
}

.notyTheme.noty_container_type_information {
	background-color: #5286DF;
	color: #fff;
}

.notyTheme.noty_container_type_error {
	background-color: #FE0101;
	color: #fff;
	font-weight: bold
}

.notyTheme.noty_container_type_warning {
	background-color: #F6EB50;
	color: #ACA53C
}

.notyTheme.noty_container_type_success {
	background-color: #8CC63E;
	color: #FFFFFF;
}

.notyTheme .noty_message {
	padding: 10px 20px;
}

.notyTheme .noty_close {
	position: absolute;
	top: 4px;
	right: 4px;
	width: 10px;
	height: 10px;
	visibility: hidden;
	opacity: 0.5;
	cursor: pointer;
}

.notyTheme:hover > .noty_bar > .noty_message > .noty_close {
	visibility: visible;
}

.noty_modal.notyTheme {
	position: fixed;
	width: 100%;
	height: 100%;
	background-color: #000;
	z-index: 10000;
	opacity: 0.6;
	display: none;
	border: none;
	left: 0;
	top: 0
}