/* #region: Modal CSS */
.modal-section .modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.58);
    padding-top: 120px;
  }
  
  .modal-section .modal-content {
    background-color: #fefefe;
    margin: 0 auto;
    padding: 20px;
    width: 782px;
    max-width: 95%;
    min-height: 200px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    background-color: #fff;
    border-radius: 40px;
  }
  
  .modal-section .modal-close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    display: flex;
    justify-content: end;
  }
  
  .modal-section .modal-close:hover,
  .modal-section .modal-close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }
  
  .modal-section .modal-container {
    padding: 20px;
  }
  
  .input-wrapper {
    margin-bottom: 1rem !important;
  }
  
  .input-label {
    display: inline-block;
    margin-bottom: 1rem;
    font-size: 18px;
    font-weight: 400;
    color: #000000;
  }
  
  .input-control {
    display: block;
    width: 100%;
    padding: 1.2rem 0.75rem;
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #ededed;
    background-clip: padding-box;
    border: 1px solid #000000;
    border-radius: 8px;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  }
  
  .input-control:focus {
    color: #000000;
    background-color: #ededed;
    border-color: #000000;
    outline: 0;
    box-shadow: 0 0 0 0.1rem rgba(13, 110, 253, 0.13);
  }
  
  .feedback-stars {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 60px;
    display: flex;
    justify-content: space-between;
  }
  
  .feedback-star {
    cursor: pointer;
  }
  
  .feedback-star svg {
    color: white;
    fill: currentColor;
  }
  
  .selected svg {
    color: #ffc805;
    fill: currentColor;
  }
  
  .submit-btn {
    background-color: #08c10f;
    border: 0;
    font-size: 18px;
    color: #000000;
    font-weight: 400;
    padding: 19px 92px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    border-radius: 8px;
    cursor: pointer;
  }
  /* Thank-You container styles */
  .thank-you-container {
    display: none;
    align-items: center;
    justify-content: center;
  }
  
  .thank-you-text {
    position: absolute;
    font-family: "Chela One";
    color: #25262b;
    font-size: 80px;
    font-weight: 400;
  }
  
  .thank-you-bg {
    width: 653px;
    height: 585px;
    background-image: url("https://tezoofficial.blob.core.windows.net/express-app/images/2024/june/thankyou-bg1.svg");
    animation: zoom-in-zoom-out 2s ease infinite;
  }
 /* Keyframes for the zoom in zoom out animation */
  @keyframes zoom-in-zoom-out {
  0% {
      transform: scale(0, 0);
  }

  35% {
      transform: scale(0.85, 0.85);
  }

  50% {
      transform: scale(0.85, 0.85);
  }
  
  90% {
      transform: scale(0.85, 0.85);
  }

  100% {
      transform: scale(0, 0);
  }
}

  
  /* #endregion */
  