:root {
	--color_blue_2: #3b72b7;
	--color_white_2: #fff;
	--akz_medium_2: akz;
	--akz_font_2: akzReg;
	--akz_super_2: akzSuper;
	--big_size_2: 900px;
	--font_size_2: 19px;
	--line_height_2: 26px;
  }


.consent_to_cookie_container{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
	padding:30px;
	border-top:1px solid #fff;
    background-color:var(--color_blue_2);
	color:var(--color_white_2);
	font-family:var(--akz_font_2);
    z-index:1000000400000000000;
	/* transform:translateX(-100%);
	animation: .5s open_tab3 1.5s forwards;
	box-shadow:0 0 20px #999; */
}

.consent_to_cookie_wrap{

	display: flex;
	max-width: var(--big_size_2);
    width: 100%;
    margin: 0 auto;
	gap:30px;

}


.consent_to_cookie_bottom{
	display: flex;
	width:25%;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 10px;
    border: 1px solid var(--color_white_2);
	border-radius:5px;
	background-color:var(--color_blue_2);
	color:var(--color_white);
	cursor:pointer;
	font-size: 16px;
	line-height:0;
	font-family:var(--akz_medium_2);
}

.consent_to_cookie_bottom:hover{
	background-color:#fff;
	color:var(--color_blue_2);
}

.consent_to_cookie_alert{
	
	font-size: var(--font_size_2);
	line-height: var(--line-height_2);
	width:75%;
	
}



.consent_to_cookie_alert a {
    color: var(--color_white_2);
    text-decoration: none;
    border-bottom: 1px dashed var(--color_white_2);
}

@media only screen and (max-width: 650px) {
	
	.consent_to_cookie_alert, .consent_to_cookie_bottom{
		width:100%;
		line-height: var(--line-height_2);
		
	}

	.consent_to_cookie_bottom{
		padding: 12px 10px 12px;
	}

	.consent_to_cookie_wrap{
		gap:25px;
		flex-direction: column;
	}

	.consent_to_cookie_container{
		padding:20px;
	}	
	
}




