﻿/*html,body{
    margin: 0;
    padding: 0;
    position: relative;
  }*/
  #popupContainer{
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
  }
  .popup-main-box {
    position: absolute;
    z-index: 222;
    width: 640px;
    height: 320px;
    background: linear-gradient(45deg, #ffffff, #d8d9da);
    left: 50%;
    top: 50%;
    margin: -160px 0 0 -320px;
  }
  
  .topFont {
    text-align: center;
    font-size: 44px;
    margin: 45px 0 0 0;
    color: #333;
  }
  
  .main-font {
    font-size: 16px;
    margin: 15px 0 0 0px;
    color: #333;
    text-align: center;
  }
  
  .popup-button {
    width: 230px;
    height: 50px;
    margin: 0 0 0 0px;
    text-align: center;
    border: 1px solid #333;
    background: rgba(255, 255, 255, 0.72);
    font-size: 18px;
    color: #333;
    cursor: pointer;
    text-align: center;
    margin-right:15px;
  }
  .popup-button:hover{
      background: rgba(255, 255, 255, 0.637);
  }
  .btn-yes{
      background: #333;
      color: #fff;
      margin-left: 15px;
  }
  
  .btn-yes:hover{
      background: rgba(51, 51, 51, 0.699);
  }
  .popup-mask{
    z-index: 10;
    background: #000;
    position: absolute;
    width:100vw ;
    height: 100vh;
    opacity: .6;
    left: 0;
    top: 0;
  }