.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: 30px 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: #141414;
    font-size: 18px;
    line-height: 1.3em;
    font-family: 'franklin-gothic-urw', sans-serif;
    font-style: normal;
    font-weight: 400;
	text-rendering: optimizeLegibility;
	margin-bottom: 20px;
}

.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 {
    color: #141414;
    font-family: 'franklin-gothic-urw', sans-serif;
    font-style: italic;
    font-size: 15px;
    letter-spacing: 0.7px;
    font-weight: 400;
    border: 2px solid #141414;
    padding: 5px 50px;
    position: relative;
    margin-bottom: 10px;
    background: transparent;
}

.cookie-banner .button:after {
    content: "";
    display: block;
    background-color: #f15d22;
    width: calc(100% + 1px);
    height: calc(100% + 1px);
    position: absolute;
    top: 7px;
    left: 7px;
    z-index: -1;
    transition: top .5s, left .5s;
    text-decoration: none;
}

.cookie-banner .button:hover {
    background-color: transparent;
    color: #000
}

.cookie-banner .button:hover:after {
    top: 0px;
    left: 0px;
}

@media (min-width: 40em) {
    .cookie-banner .banner-message p {
        font-size: 20px;
        margin-bottom: 0;;
    }

	.cookie-banner .button {
        padding: 5px 100px;
        font-size: 20px;
        border: 3px solid #141414;
    }

    .cookie-banner .button:after {
        top: 9px;
        left: 9px;
    }
}