/* ========================= Grids - Responsive ======================== */


#cookie_alert{
	background: rgba(0,0,0,.7);
	position: fixed;
	bottom: 0px;
	width: 100%;
	padding: 20px;
	color: #FFF;
	font-family: 'Montserrat', sans-serif !important;
	font-size: 15px;
	font-weight: 200;
	z-index: 99999;

}

#cookie_alert .cookie_con{
	width: 100%;
	max-width: 950px;
	margin: 0 auto;
	text-align: center;
}

#cookie_alert .heading{
	display: inline-block;
	font-weight: 500;

}

#cookie_alert a{
	color: #FFF;
}

#cookie_alert a:hover{
	color: #CCC;
	text-decoration: none;
}

#cookie_alert .btn_close{
	border-radius: 100px;

	padding: 3px;
	padding-left: 10px;
	padding-right: 10px;
	display: inline-block;
	background: #FFF;
	color: #000;
	margin-left: 20px;
	cursor: pointer;

}

#cookie_alert .btn_close:hover{
	background: #CCC;
}


/* Media */

@media only screen and (max-width:730px) {

	#cookie_alert{
		font-size: 13px;
		padding: 5px;
	}

	#cookie_alert .btn_close{
		display: table;
		margin: 0 auto;
		margin-top: 10px;
	}

	

}