/* overlay ad js */
 .body-page .modal1 {
  position: fixed !important;
         left: 0 !important;
      top: 0!important;
      width: 100%!important;
      height: 100%!important;
        background-color: rgba(0, 0, 0, 0.5)!important;
    opacity: 0;
       visibility: hidden;
      transform: scale(1.1)!important;
      transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s!important;
    }

  .body-page .modal-content1 {
     position: absolute!important;
      top: 50%!important;
      left: 50%!important;
      transform: translate(-50%, -50%)!important;
      background-color: white !important;
      width: 800px!important;
      border-radius: 0.5rem!important;
    }

    .close-button {
      float: right;
      width: 1.5rem;
      line-height: 1.5rem;
      text-align: center;
      cursor: pointer;
      background-color: lightgray;
    }

    .close-button:hover {
      background-color: darkgray;
    }

    .show-modal {
      opacity: 1 !important;
      visibility: visible!important;
      transform: scale(1.0)!important;
      transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s!important;
      z-index: 999!important;
    }

    .close-add {
      position: absolute;
      top: -6px;
      right: -10px;
      width: 30px;
      height: 30px;
    }
    /* overlay js */
