.bg_onetime_popup {
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 9999;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
}

.bg_onetime_popup.js_active {
    opacity: 1;
    visibility: visible;
}

.onetime_popup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 80%;
    min-width: 500px;
    cursor: pointer;
    max-width:800px;
}

.onetime_popup_title {
    position: relative;
    padding: 15px 90px;
    margin: 0px;
    background-color: #01B2B9;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    line-height: 1.5;
    border-radius: 10px 10px 0 0;
}
.onetime_popup_title::before,
.onetime_popup_title::after {
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    width: 30px;
    height: 4px;
    background-color: #fff;
    content: "";
}
.onetime_popup_title::before {
    transform: rotate(45deg);
}
.onetime_popup_title::after {
    transform: rotate(-45deg);
}

.onetime_popup_content {
    padding: 5%;
    text-align: left;
    background-color: #fff;
}
.onetime_popup_content strong {
  font-weight: bold;
}

@media screen and (max-width: 740px) {
  .onetime_popup {
      position: absolute;
      top: 40%;
      left: 50%;
      overflow: scroll;
      transform: translateX(-50%) translateY(-50%);
      width: 95%;
      height:80%;
      min-width:300px;
      cursor: pointer;
  }


}
