#consent-banner {
    height: auto;
    bottom: 0;
    left: 0;
    position: fixed;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    background: white;
    padding: 2rem;
    width: 100%;
    display: none;
    border-top: 1px solid #ccc;
    box-sizing: border-box;
    font-size: 16px;
}

#consent-banner .heading {
    padding-bottom: 10px;
}

#consent-banner button {
    align-items: center;
    border: 1px solid #000;
    border-radius: 36px;
    display: inline-flex;
    font-size: 16px;
    justify-content: center;
    line-height: 22px;
    line-height: 1.25em;
    min-height: 44px;
    padding: 0.5em 24px;
    text-align: center;
    transition: all .2s ease;
    background: #000;
    color: #fff;
    margin: 0 5px 5px 0;
    cursor: pointer;
}

#consent-banner button:hover,
#consent-banner button.btn-secondary:hover {
	color: #fff;
	background: #0062F5;
	border: 1px solid #0062F5;
}

@media screen and (min-width: 1200px) {
    #consent-banner {
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

    #consent-banner .heading {
        padding-bottom: 0;
        padding-right: 20px;
    }

    #consent-banner button {
        margin: 0 5px 0 0;
    }
}
