/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *
 *= require_self
 */
@import "https://cdn.jsdelivr.net/npm/bulma@1.0.2/css/bulma.min.css";
:root {
  --bulma-shadow: 0 0.5em 1em -0.125em rgba(10,10,10,0.3),0 0px 0 1px rgba(10,10,10,0.02);
}
.card {
  --bulma-card-radius: 6px;
}
html,body {
  width: 100vw;
  overflow-x: hidden;
  font-family: "Open Sans";
}

button.is-outlined {
  color: #0147A4 !important;
  border-color: #0147A4 !important;
}
#default-landing-page-container {
  .background-img {
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    box-shadow: 8px 8px 8px;
    z-index: -1;
    background-repeat: no-repeat;
    background-size: cover;
    background-position-x: center;
  };
  #content-columns-container {
    height: 100%;
    .column {
      margin: auto;
      #text-container {
        width: fit-content;
        margin: 0 auto;
        #title {
          display: flex;
          flex-direction: column;
          gap: 0.5rem;
          .page-title {
            font-size: 4rem;
            font-weight: 800;
            line-height: 1;
            word-wrap: break-word;
          }
        }
      }
      #survey-box {
        background: linear-gradient(0deg, rgba(255, 255, 255, 0.90) 0%, rgba(255, 255, 255, 0.90) 100%), linear-gradient(0deg, rgba(0, 85.76, 200.87, 0.08) 0%, rgba(0, 85.76, 200.87, 0.08) 100%);
        border-radius: 20px;
        padding: 0;
        max-width: 750px;
        margin: 0 auto;
        #form-container {
          padding: 1.5rem 1.5rem 2.25rem;
          .title {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1rem;
            gap: 0.15rem;
            #file-img {
              margin-right: 0.5rem;
              height: 2rem;
            }
            #reg-title-w-img {
              color: #0147A4;
              line-height: 1.2;
              word-wrap: break-word;
              display: flex;
            }
          }
          .reg-form {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            .reg-select-with-placeholder {
              background-image: url("data:image/svg+xml;utf8,<svg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'><path fill-rule='evenodd' clip-rule='evenodd' d='M6.29289 8.79289C6.68342 8.40237 7.31658 8.40237 7.70711 8.79289L12 13.0858L16.2929 8.79289C16.6834 8.40237 17.3166 8.40237 17.7071 8.79289C18.0976 9.18342 18.0976 9.81658 17.7071 10.2071L12.7071 15.2071C12.3166 15.5976 11.6834 15.5976 11.2929 15.2071L6.29289 10.2071C5.90237 9.81658 5.90237 9.18342 6.29289 8.79289Z' fill='blue'/></svg>");
              background-repeat: no-repeat;
              background-position-x: calc(100% - 0.5rem);
              background-position-y: 50%;
            }
            .sms-optins {
              color: #212121;
              font-size: 0.625rem;
              font-weight: 400;
              line-height: 0.875rem;
              word-wrap: break-word;
            }
            .sms-optin-checkbox {
              width: 1rem;
              height: 1rem;
              border-radius: 1.83px;
              border: 1.83px #0147A4 solid;
              margin: 0 0.35rem 0 0;
            }
            #view-button-container {
              margin-top: 1rem;
              #see-offers-button {
                width: 100%;
                background: #0147A4;
                color: white;
                border-radius: 6px;
                justify-content: center;
                align-items: center;
                gap: 16px;
                word-wrap: break-word;
                #submit-arrow {
                  width: 0.75rem;
                  margin-left: -0.5rem;
                }
              }
            }
          }
          .input {
            border: 1px rgba(0, 86, 201, 0.70) solid;
            font-family: "Open Sans";
            gap: 10px;
            padding-top: 0.25rem;
            padding-bottom: 0.25rem;
            padding-left: 0.7rem;
            border-radius: 4px 4px 6px 6px;
            font-size: 1rem;
            font-weight: 400;
            line-height: 1.5rem;
            word-wrap: break-word;
          }
        }
      }
    }
  }
}
#default-descs-container {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  .single-desc-container {
    display: flex;
    gap: 0.25rem;
    height: 25px;
    .check-image {
      width: 25px;
      height: 25px;
    }
    .web-description {
      color: #FAFAFA;
      line-height: 1.5rem;
      word-wrap: break-word;
    }
  }
}
.default-review-box {
  width: 400px;
  max-width: 100%;
  margin: 3.125rem auto 0;
  padding: 14px 24px;
  background: rgba(250, 250, 250, 0.80);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.14);
  border-radius: 16px;
  .star_img {
    width: 20px;
    height: 19px;
  }
  .text {
    color: #212121;
    font-size: 0.875rem;
    line-height: 1.35rem;
    word-wrap: break-word;
  }
}
#default-rev-user-div {
  margin: 0.75rem auto 0;
  width: 400px;
  display: flex;
  align-items: center;
  gap: 1rem;
  #user-pic {
    border-radius: 23.79px;
    border: solid 1.5px white;
    height: 50px;
  }
  #user-name {
    color: #FAFAFA;
    font-size: 1rem;
    font-weight: 700;
    line-height: 20px;
    word-wrap: break-word;
  }
}
#default-results-page-container {
  margin-bottom: 2rem;
  #page-title {
    width: 100%;
    text-align: center;
    color: #0147A4;
    font-size: 4rem;
    font-weight: 700;
    line-height: 83.20px;
    word-wrap: break-word;
  }
  #page-title:before {
    content: "Your Assistance Survey Result"
  }
  .multiline-page-title-container {
    display: none;
  }
}
.default-offer-enclosure {
  border-radius: 6px;
  .header {
    height: 28px;
    background: rgb(247, 220, 220);
    align-items: center;
    padding: 0;
    .header-text {
      color: #F04B4B;
      font-size: 12px;
      text-transform: uppercase;
      line-height: 0.875rem;
      letter-spacing: 0.28px;
      word-wrap: break-word;
      text-align: center;
      padding: 0;
      font-weight: 700;
    }
  }
  .content-container {
    padding: 0.75rem 1.25rem 2rem;
    /*if they all want to stay same size*/
    /*height: 426px;*/
    display: flex;
    flex-direction: column;
    .category-container {
      width: 100%;
      padding: 5px 10px;
      background: #F0F0F0;
      border-radius: 6px;
      justify-content: space-between;
      align-items: center;
      display: inline-flex;
      /*if they all want to stay same size*/
      flex: 1;
      .category {
        text-align: center;
        color: #0147A4;
        font-size: 0.875rem;
        line-height: 0.875rem;
        word-wrap: break-word;
      }
    }
    .title-container {
      display: flex;
      align-items: center;
      margin-top: 1.25rem;
      /*if they all want to stay same size*/
      flex: 2;
      .title-icon-container {
        max-width: 50px;
        .title-icon {
          width: 50px;
          height: 50px;
        }
      }
      .title {
        width: 75%;
        margin-left: 1.25rem;
        color: #0147A4;
        font-size: 1.25rem;
        line-height: 1.625rem;
        word-wrap: break-word;
      }
    }
    .description-container {
      margin-top: 1.75rem;
      /*if they all want to stay same size*/
      flex: 3;
      .description-text {
        color: #717171;
        font-size: 0.9375rem;
        font-weight: 400;
        line-height: 1.3125rem;
        word-wrap: break-word;
      }
    }
    .buttons-container {
      margin-top: 2rem;
      display: flex;
      gap: 1.5rem;
      .claim-offer-button {
        padding: 1rem 1.5rem;
        background: #0147A4;
        border-radius: 6px;
        gap: 1rem;
        color: #FAFAFA;
        font-size: 1rem;
        line-height: 1rem;
        word-wrap: break-word;
        cursor: pointer;
        /*if they all want to stay same size*/
        flex: 1;
        transition: 250ms ease-in-out all;
      }
      .claim-offer-button:hover {
        border-color: #b5b5b5;
        color: white;
        background: #003781;
      }
      .offer-accept-button {
        border-radius: 10px;
        min-height: 50px;
      }
      .offer-decline-button {
        border-radius: 10px;
        min-height: 50px;
        background: #F0F0F0;
        color: #0147A4;
      }
    }
    .offer-disclaimer-text {
      font-size: 10px;
      margin-top: 1rem;
      color: #8A8A8A;
    }
  }
  .modern-buttons-content-container {
    padding: clamp(1.5rem, 3vw, 2rem) clamp(1rem, 3vw, 3rem) clamp(2rem, 3vw, 3rem);
    display: flex;
    flex-direction: column;
    .title {
      color: #0147A4;
      font-size: min(calc(100% + 1.75vw), 1.6rem);
      font-weight: 800;
      text-align: center;
      margin-bottom: clamp(2rem, 3vw, 3rem);
    }
    .buttons-container {
      gap: clamp(12px, 2vw, 16px);
      display: flex;
      flex-direction: column;
      .button {
        width: 100%;
        background: transparent;
        overflow: hidden;
        border: #0147A4 1px solid;
        border-radius: 6px;
        color: #0147A4;
        font-size: 16px;
        font-weight: 700;
        line-height: 16px;
        padding: clamp(0.75rem, 2vw, 1rem);
      }
      .button:hover {
        background: #0147A4;
        color: white;
      }
    }
  }
}
#default-survey-enclosure {
  #page-num-div {
    justify-content: space-between;
    align-items: center;
    width: 610px;
    max-width: 100%;
    margin: 2rem auto 0;
    display: flex;
    #pre-survey-text {
      color: #0147A4;
      font-size: 20px;
      font-weight: 800;
      text-transform: uppercase;
      line-height: 1;
      word-wrap: break-word;
    }
    #next-page-text {
      color: #0147A4;
      font-size: 14px;
      font-weight: 400;
      text-transform: capitalize;
      line-height: 1;
      word-wrap: break-word;
      margin-top: 0.65rem;
    }
    #question-number-circle {
      width: 3.25rem;
      height: 3.25rem;
      background: rgb(226, 233, 241);
      border-radius: 100px;
      justify-content: center;
      align-items: center;
      display: inline-flex;
      #question-number {
        text-align: center;
        color: #0147A4;
        font-size: 18px;
        font-family: Poppins;
        font-weight: 600;
        line-height: 18px;
        word-wrap: break-word;
      }
    }
  }
  #question-enclosure {
    width: 610px;
    max-width: 100%;
    padding: 2rem 60px 2rem;
    background: white;
    box-shadow: 0px 2px 14px rgba(0, 0, 0, 0.14);
    border-radius: 10px;
    gap: 10px;
    margin: 2rem auto 2.5rem;
    #question-text {
      color: #0147A4;
      font-size: 32px;
      font-weight: 800;
      line-height: 44.80px;
      word-wrap: break-word;
    }
    .instructions {
      text-align: center;
      font-size: 1rem;
      margin-top: 1.5rem;
      line-height: 1.5
    }
    .answers-columns-container .answer-column {
      padding: 0.5rem 0.75rem;
      .response-option-div {
        width: 100%;
        padding: 0.5rem;
        background: white;
        border-radius: 6px;
        border: 1px rgba(4.34, 73.26, 149.83, 0.20) solid;
        .radio-label {
          display: flex;
          color: #212121;
          font-size: 16px;
          font-weight: 700;
          line-height: 16px;
          word-wrap: break-word;
          gap: 8px;
          align-items: center;
          margin: 2px;
          .response-option {
            width: 20px;
            height: 20px;
            background: #717171;
            margin: 8px;
          }
        }
      }
    }
    .sms-optins {
      display: inline-flex;
      flex-direction: column;
      margin-top: 1rem;
      .optin-container {
        display: flex;
        align-items: flex-start;
        gap: 8px;
        .sms-optin-checkbox {
          width: 1rem;
          height: 1rem;
        }
        .optin-label {
          font-size: 10px;
          font-weight: 400;
          line-height: 14px;
          word-wrap: break-word;
          color: #0147A4;
        }
      }
    }
    .button-columns {
      .button-column {
        padding-top: 0;
        padding-bottom: 0.5rem;
        #back-button {
          background: transparent;
          border: 1px #0147A4 solid;
          color: #0147A4;
        }
        #skip-button {
          background: transparent;
          border: 0;
          color: #0147A4;
          box-shadow: none;
        }
        #skip-button:hover {
          background: rgba(1, 71, 164, 0.15);
        }
        #next-button {
          background: #0147A4;
          color: #FAFAFA;
        }
        #next-button:hover {
          background: rgba(1, 71, 164, 1.15);
        }
        .survey-button {
          width: 100%;
          height: 2.5em;
          padding-left: 10px;
          padding-right: 10px;
          border-radius: 6px;
          font-size: 16px;
          font-weight: 700;
          line-height: 16px;
          word-wrap: break-word;
        }
      }
    }
  }
}
.container--stepper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 2rem;
  .stepper {
    display: flex;
    align-items: center;
    max-width: 95%;
    .step {
      width: 30px;
      aspect-ratio: 1 / 1;
      border-radius: 50%;
      background-color: #e0e0e0;
      color: #333333;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 14px;
      line-height:1;
      font-weight: bold;
    }
    .completed {
      background-color: #2a70cd;
      color: white;
    }
    .active {
      background-color: #0147A4;
      color: white;
    }
    .line {
      width: 50px;
      height: 4px;
      background-color: #e0e0e0;
    }
    .line.completed {
      background-color: #0073e6;
    }
  }
}
.path-step-title-text {
  font-size: 22px;
  color: #000;
  margin-top: 1.5rem;
  text-align: center;
  margin-bottom: 2rem;
}

