/*** GDPR Banner ***/
.gdpr-banner {
    position: fixed;
    bottom: 52px;
    left: 0px;
    margin: 0 auto;
    max-width: 600px;
    background-color: #fff;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    transform: translate(0);
    transition: all 0.8s ease-in-out;
    z-index: 200001;
    display: block;
    width: 100%;
    min-height: 0;
    top: auto;
    right: auto;
    visibility: visible;
    border-radius: 0;
    border: none;
    padding: 0;
}

.gdpr-banner.dismissed {
    transform: translateX(-110%);
}

.gdpr-banner .banner-inner {
    display: flex;
    justify-content: center;
	align-items: center;
    padding: 10px 15px;
}

.gdpr-banner .banner-message {
	padding-right: 15px;
    width: 100%;
}

.gdpr-banner .banner-message p {
    color: #444;
    font-size: 15px;
    line-height: 18px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    margin-bottom: 0px;

}

.gdpr-banner .banner-close {
    flex-shrink: 0;
    margin: 0px;
    padding: 0px;
}

.gdpr-banner p, .gdpr-banner a {
	margin: 0px;
	font-size: 14px;
	line-height: 1.3;
    color:#bd2e49;
}

.gdpr-banner .button:hover,
.gdpr-banner .button {
    display: inline-block;
    font: 100 13px/1 'Roboto Condensed', sans-serif;
    color: #fff;
    background-color: #ef3264;
    box-shadow: 0px 2px 8px rgba(0,0,0,0.55);
    padding: 12px 20px;
    min-width: 80px;
}

@media (max-width: 64.063em) {
    .gdpr-banner {
        position: relative;
        bottom: 0;
        max-width: none;
    }
    .gdpr-banner.dismissed { transform: translate(0, 110%); }
}

@media (max-width: 40.063em) {
	.gdpr-banner .banner-inner { flex-direction: column; }
	.gdpr-banner .banner-close .button {
        display: inline-block;
        font: 100 13px/1 'Roboto Condensed', sans-serif;
        color: #fff;
        background-color: #ef3264;
        box-shadow: 0px 2px 8px rgba(0,0,0,0.55);
        padding: 12px 20px;
        min-width: 80px;
	}
}