@charset "UTF-8";
/* CSS Document */

.cookie-message {
	text-align: left;
	font-family: "Arial", Helvetica, "sans-serif";
	font-size: 0.9em;
	position: fixed;
	width: 100%; 
	bottom: 0;
	left: 0;
	padding: 15px;
	background:  #E3ECF5;
	color: #000;
	box-shadow: 0px 0px 3px #32497e;
	box-sizing: border-box;
	z-index: 999999;
	opacity: 0.9;
}

.cookie-message p {
	padding-bottom: 15px;
}

.cookie-message a {
	color: #000;	
	text-decoration: underline;
}

.cookie-message .left {
	width: 75%;
	float:left;
}
.cookie-message .right {
	width: 25%;
	float:right;
	text-align: right;
}

button.my-close-button {
    border: 0;
    border-bottom-style: none;
    border-color: #83807c;
    background-color: #83807c;
    color: #fff;
    padding: 6px 12px;
    border-radius: 5px;
    cursor: pointer;
}

@media only screen and (max-width: 1095px) { }

@media only screen and (max-width: 768px) {

	.cookie-message {
			font-size: 0.75em;
	}
	
	.cookie-message .left,
	.cookie-message .right {
		text-align: left;
		width: 100%;
		clear:left;
	}

}

@media only screen and (max-width: 414px) { }