/*
	--- Versionamento ---
	10/05/2021 - Andrey - Primeira Versão
	21/09/2021 - César - Segunda Versão - Cookie semelhante ao do Portal da Transparência
	--- Fim Versionamento ---
*/


.cookie_container{
	z-index: 999;
	padding: 15px 15px 15px 15px;
	background-color:#fff;
	font-size: 12px;
	box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.61);
	border-radius: 5px;
	border: solid 1px #eeeeee;
	position: fixed;
	bottom: 0px;
	display: none;
	bottom: 15px;
	left: 15px;
	right: 15px;
	display: block;
}
.cookieConteudo{
	display: flex;
	justify-content: space-between;
}
.cookieDesc{
	display: flex;
	align-items: center;
}
.cookie_container .cookieDesc p{
	margin: 0;
	padding: 0;
	color: #000;
	display: block;
}
.cookie_container .cookieDesc a{
	color:#000;
	text-decoration:underline;
}
.cookie_container .cookieButton a{
	display: inline-block;
	color: #fff;
	font-weight: bold;
	background: #000;
	padding: 15px 15px;
	text-align: center;
	transition: background .3s;
	text-decoration: none;
}
.cookie_container .cookieButton a:hover{
	cursor: pointer;
	background: #3e9b67;
	text-decoration: none;
}
@media (max-width:980px){
	.cookieConteudo{
		display: flex;
		flex-direction: column;
	}
	.cookieButton{
		display: flex;
		justify-content: center;
		margin-top: 10px;
	}
	.cookie_container .cookieButton a{
		width: 100%;
	}
}

@media print {
  .cookie_container{
  display: none;
  }
}
