.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: 40em) {
    .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: 8px 15px;
}

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

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

.cookie-banner .banner-message p {
    color: #000;
    font-family: 'monotype-grotesque', sans-serif;
}

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

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

.cookie-banner .button {
    margin-top: 8px;
    padding: 8px 30px;
    line-height: 2;
    margin-bottom: 0;
    display: inline-block;
    text-decoration: none;
    /* display: block; */
    font-family: 'monotype-grotesque', sans-serif;
    background-color: #212b38;
    font-style: italic;
    font-weight: 100;
    letter-spacing: .03em;
    transition: ease 0.6s;
    transition-property: border-radius background-color;
    font-size: 15px;
    margin-top: 10px;
    padding: 0 30px;
    color: #e3dcd5;
}

.cookie-banner .button:hover,
.cookie-banner .button:focus {
    border-radius: 5px;
    background-color: #e3dcd5;
    color: #212b38;
}

.cookie-banner .button i:before {
    content: "\f054";
    font-size: 12px;
}

@media (min-width: 40em) {
	.cookie-banner p, .cookie-banner a {
		font-size: 14px;
	}
	.cookie-banner .banner-close .button {
        margin: 0px;
	}

	.cookie-banner .button {
		margin-top: 21px;
		margin-bottom: 23px;
		padding-top: 8px;
		padding-bottom: 8px;
	}
	.cookie-banner .banner-inner {
		padding: 20px 15px;
	}
}