/*!
 * fcw 
 *  
 * Art Samvelyan 
 */

.timeline {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  width: 100%;
  margin: 40px 0;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  right: 10px;
  height: 1px;
  background: #ccc;
  z-index: 0;
}
.timeline__step {
  text-align: center;
  position: relative;
}
.timeline__dot {
  width: 12px;
  height: 12px;
  border: 2px solid #ccc;
  border-radius: 50%;
  background: white;
  cursor: pointer;
  position: relative;
  z-index: 1;
  margin: 0 auto;
  transition: background 0.3s, box-shadow 0.3s;
}
.timeline__dot--active {
  border: 2px solid white;
  box-shadow: 0 0 0 1px white;
}
.timeline__dot--red {
  background: #ff6937;
  box-shadow: 0 0 0 1px #ff6937;
}
.timeline__dot--yellow {
  background: #ffd54f;
  box-shadow: 0 0 0 1px #ffd54f;
}
.timeline__dot--green {
  background: #37ff37;
  box-shadow: 0 0 0 1px #37ff37;
}
.timeline__number {
  margin-top: 15px;
  color: black;
}

.modal-wrapper {
  text-align: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s;
  background-color: rgba(0, 0, 0, 0.7490196078);
}
.modal-wrapper.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 999;
  overflow: hidden;
}
.modal-wrapper.active .modal-content {
  opacity: 1;
}
.modal-wrapper .modal-content {
  z-index: 1;
  opacity: 0;
  transition: opacity;
  position: relative;
  overflow-x: hidden;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.2117647059);
  border-radius: 20px;
  background-color: #f0f1f2;
  color: #4e4e4e;
  padding: 1em 1em 2em;
  overflow-y: auto;
  max-width: 900px;
  width: 95%;
  height: auto;
  font-size: 15px;
}
.modal-wrapper .modal-content .close-btn:not(a) {
  outline: none;
  border: none;
  border-radius: 50%;
  color: #484141;
  background-color: transparent;
  padding: 15px;
  cursor: pointer;
  position: fixed;
  right: 4%;
  top: 2%;
  opacity: 0.6;
  transition: all 0.2s ease-in-out;
}
.modal-wrapper .modal-content .close-btn:not(a):active, .modal-wrapper .modal-content .close-btn:not(a):focus, .modal-wrapper .modal-content .close-btn:not(a):hover {
  opacity: 1;
  background: rgba(128, 128, 128, 0.5);
}
.modal-wrapper .modal-content .close-btn:not(a)::before, .modal-wrapper .modal-content .close-btn:not(a)::after {
  content: " ";
  position: absolute;
  height: 20px;
  width: 2px;
  background-color: currentColor;
}
.modal-wrapper .modal-content .close-btn:not(a)::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.modal-wrapper .modal-content .close-btn:not(a)::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
.modal-wrapper .modal-content .modal__logo {
  max-width: 170px;
  margin: 0 auto 1em;
}
.modal-wrapper .modal-content .modal__emoji {
  text-align: center;
  font-size: 6em;
}
.modal-wrapper .modal-content .heading {
  font-size: 2em;
  font-weight: 800;
  color: #003957;
  margin-bottom: 1em;
}
.modal-wrapper .modal-content .rdr-btn {
  text-decoration: none;
  outline: none;
  border: none;
  background-color: #3392C5;
  color: #fff;
  font-size: 1.2em;
  font-weight: 800;
  padding: 15px 20px;
  margin: 0 auto;
  border-radius: 10px;
  display: block;
}
@media only screen and (min-width: 485px) {
  .modal-wrapper .modal-content .close-btn:not(a) {
    position: absolute;
    right: 2%;
  }
}
@media only screen and (min-width: 992px) {
  .modal-wrapper .modal-content {
    padding: 2em 2em 4em;
  }
  .modal-wrapper .modal-content .modal__logo {
    max-width: 250px;
    margin-bottom: 1.5em;
  }
  .modal-wrapper .modal-content .modal__emoji {
    font-size: 8em;
  }
  .modal-wrapper .modal-content .heading {
    font-size: 2.5em;
  }
  .modal-wrapper .modal-content .rdr-btn {
    max-width: 450px;
  }
}
@media only screen and (min-width: 1600px) {
  .modal-wrapper .modal-content .modal__logo {
    max-width: 270px;
  }
  .modal-wrapper .modal-content .heading {
    font-size: 2.5em;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  font-family: "Nunito", sans-serif;
  font-size: 15px;
  font-weight: normal;
  overflow: hidden auto;
  height: 100%;
  color: #003957;
  /* Media Queries */
}
body img {
  width: 100%;
  display: block;
}
body .main {
  overflow: hidden;
  background-color: #EDF5FA;
  min-height: 100vh;
  padding: 2em 1em;
}
body .main p {
  line-height: 1.4;
}
body .sv-form {
  border: 1px solid #e5e5dd;
  box-shadow: 0px 4px 20px 5px rgba(0, 57, 87, 0.3);
  border-radius: 20px;
  background-color: #fff;
  overflow: hidden;
  margin: 1em auto;
  padding: 1em 1em 2em;
  font-size: 15px;
}
body .sv-form .sv-form__logo {
  margin: 0 auto 1em;
  max-width: 150px;
}
body .sv-form .sv-form__banner {
  margin: 0 auto 1.5em;
  max-width: 350px;
}
body .sv-form .sv-form__welcome {
  text-align: center;
  margin-bottom: 1.5em;
}
body .sv-form .sv-form__title {
  font-weight: 800;
  font-size: 1.5em;
}
body .sv-form .sv-form__ty-txt {
  font-weight: 700;
  font-size: 1.4em;
  text-align: center;
  margin-bottom: 1em;
}
body .sv-form__item {
  opacity: 1;
  height: 100%;
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
  pointer-events: auto;
  margin-bottom: 1.5em;
  transition: 0.35s ease-in;
}
body .sv-form__item .sv-form__heading {
  position: relative;
  display: inline-block;
  font-size: 1.2em;
  margin-bottom: 10px;
}
body .sv-form__item .sv-form__heading:after {
  content: none;
  margin-left: 5px;
  color: #ff300a;
  font-size: 0.8em;
}
body .sv-form__item:last-of-type .sv-form__hint {
  margin-bottom: 15px;
}
body .sv-form__item .sv-form__hint {
  display: none;
  color: #696a6a;
  font-size: 13px;
  font-weight: 600;
  margin-top: 5px;
  padding-left: 8px;
}
body .sv-form__item.invalid .sv-form__heading:after {
  content: "*";
}
body .sv-form__item.invalid .sv-form__hint {
  display: inline-block;
  color: #ff300a;
}
body .sv-form__item.invalid .sv-form__area,
body .sv-form__item.invalid .sv-form__input input {
  border-color: #ff300a !important;
}
body .sv-form__item .star-rating {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  gap: 10px;
}
body .sv-form__item .star-rating input[type=radio] {
  display: none;
}
body .sv-form__item .star-rating label {
  cursor: pointer;
  text-align: center;
}
body .sv-form__item .star-rating label span {
  font-size: 12px;
  display: block;
}
body .sv-form__item .star-rating label svg {
  width: 50px;
  height: 50px;
  transition: fill 0.2s ease;
}
body .sv-form__item .star-rating label svg .fil0 {
  fill: #E0E0E0;
}
body .sv-form__item .star-rating label svg .fil2 {
  fill: #BDBDBD;
}
body .sv-form__item .star-rating label:hover svg .fil2, body .sv-form__item .star-rating label:focus svg .fil2, body .sv-form__item .star-rating label:active svg .fil2, body .sv-form__item .star-rating label:has(+ :checked) svg .fil2 {
  fill: #5D4037;
}
body .sv-form__item .star-rating label:hover svg.svg-detractor .fil0, body .sv-form__item .star-rating label:focus svg.svg-detractor .fil0, body .sv-form__item .star-rating label:active svg.svg-detractor .fil0, body .sv-form__item .star-rating label:has(+ :checked) svg.svg-detractor .fil0 {
  fill: #ff6937;
}
body .sv-form__item .star-rating label:hover svg.svg-passive .fil0, body .sv-form__item .star-rating label:focus svg.svg-passive .fil0, body .sv-form__item .star-rating label:active svg.svg-passive .fil0, body .sv-form__item .star-rating label:has(+ :checked) svg.svg-passive .fil0 {
  fill: #FFD54F;
}
body .sv-form__item .star-rating label:hover svg.svg-promoter .fil0, body .sv-form__item .star-rating label:focus svg.svg-promoter .fil0, body .sv-form__item .star-rating label:active svg.svg-promoter .fil0, body .sv-form__item .star-rating label:has(+ :checked) svg.svg-promoter .fil0 {
  fill: #37ffc8;
}
body .sv-form__item .sv-form__area {
  display: block;
  position: relative;
  border-radius: 10px;
  overflow-x: hidden;
  overflow-y: auto;
  width: 100%;
  height: 20vh;
  resize: none;
  border: 1px solid #9C9C9C;
  color: currentColor;
  font-size: 0.85em;
  line-height: 1.5rem;
  box-sizing: border-box;
  margin: 0;
  font-family: "Nunito", sans-serif;
  font-weight: 400;
  letter-spacing: 0.5px;
  padding: 8px 16px;
}
body .sv-form__item .sv-form__input {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row nowrap;
      flex-flow: row nowrap;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: start;
      justify-content: flex-start;
  height: 50px;
  transition: 0.3s ease-in-out;
}
body .sv-form__item .sv-form__input input[type=email] {
  width: 100%;
  height: 100%;
  font-size: 0.85em;
  font-family: "Nunito", sans-serif;
  font-weight: 400;
  letter-spacing: 0.5px;
  border-radius: 10px 0 0 10px;
  color: currentColor;
  display: block;
  padding: 1em 1em;
  border: 1px solid #9C9C9C;
}
body .sv-form__item .sv-form__input input[type=email]::-webkit-input-placeholder {
  font-size: 0.9em;
}
body .sv-form__item .sv-form__input input[type=email]::-moz-placeholder {
  font-size: 0.9em;
}
body .sv-form__item .sv-form__input input[type=email]:-ms-input-placeholder {
  font-size: 0.9em;
}
body .sv-form__item .sv-form__input input[type=email]::-ms-input-placeholder {
  font-size: 0.9em;
}
body .sv-form__item .sv-form__input input[type=email]::placeholder {
  font-size: 0.9em;
}
body .sv-form__item .sv-form__input .icon {
  border-width: 1px 1px 1px 0;
  border-style: solid;
  border-color: #9C9C9C;
  border-radius: 0 10px 10px 0;
  background-image: url("/assets/survey-gulp/images/edit-pencil-svgrepo-com.svg");
  background-repeat: no-repeat;
  background-size: 24px;
  background-position: center;
  background-color: #EDF5FA;
  width: 48px;
  height: 100%;
}
body .sv-form__item .sv-form__input .icon.icon__date {
  background-image: url("/assets/survey-gulp/images/calendar-icon.svg");
}
body .sv-form__item .sv-form__input .icon.icon__email {
  background-image: url("/assets/survey-gulp/images/gmail-icon.svg");
}
body .sv-form__item .sv-form__submit {
  display: block;
  width: 100%;
  background-color: #3392C5;
  color: #fff;
  border-radius: 10px;
  border: none;
  font-weight: 800;
  font-family: inherit;
  font-size: 1.2em;
  padding: 15px 30px;
  margin: 0 auto;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}
body .sv-form__item .sv-form__submit:hover, body .sv-form__item .sv-form__submit:focus, body .sv-form__item .sv-form__submit:active {
  -webkit-filter: brightness(0.86);
          filter: brightness(0.86);
}
@media only screen and (min-width: 768px) {
  body .main .sv-form {
    font-size: 20px;
    max-width: 750px;
  }
  body .main .sv-form .sv-form__logo {
    max-width: 200px;
  }
  body .main .sv-form .sv-form__banner {
    max-width: 100%;
  }
  body .main .sv-form .sv-form__welcome {
    margin-bottom: 2.5em;
  }
  body .main .sv-form .sv-form__title {
    font-size: 1.65em;
  }
}
@media only screen and (min-width: 1200px) {
  body .main .sv-form {
    font-size: 25px;
    max-width: 800px;
    padding-left: 2.5em;
    padding-right: 2.5em;
  }
  body .main .sv-form__item .sv-form__heading {
    font-size: 1.1em;
    margin-bottom: 20px;
  }
  body .main .sv-form__item .sv-form__input {
    height: 70px;
  }
  body .main .sv-form__item .sv-form__input ::-webkit-input-placeholder {
    font-size: 1.3em;
  }
  body .main .sv-form__item .sv-form__input ::-moz-placeholder {
    font-size: 1.3em;
  }
  body .main .sv-form__item .sv-form__input :-ms-input-placeholder {
    font-size: 1.3em;
  }
  body .main .sv-form__item .sv-form__input ::-ms-input-placeholder {
    font-size: 1.3em;
  }
  body .main .sv-form__item .sv-form__input ::placeholder {
    font-size: 1.3em;
  }
  body .main .sv-form__item .sv-form__submit {
    font-size: 1.4em;
  }
  body .main .sv-form__item .star-rating {
    -ms-flex-pack: start;
        justify-content: flex-start;
  }
}
@media only screen and (min-width: 1400px) {
  body .main .sv-form {
    max-width: 1100px;
  }
}