.evaluateContainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-top: var(--navbar-height);
  width: 80%;
  margin: 0 auto;
  padding-bottom: 50px;
}

.evaluateButtonContainer {
  z-index: 200;
}

.evaluationCompletedContainer {
  padding-top: var(--navbar-height);
  width: 80%;
  margin: 0 auto;
  padding-bottom: 50px;
  height: 100vh;
  overflow-y: scroll;
}

.evaluationCompletedContainer_svg {
  text-align: center;
  padding-top: 30px;
}

.evaluationCompletedContainer_title {
  margin-bottom: 40px;
  font-size: 1.4em;
  padding: 20px;
  text-align: center;
}

.evaluationCompletedContainer_title h3 {
  color: #333333;
  font-size: 15px;
  font-weight: normal;
  -webkit-animation: evaluate-animation-up 0.5s 1s ease forwards;
  animation: evaluate-animation-up 0.5s 1s ease forwards;
  opacity: 0;
}

.evaluationCompletedContainer_content {
  color: #636363;
  font-size: 14px;
  font-weight: normal;
  margin-bottom: 40px;
}

.evaluationCompletedContainer_content_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px;
  -webkit-animation: evaluate-animation-up 0.5s 1s ease forwards;
  animation: evaluate-animation-up 0.5s 1s ease forwards;
  opacity: 0;
}

.evaluationCompletedContainer_content_item strong {
  color: #F9C647;
  margin-right: 10px;
}

.evaluationCompletedContainer_svg img {
  width: 90px;
  height: 90px;
  -webkit-animation: animation-text-yes 1.5s 0s ease forwards;
  animation: animation-text-yes 1.5s 0s ease forwards;
  opacity: 0;
}

.evaluateInput {
  bottom: -600px;
  width: 100%;
  margin-left: 0px;
  z-index: 100;
  transition: 0.5s;
  background-color: white;
  font-size: 13px !important;
  position: fixed;
  box-shadow: 0 0 20px rgba(0, 0, 0, .2);
}

.evaluateContainerTitle {
  font-size: 16px;
  padding: 40px 0;
  text-align: center;
  -webkit-animation: evaluate-animation-up 0.5s .5s ease forwards;
  animation: evaluate-animation-up 0.5s .5s ease forwards;
  opacity: 0;
}

.evaluateContainerTitle h3 {
  color: #333333;
  font-size: 20px;
  font-weight: normal;
}

.evaluateContainerContent {
  color: #333333;
  font-size: 16px;
  font-weight: normal;
  text-align: center;
  line-height: 40px;
  margin-bottom: 40px;
  -webkit-animation: evaluate-animation-up 0.5s .5s ease forwards;
  animation: evaluate-animation-up 0.5s .5s ease forwards;
  opacity: 0;
}

.evaluateContainerContent span {
  background: #efeff4;
  border: 0;
  border-radius: 3px;
  color: var(--main-color);
  white-space: nowrap;
}

.evaluateContainerContent span i {
  margin-left: 2px;
}

.aconselhoTitle {
  margin-top: 30px;
  text-align: center;
}

.aconselhoTitle h3 {
  color: #333333;
  font-size: 16px;
  font-weight: normal;
  -webkit-animation: evaluate-animation-up 0.5s .5s ease forwards;
  animation: evaluate-animation-up 0.5s .5s ease forwards;
  opacity: 0;
}

.aconselhoTitle h4 {
  font-weight: normal;
  font-size: 11px;
  margin-bottom: 30px;
  -webkit-animation: evaluate-animation-up 0.5s .6s ease forwards;
  animation: evaluate-animation-up 0.5s .6s ease forwards;
  opacity: 0;
  color: #4A4A4A;
}

.aconselhoContent {
  width: 100%;
  margin: 0 auto;
  color: #4A4A4A;
  font-weight: normal;
  margin-top: 60px;
  text-align: center;
}

.aconselhoContentItem {
  margin-bottom: 20px;
  -webkit-animation: evaluate-animation-up 0.5s .7s ease forwards;
  animation: evaluate-animation-up 0.5s .7s ease forwards;
  opacity: 0;
  font-size: 12px;
}

.aconselhoContentItem {
  color: #2142EB;
  font-size: 14px;
  font-weight: normal;
}

.aconselhoContentPrice {
  color: #636363;
  font-size: 11px;
  text-align: center;
  -webkit-animation: evaluate-animation-up 0.5s .8s ease forwards;
  animation: evaluate-animation-up 0.5s .8s ease forwards;
  opacity: 0;
}

.aconselhoContentPrice span {
  color: #2142EB;
}

@-webkit-keyframes lds-ring {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes lds-ring {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes evaluate-animation-up {
  0% {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes evaluate-animation-up {
  0% {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

@-webkit-keyframes animation-text-yes {
  0% {
    -webkit-transform: scale(3) translateY(100px);
    transform: scale(3) translateY(100px);
    opacity: .5;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes animation-text-yes {
  0% {
    -webkit-transform: scale(3) translateY(100px);
    transform: scale(3) translateY(100px);
    opacity: .5;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}