@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;400&display=swap"); 
  @font-face {
    font-family: "Spartan";
    src: url("/static/spartan.ttf") format("woff2 supports variations"),
        url("/static/spartan.ttf") format("woff2-variations");
    font-weight: 100 400 600 700; }

    html, body {
      padding: 0;
      margin: 0; }

      .full-site {
        display: flex;
        flex-direction: column;
        min-height: 100vh;
        justify-content: space-between; }
        .full-site .top-banner {
          height: 96px;
          background-color: #333333;
          display: flex;
          flex-direction: row;
          justify-content: center;
          flex-shrink: 0; }
          .full-site .top-banner .logo {
            height: 96px; }
        .full-site .outer-container {
          display: flex;
          flex-direction: row;
          justify-content: center;
          flex: 1 0; }
          .full-site .outer-container .inner-container {
            flex: 1 0;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            max-width: 512px;
            width: 512px;
            text-align: left;
            padding: 12px;
            font-family: "Spartan", sans-serif;
            overflow-x: hidden; }
            .full-site .outer-container .inner-container .progress-bar {
              width: 100%;
              height: 56px;
              position: relative;
              border-radius: 10px;
              background: #fff;
              overflow: hidden;
              border: 1px solid #333333;
              display: flex;
              flex-direction: column;
              justify-content: center; }
              .full-site .outer-container .inner-container .progress-bar .back-button {
                display: block;
                position: absolute;
                left: 32px;
                z-index: 1000;
                color: #333333; }
                .full-site .outer-container .inner-container .progress-bar .bar {
                  width: 0;
                  height: 56px;
                  position: absolute;
                  left: 0;
                  top: 0;
                  background: #99b540;
                  z-index: 1; }
                  .full-site .outer-container .inner-container .progress-bar .count {
                    width: 100%;
                    height: 100%;
                    position: absolute;
                    left: 0;
                    top: 0;
                    line-height: 56px;
                    z-index: 9;
                    color: #333333;
                    letter-spacing: 1px;
                    font-weight: 700;
                    text-align: center; }
            .full-site .outer-container .inner-container form {
              flex: 2 1; }
              .full-site .outer-container .inner-container form .question {
                height: 100%;
                display: flex;
                flex-direction: column;
                justify-content: space-between; }
                .full-site .outer-container .inner-container form .question h1,
                .full-site .outer-container .inner-container form .question h2 {
                  flex: 1 1;
                  color: #333333;
                  font-size: 1.8em;
                  text-align: center;
                  font-weight: 400;
                  margin: 0; }
                  .full-site .outer-container .inner-container form .question h2 {
                    font-size: 1.5em;
                    justify-self: center; }
                    .full-site .outer-container .inner-container form .question .question-radios {
                      max-width: 100%;
                      display: flex;
                      flex-direction: row;
                      gap: 9px;
                      overflow: hidden;
                      flex: 1 1;
                      justify-self: end; }
                      .full-site .outer-container .inner-container form .question .question-radios label {
                        width: 33%;
                        padding: 15px; }
                        .full-site .outer-container .inner-container form .question .question-radios label [type="radio"] {
                          position: absolute;
                          opacity: 0;
                          width: 0;
                          height: 0;
                          transition: opacity 0.5s ease-in-out; }
                          .full-site .outer-container .inner-container form .question .question-radios label [type="radio"] + img {
                            cursor: pointer;
                            max-width: 100%; }
              .full-site .outer-container .inner-container form .form-element {
                margin-bottom: 18px;
                border-radius: 10px;
                border: 2px #dbdbdb solid;
                background-color: #fafafa;
                padding: 20px 20px; }
                .full-site .outer-container .inner-container form .form-element:focus {
                  outline: none;
                  background-color: white; }
                  .full-site .outer-container .inner-container form .form-element.feedback-area {
                    width: 100%;
                    min-height: 200px;
                    resize: vertical;
                    font-family: "Spartan", sans-serif;
                    -webkit-box-sizing: border-box;
                    -moz-box-sizing: border-box;
                    box-sizing: border-box; }
                    .full-site .outer-container .inner-container form .form-element.mail-input {
                      width: 100%;
                      height: 1.8em;
                      -webkit-box-sizing: border-box;
                      -moz-box-sizing: border-box;
                      box-sizing: border-box; }
                      .full-site .outer-container .inner-container form .form-element.submit-button {
                        width: 100%;
                        color: white;
                        background-color: #99b540;
                        border-color: #99b540;
                        font-size: 16px;
                        font-weight: 700;
                        transition: background-color ease-in-out 0.3s, color ease-in-out 0.3s; }
            .full-site .outer-container .inner-container .google-link {
              display: block;
              background-color: #99b540;
              color: white;
              border-color: #99b540;
              font-size: 16px;
              font-weight: 700;
              width: 100%;
              padding: 20px 20px;
              -webkit-box-sizing: border-box;
              -moz-box-sizing: border-box;
              box-sizing: border-box;
              text-align: center;
              border-radius: 10px;
              text-decoration: none; }
              .full-site .outer-container .inner-container .checkbox-control {
                display: flex;
                flex-direction: row;
                margin: 16px 0 32px; }
                .full-site .outer-container .inner-container .checkbox-control input[type="checkbox"] {
                  margin-right: 8px; }
                  .full-site .outer-container .inner-container .checkbox-control label > a {
                    color: #99b540;
                    text-decoration: none; }
        .full-site .footer {
          font-family: "Spartan", sans-serif;
          padding: 20px 20px;
          background-color: #333333;
          text-align: center; }
          .full-site .footer a {
            color: white;
            text-decoration: none; }

  #external-1, #external-2 {
    fill: white; }

@font-face {
  font-family: 'fontello';
  src: url('/static/icon_fonts/fontello.eot?16528533');
  src: url('/static/icon_fonts/fontello.eot?16528533#iefix') format('embedded-opentype'),
    url('/static/icon_fonts/fontello.woff2?16528533') format('woff2'),
    url('/static/icon_fonts/fontello.woff?16528533') format('woff'),
    url('/static/icon_fonts/fontello.ttf?16528533') format('truetype'),
    url('/static/icon_fonts/fontello.svg?16528533#fontello') format('svg');
  font-weight: normal;
  font-style: normal; }

  [class^="icon-"]:before, [class*=" icon-"]:before {
    font-family: "fontello";
    font-style: normal;
    font-weight: normal;
    speak: never;
    display: inline-block;
    text-decoration: inherit;
    width: 1em;
    margin-right: 0.2em;
    text-align: center;
    font-variant: normal;
    text-transform: none;
    line-height: 1em;
    margin-left: 0.2em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }

    .icon-left-big:before {
      content: ''; }

      .icon-link-ext-alt:before {
        content: ''; }
