html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

.nps-hearts {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.4rem;
}

.nps-heart-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.nps-heart-label {
  position: relative;
  width: 1.7rem;
  height: 1.7rem;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  user-select: none;
}

.nps-heart-outline,
.nps-heart-filled {
  position: absolute;
  top: 0;
  left: 0;
}

.nps-heart-outline {
  color: #b2b2b2;
}

.nps-heart-filled {
  color: #ff8a00;
  opacity: 0;
}

.nps-heart-label.is-selected .nps-heart-filled {
  opacity: 1;
}

.nps-heart-label.is-selected .nps-heart-outline {
  opacity: 0;
}

.nps-heart-label:hover .nps-heart-filled {
  opacity: 1;
}

.nps-heart-label:hover .nps-heart-outline {
  opacity: 0;
}

.nps-heart-label:focus-within .nps-heart-filled {
  color: #ff8a00;
  opacity: 1;
}
