@charset "UTF-8";
/* CSS Document */


#cookie_info { 
   	position: fixed;
	-webkit-backface-visibility: hidden;
  	right: -300px;
	bottom: 30px;
   	z-index: 10000; 
  	width: 280px; 
   	text-align: center; 
  	font-size: 13px; 
   	line-height: 18px;
	transition: right 0.5s ease-in;
}

#cookie_info .cookie_info_inner {
	padding: 20px 20px 70px 20px; 
	color: #FFF;
	background-color: rgba(39,154,218,0.90);
	-webkit-box-shadow: 0px 2px 12px 0px rgba(0,0,0,0.4);
	-moz-box-shadow: 0px 2px 12px 0px rgba(0,0,0,0.4);
	box-shadow: 0px 2px 12px 0px rgba(0,0,0,0.4);
    border-radius: 10px;
}
#cookie_info.show {
	right: 30px;	
}
@media only screen and (max-width: 640px) {
    #cookie_info { 
        position: fixed;
		width: 100%;
        right: -110%;
        bottom: 0px;
    }
	#cookie_info .cookie_info_inner {
		border-radius: 0px;
	}
    #cookie_info.show {
        right: 0px;
    }  
}
#cookie_info_close {
   	position: absolute;
   	top: auto;
   	right: 0;
	left: 0;
	bottom: 20px;
	margin: auto;
	width: 80%;
	height: 30px;
	line-height: 30px;
   	text-decoration: none;
   	cursor: pointer;
	color: #c1151d;
	font-size: 14px;
	font-weight: bold;
    background-color: #fff;
 }

#cookie_info_close:hover {
	-webkit-box-shadow: 0px 0px 0px 2px rgba(255,255,255,1);
	-moz-box-shadow: 0px 0px 0px 2px rgba(255,255,255,1);
	box-shadow: 0px 0px 0px 2px rgba(255,255,255,1);
    
}

#cookie_info a {
	text-decoration: none;
	font-weight: bold;
}

#cookie_info a:hover {
	text-decoration: underline;
}


#cookie_info a {
	text-decoration: underline;
	color: #FFF;
}
#cookie_info a:hover {
	text-decoration: none;
	color: #FFF;
}