@charset "UTF-8";
@import url(bootstrap-reboot.min.css);
@import url(bootstrap-grid.min.css);

/* Colors */
:root {
  --primary: #2589ca;
  --primary-light: #66bbff;
  --primary-highlight: #ddeeff;
  --secondary: #990066;
  --background: #fff;
  --bg-end: #a9a7a8;
  --default-text: #000;
  --border: #ebeaed;
}
html,
body {
  color: var(--default-text);
}
a {
  color: var(--primary);
  transition: color 0.2s linear;
  text-decoration: none;
}
a:hover,
a:focus,
a:active {
  color: var(--primary-light);
}

/* Typography */
* {
  font-family: "DM Sans", Helvetica, Arial, sans-serif;
}
body {
  font-size: 1rem;
}
h1,
.h1,
h2,
.h2 {
  font-weight: 700;
}
h1,
.h1 {
  font-size: 3rem;
  line-height: 1.2;
  letter-spacing: -1px;
}
h2,
.h2 {
  font-size: 2.25rem;
  line-height: 1.25;
  letter-spacing: -0.4px;
}
h3,
h4,
h5,
h6 {
  font-weight: 500;
}
h3,
.h3 {
  font-size: 1.25rem;
  letter-spacing: -0.4px;
}
h4,
.h4 {
  font-size: 1.25rem;
}
h5,
.h5 {
  font-size: 1.125rem;
}
h6,
.h6 {
  font-size: 1rem;
}
.text-sm {
  font-size: 0.875rem;
}
.text-caps {
  color: var(--bg-end);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}
@media (min-width: 992px) {
  h1,
  .h1 {
    font-size: 4.5rem;
  }
  h2,
  .h2 {
    font-size: 2.625rem;
  }
  h3,
  .h3 {
    font-size: 1.375rem;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  height: 40px;
  color: var(--background);
  font-weight: 500;
  text-decoration: none;
  background-color: var(--bg-end);
  border: 2px solid var(--bg-end);
  border-radius: 30px;
  transition: box-shadow 0.2s linear, transform 0.2s linear;
}
.btn:hover,
.btn:focus,
.btn:active {
  color: var(--background);
  box-shadow: 0 1px 6px 0 var(--bg-end);
  transform: translate(1px, -2px);
}
.btn-primary-solid,
.btn-primary-solid:hover,
.btn-primary-solid:focus,
.btn-primary-solid:active {
  background-color: var(--primary);
  border-color: var(--primary);
}
.btn-primary-outline,
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline:active {
  color: var(--primary);
  background-color: var(--background);
  border-color: var(--primary);
}
.btn-lg {
  height: 60px;
  font-size: 20px;
}
.btn-fullwidth {
  display: flex;
  width: 100%;
}

/* Form */
.form-control {
  display: block;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
  height: 40px;
  background-color: var(--background);
  border: 2px solid var(--border);
  border-radius: 30px;
}
.form-control:focus {
  background-color: var(--background);
  border-color: var(--primary-highlight);
  box-shadow: 0 1px 6px 0 var(--primary-highlight);
  appearance: none;
  outline: none;
}
.form-control-lg {
  height: 60px;
}
.form-floating {
  position: relative;
}
.form-floating > .form-control::-moz-placeholder {
  color: transparent;
}
.form-floating > .form-control::placeholder {
  color: transparent;
}
.form-floating label {
  color: var(--bg-end);
  position: absolute;
  left: 22px;
  top: 0;
  transform-origin: left;
  transform: translateY(20px);
  transition: transform 0.2s linear;
}
.form-floating input {
  padding-top: 20px;
}
.form-floating > .form-control:not(:-moz-placeholder-shown) ~ label {
  transform: scale(0.8) translateY(5px);
}
.form-floating input:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
  transform: scale(0.8) translateY(5px);
}

/* Utilities */
.img-responsive {
  max-width: 100%;
}
.m-0 {
  margin: 0;
}
.mt-10 {
  margin-top: 10px;
}
.mt-40 {
  margin-top: 40px;
}
.mb-30 {
  margin-bottom: 30px;
}
.mb-40 {
  margin-bottom: 40px;
}
.mb-60 {
  margin-bottom: 60px;
}
.mb-80 {
  margin-bottom: 80px;
}
.pr-20 {
  padding-right: 20px;
}
.li-gap-10 li + li {
  margin-top: 10px;
}
.text-align-right {
  text-align: right;
}
.text-align-center {
  text-align: center;
}
.text-nowrap {
  white-space: nowrap;
}
@media (min-width: 992px) {
  .mb-lg-120 {
    margin-bottom: 120px;
  }
}

/* -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */

