
.thickoff_m 
{ 
	width: 	20px; 
	height:	20px; }
	
.thickoff_s
{ 
	width: 	15px; 
	height:	15px; }
	
.logo_m
{
	width: 	400px; 
	height:	160px; }

/* ***** COOKIE BANNER ***** */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    color: #fff;
    padding: 10px;
    text-align: center;
 /*   display: flex;*/
    justify-content: space-between;
    align-items: center;
}

.button-cookies {
    color: white;
    border-radius: 5px;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
} 

#accept-cookies {
    background-color: #4CAF50;

}
#refuse-cookies {
    background-color: #FF5252;
}

.banner-cookies-hidden {
    display: none;
}

/* ***** FADEIN EFFECTS ***** */
.fade-section {
    opacity: 0;
    transition: opacity 2.0s;
}

.fade-in {
    opacity: 1;
}

.fade-out {
    opacity: 0;
}

/* SLIDE FADE and LEFT */
.slide-fade {
    position: relative;
    opacity: 0;
    transform: translateX(0);
    transition: opacity 2.5s, transform 2.5s;

}

.slide-fade.slide-left {
    transform: translateX(-30%);
}

.slide-fade.slide-right {
    transform: translateX(30%);
}

.slide-fade.active {
    opacity: 1;
    transform: translateX(0);
}
