  .cookieNotice {
    position: fixed;
    bottom: 0;
    z-index: 800;
    width: 100%;
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 8px;
    opacity: 0;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);

    -webkit-transition: opacity 0.8s;
    transition: opacity 0.8s;
}

.cookieNotice.cookieNotice--active {
    opacity: 1;
}

.cookieNotice .contents {
    width: 80%;
    margin: 0 auto;
}

.cookieNotice a {
    color: #ffffff;
    text-decoration: underline;
}

.cookieNotice a:hover {
    color: #ffffff;
    text-decoration: none;
}

.cookieNotice .statement {
    padding-top: 3px;
    padding-bottom: 3px;
    margin: 0 0 0 0;
    float: left;
    max-width: 70%;
}

.cookieNotice .statement_expand:focus,
.cookieNotice .statement_expand:hover {
    color: #fff;
}

.cookieNotice .statement_detail {
    clear: both;
    display: none;
}

.cookieNotice .statement_detail.statement_detail--active {
    display: block;
}

.cookieNotice .cookieButtons {
    max-width: 30%;
    float: right;
}

.cookieNotice .agree {
    float: right;
    padding: 8px;
    margin: 8px 0 0 0;
    background-color: #008000;
    color: #ffffff;
    text-decoration: none;
}

.cookieNotice .disagree {
    float: right;
    padding: 8px;
    margin: 8px 8px 0 0;
    background-color: #b20000;
    color: #ffffff;
    text-decoration: none;
}

@media only screen and (max-width: 1200px) {
    .cookieNotice .contents {
        width: 90%;
    }

    .cookieNotice .statement {
        max-width: 100%;
    }

    .cookieNotice .cookieButtons {
        max-width: 100%;
    }
}

.cookieNoticeWarning-checkboxWrapper {
    position: relative;
    display: block;
    max-width: 25%;
    width: 100%;
    padding: 0 20px 20px 0;
}

.cookieNoticeWarning-checkBoxesWrapper {
    display: flex;
    flex-flow: row wrap;
}

.cookieNoticeWarning-form {
    padding-bottom: 20px;
}

@media only screen and (max-width: 960px) {
    .cookieNoticeWarning-checkboxWrapper {
        max-width: 50%;
    }
}

@media only screen and (max-width: 500px) {
    .cookieNoticeWarning-checkboxWrapper {
        max-width: 100%;
    }
}