.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; padding: 30px;}
}

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

.cookie-banner .banner-message p,
.cookie-banner .banner-message p a {
    color: #4c4845;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 400;
    line-height: 1.6em;
    text-rendering: optimizeLegibility;
    margin-bottom: 20px;
}

.cookie-banner .banner-message p a {
    color: #d35e21;
}

@media (min-width: 40em) {
    .cookie-banner .banner-message p,
    .cookie-banner .banner-message p a {
        margin-bottom:initial;
        font-size: 16px;
    }
}
.cookie-banner .banner-close {
    flex-shrink: 0;
    margin: 0px;
    padding: 0px;
}

.cookie-banner p, .cookie-banner a {
	margin: 0px;
}

.cookie-banner .button {
    display: inline-block;
    /* padding: 12px 32px; */
    padding: 15px 30px 17px;
    font-size: 1rem;
    color: #fff;
    text-decoration: none;
    background-color: #233649;
    border-radius: 300px;
    font-family: Montserrat, sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0px;
    text-transform: capitalize;
    transition: color 350ms ease, flex 350ms ease, background-color 350ms ease;
    margin-bottom: 0px;
}
.cookie-banner .button i {
    margin-top: 4px;
    margin-right: 5px;
    margin-left: 5px;
    color: #d35e21;
    font-size: 12px;
    line-height: 1em;
    text-decoration: none;
}
.cookie-banner .button:hover {
    background-color: #d6b059;
    color: #0c2641;
}

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