            #form-messages {
                color: white;
            }
.cookiealert {
			position: fixed;
			bottom: 0;
			width: 100%;
			padding: 20px;
			margin: 0 !important;
			z-index: 999;
			opacity: 0;
			border-radius: 10px 0 0 0;
			background-color: #231f20;
			transform: translateY(100%);
			transition: all 0.5s ease-out;
			color: #f5f5f5;
			text-align: center;
		}
		
		.cookiealert.show {
			opacity: 0.8;
			transform: translateY(0);
			transition-delay: 1s;
		}
		
		.cookiealert a {
			text-decoration: none;
			color: #fff !important;
		}
		
		.cookiealert .acceptcookies {
			margin-left: 10px;
			border-radius: 5px;
			vertical-align: baseline;
		        
		}  

form #website {
display:none;
}

form {
color: white;
}

img.captur {
width: 70px;
height: auto;
}

.image-container {
    position: relative;
    width: 70px;
    height: 33px;
}
.image-container .after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    background: rgb(0, 0, 0, 0.1);
}
.image-container:hover .after {
    display: block;
    background: rgba(0, 0, 0, .5);
}