@charset "utf-8";
/* CSS Document */

#cookie {
	display:block;
	position:fixed;
	bottom:0px;
	left:0;
	width:100%;
	height:80px;
	margin:0 auto;
	padding:0;
	background: rgba(0,0,0,0.8);
	z-index:80000;
	-moz-box-shadow:4px 4px 6px rgba(0,0,0,0.4);
	-webkit-box-shadow:4px 4px 6px rgba(0,0,0,0.4);
box-shadow:4px 4px 6px 6px #CCC;
	transition-property:height; /*standard*/
  transition-duration: 2s;
 
  -webkit-transition-property:height; /*safari*/
  -webkit-transition-duration: 2s;
         
  -o-transition-property:height;      /*opera*/
  -o-transition-duration: 2s;
         
  -moz-transition-property:height;    /*firefox*/
  -moz-transition-duration: 2s;
}

#cookie div {
	visibility:visible;
	position: relative;
	bottom: auto;
	margin-top: 10px;
	width:90%;
	margin: 0px auto;
	padding:10px 0 10px 0px;
	font-size:100%;
	color: #ffffff;
	text-align:center;
}


/* LINKS */

#cookie div a  {
	color: #7570b3;
	text-decoration: none;
	font-weight: bold;
}


/* mouse over link */
#cookie div a:hover {
    color: #fff;
	text-decoration: none;
}

/* selected link */
#cookie div a:active {
    color: #7570b3;
	text-decoration: none;
} 

	#cookie span {
	visibility:visible;
		position:absolute;
		bottom:30px;
		right:30px;
		text-align:right;
		padding: 12px;
		background-color: #000000;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	z-index:80000;
	}
	#cookie span a {
		font-weight:bold;
		color:#7570b3;	
		text-decoration:none;
	}
	#cookie span:hover, #cookie span:hover a, #cookie span a:hover {
		color:#f3f3f3;	
		text-decoration:none;
		background-color: #212121;
	}



/***************************************************** MAX 750 PX *****************************************************/

@media screen and (max-width: 750px) {

#cookie {
    height: 90px;
}

	/*** fine 750px ***/
	
}


/***************************************************** MAX 568 PX *****************************************************/

@media screen and (max-width: 568px) {

#cookie {
    height: 120px;
}
	
#cookie span {
    bottom: 2px;
    right: 10px;
}

	/*** fine 568px ***/
	
}