@charset "UTF-8";

#overlay{
	position:fixed;
	z-index:100;
	top:0;
	left:0;
	height:100%;
	width:100%;
	background:#222;
	opacity:0.7;
}
.modal {
	position:fixed;
	display:none;
	z-index:9999;
	top: 25%;
	left: 50%;
	transform: translate(-50%, -15%);
	width:80%;
	height:80%;
	overflow-y:auto;
	
	font-size:0.9em;
	padding:10px 15px;
	text-align:center;
	background:#fafafa;
	border-radius: 15px;
}
.modal p{
	text-align:left;
	line-height:1.2em;
	padding:0 0 0 10px;
	margin:5px 5px 5px 10px;
}

#termbox{
	text-align:left;
	height:65%;
	overflow-y:scroll;
	margin:10px;
	padding:10px 3px;
	border: solid 1px #aaa;
	border-radius: 5px;
}
#termbox .title{
	padding-left:1em;
	font-weight:bold;
}
#termbox .caption{
	text-align:right;
}
#termbox ul{
	padding:0em;
	list-style-type:none;
}
#termbox li{
	padding-left:2em;
	text-indent:-1em;
}
#termbox li:first-child{
	font-weight:bold;
}

#resbox{
	padding:10px;
}
.close_modal{
	user-select: none;
	cursor:pointer;
	border: solid 1px #555;
	width: 7em;
	display:inline-block;
	padding:5px;
	margin-left:10px;
	margin-right:40px;
	font-size:1.2em;
	font-weight:bold;
	color:#ffffff;
	/*background-color:#005bac;*/
	background-color:#3498db;
}
.close_modal:hover{
	opacity:0.9;
}
.close_modal:active{
	opacity:0.7;
}

.reject_modal{
	user-select: none;
	cursor:pointer;
	border: solid 1px #555;
	width: 7em;
	display:inline-block;
	padding:5px;
	font-size:1.2em;
	font-weight:bold;
	color:#ffffff;
	background-color:#555555;
}
.reject_modal:hover{
	opacity:0.9;
}
.reject_modal:active{
	opacity:0.7;
}

.remove_cookie{
	user-select: none;
	text-align:center;
	cursor:pointer;
	border: solid 1px #555;
	float: left;
	padding:5px 15px;
	margin-left:20px;
	background:#fff;
	border: solid 1px #555;
	border-radius: 15px;
}
.remove_cookie:active{
	opacity:0.7;
}

.bread{
	padding:1px;
	background-color:#fafafa;
	border-bottom:solid 1px #e1e1e1;
}
.bread, .bread a{
	color:#888;
}
.bread a:hover{
	color:#52BAD5;
}
.bread ol{
	padding:0 1em;
	margin:0.5em;
}
.bread ol li{
	font-size:0.8em;
	color:#555;
	font-weight:bold;
	display: inline;
	list-style-type: none;
	padding-left:0.5em;
}
.bread ol li:after{
	padding-left:0.5em;
	content:" > ";
}
.bread ol li:last-child:after {
	content:"";
}

#seal{
	display:absolute;
	text-align:right;
	padding-right:5px;
	margin-top:-75px;
	opacity:0.8;
}
#seal img{
	border:none;
	width:80px;
}
.button{
	position:relative;
	z-index:1000;
}

@media screen and (max-width: 768px) {
	.modal {
		top: 15%!important;
		left: 50%!important;
		transform: translate(-50%, -15%)!important;
		width:85%!important;
		height:95%!important;
		padding:10px 5px!important;
	}
	#termbox{
		height:52%!important;
	}
	.close_modal{
		height: auto!important;
		width: 95%!important;
		margin: 0 0 15px 0!important;
	}
	.reject_modal{
		height: auto!important;
		width: 95%!important;
		margin: 0 0 15px 0!important;
	}
}