.select-one-survey-response-button {
  width: 100%;
  background: transparent;
  overflow: hidden;
  border: #0147A4 1px solid;
  border-radius: 6px;
  color: #0147A4;
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
  padding: clamp(0.75rem, 2vw, 1rem);
}
.select-one-survey-response-button:hover {
  background: #0147A4;
  color: white;
}

@media screen and (min-width: 769px) {
  html, body {
    height: 100vh;
  }
  #default-landing-page-container {
    height: 100%;
    .background-img {
      background-image: linear-gradient(290deg, rgba(33, 33, 33, 0) 0%, #212121 100%), url("/assets/wisesavings/ws_background_desktop-041f65bc.jpg");
    }
    #survey-box {
      width: 65%;
    }
  }
  #default-descs-container .web-description {
    font-size: 1rem;
  }
  #default-results-page-container {
    #page-title {
      margin-top: 2.5rem;
    }
    #offer-columns-container {
      width: 67.5%;
      margin: 3rem auto 0;
      justify-content: flex-start;
      .offer-column {
        padding: 0.75rem;
      }
    }
  }
  #default-survey-enclosure #question-enclosure {
    .answers-columns-container {
      margin-top: 2rem;
    }
    .button-columns {
      margin-top: 1.25rem
    }
  }
}
@media screen and (max-width: 1023px) {
  #default-landing-page-container {
    #content-columns-container .column #text-container {
      margin-top: 1.5rem;
    }
  }
}
@media screen and (max-width: 768px) {
  #default-landing-page-container {
    .background-img {
      background-image: linear-gradient(290deg, rgba(33, 33, 33, 0) 0%, #212121 100%), url("/assets/wisesavings/ws_background_mobile-259af3ce.jpg");
    }
    #content-columns-container {
      margin-left: 0.75rem;
      margin-right: 0.75rem;
      margin-top: auto;
      .column {
        padding: 0;
        #text-container {
          width: 100%;
          #title {
            gap: 0.25rem;
            .page-title {
              font-size: 2.5rem;
              line-height: 1.15;
            }
          }
        }
        #survey-box {
          max-width: 100%;
          margin-top: 1.5rem;
          #form-container {
            padding: 1.5rem 1rem 1.5rem;
            .title {
              margin-bottom: 0.8rem;
              #file-img {
                margin-top: -0.35rem;
                margin-right: 0.25rem;
              }
              #reg-title-w-img {
                font-size: 0.95rem;
              }
            }
            .input {
              font-size: 0.85rem;
            }
            .reg-form {
              .sign-up-select {
                font-size: 0.85rem;
              }
              .sms-optins {
                font-size: 0.5rem;
                line-height: 0.75rem;
              }
              #view-button-container {
                margin-top: 0.4rem;
              }
            }
          }
        }
      }
    }
  }
  #default-descs-container {
    margin-top: 1rem;
    gap: 0.5rem;
    span {
      display: flex;
    }
    .single-desc-container {
      height: auto;
      .web-description {
        font-size: 0.875rem;
        width: 100%;
        padding-top: 0.15rem;
        line-height: 1.4;
      }
    }
  }
  .default-review-box {
    margin: 2rem auto 1rem !important;
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  #default-rev-user-div {
    margin: 0 auto 2.5rem;
  }
  #default-results-page-container {
    margin: 1.5rem 1.25rem 9rem;
    #page-title {
      font-size: 2.125rem;
      font-weight: 800;
      line-height: 1.1;
      text-align: left;
    }
    #offer-columns-container {
      margin-top: 2rem;
    }
  }
  #default-survey-enclosure {
    margin-left: 1.25rem;
    margin-right: 1.25rem;
    #question-enclosure {
      padding: 1.5rem 1.25rem 2rem;
      margin: 1.5rem auto 9rem;
      #question-text {
        font-size: 1.7rem;
        line-height: 2rem;
      }
      .instructions {
        font-size: 15px;
        margin-top: 1rem;
      }
      .answers-columns-container {
        margin-top: 1.25rem;
      }
      .button-columns {
        margin-left: 0;
        margin-right: 0;
        margin-top: 0.75rem;
        display: flex;
        flex-direction: column;
        .button-column {
          padding-left: 0;
          padding-right: 0;
        }
      }
    }
  }
  .offer-column {
    .content-container {
      .buttons-container {
        gap: 0.75rem;
        flex-direction: column-reverse;
      }
    }
  }
  .container--stepper {
    margin-top: 1rem;
    .stepper .step {
      width: 26px;
      font-size: 13px;
    }
  }
  .path-step-title-text {
    margin-bottom: 1rem;
    margin-top: 1rem;
    font-size: 1.35rem;
    line-height: 1.4;
  }
}
.show-more-button {
  border-radius: 10px;
  min-height: 50px;
  color: #0147A4 !important;
  border-color: #0147A4 !important;
}

#progress-line-container {
  display: flex;
  justify-content: center;
  margin-top: clamp(0.75rem, 3vw, 2rem);
  margin-bottom: clamp(0.75rem, 3vw, 2rem);
  #progress-lines {
    width: 33%;
    display: flex;
    justify-content: center;
    gap: clamp(5px, 1.5vw, 15px);
    .step {
      height: 0.375rem;
      background: rgba(10, 48, 105, 0.3);
      flex-grow: 1;
    }
    .step.completed {
      background: rgba(10, 48, 105, 1);
    }
    .step.active {
      background: rgba(10, 48, 105, 1);
    }
  }
}
@media (max-width: 1023px) {
  #progress-line-container {
    #progress-lines {
      width: 95%;
    }
  }
}

.progress-meter {
  height: 5px;
  position: relative;
  background: rgba(1, 71, 164, 0.1);
  overflow: hidden;
  span {
    display: block;
    height: 100%;
  }
  .progress {
    background-color: #0147A4;
    animation: progressBar 3s ease-in-out;
    animation-fill-mode:both;
  }
}