.cookie_con {
	background-color: rgba(0,0,0,0.5);
	position: fixed;
	bottom: 0;
	height: auto;
	width: 100%;
	z-index: 1000;
	padding: 20px 0px;
}
.inactive {
	padding: 0px;
	opacity: 0;
	margin-bottom: -20px;
	-moz-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
}
.cookie_con .container {
	position: relative;
	margin: 0 auto;
}
.cookie_con .container .text {
	color: white;
	float: left;
	width: 80%;
	margin: 0 0.5% 10px;
}
.cookie_con .container .text a {
	color: white;
	text-decoration: underline !important;
	padding: 2px;
	text-decoration: underline;
	transition: all, 0.3s, ease;
	margin-left: 10px;
}
.cookie_con .container .text a:after{
	margin-left: 5px;
}
.cookie_con .container .text a:hover{
	opacity: 0.8;
}
.cookie_con .container .button {
	float: right;
	cursor: pointer;
	margin-right: 10px;
}
.cookie_con .container .button .value {
	color: white;
	text-align: center;
	vertical-align: super;
	padding: 8px;
	border: 1px solid white;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.cookie_con .container .button .value:after {
	content: "\2713";
	margin-left: 10px;
}
.cookie_con .container .button .value:hover {
	opacity: 0.8;
	background: white;
	color: black;
}

/*TABLET*/
@media screen and (max-width: 991px){
	.cookie_con .container {
	}
	.cookie_con .container .button {
	}
}
/*TABLET*/

/*MOBILE*/
@media screen and (max-width: 767px){
	.cookie_con{
		width: 98%;
		margin: 0 1%;
	}
	.cookie_con .container {
		padding: 0;
		margin: 0.5%;
	}
	.cookie_con .container .text {
		width: 98%;
		margin: 0 1% 5% 1%;
	}
	
	.cookie_con .container .button, .cookie_con .container .text {
		float: none;
		text-align: center;
	}
}
/*MOBILE*/