/* Header (Home) */
.header-home {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

/* Footer (Home) */
.footer-home {
  margin-top: 30px;
  padding-top: 90px;
}
.footer-home .columns {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 40px;
  margin-top: 30px;
  margin-bottom: 90px;
}
.footer-home .columns p {
  margin: 0;
}
.footer-home .columns p + p {
  margin-top: 20px;
}
.footer-home .copyright {
  margin: 10px 0;
  color: var(--bg-end);
}
@media (min-width: 576px) {
  .footer-home .columns {
    grid-template-columns: 1fr 1fr;
    grid-gap: 30px;
  }
}
@media (min-width: 768px) {
  .footer-home .columns {
    grid-template-columns: 1fr 1fr auto auto;
  }
}
@media (min-width: 1200px) {
  .footer-home .columns {
    grid-gap: 80px;
  }
}

/* Component Testimonial (Home) */
.cmpt-testimonial {
  margin: 0 15px;
  padding: 40px 15px;
  max-width: 1320px;
  border-width: 2px 0;
  border-color: var(--border);
  border-style: solid;
}
.cmpt-testimonial > div {
  margin: 0 auto;
  padding-left: 60px;
  padding-top: 40px;
  max-width: 800px;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACYAAAAgCAYAAAB+ZAqzAAABOUlEQVRYhe3X0VGEMBSFYUqgBEuwhHTgdqAlWAIdrB3Ygh0sHWgBuRMbyL3bwfFh4wwqBO7m7IMzMJPHfPvDhgBdVzmS4UEyjlFxEoWJAmW8J0Nfm3sTLxmCKNJk4p+RDMER1O5JxmsN8IZRvHKJV5GtYRRv65ltDaN4ZQ2sTf6IijEqRskYalE0r7owMwbvHUjxouGwhETDkyeI6knGy9KZeaOoXlSMC4vRvYFSPfm5A18uuWK8Jorqza6FtjCO96/Cyh10YIVd5dU2wag4zQ3JOEbD4029DTt09Yc8YS6vBZrbn2heM6Qwati3R4CQDHfEsItHggI5LOxhe9getoc5ws4EqJ+EcbyoeGuEPqePJJqXDPct0O/3LKpXPrm8f8FZDM/dzEH1kqFPhiAZw9pIhrD21dPqfQGUW2wVP9zprQAAAABJRU5ErkJggg==)
    no-repeat left top;
}
.cmpt-testimonial > div > p {
  margin-bottom: 20px;
  font-size: 1.125rem;
  font-weight: 500;
}
.cmpt-testimonial > div > cite {
  display: block;
  margin-top: 40px;
  color: var(--bg-end);
  font-size: 0.875rem;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 2px;
  text-transform: uppercase;
}
@media (min-width: 576px) {
  .cmpt-testimonial > div {
    padding-top: 0;
    padding-left: 100px;
  }
}
@media (min-width: 992px) {
  .cmpt-testimonial {
    margin-left: auto;
    margin-right: auto;
  }
  .cmpt-testimonial > div > p {
    font-size: 1.375rem;
  }
}

/* Section Hero (Home) */
.section-home-hero {
  padding-top: 90px;
  padding-bottom: 00px;
}
.section-home-hero h1,
.section-home-hero h3 {
  margin: 0 auto;
  text-align: center;
}
.section-home-hero h1 {
  max-width: 770px;
}
.section-home-hero h3 {
  margin-top: 40px;
  max-width: 610px;
}
.section-home-form-login {
  display: grid;
  grid-gap: 10px;
  margin: 40px auto 0;
  max-width: 840px;
}
.section-home-form-login.in-maintenance {
  display: none;
}
@media (min-width: 992px) {
  .section-home-hero {
    padding-top: 150px;
    padding-bottom: 0px;
  }
  .section-home-form-login {
    grid-template-columns: 1fr 1fr 120px;
    margin-top: 70px;
  }
  .section-home-form-login.in-maintenance {
    display: none;
  }
}

/* Section Value Props (Home) */
.section-home-value-prop {
  padding-top: 90px;
  padding-bottom: 90px;
}
@media (min-width: 992px) {
  .section-home-value-prop {
    padding-top: 150px;
    padding-bottom: 150px;
  }
}

/* Section Features (Home) */
.section-home-features {
  margin-top: 90px;
  margin-bottom: 90px;
}
.section-home-features .title-support-carriers {
  margin-top: 25px;
}
.section-home-features .grid {
  display: grid;
  grid-gap: 30px;
}
.section-home-features ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 768px) {
  .section-home-features .grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .list-supp-carr-wq {
    column-count: 2;
  }
}
@media (min-width: 992px) {
  .section-home-features {
    margin-top: 150px;
    margin-bottom: 150px;
  }
}

