/* pop-up styles */

/* backgroundstyle */
.noticeBG {
	/* hide the DIV initially */
	display:none;
	background: rgba(0, 0, 0, 0.4);
	/* background-color: #000000; */
	position:fixed; 
	left: 0px;
	top: 0px;	
	width:0%;
	height:0%;
	z-index:10000; /* tip: above nav */
	padding:0;
	margin:0;
	
}
/* popup box div-styles*/

.cookieNotice *{	
	box-sizing: border-box;
}
.cookieNotice {
	display:none;
	position:fixed;  
	height:auto; /* 300px; */
	width:100%;  
	background-color:#f2f2f2;  
	z-index:10001; /* note: above nav */
	/* additional features (optional styling) */
	/* border:3px solid #2E4473;        */
	font-size:15px; 
	font-family: Arial, Tahoma, Sans-serif;		
	-moz-box-shadow: 0 0 10px #000000;
	-webkit-box-shadow: 0 0 10px #000000;
	box-shadow: 0 0 10px #000000;	
	/* 
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;   
	*/
}	

.noticeTitle{
	display: table;
	width:100%;
	background:#005480;
	padding:10px;
	/* text-align:right; */
	color:#ffffff;
	font-size: 16px;
	font-weight:bold;
	text-align:center;
}

.noticeTitle h1, .noticeTitle h2{
	display:inline-block;	
}
.noticeTitle h2{
	padding:0;
	margin:0;
	font-size: 16px;
	color: #fff;
}

/* This is for the positioning of the Close Link */
.closeBtn {
	font-size:20px;  
	/*
	right:5px;  
	top:5px;  
	position:absolute;  
	*/	
	color:#ffffff;  
	font-weight:500;  
	cursor: pointer; 
	text-decoration:none; 
	float:right;
	
}

.colorBar{
	height:5px !important;
}
.colorBar img{
	width:100%;
	display:block;
	height: 5px;
}

#textContainer{
	margin:0 auto;
	text-align:center;
}
.noticeBody{
	padding:10px 15px;
}

.noticeBody h1, .noticeBody h2, .noticeBody h3{
	font-family: Sans-Serif!important;
	color: #A30234;
}


.noticeBody .btn{
    display: table;
    padding: 6px 12px;
    /* margin-bottom: 0; */
	margin: 0 auto;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
    
    color: #333;
    background-color: #fff;
    border-color: #ccc;
}

.noticeBody .btn:hover{
    color: #333;
    background-color: #e6e6e6;
    border-color: #adadad;
}
