/*---BEGIN: GALLERY---*/
div.gallery{
	box-sizing: border-box;
	display: none;
	position: fixed;
	left: 0px;
	top: 0px;
	z-index: 1000;
	background-color: rgba(0,0,0, 0.7);
	width: 100%;
	height: 100%;
	color: #ffffff;
	/*padding: 10px;*/
}

div.gallery_next span, div.gallery_previous span{
	display: inline-block;
	position: absolute;
	background-color: rgba(0,0,0, 0.6);
	
	top: calc(50% - 150px/2);
	width: 100px;
	height: 150px;
	text-align: center;
}

div.gallery_next span{
	right: 0px;
}

div.gallery_previous span{
	left: 0px;
}

div.gallery_next, div.gallery_previous{
	position: absolute;
	/*background-color: rgba(200,0,0, 0.6);*/
	
	top: 10%;
	width: calc(50% - 20px);
	height: calc( 100% - 20px );
	text-align: center;
}

div.gallery_previous img, div.gallery_next img{
	display: inline-block;
	width: 27px;
	height: 37px;
	
	position: absolute;
	left: calc(100px/2 - 27px/2);
	top: calc(150px/2 - 37px/2);
}

div.gallery_next{
	right: 5px;
}

div.gallery_previous{
	left: 5px;
}

div.gallery_close{
	position: absolute;
	cursor: pointer;
	right: 10px;
	top: 10px;
	width: 100px;
	height: 100px;
	background-color: rgba(0,0,0, 0.6);
}

div.gallery_close img{
	display: inline-block;
	width: 27px;
	height: 37px;
	
	position: absolute;
	left: calc(100px/2 - 27px/2);
	top: calc(100px/2 - 37px/2);
}

img.gallery_img{
	/*box-sizing: border-box;*/
	/*margin: 10px;*/
	object-fit: contain;
	position: absolute;
	left: 5%;
	top: 5%;
	width: 90%;
	height: 90%;
}
/*---END: GALLERY---*/


/*---BEGIN: PANEL---*/
div.panel{
	display: block;
	
	min-height: 500px;
	height: 100%;
	
	border: 1px solid white;
}

div.tab_panel{
	/*background-color: rgba(200, 100, 0, 0.4);*/
	
	height: 100%;
}

div.tab_panel_active{
	/*background-color: green;*/
}

div.panel_header_all{
	/*background-color: blue;*/
	/*float: left;*/
}

div.panel_header_all table{
	width: 100%;
}

div.panel_header_all table tr td.panel_header,
div.panel_header_all table tr td.panel_header_active{
	width: 150px;
	padding: 5px;
	padding-bottom: 10px;
	padding-top: 10px;
	font-size: 120%;
	cursor: pointer;
	text-align: center;
}

div.panel_header_all table tr td.panel_header{
	background-color: black;
}

div.panel_header_all table tr td.panel_header_active{
	background-color: red;
}


div.panel_header, div.panel_header_active{
	padding: 5px;
	padding-bottom: 10px;
	padding-top: 10px;
}

div.panel_header_active{
	display: inline-block;
	cursor: pointer;
	/*background-color: green;*/
}

div.panel_res{
	display: inline-block;
	/*float: right;
	overflow: hidden;
	clear: both;*/
	
	background-color: red;
}

div.panel_header{
	display: inline-block;
	cursor: pointer;
	background-color: #909090;
	color: #404040;
}

div.panel_header:HOVER{
	color: #a0a0a0;
}

/*---END: PANEL---*/



/*---BEGIN: DEBUG---*/
div.debug{
	display: inline-block;
	position: fixed;
	z-index: 1000;
	top: 0px;
	left: 0px;
	
	background-color: rgba(0,0,0, 0.7);
}

div.debug table tr th{
	color: #ff0066;
	text-align: right;
}

div.debug table tr td{
	color: #3399ff;
	text-align: left;
}

div#debug_info_sql{
	display: none;
	position: absolute;
	top: 100%;
	left: 0px;
	height: auto;
	max-height: calc(100vh - 100%);
	
	padding: 10px;
	background-color: rgba(50,50,50, 0.7);
	overflow: auto;
}

div#debug_info_sql div.debug_info_sql_r0, div#debug_info_sql div.debug_info_sql_r1{
	padding: 5px;
}

div#debug_info_sql div.debug_info_sql_r0{
	background-color: #004d99;
}

div#debug_info_sql div.debug_info_sql_r1{
	background-color: #001a33;
}

