/* notice */
.notice_bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 91;
    background: rgb(38 69 28 / 60%);

    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);


    cursor: pointer;
    color: #26451c;
}
.cookie_notice {
    position: fixed;
    width: 80%;
    color: #26451c;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    z-index: 92;
    max-width: 600px;
    border-radius: 3px;

    display: flex;
    flex-direction: column;


}
.cookie_notice .notice_text {
    box-sizing: border-box;
    padding: 30px;
    text-align: center;
    color: #26451c;
    background: #fff;
    font-size: 1.1em;
    max-height: 700px;
    overflow-y: scroll;
}
.cookie_notice .notice_text h2 {
    font-size: 1.3em;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 0em;
    max-width: 100%;
    padding-bottom: 20px;
}
.cookie_notice .notice_text p {
    padding-bottom: 20px;
}
.cookie_notice .notice_text p:last-of-type {
    padding-bottom: 0;
}
.cookie_notice .notice_text p a {
    color: #2ebf68;
}
.cookie_notice .notice_text img {
    display: block;
    width: 100%;
    margin-top: 0;
    margin-bottom: 20px;
}
.cookie_notice .notice_text ul,
.cookie_notice .notice_text ol {
    margin-left: 1em;
}
.cookie_notice.hide,
.notice_bg.hide {
    opacity: 0;
    pointer-events: none;
}
.cookie_notice:after {
    content: "×";
    position: absolute;
    left: 50%;
    top: -50px;
    line-height: 1;
    transform: translateX(-50%);
    pointer-events: none;
    font-size: 1.7em;
    color: #fff;
}
@media screen and (max-width: 1100px) {

    .cookie_notice  {
        width: 100%;
    }
    .cookie_notice .notice_text {
        font-size: .9em;
        padding: 30px 20px;
    }
    .cookie_notice .notice_text h2 {
        font-size: 1.2em;
    }
    .cookie_notice:after {
        top: -40px;
    }
}
