@charset "UTF-8";
.show-popup {
  font-size: 14px;
  color: #00a19b;
  text-decoration: underline;
  display: inline-block;
  width: 21px;
  position: absolute;
  padding-top: 3px;
}

.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.7);
}

.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: 20px;
  padding-left: 0px;
  padding-bottom: 0px;
  padding-top: 0px;
  margin: 20px 0px;
  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;
}
.popup .scrollAreaWrapper ul {
  list-style: none;
  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;
}
.popup .scrollAreaWrapper em {
  font-size: 14px;
  color: #2b2b2b;
  font-style: normal;
}
@media (max-width: 768px) {
  .popup {
    width: 92%;
    padding: 20px;
  }
  .popup .p1 {
    font-size: 20px;
    width: 96%;
    margin: 0 auto 1em;
  }
}

.close-btn {
  position: absolute;
  top: 10px;
  cursor: pointer;
  right: 10px;
}

.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;
  }
}