:root {
  --width: 693px;
}

.form-feedback__content-wrap {
  background: var(--colorWhite);
  padding: 50px 35px 35px;
  position: relative;
  width: var(--width);
  margin: 20px auto;
  box-shadow: 1px 2px 4px #0000000f;
  opacity: 1;

  & button {
    min-width: 0px !important;
  }
}

.form-feedback__input {
  margin-bottom: 20px;
  position: relative;
  @media (max-width: 768px) {
    margin-bottom: 0;
  }
}

.form-feedback__input textarea {
  @media (max-width: 768px) {
    height: 150px;
  }
}

.form-feedback__submit {
  display: flex;
  justify-content: center;
  align-items: center;
}

.form-feedback__submit button {
  min-width: 176px;
  width: fit-content;
  height: 49px;
  @media (max-width: 768px) {
    height: 43px;
  }
}

.form-feedback__content-text {
  text-align: left;
  font-weight: var(--fontWeightBold);
  margin-bottom: 30px;
  font-size: 24px;
}

.form-feedback__option {
  width: 50%;
  display: flex;
}

.form-feedback__option button {
  font-weight: var(--fontWeightNormal);
  font-size: 18px;
  height: 49px;
  @media (max-width: 768px) {
    height: 43px;
  }
}

.form-feedback__option-yes {
  margin-right: 10px;
}

.form-feedback__rating-box {
  width: 100%;
  margin-bottom: 10px;
}

.form-feedback__rating-boxtitle {
  width: 280px;
  display: inline-block;
  font-size: 16px;
  color: #404040;
}

.form-feedback__rating-unhappytext {
  float: left;
}

.form-feedback__rating-happytext {
  float: right;
}

.form-feedback__rating-starbox {
  width: 305px;
  display: inline-block;
}

.form-feedback__rating-starimprovebox {
  margin-top: 30px;
}

.form-feedback__technician-text {
  text-align: left;
  color: #404040;
  font-size: 16px;
  margin-bottom: 10px;
}

.form-feedback__technician-options {
  font-size: 18px;
  font-weight: var(--fontWeightNormal);
  margin-bottom: 20px;
}

.form-feedback__technician-optionsbutton {
  margin-right: 10px;
  margin-bottom: 10px;
  display: inline-block;
}

.form-feedback__technician-optionsbutton button {
  font-weight: var(--fontWeightNormal);
  height: 49px;
  @media (max-width: 768px) {
    height: 43px;
  }
}

.form-feedback__content-thankstext {
  text-align: center;
  font-size: 24px;
  font-weight: var(--fontWeightBold);
  margin-bottom: 30px;
}

.form-feedback__like-box {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 16px;
  width: 100%;
  color: #404040;
}

.form-feedback__least-likely {
  float: left;
}

.form-feedback__most-likely {
  float: right;
}

.form-feedback__rating-number {
  margin-bottom: 20px;
}

.form-feedback__rating-number ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, 49px);
  grid-gap: 10px 5px;
  padding: 0;
  list-style: none;
  justify-content: space-between;
  @media (max-width: 768px) {
    grid-template-columns: repeat(auto-fit, 43px);
  }
}

.form-feedback__rating-number li {
  width: auto;
}

li.form-feedback__active button {
  color: rgb(255, 255, 255);
  background-color: rgb(20, 32, 70);
}

.form-feedback__rating-number button {
  border-radius: 50%;
  display: flex;
  align-content: center;
  justify-content: center;
  width: 49px;
  height: 49px;
  padding: 0;
  align-items: center;
  font-size: 20px;
  font-weight: var(--fontWeightNormal);
  @media (max-width: 768px) {
    height: 43px;
    width: 43px;
  }
}

.form-feedback__star {
  height: 45px;
  width: 45px;
  margin-right: 15px;
  @media (max-width: 768px) {
    height: 43px;
    width: 43px;
  }
}

.loading__dot {
  display: inline-block;
  position: relative;
  top: -5px;
  opacity: 0;
  animation: showHideDot 1.5s ease-in-out infinite;
}

.loading__dot::after {
  content: '.';
  font-size: 3.5em;
  line-height: 0;
}

.loading__dot-one {
  animation-delay: 0.2s;
}
.loading__dot-two {
  animation-delay: 0.4s;
}
.loading__dot-three {
  animation-delay: 0.6s;
}

@keyframes showHideDot {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/* QUERIES */
@media screen and (max-width: 700px) {
  .form-feedback__content-wrap {
    width: 100% !important;
    margin: 10px auto;
    padding: 30px 24px 40px;
  }
  .form-feedback__content-text {
    font-size: 20px;
  }

  .form-feedback__rating-boxtitle {
    font-size: 14px;
  }

  .form-feedback__like-box {
    font-size: 14px;
  }
}

.form-feedback__error {
  color: var(--colorRed);
  font-weight: 400;
  font-size: 12px;
  margin-left: 12px;
  display: block;
  margin-top: 3px;
}
