@import url("https://fonts.googleapis.com/css2?family=Overpass:wght@400;700&display=swap");
@-webkit-keyframes slide {
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
@keyframes slide {
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
.card {
  width: 25rem;
  height: auto;
  padding: 32px;
  border-radius: 32px;
  background: linear-gradient(45deg, #171E28 0%, #1E252F 100%);
  transform: translateY(-20px);
  opacity: 0;
  -webkit-animation: slide 0.6s ease-out forwards;
          animation: slide 0.6s ease-out forwards;
}
.card .star {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 45px;
  width: 45px;
  border-radius: 100%;
  background-color: #262F38;
}
.card h1 {
  margin-top: 32px;
  margin-bottom: 12px;
  font-size: 25px;
  font-weight: 700;
  color: #ffffff;
}
.card p {
  font-size: 15px;
  font-weight: 400;
  color: #848A96;
  line-height: 22px;
}
.card .rating {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 24px auto;
  width: 100%;
}
.card .rating button {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #262F38;
  color: #848A96;
  width: 45px;
  height: 45px;
  border-radius: 100%;
  cursor: pointer;
  transition: all 0.2s;
}
.card .rating button:hover {
  background-color: #848A96;
  color: #ffffff;
  transform: scale(1.1);
}
.card .rating button:active {
  background-color: #FC7614;
  color: #ffffff;
  transform: scale(0.95);
}
.card .rating button.active {
  background-color: #FC7614;
  color: #ffffff;
}
.card .rating button.active:hover {
  background-color: #C95703;
}
.card .submit {
  background-color: #FC7614;
  font-weight: 400;
  font-size: 15px;
  color: #ffffff;
  width: 100%;
  padding: 12px;
  border-radius: 24px;
  text-transform: uppercase;
  letter-spacing: 3px;
  transition: all 0.2s;
  cursor: pointer;
}
.card .submit:hover {
  background-color: #ffffff;
  color: #FC7614;
  transform: scale(1.05);
}
.card .submit:active {
  background-color: #ffffff;
  color: #FC7614;
  transform: scale(0.95);
}
.card .scoreImage {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 32px;
}
.card .scoreSelected {
  display: flex;
  justify-content: center;
  align-items: center;
}
.card .scoreSelected div {
  width: auto;
  display: inline-flex;
  padding: 6px 16px;
  border-radius: 24px;
  background-color: #262F38;
  color: #C95703;
}

.card#thankYou p,
.card#thankYou h1 {
  text-align: center;
}
.card#thankYou p {
  margin-bottom: 4px;
}

/* sm */
@media (max-width: 767.98px) {
  .card {
    width: auto;
    margin: auto 16px;
    padding: 32px 16px;
  }
}/*# sourceMappingURL=card.css.map */