#cookieNoticeBanner {
    overflow: hidden;
    max-height: 0;
    transition: max-height 300ms ease;
}
#cookieNoticeBanner.show {
    position: fixed;
    width: 100%;
    height: auto;
    max-height: 200px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: 9999;
    transition: max-height 300ms ease;
}
#cookieNotice {
    position: relative;
    margin: 0 auto;
    width: 100%;
    max-width: 1200px;
    padding: 20px 15px;
}
.infoContent {
    display: inline-block;
    margin: 0 1% 0 0;
    width: 88%;
}
#acceptCookies {
    padding: 15px 20px;
    cursor: pointer;
    text-align: center;
    display: inline-block;
    width: 10%;
}

@media only screen and (max-width: 767px) {
    #cookieNoticeBanner.show {
        max-height: 300px;
    }
    .infoContent {
        display: block;
        width: 100%;
        margin-bottom: 2rem;
    }
    #acceptCookies {
        display: block;
        width: 100%;
    }
}