/*---END: DEBUG---*/



/*---BEGIN: FRAME SEXATLAS---*/
.frame_s1{
	padding: 10px;
	background-image: 
		url('/img/theme/old/strona-wejsciowa-pasekpoziomwycinek.png'), 
		url('/img/theme/old/strona-wejsciowa-pasekpoziomwycinek.png'),
		url('/img/theme/old/strona-wejsciowa-pasekpoziomwycinek.png');
		
	background-position: 0px 0px, right 0px bottom 0px, center;
	background-repeat: repeat-x, repeat-x, repeat-x;
	
	background-size: 100% 3px, 100% 3px, 100% calc(100% - 4*3px);
}

div.frame{
	width: auto;
	display: inline-block;
	
	background-image: 
		url('/img/theme/old/strona-wejsciowa-pasekpoziomwycinek.png'), 
		url('/img/theme/old/strona-wejsciowa-pasekpoziomwycinek.png');
	background-position: 0px 0px, right 0px bottom 0px;
	background-repeat: repeat-x, repeat-x;
	background-size: 100% 3px, 100% 3px;
	
	padding-top: 5px;
	padding-bottom: 5px;
	border: none;
}

div.frame_top{
	background-color: #005966;
	height: 2px;
	width: 100%;
	margin-bottom: 2px;
}

div.frame_middle{
	background-color: #005966;
}

div.frame_bottom{
	background-color: #005966;
	height: 2px;
	width: 100%;
	margin-top: 2px;
}
/*---END: FRAME SEXATLAS---*/

