.cookie-banner {
    position: relative;
    z-index: 200001;
    bottom: 0;
    top: auto;
    right: auto;
    left: 0;
    display: block;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    min-height: 0;
    border: none;
    border-radius: 0;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    background-color: #fff;
    transform: none;
    transition: transform 300ms ease-in-out;
    visibility: visible;
}

.cookie-banner.dismissed {
    transform: translateY(110%);
}

@media (min-width: 64em) {
    .cookie-banner {
        position: fixed;
        bottom: 20px;
        max-width: 600px;
    }
    .cookie-banner.dismissed { transform: translateX(-110%); }
}

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

.cookie-banner .banner-message p {
    color: #00123e;
    font-family: 'Helvetica Neue LT W05_55 Roman';
    font-style: normal;
    text-rendering: optimizeLegibility;
	font-size: 15px;
    line-height: 26px;
	margin-bottom: 15px;
}

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

.cookie-banner p, .cookie-banner a {
	margin: 0px;
	font-size: 14px;
	line-height: 1.3;
}

.cookie-banner .button {
    margin: 0;
    padding: 9px 18px;
    font-family: ff-tisa-sans-web-pro, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 15px;
    color: #fff;
    text-decoration: none;
    background-color: #39827e;
    border-radius: 10px;
}

.cookie-banner .button:hover,
.cookie-banner .button:focus {
    background-color: #39827e;
}

@media (min-width: 40em) {
    .cookie-banner .banner-inner { flex-direction: row; }

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

    .cookie-banner .banner-message p {
        margin-bottom: 0;
    }
}

@media (min-width: 64em){
    .cookie-banner .banner-message p {
        font-size: 18px;
		line-height: 30px;
    }

    .cookie-banner .button {
        padding: 16px 30px;
        font-size: 18px;
    }
}