/*
* popup
 */
html.noscroll,
html.noscroll body {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
}
.popup_outer {
    display: none;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.8);
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2999999;
}
.popup_outer.popup_cookie {
    z-index: 9999999 !important;
}
.popup_outer.popup_show {
    display: flex;
}
.popup_inner {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    max-width: 800px;
    width: 100%;
    max-height: 100%;
    box-sizing: border-box;
    border: 1px solid #fff;
    position: relative;
}
.popup_header {
    display: flex;
    align-items: center;
    padding: 30px 30px 15px 30px;
}
.popup_header .popup_title {
    flex: 1;
    font-size: 22px;
    font-weight: bold;
}
.popup_content {
    flex: 1;
    padding: 30px;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}
span.popup_close {
    color: #ff0000;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 5px;
    right: 5px;
}
.popup_inner .btn,
.popup_inner .btn:hover {
    cursor: pointer !important;
}
.popup_inner .button_none .btn,
.popup_inner .button_none .btn:first-letter {
    text-transform: none !important;
}
.popup_inner .button_uppercase .btn,
.popup_inner .button_uppercase .btn:first-letter {
    text-transform: uppercase !important;
}
.popup_inner .button_lowercase .btn,
.popup_inner .button_lowercase .btn:first-letter {
    text-transform: lowercase !important;
}
.popup_inner .button_capitalize .btn {
    text-transform: lowercase !important;
}
.popup_inner .button_capitalize .btn:first-letter {
    text-transform: uppercase !important;
}
.popup_inner .button_left {
    width: 100%;
    text-align: left;
}
.popup_inner .button_center {
    width: 100%;
    text-align: center;
}
.popup_inner .button_right {
    width: 100%;
    text-align: right;
}
.popup_inner .button_full,
.popup_inner .button_full .btn {
    width: 100%;
    box-sizing: border-box;
}

@media only screen and (max-width: 600px) {
    html .cookies_outer {
        flex-direction: column;
    }
    html .popup_header {
        padding: 15px 15px 0 15px;
    }
    html .popup_cookie .popup_content {
        padding: 15px;
    }
    html .cookie_opts {
        display: flex;
        width: 100%;
        padding-bottom: 0;
        border: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    }
    html .cookie_item {
        line-height: 18px;
        margin: 0 -1px -1px 0;
        padding: 5px;
        font-size: 12px;
        border: 1px solid rgba(0, 0, 0, 0.2);
    }
    html .cookie_texts {
        padding-left: 0;
    }
    html .cookie_texts ul {
        margin-bottom: 0;
    }
    html .cookie_text_item h2 {
        font-size: 18px !important;
    }
}
