@charset "UTF-8";

html.modalset {
    overflow: hidden;
}
.notificationmodal {
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9999;
}
#cookie-statement {
    display: none;
}
.notificationmodal-wrap {
    /* width: 100%; */
    height: 100%;
    text-align: center;
    padding: 20px;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    overflow: -moz-scrollbars-none;
    white-space: nowrap;
}
.notificationmodal-wrap::-webkit-scrollbar {
    display: none;
}
.notificationmodal-wrap:after {
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 1px;
    height: 100%;
}
.notificationmodal-bg {
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.8);
    width: 100%;
    height: 100%;
}
.notificationmodal-box {
    width: 100%;
    max-width: 900px;
    display: inline-block;
    vertical-align: middle;
    position: relative;
}
.notificationmodal-box .inner {
    background: #fff;
    padding: 40px;
    text-align: left;
    border-radius: 5px;
    white-space: normal;
    line-height: 1.7;
    font-size: 14px;
    color: #000!important;
}
.notificationmodal-box .inner > :first-child {
    margin-top: 0;
}
.notificationmodal-box .inner p {
    margin: 0;
}
.notificationmodal-box .inner p a {
    display: inline!important;
    text-decoration: underline!important;
    color: #00e;
}
.notificationmodal-box .inner p a:hover {
    text-decoration: none!important;
}
.notificationmodal-box .button-box {
    margin-top: 20px;
    text-align: right;
}
.notificationmodal-box .button-box button {
    display: inline-block;
    background-color: #000000;
    color: #fff;
    border: 1px solid #000000;
    border-radius: 3px;
    padding: 8px 12px;
}
.notificationmodal-box .button-box button:hover {
    opacity: .65;
}
.fadeout {
    animation : fadeOut 1s;
    animation-fill-mode: both;
  }
@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}