  .popupTwo {
      height: 100vh;
      width: 100%;
      position: fixed;
      top: 0;
      left: 0;
      background-color: rgba(0, 0, 0, 0.8);
      z-index: 9999;
  }

  .popup__contentTwo {
      padding: 20px 24px;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background-color: #FFFFFF;
      box-shadow: 0px 2px 16px rgba(0, 24, 26, 0.12);
      border-radius: 8px;
      overflow: hidden;
      width: 660px;
      height: auto;
  }

  .popup__textTwo{
      display: flex;
      flex-direction: column;
  }

.popUp_inner_span{

}

  .popup__btn-containerTwo_Yes {
      width: 63px;
      height: 38px;
      text-align: center;
      cursor: pointer;
      background: #007983;
      border-radius: 4px;
      padding: 8px 16px;
      letter-spacing: 0.2px;
      text-transform: uppercase;
      color: white;
      float: right;
      font-weight: 600;
      margin-top: 18px;
      margin-left: 8px;
  }

  .popup__btn-containerTwo_Yes:hover {
    color: #007983;
    background: transparent;
    border: 1px solid #007983;
  }

        .popup__btn-containerTwo_No {
            width: 80px;
            height: 38px;
            text-align: center;
            cursor: pointer;
            background: transparent;
            border:1px solid #007983 ;
            border-radius: 4px;
            padding: 8px 16px;
            letter-spacing: 0.2px;
            text-transform: uppercase;
            color: #007983;
            float: right;
            font-weight: 600;
            margin-top: 18px;
        }

                  .popup__btn-containerTwo_No:hover {
                      background: #007983;
                      color: white;
                     
                  }

  @media only screen and (max-width: 768px) {
      .popup__contentTwo {
          width: 90%;
          padding: 30px;
          height: auto;
      }
  }