:root {
  --blue-color: #007faa;
  --danger-color: red;
}
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0 20px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}
.banner {
  padding: 40px 0;
  display: flex;
  justify-content: center;
}
.banner_img {
  width: 100%;
}

.title {
  margin-bottom: 60px;
  color: var(--blue-color);
  text-align: center;
}

fieldset {
  border: none;
  max-width: 900px;
  margin: 0 auto 40px;
  padding: 0;
  position: relative;
}

.question {
  display: block;
  font-weight: 300;
  font-size: 1.3rem;
  margin-bottom: 30px;
  position: relative;
}
.question > :first-child {
  position: absolute;
  display: none;
  top: calc(100% + 5px);
  color: #000;
  padding: 2px 10px;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 50px;
  /* background-color: var(--danger-color); */
}
button {
  color: #fff;
  border: none;
  display: block;
  margin: 0 auto;
  font-size: 1rem;
  padding: 15px 25px;
  background-color: var(--blue-color);
}

.contStars {
  padding: 10px 0;
  display: flex;
  justify-content: space-around;
  background-color: #e2e2e2;
}
[class^="star"] {
  width: 40px;
  height: 40px;
  color: #fff;
  margin: 0;
}
.star-hover-blue {
  color: var(--blue-color);
}
.star-permanent-blue {
  color: var(--blue-color);
}
svg {
  width: 100%;
}

.textarea {
  width: 100%;
  height: 100px;
  resize: none;
  display: block;
  font-size: 1rem;
  font-weight: 100;
  outline: none;
}

.outline-blue {
  border: 1px solid var(--blue-color);
  outline: 1px solid var(--blue-color);
}

.opinionCounter {
  position: absolute;
  right: 0;
  font-size: 1rem;
  font-weight: 300;
}
.danger-color {
  color: var(--danger-color);
}
.danger-color::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 1px;
  border-left: 20px solid var(--danger-color);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}
.danger-color > :first-child {
  display: block;
}

.hide {
  display: none;
}
.show {
  display: block;
}

.flex-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.loadingSection-spinner-cont {
  width: 50vh;
}
.loadingSection-spinner {
  width: 100%;
}
.sending {
  position: absolute;
  color: var(--blue-color);
  font-size: 1.5rem;
}

.gracias {
  color: var(--blue-color);
  margin-top: 60px;
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  /* padding: 50px 70px 60px; */
  border-radius: 20px;
}
.gracias-info {
  text-align: center;
  margin-top: 20px;
  font-size: 1.2rem;
  font-weight: 300;
}
