@charset "UTF-8";
/*.show-popup {
  font-size: 16px;
  color: #00a19b;
   text-decoration: underline; 
  display: block;
}
*/

.active-body {
    /*  overflow: hidden;*/
    /*  display: none;*/
}

.overlay-bg.show {
    display: block;
}

.overlay-bg {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1000;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    cursor: pointer;
    z-index: 1001;
    /* fallback */
    background: rgba(0, 0, 0, 0.5);
}

.popup {
    display: block;
    background: #fff;
    position: absolute;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    max-width: 1000px;
    top: 50%;
    left: 50%;
    width: 80%;
    max-height: 100vh;
    padding: 20px 40px;
    height: auto;
    word-break: break-all;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    cursor: default;
    z-index: 10001;
    border-radius: 4px;
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.9);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.9);
}

.popup .scrollAreaWrapper {
    max-height: 70vh;
    background-color: transparent;
    padding-right: 1rem;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: #acacac #f0f0f0;
}

.popup .scrollAreaWrapper::-webkit-scrollbar {
    width: 6px;
}

.popup .scrollAreaWrapper::-webkit-scrollbar-track {
    background: #f0f0f0;
}

.popup .scrollAreaWrapper::-webkit-scrollbar-thumb {
    background: #acacac;
    border-radius: 20px;
}

.overlay-bg .popup .scrollAreaWrapper ul {
    padding-left: 2rem;
}

.overlay-bg .popup .scrollAreaWrapper ul li {
    list-style: inherit;
}


.overlay-bg .popup .scrollAreaWrapper ol {
    padding-left: 2rem;
}

.overlay-bg .popup .scrollAreaWrapper ol li {
    list-style: decimal;
}

.overlay-bg .popup .scrollAreaWrapper ol ul {
    padding-left: 1rem;
}

.overlay-bg .popup .scrollAreaWrapper ol ul li {
    list-style: disc;
}



/*.popup .scrollAreaWrapper ul {
  list-style: none;
  margin-left: 20px;
  font-size: 16px;
  margin-top: 0;
}
.popup .scrollAreaWrapper ul li::before {
  content: "•";
  padding-right: 8px;
}
.popup .scrollAreaWrapper ul ol {
  padding-left: 22px;
}
.popup .scrollAreaWrapper ul ol li {
  text-indent: 0px;
}
.popup .scrollAreaWrapper ul > li {
  padding-top: 2px;
  text-indent: -18px;
}*/
@media (max-width: 768px) {
    .popup {
        width: 92%;
        padding: 20px;
    }
}

.close-btn {
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 30px;
    width: 48px;
    height: 48px;
    margin-left: 1rem;

}

.close-btn img {
    width: 100%;
}

.popup .scrollDown_btn {
    position: absolute;
    bottom: 20px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #fff;
    -webkit-box-shadow: 0px 0px 4px 2px #d9d9d9;
    box-shadow: 0px 0px 4px 2px #d9d9d9;
    color: #00a19b;
    border-radius: 30px;
    font-weight: bold;
    padding: 10px 15px;
    margin-bottom: 8px;
    cursor: pointer;
    width: 80%;
    max-width: 250px;
    text-align: center;
    font-size: 14px;
}

@media (prefers-color-scheme: dark) {
    .popup {
        background: #fffff;
    }
}