.pop {
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    display: none;
    border: 1px solid #383838;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    border-radius: 4px;
    -webkit-box-shadow: 0 15px 20px rgba(0, 0, 0, 0.22), 0 19px 60px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0 15px 20px rgba(0, 0, 0, 0.22), 0 19px 60px rgba(0, 0, 0, 0.3);
    -ms-box-shadow: 0 15px 20px rgba(0, 0, 0, 0.22), 0 19px 60px rgba(0, 0, 0, 0.3);
    box-shadow: 0 15px 20px rgba(0, 0, 0, 0.22), 0 19px 60px rgba(0, 0, 0, 0.3);
    -webkit-animation: fade 0.5s;
    -moz-animation: fade 0.5s;
    animation: fade 0.5s;
}
.pop_h1 {
	font-size: 1em;
    overflow: hidden;
    white-space: nowrap;
    font-weight: 500;
    color: #2f2f2f;
}
.pop_index5 {
    z-index: 5;
}
.pop_index1 {
    z-index: 1;
}
.pop_index1d {
    z-index: -1;
}
.pop_index10 {
    z-index: 10;
}
.pop_index100 {
    z-index: 100 !important;
}
.pop_notice {
    position: relative;
    margin: 0 auto;
    z-index: 2;
    top: 0px;
    overflow-y: auto;
    max-height: 94%;
}
.pop_effect .pop_main {
    -webkit-transform: scale(0.7);
    -moz-transform: scale(0.7);
    -ms-transform: scale(0.7);
    transform: scale(0.7);
    opacity: 0;
    -webkit-transition: all 0.15s;
    -moz-transition: all 0.15s;
    transition: all 0.15s;
}
.pop_show.pop_effect .pop_main {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
}
.pop_window {
    padding: 5px;
    font-family: "Rubik", sans-serif;
}
.pop_modal {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100vw;
    overflow: auto;
    max-height: 100vh;
    min-height: 100vh;
    align-items: center;
}
.pop_pos {
    min-height: 100vh;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
	padding: 10px;
}
.pop_show {
    visibility: visible;
    z-index: 50;
}
.pop_overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 20;
    opacity: 9;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.7);
}
.pop_close_win {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 9999;
}
.pop_show ~ .pop_overlay {
    opacity: 1;
    visibility: visible;
}
.pop_body {
    font-size: 14px;
    color: #3c3c3c;
    line-height: 1.5em;
    position: relative;
    word-wrap: break-word;
    word-break: normal;
    word-break: break-word;
    padding: 5px 30px 15px 30px;
}
.pop_overflow {
    overflow-y: auto;
    overflow-x: hidden;
}
.pop_dark {
    background-color: #141b21;
}
.pop_head {
    padding: 20px 30px 0px 30px;
    font-size: 24px;
    color: #000000;
    font-weight: bold;
    line-height: 1.4em;
    border-radius: 5px 5px 0px 0px;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: space-between;
}
.pop_head_txt {
    white-space: nowrap;
    overflow: hidden;
	font-weight: 500;
}
.pop_bg {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    z-index: 1;
    height: 100%;
    width: 100%;
    backdrop-filter: blur(3px);
}
.pop_main {
    background-color: #ffffff;
    box-shadow: 0 0 10px #000;
    position: relative;
    margin-top: 2em;
    margin-bottom: 4em;
    border-radius: 7px;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.pop_btn_close {
	outline: none;
    background: none;
    border: none;
    outline: none;
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
    border-radius: 4px;
    font-size: 17px !important;
    opacity: 0.5;
    transition: 0.2s ease-in-out;
    float: right;
    color: #797979;
}
.pop_btn_close:hover {
    opacity: 1;
    cursor: pointer;
}
.pop_close_button {
    color: #000;
    outline: none;
    background: none;
    border: none;
    outline: none;
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
    border-radius: 4px;
    font-size: 26px;
    font-weight: bold;
    opacity: 0.5;
    transition: 0.2s ease-in-out;
    float: right;
    padding: 0px;
}
.pop_close_button:hover {
    background: none;
    color: #000;
    opacity: 1;
}
.pop_ul {
    padding-left: 0;
    margin: 0px;
}
.pop_li { 
    list-style-type: none;
    margin: 0px;
    margin-bottom: 10px;
}