/* -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */

#login-section h3 {
  display: none;
}
#login-section.js-show-form.js-forgot-nothing h3 {
  display: block;
}

#login-section .users-table {
  margin: 8px auto 32px;
  font-weight: 500;
}
#login-section .users-table th {
  padding-bottom: 12px;
  font-weight: normal;
  font-style: italic;
}
#login-section .users-table td {
  padding-bottom: 4px;
  cursor: pointer;
}
#login-section .users-table td:hover {
  text-decoration: underline;
  color: var(--primary);
}

.login-incomplete {
  text-align: center;
}
.login-spin {
  margin-top: 32px;
  text-align: center;
}
.login-failure {
  margin-top: 32px;
  text-align: center;
  color: var(--secondary);
}
.login-timeout {
  margin-top: 32px;
  text-align: center;
}
.login-complete {
  text-align: center;
}
.login-complete div {
  margin-top: 32px;
}
.reset-pass-instructions {
  margin-top: 32px;
  text-align: center;
}
.reset-pass-confirm {
  margin-top: 32px;
  text-align: center;
  font-weight: 500;
}
.login-otp-instructions {
  margin-top: 32px;
  text-align: center;
}

.js-show-form .login-failure,
.js-show-form .login-incomplete,
.js-show-form .login-timeout,
.js-show-form .login-complete,
.js-show-form .login-spin,
.js-show-form .login-otp,
.js-show-incomplete .login-failure,
.js-show-incomplete .login-timeout,
.js-show-incomplete .login-complete,
.js-show-incomplete .login-form,
.js-show-incomplete .login-spin,
.js-show-incomplete .login-otp,
.js-show-failure .login-incomplete,
.js-show-failure .login-complete,
.js-show-failure .login-timeout,
.js-show-failure .login-spin,
.js-show-failure .login-otp,
.js-show-timeout .login-failure,
.js-show-timeout .login-incomplete,
.js-show-timeout .login-complete,
.js-show-timeout .login-spin,
.js-show-timeout .login-otp,
.js-show-complete .login-failure,
.js-show-complete .login-incomplete,
.js-show-complete .login-timeout,
.js-show-complete .login-form,
.js-show-complete .login-spin,
.js-show-complete .login-otp,
.js-show-spin .login-failure,
.js-show-spin .login-incomplete,
.js-show-spin .login-timeout,
.js-show-spin .login-complete,
.js-show-spin .login-form,
.js-show-spin .login-otp,
.js-show-missing-otp .login-complete,
.js-show-missing-otp .login-failure,
.js-show-missing-otp .login-user-row,
.js-show-missing-otp .login-pass-row,
.js-show-missing-otp .login-incomplete,
.js-show-missing-otp .login-spin,
.js-show-missing-otp .login-timeout {
  display: none;
}

.js-forgot-nothing .reset-pass-instructions,
.js-forgot-nothing .reset-pass-confirm,
.js-forgot-nothing .reset-pass-row {
  display: none;
}
.js-forgot-pass .reset-pass-confirm,
.js-forgot-pass .login-pass-row,
.js-forgot-pass .login-button-row {
  display: none;
}
.js-forgot-confirm .reset-pass-instructions,
.js-forgot-confirm .login-user-row,
.js-forgot-confirm .login-pass-row,
.js-forgot-confirm .login-button-row,
.js-forgot-confirm .reset-pass-row {
  display: none;
}

abbr[data-bs-original-title],
abbr[title] {
  text-decoration-skip-ink: auto;
  text-decoration-thickness: 1px;
  text-decoration-color: var(--bg-end);
}

.js-pool-or-kaiser .hide-kaiser,
.js-pool-wa-kaiser .hide-kaiser {
  display: none !important;
}

.js-pool-or-kaiser #login-tagline,
.js-pool-wa-kaiser #login-tagline {
  color: #0078b3;
  font-size: 36pt;
}

.js-pool-or-kaiser .header-home img,
.js-pool-wa-kaiser .header-home img {
  margin-left: auto;
  margin-right: auto;
  height: 3em;
}

#maintenance-message {
  color: #906;
}
#maintenance-message.not-in-maintenance {
  display: none;
}

#login-submit {
  max-width: 180px;
}

.col-lg-7.col-lg-7-features {
  width: 53.333%;
}

.col-lg-4.col-lg-4-carriers {
  width: 38.333%;
}

.col-6.col-6-oregon {
  width: 33.333%;
}

.col-6.col-6-washington {
  width: 66.666%;

  ul {
    columns: 2;
  }
}
