#cookie-notification {
    box-sizing: border-box;
    position: fixed;
    z-index: 100000;
    bottom: 0;
    left: 0;
    width: 100%;
}
#cookie-notification-content {
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;

    width: 100%;
    margin: 0 auto;

    font-weight: 400;
    line-height: 1.5;
}
#cookie-notification-text {
    box-sizing: border-box;
}
#cookie-notification-deny {
    box-sizing: border-box;
    display: inline;
    display: contents;
    margin: 0;
    width: auto;
    height: auto;

    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;

    border-radius: 0;
    border: 0;
    padding: 0;

    box-shadow: none;

    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    text-transform: inherit;
    text-align: inherit;
    text-shadow: inherit;

    cursor: pointer;

    background: transparent;
}
#cookie-notification-button {
    all: unset;
    box-sizing: border-box;

    position: relative;
    z-index: 1;

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
     align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-item-align: stretch;
    align-self: stretch;

    margin: 0 0 0 auto;
    width: 100%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100vw;
    flex: 0 0 100vw;
    max-height: 20vh;

    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;

    border-radius: 0;
    border: 0;
    padding: 0;

    overflow: hidden;
    box-shadow: none;

    font-size: inherit;
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase;
    text-shadow: inherit;

    cursor: pointer;
}
#cookie-notification-button:before {
    box-sizing: border-box;
    content: "";
    position: absolute;
    z-index: -1;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    transition: top 100ms ease-in-out;
}
#cookie-notification-button:active:before,
#cookie-notification-button:focus:before,
#cookie-notification-button:hover:before {
    top: 0%;
}
#cookie-notification-checkmark {
    width: 96px;
    height: 58px;
}
#cookie-notification-button-text {
    margin-top: 0.5em;
}
