.feedback {
  /* Set different background colors using adjacent sibling and custom data-color */
}
.feedback .modal-content {
  height: 90vh;
}
.feedback .modal-header {
  border-bottom: 0;
}
.feedback .modal-dialog-right {
  margin-left: auto;
  margin-right: 0;
}
.feedback h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}
.feedback p {
  margin: 10px 0;
  font-size: 16px;
}
.feedback .rating {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}
.feedback .rating label {
  cursor: pointer;
  position: relative;
}
.feedback .rating input {
  display: none;
}
.feedback .emoji {
  font-size: 32px;
  background: #eee;
  /* Default */
  border-radius: 50%;
  padding: 0 8px;
  display: inline-block;
  transition: 0.2s ease;
  color: #000;
}
.feedback .rating input:checked + .emoji[data-color=red] {
  background-color: red;
}
.feedback .rating input:checked + .emoji[data-color=orange] {
  background-color: orange;
}
.feedback .rating input:checked + .emoji[data-color=yellow] {
  background-color: yellow;
}
.feedback .rating input:checked + .emoji[data-color=yellowgreen] {
  background-color: yellowgreen;
}
.feedback .rating input:checked + .emoji[data-color=green] {
  background-color: green;
}
.feedback input[type=email],
.feedback textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
}
.feedback textarea {
  resize: vertical;
  height: 100px;
}
.feedback button {
  background-color: #ffb800;
  border: none;
  color: black;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
}
.feedback button:hover {
  background-color: #e6a700;
}

.form-control:focus {
  border-color: #e6a700 !important;
  box-shadow: 0 0 0 0 white;
}/*# sourceMappingURL=feedback.css.map */