
.feedback-popup {
    background: #fff;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    width: 80%;
    max-width:900px;
    margin: auto;
    padding: 0 20px;
    display: none;
  }
  
  .feedback-popup .popup-header {
    padding: 7px 0;
    border-bottom: 1px solid #d6d6d6;
  }
  
  .feedback-popup .popup-header .popup-header-title {
    font-size:15px;
    color:#333;
  } 
  
  .feedback-popup .popup-header .question-count {
    position: absolute;
    background: #FFF0C7;
    padding: 6px 20px;
    bottom: 100%;
    top: auto;
    line-height: normal;
    transform: none;
    left: -20px;
    font-size: 16px;
    width: 170px;
    text-align: center;
  }
  
  .feedback-popup .footer-bottom-div {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    border-top: 1px solid #ccc;
    background: #fff;
  }
  
  .feedback-popup ul {
    list-style: none;
    /* margin-bottom: 70px; */
  }
  
  .feedback-popup .sidepanel-close-button {
    right: 0;
  }
  
  .feedback-popup .sidepanel-close-button svg {
    height: 19px;
    background: transparent;
  }
  
  .feedback-popup .question-text {
    max-height: 360px;
    margin-bottom: 90px;
  }
  
  .feedback-popup .question-text ul li {
    position: relative;
    width: 95%;
    padding: 0 30px;
    margin-bottom: 15px;
    border-radius: 33px;
    font-size: 13px;
  }
  
  .feedback-popup .container.mcq .checkmark {
    background-color: #fff;
  }
  
  .feedback-popup .question-text ul li.active.right {
    background: rgba(15, 209, 128, 0.1803921568627451);
    border: 1px solid #4caf50;
  }
  
  .feedback-popup .question-text ul li.active.wrong {
    background: rgba(244, 67, 54, 0.18);
    border: 1px solid rgb(244, 67, 54);
  }
  
  .feedback-popup .question-text ul li .right-wrong-icon {
    position: absolute;
    right: -33px;
    top: 0;
    bottom: 0;
    margin: auto;
  }

  @media screen and (min-width: 1024px) {
    .feedback-popup {
      height: 500px;
    }
  }

  @media only screen and (max-width: 900px) and (orientation: landscape) {
    .feedback-popup {
        top: auto;
        transform: none;
        width: 100%;
        height: auto;
      }
  }