/*---BEGIN: BUTTON STANDARD 1---*/
a.button_s1, a.button_s1a{
	box-sizing: border-box;
	line-height: 200%;
	display: inline-block;
	
	
	background-color: #CC0000;
	background: url('/img/theme/old/elipsa 237-44.png'), -webkit-gradient(linear, left top, left bottom, from(#CC0000), to(#660000));
	background: url('/img/theme/old/elipsa 237-44.png'), -webkit-linear-gradient(top, #CC0000, #660000);
	background: url('/img/theme/old/elipsa 237-44.png'), -moz-linear-gradient(top, #CC0000, #660000);
	background: url('/img/theme/old/elipsa 237-44.png'), -ms-linear-gradient(top, #CC0000, #660000);
	background: url('/img/theme/old/elipsa 237-44.png'), -o-linear-gradient(top, #CC0000, #660000);
	background: url('/img/theme/old/elipsa 237-44.png'), linear-gradient(to top, #CC0000, #660000);
	background-size: contain;
	background-position: top;
	background-repeat: no-repeat;
	
	border: 1px #ffffff solid;
	
	text-shadow: 0 -1px 0 #396715;
	color: #ffffff;
	
	text-transform: uppercase;
	text-align: center;
	/*vertical-align: middle;*/
	
	box-shadow: 0px 0px 5px 1px rgba(255, 255, 255, 0.7);
	-moz-box-shadow: 0px 0px 5px 1px rgba(255, 255, 255, 0.7);
	-webkit-box-shadow: 0px 0px 5px 1px rgba(255, 255, 255, 0.7);
}

a.button_s1:HOVER, a.button_s1a:HOVER{
	color: #ffffff;
	text-shadow: 0 0 10px #ffffff;
	
	box-shadow: 0px 0px 5px 4px rgba(255, 255, 255, 0.7);
	-moz-box-shadow: 0px 0px 5px 4px rgba(255, 255, 255, 0.7);
	-webkit-box-shadow: 0px 0px 5px 4px rgba(255, 255, 255, 0.7);
}

a.button_s1{
	font-size: 15px;
	
	width: calc(2 * 1.618 * 30px);
	height: 30px;
	
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
}

a.button_s1a{
	
}
/*---END: BUTTON STANDARD 1---*/


/*---BEGIN: BUTTON STANDARD 2---*/
a.button_s2, a.button_s2a{
	box-sizing: border-box;
	line-height: 200%;
	display: inline-block;
	
	
	background-color: #CC0000;
	background: url('/img/theme/old/elipsa 237-44.png'), -webkit-gradient(linear, left top, left bottom, from(#CC0000), to(#660000));
	background: url('/img/theme/old/elipsa 237-44.png'), -webkit-linear-gradient(top, #CC0000, #660000);
	background: url('/img/theme/old/elipsa 237-44.png'), -moz-linear-gradient(top, #CC0000, #660000);
	background: url('/img/theme/old/elipsa 237-44.png'), -ms-linear-gradient(top, #CC0000, #660000);
	background: url('/img/theme/old/elipsa 237-44.png'), -o-linear-gradient(top, #CC0000, #660000);
	background: url('/img/theme/old/elipsa 237-44.png'), linear-gradient(to top, #CC0000, #660000);
	background-size: contain;
	background-position: top;
	background-repeat: no-repeat;
	
	border: 1px #ffffff solid;
	
	text-shadow: 0 -1px 0 #396715;
	color: #ffffff;
	
	text-transform: uppercase;
	text-align: center;
	/*vertical-align: middle;*/
	
	box-shadow: 0px 0px 5px 1px rgba(255, 255, 255, 0.7);
	-moz-box-shadow: 0px 0px 5px 1px rgba(255, 255, 255, 0.7);
	-webkit-box-shadow: 0px 0px 5px 1px rgba(255, 255, 255, 0.7);
}

a.button_s2:HOVER, a.button_s2a:HOVER{
	color: #ffffff;
	text-shadow: 0 0 10px #ffffff;
	
	box-shadow: 0px 0px 5px 4px rgba(255, 255, 255, 0.7);
	-moz-box-shadow: 0px 0px 5px 4px rgba(255, 255, 255, 0.7);
	-webkit-box-shadow: 0px 0px 5px 4px rgba(255, 255, 255, 0.7);
}

a.button_s2{
	font-size: 15px;
	
	width: calc(2 * 2 * 1.618 * 30px);
	height: calc(2 * 30px);
	
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
}

/*---END: BUTTON STANDARD 2---*/


/*---BEGIN: BUTTON STANDARD 3---*/
input[type="button"].s3, input[type="submit"].s3, button.s3{
	color: black;
	display: inline-block;
	margin: 5px;
	cursor: pointer;
	/*height: 40px;*/
	
	background-color: #CC0000;
	background: url('/img/theme/old/elipsa 237-44.png'), -webkit-gradient(linear, left top, left bottom, from(#CC0000), to(#660000));
	background: url('/img/theme/old/elipsa 237-44.png'), -webkit-linear-gradient(top, #CC0000, #660000);
	background: url('/img/theme/old/elipsa 237-44.png'), -moz-linear-gradient(top, #CC0000, #660000);
	background: url('/img/theme/old/elipsa 237-44.png'), -ms-linear-gradient(top, #CC0000, #660000);
	background: url('/img/theme/old/elipsa 237-44.png'), -o-linear-gradient(top, #CC0000, #660000);
	background: url('/img/theme/old/elipsa 237-44.png'), linear-gradient(to top, #CC0000, #660000);
	background-size: contain;
	background-position: top;
	background-repeat: no-repeat;
	
	border: 1px #ffffff solid;
	
	text-shadow: 0 -1px 0 #396715;
	color: #ffffff;
	
	text-transform: uppercase;
	text-align: center;
	/*line-height: 40px;*/
	
	border-radius: 15px;
	-moz-border-radius: 15px;
	-webkit-border-radius: 15px;
	padding: 0px;
}

input[type="button"].s3:HOVER, input[type="submit"].s3:HOVER, button.s3:HOVER{
	/*color: #8f8f8f;*/
	text-shadow: 
		0px 0px 2px #ffffff;/*,
		0px 0px 4px #ffffff;*/
}
/*---END: BUTTON STANDARD 3---*/


/*---BEGIN: BOX---*/
.box_s1{
	background-image: 
		url('/img/theme/old/strona-wejsciowa-pasekpoziomwycinek.png'), 
		url('/img/theme/old/strona-wejsciowa-pasekpoziomwycinek.png'),
		url('/img/theme/old/strona-wejsciowa-pasekpoziomwycinek.png');
	background-position: 0px 0px, right 0px bottom 0px, center;
	background-repeat: repeat-x, repeat-x, repeat-x;
	
	background-size: 100% 1px, 100% 1px, 100% calc(100% - 6px);
}

.box_s2{
	background-image: 
		url('/img/theme/old/strona-wejsciowa-pasekpoziomwycinek.png'), 
		url('/img/theme/old/strona-wejsciowa-pasekpoziomwycinek.png'),
		url('/img/theme/old/strona-wejsciowa-pasekpoziomwycinek.png');
	background-position: 0px 0px, right 0px bottom 0px, center;
	background-repeat: repeat-x, repeat-x, repeat-x;
	
	background-size: 100% 3px, 100% 3px, 100% calc(100% - 12px);
}

.box_standard_style{
	background-color: #0b7685;
	/*
	background-color: rgba(140,0,0,0.4);
	background: linear-gradient(rgba(140,0,0,0.4) 10%, rgba(140,0,0,0.0) 90%);
	background: -o-linear-gradient(rgba(140,0,0,0.4) 10%, rgba(140,0,0,0.0) 90%);
    background: -moz-linear-gradient(rgba(140,0,0,0.4) 10%, rgba(140,0,0,0.0) 90%);
    background: linear-gradient(rgba(140,0,0,0.4) 10%, rgba(140,0,0,0.0) 90%);
	*/
	/*
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;*/
	
	/*box-shadow: 0px 0px 10px 4px rgba(0, 0, 0, 0.8);
	-moz-box-shadow: 0px 0px 10px 4px rgba(0, 0, 0, 0.8);
	-webkit-box-shadow: 0px 0px 10px 4px rgba(0, 0, 0, 0.8);*/
	
	border: 2px solid rgba(0,0,0,0.6);
}
/*---END: BOX---*/

/*---BEGIN: BUTTONS---*/
a.button_standard{
	box-sizing: border-box;
	display: inline-block;
	padding: 2px;
	border: 1px solid #ffffff;
	min-width: 100px;
	text-decoration: none;
	text-align: center;
	background-color: #08545e;
	color: #F7BE3C;
}

a.button_standard:HOVER{
	text-decoration: underline;
	background-color: #063f46;
	color: #fad785;
}

div.button_gray{
	box-sizing: border-box;
	display: inline-block;
	padding: 2px;
	border: 1px solid #ffffff;
	min-width: 100px;
	text-decoration: none;
	text-align: center;
	background-color: #808080;
	color: #e0e0e0;
}

/*---END: BUTTONS---*/


/*---BEGIN: MESSAGE---*/
.message_container{
	position: fixed;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.7);
	z-index: 2000;
}

.message_container p{
	display: inline-block;
	width: 100%;
	text-align: center;
	
	/*background-color: red;*/
}

.message_container h3{
	display: inline-block;
	width: 100%;
	text-align: center;
	margin: 5px;
	border-bottom: 1px solid #ffffff;
}

.message_body{
	position: absolute;
	left: calc(50% - 500px/2);
	top: calc(50% - 300px/2);
	width: 500px;
	height: 300px;
	color: #ffffff;
	padding: 10px;
	text-align: center;
}

.message_button{
	position: absolute;
	bottom: 10px;
	width: 100%;
	text-align: center;
}
/*---END: MESSAGE---*/



/*---BEGIN: PROGRESS BAR AND FILE UPLOAD---*/
div.file_box_show{
	display: inline-block;
	position: relative;
	border: 1px solid #ffffff;
	background-color: rgba(0,0,0,0.4);
}

div.file_box_show:HOVER{
	box-shadow: 0px 0px 10px 4px rgba(255, 255, 255, 1);
	-moz-box-shadow: 0px 0px 10px 4px rgba(255, 255, 255, 1);
	-webkit-box-shadow: 0px 0px 10px 4px rgba(255, 255, 255, 1);
	cursor: pointer;
	cursor: -webkit-zoom-in;
	cursor: -moz-zoom-in;
}

div.file_box_show_info{
	position: absolute;
	top: 0px;
	left: 0px;
	color: #ffffff;
	background-color: rgba(0,0,0, 0.7);
}

div.file_box_show img{
	width: 100%;
	height: 100%;
	object-fit: contain;
}

div.file_box_show_error{
	display: flex;
    align-items: center;
    justify-content: center;
	
	position: absolute;
	bottom: 0px;
	left: 0px;
	color: #ffffff;
	background-color: rgba(250,0,0, 0.8);
	width: 100%;
	height: 40%;
	text-align: center;
	font-size: 120%;
}

div.file_box_show_button_close{
	display: flex;
    align-items: center;
    justify-content: center;
    
	position: absolute;
	right: 0px;
	top: 0px;
	z-index: 10;
	background-color: rgba(220,0,0,1);
	color: #ffffff;
	width: 25px;
	height: 25px;
	/*padding: 3px;*/
	text-align: center;
	vertical-align: middle;
	
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	
	box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.8), 0px 0px 2px 1px rgba(0, 0, 0, 0.8) inset;
	-moz-box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.8), 0px 0px 2px 1px rgba(0, 0, 0, 0.8) inset;
	-webkit-box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.8), 0px 0px 2px 1px rgba(0, 0, 0, 0.8) inset;
}

div.file_box_show_button_close:HOVER{
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
	
	box-shadow: 0px 0px 5px 2px rgba(255, 0, 0, 0.8), 0px 0px 2px 1px rgba(0, 0, 0, 0.8) inset;
	-moz-box-shadow: 0px 0px 5px 2px rgba(255, 0, 0, 0.8), 0px 0px 2px 1px rgba(0, 0, 0, 0.8) inset;
	-webkit-box-shadow: 0px 0px 5px 2px rgba(255, 0, 0, 0.8), 0px 0px 2px 1px rgba(0, 0, 0, 0.8) inset;
	cursor: pointer;
}

div.file_box_input_text{
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	padding-top: 20px;
	text-align: center;
	text-transform: uppercase;
	color: #ffffff;
	font-size: 150%;
}

div.file_box_input{
	display: flex;
    align-items: center;
    justify-content: center;
    
	position: absolute;
	left: 0px;
	top: calc(50% - 180px/2);
	height: 180px;
	/*background-color:rgba(100,100,200,0.6);*/
	font-size: 200px;
	width: 100%;
	padding: 0px;
	margin: 0px;
	text-align: center;
	vertical-align: middle;
	color: #ffffff;
}

div.file_box_show_preview{
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	background-color: rgba(0,0,0,0.7);
	z-index: 2000;
}

div.file_box_show_preview_box{
	 padding: 10px;
	 width: 60%;
	 height: 60%;
	 position: absolute;
	 left: calc(50% - 60%/2);
	 top: calc(50% - 60%/2);
}

div.file_box_show_preview_box img{
	width: 100%;
	height: 100%;
	object-fit: contain;
}

div.file_box_loading_box{
	position: absolute;
	width: 300px;
	height: 200px;
	left:calc(50% - 300px/2);
	top:calc(50% - 200px/2);
	/*background-color: rgba(255,255,0,0.0);*/
}

div.file_box_loading_box_text{
	font-size: 24px;
	color: #ffffff;
	text-align: center;
}

div.file_box_loading_box_progress{
	width: 300px;
	height: 40px;
	position: relative;
}

div.file_box_info{
	margin-top: 20px;
}

div.progress{
	position: relative;
	width: 150px;
	height: 20px;
	background-color: rgba(150,150,150,1);
	margin-top: 20px;
	margin-bottom: 20px;
	text-align: center;
	padding: 2px;
	
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	
	overflow: hidden;
}

div.progress div.progress_bar{
	position: absolute;
	width: 0%;
	left: 0px;
	top: 0px;
	height: 100%;
	background-color: rgba(210,0,0, 1);
	z-index: 0;
}

div.progress div.progress_info{
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 20px;
	padding: 2px;
	color: #ffffff;
	z-index: 10;
	text-align: center; 
}

div.progress_auto{
	box-sizing: border-box;
	position: relative;
	width: 100%;
	height: 100%;
	/*width: 150px;
	height: 20px;*/
	background-color: rgba(150,150,150,1);
	margin-top: 20px;
	margin-bottom: 20px;
	text-align: center;
	padding: 2px;
	
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	
	overflow: hidden;
}

div.progress_auto div.progress_bar{
	box-sizing: border-box;
	position: absolute;
	width: 0%;
	left: 0px;
	top: 0px;
	height: 100%;
	background-color: rgba(210,0,0, 1);
	z-index: 0;
}

div.progress_auto div.progress_info{
	box-sizing: border-box;
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	padding: 2px;
	color: #ffffff;
	z-index: 10;
	text-align: center;
	font-size : 30px;
}

/*---END: PROGRESS BAR AND FILE UPLOAD---*/


/*---BEGIN: AGREEMENT---*/
div.agreement{
	position: fixed;
	z-index: 2000;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	
	background-color: rgba(0, 0, 0, 0.9);
	color: #ffffff;
}

div.agreement_text_top{
	position: absolute;
	width: 600px;
	top: calc(50% - 154px);
	left: calc(50% - 300px);
}

div.agreement_text_bottom{
	position: absolute;
	width: 600px;
	top: calc(50% + 170px);
	left: calc(50% - 300px);
}

div.agreement_text{
	box-sizing: border-box;
	padding: 10px;
	
	position: absolute;
	/*background-color: #005656;*/
	
	width: 600px;
	height: 320px;
	
	top: calc(50% - 150px);
	left: calc(50% - 300px);
	
	/*border: 1px solid white;*/
	text-align: justify;
}

div.agreement_text h4{
	display: block;
	width: 100%;
	height: auto;
	
	color: #ffffff;
	padding: 0px;
	margin: 0px;
	margin-bottom: 10px;
	font-size: 140%;
	text-align: center;
	text-transform: uppercase;
}

div.agreement_enter{
	position: absolute;
	bottom: 10px;
	left: calc( 50% - 150px/2 );
	
	width: 150px;
	height: 50px;
}

div.agreement_enter a{
	display: block;
	width: 100%;
	height: 100%;
	line-height: 200%;
	font-size: 140%;
	/*background-color: #08545e;
	color: #F7BE3C;*/
	vertical-align: middle;
	text-align: center;
}

div.agreement_enter a:HOVER{
	/*left: calc(30% - 1%);
	top: calc(30% - 1%);
	width: 42%;
	height: 42%;*/
	/*font-weight: bold;*/
}


div.agreement_enter a img{
	width: 100%;
	height: 100%;
	object-fit: contain;
}

div.agreement_exit{
	position: absolute;
	right: 5px;
	bottom: 5px;
	
	/*background-color: rgba(0,0,0, 0.6);*/
	padding: 3px;
}

div.agreement_exit a{
	color: #ffffff;
}

/*---END: AGREEMENT---*/

/*---BEGIN: PAGE---*/
div.page_container{
	display: block;
	/*background-color: yellow;
	width: auto;*/
}

div.page_num, div.page_num_selected{
	display: inline-block;
	padding: 0px;
	margin: 3px;
	width: 30px;
	height: 30px;
	text-align: center;
	line-height: 30px;
	font-size: 100%;
}

div.page_num a{
	display: inline-block;
	width: 100%;
	height: 100%;
}

div.page_num{
	background-color: rgba(0,0,0, 0.6);
}

div.page_num_selected{
	background-color: rgba(60,60,60, 0.6);
}
/*---END: PAGE---*/

/*-----------BEGIN: HINT BOX-------------*/

div.info_box_container{
	display: inline-block;
	position: relative;
	
	margin-left: 10px;
	width: 14px;
	height: 14px;
	/*border-radius: 100%;*/
	
	background-color: black;
	border: 1px solid #ffffff;
	
	font-size: 12px;
	color: #ffffff;
	text-align: center;
}

div.info_box{
	position: absolute;
	box-sizing: border-box;
	display: none;
	z-index: 1100;
	
	background-color: rgba(0, 0, 0, 0.95);
	
	width: auto;
	min-width: 100px;
	min-height: 40px;
	max-height: 300px;
	padding: 5px;
	text-align: center;
	font-size: 12px;
	
	border: 2px solid #ffffff;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	overflow: hidden;
}

/*-----------END: HINT BOX-------------*/


/*----------------------------------------------------*/
@media screen and (max-width: 880px){
	div.agreement_text{
		position: absolute;
		width: 100%;
		height: 100%;
		top: 0px;
		left: 0px;
	}
	
	div.agreement_text_content{
		height: calc(100% - 100px);
		overflow-y: auto;
	}
	
	div.agreement_enter{
		position: absolute;
		bottom: 40px;
		left: calc( 50% - 150px/2 );
		
		width: 150px;
		height: 50px;
	}
	
	div.agreement_text_top, div.agreement_text_bottom{
		display: none;
	}
	
	/*---BEGIN: MESSAGE---*/
	.message_container{
		box-sizing: border-box;
		position: fixed;
		left: 0px;
		top: 0px;
		width: 100%;
		height: 100%;
		background-color: rgba(0,0,0,0.7);
		z-index: 2000;
	}
	
	.message_container p{
		text-align: justify;
	}
	
	.message_container h3{
		box-sizing: border-box;
		display: inline-block;
		width: 100%;
		text-align: center;
		margin: 0px;
		margin-bottom: 5px;
		border-bottom: 1px solid #ffffff;
	}
	
	.message_body{
		box-sizing: border-box;
		position: absolute;
		left: 0px;
		top: 0px;
		width: 100%;
		height: 100%;
		color: #ffffff;
		padding: 10px;
		text-align: center;
		overflow-y: scroll;
	}
	
	.message_button{
		position: absolute;
		bottom: 10px;
		width: 100%;
		text-align: center;
	}
	
	/* ---END: MESSAGE--- */
	
}
