
.hide {
    display: none;
  }
  .popupBox {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    padding: 0 10%;
    box-sizing: border-box;
    background-color: rgba(0, 0, 0, 0.5);
    overflow: auto;
    z-index: 99999;
  }
  .popupBox .popupTitle {
    color: #333333;
    font-size: 23px;
    line-height: 23px;
    text-align: center;
    padding-top: 25px;
  }
  .popupBox .btnBox {
    padding: 25px 20px;
  }
  .popupBox .btnBox .btn {
    width: 100%;
    height: 45px;
    font-size: 18px;
    color: white;
    text-align: center;
    line-height: 45px;
    border-radius: 22px;
    background-color: rgba(255, 76, 76, 0.85);
  }
  .popupBox .circleBox {
    width: 100%;
    position: absolute;
    bottom: -70px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .popupBox .circleBox .circle {
    width: 40px;
    height: 40px;
    font-weight: 300;
    color: white;
    font-size: 35px;
    text-align: center;
    line-height: 40px;
    font-weight: bold;
    border-radius: 50%;
    border: 2px solid white;
  }
  .popupBox .feedbackBox {
    flex: 1;
    margin-top: 30px;
    border-radius: 10px;
    background: linear-gradient(0deg, #ffffff 85%, rgba(0, 168, 255, 0.2) 100%);
    position: relative;
    background-color: white;
  }
  .popupBox .feedbackBox .questionType {
    padding: 0 20px;
    font-size: 16px;
    line-height: 16px;
    padding-top: 15px;
  }
  .popupBox .feedbackBox .feedbackList {
    padding: 10px 20px 0  20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  .popupBox .feedbackBox .feedbackList li {
    width: auto;
    padding: 8px 10px;
    font-size: 14px;
    line-height: 14px;
    margin: 5px 10px 0 0;
    border-radius: 5px;
    background-color: #FAFAFA;
  }
  .popupBox .feedbackBox .feedbackList li.active {
    color: white;
    background-color: rgba(255, 76, 76, 0.85);
  }
  .popupBox .feedbackBox .txtBox {
    padding: 10px 20px 0 20px;
    box-sizing: border-box;
  }
  .popupBox .feedbackBox .txtBox textarea {
    width: 100%;
    height: 100px;
    margin: 0;
    padding: 0;
    outline: 0;
    border: 0;
    color: #999999;
    padding: 8px 8px 8px 8px;
    font-size: 14px;
    background-color: #FAFAFA;
    box-sizing: border-box;
  }
  .popupBox .feedbackBox .phoeInfo {
    padding: 5px 20px 0 20px;
    font-size: 16px;
    line-height: 16px;
  }
  .popupBox .feedbackBox .phoneBox {
    padding: 10px 20px 0 20px;
    box-sizing: border-box;
  }
  .popupBox .feedbackBox .phoneBox input {
    width: 100%;
    height: 40px;
    outline: 0;
    border: 0;
    font-weight: 400;
    color: #999999;
    font-size: 14px;
    padding-left: 10px;
    border-radius: 20px;
    box-sizing: border-box;
    background-color: #FAFAFA;
  }
  .popupBox .feedbackBox .ySTxt {
    padding: 8px 20px 0 20px;
    color: #999999;
    font-size: 12px;
  }
  .feedbackBtn{padding: 2px 5px;border-radius: 5px 0 0 5px; position: absolute;cursor: pointer;top: 0px;right: 0px;height: 20px;font-size: 14px;color: red;line-height:20px;text-decoration: underline;}
  .feedbackBtn:before{content: "!";position: relative;top:4px;vertical-align: top;display: inline-block;padding: 0 4px;margin-right: 3px;height: 12px;line-height: 12px;font-size: 10px;border: 1px solid red;color:red;border-radius: 50%;text-align: center;}
  .feedbackBtn:hover{color: red}
  .feedbackBtn:hover:before{color: red;border-color:red}
  /* feedback */
  .feedbackBtn{cursor: pointer;}