/* ------------------------------- */
/* COLORS                          */
/* ------------------------------- */
/* ------------------------------- */
/* GRADIENTS                       */
/* ------------------------------- */
/* ------------------------------- */
/* GLOBAL PARAMETERS               */
/* ------------------------------- */
/* ------------------------------- */
/* HEADER                          */
/* ------------------------------- */
/* ---------------------
    CONTENT BLADES
------------------------ */
/* ------------------------------- */
/* FORMS                           */
/* ------------------------------- */
/* 1. INPUT ---------------------- */
/* 2. BUTTONS -------------------- */
/* 3. CHECKBOX ------------------- */
/* 4. CHANGE PASSWORD ------------ */
/* ------------------------------- */
/* LISTS                           */
/* ------------------------------- */
/* ------------------------------- */
/* HELP CENTER                     */
/* ------------------------------- */
/* ------------------------------- */
/* FOOTER                          */
/* ------------------------------- */
/* ------------------------------- */
/* DASHBOARD: DEVICES              */
/* ------------------------------- */
/* ------------------------------- */
/* BREAKPOINTS                     */
/* @include bp(mobileplus | tabletplus | laptopplus);  */
/* ------------------------------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
          font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

ul {
  list-style: none;
}

/* ------------------------------- */
/* HEADINGS                        */
/* ------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  text-wrap: balance;
}
h1 {
  font-size: 1.5rem;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

@media (min-width: 30rem) {
  h1 {
    font-size: 1.75rem;
  }
}

@media (min-width: 50rem) {
  h1 {
    font-size: 2.25rem;
    line-height: 3rem;
    font-weight: 600;
  }
}

@media (min-width: 56rem) {
  h1 {
    font-size: 2.625rem;
    line-height: 3rem;
    font-weight: 600;
  }
}

h2 {
  font-size: 1.25rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

@media (min-width: 50rem) {
  h2 {
    font-size: 2.25rem;
    margin-bottom: 2.5rem;
    line-height: 3rem;
    margin-bottom: 0.5em;
    font-weight: 600;
  }
}

h3 {
  font-size: 1rem;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

@media (min-width: 50rem) {
  h3 {
    font-size: 1.5rem;
    line-height: 1.875rem;
  }
}

h4,
.heading4 {
  margin-bottom: 0.25rem;
}

@media (min-width: 50rem) {
  h4,
  .heading4 {
    font-size: 1.75rem;
    line-height: 2rem;
    font-weight: 400;
  }
}

@media (min-width: 50rem) {
  h5 {
    font-size: 20px;
    line-height: 24px;
    font-weight: 400;
  }
}


/* ------------------------------- */
/* PARAGRAPH                       */
/* ------------------------------- */
p {
  line-height: 1.5;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

@media (min-width: 50rem) {
  p {
    font-size: 1rem;
  }
}

p.read-only {
  font-size: 1rem;
}

@media (min-width: 50rem) {
  p.read-only {
    font-size: 1.25rem;
    margin-bottom: 2rem;
  }
}

p.note {
  margin-bottom: 2rem;
}

/* ------------------------------- */
/* LINKS                           */
/* ------------------------------- */
a {
  color: #dc4b82;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}
 
/* ------------------------------- */
/* TEXT UTILITIES                  */
/* ------------------------------- */
.small,
small {
  font-size: 0.875rem;
}

strong {
  color: #333333;
}

.deemphasize {
  font-weight: 400;
  font-size: inherit;
  color: #7d7d7d;
  margin: 0 1rem;
}

@media (min-width: 50rem) {
  .deemphasize {
    font-size: 1.5rem;
  }
}

.prompt {
  font-size: 1.125rem;
  color: #7d7d7d;
  margin-bottom: 1rem;
}

@media (min-width: 50rem) {
  .prompt {
    font-size: 1.875rem;
    margin-bottom: 2rem;
  }
}

/* ------------------------------- */
/* ALIGNMENT                       */
/* ------------------------------- */
.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

/* ------------------------------- */
/* IMAGES                          */
/* ------------------------------- */
img,
.img {
  max-width: 100%;
  height: auto;
}

img--inline, img--external,
.img--inline,
.img--external {
  vertical-align: middle;
  margin-left: 0.25rem;
  height: 1rem;
}

@media (min-width: 50rem) {
  img--inline, img--external,
  .img--inline,
  .img--external {
    margin-left: 0.5rem;
    height: 1.5rem;
  }
}

img--external,
.img--external {
  display: inline-block;
  -webkit-transform: translateY(-0.25rem);
          transform: translateY(-0.25rem);
}

a img, a
.img {
  text-decoration: none;
}

/* ------------------------------- */
/* SEPARATOR                       */
/* ------------------------------- */
hr {
  margin: 2.5rem 0 2rem;
  border: 0;
  border-top: 1px solid #d8d8d8;
}

/* ------------------------------- */
/* NO-WRAP                         */
/* ------------------------------- */
.nowrap {
  white-space: nowrap;
}

/* ------------------------------- */
/* RESPONSIVE                      */
/* ------------------------------- */
@media (min-width: 30rem) {
  .mobile-only {
    display: none;
  }
}

.mobileplus-only {
  display: none;
}

@media (min-width: 30rem) {
  .mobileplus-only {
    display: unset;
  }
}

.desktop-block-only {
  display: none;
}

@media (min-width: 50rem) {
  .desktop-block-only {
    display: block;
  }
}

/* ------------------------------- */
/* HTML and BODY                   */
/* ------------------------------- */
html {
  scroll-behavior: smooth;
}

body {
  max-width: 100rem;
  margin: 0 auto;
  background-color: #cfd6d5;
  color: #333333;
  padding: 5rem 0 0 0;
}

/* ------------------------------- */
/* MAIN                            */
/* ------------------------------- */
main,
.main {
  background-color: #ffffff;
}

/* ------------------------------- */
/* SECTIONS                        */
/* ------------------------------- */
section {
  padding: 2rem 1rem;
  background-color: #ffffff;
}

@media (min-width: 50rem) {
  section {
    padding: 2.5rem;
  }
}

@media (min-width: 50rem) {
  section {
    padding: 3.25rem;
  }
}

/* ------------------------------- */
/* CONTAINER                       */
/* Controls content width          */
/* ------------------------------- */
.container {
  max-width: 60rem;
  margin: 0 auto;
}

.container--fluid {
  max-width: 100rem;
}

.container--form {
  width: 100%;
  background-color: #f1f1f1;
  padding: 2rem 1rem;
  border-radius: 0.25rem;
  -webkit-box-shadow: 2px 2px 8px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 2px 2px 8px 0 rgba(0, 0, 0, 0.15);
}

@media (min-width: 50rem) {
  .container--form {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    max-width: 48rem;
    padding: 2rem;
    margin-bottom: 3rem;
  }
}

@media (min-width: 70rem) {
  .container--form {
    padding: 3.5rem;
    margin-bottom: 5rem;
  }
}

/* ------------------------------- */
/* HEADER                          */
/* ------------------------------- */
.header {
  position: fixed;
  z-index: 10;
  width: 100%;
  top: 0;
  max-width: 100rem;
  padding: 0 1rem;
  background-color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  transition: top 0.2s;
}

@media (min-width: 70rem) {
  .header {
    padding: 0 2rem;
  }
}

.header__scrolled {
  top: -5rem;
}

.header .logo {
  display: none;
}

@media (min-width: 70rem) {
  .header .logo {
    display: block;
    width: 17rem;
  }
}

.header .logo__mobile-menu {
  display: block;
  max-width: 20rem;
  margin: 0.5rem auto;
}

@media (min-width: 70rem) {
  .header .logo__mobile-menu {
    display: none;
  }
}

.header__utilities {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

@media (min-width: 70rem) {
  .header__utilities {
    width: auto;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

/* ------------------------------- */
/* PRIMARY NAVIGATION              */
/* ------------------------------- */
.nav {
  position: relative;
}

.nav ul {
  position: absolute;
  z-index: 900;
  top: 3.75rem;
  left: -1rem;
  width: 100vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: calc(100vh - 4rem);
  -webkit-filter: drop-shadow(1px 2px 2px rgba(0, 0, 0, 0.15));
          filter: drop-shadow(1px 2px 2px rgba(0, 0, 0, 0.15));
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transform-origin: top;
          transform-origin: top;
  opacity: 0;
  -webkit-transition: all linear 0.3s;
  transition: all linear 0.3s;
}

.nav ul.open {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
  opacity: 1;
  background-color: #f1f1f1;
  padding: 1rem;
  border-right: 1px solid rgba(125, 125, 125, 0.15);
  max-width: 30rem;
}

@media (min-width: 70rem) {
  .nav ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    position: initial;
    -webkit-transform: none;
            transform: none;
    height: auto;
    background-color: transparent;
    width: auto;
    -webkit-filter: initial;
            filter: initial;
    opacity: 1;
  }
}

.nav li {
  width: 100%;
}

@media (min-width: 50rem) {
  .nav li {
    margin-right: 1.5rem;
  }
}

.nav li:first-child {
  padding-bottom: 0.5rem;
}

.nav li.first a {
  border-radius: 0.25rem 0.25rem 0 0;
}

.nav li.last {
  margin-right: 0;
}

@media (min-width: 50rem) {
  .nav li.last {
    margin-right: 0;
  }
}

.nav li.last a {
  border-radius: 0 0 0.25rem 0.25rem;
}

.nav li a {
  display: block;
  font-size: 1rem;
  padding: 1rem;
  border-bottom: 2px solid #f1f1f1;
  background-color: #ffffff;
}

@media (min-width: 70rem) {
  .nav li a {
    font-size: 1rem;
    border-bottom: none;
    padding: 0;
  }
}

.nav li a:hover {
  color: #cc2866;
}

.nav li a.selected {
  color: #333333;
  pointer-events: none;
}

.nav a {
  color: #dc4b82;
  display: block;
  white-space: nowrap;
  text-decoration: none;
}

a.mobile-menu {
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  position: relative;
}

@media (min-width: 70rem) {
  a.mobile-menu {
    display: none;
  }
}

a.mobile-menu .bar {
  position: absolute;
  left: 0;
  width: 100%;
  height: 0.25rem;
  background-color: #dc4b82;
  border-radius: 0.125rem;
  opacity: 1;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

a.mobile-menu .bar:nth-child(1) {
  top: 0.5rem;
  -webkit-transform-origin: top left;
          transform-origin: top left;
}

a.mobile-menu .bar:nth-child(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

a.mobile-menu .bar:nth-child(3) {
  bottom: 0.5rem;
  -webkit-transform-origin: bottom left;
          transform-origin: bottom left;
}

a.mobile-menu.open::before {
  content: "";
  position: absolute;
  top: -1.25rem;
  left: -1rem;
  bottom: -1.75rem;
  right: -1rem;
  background-color: #f1f1f1;
  z-index: 0;
}

a.mobile-menu.open .bar {
  left: 0.125rem;
}

a.mobile-menu.open .bar:nth-child(1) {
  top: 0;
  width: 3.3rem;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

a.mobile-menu.open .bar:nth-child(2) {
  opacity: 0;
}

a.mobile-menu.open .bar:nth-child(3) {
  bottom: 0;
  width: 3.3rem;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

/* ------------------------------- */
/* LANGUAGE SELECTOR               */
/* ------------------------------- */
.language-selector {
  display: none;
}

@media (min-width: 70rem) {
  .language-selector {
    display: initial;
    padding: 0 1.5rem;
    margin: 0 1.5rem;
    border: 1px solid #d5d5d5;
    border-width: 0 1px;
  }
  .language-selector select {
    height: 2.75rem;
    color: #dc4b82;
  }
}

.language-selector-mobile {
  display: block;
  margin-top: 1rem;
}

.language-selector-mobile select {
  background-color: #ffffff;
  height: 2.75rem;
  border: 0;
  color: #dc4b82;
}

@media (min-width: 70rem) {
  .language-selector-mobile {
    display: none;
  }
}

/* ------------------------------- */
/* NOTIFICATIONS                   */
/* ------------------------------- */
.notifications {
  margin-left: auto;
  position: relative;
}

@media (min-width: 70rem) {
  .notifications {
    margin-left: 0;
  }
}

/* .notifications::after {
  content: attr(data-num-notifications);
  position: absolute;
  top: -0.5rem;
  right: -1rem;
  width: 2rem;
  height: 2rem;
  font-size: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #a32c59;
  color: #ffffff;
  border-radius: 100%;
  border: 2px solid #ffffff;
} */

.notifications a:hover {
  color: #cc2866;
}

.notifications a.active {
  background-color: #dc4b82;
}

.notifications a.active .notification-icon {
  display: none;
}

.notifications a.active .notification-icon--active {
  display: block;
}

.notifications a .notification-icon {
  display: block;
}

.notifications a .notification-icon--active {
  display: none;
}

/* ------------------------------- */
/* PROFILE MENU                    */
/* ------------------------------- */
.icon--utility {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 3rem;
  width: 3rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 100%;
}

.icon--utility img {
  display: block;
}

.profile {
  padding-left: 1.5rem;
  white-space: nowrap;
  position: relative;
}

.profile__dropdown-icon {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.profile__dropdown-icon.expanded {
  -webkit-transform: rotate(180deg) translateY(75%);
          transform: rotate(180deg) translateY(75%);
}

.profile a {
  text-decoration: none;
}

.profile-menu {
  position: absolute;
  top: 140%;
  right: 0;
  border: 1px solid #d8d8d8;
  width: 14rem;
  border-radius: 0.5rem;
  -webkit-filter: drop-shadow(2px 2px 8px rgba(0, 0, 0, 0.15));
          filter: drop-shadow(2px 2px 8px rgba(0, 0, 0, 0.15));
  z-index: 100;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transform-origin: top;
          transform-origin: top;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}

.profile-menu::before {
  content: "";
  position: absolute;
  right: 2.5rem;
  top: -0.8rem;
  width: 1.5rem;
  height: 1.5rem;
  background-color: #f1f1f1;
  border: 1px solid #d8d8d8;
  border-width: 1px 0 0 1px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.profile-menu.open {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
}

.profile__user {
  padding: 0.75rem;
  background-color: #f1f1f1;
  border-radius: 0.5rem 0.5rem 0 0;
  color: #7d7d7d;
}

.profile__user strong {
  display: block;
  line-height: 2;
}

.profile__menu-items {
  background-color: #ffffff;
  border-radius: 0 0 0.5rem 0.5rem;
}

.profile__menu-items li {
  padding: 0.75rem 1rem;
}

.profile__menu-items li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.profile__menu-items li a i,
.profile__menu-items li a img {
  margin-right: 0.75rem;
}

.profile__menu-items li:hover a {
  color: #a21f51;
}

.cta--signin {
  width: max-content;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.to-dashboard--mobile {
  position: fixed;
  bottom: 0;
  width: 100%;
  padding: 1rem;
  display: flex;
  justify-content: center;
}
@media (min-width: 50rem) {
  .to-dashboard--mobile {
    display: none;
  }
}
.to-dashboard--tablet-plus {
  display: none;
}
@media (min-width: 50rem) {
  .to-dashboard--tablet-plus {
    display: flex;
    position: fixed;
    right: 2.5%;
    top: 50%;
  }
}

.bg-connect {
  position: absolute;
  bottom: -8rem;
  right: 0;
  z-index: 0;
  width: clamp(320px, 55%, 680px);
}

.bg-connect-google {
  position: absolute;
  bottom: 4rem;
  right: 6rem;
  z-index: 0;
}

.bg-content-connected {
  display: none;
}
@media (min-width: 70rem) {
  .bg-content-connected {
    display: block;
    position: absolute;
    bottom: -6rem;
    right: 42.5%;
    z-index: 0;
    max-width: 35rem;
  }
}

.bg-welcome-back {
  position: absolute;
  bottom: 0rem;
  right: 0;
  z-index: 0;
}

.bg-way-to-go {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 0;
}


/* ------------------------------- */
/* FOOTER                          */
/* ------------------------------- */
.footer {
  background-color: #ffffff;
  padding: 2.75rem 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (min-width: 50rem) {
  .footer {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 0 auto;
  }
}

@media (min-width: 70rem) {
  .footer {
    padding: 2rem 3.125rem;
  }
}

.footer h4 {
  display: none;
}

@media (min-width: 50rem) {
  .footer h4 {
    display: block;
    margin: 0 0 1.25rem;
    font-size: 0.875rem;
  }
}

.footer__logo {
  margin-bottom: 1.25rem;
  height: 3.25rem;
}

.footer__contact {
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #f1f1f1;
}

@media (min-width: 50rem) {
  .footer__contact {
    padding: 0 2.25rem;
    border-bottom: none;
  }
}

.footer__contact p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 2;
  font-size: 1rem;
}

@media (min-width: 50rem) {
  .footer__contact p {
    padding-left: 3.375rem;
  }
}

.footer__contact strong {
  display: inline-block;
  width: 1.25ch;
  letter-spacing: 6px;
  overflow: hidden;
}

.footer__contact a {
  border-left: 1px solid #f1f1f1;
  padding-left: 0.5rem;
  margin-left: 0.5rem;
}

.footer__nav {
  border-bottom: 1px solid #f1f1f1;
}

@media (min-width: 50rem) {
  .footer__nav {
    padding: 0 2.25rem;
    border-left: 1px solid #f1f1f1;
    border-bottom: none;
  }
}

.footer__nav ul {
  padding: 1.25rem 0;
  -webkit-column-count: 2;
          column-count: 2;
}

@media (min-width: 50rem) {
  .footer__nav ul {
    padding: 0;
    -webkit-column-count: 1;
            column-count: 1;
  }
}

.footer__nav li {
  line-height: 2;
}

.footer__copyright {
  padding: 1.25rem 0;
  border-bottom: 1px solid #f1f1f1;
}

@media (min-width: 50rem) {
  .footer__copyright {
    padding: 0 2.25rem;
    border-bottom: none;
    border-left: 1px solid #f1f1f1;
  }
}

.footer__copyright a {
  display: block;
  line-height: 2;
}

.footer__language {
  padding-top: 1.25rem;
}

@media (min-width: 50rem) {
  .footer__language {
    padding: 0 2.25rem;
    border-left: 1px solid #f1f1f1;
  }
}

.footer__language select {
  height: 2.75rem;
}

/* ------------------------------- */
/* GOOGLE SPONSOR                  */
/* ------------------------------- */
.sponsor {
  background-color: #f1f1f1;
  color: #333333;
  padding: 1rem 2rem 0.25rem;
  font-size: 0.875rem;
  text-align: center;
}

/* ------------------------------- */
/* FORM HEADING WRAPPER            */
/* All Change Profile Info pages   */
/* ------------------------------- */
.container--form h1,
.container--form h2 {
  text-align: center;
}

@media (min-width: 50rem) {
  .container--form h1,
  .container--form h2 {
    text-align: left;
  }
}

/* ------------------------------- */
/* FORM LAYOUT: 2-Column           */
/* Change Password, Contact Us,    */
/* Do Not Sell My Info             */
/* ------------------------------- */
.form-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (min-width: 50rem) {
  .form-layout {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.form-layout .col-form {
  padding: 0 0 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid #f1f1f1;
}

@media (min-width: 50rem) {
  .form-layout .col-form {
    -webkit-box-flex: 3;
        -ms-flex: 3;
            flex: 3;
    padding: 0 2.5rem 0 0;
    margin-bottom: 0;
    border-bottom: none;
  }
}

.form-layout .col-form--change-password {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

@media (min-width: 50rem) {
  .form-layout .col-form--change-password {
    -webkit-box-ordinal-group: unset;
        -ms-flex-order: unset;
            order: unset;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
  }
}

.form-layout .col-form--change-password h2 {
  display: none;
}

@media (min-width: 50rem) {
  .form-layout .col-form--change-password h2 {
    display: block;
  }
}

@media (min-width: 50rem) {
  .form-layout .sidebar {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 0 0 0 2.5rem;
    border-left: 1px solid #e4e4e4;
  }
}

.form-layout .sidebar h3 {
  font-size: 1.25rem;
  text-align: center;
}

@media (min-width: 50rem) {
  .form-layout .sidebar h3 {
    font-size: 1.5rem;
    text-align: left;
  }
}

.form-layout .sidebar__prompt {
  font-size: 1rem;
  line-height: 1.5rem;
  text-align: center;
  margin-bottom: 1rem;
}

@media (min-width: 50rem) {
  .form-layout .sidebar__prompt {
    font-size: 1.5rem;
    line-height: 1.75rem;
    text-align: left;
    margin-bottom: 0.5rem;
  }
}

/* ------------------------------- */
/* FORM CONTROL WRAPPER            */
/* Labels, Fields, etc.
/* ------------------------------- */
.form h3 {
  margin: 2rem 0 1rem;
}

.form-control {
  margin-bottom: 1.5rem;
}

@media (min-width: 50rem) {
  .form-control {
    margin-bottom: 2rem;
  }
}

.form-control__label {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
  color: #333333;
}

@media (min-width: 50rem) {
  .form-control__label {
    font-size: 1rem;
    margin-bottom: 0.375rem;
  }
}

.form-control__label.disabled {
  color: #b0b0b0;
}

.form-control__text {
  display: block;
}

.form-control__date {
  display: block;
  background: #ffffff url(../svg/calendar.svg) no-repeat 96% 50%;
  background-size: 24px;
}

.form-control__prompt {
  font-size: 1rem;
  margin: 1.5rem 0;
  text-align: center;
  color: #7d7d7d;
}

@media (min-width: 50rem) {
  .form-control__prompt {
    font-size: 1.5rem;
    margin: 2.5rem 0;
    text-align: left;
  }
}


.form-control__error {
  border-left: 0.5rem solid #a32c59 !important;
}

.form-control__error-text {
  position: relative;
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.75rem 1rem;
  background-color: #a32c59;
  color: #ffffff;
  border-radius: 0.25rem;
}

.form-control__error-text::before {
  content: "";
  position: absolute;
  left: 2.5rem;
  top: -0.5rem;
  width: 1.25rem;
  height: 1.25rem;
  background-color: #a32c59;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.form-control__error-text strong {
  display: block;
  color: #ffffff;
}

.form-control__link {
  font-size: 1rem;
  margin-bottom: 2rem;
  color: #dc4b82;
  text-align: center;
}

@media (min-width: 50rem) {
  .form-control__link {
    font-size: 1.25rem;
    text-align: left;
  }
}

@media (min-width: 30rem) {
  .form-control--row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media (min-width: 30rem) {
  .form-control--row .form-control {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

@media (min-width: 30rem) {
  .form-control--row .form-control:not(:last-child) {
    margin-right: 2rem;
  }
}

@media (min-width: 30rem) {
  .form-control--row .form-control--wide {
    -webkit-box-flex: 3;
        -ms-flex: 3;
            flex: 3;
  }
}

.form-control__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin: 1rem 0 1.5rem;
}

@media (min-width: 50rem) {
  .form-control__group {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.form-control__group p {
  font-size: 0.875rem;
  margin: 1rem 0 2rem;
}

@media (min-width: 50rem) {
  .form-control__group p {
    margin: 0 2rem 0 1rem;
  }
}

.form--2col {
  display: -ms-grid;
  display: grid;
}

@media (min-width: 50rem) {
  .form--2col {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    grid-gap: 2rem;
  }
}

@media (min-width: 50rem) {
  .form--2col h3 {
    margin-top: 0;
  }
}

.form__actions {
  padding: 2rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (min-width: 30rem) {
  .form__actions {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.form__actions--return {
  text-align: center;
}

@media (min-width: 70rem) {
  .form__actions--return {
    text-align: left;
  }
}

.form__actions .supplemental-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 0.75rem 0 0 1rem;
  color: #7d7d7d;
}

@media (min-width: 70rem) {
  .form__actions .supplemental-text {
    width: auto;
    margin: 0 0 0 1.5rem;
  }
}

.form--consent {
  margin-bottom: 2rem;
}

/* ------------------------------- */
/* FORM: ENTER CODE                */
/* Enrollment                      */
/* ------------------------------- */
.form__code {
  margin: 0 auto 2rem;
}

.form__code [type="text"] {
  width: 2.5rem;
  height: 3rem;
  margin: 0.125rem;
  padding: 0.25rem;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #dc4b82;
  border: 1px solid #dc4b82;
  border-radius: 0.25rem;
  -webkit-box-shadow: 2px 2px 8px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 2px 2px 8px 0 rgba(0, 0, 0, 0.15);
}

@media (min-width: 50rem) {
  .form__code [type="text"] {
    width: 3rem;
    height: 4rem;
    padding: 0.5rem;
    font-size: 2.25rem;
  }
}

/* ------------------------------- */
/* FIELDSET                        */
/* Contact Us                      */
/* ------------------------------- */
fieldset {
  margin: 0 0 1.5rem;
  border: 0;
}

fieldset legend {
  display: block;
  font-size: 1rem;
  color: #333333;
  margin-bottom: 1rem;
}

/* ------------------------------- */
/* INPUT FIELDS                    */
/* ------------------------------- */
input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid #b4b4b4;
  border-radius: 0.25rem;
  height: 2.25rem;
  width: 100%;
  font-size: 1rem;
  padding-left: 0.5rem;
}

@media (min-width: 30rem) {
  input[type="text"],
  input[type="password"],
  input[type="email"],
  input[type="tel"] {
    height: 3rem;
    font-size: 1.125rem;
    padding-left: 1rem;
  }
}

@media (min-width: 50rem) {
  input[type="text"],
  input[type="password"],
  input[type="email"],
  input[type="tel"] {
    height: 3.5rem;
  }
}

input[type="text"].form-control--phone,
input[type="password"].form-control--phone,
input[type="email"].form-control--phone,
input[type="tel"].form-control--phone {
  max-width: 25rem;
}

input[type="text"][disabled],
input[type="password"][disabled],
input[type="email"][disabled],
input[type="tel"][disabled]{
  color: #b0b0b0;
}

button:disabled,button[disabled]{
  background-color: #b0b0b0;
}
/* ------------------------------- */
/* TEXTAREA                        */
/* ------------------------------- */
textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid #b4b4b4;
  border-radius: 0.25rem;
  height: 12rem;
  width: 100%;
  font-size: 1.125rem;
  padding: 1rem;
}

/* ------------------------------- */
/* BUTTONS                         */
/* ------------------------------- */
.btn {
  display: inline-block;
  padding: 1rem;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  font-size: 1rem;
  line-height: 1;
  font-weight: 600;
  border: 0;
  border-radius: 0.25rem;
  -webkit-box-shadow: 1px 3px 6px 2px rgba(0, 0, 0, 0.1);
          box-shadow: 1px 3px 6px 2px rgba(0, 0, 0, 0.1);
  width: 100%;
  cursor: pointer;
}

@media (min-width: 30rem) {
  .btn {
    width: auto;
    min-width: 14rem;
  }
}

@media (min-width: 50rem) {
  .btn {
    letter-spacing: 2px;
    padding: 1rem 2rem;
  }
}

.btn:hover {
  text-decoration: none;
}

.btn + .btn {
  margin: 0.75rem 0 0;
}

@media (min-width: 30rem) {
  .btn + .btn {
    margin: 0 0 0 1rem;
  }
}

.btn__primary {
  background-color: #dc4b82;
  color: #ffffff;
  border-color: #dc4b82;
}

.btn__primary.btn--small {
  width: 100%;
}

@media (min-width: 30rem) {
  .btn__primary.btn--small {
    width: auto;
  }
}
.btn__primary:hover {
  background-color: #a32c59;
}
.btn--pill {
  border-radius: 2rem;
}
.btn--hero {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  border-radius: 2rem;
  letter-spacing: 0;
  padding: 0.5rem 1.25rem 0.5rem 0.5rem;
  min-height: 3.25rem;
  font-size: 0.875rem;
}
button.btn.btn__primary.btn--hero.ng-star-inserted {
  margin-left: 0rem;
}
.btn--hero:not(:has(img)) {
  padding: 0.5rem 1.75rem;
  min-width: 0;
}
@media (min-width: 30rem) {
  .btn--hero {
    font-size: 1rem;
  }
}
@media (min-width: 50rem) {
  .btn--hero {
    gap: 0.75rem;
    letter-spacing: 1px;
    font-size: 1rem;
  }
}
.btn--hero > img {
  margin-left: auto;
}
@media (min-width: 30rem) {
  .btn--hero > img {
    margin-left: 2rem;
  }
}
.btn--hero.btn__secondary {
  color: #505050;
}
.btn--hero .icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.375rem;
  background-color: #ffffff;
  border-radius: 100%;
}
.btn--hero .icon-wrapper img {
  height: 1.5rem;
}
.btn--with-icon {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}
.btn--auto {
  width: auto;
  min-width: 0;
}
.btn--video {
  background-color: #ffffff;
  color: #505050;
  display: flex;
  gap: 0.625rem;
  align-items: center;
  padding: 0rem 0rem 0rem 1rem;
  border-radius: 2rem;
  text-transform: none;
  letter-spacing: 0px;
  width: auto;
  min-width: 0;
  font-size: 1.125rem;
}
.btn--video img {
  display: block;
  width: 3rem;
  aspect-ratio: 1;
  margin-left: auto;
}
.btn--video--inverse {
  background-color: #dc4b82;
  color: #ffffff;
}

.btn__secondary {
  background-color: #ffffff;
  color: #dc4b82;
}

.btn__secondary.btn--small {
  -webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.15);
}

.btn__important {
  background-color: #333333;
  color: #ffffff;
}

.btn__icon {
  padding: 0;
  margin: 0;
  border: 0;
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  min-width: auto;
}

.btn--img {
  width: 1rem;
  display: inline-block;
  vertical-align: middle;
  margin-top: -0.375rem;
  margin-left: 0.5rem;
}

.btn--device {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  padding: 0.5rem;
}

@media (min-width: 50rem) {
  .btn--device {
    padding: 1rem;
  }
}

.btn--device strong {
  color: #ffffff;
}

.btn--fix {
  text-align: left;
  padding: 0.75rem 1.25rem;
}

.btn--fix strong {
  display: block;
  margin-bottom: 0.25rem;
}

.btn--get-started {
  border: 1px solid #f1f1f1;
  position: relative;
  padding-right: 5rem;
}

.btn--get-started::after {
  content: url("../images/icons/icon_arrow_star.svg");
  position: absolute;
  top: 0;
  right: 0;
  background-color: #dc4b82;
  border-radius: 0 0.25rem 0.25rem 0;
  width: 3.5rem;
  height: 100%;
}

.btn--small {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  text-align: center;
  min-width: auto;
  letter-spacing: 0.5px;
}

.btn--full-width {
  width: 100%;
  text-align: center;
}

/* ------------------------------- */
/* CHECK BOXES                     */
/* ------------------------------- */
.custom-checkbox {
  position: relative;
  margin-bottom: 2.5rem;
  /* width:9rem; */
}

.custom-checkbox--right {
  margin: 0.5rem 0 0.75rem;
}

@media (min-width: 50rem) {
  .custom-checkbox--right {
    float: right;
    margin: -0.5rem 0.25rem 0.125rem 0;
  }
}

.custom-checkbox--row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.custom-checkbox--row .custom-checkbox:not(:last-child) {
  margin-right: 2.5rem;
}

.custom-checkbox input[type="checkbox"] {
  position: absolute;
  top: -1px;
  left: -1px;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  width: 1px;
}

.custom-checkbox input[type="checkbox"]:checked + .custom-checkbox__label::before {
  content: url("../images/icons/icon_checkbox_checked.svg");
}

.custom-checkbox__label {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.custom-checkbox__label::before {
  content: url(../images/icons/icon_checkbox.svg);
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0.75rem;
}

/* ------------------------------- */
/* RADIO BUTTONS                   */
/* ------------------------------- */
input[type="radio"] {
  display: none;
}

input[type="radio"] + label {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  /* prevents user selection of text --- */
  margin-right: 1.5rem;
}

input[type="radio"] + label::before {
  content: url("../images/icons/icon_radio_btn.svg");
  width: 1.5rem;
  height: 1.5rem;
  vertical-align: middle;
  display: inline-block;
  margin-right: 0.5rem;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

input[type="radio"] + label:hover::before, input[type="radio"] + label:focus::before {
  color: #333333;
}

input[type="radio"]:checked + label::before {
  content: url("../images/icons/icon_radio_btn_checked.svg");
}

/* ------------------------------- */
/* SELECT DROP-DOWN                */
/* ------------------------------- */
select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-family: inherit;
  border: 1px solid #d5d5d5;
  padding: 0.5rem 3rem 0.5rem 0.75rem;
  height: 2.25rem;
  color: #333333;
  font-size: 1rem;
  border-radius: 0.25rem;
  width: 100%;
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0NDggNTEyIj48cGF0aCBmaWxsPSIjZGM0YjgyIiBkPSJNNDQzLjUgMTYyLjZsLTcuMS03LjFjLTQuNy00LjctMTIuMy00LjctMTcgMEwyMjQgMzUxIDI4LjUgMTU1LjVjLTQuNy00LjctMTIuMy00LjctMTcgMGwtNy4xIDcuMWMtNC43IDQuNy00LjcgMTIuMyAwIDE3bDIxMSAyMTEuMWM0LjcgNC43IDEyLjMgNC43IDE3IDBsMjExLTIxMS4xYzQuOC00LjcgNC44LTEyLjMuMS0xN3oiLz48L3N2Zz4=");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px;
}

@media (min-width: 50rem) {
  select {
    height: 3.5rem;
  }
}

select.auto {
  width: auto;
  margin-left: 1rem;
}

select[disabled] {
  color: #979797;
  border: 1px solid #f1f1f1;
}

/* ------------------------------- */
/* RADIO BUTTON GROUP              */
/* ------------------------------- */
.btn-group-radio {
  background-color: #ffffff;
  border: 1px solid #7d7d7d;
  border-radius: 0.25rem;
  padding: 0.125rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
}

.btn-group-radio.disabled {
  border-color: #b0b0b0;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  opacity: 0.5;
}

.btn-group-radio input[type="radio"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  margin: -1px;
  clip: rect(0, 0, 0, 0);
}

.btn-group-radio input[type="radio"] + label {
  padding: 0.375rem 1rem;
  margin-right: 0;
  text-align: center;
  font-size: 1rem;
  cursor: pointer;
  text-transform: uppercase;
  width: 6rem;
}

.btn-group-radio input[type="radio"] + label::before {
  content: "";
  opacity: 0;
  -webkit-transform: scale(0);
          transform: scale(0);
  font-size: 1.25rem;
  margin-right: 0.5rem;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
  display: inline;
}

.btn-group-radio input[type="radio"]:checked + label {
  background-color: #dc4b82;
  border-radius: 0.25rem;
  font-weight: 600;
  color: #ffffff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.btn-group-radio input[type="radio"]:checked + label::before {
  content: url("../images/icons/icon_check.svg");
  margin-right: 0.5rem;
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 1;
}

/* ------------------------------- */
/* TOGGLE PASSWORD: SHOW | HIDE    */
/* ------------------------------- */
.password-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.toggle-password {
  text-decoration: none;
  border: none;
  border-radius: 0.25rem;
  background-color: #ffffff;
  color: #7d7d7d;
  cursor: pointer;
  height: 2.125rem;
  width: 2.125rem;
  margin-left: -2.5rem;
  outline: 0;
  display: -ms-grid;
  display: grid;
  place-items: center;
}

@media (min-width: 50rem) {
  .toggle-password {
    height: 3.25rem;
    width: 3.25rem;
    margin-left: -3.5rem;
  }
}

.toggle-password:focus {
  -webkit-box-shadow: 0 0 2px 2px rgba(220, 75, 130, 0.8);
          box-shadow: 0 0 2px 2px rgba(220, 75, 130, 0.8);
}

.toggle-password__img {
  margin: 0 !important;
  padding: 0 !important;
}

/* ------------------------------- */
/* UTILITY: FOR ANGULAR SHAPES     */
/* ------------------------------- */
/* ONE SEPARATOR ----------------- */
/* ------------------------------- */
.angular-1 {
  position: relative;
  background-color: #26b9b8;
}

.angular-1:before {
  content: "";
  position: absolute;
  top: -2rem;
  left: 0;
  height: 2rem;
  width: 100%;
  background-color: #47d2d1;
  -webkit-clip-path: polygon(0 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 100%, 0 100%);
}

@media (min-width: 50rem) {
  .angular-1:before {
    top: -4rem;
    height: 4.05rem;
  }
}

/* TWO SEPARATORS ---------------- */
/* ------------------------------- */
.angular-2 {
  position: relative;
}

.angular-2:before {
  content: "";
  position: absolute;
  top: -1.75rem;
  left: 0;
  height: 1.75rem;
  width: 100%;
  background-color: #47d2d1;
  -webkit-clip-path: polygon(0 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 100%, 0 100%);
  z-index: 1;
}

@media (min-width: 50rem) {
  .angular-2:before {
    top: -3.125rem;
    height: 3.125rem;
  }
}

.angular-2:after {
  content: "";
  position: absolute;
  top: -4rem;
  left: 0;
  height: 4rem;
  width: 100%;
  background-color: #7be0df;
  z-index: 0;
  -webkit-clip-path: polygon(0 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 100%, 0 100%);
}

@media (min-width: 50rem) {
  .angular-2:after {
    top: -6.5rem;
    height: 6.5rem;
  }
}

/* ------------------------------- */
/* EARN REWARDS ???                */
/* ------------------------------- */
.earn-rewards {
  background: -webkit-gradient(linear, left top, right top, from(#26b9b8), to(#47d2d1));
  background: linear-gradient(90deg, #26b9b8 0%, #47d2d1 100%);
  text-align: center;
  color: #ffffff;
}

.earn-rewards h2 {
  margin-bottom: 1.25rem;
}

.earn-rewards p {
  font-size: 1.5rem;
}

/* EARN REWARDS: CARDS ----------- */
/* ------------------------------- */
.earn-rewards-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (min-width: 50rem) {
  .earn-rewards-cards {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.earn-rewards-cards .card-reward {
  margin: 0.25rem;
  border-radius: 0.25rem;
  -webkit-box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.2);
          box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.2);
  background-color: #ffffff;
  color: #333333;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 4rem auto 6rem;
      grid-template-columns: 4rem auto 6rem;
  -ms-flex-line-pack: center;
      align-content: center;
}

@media (min-width: 50rem) {
  .earn-rewards-cards .card-reward {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    -ms-grid-rows: 10rem 5rem 1fr;
        grid-template-rows: 10rem 5rem 1fr;
    min-height: 24rem;
    text-align: center;
  }
}

.earn-rewards-cards .card-reward--amount {
  text-align: right;
  padding: 0.5rem;
  background-color: #d2ffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

@media (min-width: 50rem) {
  .earn-rewards-cards .card-reward--amount {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1 / span 1;
    border-radius: 0.25rem 0.25rem 0 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding-top: 1.5rem;
    text-align: center;
  }
}

@media (min-width: 50rem) {
  .earn-rewards-cards .card-reward--amount p {
    margin-bottom: 0;
  }
}

.earn-rewards-cards .card-reward .reward-currency {
  display: inline-block;
  vertical-align: top;
  margin-top: 0.25rem;
}

@media (min-width: 50rem) {
  .earn-rewards-cards .card-reward .reward-currency {
    font-size: 1.875rem;
    margin-top: 1rem;
  }
}

.earn-rewards-cards .card-reward .reward-value {
  color: #009d9c;
  font-size: 1.5rem;
  font-weight: 500;
}

@media (min-width: 50rem) {
  .earn-rewards-cards .card-reward .reward-value {
    font-size: 4rem;
    letter-spacing: -1px;
  }
}

.earn-rewards-cards .card-reward--icon {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  -ms-grid-column-align: center;
      justify-self: center;
}

.earn-rewards-cards .card-reward--icon img {
  max-width: 2.25rem;
  height: 2rem;
}

@media (min-width: 50rem) {
  .earn-rewards-cards .card-reward--icon {
    -ms-flex-item-align: end;
        -ms-grid-row-align: end;
        align-self: end;
  }
}

.earn-rewards-cards .card-reward--content {
  padding: 0.5rem;
  line-height: 1.1rem;
  font-size: 0.875rem;
}

@media (min-width: 50rem) {
  .earn-rewards-cards .card-reward--content {
    padding: 1rem 0.5rem;
    font-size: 1rem;
  }
}

.earn-rewards-cards .card-reward--content p {
  margin-bottom: 0;
}

/* ------------------------------- */
/* HAVE QUESTIONS                  */
/* Many pages                      */
/* ------------------------------- */
.questions {
  padding: 3rem 0;
  background-color: #0e4656;
  text-align: center;
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.questions h2 {
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
}

@media (min-width: 50rem) {
  .questions h2 {
    font-size: 2.25rem;
  }
}

.questions p {
  font-size: 1.125rem;
}

@media (min-width: 50rem) {
  .questions p {
    font-size: 1.5rem;
  }
}

.questions .cta {
  margin: 2.5rem 0 0;
}

/* ------------------------------- */
/* MODAL                           */
/* ------------------------------- */
.modal {
  display: none;
}

.modal__dropsheet {
  position: fixed;
  z-index: 10;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: -webkit-gradient(linear, left top, right top, from(rgba(123, 224, 223, 0.95)), to(rgba(38, 185, 184, 0.95)));
  background: linear-gradient(90deg, rgba(123, 224, 223, 0.95) 0%, rgba(38, 185, 184, 0.95) 100%);
}

.modal .close {
  text-align: right;
  cursor: pointer;
  padding: 0.5rem 0.5rem 0 0;
  background-color: #f1f1f1;
  border-radius: 0.25rem 0.25rem 0 0;
}

@media (min-width: 50rem) {
  .modal .close {
    padding: 1rem 1rem 0 0;
    background-color: #ffffff;
  }
}

.modal-content {
  position: absolute;
  z-index: 1000;
  background-color: #ffffff;
  opacity: 1;
  outline: 0;
  top: 0.5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-radius: 0.25rem;
  width: 90%;
  max-width: 60rem;
  -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (min-width: 70rem) {
  .modal-content {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}

.modal-content--small {
  position: fixed;
  max-width: 30rem;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
}

.modal-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (min-width: 50rem) {
  .modal-body {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.modal-body .modal-form-content {
  background-color: #f1f1f1;
  border-radius: 0.5rem;
  padding: 0 1.5rem 1.5rem;
}

@media (min-width: 50rem) {
  .modal-body .modal-form-content {
    margin: 0 0 0 2rem;
    padding: 3rem;
    -webkit-box-flex: 2;
        -ms-flex: 2;
            flex: 2;
  }
}

.modal-body .modal-form-content h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

@media (min-width: 50rem) {
  .modal-body .modal-form-content h2 {
    font-size: 2.25rem;
    text-align: left;
  }
}

.modal-body .sidebar {
  text-align: center;
  padding: 2rem 1rem;
  border-top: 1px solid #d8d8d8;
}

@media (min-width: 50rem) {
  .modal-body .sidebar {
    text-align: left;
    -webkit-box-flex: 1.2;
        -ms-flex: 1.2;
            flex: 1.2;
    padding: 1rem 3rem;
    border-top: none;
    border-left: 1px solid #f1f1f1;
  }
}

.modal-body .sidebar h3 {
  text-align: center;
  font-size: 1.25rem;
}

@media (min-width: 50rem) {
  .modal-body .sidebar h3 {
    text-align: left;
  }
}

.modal-body .sidebar__prompt {
  text-align: center;
  font-size: 1rem;
  line-height: 1.4;
}

@media (min-width: 50rem) {
  .modal-body .sidebar__prompt {
    text-align: left;
    font-size: 1.5rem;
    line-height: 1.75rem;
  }
}

.modal-body .sidebar--form {
  padding: 1.5rem;
}

@media (min-width: 50rem) {
  .modal-body .sidebar--form {
    padding: 1.5rem 2rem;
  }
}

.modal-body .sidebar--form p {
  color: #7d7d7d;
}

.modal-body .modal-add-device {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 2rem 1rem;
}

@media (min-width: 50rem) {
  .modal-body .modal-add-device {
    padding: 2rem;
  }
}

.modal-body .modal-add-device h2 {
  font-size: 1.5rem;
  margin-top: -4rem;
  margin-bottom: 1.5rem;
  pointer-events: none;
}

.modal-body .modal-add-device .add-device-actions .btn {
  line-height: 1.2;
  margin: 0 0 1rem;
  width: 100%;
}

.modal-body .modal-hc-content {
  padding: 1rem;
  background-color: #f1f1f1;
  padding: 0.5rem 1rem 2rem;
}

@media (min-width: 50rem) {
  .modal-body .modal-hc-content {
    padding: 1rem 3rem 2rem;
    height: 40rem;
    overflow-y: auto;
    -webkit-box-flex: 2;
        -ms-flex: 2;
            flex: 2;
    background-color: #ffffff;
  }
}

.modal-body .modal-hc-content::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 8px;
  height: 8px;
}

.modal-body .modal-hc-content::-webkit-scrollbar-thumb {
  border-radius: 0.25rem;
  background-color: rgba(51, 51, 51, 0.7);
}

.modal-body .modal-hc-content h2 {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 1rem;
}

@media (min-width: 50rem) {
  .modal-body .modal-hc-content h2 {
    font-size: 2.25rem;
    text-align: left;
  }
}

.modal-body .modal-hc-content p,
.modal-body .modal-hc-content li {
  font-size: 1rem;
}

@media (min-width: 50rem) {
  .modal-body .modal-hc-content p,
  .modal-body .modal-hc-content li {
    font-size: 1.25rem;
  }
}

.modal-footer {
  padding: 1.5rem;
  margin-top: auto;
}

/* ------------------------------- */
/* ACCORDION - HELP CENTER         */
/* ------------------------------- */
.accordion {
  border: 1px solid #f1f1f1;
  border-radius: 0.25rem;
}

.accordion__heading {
  display: block;
  width: 100%;
  text-decoration: none;
  background: #ffffff url("../images/arrow_down.svg") no-repeat 95% 50%;
  color: #333333;
  padding: 1rem 2rem 1rem 1rem;
  border: 0;
  border-bottom: 1px solid #f1f1f1;
  font-size: 1.125rem;
  font-weight: 400;
  text-align: left;
  cursor: pointer;
}

@media (min-width: 50rem) {
  .accordion__heading {
    font-size: 1.5rem;
    padding: 1rem 2rem;
    background-position: 98% 50%;
  }
}

.accordion__heading.open {
  background: #ffffff url("../images/arrow_up.svg") no-repeat 95% 50%;
}

@media (min-width: 50rem) {
  .accordion__heading.open {
    background-position: 98% 50%;
  }
}

.accordion__description {
  background-color: #f1f1f1;
  color: #333333;
  opacity: 0;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transform-origin: top;
          transform-origin: top;
  max-height: 0;
  padding: 0 1.5rem;
  overflow: hidden;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.2s;
  transition: opacity 0.3s, -webkit-transform 0.2s;
  transition: opacity 0.3s, transform 0.2s;
  transition: opacity 0.3s, transform 0.2s, -webkit-transform 0.2s;
}

.accordion__description.open {
  padding: 1rem 1.5rem;
  max-height: 120rem;
  opacity: 1;
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
}


/* ------------------------------- */
/* FAQ LIST                        */
/* Help Center                     */
/* ------------------------------- */
.list-faq {
  margin: 0;
  padding: 0;
}

.list-faq li {
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

@media (min-width: 50rem) {
  .list-faq li {
    font-size: 1.25rem;
  }
}

/* ------------------------------- */
/* BULLETED LIST                   */
/* Help Center, Policies           */
/* ------------------------------- */
.list-bulleted {
  margin: 0 0 2rem 1rem;
  padding-left: 1rem;
}

.list-bulleted li {
  color: #7d7d7d;
  line-height: 1.5;
  margin-bottom: 1rem;
  font-size: 0.875rem;
}

@media (min-width: 50rem) {
  .list-bulleted li {
    font-size: 1rem;
  }
}

.list-bulleted li::before {
  content: "\2022";
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

.list-bulleted--primary li::before {
  color: #dc4b82;
}

.list-bulleted--secondary li::before {
  color: #009d9c;
}

/* ------------------------------- */
/* LARGE TEXT LIST                 */
/* Enrollment                      */
/* ------------------------------- */
.list-largetext {
  margin-bottom: 2rem;
}

@media (min-width: 50rem) {
  .list-largetext {
    margin-bottom: 0;
  }
}

.list-largetext li {
  font-size: 1rem;
}

@media (min-width: 50rem) {
  .list-largetext li {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}

/* ------------------------------- */
/* ORDERED LIST                    */
/* Help Center                     */
/* ------------------------------- */
ol {
  padding-left: 1.25rem;
}

ol li {
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

ol ol {
  margin-top: 0.5rem;
  padding-left: 2rem;
}

/* ------------------------------- */
/* MESSAGING                       */
/* Signed Out, Transient Level     */
/* ------------------------------- */
.messaging {
  background-color: #f1f1f1;
  padding: 1rem 0 3rem;
}

.messaging__close {
  text-align: right;
}

.messaging__body {
  margin-bottom: 2rem;
  padding: 0 1.5rem;
}

@media (min-width: 50rem) {
  .messaging__body {
    padding: 0 2rem;
  }
}

.messaging__body h2 {
  margin-bottom: 0.75rem;
}

.messaging__body h3 {
  margin-bottom: 0.5rem;
}

.messaging__body p {
  color: #7d7d7d;
}

.messaging__actions {
  padding: 0 1.5rem;
}

@media (min-width: 50rem) {
  .messaging__actions {
    padding: 0 2rem;
  }
}

.messaging__actions .btn img {
  vertical-align: middle;
  margin-right: 0.25rem;
}

.messaging.closed {
  display: none;
}

/* ------------------------------- */
/* IMPORTANT NOTIFICATION          */
/* ------------------------------- */
.important-notification {
  background-color: #ffd966;
  color: #333333;
  position: relative;
}

.important-notification::before {
  content: "";
  position: absolute;
  right: 7.75rem;
  top: -0.5rem;
  width: 1.5rem;
  height: 1.5rem;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background-color: inherit;
}

@media (min-width: 50rem) {
  .important-notification::before {
    right: 8.75rem;
  }
}

.important-notification p {
  color: #333333;
}

/* ------------------------------- */
/* DEVICES: DASHBOARD              */
/* ------------------------------- */
/* ------------------------------- */
/* Structure:                      */
/* .device-flip .flip (click)      */
/*    .device-container            */
/*      .device-front              */
/*      .device-back               */
/* ------------------------------- */
/* ------------------------------- */
/* DEVICE: INTERACTIONS            */
/* ------------------------------- */
.device-flip {
  -webkit-perspective: 900px;
          perspective: 900px;
  background: transparent;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

@media (min-width: 50rem) {
  .device-flip:hover {
    -webkit-transform: translateY(-0.5rem);
            transform: translateY(-0.5rem);
  }
}

.device-flip.flip {
  height: auto;
}

@media (min-width: 50rem) {
  .device-flip.flip .device-container {
    -webkit-transform: rotateY(-180deg);
            transform: rotateY(-180deg);
  }
}

.device-flip.flip .device-container .device-front .device {
  border-radius: 0.25rem 0.25rem 0 0;
  width: 100%;
  
}

.device-flip.flip .device-container .device-front .device::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

@media (min-width: 50rem) {
  .device-flip.flip .device-container .device-front .device::after {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}

.device-flip.flip .device-container .device-back {
  display: block;
}

/* ------------------------------- */
/* WRAPPER FOR DEVICE CARD         */
/* ------------------------------- */
.device-container {
  position: relative;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}

@media (min-width: 50rem) {
  .device-container {
    width: 100%;
    height: 20rem;
    overflow: visible;
    -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d;
  }
}

.device-container .device-front,
.device-container .device-back {
  position: relative;
  -webkit-backface-visibility: visible;
          backface-visibility: visible;
  width: 100%;
  height: 5.5rem;
}

@media (min-width: 50rem) {
  .device-container .device-front,
  .device-container .device-back {
    position: absolute;
    width: 100%;
    height: 20rem;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    -webkit-filter: drop-shadow(3px 3px 6px rgba(24, 105, 104, 0.5));
            filter: drop-shadow(3px 3px 6px rgba(24, 105, 104, 0.5));
  }
}

.device-container .device-back {
  display: none;
  height: auto;
}

@media (min-width: 50rem) {
  .device-container .device-back {
    height: 20rem;
    display: block;
    -webkit-transform: rotateY(-180deg);
            transform: rotateY(-180deg);
    -webkit-transform-origin: initial;
            transform-origin: initial;
  }
}

/* ------------------------------- */
/* DEVICE: FRONT                   */
/* ------------------------------- */
.device-front .device {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  background-color: #ffffff;
  color: #333333;
  padding: 1rem;
  border-radius: 0.5rem;
  position: relative;

}

@media (min-width: 50rem) {
  .device-front .device {
    text-align: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 1.5rem;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 90%, 90% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 90%, 90% 100%, 0 100%);
  }
}

.device-front .device::after {
  content: url("../images/icons/icon_dropdown.svg");
  position: absolute;
  bottom: 0.5rem;
  right: 1rem;
}

@media (min-width: 50rem) {
  .device-front .device::after {
    content: "";
    bottom: 0;
    right: 0;
    width: 10%;
    height: 10%;
    background-color: #d8d8d8;
    border-radius: 0.25rem;
  }
}

.device-front .device__status {
  position: absolute;
  right: 0.75rem;
  top: 0.5rem;
}

@media (min-width: 50rem) {
  .device-front .device__status {
    position: static;
    width: 100%;
    text-align: right;
  }
}

.device-front .device__status img {
  width: 1.75rem;
}

@media (min-width: 50rem) {
  .device-front .device__status img {
    width: 2.5rem;
  }
}

.device-front .device__img {
  margin-right: 0.75rem;
  width: 10%;
  padding-top: 0.375rem;
  padding-left: 5px;
}

@media (min-width: 50rem) {
  .device-front .device__img {
    width: auto;
    margin-bottom: 1rem;
    margin-right: 0;
    
  }
}

.device-front .device__img img {
  height: 2rem;
  max-width: 2rem;
}

@media (min-width: 50rem) {
  .device-front .device__img img {
    height: 3.5rem;
    max-width: 3rem;
  }
}

.device-front .device__title {
  max-width: calc(100vw - 9rem);
  width: 90%;
}

@media (min-width: 50rem) {
  .device-front .device__title {
    max-width: none;
    text-align: center;
    
  }
}

.device-front .device__title h3 {
  font-size: 0.875rem;
  padding-right: 6px;
  margin: 0.375rem 0 0;
}

@media (min-width: 50rem) {
  .device-front .device__title h3 {
    font-size: 1.5rem;
  }
}

.device-front .device__title p {
  text-align: center;
  color: #7d7d7d;
  font-size: 1rem;
}

@media (min-width: 50rem) {
  .device-front .device__title p {
    font-size: 1.25rem;
  }
}

.device-front .device__title p.device__not-ok {
  color: #a32c59;
}

.device-front .device__update {
  position: absolute;
  bottom: 0.75rem;
  left: 3.75rem;
  color: #7d7d7d;
  font-size: 0.75rem;
}

@media (min-width: 50rem) {
  .device-front .device__update {
    position: initial;
    margin-top: auto;
    font-size: 1rem;
  }
}

.device-front .device--add {
  height: 6.5rem;
  background-color: rgba(255, 255, 255, 0.25);
  border: 1px dashed rgba(255, 255, 255, 0.75);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-clip-path: unset;
          clip-path: unset;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1.5rem;
}

@media (min-width: 50rem) {
  .device-front .device--add {
    cursor: pointer;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    top: 0;
    height: 20rem;
  }
}

.device-front .device--add::after {
  display: none;
}

.device-front .device--add:hover {
  top: -0.5rem;
  -webkit-box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
          box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
}

.device-front .device--add:hover a {
  text-decoration: underline;
}

.device-front .device--add img,
.device-front .device--add a {
  display: block;
}

.device-front .device--add img {
  margin: 0 1rem 0 0;
  max-width: 2.5rem;
}

@media (min-width: 50rem) {
  .device-front .device--add img {
    margin: 0 0 3rem 0;
    max-width: 4rem;
  }
}

.device-front .device--add a {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
}

/* ------------------------------- */
/* DEVICE: BACK                    */
/* .device                         */
/*  .device__title                 */
/*  .device__update                */
/*  .device__actions               */
/* ------------------------------- */
.device-back .device {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #f1f1f1;
  color: #333333;
  padding: 1.5rem;
  border-radius: 0 0 0.25rem 0.25rem;
  text-align: center;
  position: relative;
}

@media (min-width: 50rem) {
  .device-back .device {
    background-color: #ffffff;
    border-radius: 0.5rem;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 10% 100%, 0 90%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 10% 100%, 0 90%);
  }
}

@media (min-width: 50rem) {
  .device-back .device::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 10%;
    height: 10%;
    background-color: #d8d8d8;
    border-radius: 0.25rem;
  }
}

.device-back .device .device__status {
  display: none;
}

@media (min-width: 50rem) {
  .device-back .device .device__status {
    display: block;
  }
}

.device-back .device .device__status img {
  width: 3rem;
  margin: -1rem -1rem 0 0;
}

.device-back .device__status {
  text-align: right;
}

.device-back .device__status img {
  width: 2.5rem;
}

.device-back .device__title h3 {
  display: none;
}

@media (min-width: 50rem) {
  .device-back .device__title h3 {
    display: block;
    text-align: left;
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
  }
}

.device-back .device__title p {
  color: #7d7d7d;
  font-size: 1.25rem;
  display: none;
}

@media (min-width: 50rem) {
  .device-back .device__title p {
    display: block;
  }
}

.device-back .device__title p.device__not-ok {
  display: block;
  text-align: left;
  font-size: 0.875rem;
  color: #a32c59;
  line-height: 1.2;
}

.device-back .device__update {
  display: none;
}

@media (min-width: 50rem) {
  .device-back .device__update {
    display: block;
    text-align: left;
    margin-top: 0.5rem;
    margin-bottom: 0.75rem;
    color: #7d7d7d;
  }
}

.device-back .device .device__actions {
  margin-top: auto;
  margin-bottom: 0.5rem;
}

.device-back .device .device__actions .btn {
  width: 100%;
}

/* ------------------------------- */
/* TABLE                           */
/* My Rewards: Transactions        */
/* ------------------------------- */
.table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
}
.table thead {
  display: none;
}
@media (min-width: 50rem) {
  .table thead {
    display: table-header-group;
  }
}
.table thead tr {
  border-bottom: 2px solid #f1f1f1;
}
@media (min-width: 50rem) {
  .table thead tr {
    display: table-row;
  }
}
@media (min-width: 50rem) {
  .table thead th {
    color: #7d7d7d;
    text-align: left;
    padding: 0.375rem;
  }
}
.table thead th.text-right {
  text-align: right;
}
.table tbody {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 50rem) {
  .table tbody {
    display: table-row-group;
  }
}
.table tbody.show-all tr:nth-child(n+6) {
  display: grid;
}
@media (min-width: 50rem) {
  .table tbody.show-all tr:nth-child(n+6) {
    display: table-row;
  }
}
.table tbody tr {
  display: grid;
  padding: 0.875rem;
  border-bottom: none;
  border: 1px solid #d8d8d8;
  border-radius: 0.25rem;
  box-shadow: 1px 3px 6px 2px rgba(0, 0, 0, 0.1);
  position: relative;
}
@media (min-width: 50rem) {
  .table tbody tr {
    display: table-row;
    box-shadow: none;
    border: none;
    border-bottom: 1px solid #f1f1f1;
  }
}
.table tbody tr:nth-child(n+6) {
  display: none;
}
.table tbody td {
  padding: 0.5rem;
  text-align: left;
  font-size: 0.875rem;
}
@media (min-width: 70rem) {
  .table tbody td {
    padding: 0.375rem;
    font-size: 1rem;
  }
}
.table tbody td.text-right {
  text-align: right;
}
.table tbody td.transaction-value {
  white-space: nowrap;
}
.table tbody td.transaction-value i {
  vertical-align: middle;
}
.table tbody td::before {
  content: attr(data-label);
  display: block;
  margin-bottom: 0.25rem;
  color: #7d7d7d;
  font-weight: 400;
}
@media (min-width: 50rem) {
  .table tbody td::before {
    display: none;
  }
}
.table tbody td.actions {
  position: absolute;
  right: 1rem;
  top: 0;
}
@media (min-width: 50rem) {
  .table tbody td.actions {
    position: unset;
  }
}
.table tbody td.actions .btn {
  margin-left: auto;
  min-width: initial;
  background-color: transparent;
  border: none;
  padding: 0.25rem;
  cursor: pointer;
}
.table tbody td.actions .btn--icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 100%;
  display: grid;
  place-items: center;
  color: #dc4b82;
}
.table tbody td.actions .btn--icon:hover {
  background-color: #dc4b82;
  color: #ffffff;
}
.table tbody td.actions .btn--icon span {
  display: block;
}
@media (min-width: 50rem) {
  .table tbody td.actions .btn--icon span {
    display: none;
  }
}
.table .add {
  color: #0cb95a;
  font-size: 1.25rem;
}
.table .btn {
  box-shadow: none;
}
.table .btn--icon span {
  display: block;
  font-size: 0.875rem;
}
.table .btn--icon:hover {
  background-color: transparent;
}

/* ------------------------------- */
/* PROGRESS                        */
/* As part of adding a device      */
/* ------------------------------- */
.progress {
  list-style: none;
  display: inline-flex;
  gap: 1rem;
}
.progress-container {
  max-width: 60rem;
  margin-bottom: 2rem;
  padding-inline-start: 0.5rem;
}
.progress__step {
  max-width: 7rem;
  opacity: 0.5;
}
.progress__step--completed {
  opacity: 1;
}
.progress__step--current {
  opacity: 1;
}

.step {
  padding-bottom: 3rem;
  position: relative;
}
.step::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1.75rem;
  height: 1.75rem;
  border: 0.45rem solid #cccccc;
  border-radius: 50%;
  z-index: 1;
}
.progress__step--completed .step::before {
  content: url(../images/icons/icon_checkmark.svg);
  color: #fff;
  display: grid;
  place-content: center;
  text-align: center;
  scale: 1.125;
  background-color: #dc4b82;
  border: 3px solid #f8f8f8;
  outline: 3px solid #dc4b82;
}
.progress__step--current .step::before {
  border-color: #83358b;
  color: #3c3c3c;
}
.step::after {
  content: "";
  position: absolute;
  bottom: 0.65rem;
  left: 1.75rem;
  right: -1rem;
  height: 0.45rem;
  background: linear-gradient(90deg, #dc4b82 0.45%, #83358b 100.45%);
  opacity: 0;
}
.progress__step--completed .step::after {
  opacity: 1;
}
.progress__step--current .step::after {
  opacity: 0.5;
  background: #cccccc;
}
.step__title {
  font-size: 1.25rem;
  line-height: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #3c3c3c;
}
.step__description {
  font-size: 0.875rem;
  line-height: 1.4;
  color: #3c3c3c;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  overflow: hidden;
}

.progress__step:last-child .step::after {
  opacity: 0;
}

/* ------------------------------- */
/* CONNECTED PAGE ---------------- */
/* ------------------------------- */
.next-step {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 50rem) {
  .next-step {
    align-self: flex-end;
    gap: 1.5rem;
  }
}
.next-step .prompt:last-child {
  margin-bottom: 0;
}
.next-step--add-meter {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.next-step--add-meter .instruction {
  margin-block: 1rem 0;
}
.next-step--add-meter .hero__cta {
  margin-block: 0 1rem;
}

.instruction {
  margin-block: 1rem;
}
.instruction #computerInstructions{
  display: flex;
  cursor: pointer;
}
.instruction #tabletInstructions {
  cursor: pointer;
  display: flex;
  gap: 10px;
  justify-content: center;
}
.instruction #mobileInstructions {
  cursor: pointer;
  display: flex;
  gap: 10px;
  justify-content: center;
}
.instruction .instruction__type {
  display: flex;
  display: grid;
  grid-template-columns: 5.25rem 1fr;
  align-items: center;
  gap: 0.5rem;
  border-radius: 0.625rem;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
  background: #dc4b82;
  max-width: 30rem;
}
@media (min-width: 30rem) {
  .instruction .instruction__type {
    gap: 1rem;
  }
}
.instruction .instruction__type img {
  width: min(100%, 4rem);
  display: block;
  margin-inline: auto;
}
.instruction .instruction__type p {
  margin-bottom: 0;
}
.instruction__image {
  padding: 0.75rem;
  background-color: #ffffff;
  border-radius: 0.625rem 0 0 0.625rem;
}
.instruction__image img {
  display: block;
}
.instruction__text {
  color: #ffffff;
  padding-right: 0.75rem;
}
.instruction__text h3 {
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.125rem;
}
@media (min-width: 30rem) {
  .instruction__text h3 {
    font-size: 1.125rem;
    margin-bottom: 0.125rem;
  }
}
@media (min-width: 56rem) {
  .instruction__text h3 {
    font-size: 1.375rem;
    margin-bottom: 0.25rem;
  }
}
.instruction__text .small {
  font-size: 0.75rem;
}
@media (min-width: 30rem) {
  .instruction__text .small {
    font-size: 0.875rem;
  }
}

/* ------------------------------- */
/* RADIO BUTTONS GROUP             */
/* CONNECTED PAGE                  */
/* ------------------------------- */
.radio-buttons {
  display: flex;
  align-items: start;
  flex-direction: column;
  gap: 0.5rem;
}
@media (min-width: 56rem) {
  .radio-buttons {
    flex-direction: row;
    gap: 0rem;
  }
}
@media (min-width: 70rem) {
  .radio-buttons {
    gap: 1rem;
  }
}

/* ------------------------------- */
/* HOME                            */
/* ------------------------------- */
.logo-home {
  background-color: #ffffff;
}

.logo-home img {
  max-width: 18rem;
}

/* ------------------------------- */
/* HOME: SIGN IN                   */
/* ------------------------------- */
.sign-in-main {
  padding-top: 1rem;
}

@media (min-width: 50rem) {
  .sign-in-main {
    padding-top: 2rem;
  }
}

.sign-in-main .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 50rem) {
  .sign-in-main .container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

@media (min-width: 50rem) {
  .sign-in-main .container--form {
    width: 50%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 2rem;
  }
}

.sign-in-main .container img {
  padding: 0rem 1rem;
}

@media (min-width: 50rem) {
  .sign-in-main .container img {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    max-width: 50%;
    padding-left: 2rem;
    margin-bottom: 1rem;
  }
}

@media (min-width: 70rem) {
  .sign-in-main .container img {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    max-width: 40rem;
    padding-left: 3rem;
  }
}

.sign-in-main .get-started-prompt {
  padding: 3rem 0 0;
  text-align: center;
}

@media (min-width: 50rem) {
  .sign-in-main .get-started-prompt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.sign-in-main .get-started-prompt h2 {
  margin-bottom: 0.5rem;
}

@media (min-width: 50rem) {
  .sign-in-main .get-started-prompt h2 {
    margin-bottom: 0;
  }
}

.sign-in-main .get-started-prompt .deemphasize {
  margin: 0.5rem 0 1rem;
}

@media (min-width: 50rem) {
  .sign-in-main .get-started-prompt .deemphasize {
    margin: 0 1rem;
  }
}

.forgot-password {
  margin: 0.375rem 0.5rem;
  font-size: 1rem;
  cursor: pointer;
}

/* ------------------------------- */
/* HOME: WELCOME                   */
/* ------------------------------- */
.welcome {
  background-color: #0e4656;
}

.welcome h2 {
  color: #f1f1f1;
  padding-left: 2rem;
  padding-right: 2rem;
  text-align: center;
}

@media (min-width: 50rem) {
  .welcome h2 {
    max-width: 60rem;
    margin: 2rem auto;
  }
}

/* IMAGE GRID                      */
/* ------------------------------- */
.img-grid {
  width: 100%;
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-grid-columns: (13rem)[auto-fit];
      grid-template-columns: repeat(auto-fit, 13rem);
  -ms-grid-rows: 25.5rem;
      grid-template-rows: 25.5rem;
  grid-gap: 0.25rem;
  overflow: hidden;
}

.img-grid .img {
  background-color: #eee;
  background-size: cover;
  border-radius: 0.25rem;
  -webkit-transition: opacity 0.25s;
  transition: opacity 0.25s;
}

.img-grid .img.img0 {
  background-image: url("../images/panelists/person0.jpg");
}

.img-grid .img.img1 {
  background-image: url("../images/panelists/person1.jpg");
}

.img-grid .img.img2 {
  background-image: url("../images/panelists/person2.jpg");
}

.img-grid .img.img3 {
  background-image: url("../images/panelists/person3.jpg");
}

.img-grid .img.img4 {
  background-image: url("../images/panelists/person4.jpg");
}

.img-grid .img.img5 {
  background-image: url("../images/panelists/person5.jpg");
}

.img-grid .img.img6 {
  background-image: url("../images/panelists/person6.jpg");
}

.img-grid .img.img7 {
  background-image: url("../images/panelists/person7.jpg");
}

.img-grid .img.img8 {
  background-image: url("../images/panelists/person8.jpg");
}

.img-grid .img.img9 {
  background-image: url("../images/panelists/person9.jpg");
}

.img-grid .img.img10 {
  background-image: url("../images/panelists/person10.jpg");
}

.img-grid .img.img11 {
  background-image: url("../images/panelists/person11.jpg");
}

.img-grid .img.change {
  -webkit-animation: fadeIn 1.5s;
          animation: fadeIn 1.5s;
}

.img-grid .img.changeBefore {
  -webkit-animation: fadeOut 0.5s;
          animation: fadeOut 0.5s;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/* ------------------------------- */
/* HOME: ABOUT SCREENWISE PANEL    */
/* ------------------------------- */
.about-screenwise {
  text-align: center;
  padding-bottom: 6rem;
}

.about-screenwise ul {
  text-align: left;
}

.grid {
  margin: 2rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 50rem) {
  .grid {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.grid-50x50 > * {
  margin: 0 1rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.grid__content {
  text-align: left;
}

/* ------------------------------- */
/* HOME: EARN REWARDS              */
/* ------------------------------- */
.earn-rewards {
  background: -webkit-gradient(linear, left top, right top, from(#26b9b8), to(#47d2d1));
  background: linear-gradient(90deg, #26b9b8 0%, #47d2d1 100%);
  text-align: center;
  color: #ffffff;
}

.earn-rewards h2 {
  margin-bottom: 1.25rem;
}

.earn-rewards p {
  font-size: 1.5rem;
}

/* EARN REWARDS: CARDS ----------- */
/* ------------------------------- */
.earn-rewards-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (min-width: 50rem) {
  .earn-rewards-cards {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.earn-rewards-cards .card-reward {
  margin: 0.25rem;
  border-radius: 0.25rem;
  -webkit-box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.2);
          box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.2);
  background-color: #ffffff;
  color: #333333;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 4rem auto 6rem;
      grid-template-columns: 4rem auto 6rem;
  -ms-flex-line-pack: center;
      align-content: center;
}

@media (min-width: 50rem) {
  .earn-rewards-cards .card-reward {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    -ms-grid-rows: 10rem 5rem 1fr;
        grid-template-rows: 10rem 5rem 1fr;
    min-height: 24rem;
    text-align: center;
  }
}

.earn-rewards-cards .card-reward--amount {
  text-align: right;
  padding: 0.5rem;
  background-color: #d2ffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

@media (min-width: 50rem) {
  .earn-rewards-cards .card-reward--amount {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1 / span 1;
    border-radius: 0.25rem 0.25rem 0 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding-top: 1.5rem;
    text-align: center;
  }
}

@media (min-width: 50rem) {
  .earn-rewards-cards .card-reward--amount p {
    margin-bottom: 0;
  }
}

.earn-rewards-cards .card-reward .reward-currency {
  display: inline-block;
  vertical-align: top;
  margin-top: 0.25rem;
}

@media (min-width: 50rem) {
  .earn-rewards-cards .card-reward .reward-currency {
    font-size: 1.875rem;
    margin-top: 1rem;
  }
}

.earn-rewards-cards .card-reward .reward-value {
  color: #009d9c;
  font-size: 1.5rem;
  font-weight: 500;
}

@media (min-width: 50rem) {
  .earn-rewards-cards .card-reward .reward-value {
    font-size: 4rem;
    letter-spacing: -1px;
  }
}

.earn-rewards-cards .card-reward--icon {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  -ms-grid-column-align: center;
      justify-self: center;
}

.earn-rewards-cards .card-reward--icon img {
  max-width: 2.25rem;
  height: 2rem;
}

@media (min-width: 50rem) {
  .earn-rewards-cards .card-reward--icon {
    -ms-flex-item-align: end;
        -ms-grid-row-align: end;
        align-self: end;
  }
}

.earn-rewards-cards .card-reward--content {
  padding: 0.5rem;
  line-height: 1.1rem;
  font-size: 0.875rem;
}

@media (min-width: 50rem) {
  .earn-rewards-cards .card-reward--content {
    padding: 1rem 0.5rem;
    font-size: 1rem;
  }
}

.earn-rewards-cards .card-reward--content p {
  margin-bottom: 0;
}

.earn-rewards-home {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (min-width: 50rem) {
  .earn-rewards-home {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.earn-rewards-home .card-reward {
  margin: 0.25rem;
  border-radius: 0.25rem;
  -webkit-box-shadow: 2px 2px 8px 0 rgba(0, 0, 0, 0.4);
          box-shadow: 2px 2px 8px 0 rgba(0, 0, 0, 0.4);
  background-color: #ffffff;
  color: #333333;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 4rem auto 6rem;
      grid-template-columns: 4rem auto 6rem;
  -ms-flex-line-pack: center;
      align-content: center;
}

@media (min-width: 50rem) {
  .earn-rewards-home .card-reward {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    -ms-grid-rows: 8rem 6rem 1fr;
        grid-template-rows: 8rem 6rem 1fr;
    min-height: 24rem;
    text-align: center;
  }
}

.earn-rewards-home .card-reward--amount {
  text-align: right;
  padding: 0.5rem 0.75rem;
  background-color: #d2ffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

@media (min-width: 50rem) {
  .earn-rewards-home .card-reward--amount {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1 / span 1;
    border-radius: 0.25rem 0.25rem 0 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding-top: 1.5rem;
    text-align: center;
  }
}

@media (min-width: 50rem) {
  .earn-rewards-home .card-reward--amount p {
    margin-bottom: 0;
  }
}

.earn-rewards-home .card-reward .reward-currency {
  display: inline-block;
  vertical-align: top;
  margin-top: 0.75rem;
}

@media (min-width: 50rem) {
  .earn-rewards-home .card-reward .reward-currency {
    font-size: 1.875rem;
    margin-top: 1rem;
  }
}

.earn-rewards-home .card-reward .reward-value {
  color: #009d9c;
  font-size: 3rem;
  font-weight: 500;
}

@media (min-width: 50rem) {
  .earn-rewards-home .card-reward .reward-value {
    font-size: 4rem;
    letter-spacing: -1px;
  }
}

.earn-rewards-home .card-reward--icon {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  -ms-grid-column-align: center;
      justify-self: center;
}

.earn-rewards-home .card-reward--icon img {
  height: 1.75rem;
  display: block;
}

@media (min-width: 50rem) {
  .earn-rewards-home .card-reward--icon img {
    height: 3rem;
    -ms-flex-item-align: end;
        -ms-grid-row-align: end;
        align-self: end;
  }
}

.earn-rewards-home .card-reward--content {
  padding: 1rem 0.5rem;
  line-height: 1.1rem;
  font-size: 0.875rem;
  text-align: left;
}

.earn-rewards-home .card-reward--content p {
  margin-bottom: 0;
}

@media (min-width: 50rem) {
  .earn-rewards-home .card-reward--content {
    font-size: 1rem;
    text-align: center;
    padding: 1rem;
  }
}

/* ------------------------------- */
/* HOME: REDEEM REWARDS            */
/* ------------------------------- */
.redeem-rewards {
  background: -webkit-gradient(linear, left top, right top, from(#177a7f), to(#26b9b8));
  background: linear-gradient(90deg, #177a7f 0%, #26b9b8 100%);
  color: #ffffff;
}

.redeem-rewards h2 {
  text-align: center;
  font-size: 1.125rem;
  line-height: 1.375rem;
  margin-bottom: 1rem;
}

@media (min-width: 50rem) {
  .redeem-rewards h2 {
    font-size: 2.25rem;
    line-height: 3.25rem;
  }
}

.redeem-rewards .subtitle {
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.125rem;
  margin-bottom: 2rem;
}

@media (min-width: 50rem) {
  .redeem-rewards .subtitle {
    font-size: 1.5rem;
    line-height: 2.25rem;
    margin-bottom: 3.5rem;
  }
}

.redeem-rewards .rewards {
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: calc(5 / 8 * 100%);
}

@media (min-width: 50rem) {
  .redeem-rewards .rewards {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    max-width: initial;
  }
}

.redeem-rewards .rewards__type {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
  margin-bottom: 1.5rem;
}

@media (min-width: 50rem) {
  .redeem-rewards .rewards__type {
    margin: 0 2.25rem;
  }
}

@media (min-width: 50rem) {
  .redeem-rewards .rewards__type:first-child {
    margin-left: 0;
  }
}

.redeem-rewards .rewards__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  text-align: center;
  height: 4.5rem;
}

@media (min-width: 50rem) {
  .redeem-rewards .rewards__img {
    margin-bottom: 1.5rem;
    padding-bottom: 2rem;
    height: 6.5rem;
  }
}

.redeem-rewards .rewards__img--prepaid {
  width: 74px;
  height: 56px;
}

.redeem-rewards .rewards__img--giftcards {
  width: 47px;
  height: 85px;
}

.redeem-rewards .rewards__img--giftchoices {
  width: 60px;
  height: 73px;
}

.redeem-rewards .rewards img {
  height: 3rem;
}

@media (min-width: 50rem) {
  .redeem-rewards .rewards img {
    height: 5rem;
  }
}

.redeem-rewards .rewards h3 {
  font-size: 1.125rem;
  line-height: 1.375rem;
  margin-bottom: 0.5rem;
  font-weight: 400;
}

@media (min-width: 50rem) {
  .redeem-rewards .rewards h3 {
    font-size: 1.75rem;
    line-height: 1.5;
    margin-bottom: 1rem;
  }
}

.redeem-rewards .rewards p {
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 300;
  color: #c4feff;
}

.redeem-rewards .rewards p strong {
  color: #c4feff;
}

@media (min-width: 50rem) {
  .redeem-rewards .rewards p {
    font-size: 1rem;
    line-height: 1.25rem;
  }
}

/* ------------------------------- */
/* HOME: GET STARTED               */
/* ------------------------------- */
.get-started {
  margin-top: -2rem;
  padding-bottom: 0;
  background-color: #0e4656;
  color: #ffffff;
  -webkit-clip-path: polygon(0 0, 100% 2rem, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 2rem, 100% 100%, 0 100%);
}

.get-started .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 50rem) {
  .get-started .container {
    -webkit-box-pack: align-center;
        -ms-flex-pack: align-center;
            justify-content: align-center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.get-started__content {
  text-align: center;
  padding-top: 3rem;
}

@media (min-width: 50rem) {
  .get-started__content {
    padding-top: initial;
    text-align: left;
    margin-left: 3rem;
    max-width: 36rem;
  }
}

.get-started__img {
  text-align: center;
}

@media (min-width: 50rem) {
  .get-started__img {
    -ms-flex-item-align: end;
        align-self: flex-end;
    height: 26rem;
    overflow: hidden;
  }
}

.get-started__img img {
  display: block;
}

@media (min-width: 50rem) {
  .get-started__img img {
    max-width: 20rem;
  }
}

/* ------------------------------- */
/* CONTACT US                      */
/* ------------------------------- */
.contact-us {
  background: -webkit-gradient(linear, left top, right top, from(#26b9b8), to(#47d2d1));
  background: linear-gradient(90deg, #26b9b8 0%, #47d2d1 100%);
  position: relative;
  overflow: hidden;
  padding-bottom: 28rem;
}

@media (min-width: 50rem) {
  .contact-us {
    padding-bottom: 2rem;
  }
}

.contact-us__bg-img {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  max-height: 25rem;
  z-index: 0;
}

@media (min-width: 50rem) {
  .contact-us__bg-img {
    left: initial;
    -webkit-transform: none;
            transform: none;
    right: -11rem;
    max-height: 60rem;
  }
}

.contact-us .container--form {
  max-width: 60rem;
  margin-bottom: 0;
  background-color: #ffffff;
  position: relative;
  z-index: 1;
}

/* ------------------------------- */
/* CONTACT OPTIONS - SIDEBAR       */
/* ------------------------------- */
.contact-options li {
  color: #7d7d7d;
  line-height: 1.5;
  padding: 1rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contact-options li:not(:last-child) {
  border-bottom: 1px solid #d8d8d8;
}

@media (min-width: 50rem) {
  .contact-options li {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.contact-options__icon {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  margin: 0.5rem 0 1rem;
}

@media (min-width: 50rem) {
  .contact-options__icon {
    margin: 0.25rem 1rem 0 0;
    -ms-flex-item-align: start;
        align-self: flex-start;
  }
}

.contact-options__icon.icon-phone {
  height: 1.875rem;
}

.contact-options__icon.icon-schedule {
  height: 1.25rem;
}

.contact-options__icon.icon-email {
  height: 1rem;
}

.contact-options p {
  text-align: center;
}

@media (min-width: 50rem) {
  .contact-options p {
    text-align: left;
  }
}

.contact-options__schedule {
  line-height: 1.5;
  text-align: center;
}

@media (min-width: 50rem) {
  .contact-options__schedule {
    text-align: left;
  }
}

.contact-options__schedule .hours {
  font-weight: 600;
  color: #333333;
}

.contact-options__schedule .timezones {
  margin-bottom: 0.5rem;
}

/* ------------------------------- */
/* DO NOT SELL                     */
/* ------------------------------- */
.do-not-sell {
  background: -webkit-gradient(linear, left top, right top, from(#26b9b8), to(#47d2d1));
  background: linear-gradient(90deg, #26b9b8 0%, #47d2d1 100%);
  position: relative;
  overflow: hidden;
}

.do-not-sell__bg-img {
  position: absolute;
  bottom: 0;
  right: -11rem;
  height: 60rem;
  z-index: 0;
}

.do-not-sell .container--info {
  max-width: 60rem;
  margin-bottom: 0;
  background-color: #ffffff;
  position: relative;
  z-index: 1;
  border-radius: 0.25rem;
  padding: 1.5rem;
}

@media (min-width: 50rem) {
  .do-not-sell .container--info {
    padding: 3.5rem;
  }
}

.do-not-sell .container--info h2 {
  margin-bottom: 1rem;
}

.do-not-sell .container--info .opt-out-cta {
  margin: 2rem auto;
  text-align: center;
}

.do-not-sell .container--info .opt-out-cta a {
  display: block;
  margin-bottom: 0.5rem;
}

.do-not-sell .container--info .opt-out-cta a.btn.btn__primary {
  text-transform: capitalize;
  font-weight: 400;
  letter-spacing: 0;
}

/* ------------------------------- */
/* DEVICES                       */
/* ------------------------------- */
.devices {
  padding-bottom: 5rem;
}

.devices h2 {
  color: #ffffff;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  text-align: center;
}

@media (min-width: 50rem) {
  .devices h2 {
    font-size: 2.25rem;
    text-align: left;
  }
}

.devices p {
  color: #c4feff;
  font-size: 1.125rem;
  text-align: center;
}

@media (min-width: 50rem) {
  .devices p {
    font-size: 1.5rem;
    text-align: left;
  }
}

.devices__wrapper {
  margin: 2rem 0 3rem;
  display: -ms-grid;
  display: grid;
  grid-gap: 1.5rem;
}

@media (min-width: 50rem) {
  .devices__wrapper {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
  }
}

/* ------------------------------- */
/* DASHBOARD CONTAINER             */
/* ------------------------------- */
.dashboard {
  padding-top: 6rem;
  margin-top: -3rem;
  background: -webkit-gradient(linear, left top, right top, from(#177a7f), to(#26b9b8));
  background: linear-gradient(90deg, #177a7f 0%, #26b9b8 100%);
  -webkit-clip-path: polygon(0 1.5rem, 101% 0, 101% 100%, 0 100%);
          clip-path: polygon(0 1.5rem, 101% 0, 101% 100%, 0 100%);
}

/* ------------------------------- */
/* DASHBOARD PANELS                */
/* ------------------------------- */
.panel {
  position: relative;
  background-color: #ffffff;
  margin-bottom: 1rem;
  padding: 1.5rem 1rem 2rem;
  border-radius: 0.5rem;
  -webkit-box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.15);
          box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.15);
  /* ------------------------------- */
  /* MY INFO                         */
  /* ------------------------------- */
  /* ------------------------------- */
  /* OTHER HOUSEHOLD MEMBERS         */
  /* ------------------------------- */
}

@media (min-width: 50rem) {
  .panel {
    padding: 2rem;
  }
}

.panel__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 50rem) {
  .panel__header {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.panel__header h2 {
  margin-bottom: 0;
  font-size: 1.5rem;
}

@media (min-width: 50rem) {
  .panel__header h2 {
    font-size: 2.25rem;
  }
}

.panel__cta {
  position: absolute;
  bottom: 2rem;
  left: 1rem;
  right: 1rem;
}

@media (min-width: 50rem) {
  .panel__cta {
    position: initial;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.panel__body {
  padding: 1rem 0 0;
}

@media (min-width: 50rem) {
  .panel__body {
    padding: 2rem 0 0;
  }
}

.panel__body ul {
  list-style: none;
  margin-bottom: 1rem;
}

.panel .rewards {
  padding-bottom: 7rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (min-width: 50rem) {
  .panel .rewards {
    padding-bottom: 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.panel .rewards__available {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  margin-bottom: 1rem;
  text-align: center;
}

@media (min-width: 50rem) {
  .panel .rewards__available {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-right: 3rem;
  }
}

.panel .rewards__available-points {
  color: #dc4b82;
  font-size: 5rem;
  letter-spacing: -2px;
  font-weight: 600;
}

@media (min-width: 50rem) {
  .panel .rewards__available-points {
    font-weight: 400;
  }
}

.panel .rewards__available p {
  font-size: 0.875rem;
}

@media (min-width: 50rem) {
  .panel .rewards__available p {
    font-size: 1.25rem;
  }
}

.panel .rewards__breakdown {
  display: -ms-grid;
  display: grid;
  grid-gap: 1rem;
}

@media (min-width: 50rem) {
  .panel .rewards__breakdown {
    -webkit-box-flex: 4;
        -ms-flex: 4;
            flex: 4;
    -ms-grid-columns: 2fr 2fr 1fr;
        grid-template-columns: 2fr 2fr 1fr;
  }
}

.panel .rewards__item {
  position: relative;
  border-radius: 0.25rem;
  background-color: #d0ffff;
  -webkit-box-shadow: 2px 2px 8px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 2px 2px 8px 0 rgba(0, 0, 0, 0.2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0.5rem 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 50rem) {
  .panel .rewards__item:first-child {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / span 2;
  }
}

.panel .rewards__item--disabled {
  opacity: 0.3;
  -webkit-box-shadow: none;
          box-shadow: none;
}

@media (min-width: 50rem) {
  .panel .rewards__item--bonus {
    grid-column: 3/-1;
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    grid-row: 1 / span 3;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.panel .rewards__item--bonus .rewards__points {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2 / span 1;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.panel .rewards__category {
  font-weight: 600;
}

.panel .rewards__points {
  color: #177a7f;
  font-weight: 600;
  padding: 0.125rem 0;
  text-align: center;
}

.panel .rewards__unit {
  display: block;
  font-size: 0.875rem;
  text-transform: uppercase;
  color: inherit;
  font-weight: 400;
  margin-left: 0.25rem;
}

@media (min-width: 50rem) {
  .panel .rewards__unit {
    display: inline-block;
  }
}

.panel .rewards__explanation {
  position: absolute;
  bottom: 0.375rem;
  font-size: 0.75rem;
  margin-bottom: auto;
  text-align: left;
  color: #7d7d7d;
}

@media (min-width: 50rem) {
  .panel .rewards__explanation {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1 / span 1;
    position: initial;
    text-align: center;
    margin-top: 0.5rem;
  }
}

.panel .myinfo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 2rem;
}

@media (min-width: 50rem) {
  .panel .myinfo {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[4];
        grid-template-columns: repeat(4, 1fr);
    grid-gap: 0rem 2rem;
    padding-bottom: 0;
  }
}

.panel .myinfo__basic {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 2rem;
}

@media (min-width: 50rem) {
  .panel .myinfo__basic {
    grid-column: 1 / -1;
    margin-bottom: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.panel .myinfo__basic a {
  display: block;
}

.panel .myinfo__img {
  margin-right: 1rem;
  width: 3.75rem;
  height: 3.75rem;
  border: 2px solid #d8d8d8;
  border-radius: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 50rem) {
  .panel .myinfo__img {
    width: 7rem;
    height: 7rem;
  }
}

.panel .myinfo__img img {
  width: 2rem;
}

@media (min-width: 50rem) {
  .panel .myinfo__img img {
    width: 4rem;
  }
}

.panel .myinfo h3 {
  width: 100%;
  text-align: left;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid #d8d8d8;
  font-size: 1.125rem;
}

@media (min-width: 50rem) {
  .panel .myinfo h3 {
    font-size: initial;
  }
}

.panel .myinfo h3.heading__name {
  border-bottom: 0;
  margin-bottom: 0;
  line-height: 1;
}

@media (min-width: 50rem) {
  .panel .myinfo h3.heading__phone {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / span 2;
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2 / span 1;
  }
}

@media (min-width: 50rem) {
  .panel .myinfo h3.heading__address {
    -ms-grid-column: 3;
    -ms-grid-column-span: 2;
    grid-column: 3 / span 2;
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2 / span 1;
  }
}

.panel .myinfo__phone {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 1rem;
}

@media (min-width: 50rem) {
  .panel .myinfo__phone {
    -ms-flex-item-align: start;
        -ms-grid-row-align: start;
        align-self: start;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / span 2;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 0;
  }
}

.panel .myinfo__phone-home, .panel .myinfo__phone-personal {
  width: 50%;
  padding: 0 0.5rem 0.5rem 0;
  font-size: 0.875rem;
}

@media (min-width: 50rem) {
  .panel .myinfo__phone-home, .panel .myinfo__phone-personal {
    font-size: 1rem;
  }
}

.panel .myinfo__address {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 1rem;
}

@media (min-width: 50rem) {
  .panel .myinfo__address {
    -ms-grid-column: 3;
    -ms-grid-column-span: 2;
    grid-column: 3 / span 2;
    margin-bottom: 0;
  }
}

.panel .myinfo__address-item {
  width: 50%;
  padding: 0 0.5rem 0 0;
  font-size: 0.875rem;
}

@media (min-width: 50rem) {
  .panel .myinfo__address-item {
    font-size: 1rem;
  }
}

.panel .myinfo p {
  font-size: 0.75rem;
}

@media (min-width: 30rem) {
  .panel .myinfo p {
    font-size: 1rem;
  }
}

.panel .list-names {
  text-align: center;
}

@media (min-width: 50rem) {
  .panel .list-names {
    text-align: left;
  }
}

.panel .list-names li {
  line-height: 2;
  padding: 0;
}

.panel .list-names .first-name {
  font-weight: 600;
}

/* ------------------------------- */
/* ENROLLMENT                      */
/* ------------------------------- */
.enrollment {
  background: -webkit-gradient(linear, left top, right top, from(#26b9b8), to(#47d2d1));
  background: linear-gradient(90deg, #26b9b8 0%, #47d2d1 100%);
  position: relative;
  overflow: hidden;
  padding-bottom: 25rem;
}

@media (min-width: 70rem) {
  .enrollment {
    padding-bottom: 0;
  }
}

.enrollment__bg-img {
  position: absolute;
  bottom: 0;
  right: 0;
  max-height: 30rem;
  z-index: 0;
}

@media (min-width: 70rem) {
  .enrollment__bg-img {
    right: -15rem;
    max-height: 55rem;
    left: initial;
    -webkit-transform: none;
            transform: none;
  }
}

.enrollment .container--form {
  max-width: 60rem;
  position: relative;
  z-index: 1;
}

.enrollment__img {
  display: none;
}

@media (min-width: 30rem) {
  .enrollment__img {
    display: initial;
    max-width: 25%;
    height: auto;
    margin-left: 2rem;
  }
}

@media (min-width: 50rem) {
  .enrollment__img {
    display: block;
    max-width: 33%;
    height: auto;
    margin-left: 2rem;
  }
}

@media (min-width: 70rem) {
  .enrollment__img {
    max-width: 100%;
  }
}

.subpanel {
  margin: 2rem 0;
  padding: 1.5rem 2rem;
  border-radius: 0.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-image: -webkit-gradient(linear, left top, right top, from(#dc4b82), to(#83358b));
  background-image: linear-gradient(to right, #dc4b82, #83358b);
  color: #ffffff;
}

@media (min-width: 30rem) {
  .subpanel {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.subpanel h2 {
  margin-bottom: 1rem;
}

@media (min-width: 30rem) {
  .inline-flex-mobileplus {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}

/* ------------------------------- */
/* HELP CENTER                     */
/* ------------------------------- */
.help-center {
  background-image: -webkit-gradient(linear, left top, right top, from(#177a7f), to(#26b9b8));
  background-image: linear-gradient(90deg, #177a7f 0%, #26b9b8 100%);
  padding-top: 6rem;
  -webkit-clip-path: polygon(0 2rem, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 2rem, 100% 0, 100% 100%, 0 100%);
}

@media (min-width: 50rem) {
  .help-center {
    padding: 6rem 3.25rem 4.5rem;
  }
}

.intro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #ffffff;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-bottom: 0;
}

@media (min-width: 50rem) {
  .intro {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-bottom: 2rem;
  }
}

.intro__text {
  padding: 1.5rem;
  text-align: center;
}

@media (min-width: 50rem) {
  .intro__text {
    -webkit-box-flex: 7;
        -ms-flex: 7;
            flex: 7;
    text-align: left;
  }
}

.intro img {
  -webkit-box-flex: 5;
      -ms-flex: 5;
          flex: 5;
  position: relative;
  z-index: 1;
}

.intro__help-center-img {
  margin-bottom: -6.5rem;
}

@media (min-width: 50rem) {
  .intro__help-center-img {
    margin-bottom: -12.5rem;
  }
}

.intro__help-center-img img {
  width: 100%;
  max-width: 15rem;
}

@media (min-width: 50rem) {
  .intro__help-center-img img {
    max-width: 24rem;
  }
}

.intro__policy-img {
  margin-bottom: -13.5rem;
}

.intro h1 {
  margin-bottom: 1rem;
}

.intro p {
  color: #7d7d7d;
  font-size: 1rem;
}

@media (min-width: 50rem) {
  .intro p {
    font-size: 1.25rem;
  }
}

/* ANSWERS (on the page)           */
/* used for JS to grab answers     */
/* ------------------------------- */
.answer {
  display: none;
}

/* ------------------------------- */
/* POLICIES                        */
/* ------------------------------- */
.policy {
  max-width: 64rem;
  padding: 0 2rem 2rem;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.policy-content {
  padding: 8rem 0 3rem;
}

.policy__content {
  padding: 0 0 2rem;
  border-bottom: 1px solid #f1f1f1;
}

.policy__content h3 {
  font-size: 1.25rem;
  line-height: 1.4;
  margin-bottom: 1rem;
}

.policy__content h4 {
  font-size: 1rem;
}

.policy__content p {
  color: #7d7d7d;
  line-height: 1.5;
}

.policy--consent .policy__content {
  border-bottom: none;
}

.policy-status {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 1rem 0;
  padding: 0.75rem;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 600;
  background-color: #f1f1f1;
  color: #dc4b82;
}

@media (min-width: 50rem) {
  .policy-status {
    font-size: 1.25rem;
    margin: 2rem 0;
    padding: 1rem;
  }
}

.policy-status img {
  margin-right: 1rem;
}

/* ------------------------------- */
/* POLICIES & LEGAL                */
/* ------------------------------- */
.policies-legal {
  background: -webkit-gradient(linear, left top, right top, from(#177a7f), to(#26b9b8));
  background: linear-gradient(90deg, #177a7f 0%, #26b9b8 100%);
  padding-bottom: 5rem;
  position: relative;
}

@media (min-width: 50rem) {
  .policies-legal {
    padding-bottom: 7rem;
  }
}

.policies-legal:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2rem;
  width: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#0e4656), to(#177a7f));
  background: linear-gradient(90deg, #0e4656 0%, #177a7f 100%);
  -webkit-clip-path: polygon(0 100%, 100% 0, 100% 100%);
          clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

/* ------------------------------- */
/* POLICY CARDS                    */
/* ------------------------------- */
.policy-cards-wrapper {
  display: -ms-grid;
  display: grid;
  grid-gap: 1.5rem;
}

@media (min-width: 50rem) {
  .policy-cards-wrapper {
    grid-gap: 1.25rem;
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
    -ms-grid-rows: (27rem)[2];
        grid-template-rows: repeat(2, 27rem);
  }
}

.policy-cards-wrapper .card {
  background-color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 0.5rem;
  -webkit-box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.15);
          box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding-top: 1.5rem;
}

@media (min-width: 50rem) {
  .policy-cards-wrapper .card {
    padding-top: 0;
  }
}

@media (min-width: 50rem) {
  .policy-cards-wrapper .card:hover {
    -webkit-transform: translateY(-0.5rem);
            transform: translateY(-0.5rem);
    -webkit-box-shadow: 3px 3px 12px rgba(0, 0, 0, 0.15);
            box-shadow: 3px 3px 12px rgba(0, 0, 0, 0.15);
  }
}

.policy-cards-wrapper .card--optout {
  background-color: rgba(255, 255, 255, 0.25);
}

.policy-cards-wrapper .card--optout .card__title,
.policy-cards-wrapper .card--optout .card__body {
  color: #ffffff;
}

.policy-cards-wrapper .card--optout a {
  color: #ffffff;
  text-decoration: underline;
}

.policy-cards-wrapper .card--optout:hover {
  -webkit-transform: none;
          transform: none;
  -webkit-box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.15);
          box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.15);
}

.policy-cards-wrapper .card__img {
  display: none;
}

@media (min-width: 50rem) {
  .policy-cards-wrapper .card__img {
    display: block;
    text-align: center;
    padding: 2.5rem 2.5rem 1.5rem;
  }
}

.policy-cards-wrapper .card__title {
  text-align: center;
  padding: 0 1.5rem;
}

.policy-cards-wrapper .card__body {
  text-align: center;
  padding: 0 1.5rem 0.5rem;
  color: #7d7d7d;
}

@media (min-width: 50rem) {
  .policy-cards-wrapper .card__body {
    padding: 0 1.5rem;
  }
}

.policy-cards-wrapper .card__body p {
  line-height: 1.3;
}

.policy-cards-wrapper .card__footer {
  margin-top: auto;
  height: 2rem;
  border-radius: 0 0 0.25rem 0.25rem;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  line-height: 2.5;
  color: #fff;
}

.policy-cards-wrapper .card__footer--wavy {
  font-size: 0.75rem;
  letter-spacing: 0.35rem;
  background-color: #00bb56;
}

.policy-cards-wrapper .card__footer--wavy::before {
  content: "";
  position: absolute;
  top: -12px;
  height: 12px;
  left: 0;
  width: 100%;
  background: linear-gradient(45deg, #00bb56 6px, transparent 0), linear-gradient(-45deg, #00bb56 6px, transparent 0);
  background-repeat: repeat-x;
  background-size: 12px 12px;
}

.policy-cards-wrapper .card__footer--needs-consent {
  font-size: 0.75rem;
  letter-spacing: 0.35rem;
  background-color: #a32c59;
}

.policy-cards-wrapper .card__footer--needs-consent::before {
  content: "";
  position: absolute;
  top: -12px;
  height: 12px;
  left: 0;
  width: 100%;
  background: linear-gradient(45deg, #a32c59 6px, transparent 0), linear-gradient(-45deg, #a32c59 6px, transparent 0);
  background-repeat: repeat-x;
  background-size: 12px 12px;
}

/* ------------------------------- */
/* PRIVACY POLICY                  */
/* ------------------------------- */
.policy-header {
  color: #ffffff;
  position: relative;
  padding-bottom: 6rem;
}

@media (min-width: 50rem) {
  .policy-header {
    padding-bottom: 2rem;
  }
}

.policy-header::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#177a7f), to(#26b9b8));
  background: linear-gradient(90deg, #177a7f 0%, #26b9b8 100%);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.policy-header .container {
  position: relative;
  z-index: 1;
}

.policy-header__text {
  max-width: 38rem;
}

.policy-header__img {
  position: absolute;
  right: 0;
  bottom: -14.5rem;
  z-index: 1;
}

@media (min-width: 30rem) {
  .policy-header__img {
    bottom: -14.5rem;
    max-width: 65%;
  }
}

@media (min-width: 50rem) {
  .policy-header__img {
    bottom: -9.5rem;
  }
}

.policy-header h1 {
  margin: 1rem 2rem;
  text-align: center;
}

@media (min-width: 30rem) {
  .policy-header h1 {
    text-align: left;
    margin: 0 0 1rem;
  }
}

.policy-header p {
  font-size: 1rem;
  color: #c4feff;
  line-height: 1.3;
  margin-bottom: 2rem;
  text-align: center;
}

@media (min-width: 30rem) {
  .policy-header p {
    font-size: 1.25rem;
    text-align: left;
  }
}

@media (min-width: 50rem) {
  .policy-header p {
    font-size: 1.75rem;
    text-align: left;
  }
}

.policy-header .last-modified {
  font-size: 0.875rem;
}

@media (min-width: 50rem) {
  .policy-header .last-modified {
    font-size: 1rem;
  }
}

.policy-content .policy__title {
  margin-right: 0;
}

@media (min-width: 50rem) {
  .policy-content .policy__title {
    margin-right: 3.5rem;
  }
}

.policy-content .policy__title h2 {
  text-align: center;
  text-transform: capitalize;
  line-height: 1.2;
}

@media (min-width: 50rem) {
  .policy-content .policy__title h2 {
    font-size: 1.75rem;
    text-align: left;
  }
}

.policy-content .list-bulleted li {
  margin-bottom: 0.25rem;
}

/* ------------------------------- */
/* POLICY TABLE / COOKIES          */
/* ------------------------------- */
.policy__table {
  border-collapse: collapse;
  margin-bottom: 2rem;
}

.policy__table thead {
  display: none;
}

@media (min-width: 30rem) {
  .policy__table thead {
    display: table-header-group;
  }
}

.policy__table tbody tr {
  display: -ms-grid;
  display: grid;
  border-bottom: 2px solid #d8d8d8;
}

@media (min-width: 30rem) {
  .policy__table tbody tr {
    display: table-row;
  }
}

.policy__table th,
.policy__table td {
  padding: 0.75rem;
  text-align: left;
  border: 1px solid #f1f1f1;
}

.policy__table th {
  color: #7d7d7d;
  border-bottom: 2px solid #7d7d7d;
  background-color: #f1f1f1;
  white-space: nowrap;
}

.policy__table td {
  vertical-align: top;
}

.policy__table td::before {
  content: attr(data-label);
  display: block;
  margin-bottom: 0.25rem;
  font-weight: 600;
}

@media (min-width: 30rem) {
  .policy__table td::before {
    display: none;
  }
}

ul.list-cookies li:not(:first-child) {
  padding-top: 0.5rem;
  margin-top: 0.5rem;
  border-top: 1px solid #d8d8d8;
}

.my-profile .my-info,
.my-profile .my-address-phone,
.my-profile .my-address,
.my-profile .my-phone,
.my-profile .my-meter-account {
  margin-bottom: 3rem;
}

.my-profile h2 {
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid #d8d8d8;
}

@media (min-width: 50rem) {
  .my-profile h2 {
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
  }
}

.my-profile p {
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 50rem) {
  .my-profile p {
    font-size: 1rem;
  }
}

.my-info {
  background-color: #f1f1f1;
  border-radius: 0.25rem;
  padding: 1.5rem;
  display: -ms-grid;
  display: grid;
  grid-gap: 0.5rem;
}

.my-info__profile-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.my-info__profile-img img {
  background-color: #ffffff;
  border-radius: 100%;
  border: 0.25rem solid #d8d8d8;
  width: 4rem;
  height: 4rem;
  padding: 0.75rem;
}

@media (min-width: 50rem) {
  .my-info__profile-img img {
    width: 8rem;
    height: 8rem;
    padding: 1.5rem;
  }
}

.my-info__name, .my-info__password {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #d8d8d8;
  text-align: center;
}

@media (min-width: 50rem) {
  .my-info__name, .my-info__password {
    border-bottom: 0;
    text-align: left;
  }
}

@media (min-width: 50rem) {
  .my-info {
    -ms-grid-columns: 0.65fr 1fr 1fr 0.75fr;
        grid-template-columns: 0.65fr 1fr 1fr 0.75fr;
    grid-gap: 1rem;
  }
}

.my-address-phone {
  display: -ms-grid;
  display: grid;
}

@media (min-width: 50rem) {
  .my-address-phone {
    -ms-grid-columns: 2.5fr 1fr;
        grid-template-columns: 2.5fr 1fr;
    grid-gap: 1rem;
  }
}

.my-address-phone .btn {
  width: 100%;
}

@media (min-width: 30rem) {
  .my-address-phone .btn {
    width: auto;
    min-width: 14rem;
  }
}

.my-address-phone .my-profile__address {
  margin-bottom: 2rem;
}

.my-address-phone .my-profile__address ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.my-address-phone .my-profile__address ul li {
  width: 50%;
  padding-right: 0.5rem;
}

@media (min-width: 50rem) {
  .my-address-phone .my-profile__address ul li {
    width: 33.3333%;
  }
}

.my-address-phone .my-profile__phone ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (min-width: 50rem) {
  .my-address-phone .my-profile__phone ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.my-address-phone .my-profile__phone ul li {
  width: 50%;
}

@media (min-width: 50rem) {
  .my-address-phone .my-profile__phone ul li {
    width: 100%;
  }
}

.my-meter-account p {
  margin-bottom: 1.5rem;
}

/* ------------------------------- */
/* CHANGE PASSWORD                 */
/* ------------------------------- */
.change-password {
  background: -webkit-gradient(linear, left top, right top, from(#26b9b8), to(#47d2d1));
  background: linear-gradient(90deg, #26b9b8 0%, #47d2d1 100%);
  position: relative;
  overflow: hidden;
  padding-bottom: 25rem;
}

@media (min-width: 50rem) {
  .change-password {
    padding-bottom: 2rem;
  }
}

.change-password__bg-img {
  position: absolute;
  bottom: -3rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 0;
  max-height: 27rem;
}

@media (min-width: 50rem) {
  .change-password__bg-img {
    left: -4rem;
    bottom: 0;
    -webkit-transform: none;
            transform: none;
    max-height: 42rem;
  }
}

.change-password .container--form {
  max-width: 60rem;
  margin-bottom: 0;
  background-color: #ffffff;
  position: relative;
  z-index: 1;
}

@media (min-width: 50rem) {
  .change-password .sidebar {
    -webkit-box-flex: 1.75;
        -ms-flex: 1.75;
            flex: 1.75;
    border-left: 0;
    padding: 5rem 0 0 2.5rem;
  }
}

.change-password .sidebar__prompt {
  line-height: 1.3;
}

@media (min-width: 50rem) {
  .change-password .sidebar__prompt {
    margin-bottom: 2rem;
  }
}

.password__requirements {
  padding: 1rem 0 2rem;
}

@media (min-width: 50rem) {
  .password__requirements {
    padding: 2rem;
  }
}

.password__requirements h3 {
  font-size: 1.5rem;
  line-height: 1.75rem;
  font-weight: 400;
  color: #333333;
  margin-bottom: 2rem;
}

.password__requirements .list-requirements {
  margin: 0;
  padding: 0 0.5rem;
  list-style: none;
}

@media (min-width: 50rem) {
  .password__requirements .list-requirements {
    padding: 0;
  }
}

.password__requirements .list-requirements li {
  position: relative;
  line-height: 1.4rem;
  margin-bottom: 0.75rem;
  color: #7d7d7d;
}

.password__requirements .list-requirements li::before {
  content: url(../images/icons/icon_arrow_right_pink.svg);
  vertical-align: middle;
  margin-right: 0.75rem;
}

.password__requirements .list-requirements li.met::before {
  content: url(../images/icons/icon_check_green.svg);
}

.password__requirements .list-requirements li.met .status {
  color: #0cb95a;
}

.password__requirements .list-requirements li.not-met::before {
  content: url(../images/icons/icon_arrow_right_pink.svg);
  color: #dc4b82;
}

.password__requirements .list-requirements li.not-met .status {
  font-weight: bold;
  color: #dc4b82;
}

.password__requirements .list-requirements li .status {
  font-weight: bold;
}

.password__requirements .list-requirements li .example {
  margin-left: 2.25rem;
}

/* ------------------------------- */
/* CHANGE ADDRESS                 */
/* ------------------------------- */
.change-address {
  background: -webkit-gradient(linear, left top, right top, from(#26b9b8), to(#47d2d1));
  background: linear-gradient(90deg, #26b9b8 0%, #47d2d1 100%);
  position: relative;
  overflow: hidden;
  padding-bottom: 30rem;
}

@media (min-width: 70rem) {
  .change-address {
    padding-bottom: 2rem;
  }
}

.change-address__bg-img {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 28rem;
  z-index: 0;
}

@media (min-width: 70rem) {
  .change-address__bg-img {
    -webkit-transform: none;
            transform: none;
    left: auto;
    right: -12rem;
    height: 67rem;
  }
}

.change-address .container--form {
  max-width: 60rem;
  margin-bottom: 0;
  background-color: #ffffff;
  position: relative;
  z-index: 1;
}

/* ------------------------------- */
/* CHANGE PHONE NUMBERS            */
/* ------------------------------- */
.my-phone {
  background: -webkit-gradient(linear, left top, right top, from(#26b9b8), to(#47d2d1));
  background: linear-gradient(90deg, #26b9b8 0%, #47d2d1 100%);
  position: relative;
  overflow: hidden;
  padding-bottom: 30rem;
}

@media (min-width: 70rem) {
  .my-phone {
    padding-bottom: 2rem;
  }
}

.my-phone__bg-img {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 28rem;
  z-index: 0;
}

@media (min-width: 70rem) {
  .my-phone__bg-img {
    -webkit-transform: none;
            transform: none;
    left: -15rem;
    top: 6rem;
    height: 67rem;
  }
}

.my-phone .container--form {
  max-width: 60rem;
  margin-bottom: 0;
  background-color: #ffffff;
  position: relative;
  z-index: 1;
}

/* ------------------------------- */
/* REWARDS SUMMARY                 */
/* ------------------------------- */
.rewards-summary {
  background: -webkit-gradient(linear, left top, right top, from(#177a7f), to(#26b9b8));
  background: linear-gradient(90deg, #177a7f 0%, #26b9b8 100%);
  /* REWARDS TEXT - BELOW PANELS     */
  /* ------------------------------- */
}

.rewards-summary .panel {
  margin-bottom: 2rem;
}

.rewards-summary .rewards-info {
  margin: 2rem 1rem 1rem;
  color: #c4feff;
}

.rewards-summary .rewards-info h3 {
  color: #ffffff;
  font-size: 1.5rem;
}

@media (min-width: 50rem) {
  .rewards-summary .rewards-info h3 {
    font-size: 1.75rem;
  }
}

.rewards-summary .rewards-info p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 50rem) {
  .rewards-summary .rewards-info p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
  }
}

.rewards-summary .rewards-info a {
  text-decoration: underline;
  color: #ffffff;
}

.rewards-summary .rewards-info strong {
  display: inline;
  color: #ffffff;
}

.rewards-summary .rewards-info .list-bulleted li {
  margin-bottom: 1rem;
  color: #c4feff;
  font-size: 1rem;
}

@media (min-width: 50rem) {
  .rewards-summary .rewards-info .list-bulleted li {
    font-size: 1.25rem;
  }
}

/* ------------------------------- */
/* GO TO REWARDS CENTER            */
/* ------------------------------- */
.go-to-rewards-center {
  background: -webkit-gradient(linear, left top, right top, from(#9adff3), to(#c7eef9));
  background: linear-gradient(90deg, #9adff3 0%, #c7eef9 100%);
  position: relative;
  overflow: hidden;
}

.go-to-rewards-center__bg-img {
  position: absolute;
  bottom: -4rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
}

@media (min-width: 30rem) {
  .go-to-rewards-center__bg-img {
    top: -6rem;
    height: 100vw;
  }
}

@media (min-width: 50rem) {
  .go-to-rewards-center__bg-img {
    height: 62rem;
    bottom: -12rem;
  }
}

.go-to-rewards-center .container {
  position: relative;
  z-index: 1;
}

.container-narrow {
  max-width: 40rem;
  margin: 5.5rem auto;
  padding: 2.75rem 1.5rem;
  background: -webkit-gradient(linear, left top, right top, from(#de4882), to(#2f469c));
  background: linear-gradient(90deg, #de4882 0%, #2f469c 100%);
  border-radius: 0.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 50rem) {
  .container-narrow {
    margin: 10rem auto;
  }
}

.container-narrow h2 {
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  text-align: center;
  max-width: 20rem;
}

.container-narrow .btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 50rem) {
  .container-narrow .btn {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.container-narrow .btn img {
  margin-left: auto;
  margin: -0.25rem 0 0 0.75rem;
}

/* ------------------------------- */
/* TRANSACTIONS HISTORY            */
/* ------------------------------- */
.transactions {
  background-color: #47d2d1;
  border-top: 1px solid #47d2d1;
}
/* ------------------------------- */
/* MY REWARDS                      */
/* ------------------------------- */
.my-rewards {
  padding-bottom: 8rem;
}

.my-rewards .container {
  display: -ms-grid;
  display: grid;
  grid-gap: 1rem;
}

@media (min-width: 30rem) {
  .my-rewards .container {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

.my-rewards .rewards-status {
  text-align: center;
}

.my-rewards .rewards-status h1 {
  line-height: 1;
  margin-bottom: 2rem;
  font-size: 1.5rem;
}

.my-rewards .rewards-status .emphasize {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

@media (min-width: 50rem) {
  .my-rewards .rewards-status .emphasize {
    font-size: 1.875rem;
    margin-bottom: 2rem;
  }
}

.my-rewards .rewards-available {
  font-size: 4rem;
  margin-bottom: 1rem;
  line-height: 1;
  color: #dc4b82;
  font-weight: 900;
}

@media (min-width: 50rem) {
  .my-rewards .rewards-available {
    font-size: 6rem;
  }
}

.my-rewards .rewards-redeem {
  background-color: #f1f1f1;
  border-radius: 0.25rem;
  padding: 2rem 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.my-rewards .rewards-redeem h2 {
  margin-bottom: 1.5rem;
}

.my-rewards .rewards-redeem .btn {
  font-size: 0.875rem;
}

@media (min-width: 30rem) {
  .my-rewards .rewards-redeem .btn {
    font-size: 1rem;
  }
}

.my-rewards .reward-examples {
  width: 100%;
  margin: 0 0 2rem;
  padding: 0;
  list-style-type: none;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  grid-gap: 0.5rem;
}

@media (min-width: 50rem) {
  .my-rewards .reward-examples {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
  }
}

.my-rewards .reward-examples li {
  background-color: #ffffff;
  border-radius: 0.25rem;
  padding: 1.5rem 1rem 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  color: #7d7d7d;
  text-align: center;
}

.my-rewards .reward-examples li:last-child {
  display: none;
}

@media (min-width: 50rem) {
  .my-rewards .reward-examples li:last-child {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.my-rewards .reward-examples li:first-child img, .my-rewards .reward-examples li:last-child img {
  margin-bottom: 1.25rem;
}

.my-rewards .reward-examples li img {
  display: block;
  margin-bottom: 0.75rem;
  width: 75%;
}

/* ------------------------------- */
/* EARNING REWARDS                 */
/* ------------------------------- */
.earning-rewards h2 {
  margin-bottom: 1rem;
}

@media (min-width: 50rem) {
  .earning-rewards h2 {
    font-size: 2.25rem;
    line-height: 3rem;
  }
}

.earning-rewards p {
  color: #7d7d7d;
}

@media (min-width: 50rem) {
  .earning-rewards p {
    margin-bottom: 2rem;
  }
}

.earning-rewards .cards-rewards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (min-width: 50rem) {
  .earning-rewards .cards-rewards {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.earning-rewards .card-reward {
  margin: 0.5rem 0;
  border-radius: 0.25rem;
  -webkit-box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.2);
          box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.2);
  background-color: #ffffff;
  color: #333333;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 4rem auto 6rem;
      grid-template-columns: 4rem auto 6rem;
}

.earning-rewards .card-reward--disabled {
  opacity: 0.3;
}

@media (min-width: 50rem) {
  .earning-rewards .card-reward {
    margin: 0.25rem;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    -ms-grid-rows: 6rem 1fr 5rem;
        grid-template-rows: 6rem 1fr 5rem;
    min-height: 20rem;
    text-align: center;
  }
}

.earning-rewards .card-reward--amount {
  text-align: right;
  padding: 0.75rem;
  background-color: #d2ffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (min-width: 50rem) {
  .earning-rewards .card-reward--amount {
    border-radius: 0.25rem 0.25rem 0 0;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.earning-rewards .card-reward .reward-value {
  color: #009d9c;
  font-size: 1.5rem;
  font-weight: 500;
}

@media (min-width: 50rem) {
  .earning-rewards .card-reward .reward-value {
    font-size: 1.75rem;
  }
}

.earning-rewards .card-reward .reward-units {
  color: #7d7d7d;
  font-size: 0.875rem;
}

.earning-rewards .card-reward--icon {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  -ms-grid-column-align: center;
      justify-self: center;
}

.earning-rewards .card-reward--icon img {
  height: 2.5rem;
  max-width: 2.25rem;
}

@media (min-width: 50rem) {
  .earning-rewards .card-reward--icon {
    -ms-flex-item-align: end;
        -ms-grid-row-align: end;
        align-self: end;
  }
}

.earning-rewards .card-reward--content {
  padding: 0.5rem;
  line-height: 1.1rem;
  font-size: 0.875rem;
  text-align: left;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

@media (min-width: 50rem) {
  .earning-rewards .card-reward--content {
    padding: 1rem 0.5rem;
    text-align: center;
    line-height: 1.25;
  }
}

.earning-rewards .card-reward--content h3 {
  margin-bottom: 0.25rem;
}

@media (min-width: 50rem) {
  .earning-rewards .card-reward--content h3 {
    margin-bottom: initial;
  }
}

.earning-rewards .card-reward--content p {
  margin-bottom: 0;
}

.modal-link{
  cursor: pointer;
}
/*# sourceMappingURL=main.css.map */

/* ------------------------------- */
/* EMPHASIZE                       */
/* ------------------------------- */
.emphasize {
  color: #dc4b82;
  font-weight: 600;
}
