
 /* Popup Open button */

  .popup {
      position:fixed;
      top:0px;
      left:0px;
      background:rgba(0,0,0,0.75);
      width:100%;
      height:100%;
      display:none;
      z-index: 1000;
  }

  /* Popup inner div */
  .popup-content {
      width: 500px;
      margin: 0 auto;
      box-sizing: border-box;
      padding: 40px;
      margin-top: 20px;
      box-shadow: 0px 2px 6px rgba(0,0,0,1);
      border-radius: 3px;
      background: #fff;
      position: relative;
  }

  /* Popup close button */
  .close-button {
      width: 25px;
      height: 25px;
      position: absolute;
      top: -10px;
      right: -10px;
      border-radius: 20px;
      background: rgba(0,0,0,0.8);
      font-size: 20px;
      text-align: center;
      color: #fff;
      text-decoration:none;
  }

  .close-button:hover {
      background: rgba(0,0,0,1);
  }
  .service-fee{
  position: relative;
  left: -20px;
  }

  .service-fee-option.option-panel {
  padding-left: 20px;
  padding-right: 20px;
  }

  @media screen and (max-width: 720px) {
  .popup-content {
      width:90%;
      }
  }