/*Theme*/
/*Color*/
.survey-intro {
  background: #00C4FF;
  -webkit-box-shadow: 0px 3px 26px #00000052;
          box-shadow: 0px 3px 26px #00000052;
  border-radius: 8px;
  padding: 30px;
  margin: 20px auto;
  width: 499px;
  padding: 3rem 5rem;
  display: none;
}
@media (max-width: 767px) {
  .survey-intro {
    padding: 1rem 2rem;
  }
}
.survey-intro .--heading {
  font-weight: normal;
  text-align: center;
  color: #fff;
  margin-bottom: 2rem;
}
.survey-intro__input {
  border: none;
  border-radius: 8px;
  width: 100%;
  padding: 0.75rem;
  font-size: 1.25rem;
}
.survey-intro__input:focus, .survey-intro__input:focus-within {
  outline: none;
  -webkit-box-shadow: 0 0 4px #00C4FF;
          box-shadow: 0 0 4px #00C4FF;
}
.survey-intro__submit {
  height: 0;
  width: 0;
  visibility: hidden;
}

.survey-question {
  display: none;
}

.dropdown {
  width: 100%;
  position: relative;
  border-radius: 8px;
  -webkit-box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.2);
  margin-top: 15px;
}
.dropdown:hover .dropdown-list {
  display: block;
}

.dropdown-caret {
  color: #00C4FF;
}

.dropdown-select {
  background-color: white;
  -webkit-box-shadow: #00C4FF;
          box-shadow: #00C4FF;
  padding: 1.25rem;
  border-radius: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  cursor: pointer;
}

.dropdown-select * {
  pointer-events: none;
}

.dropdown-list {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  padding: 0;
  background-color: white;
  border-radius: 8px;
  list-style-type: none;
  width: 100%;
  -webkit-box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  display: none;
  z-index: 10;
}

.dropdown-list.show {
  display: block;
}

.dropdown-item {
  padding: 1.5rem;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
  cursor: pointer;
}

.dropdown-item:hover {
  color: #fff;
  background-color: #00C4FF;
}

.question-line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-left: -15px;
  margin-right: -15px;
}
.question-line__item {
  -ms-flex-preferred-size: calc(100% / 3);
      flex-basis: calc(100% / 3);
  padding-left: 15px;
  padding-right: 15px;
}

.question__item {
  margin-bottom: 5rem;
}
.question__item .--heading {
  font-size: 24px;
  color: #000;
}
.question__item .--title {
  color: #666;
  font-size: 20px;
  font-weight: normal;
}

.question__submit {
  background: #00C4FF;
  -webkit-box-shadow: 0px 3px 6px #00000029;
          box-shadow: 0px 3px 6px #00000029;
  border-radius: 8px;
  padding: 0.75rem;
  text-align: center;
  width: 272px;
  text-transform: uppercase;
  color: #fff;
  border: none;
  font-size: 24px;
  display: block;
  margin: 20px auto;
  -webkit-transition: 200ms ease-in;
  -o-transition: 200ms ease-in;
  transition: 200ms ease-in;
}
.question__submit:hover {
  -webkit-box-shadow: 0 0 10px #00C4FF;
          box-shadow: 0 0 10px #00C4FF;
}