.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;
}

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

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

.cookie-banner .banner-message p {
	margin-bottom: 0;
	max-width: 100%;
}

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

.cookie-banner .button {
    margin-top: 8px;
    padding: 0px 20px;
	line-height: 2;
}

@media (min-width: 40em) {
	.cookie-banner .banner-close .button {
        margin: 0px;
        padding: 8px 45px;
	}
}

.cookie-banner .button {
	color: #fff;
    font-family: acumin-pro, sans-serif;
    font-style: normal;
    font-weight: 800;
    line-height: 1em;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: #1a2e37;
    padding: 16px 45px;
}

.cookie-banner .button:hover,
.cookie-banner .button:focus {
    background-color: #137d76;
}

.cookie-banner .button:focus {
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px #005d84;
    outline: none;
}