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

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

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

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

.gdpr-banner .banner-message p {
    text-align: center;
    font-size: 16px;
    line-height: 22px;
}

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

.gdpr-banner p, .gdpr-banner a {
    margin: 0px;
    font-size: 16px;
    line-height: 22px;
}

.gdpr-banner .button {
    margin: 0px;
    padding: 15px 30px;
    transition: all 250ms;
    background: linear-gradient(to bottom, #005e95 0%, #02315c 100%);
    color: white;
    text-transform: uppercase;
    font-weight: 400;
}

.gdpr-banner .button p{
    color: inherit;
    text-transform: inherit;
    font-weight: inherit;
    font-size: 14px;
    line-height: 16px;
}   

.gdpr-banner .button:hover {
    background-color: #577494;
}

@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 {
        margin-top: 8px;
        padding: 8px 20px;
    }
}