.modal-overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    place-content: center;
    place-items: center;
    padding: 30px;
    z-index: 9999999999;
    display: none;
  }
  
  .modal-overlay .modal {
    background: #FFF;
    padding: 25px;
    padding-top: 40px;
    border-radius: 30px;
    width: 100%;
    max-width: 560px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    margin: auto;
  }
  
  .modal-overlay .modal .close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 20px;
    color: #000;
    font-family: "MontserratBold";
  cursor: pointer;
  }
  
  .modal-overlay .modal h1 {
    display: block;
    margin-bottom: 30px;
    text-align: center;
    font-size: 16px;
  }
  .modal-overlay .modal h3 {
    display: block;
    margin-bottom: 30px;
    text-align: center;
    font-size: 14px;
  }
  
  .modal-overlay .modal .stars {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
    justify-content: center;
  }
  
  .modal-overlay .modal .stars a {
    color: var(--orange);
    display: block;
    font-size: 20px;
  }
  
  .modal-overlay .modal .stars .active i {
    display: inline-block;
  }
  
  .modal-overlay .modal .stars .active .fas {
    display: inline-block;
  }
  
  .modal-overlay .modal .stars .active .far {
    display: none;
  }
  
  .modal-overlay .modal .stars a .fas {
    display: none;
  }
  
  
  .modal-overlay .modal .text {
    margin-bottom: 10px;
    font-size: 16px;
    text-align: center;
  }
  
  
  .modal-overlay .modal .input-container {
    margin-bottom: 20px;
  }
  
  .modal-overlay .modal textarea {
    width: 100%;
    min-height: 150px;
    resize: none;
  }
  
  .modal-overlay .modal .action .button {
    text-decoration: none;
    display: block;
    text-align: center;
    padding: 20px;
    font-size: 16px;
    width: 100%;
    display: block;
    margin: 0 auto;
    max-width: 300px;
    height: auto;
  }