body{
	position:relative;
}

.privacy{
	display:none;
	position: fixed;
    bottom: -1000px;
    padding: 30px;
    background: rgba(0,0,0,.85);
    color: #FFF;
	transition:0.5s;
	z-index: 99999999999999999999;
}
.privacy.open{
    bottom: 0;
	transition:0.5s;
	display:block;
}
.privacy .title_cookie{
	margin-bottom:15px;
	font-weight:700;
	font-size:18px;
}
.privacy .text_cookie{
	margin-bottom:20px;
	line-height:130%;
}
.privacy .text_cookie a:hover{
	text-decoration:none;
}
.privacy .text_cookie a{
	color:#FFF;
	font-weight:700;
	text-decoration:underline;
}
.privacy .button_cookie{
	display: flex;
    gap: 15px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
}
.privacy .button_cookie a{
	color: #FFF;
	border-radius:3px;
}
.privacy .button_cookie a.refuse_cookie:hover{
	text-decoration: none;
}
.privacy .button_cookie a.refuse_cookie{
	border: none;
    padding: 8px 20px;
    text-decoration: underline;
    background: none;
    color: #cecece;
    font-weight: 400;
    line-height: 100%;
}
.privacy .button_cookie a.accept_cookie:hover{
	background: transparent;
}
.privacy .button_cookie a.accept_cookie{
	border: none;
    padding: 8px 20px;
	border:2px solid #ce2026;
    text-decoration: none;
    background: #ce2026;
    color: #FFF;
    font-weight: 700;
    line-height: 100%;
}

.privacy .close_cookie {
    position: absolute;
    top: 10px;
    right: 10px;
    display: block;
    width: 26px;
    height: 26px;
    cursor: pointer;
    z-index: 10;
	border:1px solid #FFF;
}
.privacy .close_cookie::before,
.privacy .close_cookie::after {
    content: '';
    position: absolute;
    top: calc( 50% + 1px );
    left: 4px;
    display: block;
    width: 14px;
    height: 2px;
    background-color: #FFF;
}
.privacy .close_cookie::before {
    transform: translate(0,-2px) rotate(45deg);
}
.privacy .close_cookie::after {
    transform: translate(0,-2px) rotate(-45deg);
}