
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); 
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000; 
  }
  
  .popup {
    background-color: #fff;
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1001;
   
  }
  
  .close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    cursor: pointer;
  }
  

  /* rating */

  .starrating {
    display:flex;
    flex-direction: row-reverse;
    font-size:1.5em;
    justify-content:space-around;
    padding:0 .2em;
    text-align:center;
    width:5.5em;
   
  }

  .ratebox h4 {
    font-size: 20px;
    color: #5f5f5f;
    line-height: 24px;
    text-transform: capitalize;
    font-family: 'Poppins';
}
  
  .starrating input {
    display:none;
  }
  
  .starrating label {
    color:#ccc;
    cursor:pointer;
    font-size:30px !important;
  }
  
  .starrating :checked ~ label {
    color:#f90 !important;
  }
  
  .starrating label:hover,
  .starrating label:hover ~ label {
    color:#fc0;
  }
  
  
  
  
  a.post-review {
      font-size: 14px;
      background: #dd894d;
      padding: 8px 15px;
      color: #fff;
      border-radius: 3px;
      position: relative;
      top: 12px;
      font-weight: 550;
  }
  
  .rate {
     height: 46px;
     text-align: left;
  }

  .rate:not(:checked) > input {
      position:absolute;
      top:-9999px;
  }

  .rate:not(:checked) > label {
      float:left;
      width:1em;
      overflow:hidden;
      white-space:nowrap;
      cursor:pointer;
      font-size:30px !important;
      color:#ccc;
  }

  .rate:not(:checked) > label:before {
      content: '★ ';
  }

  .rate > input:checked ~ label {
      color: #ffc700;    
  }

  .rate:not(:checked) > label:hover,
  .rate:not(:checked) > label:hover ~ label {
      color: #deb217;  
  }

  .rate > input:checked + label:hover,
  .rate > input:checked + label:hover ~ label,
  .rate > input:checked ~ label:hover,
  .rate > input:checked ~ label:hover ~ label,
  .rate > label:hover ~ input:checked ~ label {
      color: #c59b08;
  }


