/* Warning START */
.notice-dialog-content-fixed {
	position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #fefefe !important;
    padding-top: 5px !important;
	padding-bottom: 5px !important;
    border-bottom: 2px solid #ef0000 !important;
    text-align: center !important;
    z-index: 2147483647 !important;
    visibility: visible !important;
    opacity: 1 !important;
	animation: slideDown 0.3s ease-out;
} 
.notice-dialog-content {
    background-color: #fefefe !important;
	min-height:100px;
	padding-top: 10px !important;
    border: 2px solid #ef0000 !important;
    border-radius: 8px !important;
    text-align: center !important;
    z-index: 2147483647 !important;
    visibility: visible !important;
    opacity: 1 !important;
}
.notice-dialog-content-modal-content {
    position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background-color: #fff;
            padding: 20px;
            border-radius: 5px;
            text-align: center;
            max-width: 500px;
            width: 90%;border: 2px solid #ef0000 !important;
}
.notice-button {
            background-color: #4CAF50;
            color: white;
            border: none;
            padding: 10px 20px;
            text-align: center;
            text-decoration: none;
            display: inline-block;
            font-size: 16px;
            margin: 4px 2px;
            cursor: pointer;
            border-radius: 4px;
        }
#notice-dialog-content-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7);
	z-index: 2147483647;
}
.notice-dialog-content h2 {
    color:#ef0000 !important;
	font-weight:bold !important;
	font-size:3em !important;
	margin-top:2px !important;
}
.notice-dialog-content-modal-content h2 {
    color:#ef0000 !important;
	font-weight:bold !important;
	font-size:3em !important;
	margin-top:2px !important;
}
.notice-dialog-content-fixed h2 {
    color:#ef0000 !important;
	font-weight:bold !important;
	font-size:2.4em !important;
	line-height:1.6em;
	margin-top:2px !important;
}
/* 
.notice-dialog-content-fixed h2 i.fa-exclamation-triangle, .notice-dialog-content h2 i.fa-exclamation-triangle {
    animation: spinHorizontal .8s infinite linear;
}

@keyframes spinHorizontal {
	0% { 
        transform: rotateY(0deg); 
	}
    100% {
        transform: rotateY(360deg);
    }
}
 */
.notice-dialog-content p {
    font-size:1.2em !important;
	font-weight:bold !important;
	color: #000000 !important;
	margin-top:1em !important;
}
.notice-dialog-content-modal-content p {
    font-size:1.2em !important;
	font-weight:bold !important;
	color: #000000 !important;
	margin-top:1em !important;
}
.logintextedheader {
	min-height:120px;
	margin-top: 15px !important;
	background: url("./images/loadgo.gif") no-repeat center 30%;
}
@keyframes slideDown {
            from {
                transform: translateY(-100%);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }
/* Warning END */