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

.active-body {
  overflow: hidden;
}

.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: none;
  background: #fff;
  position: absolute;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  top: 50%;
  left: 50%;
  height: auto;
  word-break: break-all;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  cursor: default;
  z-index: 10001;
  /* border-radius: 8px; */
  padding: 5px 25px;
}
.popup
.poptitle{
  text-align: center;
  font-size: 1.5em;
  font-weight: 500;

}
.popup .scrollAreaWrapper::-webkit-scrollbar {
  width: 6px;
}
.popup .scrollAreaWrapper::-webkit-scrollbar-track {
  background: #f0f0f0;
}
.popup .scrollAreaWrapper::-webkit-scrollbar-thumb {
  background: #acacac;
  border-radius: 20px;
}
.popup .scrollAreaWrapper {
  background: transparent;
}
.popup .scrollAreaWrapper ul {
  list-style: none;
  font-size: 16px;
  margin-top: 0;
  background: transparent;
}
.popup .scrollAreaWrapper ul ol {
  padding-left: 22px;
}
.popup .scrollAreaWrapper ul ol li {
  text-indent: 0px;
}
.popup .scrollAreaWrapper ul > li {
  padding-top: 2px;
}
@media (max-width: 768px) {
  .popup {
    width: 92%;
    padding: 20px;
  }
  .popup .p1 {
    font-size: 16px;
    width: 96%;
    margin: 0 auto 1em;
  }
}

.close-btn {
  position: absolute;
  top: 10px;
  cursor: pointer;
  right: 10px;
  z-index: 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: #e6e6e6;
  }
} */