/* public/css/includes/variables.css */
:root {
  --take-back-control-gradient: linear-gradient(253deg, #2150c8, #712291);
  --fxa-sign-up-gradient: linear-gradient(103deg, #374dcc, #9456f9 0%, #394cca 34%, #312a65 69%, #1d1133);
  --ink-light: #2b1e44;
  --ink: #20123a;
  --ink-dark: #1d1133;
  --padding: 16px;
  --max-width: 1270px;
  --headline: 40px;
  --top-headline: 56px;
  --border-color: #eee;
  --text-light: #5e5e72;
  --alert-red: #ff4f5e;
  --purple: #9059ff;
  --violet1: #c689ff;
  --violet2: #ab71ff;
  --violet3: #9059ff;
  --violet4: #7542e5;
  --violet5: #592acb;
  --violet6: #45278d;
  --purple1: #f565ff;
  --purple5: #722291;
  --purple6: #332869;
  --purple7: #393473;
  --pink4: #e31587;
  --blue1: #0df;
  --blue2: #0090ed;
  --blue3: #0060df;
  --blue4: #0250bb;
  --blue5: #073072;
  --orange1: #ffa266;
  --green1: #54ffbd;
  --orange5: #ff7139;
  --orange6: #e25920;
  --bg-light: #f9f7fd;
  --paragraph-font-size: 16px;
  --grey90a3: rgb(12 12 13 / 0.3);
  --grey1: #f9f9fa;
  --grey2: #ededf0;
  --grey3: #cdcdd4;
  --grey6: #5e5e72;
  --grey8: #42425a;
  --grey9: #202340;
  --monitor-gradient: linear-gradient(-90deg, #ff9100 0%, #f10366 50%, #6173ff 100%);
  --vpn-purple: #c5c8fb;
}

/* public/css/includes/fonts.css */
@font-face {
  font-family: Metropolis;
  font-style: normal;
  font-weight: 600;
  src: local("Metropolis-SemiBold"), url(../fonts/Metropolis/Metropolis-SemiBold.woff2) format("woff2");
  font-display: swap;
}
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local("Inter-Regular"), url(../fonts/Inter/Inter-Regular.woff2) format("woff2");
}
@font-face {
  font-family: Inter;
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: local("Inter-Italic"), url(../fonts/Inter/Inter-Italic.woff2) format("woff2");
}
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local("Inter-Bold"), url(../fonts/Inter/Inter-Bold.woff2) format("woff2");
}
@font-face {
  font-family: Inter;
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: local("Inter-BoldItalic"), url(../fonts/Inter/Inter-BoldItalic.woff2) format("woff2");
}

/* public/css/partials/all-breaches.css */
.all-breaches-main {
  background: url(../img/svg/ab-bg.svg) left top / 100% auto;
}
span.x-close-bg,
svg.x-close {
  pointer-events: none;
}
.hide-breaches {
  opacity: 0;
  transition: opacity 0.15s ease;
}
.fuzzy-wrapper {
  position: relative;
  display: flex;
  max-width: 320px;
  margin: auto;
  width: 100%;
  align-items: center;
  flex-direction: column;
}
button.fuzzy-find-show-breaches {
  position: absolute;
  right: 16px;
  bottom: 0;
  top: 0;
  margin: auto;
  min-width: 1.25rem;
  min-height: 1.25rem;
  width: 1.25rem;
  height: 1.25rem;
  border: none;
  border-radius: 50%;
  padding: 0;
  opacity: 0;
  transition: opacity 0.1s ease-in-out;
}
.show-all-breaches.btn-violet-primary {
  margin: var(--padding) auto calc(var(--padding) * 3) auto;
}
#no-results-blurb {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  pointer-events: none;
  display: none;
  opacity: 0;
  margin: 48px auto auto;
  color: var(--purple7);
  transition: all 0.15s ease-in-out;
}
#no-results-blurb.show {
  display: inline-block;
  opacity: 1;
  transition: all 0.1s ease-in-out;
}
button.fuzzy-find-show-breaches.show {
  opacity: 1;
  transition: opacity 0.15s ease-in-out;
}
.x-close-bg {
  background-color: var(--grey3);
  border-radius: 50%;
  display: flex;
  height: 1.25rem;
  width: 1.25rem;
  align-items: center;
  justify-content: center;
  padding: 2px;
}
.x-close-bg svg path {
  fill: var(--grey1);
}
.all-breaches-headline {
  color: var(--ink);
  margin: auto;
}
.fuzzy-form {
  max-width: 320px;
  background-color: rgb(255 255 255 / 0.05);
  border: 1px solid rgb(255 255 255 / 0.1);
  position: relative;
  margin: 20px auto;
}
.fuzzy-find-input {
  background-color: rgb(255 255 255 / 1);
  border: 1px solid var(--grey90a3);
  width: 100%;
  display: inline-block;
  border-radius: 4px;
  text-indent: 36px;
}
.fuzzy-find-input,
.fuzzy-find-submit {
  min-height: 50px;
}
input#fuzzy-find-input::placeholder,
input#fuzzy-find-input {
  font-size: 16px;
  color: #474747;
}
.fuzzy-find-submit {
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  margin: auto;
  color: var(--grey2);
  border: none;
  display: flex;
  align-items: center;
}
.fuzzy-find-input:focus,
.fuzzy-find-input:active,
.fuzzy-find-submit:active,
.fuzzy-find-submit:focus {
  border: none;
  outline: none;
  box-shadow: none;
}
.search-icon {
  pointer-events: none;
}
.breaches-loader {
  position: absolute;
  z-index: 101;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgb(255 255 255 / 1);
  transition: all 0.1s ease;
}
.ab.breach-card {
  max-width: 31%;
  margin: 12px;
}
.all-breaches {
  padding: var(--padding);
  flex-flow: row wrap;
  justify-content: flex-start;
}
@media screen and (max-width: 1000px) {
  .ab.breach-card.three-up {
    flex: 1 1 45%;
    max-width: 45%;
  }
}
@media screen and (max-width: 800px) {
  .all-breaches {
    padding: var(--padding);
  }
  .ab.breach-card.three-up {
    max-width: 100%;
    margin: 0.5rem auto;
    flex: 1 1 100%;
  }
}

/* public/css/partials/main.css */
* {
  box-sizing: border-box;
}
.show-mobile {
  display: none;
  visibility: hidden;
}
body {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  background-color: #f9f7fd;
  scroll-behavior: smooth;
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "Open Sans",
    "Helvetica Neue",
    sans-serif;
  font-weight: 400;
  font-size: 15px;
  overflow-y: scroll;
  overflow-x: hidden;
  min-height: 100vh;
  width: 100vw;
  -webkit-overflow-scrolling: touch;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.fxa-signup-gradient {
  background: var(--fxa-sign-up-gradient);
}
.take-back-control-gradient {
  background: var(--take-back-control-gradient);
}
.fx-monitor {
  color: var(--grey1);
}
p,
.paragraph {
  font-size: var(--paragraph-font-size);
}
.medium {
  font-weight: 500;
}
.demi {
  font-weight: 600;
}
.bold {
  font-weight: 700;
}
.overflow-break {
  max-width: 100%;
  overflow-wrap: break-word;
}
.desc {
  max-width: 320px;
}
.ff-met {
  font-family: Metropolis, sans-serif;
}
h1,
h2 {
  font-family: Metropolis, sans-serif;
}
h3,
.nav-link,
button,
input[type=submit] {
  font-family: Metropolis, sans-serif;
  font-weight: 600;
}
h1,
h2,
h3,
.section-headline {
  margin-top: 0;
}
.section-headline {
  font-size: 24px;
  font-weight: 700;
}
.small-section-headline {
  font-size: 20px;
  margin-bottom: 16px;
}
.top-headline {
  font-size: var(--top-headline);
  font-weight: 700;
  line-height: 1.14;
}
.mw-360 {
  max-width: 360px;
}
.mw-500 {
  max-width: 500px;
}
.mw-550 {
  max-width: 550px;
}
.mw-860 {
  width: 100%;
  max-width: 860px;
  padding-left: 36px;
  padding-right: 36px;
  margin: auto;
}
.headline {
  font-size: var(--headline);
  margin: 0 auto 0.55rem 0;
}
.subhead {
  font-weight: 400;
  line-height: 1.5;
  max-width: 600px;
  padding-right: 5%;
  font-size: 16px;
  margin: 0 auto var(--padding) 0;
}
a {
  text-decoration: none;
}
button.text-link {
  border: 0;
  padding: 0;
  text-align: left;
}
.blue-link {
  color: var(--blue3);
  font-family: Metropolis, sans-serif;
  font-weight: 600;
}
.text-link:hover,
.blue-link:hover {
  text-decoration: underline;
  color: var(--blue4);
}
.blue-link:active {
  color: var(--blue5);
}
div:focus,
input:focus {
  border: 2px solid #4f42ff14;
  box-shadow: 0 0 0 1px #4f42ff6e, 0 0 0 4px #4f42ff1f;
  outline: none;
}
button:focus,
a:focus {
  outline: none;
}
button {
  cursor: pointer;
  justify-content: center;
  text-align: center;
  background: transparent;
  border-style: solid;
}
.btn-white {
  border-color: rgb(255 255 255 / 1);
  color: rgb(255 255 255 / 1);
}
.btn-white:hover,
.btn-white:focus {
  color: #cfcfd8;
  border-color: #cfcfd8;
}
.btn-white:active {
  color: #9f9fad;
  border-color: #9f9fad;
}
.btn-red {
  border-color: var(--alert-red);
  color: var(--alert-red);
}
.btn-red:hover {
  border-color: #cf434f;
  color: #cf434f;
}
.btn-violet-secondary {
  color: var(--violet4);
  border-color: var(--violet4);
}
.btn-violet-secondary:hover,
.btn-violet-secondary:focus {
  color: var(--violet5);
  border-color: var(--violet5);
}
.btn-violet-secondary:active {
  color: var(--violet6);
  border-color: var(--violet6);
}
.btn-blue-primary:active,
.btn-transparent:active,
.btn-violet-primary:active,
input[type=submit]:active {
  box-shadow:
    0 2px 8px 0 rgb(14 13 26 / 0.12),
    0 3px 1px -2px rgb(7 48 114 / 0.12),
    0 2px 4px 0 rgb(34 0 51 / 0.04),
    0 0 0 1px rgb(32 18 58 / 0.04);
}
button.btn-ghost {
  border: none;
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  min-height: 48px;
  align-self: center;
  color: var(--purple7);
  min-width: 200px;
}
.btn-blue-primary,
button.btn-violet-primary {
  border-radius: 8px;
  min-height: 48px;
  font-size: 16px;
  max-width: 320px;
  font-weight: 600;
  width: 100%;
  color: rgb(255 255 255 / 1);
  padding-right: var(--padding);
  padding-left: var(--padding);
}
.btn-blue-primary {
  border-radius: 4px;
  background-color: #0060df;
  border: 1px solid #0060df;
  align-self: center;
}
.btn-blue-primary:hover {
  background-color: var(--blue4);
  border-color: var(--blue4);
}
.btn-violet-primary {
  background-color: var(--violet4);
  border: 1px solid var(--violet4);
}
.btn-violet-primary:hover {
  background-color: var(--violet5);
  border-color: var(--violet5);
}
.btn-violet-primary:active {
  background-color: var(--violet6);
  border-color: var(--violet6);
}
.btn-transparent {
  display: inline-flex;
  align-content: center;
  border-style: solid;
  border-width: 2px;
  font-family: Metropolis, sans-serif;
  font-weight: 600;
  align-items: center;
}
a.btn-transparent:hover {
  text-decoration: none;
}
.btn-small {
  font-size: 14px;
  border-radius: 4px;
  min-height: 32px;
  padding: 4px 12px;
}
.btn-big {
  font-size: 16px;
  border-radius: 8px;
  min-height: 40px;
  padding: 8px 16px;
}
a,
button,
a:hover,
button:hover,
a:focus,
button:focus,
a:active,
button:active {
  transition: all 0.15s ease-in-out;
}
ul {
  padding: 0;
  display: flex;
  flex-direction: column;
}
ul li {
  display: inline-flex;
  align-items: center;
}
.container {
  justify-content: center;
  flex-direction: column;
  padding-top: calc(var(--padding) * 2);
  padding-bottom: calc(var(--padding) * 2);
  position: relative;
}
.row {
  justify-content: space-between;
  padding: 0.75rem;
  max-width: var(--max-width);
}
.row-full-width {
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  padding: 20px 36px;
}
.row,
.row-full-width {
  margin: auto;
}
.container,
.row-full-width,
.row {
  width: 100%;
}
.container,
.row-full-width,
.row,
.col-6,
.col-12,
.flx,
.flx-cntr,
.flx-row {
  display: flex;
}
.cntr {
  align-content: center;
  align-items: center;
}
.flx-cntr {
  align-items: center;
}
.flx-col {
  flex-direction: column;
}
.flx-row {
  flex-direction: row;
}
.flx-end {
  justify-content: flex-end;
}
.flx-auto {
  flex: 1 1 auto;
}
.space-between {
  justify-content: space-between;
}
.margin-zero {
  margin: 0;
}
.col-6 {
  flex: 1 1 50%;
  max-width: 50%;
  min-width: 300px;
}
.col-8 {
  flex: 1 1 66.6667%;
  min-width: 66.6667%;
  max-width: 66.6667%;
}
.mw-700 {
  padding: 0 24px;
  max-width: 744px;
  width: 100%;
  overflow-wrap: break-word;
}
.col-9 {
  flex: 1 1 75%;
  min-width: 75%;
  max-width: 75%;
}
.col-12 {
  flex: 1 1 calc(100% - var(--padding));
  width: 100%;
  flex-direction: column;
  padding: var(--padding);
  margin-right: auto;
  margin-left: auto;
}
.col-6,
.col-8,
.col-9 {
  padding: var(--padding);
  flex-direction: column;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
.padding-top-zero {
  padding-top: 0;
}
.no-vertical-padding {
  padding-top: 0;
  padding-bottom: 0;
}
.col {
  flex-direction: column;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
.txt-light {
  color: var(--grey8);
  line-height: 1.5;
}
.txt-cntr {
  text-align: center;
}
.txt-purple7 {
  color: var(--purple7);
}
.jst-cntr {
  justify-content: center;
  align-items: center;
}
.bg-white {
  background-color: rgb(255 255 255 / 1);
}
.sr {
  background-image: url(../img/svg/scan-res-bg.svg);
  background-position: top center;
  background-attachment: fixed;
  background-size: cover;
}
.bg-light {
  background-color: #f9f7fd;
}
.bg-dark {
  background-color: var(--ink-dark);
  color: rgb(255 255 255 / 1);
}
.drop-shadow {
  box-shadow: 0 0 1px 1px #607d8b08, 1px 1px 10px #4341571a;
  transition: all 0.15s ease-in-out;
}
.drop-shadow:hover {
  box-shadow: 0 0 1px 1px #607d8b12, 1px 1px 12px #4341574d;
  transition: all 0.15s ease-in-out;
}
.source-info {
  display: block;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}
.source-info a,
.source-info {
  color: var(--text-light);
  font-size: 14px;
}
.source-info a {
  font-weight: 600;
}
.source-info a:hover {
  color: var(--grey8);
}
.source-info a:active {
  color: var(--grey9);
}
div.sprite {
  background-repeat: no-repeat !important;
  background-size: cover !important;
}
.title-wrapper {
  display: inline-block;
}
.logo-wrapper {
  width: 1.5rem;
  min-height: 10px;
  margin-right: 0.5rem;
  display: inline-flex;
}
.arrow-head-right {
  margin-left: 4px;
  vertical-align: text-bottom;
}
.show {
  visibility: visible;
  opacity: 1;
  transition:
    opacity 0.1s ease,
    visibility 0.1s ease 0.2s,
    max-height 0.1s ease 0.2s,
    padding 0.1s ease 0.2s;
}
.hide {
  padding: 0;
  opacity: 0;
  max-height: 0;
  visibility: hidden;
  transition:
    opacity 0.1s ease,
    visibility 0.1s ease 0.2s,
    max-height 0.1s ease 0.2s,
    padding 0.1s ease 0.2s;
}
.hide > * {
  padding: 0;
  max-height: 0;
  visibility: hidden;
  margin: 0 auto !important;
}
.clear-header {
  padding-top: calc(var(--header-height) + 80px);
}
.toggle-parent.active .toggle svg {
  transform: rotate(180deg);
}
.toggle-parent.inactive .toggle-child {
  display: none;
}
.nav-link:hover,
.footer-link:hover {
  color: #cfcfd8;
}
.nav-link:active,
.footer-link:active {
  color: #9f9fad;
}
@media screen and (max-width: 1200px) {
  body {
    --max-width: 1000px;
  }
}
@media screen and (max-width: 800px) {
  body {
    --max-width: 600px;
    --top-headline: 43px;
    --headline: 36px;
  }
  .hide-mobile {
    display: none !important;
    visibility: hidden;
  }
  .show-mobile {
    display: flex;
    visibility: visible;
  }
  .mw-700 {
    max-width: var(--max-width);
  }
  .col-6 {
    max-width: 100%;
    padding: 0 var(--padding);
  }
  .col-8,
  .col-9 {
    max-width: 100%;
    width: 100%;
    margin: auto;
  }
  .mw-860 {
    max-width: 600px;
  }
  .row {
    flex-direction: column;
  }
  .row-9 {
    max-width: 75%;
    width: 75%;
    display: flex;
    padding: 0 var(--padding);
  }
}
@media screen and (max-width: 600px) {
  .col-6,
  .col-12 {
    margin: auto;
    width: 100%;
  }
  .row-full-width {
    padding: 20px 24px;
  }
  .mw-860 {
    padding-left: 24px;
    padding-right: 24px;
  }
  .arrow-head-right {
    margin-left: 0.15rem;
  }
}
@media screen and (max-width: 500px) {
  body {
    --top-headline: 36px;
    --headline: 32px;
  }
  .col-6 {
    min-width: auto;
  }
  body.bento-open {
    position: fixed;
  }
  .headline {
    margin-bottom: 16px;
  }
  .subhead {
    padding-right: 3%;
  }
}

/* public/css/partials/articles.css */
.article-list-subhead {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5;
  padding-right: 0;
  margin-bottom: 0;
}
.article {
  margin-bottom: 1.5rem;
}
.article-list {
  margin: 1.75rem 0;
}
li.article {
  margin-bottom: 32px;
}
.article-link {
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  color: rgb(255 255 255 / 1);
  display: inline-block;
  align-items: center;
}
.article-link:hover {
  text-decoration: underline;
}
.article-link .arrow-head-right path {
  fill: rgb(255 255 255 / 1);
}
.article-list-headline {
  margin-bottom: var(--padding);
  line-height: 1.1;
}
.article-list-headline,
.article-list-subhead {
  color: var(--grey1);
}
.security-tips-link {
  margin-left: 3.25rem;
  display: flex;
  font-size: 14px;
}
li.logo-title-wrapper.flx.article {
  margin-left: 0.25rem;
}
.take-back-control-banner {
  max-width: 900px;
}
.article-list-headline-wrapper {
  padding: var(--padding);
}
.article-list,
.article-list-headline-wrapper {
  max-width: 500px;
  display: flex;
  flex-direction: column;
  margin: auto;
  padding: var(--padding);
}
@media screen and (max-width: 1100px) {
  .col-8.article-section-list-wrapper {
    margin-top: 2rem;
  }
  .latest-breach-wrapper {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
  .article-list-content-wrap {
    padding: 0 0.5rem;
  }
}
@media screen and (max-width: 900px) {
  .articles {
    margin-bottom: 1.25rem;
  }
  .icon-inline-wrapper {
    margin-right: 1.15rem;
  }
  .take-back-control-banner {
    flex-direction: column;
  }
}
@media screen and (max-width: 600px) {
  .article-list-headline {
    font-size: var(--headline);
  }
  .security-tips-link {
    margin-left: 2.25rem;
  }
  li.article {
    margin-bottom: 24px;
  }
  .article-list-subhead {
    padding-right: 10%;
  }
  li.logo-title-wrapper.flx.article {
    margin-left: 0;
  }
}

/* public/css/partials/breach-cards.css */
.breach-card {
  --logo-dmns: 24px;
  --logo-margin: 20px;
  padding: 20px;
  border-radius: 8px;
  display: flex;
  position: relative;
  margin: 0.5rem;
  color: var(--ink);
  background-color: rgb(255 255 255 / 1);
}
.breach-key {
  font-size: 12px;
  margin-top: 8px;
  color: #5b5b5b;
}
.breach-value {
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
}
.breach-key,
.breach-value {
  line-height: 1.5;
}
.breach-title {
  padding-top: 2px;
  font-size: 18px;
  font-weight: 600;
  font-family: Metropolis, sans-serif;
}
.breach-info-wrapper {
  height: 100%;
  justify-content: space-between;
}
.breach-logo {
  max-height: var(--logo-dmns);
  max-width: var(--logo-dmns);
}
.breach-logo-wrapper {
  content: "";
  display: block;
  min-height: var(--logo-dmns);
  min-width: var(--logo-dmns);
  max-height: var(--logo-dmns);
  max-width: var(--logo-dmns);
  margin-right: var(--logo-margin);
}
.breach-card-link-wrap {
  padding-top: 12px;
}
.breach-title,
.breach-value,
.breach-key {
  display: block;
}
.two-up {
  flex: 1 1 45%;
  margin: var(--padding);
  max-width: 46%;
}
.scan-res-breaches .two-up {
  flex: 1 1 47%;
  margin: var(--padding) 8px;
  max-width: 47%;
}
.three-up {
  flex: 1 1 30%;
  min-width: 260px;
}
.new-breach-card {
  border: 2px solid var(--alert-red);
}
.resolved-breach-card {
  border: 2px solid #20c3a2;
  opacity: 0.6;
}
.resolved-breach-card span.breach-title {
  padding-right: 20px;
}
.resolved-breach-indicator {
  background-color: #20c3a2;
  position: absolute;
  right: 20px;
}
.breach-card-status {
  display: flex;
  margin: 0 0 0 auto;
  color: white;
  font-weight: 600;
  font-size: 12px;
}
.breach-status-message {
  margin: 0 0 auto;
  padding: 2px 6px;
  border-radius: 2px;
}
.new-breach-message {
  background-color: var(--alert-red);
}
@media screen and (max-width: 1000px) {
  .three-up {
    max-width: 48%;
    flex: 1 1 48%;
  }
}
@media screen and (max-width: 800px) {
  .breach-card {
    margin: 0.75rem 0;
  }
  .email-card.active .breach-card.ec.two-up {
    display: flex;
  }
  .two-up,
  .scan-res-breaches .two-up,
  .three-up {
    max-width: 100%;
    flex: 1 1 100%;
  }
}
@media screen and (max-width: 500px) {
  .breach-card {
    margin: 0.5rem 0;
  }
}

/* public/css/partials/breach-detail.css */
main.breach-detail {
  padding-left: 24px;
  padding-right: 24px;
  color: var(--grey1);
}
.bg-split {
  background-image: linear-gradient(rgb(255 255 255 / 0) 50%, #fff 0);
}
.breach-type:hover {
  text-decoration: underline;
}
.delayed-reporting {
  margin-top: 18px;
  display: inline-block;
}
.detail-section {
  padding: 60px 0;
}
.detail-section.bg-split {
  padding: 0 0 20px;
}
.bg-split .mw-700 {
  padding: 0;
}
.breach-detail-headline {
  margin: auto auto 8px;
  color: var(--ink);
  max-width: 100%;
}
.breach-detail-logo-wrapper {
  margin-bottom: var(--padding);
}
.breach-detail-logo.breach-logo {
  max-width: 10rem;
  max-height: 10rem;
}
.glyph {
  display: flex;
  margin-right: 16px;
}
.overview,
.overview p {
  font-size: 16px;
}
.overview p {
  margin: 20px 0 0;
}
.additional-data-types {
  display: block;
  margin: 0;
}
.additional-data-types-wrapper .source-info {
  margin-left: 0;
}
.breach-type {
  margin-top: 8px;
  font-size: 14px;
  color: var(--grey6);
}
.priority-data-classes-list {
  width: 100%;
  flex-wrap: wrap;
  margin: 0;
}
.lower-priority-data-types {
  margin-top: 0;
  margin-bottom: 28px;
}
.priority-data-type {
  margin-bottom: 28px;
}
.data-type {
  font-weight: 600;
}
.data-type,
.data-action {
  margin: 0;
}
.rec-img {
  min-width: 52px;
  height: 48px;
  margin: 0 auto;
  background-position: top center;
  background-size: contain;
  background-repeat: no-repeat;
}
.rec-pw-1 {
  background-image: url(../img/recommendation-icons/change-password.svg);
}
.rec-pw-2 {
  background-image: url(../img/recommendation-icons/update-passwords.svg);
}
.rec-pw-3 {
  background-image: url(../img/recommendation-icons/store-safe-place.svg);
}
.rec-pw-4 {
  background-image: url(../img/recommendation-icons/set-2FA.svg);
}
.rec-ssn {
  background-image: url(../img/recommendation-icons/review-credit.svg);
}
.rec-bank-acc {
  background-image: url(../img/recommendation-icons/monitor-bank.svg);
}
.rec-cc {
  background-image: url(../img/recommendation-icons/monitor-credit-cards.svg);
}
.rec-ip-non-us {
  background-image: url(../img/recommendation-icons/use-mask-location-service.svg);
}
.rec-ip-us {
  background-image: url(../img/recommendation-icons/use-mask-IP-service.svg);
}
.rec-hist-pw {
  background-image: url(../img/recommendation-icons/change-password.svg);
}
.rec-sec-qa {
  background-image: url(../img/recommendation-icons/unique-answers.svg);
}
.rec-phone-num {
  background-image: url(../img/recommendation-icons/avoid-sharing-phone.svg);
}
.rec-dob {
  background-image: url(../img/recommendation-icons/strengthen-pin-security.svg);
}
.rec-pins {
  background-image: url(../img/recommendation-icons/strengthen-pin-security.svg);
}
.rec-address {
  background-image: url(../img/recommendation-icons/avoid-address.svg);
}
.rec-gen-1 {
  background-image: url(../img/recommendation-icons/unique-strong-pwds.svg);
}
.rec-gen-2 {
  background-image: url(../img/recommendation-icons/store-safe-place.svg);
}
.rec-gen-3 {
  background-image: url(../img/recommendation-icons/avoid-personal-info.svg);
}
.rec-gen-4 {
  background-image: url(../img/recommendation-icons/update-regularly.svg);
}
.rec-email {
  background-image: url(../img/recommendation-icons/masked-email.svg);
}
.overflow-recs {
  visibility: visible;
  transition: all 0.3s ease;
}
button.fade-out {
  opacity: 0;
  padding-top: 0;
  padding-bottom: 0;
  min-height: 0;
  border: none;
  font-size: 0;
  visibility: hidden;
  transition: all 0.2s ease;
}
.affected-email {
  max-width: 260px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block !important;
  margin: 0;
  align-self: center;
}
.affected-email-notification {
  border-radius: 2px;
  background-color: #ffffd1;
  color: #89201f;
  font-size: 14px;
  margin: 60px auto;
}
.affected-email-message {
  padding: 12px;
  margin: 0;
  vertical-align: middle;
  display: inline-block;
}
.resolve-breaches-wrapper {
  background-color: #ffffd1;
  border-radius: 8px;
}
.affected-email-message::before {
  content: "";
  height: 20px;
  width: 20px;
  display: inline-block;
  background-image: url(../img/svg/notification.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 10px;
  vertical-align: middle;
}
.blue-link.what-to-do-next {
  margin-left: 4px;
}
.resolve-headline {
  padding: 24px 24px 12px;
  color: var(--purple7);
  font-size: 24px;
  margin: 0 auto;
}
.resolution-message {
  color: var(--grey8);
  margin: 0;
}
.affected-emails-list-wrapper {
  padding: 24px 32px;
  line-height: 1.5;
  position: relative;
}
.affected-emails-list-wrapper::before {
  background: var(--monitor-gradient);
  height: 4px;
  width: 100%;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
.resolution-message span {
  font-style: italic;
}
.affected-emails-list {
  max-width: 588px;
  margin: auto;
}
.affected-email-list-item {
  padding: 30px 40px;
  border-bottom: 1px solid rgb(0 0 0 / 0.2);
  color: var(--ink);
}
.affected-email-list-item:last-of-type {
  border-bottom: 1px solid rgb(0 0 0 / 0);
}
.resolve-undo {
  margin-top: 4px;
  display: block;
}
.resolve-button {
  margin-left: 8px;
  position: relative;
  transition: all 0.3s ease !important;
  max-width: 200px !important;
}
.resolve-button::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  display: block;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 30px;
  opacity: 0;
  transition: all 0.5s ease !important;
}
.resolve-button.btn-blue-primary::after {
  background-image: url(../img/svg/new-loader.svg);
}
.resolve-button.btn-ghost::after {
  background-image: url(../img/svg/loader-dark.svg);
}
.resolve-button.btn-ghost.loading {
  color: rgb(0 0 0 / 0.1);
}
.resolve-button.btn-ghost.loading span {
  color: rgb(0 96 223 / 0.102);
}
.resolve-button.btn-blue-primary.loading {
  color: rgb(255 255 255 / 0.1);
  transition: all 0.3s ease;
}
.resolve-button.loading::after {
  opacity: 1;
}
.breach-resolution-modal {
  padding: var(--padding);
  height: 100vh;
  width: 100vw;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgb(255 255 255 / 0);
  z-index: 1000;
  display: none;
  visibility: hidden;
  transition: all 0.3s ease;
}
.breach-resolution-modal.modal-loading {
  background-color: rgb(255 255 255 / 0.1);
  display: flex;
  visibility: visible;
  transition: all 0.3s ease;
}
.breach-resolution-modal.modal-open {
  background-color: rgb(255 255 255 / 1);
  transition: all 0.3s ease;
}
.confirmation-modal-wrapper {
  position: relative;
  padding: 60px var(--padding);
  border-radius: 8px;
  margin: auto;
  opacity: 0;
  transition: all 0.2s ease;
}
.modal-open .confirmation-modal-wrapper {
  opacity: 1;
  transition: opacity 0.2s ease;
}
.modal-content {
  max-width: 350px;
  width: 100%;
  margin: auto;
}
.modal-headline {
  color: var(--purple7);
  font-size: 24px;
  line-height: 1.3;
}
.overlay-resolved-first-breach::before {
  background-image: url(../img/svg/resolution-overlays/resolved-first-breach.svg);
}
.overlay-take-that-hackers::before {
  background-image: url(../img/svg/resolution-overlays/take-that-hackers.svg);
}
.overlay-another-breach-resolved::before {
  background-image: url(../img/svg/resolution-overlays/another-breach-resolved.svg);
}
.overlay-marked-as-resolved::before {
  background-image: url(../img/svg/resolution-overlays/marked-as-resolved.svg);
}
.modal-headline::before {
  height: 200px;
  width: auto;
  margin: 0 auto 20px;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  content: "";
}
.modal-progress-message {
  line-height: 1.5;
  margin: 0 auto 24px;
}
.go-to-dash,
.modal-content .progress-header {
  margin: 0 auto 32px;
}
.blue-link.return-to-breach-details {
  margin: 0 auto;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 1px solid rgb(2 80 187 / 0);
  transition: all 0.3s ease;
}
.blue-link.return-to-breach-details:hover,
.blue-link.return-to-breach-details:focus {
  text-decoration: none;
  border-bottom-color: var(--blue4);
  transition: all 0.3s ease;
}
.close-modal-btn {
  position: absolute;
  top: 0;
  right: 0;
  height: 24px;
  width: 24px;
  border: none;
  background-image: url(../img/x-close-gray.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 50%;
}
@media screen and (max-width: 800px) {
  .bg-split .mw-700 {
    padding: 0 24px;
  }
  .modal-headline::before {
    height: 200px;
  }
  .confirmation-modal-wrapper {
    height: 100%;
  }
  .affected-email-notification {
    margin: 120px auto 60px;
  }
  .affected-email-list-item {
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (max-width: 600px) {
  .affected-email {
    margin-bottom: 12px;
    text-align: center;
    white-space: wrap;
    word-break: break-all;
    max-width: 100%;
  }
  .modal-headline::before {
    height: 150px;
  }
  .breach-recommendations {
    text-align: center;
    max-width: 400px;
  }
  .rec-img {
    height: 52px;
    width: 100%;
    margin: 0 auto 20px;
    background-position: bottom center;
  }
  .rec-pw-1,
  .rec-pw-2,
  .rec-gen-4,
  .rec-hist-pw,
  .rec-ip-non-us,
  .rec-ip-us,
  .rec-sec-qa {
    height: 40px;
  }
  .modal-content .progress-header {
    display: inline-block;
  }
}
@media screen and (max-width: 500px) {
  .affected-email-list-item {
    flex-direction: column;
  }
}

/* public/css/partials/breach-stats.css */
.monitoredEmails {
  background-color: var(--violet3);
}
.numBreaches {
  background-color: var(--violet4);
}
.passwords {
  background-color: var(--violet5);
}
.breach-stat-number,
.stat-headline {
  color: rgb(255 255 255 / 1);
  justify-content: center;
  width: 100%;
}
.breach-stat-number {
  font-size: 56px;
  line-height: 1.14;
  min-width: 60px;
}
.breach-stat-row {
  padding: 32px var(--padding);
  max-width: 31.25%;
  border-radius: 8px;
}
.stat-row-title-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}
.stat-headline {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.33;
  text-align: center;
}
.dash-stats {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: calc(var(--padding) * 4);
}
.resolved-breach-indicator,
.progress-header::before {
  height: 24px;
  min-width: 24px;
  display: inline-block;
  vertical-align: middle;
  background-color: #20c3a2;
  background-image: url(../img/svg/white-check.svg);
  background-repeat: no-repeat;
  background-position: center center;
  content: "";
  border-radius: 50%;
}
.progress-header::before {
  margin-right: 8px;
}
.progress-bar-wrapper {
  margin-bottom: calc(var(--padding) * 4);
}
.progress-bar {
  -webkit-appearance: none;
  background: var(--monitor-gradient);
  color: #fff;
  border-radius: 4px;
  height: 24px;
  overflow: hidden;
  margin-top: 8px;
  margin-bottom: 8px;
  width: 100%;
  direction: rtl;
  padding: 0;
  border: none;
  box-shadow: 0 0 0 1px var(--grey3);
}
.progress-bar::-ms-fill {
  border-color: currentcolor;
}
.progress-status-message {
  color: var(--purple7);
  margin: auto;
  max-width: 640px;
  align-items: center;
}
.progress-message-subhead {
  margin-bottom: 8px;
}
.progress-message-body {
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.5;
}
.breach-resolution-img {
  height: 115px;
  width: 120px;
  min-width: 120px;
  margin-right: 20px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
.breach-resolution-intro {
  background-image: url(../img/svg/breach-resolution-intro.svg);
}
.breach-resolution-complete {
  background-image: url(../img/svg/breach-resolution-complete.svg);
}
progress[value]::-webkit-progress-bar {
  background: transparent;
}
.progress-bar::-moz-progress-bar {
  background-color: rgb(255 255 255 / 1);
  transition: all 0.5s ease;
}
progress.progress-bar::-webkit-progress-value {
  background-color: rgb(255 255 255 / 1);
  box-shadow: 30px -9px 0 9px white;
  transition: all 0.5s ease;
}
.percent-complete {
  align-self: center;
}
@media screen and (max-width: 800px) {
  .dash-stats {
    flex-direction: column;
  }
  .breach-stat-row {
    max-width: 100%;
    padding: 16px;
    margin-bottom: 16px;
  }
  .stat-row-title-wrap {
    flex-direction: row;
    align-items: center;
  }
  .stat-headline {
    text-align: left;
  }
  .breach-stat-number {
    width: auto;
    font-size: 30px;
  }
}
@media screen and (max-width: 600px) {
  .img-placeholder {
    margin-bottom: 20px;
  }
  .progress-status-message {
    flex-direction: column;
    text-align: center;
  }
}
@media screen and (max-width: 550px) {
  .percent-complete {
    display: none;
  }
}

/* public/css/partials/dashboard.css */
.welcome-back {
  font-size: 18px;
  line-height: 1.5;
  color: var(--grey8);
  margin: auto;
}
.dashboard.clear-header {
  padding-top: calc(var(--header-height) + 80px);
  position: relative;
  background-color: rgb(255 255 255 / 1);
}
h2.pref-headline {
  font-size: 32px;
  margin-bottom: 0;
}
h3.pref-section-headline {
  margin: 60px 0 32px;
}
h3.pref-section-headline.remove {
  margin-bottom: 12px;
}
h2.pref-headline.breach-summary {
  margin-top: calc(var(--padding) * 5);
  margin-bottom: 24px;
}
.dashboard-summary {
  position: relative;
}
.dashboard-summary::before {
  content: "";
  background: #eee url(../img/svg/scan-res-bg.svg) top center / cover;
  position: absolute;
  width: 100vw;
  height: calc(100% + var(--header-height));
  top: calc(-1 * var(--header-height));
  left: calc(50% - 50vw);
  z-index: -1;
}
.pref {
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-self: center;
}
.pref .email-add {
  margin-bottom: 0;
}
.pref-remove {
  margin-bottom: 60px;
}
.preferences {
  background-size: auto;
  padding-bottom: 40px;
}
.email-pref {
  font-size: 14px;
  margin: 40px 0 12px;
  font-weight: 600;
  color: #686869;
}
.email-pref.fxa-primary-email {
  margin-top: 0;
}
.email-verification-required {
  color: var(--alert-red);
  display: flex;
  align-items: center;
}
.email-verification-required::before {
  content: "";
  background-image: url(../img/svg/data-compromised.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  margin-right: 8px;
  width: 12px;
  height: 12px;
  display: inline-block;
}
.trash-can {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  pointer-events: none;
  margin: auto;
}
.link-header-wrapper {
  margin: 80px 0 60px;
}
.email-cards {
  width: 100%;
  margin-bottom: 80px;
}
span.dashboard-email-sent {
  background-color: var(--green1);
  color: #084036;
  padding: 0.5rem 0.75rem;
  margin: calc(var(--padding) + 0.5rem) auto 0.5rem auto;
  font-size: 14px;
}
p.confirm-submit {
  color: #686869;
  font-size: 14px;
  margin: 0 auto;
  letter-spacing: 0.01em;
}
span.email-confirmed {
  font-size: 18px;
  margin: 0 auto 24px;
  line-height: 1.5;
}
.dashboard-add-email {
  padding: var(--padding) var(--padding) calc(var(--padding) * 3) var(--padding);
}
.pref input.email-add-submit {
  font-size: 14px;
}
.dash-take-back-wrapper {
  padding: 60px 0;
  width: 100vw;
}
@media screen and (max-width: 900px) {
  .pref {
    padding: 0 24px;
  }
}
@media screen and (max-width: 800px) {
  .email-cards {
    margin-bottom: 40px;
  }
  .link-header-wrapper {
    margin-bottom: 24px;
  }
  .email-cards .e-info {
    flex-direction: column;
    align-items: flex-start;
  }
  .pref .email-add {
    margin-bottom: 8px;
  }
}
@media screen and (max-width: 600px) {
  h2.pref-headline {
    font-size: 2rem;
  }
  .welcome-back {
    font-size: 14px;
  }
  .pref {
    padding-left: 24px;
    padding-right: 24px;
  }
}

/* public/css/partials/email-card.css */
.email-card.preferences .e-info {
  border-bottom: none;
  padding-bottom: 0;
  flex-direction: column;
  width: auto;
}
.e-info-content {
  flex-wrap: wrap;
  flex: 1;
}
.preferences .e-info-content {
  flex-direction: column;
}
.email-card {
  width: 100%;
}
.email-card.breaches-dash {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 60px;
}
.email-card.breaches-dash:last-of-type,
.breaches-dash.zero-breaches,
.breaches-dash.zero-unresolved-breaches {
  margin-bottom: 32px;
}
.email-card.preferences {
  padding: 20px;
  background-color: rgb(255 255 255 / 1);
  border: 1px solid #e8e8e8;
  margin: 0 0 16px;
  border-radius: 4px;
}
.email-card.primary-email-card.preferences {
  margin-bottom: 0;
}
.e-info {
  display: inline-flex;
  align-items: center;
  flex-flow: row wrap;
  border-bottom: 2px solid #e8e8e8;
  padding-bottom: 12px;
  max-width: 100%;
  width: 100%;
}
.preferences .e-info {
  align-items: flex-start;
  max-width: 90%;
}
.preferences .e-num-breaches {
  margin-top: 4px;
  font-size: 14px;
  color: var(--grey8);
}
.preferences .e-address {
  font-size: 16px;
}
.preferences .e-address::after {
  display: none;
}
.e-address {
  font-size: 20px;
  font-weight: 600;
  color: var(--purple6);
  max-width: 100%;
  overflow-wrap: break-word;
}
.e-address span.light {
  font-weight: 300;
  color: var(--grey6);
  font-size: 0.75rem;
}
.e-num-breaches {
  font-size: 20px;
  display: block;
  color: var(--purple6);
}
.e-address::after {
  content: "-";
  margin: auto 6px;
  font-weight: 400;
}
.breach-title-wrapper.ec {
  border-bottom: 1px solid var(--border-color);
}
.e-breach-list {
  display: flex;
  justify-content: space-between;
  flex-flow: row wrap;
  visibility: hidden;
  margin: auto;
  max-width: 780px;
  opacity: 0;
  max-height: 0;
  transition: all 0.2s ease;
}
.e-breach-list .breach-card {
  max-height: 0;
  transition: all 0.2s ease;
}
.active .e-breach-list .breach-card {
  max-height: 10000px;
  transition: all 0.2s ease;
}
.active .show-additional-breaches.hide .breach-card {
  display: none;
  max-height: 0;
}
.show-remaining-breaches-wrapper {
  width: 100%;
}
.show-remaining-breaches.btn-violet-secondary {
  margin: 16px auto auto;
}
.show-remaining-breaches.hide {
  display: none;
}
.email-card.active .e-breach-list {
  visibility: visible;
  opacity: 1;
  max-height: 1000000px;
  padding-top: 16px;
  transition: all 0.3s ease;
}
.email-card.zero-unresolved-breaches .e-breach-list,
.email-card.active .hide-additional-breaches.hide .breach-card,
.email-card.inactive .hide-additional-breaches.hide .breach-card {
  display: none;
}
.breach-card.resolved-breach-card {
  visibility: hidden;
  display: none;
}
.email-card.zero-unresolved-breaches.show-resolved-breach-cards.active .e-breach-list,
.show-resolved-breach-cards .breach-card.resolved-breach-card {
  visibility: visible;
  opacity: 0.6;
  display: flex !important;
  transition: all 0.25s ease;
}
.hide-resolved-message,
.show-resolved-breach-cards span.show-resolved-message {
  visibility: hidden;
  display: none;
}
.show-resolved-breach-cards span.hide-resolved-message {
  display: flex;
  visibility: visible;
}
button.toggle-resolved-breaches {
  margin: auto 0 auto auto;
  border: 0;
  font-size: 14px;
  color: #42435a;
  pointer-events: all;
}
.e-toggle-info-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
  position: relative;
}
.svg-wrap {
  border-width: 0;
  border-radius: 0.25rem;
  padding: 0.5rem 0 0;
  pointer-events: all;
  text-align: left;
}
.remove-email .x-close {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  pointer-events: none;
}
.remove-email .x-close path {
  fill: var(--ink);
}
.button-resend-wrapper {
  margin-top: 0.5rem;
  align-items: center;
}
.change-primary-email,
.remove-fxm,
.resend-email {
  pointer-events: all;
  transition: all 0.15s ease;
}
.resend-email,
.change-primary-email {
  font-size: 14px;
}
.resend-email {
  min-height: 0;
  text-align: left;
  padding: 0;
  border-width: 0;
  transition: opacity 0.15s ease-in-out;
}
.sending {
  margin-left: 16px;
  font-size: 12px;
  background: #3fe1b0;
  color: rgb(255 255 255 / 1);
  padding: 2px 4px;
  border-radius: 4px;
  font-weight: 600;
}
.change-primary-email:hover,
.change-primary-email:focus,
.toggle.svg-wrap:focus,
.toggle.svg-wrap:hover,
.resend-email:hover,
.resend-email:focus {
  outline: none;
  border: none;
  text-decoration: underline;
  box-shadow: none;
  text-align: left;
  pointer-events: all;
}
form.remove-email:hover svg path {
  fill: #cf434f;
  transition: fill 0.15s ease-in-out;
}
.toggle {
  height: 100%;
  transition: all 0.1s ease;
  width: 100%;
}
.show-email-breaches.toggle {
  pointer-events: none;
  display: none;
  right: 0;
  left: 0;
}
svg.toggle-down {
  border-radius: 50%;
  margin: auto;
  right: 4px;
  transition: all 0.2s ease;
  pointer-events: none;
}
.email-card .toggle,
svg.toggle-down {
  position: absolute;
  top: 0;
  bottom: 0;
}
svg.toggle-down path {
  fill: var(--grey6);
}
.email-card.active .toggle-down {
  transform: rotate(180deg);
  transition: all 0.1s ease;
}
form.remove-email {
  pointer-events: all;
  padding: 0;
}
form.remove-email,
input.remove-email-submit {
  border: none !important;
  border-radius: 50% !important;
  height: 1.5rem !important;
  width: 1.5rem !important;
  position: relative;
  pointer-events: all;
  cursor: pointer;
}
form.remove-email svg path {
  fill: var(--alert-red);
  transition: fill 0.15s ease-in-out;
}
input.remove-email-submit {
  background-color: transparent !important;
}
@media screen and (max-width: 1100px) {
  .e-address {
    font-size: 16px;
  }
  .e-num-breaches {
    font-size: 14px;
  }
}
@media screen and (max-width: 800px) {
  .e-info-content {
    flex-direction: column;
    width: 100%;
  }
  .email-card {
    padding: 20px;
    background-color: rgb(255 255 255 / 1);
    border-radius: 8px;
    border: 1px solid #e8e8e8;
  }
  .email-card.breaches-dash:last-of-type,
  .email-card.breaches-dash {
    margin: 8px 0;
    padding: 20px;
  }
  .dash-attribution {
    margin-top: 8px;
  }
  .e-info {
    border-bottom: none;
    padding-bottom: 0;
  }
  .breaches-dash:not(.zero-breaches) .e-address {
    max-width: 85%;
  }
  .e-num-breaches {
    margin-top: 4px;
    color: var(--grey8);
  }
  .breach-card.resolved-breach-card {
    display: flex;
    visibility: visible;
  }
  .toggle-resolved-breaches,
  .ec.breach-card,
  .active .show-additional-breaches.hide .ec.breach-card,
  .active .show-remaining-breaches.hide,
  .e-address::after,
  .show-remaining-breaches {
    display: none;
  }
  .email-card.zero-unresolved-breaches .e-breach-list,
  .email-card.zero-unresolved-breaches.active .e-breach-list,
  .active .show-remaining-breaches {
    display: flex;
  }
  .toggle.show-email-breaches {
    pointer-events: all;
    display: flex;
  }
  .ec.breach-card {
    flex: 1 1 100%;
  }
}
@media screen and (max-width: 600px) {
  .e-address,
  .radio-label {
    font-size: 1rem;
  }
  .email-card.new-breaches {
    margin-top: 0;
  }
  .e-num-breaches,
  .resend-email,
  .change-primary-email {
    font-size: 0.85rem;
  }
  .button-resend-wrapper,
  .e-num-breaches {
    margin-top: 0.35rem;
  }
  .change-primary-email {
    width: 100%;
    margin: var(--padding) 0 0 0;
    text-align: center;
  }
  .resend-email:hover {
    background-color: transparent;
  }
}

/* public/css/partials/feature-tip-group.css */
.feature-tip-group {
  min-width: 96%;
  flex-direction: row;
  justify-content: space-between;
}
.gradient-container {
  padding-left: var(--padding);
  padding-right: var(--padding);
}
.gradient-inset {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 0 12px 0 rgb(28 28 29 / 0.4);
  padding: calc(var(--padding) * 2) 0;
  background-color: rgb(255 255 255 / 0.95);
}
.feature-tip-content-wrapper {
  max-width: 320px;
  display: inline-flex;
}
.feature-tip-content {
  flex-direction: column;
}
.feat-img {
  height: 4rem;
  width: 8rem;
  margin: var(--padding) auto;
  transition: all 0.2s ease;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.facebook-notes .feature-tip-content-wrapper:hover .feat-img,
.breach-detail .feature-tip-content-wrapper:hover .feat-img {
  transform: scale(1.1);
  transition: all 0.2s ease-in-out;
}
.feat-img.advice {
  background-image: url(../img/svg/pictogram-advice.svg);
}
.feat-img.email {
  background-image: url(../img/svg/pictogram-email.svg);
}
.feat-img.alert {
  background-image: url(../img/svg/pictogram-alert.svg);
}
.feature-tip-headline {
  margin: auto auto var(--padding) auto;
  font-size: 32px;
  line-height: 1.13;
  color: #393473;
}
.feature-tip-link,
.feature-subhead {
  line-height: 1.5;
  margin-top: 0;
}
.feature-tip-link {
  margin-right: 24px;
}
.feature-title {
  color: var(--ink);
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 24px;
}
.feature-subhead {
  font-size: 18px;
  font-weight: 300;
  color: #42425a;
}
.cta2 {
  margin-right: 24px;
}
.facebook-notes .feature-tip-group,
.breach-detail .feature-tip-group {
  margin-top: 40px;
  flex-direction: column !important;
  align-items: center !important;
}
.facebook-notes .feature-tip-content-wrapper,
.breach-detail .feature-tip-content-wrapper {
  flex-direction: row;
  align-items: flex-start;
  margin: 0 auto 40px 0;
  max-width: 100%;
}
.facebook-notes .feature-tip-content,
.breach-detail .feature-tip-content {
  text-align: left;
  margin-left: 28px;
  max-width: 100%;
}
.facebook-notes .feat-img,
.breach-detail .feat-img {
  margin: 0;
  height: 56px;
  max-width: 56px;
  min-width: 56px;
}
.facebook-notes .feature-title,
.breach-detail .feature-title {
  font-size: 18px;
}
.facebook-notes .feature-subhead,
.breach-detail .feature-subhead {
  margin-bottom: 0.5rem;
  font-size: 16px;
}
.gradient-container .feature-button .feature-tip-content {
  margin: auto;
}
@media screen and (max-width: 1100px) {
  .feature-tip-headline {
    max-width: 600px;
    word-break: break-word;
  }
  .feature-tip-group {
    flex-direction: column;
  }
  .feature-tip-content-wrapper {
    flex-direction: row;
    align-items: flex-start;
    max-width: 600px;
    margin: var(--padding) auto;
  }
  .feature-tip-content {
    text-align: left;
    max-width: 350px;
    margin-left: var(--padding);
  }
  .feat-img {
    width: 7rem;
    margin: 0 auto;
  }
}
@media screen and (max-width: 800px) {
  .feature-tip-content-wrapper {
    margin-bottom: var(--padding);
    flex-direction: column;
  }
  .feature-tip-group {
    min-width: 0;
  }
  .feature-tip-content {
    text-align: center;
    margin: auto;
  }
  .feat-img {
    margin: 1rem auto;
  }
}
@media screen and (max-width: 600px) {
  .facebook-notes .feature-tip-content,
  .breach-detail .feature-tip-content {
    margin: auto;
    text-align: center;
  }
  .recommendation-cta {
    display: block;
    margin-top: 12px;
  }
  .facebook-notes .feature-tip-content-wrapper,
  .breach-detail .feature-tip-content-wrapper {
    margin: 0 auto 60px;
    text-align: center;
    flex-direction: column;
  }
  .overflow-recs .feature-tip-content-wrapper:last-of-type {
    margin-bottom: 20px;
  }
}

/* public/css/partials/footer-about.css */
.how-fxm-headline {
  margin-top: 0;
}
.how-fxm-works {
  flex-direction: row;
}
.about-fxm {
  color: white;
  background: var(--ink) url(../img/landing/background-noodle-right.svg) no-repeat top right / auto 100%;
}
.fx-monitor-svg {
  background-image: url(../img/svg/fx-monitor.svg);
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: contain;
  width: 3rem;
  height: 6rem;
  margin-bottom: var(--padding);
}
.fxm-card-wrap {
  flex: 1;
  padding: var(--padding);
  margin: 0 auto var(--padding) auto;
}
.about-cta.btn-transparent.btn-small {
  margin: 0 auto;
}
@media screen and (max-width: 1100px) {
  .about-row {
    justify-content: center;
  }
  .about-row .content-wrap {
    flex: 1 1 66.6667%;
    max-width: 66.6667%;
    margin: auto;
  }
  .how-fxm-works {
    flex-direction: column;
  }
}
@media screen and (max-width: 800px) {
  .about-row .content-wrap {
    max-width: 100%;
  }
}

/* public/css/partials/footer.css */
footer {
  width: 100%;
  margin: auto auto 0;
  background-color: var(--ink-dark);
  padding-top: 32px;
  padding-bottom: 32px;
}
.footer-link {
  color: rgb(255 255 255 / 1);
  font-size: 16px;
  font-weight: 600;
}
.footer-link-wrapper {
  margin-left: 60px;
}
.footer-link-wrapper.moz-link {
  margin: auto auto auto 0;
}
svg.mozilla-logo {
  min-width: 124px;
  max-width: 124px;
}
@media screen and (max-width: 990px) {
  .footer-link-wrapper {
    margin-left: 20px;
  }
}
@media screen and (max-width: 860px) {
  footer ul.row-full-width {
    flex-direction: column;
  }
  .footer-link-wrapper,
  .footer-link {
    width: 100%;
    margin-left: 0;
  }
  .footer-link {
    padding: 0.75rem 0;
  }
  .mozilla-logo-wrapper {
    padding: 0;
    margin-bottom: 0.5rem;
  }
}

/* public/css/partials/forms.css */
form,
.form-wrap {
  width: 100%;
}
input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px rgb(255 255 255 / 0) inset;
}
.form-group.loading-data .loader {
  display: block;
  opacity: 0.58;
  width: 25px;
  height: auto;
  visibility: visible;
}
.form-desc {
  max-width: 260px;
  z-index: 1;
  font-size: 12px;
  line-height: 1.5;
  margin: 12px auto;
}
input[type=submit],
input[type=email] {
  height: 48px;
  width: 100%;
  border-style: solid;
  border-width: 1px;
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 4px;
}
.go-to-dash:focus,
.close-modal-btn:focus,
input[type=text]:focus,
input[type=radio]:focus ~ .checkmark,
input:focus,
.radio-button-group:focus {
  border: 1px solid rgb(40 97 205);
  box-shadow: 0 0 0 1px rgb(63 97 217), 0 0 0 4px rgb(63 97 217 / 0.3);
  outline: none;
}
.email-scan {
  flex-direction: column;
  max-width: 320px;
  margin: auto;
}
.input-group,
.input-group-button {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
}
.form-group .error-message {
  display: block;
  background: rgb(215 0 34 / 1);
  border-radius: 3px;
  color: rgb(255 255 255 / 1);
  padding: 5px 12px;
  position: absolute;
  bottom: -22px;
  left: -1px;
  z-index: 1;
  font-size: 13px;
  opacity: 0;
  pointer-events: none;
}
.form-group .error-message::before {
  opacity: 0;
  background: rgb(215 0 34 / 1);
  top: -7px;
  content: "";
  height: 16px;
  position: absolute;
  text-indent: -999px;
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  white-space: nowrap;
  width: 16px;
  z-index: -1;
}
.form-group.invalid .error-message,
.form-group.invalid .error-message::before {
  opacity: 1;
}
.form-group.invalid input[type=email] {
  border: 1px solid var(--red50);
  box-shadow: 0 0 0 1px rgb(255 0 55 / 0.514), 0 0 0 4px rgb(255 0 55 / 0.3);
}
.loader {
  z-index: 1;
  position: absolute;
  visibility: hidden;
  margin: auto;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  opacity: 1;
  pointer-events: none;
}
input::placeholder {
  color: #737373;
}
.form-group.loading-data .button,
.form-group.loading-data input::placeholder,
.form-group.loading-data input {
  color: rgb(0 0 0 / 0) !important;
}
input[type=email] {
  font-size: 16px;
  text-indent: var(--padding);
  background-color: rgb(255 255 255 / 1);
  color: var(--ink);
  border: 1px solid var(--grey90a3);
  margin-bottom: 12px;
  transition: all 0.1s ease-out;
}
input[type=submit] {
  font-size: 16px;
  border-width: 2px;
  background-color: var(--blue3);
  color: rgb(255 255 255 / 1);
  font-weight: 600;
  border-color: var(--blue3);
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: all 0.15s ease;
}
input[type=submit]:hover {
  background-color: var(--blue4);
  border-color: var(--blue4);
  transition: all 0.15s ease;
}
input[type=submit]:active {
  background-color: var(--blue5);
  border-color: var(--blue5);
  transition: all 0.15s ease;
}
form.invalid input[type=submit]:focus {
  border: 2px solid var(--red50);
  box-shadow: 0 0 0 1px rgb(255 0 55 / 0.514), 0 0 0 4px rgb(255 0 55 / 0.3);
}
input.email-add {
  color: var(--ink);
  border-color: var(--grey90a3);
  background-color: rgb(255 255 255 / 1);
}
input.unsub {
  padding: 0;
  cursor: pointer;
}
input[type=radio] {
  opacity: 0;
}
.checkmark {
  background-color: rgb(255 255 255 / 1);
  height: 24px;
  width: 24px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  margin: auto;
  border: 1px solid var(--grey90a3);
  transition: background-color 0.15s ease-in-out;
}
.radio-container:hover .checkmark::after {
  opacity: 1;
  background-color: rgb(12 12 13 / 0.04);
  transition: background-color 0.15s ease-in-out;
}
input[type=radio] ~ .checkmark::after {
  position: absolute;
  content: "";
  display: block;
  height: 12px;
  width: 12px;
  opacity: 0;
  flex: 1;
  border-radius: 100%;
  background-color: rgb(245 245 245 / 0);
  pointer-events: none;
  transition: all 0.2s ease;
}
input[type=radio]:checked ~ .checkmark::after {
  opacity: 1;
  background-color: var(--violet3);
  transition: all 0.4s ease;
}
input[type=radio]:checked:hover ~ .checkmark::after {
  opacity: 1;
  background-color: var(--violet3);
  transition: all 0.2s ease;
}
input[type=radio]:focus ~ .checkmark {
  border: 1px solid var(--grey90a3);
  box-shadow: 0 0 0 1px rgb(12 12 13 / 0), 0 0 0 3px rgb(12 12 13 / 0.05);
}
.add-new-email-form {
  display: flex;
}
.add-new-email-form .input-group {
  width: 100%;
  margin-right: 1rem;
}
.add-new-email-form .input-group-button {
  width: auto;
  max-width: auto;
}
.add-new-email-form input::placeholder {
  color: #737373;
}
.dashboard-add-email .add-new-email-form {
  flex-direction: column;
  max-width: 320px;
  margin: auto;
}
.radio-container input[type=radio] {
  width: 0;
  margin: 0;
}
.radio-container {
  margin-bottom: 24px;
  display: flex;
}
.radio-container:last-of-type {
  margin-bottom: 0;
}
.radio-label {
  padding-left: 32px;
  font-weight: 400;
  color: var(--grey8);
  font-size: 16px;
  line-height: 1.5;
  padding-top: 2px;
}
.create-fxa-checkbox {
  display: none;
}
.create-fxa-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
  margin: 4px auto 16px;
}
.create-fxa-wrapper p {
  text-align: left;
  color: var(--grey3);
  margin: 0;
  padding: 0 0 0 12px;
  font-size: 14px;
  line-height: 18px;
}
.create-fxa-checkbox-wrapper {
  position: relative;
}
.create-fxa-checkbox-input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.create-fxa-checkbox-checkmark:hover {
  background: #cfcfd8;
}
.create-fxa-checkbox-checkmark {
  position: relative;
  height: 24px;
  width: 24px;
  background-color: rgb(255 255 255 / 1);
  border-radius: 4px;
  cursor: pointer;
  display: block;
}
.create-fxa-checkbox-checkmark::after {
  content: "";
  width: 100%;
  height: 100%;
  display: none;
  left: 0;
  top: 0;
  border-radius: 4px;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-image: url(../img/svg/purple-check.svg);
}
.create-fxa-checkbox-input:checked ~ .create-fxa-checkbox-checkmark::after {
  display: block;
}
@media screen and (max-width: 800px) {
  button.internal-link,
  input.transparent-button,
  input[type=submit],
  input::placeholder {
    font-size: 15px;
  }
  .radio-label {
    font-size: 0.9rem;
  }
  .add-new-email-form {
    flex-direction: column;
  }
}

/* public/css/partials/fx-bento.css */
firefox-apps {
  --background-color: rgb(249 249 250);
  --bento-hover-bg-color: rgb(97 90 115);
  --bento-click-bg-color: rgb(142 137 154);
  --bento-button-height: 25px;
  --z-index: 10000;
  --app-icon-height: 16px;
  --text-color: rgb(32 18 58);
  --bento-padding: 24px;
  display: flex;
  margin: 0 32px;
  position: relative;
  text-align: center;
  z-index: var(--z-index);
  font-size: 12px;
  width: var(--bento-button-height);
  min-height: var(--bento-button-height);
  color: var(--text-color);
  background: url(../img/fx-bento-sprites.png);
  background-position-x: -215.5px;
  background-position-x: -224px;
  background-size: auto var(--bento-button-height);
  border-radius: 2px;
  box-shadow: 0 0 0 4px rgb(255 255 255 / 0);
}
firefox-apps.fx-bento-open,
firefox-apps:hover {
  box-shadow: 0 0 0 4px var(--bento-hover-bg-color);
  background-color: var(--bento-hover-bg-color);
}
firefox-apps:focus,
firefox-apps:focus-within {
  box-shadow: 0 0 0 4px var(--bento-hover-bg-color);
  background-color: var(--bento-hover-bg-color);
}
firefox-apps:active {
  box-shadow: 0 0 0 4px var(--bento-click-bg-color);
  background-color: var(--bento-click-bg-color);
}
.fx-bento-hide-vpn .moz-vpn {
  display: none;
}
.fx-bento-hide-overflow {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}
.fx-bento-content-wrapper {
  position: absolute;
  top: calc(var(--bento-button-height) + 10px);
  min-width: 260px;
  z-index: calc(var(--z-index) + 1);
  box-shadow: 0 7px 12px -3px rgb(28 28 29 / 0.502);
  right: -18px;
  background: var(--background-color);
  border-radius: 8px;
  transform: translateY(0);
  display: none;
  border: 1px solid transparent;
}
.fx-bento-content {
  display: flex;
  flex-direction: column;
  padding: var(--bento-padding) 0 0 0;
}
.fx-bento-enable-scrolling {
  overflow-y: scroll;
}
.active .fx-bento-content-wrapper {
  display: block;
  height: auto;
  transform: translateY(12px);
  animation: fxBentoAppear ease 0.3s;
  -webkit-animation: fxbentoappear ease 0.3s;
  -moz-animation: fxbentoappear ease 0.3s;
}
.active .fx-bento-content-wrapper::after {
  display: block;
  content: "";
  height: 12px;
  width: 12px;
  position: absolute;
  top: -7px;
  right: 23px;
  margin: auto;
  transform: rotate(45deg);
  border-top-left-radius: 1px;
  background-color: rgb(249 249 250);
  border-top: 1px solid transparent;
  border-left: 1px solid transparent;
  z-index: -1;
}
.fx-bento-logo {
  background: url(../img/fx-bento-sprites.png);
  background-repeat: no-repeat;
  background-size: cover;
  height: 40px;
  width: 40px;
  margin: auto auto 8px;
  background-position-x: -90px;
}
.fx-bento-headline {
  font-size: 16px;
  font-family: Metropolis, sans-serif;
  line-height: 20px;
  font-weight: 600;
  margin-right: auto;
  margin-left: auto;
  max-width: 270px;
  display: block;
  padding-left: 20px;
  padding-right: 20px;
}
.fx-bento-bottom-link {
  color: rgb(0 96 223);
  text-decoration: underline;
  padding: 10px var(--bento-padding);
  margin: 14px auto;
  width: 100%;
}
a.fx-bento-app-link {
  background-color: rgb(255 255 255 / 0);
  text-align: left;
}
.fx-bento-app-link-span {
  display: block;
  padding: 10px var(--app-icon-height) 10px calc(var(--app-icon-height) + 32px);
  color: var(--text-color);
  position: relative;
  margin-right: auto;
  margin-left: auto;
  max-width: 410px;
  pointer-events: none;
}
.fx-bento-app-link-span::before {
  display: block;
  position: absolute;
  left: var(--bento-padding);
  top: 0;
  bottom: 0;
  margin: auto;
  height: var(--app-icon-height);
  min-height: var(--app-icon-height);
  width: var(--app-icon-height);
  background: url(../img/fx-bento-sprites.png);
  background-size: auto var(--app-icon-height);
  content: "";
}
.fx-bento-app-link-span.pocket::before {
  background-position-x: -18px;
}
.fx-bento-app-link-span.fx-monitor::before {
  background-position-x: -88px;
}
.fx-bento-app-link-span.fx-mobile::before {
  background-position-x: -104px;
}
.fx-bento-app-link-span.moz-vpn::before {
  background: url(../img/svg/logos/vpn-logo.svg) !important;
  background-position: center !important;
  background-size: var(--app-icon-height) !important;
  background-repeat: no-repeat !important;
}
.fx-bento-link:hover,
.fx-bento-link:focus {
  background-color: rgb(230 230 230);
  opacity: 1 !important;
}
.fx-bento-button {
  width: 100%;
  border: 1px solid transparent;
  pointer-events: all;
}
.fx-bento-button:hover,
.fx-bento-button:focus,
.fx-bento-button:active {
  outline: 0;
  box-shadow: none;
  border: 1px solid transparent;
}
.fx-bento-button:hover::-moz-focus-inner,
.fx-bento-button:focus::-moz-focus-inner {
  border: 0;
  outline: 0;
}
button.fx-bento-mobile-close {
  display: none;
  position: absolute;
  right: var(--app-icon-height);
  top: var(--app-icon-height);
  height: var(--bento-padding);
  min-height: var(--bento-padding);
  width: var(--bento-padding);
  max-width: var(--bento-padding);
  min-width: var(--bento-padding);
  background-color: rgb(55 54 111);
  background-image: url(../img/fx-bento-sprites.png);
  background-size: auto 20px;
  background-repeat: no-repeat;
  background-position-x: -150.5px;
  padding: 0 !important;
  border: none !important;
  border-radius: 50%;
  background-position-y: 2px;
}
.fx-bento-app-link:first-of-type {
  margin-top: var(--app-icon-height);
}
.fx-bento-fade-out {
  opacity: 0;
  transform: translateY(0) !important;
  pointer-events: none !important;
}
a.fx-bento-link,
a.fx-bento-link:hover,
a.fx-bento-link:focus,
.fx-bento-button,
.fx-bento-button:hover,
.fx-bento-button:focus,
.fx-bento-fade-out,
firefox-apps,
firefox-apps:hover,
firefox-apps:focus-within {
  transition: 0.2s ease-in-out;
}
body.hide-bento firefox-apps {
  background: none !important;
  visibility: hidden !important;
  width: 0;
}
body.hide-bento firefox-apps > button {
  visibility: hidden !important;
}
@media screen and (max-width: 900px) {
  firefox-apps {
    margin: 0 var(--bento-padding);
  }
  .fx-bento-button {
    transform: scale(0.9);
  }
}
@media screen and (max-width: 500px) {
  firefox-apps {
    --app-icon-height: var(--bento-padding);
    --mobile-clickable-close-area: 12vh;
    position: inherit;
    margin: 0 var(--app-icon-height);
  }
  button.fx-bento-mobile-close {
    display: block;
  }
  .fx-bento-hide-overflow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    max-height: 100vh;
    overflow-y: scroll;
    overflow-x: scroll;
  }
  .fx-bento-mobile-close::after {
    content: "";
    display: block;
    position: fixed;
    right: 0;
    top: 0;
    left: 0;
    height: var(--mobile-clickable-close-area);
  }
  .fx-bento-content-wrapper {
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    min-height: 100vh;
    border-radius: 0;
    transform: translateY(0) !important;
  }
  .fx-bento-logo {
    height: 48px;
    width: 48px;
    min-height: 48px;
    margin-top: var(--mobile-clickable-close-area);
    background-position-x: -108px;
  }
  .fx-bento-headline {
    font-size: 20px;
    line-height: var(--bento-padding);
    padding-left: 0;
    padding-right: 0;
  }
  .fx-bento-bottom-link {
    margin-bottom: auto;
    margin-top: var(--bento-padding);
  }
  .fx-bento-bottom-link,
  .fx-bento-app-link {
    font-size: 16px;
  }
  .active .fx-bento-content-wrapper {
    transform: translateY(0) !important;
    animation: none !important;
    -webkit-animation: none !important;
  }
  .active .fx-bento-content-wrapper::after {
    display: none;
  }
  a.fx-bento-app-link {
    line-height: 23px;
  }
  .fx-bento-app-link-span {
    max-width: 342px;
    padding-left: calc(var(--app-icon-height) + 40px);
  }
  .fx-bento-app-link-span.pocket::before {
    background-position-x: -26px;
  }
  .fx-bento-app-link-span.fx-monitor::before {
    background-position-x: -132px;
  }
  .fx-bento-app-link-span.fx-mobile::before {
    background-position-x: -157px;
    margin-left: 1px;
  }
}
@keyframes fxbentoappear {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  100% {
    opacity: 1;
    transform: translateY(12px);
  }
}

/* public/css/partials/header.css */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
}
.desktop-menu:hover .active-link::after {
  opacity: 0;
}
.active-link:hover::after {
  opacity: 1;
}
.recruitment-banner,
.csat-banner {
  background-color: var(--violet1);
  padding: 12px 48px;
  text-align: center;
}
.recruitment-banner a {
  color: inherit;
}
.csat-banner p {
  margin: 0;
  font-size: 14px;
}
.csat-banner label {
  margin: 6px 3px 0;
  color: #56198f;
  border-color: #7639af;
  cursor: pointer;
  transition: opacity 0.5s ease-out;
}
.csat-banner[disabled] label,
.csat-banner[hidden] label {
  pointer-events: none;
  cursor: default;
  opacity: 0.3;
}
.csat-banner label.selected {
  opacity: 1;
  background-color: #d89eff;
}
.csat-banner label input {
  display: none;
}
.csat-banner [name=csat-close-btn] {
  position: absolute;
  top: 12px;
  right: 12px;
  border: 0;
  cursor: pointer;
}
.csat-banner button img {
  pointer-events: none;
  width: 24px;
}
.nps-bookend {
  display: inline-block;
  margin-right: 1rem;
}
#navigation-wrapper {
  background-color: var(--ink-dark);
  box-shadow: 0 0 5px 0 #20123a1c;
  transition: box-shadow 0.2s ease;
}
.show-shadow #navigation-wrapper {
  box-shadow: 0 5px 10px -5px black;
}
.show-nav-bars {
  transform: translateY(0);
  -webkit-transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transition: all 0.3s ease;
}
.hide-nav-bars {
  transform: translateY(-20px);
  -webkit-transform: translateY(-20px);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s ease;
}
.sign-in.btn-white {
  white-space: nowrap;
}
.fxm-branding {
  position: relative;
}
.fx-monitor-logo-wrapper,
.bento-sign-up {
  flex: 1 1 30%;
}
.sprite.fx-monitor-logo {
  background: url(../img/fx-bento-sprites.png) -220px 0;
  min-width: 40px;
  height: 40px;
}
.fx-monitor-logotype {
  background: url(../img/svg/fx-monitor-logotype.svg);
  width: 100%;
  max-width: 212px;
  margin-left: 8px;
  background-position: left;
  background-size: contain;
  background-repeat: no-repeat;
  height: 28px;
}
nav {
  flex: 1;
  justify-content: flex-end;
}
.nav-link {
  background-color: rgb(255 255 255 / 0);
  padding-right: calc(16px + 1vw);
  padding-left: calc(16px + 1vw);
  justify-content: center;
  color: rgb(255 255 255 / 1);
  font-size: 16px;
}
.nav-link span {
  position: relative;
  pointer-events: none;
}
.active-link {
  font-weight: 700;
}
.nav-link span::after {
  height: 2px;
  background: var(--monitor-gradient);
  opacity: 0;
  display: block;
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  width: 0;
  margin: auto;
  border-radius: 5px;
  transition: all 0.2s ease;
}
.active-link span::after,
.active-link-underline span::after {
  width: 100%;
  opacity: 1 !important;
  transition: all 0.1s ease;
}
.drop-down-menu,
.mobile-menu .active-link-underline::after {
  display: none;
}
.signed-in-as-wrap {
  display: flex;
  position: relative;
  margin-bottom: 8px;
}
.signed-in-as-wrap::after {
  content: "";
  height: 1.5px;
  background: var(--monitor-gradient);
  width: 100%;
  display: block;
  position: absolute;
  bottom: 0;
}
.signed-in-as {
  padding: 20px;
  color: rgb(32 18 58);
  font-size: 12px;
  line-height: 1;
}
.nav-user-email {
  display: block;
  color: rgb(32 18 58);
  font-weight: 600;
  padding-top: 8px;
  font-size: 14px;
}
.avatar-wrapper {
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 0 1px #fff0, 0 0 0 3px #4f42ff00;
  border: 2px solid rgb(255 255 255 / 1);
  pointer-events: all;
}
.avatar-wrapper:hover {
  box-shadow: 0 0 0 2px rgb(63 96 217 / 0.8), 0 0 0 6px rgb(63 97 217 / 0.2);
  transition: all 0.2s ease;
}
.avatar-wrapper:focus,
.avatar-wrapper:focus-within {
  border: 2px solid rgb(255 255 255 / 1);
  box-shadow: 0 0 0 2px rgb(63 97 217), 0 0 0 4px rgb(63 97 217 / 0.3);
  outline: none;
}
.fxa-menu-wrapper {
  cursor: pointer;
  position: relative;
  user-select: none;
}
img.avatar,
.fxa-menu-wrapper,
.fxa-menu {
  pointer-events: none !important;
}
.avatar-wrapper,
.avatar {
  height: 42px;
  width: 42px;
}
.fxa-menu {
  padding-top: 3.25rem;
  position: absolute;
  top: 0;
  right: -4px;
  z-index: 2;
  pointer-events: none !important;
  transition: all 0.15s ease-in-out;
}
.fxa-menu-links {
  background-color: rgb(249 249 250);
  box-shadow: 0 7px 12px -3px rgb(28 28 29 / 0.502);
  display: none;
  flex-direction: column;
  padding-bottom: 8px;
  visibility: hidden;
  border-radius: 8px;
  transform: translateY(0);
  transition: all 0.15s ease;
}
.fxa-menu-links::before {
  border-top-left-radius: 1px;
  content: "";
  display: block;
  position: absolute;
  top: -5px;
  right: 20px;
  height: 12px;
  width: 12px;
  background-color: rgb(249 249 250);
  opacity: 1;
  margin: auto;
  z-index: 2;
  transform: rotate(45deg);
  visibility: hidden;
}
.menu-open .fxa-menu-links::before {
  visibility: visible;
}
.menu-open .fxa-menu-links,
.avatar-wrapper:hover .fxa-menu-links {
  display: flex;
  visibility: visible;
  transform: translateY(8px);
  animation: fxaMenuAppear ease 0.3s;
  -webkit-animation: fxamenuappear ease 0.3s;
  -moz-animation: fxamenuappear ease 0.3s;
  transition: all 0.25s ease;
}
.menu-open .fxa-menu-links {
  pointer-events: all;
}
.fxa-menu-link {
  min-width: 280px;
  padding: 10px 20px;
  color: rgb(32 18 58);
  font-size: 12px;
  background-color: rgb(255 255 255 / 0);
  transition: all 0.15s ease;
}
.fxa-menu-link:focus,
.fxa-menu-link:active {
  background-color: rgb(238 238 238 / 0.502);
  box-shadow: none;
}
.fxa-menu-link:hover {
  background-color: rgb(155 155 165 / 0.15);
  transition: all 0.15s ease;
}
@media screen and (max-width: 1200px) {
  .bento-sign-up {
    flex: 0 1 auto;
  }
  .desktop-menu {
    justify-content: flex-end;
  }
  .nav-link {
    padding-right: 0;
  }
}
@media screen and (max-width: 800px) {
  .bento-sign-up {
    margin-left: 0;
  }
  .desktop-menu {
    flex: 1 1 auto;
    width: auto;
  }
  .fx-monitor-logotype {
    height: 25px;
  }
  .desktop-menu .nav-link,
  .active-link span::after,
  .active-link-underline span::after {
    display: none;
  }
  .mobile-nav {
    visibility: visible;
    background-color: var(--ink);
    box-shadow: 0 2px 2px -1px #0202024d;
    transition: all 0.2s ease;
    padding: 0;
    flex-flow: column wrap;
    position: relative;
    cursor: pointer;
  }
  .mobile-menu a.nav-link {
    color: rgb(255 255 255 / 0.9);
    padding: 12px 16px;
    border-radius: 4px;
  }
  .mobile-menu .nav-link:hover {
    background-color: var(--ink);
  }
  .mobile-menu {
    margin: auto;
    border-radius: 0;
    flex-flow: column wrap;
    visibility: hidden;
    padding: 0 1.75rem;
    max-height: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--ink-light);
    z-index: 0;
    color: rgb(255 255 255 / 0);
    -webkit-user-select: none;
    transition: all 0.25s ease;
  }
  .mobile-menu-open .mobile-menu {
    top: 3rem;
    max-height: 1000px;
    visibility: visible;
    color: rgb(255 255 255 / 1);
    padding-top: 1rem;
    padding-bottom: 1rem;
    transition: all 0.15s ease;
  }
  .nav-link.drop-down-menu,
  .mobile-menu-open .nav-link {
    display: block;
  }
  .nav-link.drop-down-menu {
    -webkit-user-select: none;
    pointer-events: none;
    padding: 1rem 2.75rem;
    background-color: var(--ink-light);
    width: 100%;
    z-index: 1;
    border-bottom: 1px solid var(--ink-light);
    transition: border-bottom 0.15s ease;
  }
  .mobile-menu-open .drop-down-menu {
    border-bottom: 1px solid var(--ink);
    transition: border-bottom 0.15s ease;
  }
  .mobile-menu-open svg.toggle-down {
    transform: rotate(180deg);
    transition: transform 0.15s ease;
  }
  .drop-down-menu svg.toggle-down {
    opacity: 0.9;
    right: 2.75rem;
  }
  .drop-down-menu .toggle-down path {
    fill: rgb(255 255 255 / 1);
  }
  .nav-link {
    padding-left: 2.75rem;
    padding-right: 2.75rem;
    text-align: left;
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  header,
  header.show-shadow {
    background-color: transparent;
    box-shadow: none;
  }
  #navigation-wrapper {
    background-color: var(--ink-dark);
  }
  .drop-down-menu svg.toggle-down {
    right: 2rem;
  }
  .hide-nav-bars .mobile-nav {
    visibility: hidden;
  }
  .show-nav-bars .mobile-nav {
    visibility: visible;
  }
  .fxa-menu-link,
  .nav-user-email {
    font-size: 16px;
  }
  .fx-monitor-logo-wrapper {
    flex: 1 1 100%;
  }
  .mobile-menu {
    padding: 1rem 0.75rem;
  }
  .nav-link.drop-down-menu,
  .mobile-menu-open .nav-link {
    display: block;
  }
  .nav-link.drop-down-menu {
    padding: 16px 25px;
  }
  .fxa-menu-link {
    min-width: auto;
  }
}
@media screen and (max-width: 450px) {
  .fx-monitor-logotype {
    display: none;
  }
}
@keyframes fxamenuappear {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  100% {
    opacity: 1;
    transform: translateY(8px);
  }
}

/* public/css/partials/latest-breach.css */
.latest-breach-info,
.latest-breach {
  margin: auto;
}
.latest-breach-info {
  margin-top: -32px;
}
.breach-card.latest-breach {
  box-shadow: 0 12px 12px -3px #1c1c1d80;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border: 0;
  padding: 20px 40px 24px;
}
.breach-card.latest-breach:hover {
  transform: scale(1);
}
.latest-breach .breach-logo-wrapper {
  max-width: 48px;
  margin: 0 20px 0 0;
}
.latest-breach .breach-logo {
  max-height: 48px;
  max-width: 48px;
  width: 48px;
}
.latest-breach .breach-title {
  margin-bottom: 8px;
}
.lb-info .breach-key,
.lb-info .breach-value {
  display: inline !important;
  font-size: 14px;
}
.lb-info {
  margin-bottom: 8px;
}
.latest-breach-headline,
.latest-breach {
  max-width: 500px;
}
.latest-breach-headline {
  color: var(--purple6);
  background-color: rgb(255 255 255 / 0.95);
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
  font-weight: 600;
  margin: 0 auto;
  padding: 16px 16px 12px;
  box-shadow: 0 7px 12px 0 #1c1c1d80;
  font-size: 14px;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .latest-breach-info {
    padding: 0 calc(var(--padding) + 0.75rem);
  }
  .breach-card.latest-breach {
    padding: 16px 20px;
  }
  .latest-breach .breach-logo-wrapper {
    min-width: 36px;
  }
  .latest-breach .breach-logo {
    max-width: 36px;
    max-height: 36px;
    width: 36px;
  }
}

/* public/css/partials/monitor.css */
.monitor-homepage {
  min-height: 90vh;
  background-color: var(--ink-dark);
  position: relative;
  padding-bottom: 0;
}
.featured-breach h2.landing-headline {
  font-size: 40px;
  max-width: 600px;
  margin-bottom: 0;
}
.monitor-landing {
  background-image: url(../img/landing/background-noodle-top2.svg);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: bottom center;
  padding: 2rem 0.75rem;
}
.landing-bottom-bar {
  background-image: url(../img/landing/background-noodle-middle.svg), linear-gradient(224deg, #2150c8, #712291);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: top center;
  position: relative;
  padding-top: 0;
}
.landing-bottom-bar .take-back-control-banner {
  margin: 88px auto 40px;
}
.landing-bottom-bar.sensitive-breach,
.gradient-container.sensitive-breach,
.row.sensitive-breach {
  padding-top: 0;
}
.sb-top-wrapper.row {
  position: relative;
  width: 100%;
  max-width: var(--max-width);
  z-index: 1;
  margin-top: -32px;
}
.sb-top {
  background-color: rgb(255 255 255 / 0.95);
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
  min-height: 4rem;
  width: 100%;
}
.sensitive-breach .gradient-inset {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.landing-sensitive-info {
  color: var(--grey1);
  text-align: left;
  max-width: 800px;
  max-width: var(--max-width);
  margin-bottom: 4rem;
}
.sb-callout-body {
  font-size: 18px;
  line-height: 1.5;
  color: var(--grey2);
}
.sensitive-breach .feat-headline-wrapper {
  padding-top: 0;
  padding-bottom: 0;
}
h3.sb-callout {
  font-size: 24px;
  margin: 3rem auto 0;
  font-weight: 700;
}
.sb-callout,
.sb-callout-body {
  max-width: 600px;
}
.landing-content {
  text-align: center;
}
.landing-content .form-desc {
  color: var(--grey2);
  margin-bottom: calc(var(--padding) * 3);
}
.landing-subhead {
  padding: 0;
  margin: 0 auto calc(var(--padding) * 2) auto;
  max-width: 560px;
  font-size: 24px;
  line-height: 1.17;
}
.landing-headline,
.landing-subhead {
  color: var(--grey1);
}
.landing-headline {
  margin: auto auto 22px;
  max-width: 750px;
}
.landing-content form {
  max-width: 320px;
  margin: auto;
}
.landing-headline .bold {
  color: var(--violet2);
}
[data-ad-unit] {
  width: min(960px, calc(100% - 60px));
  margin: 80px auto;
  text-align: center;
  color: black;
  border-radius: 8px;
}
[data-ad-unit] > * + * {
  margin-top: 24px;
}
[data-ad-unit].dark {
  color: white;
}
[data-ad-unit].light {
  color: black;
}
[data-ad-unit] h2 {
  color: inherit;
  font-size: 32px;
  margin: 0;
}
[data-ad-unit] video {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}
[data-ad-unit="3"] {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 30px;
  background-color: #6e008b;
}
[data-ad-unit="3"] > article {
  flex: 0 1 360px;
  margin: auto;
}
[data-ad-unit="3"] > article h2 {
  font-size: 70px;
  line-height: 1;
  color: white;
  word-break: break-word;
}
[data-ad-unit="3"] > article h2::first-line {
  font-size: 100px;
}
[data-ad-unit="3"] > article p {
  color: white;
}
[data-ad-unit="3"] > figure {
  flex: 1 1 360px;
  position: relative;
  margin: 0;
  min-height: 360px;
}
[data-ad-unit="3"] > figure img {
  object-fit: contain;
  height: 100%;
  width: 75%;
}
[data-ad-unit="3"] > figure i {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  padding: 12px;
  font-size: min(2vw, 13px);
  font-weight: bold;
  font-style: normal;
  color: black;
  background-color: #c688ff;
  word-break: break-word;
}
[data-ad-unit="3"] > figure i:nth-of-type(1) {
  top: 10px;
  box-shadow: 0 0 24px #6e008b;
  width: clamp(15%, 140px, 30%);
}
[data-ad-unit="3"] > figure i:nth-of-type(2) {
  bottom: 20px;
  box-shadow: 0 0 12px #6e008b;
  width: clamp(15%, 120px, 25%);
}
[data-ad-unit="3"] > figure i:nth-of-type(3) {
  right: 0;
  top: 30px;
  box-shadow: 0 0 6px #6e008b;
  width: clamp(15%, 140px, 35%);
}
[data-ad-unit="4"],
[data-ad-unit="6"] {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 30px;
  background-color: white;
}
[data-ad-unit="4"] > *,
[data-ad-unit="6"] > * {
  flex: 1 1 325px;
  margin: auto;
}
[data-ad-unit="4"] article,
[data-ad-unit="6"] article {
  text-align: left;
}
[data-ad-unit="4"] figure img,
[data-ad-unit="6"] figure img {
  width: min(100%, 400px);
}
[data-ad-unit="5"] {
  background-color: white;
  padding: 30px;
}
[data-ad-unit="5"] section {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 30px;
}
[data-ad-unit="5"] section > * {
  flex-grow: 1;
  flex-basis: calc((700px - 100%) * 999);
  margin: 0;
}
[data-ad-unit="5"] figure img {
  max-width: 100%;
  max-height: 160px;
}
.ad-unit-cta {
  font-weight: bold;
  color: black;
  background-color: #c688ff;
  border: 0;
  display: inline-flex;
  align-items: center;
}
@media screen and (max-width: 800px) {
  .landing-content {
    max-width: 600px;
  }
  .monitor-homepage.featured-breach {
    min-height: 100vh;
  }
  .featured-breach h2.landing-headline,
  h2.landing-headline,
  .landing-subhead {
    margin: 0 auto 12px;
  }
  .landing-subhead {
    font-size: 20px;
    max-width: 500px;
  }
  .landing-content form {
    margin-top: 8px;
  }
  [data-ad-unit="4"] article,
  [data-ad-unit="6"] article {
    text-align: center;
  }
}
@media screen and (max-width: 600px) {
  .monitor-homepage {
    min-height: 86vh;
  }
  .landing-bottom-bar .take-back-control-banner {
    margin: 68px auto 20px;
  }
}
@media screen and (max-width: 500px) {
  .landing-content {
    max-width: 400px;
  }
  .landing-content form {
    max-width: 100%;
  }
  .landing-subhead {
    font-size: 16px;
    line-height: 1.5;
  }
  .landing-subhead,
  .landing-headline {
    text-align: left;
  }
  .featured-breach h2.landing-headline {
    text-align: center;
    font-size: var(--top-headline);
  }
}

/* public/css/partials/product-promos.css */
.product-promo {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  padding: 32px 42px;
  color: rgb(255 255 255 / 1);
  text-align: left;
  background-position: 104%;
  background-size: auto 104%;
  background-repeat: no-repeat;
  border: 1px solid transparent;
}
.promo-copy {
  padding-right: 13%;
}
.promo-monitor {
  background-color: #393473;
  background-image: url(../img/svg/promos/promo-bg-monitor.svg);
}
.promo-mobile {
  background-color: #123474;
  background-image: url(../img/svg/promos/promo-bg-mobile.svg);
}
.product-promo.promo-mobile::after {
  background: #fff;
  border-radius: 4px;
  background-image: url(../img/svg/promos/mobile-qr-gradient.svg);
  content: "";
  width: 60px;
  height: 60px;
  position: absolute;
  right: 42px;
  bottom: 32px;
  background-size: 90%;
  background-repeat: no-repeat;
  background-position: center center;
}
.promo-lockwise {
  background-image: url(../img/svg/promos/promo-bg-lockwise.svg);
}
.promo-fpn {
  background-image: url(../img/svg/promos/promo-bg-fpn.svg);
}
.promo-ecosystem {
  background-image: url(../img/svg/promos/promo-bg-ecosystem.svg);
}
.promo-lockwise,
.promo-fpn,
.promo-ecosystem {
  background-color: #1e1338;
}
.promo-monitor > .promo-content::before {
  background-image: url(../img/svg/fxa-tout-yellow-env.svg);
}
.promo-mobile > .promo-content::before {
  background-image: url(../img/svg/logos/fx-logo.svg);
}
.promo-lockwise > .promo-content::before {
  background-image: url(../img/svg/logos/fx-lockwise.svg);
}
.promo-fpn > .promo-content::before {
  background-image: url(../img/svg/logos/fpn-logo.svg);
}
.promo-ecosystem > .promo-content::before {
  background-image: url(../img/svg/logos/fx-master-logo.svg);
}
.promo-content::before {
  margin-right: 36px;
  min-width: 66px;
  min-height: 66px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top center;
  content: "";
  display: inline-block;
}
.promo-headline {
  font-size: 24px;
  line-height: 1.17;
  margin: 0 auto 8px 0;
}
.promo-body {
  font-size: 16px;
  line-height: 1.5;
  margin: 0 auto 16px;
}
.promo-cta {
  border-color: rgb(255 255 255 / 1);
  border-radius: 8px;
  min-height: 40px;
  color: rgb(255 255 255 / 1);
  font-size: 16px;
  margin: auto auto auto 0;
  padding: 12px 32px;
  pointer-events: all;
}
.promo-cta:hover {
  background-color: rgb(255 255 255 / 0.1);
}
.promo-wrapper {
  margin-top: 44px;
  margin-bottom: 20px;
  padding: 0;
}
@media screen and (max-width: 800px) {
  .product-promo.drop-shadow.flx.al-cntr.jst-cntr.promo-mobile::after {
    display: none;
  }
  .promo-wrapper {
    padding: 0 24px;
  }
  .product-promo {
    background-image: none !important;
    padding: 42px;
  }
  .promo-content {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .promo-body {
    max-width: 400px;
  }
  .promo-copy {
    padding-right: 0;
  }
  .promo-content::before {
    margin: auto auto 16px;
  }
  .promo-headline {
    font-size: 32px;
  }
}
@media screen and (max-width: 500px) {
  .product-promo {
    padding: 42px 24px;
  }
  .promo-headline {
    font-size: 28px;
  }
}

/* public/css/partials/scan-results.css */
.mw-860.found-breaches {
  padding-top: 0;
  padding-bottom: 0;
  flex-direction: row;
  display: inline-flex;
}
.headline-col {
  text-align: center;
  padding-bottom: 0;
}
.scanned-email-address {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 24px;
  font-family: Metropolis, sans-serif;
  font-weight: 600;
}
.source-info-wrap {
  margin-top: 16px;
  padding-bottom: 0;
}
.scan-res-subhead,
.scanned-email-address,
.scan-results-headline {
  text-align: center;
}
.scan-results-headline {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
}
.found-breaches,
.show-additional-breaches {
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}
.show-additional-breaches-wrapper {
  width: 100%;
}
.row.scan-results,
.user-found-breaches {
  margin: 0 auto;
}
.scan-res-subhead {
  margin: var(--padding) auto auto auto;
}
.scanned-email-address .bold,
.scan-results-headline span.bold,
.scan-res-subhead span.bold {
  color: var(--violet3);
}
.temp-marketing-img {
  max-width: 320px;
}
.temp-marketing-hl {
  color: #20123a;
  font-size: 24px;
  line-height: 1.13;
  margin-bottom: 4px;
}
.temp-marketing-p {
  color: var(--grey8);
  line-height: 1.5;
  margin: 0 auto 16px;
  font-size: 18px;
}
.temp-marketing-callout {
  margin: 20px auto 40px;
}
.temp-marketing-callout span {
  color: var(--purple7);
}
.temp-marketing-btn-blue {
  cursor: pointer;
  border-radius: 8px;
  font-size: 16px;
  max-width: 320px;
  font-weight: 600;
  background-color: var(--blue3);
  border: none;
  width: 100%;
  color: rgb(255 255 255 / 1);
  padding-right: var(--padding);
  padding-left: var(--padding);
  min-height: 48px;
  transition: all 0.15s ease-in-out;
}
.temp-marketing-btn-blue.button-top {
  margin-top: 16px;
}
.temp-marketing-btn-blue:hover {
  background-color: var(--blue4);
  transition: all 0.15s ease-in-out;
}
@media screen and (max-width: 800px) {
  .scanned-email-address,
  .scan-results-headline,
  .scan-res-subhead {
    text-align: left;
    margin-left: 0;
    padding-left: 0;
  }
  .headline-col {
    text-align: left;
    max-width: 500px;
  }
  .scanned-email-address {
    font-size: 16px;
  }
  .found-breaches.scan-res-breaches {
    padding: 0 var(--padding);
  }
}
.facebook-notes {
  text-align: left;
  margin-bottom: 100px;
}
.facebook-notes .section-headline {
  margin-top: 3rem;
}
.facebook-notes.temp-marketing-callout span a {
  color: var(--blue3);
}
.facebook-notes .feature-tip-content-wrapper:last-of-type {
  margin-bottom: 20px;
}
.facebook-notes a.recommendation {
  margin-left: 80px;
}
@media screen and (max-width: 800px) {
  .facebook-notes a.recommendation {
    margin-left: 0;
    text-align: center;
    display: inline-block;
  }
}

/* public/css/partials/security-tips.css */
.security-tips.clear-header {
  min-height: auto;
}
.articles .col-9 {
  width: 100%;
  max-width: 100%;
  justify-content: center;
}
.security-tip-list-item {
  align-items: flex-start;
  margin-bottom: 1.75rem;
  flex: 1 1 45%;
}
.articles {
  color: var(--grey8);
}
.security-tips {
  color: var(--grey1);
  padding-bottom: 0;
}
.security-tip-list {
  margin-top: var(--padding);
  flex-flow: row wrap;
}
.st-intro-wrap {
  padding: 0 var(--padding);
  border-left: 0.5rem solid var(--grey2);
}
.st-intro {
  font-size: 1.2rem;
  font-style: italic;
  line-height: 220%;
}
.security-tip-link {
  display: inline;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--grey1);
  align-items: center;
  font-family: Metropolis, sans-serif;
}
.security-tip-link-subhead {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1rem;
  max-width: 400px;
  opacity: 0.9;
}
.article-icon {
  height: 2rem;
  width: 2rem;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  margin-right: 1rem;
}
.ico {
  width: 3rem;
  height: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom-width: 4px;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom-style: solid;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
}
.security-tip-subhead {
  max-width: 230px;
  line-height: 1.3;
  margin-bottom: 6rem;
  display: block;
  font-family: Metropolis, sans-serif;
}
.ico svg.icon-inline path {
  fill: var(--grey8);
}
body {
  --how-hackers-work: var(--orange6);
  --stronger-passwords: var(--blue2);
  --steps-to-protect: var(--purple1);
  --five-myths: var(--violet1);
  --next-steps: #e31587;
  --after-breach: #3fe1b0;
}
.how-hackers-work {
  border-bottom-color: var(--how-hackers-work);
  color: var(--how-hackers-work);
}
.strong-passwords {
  border-bottom-color: var(--stronger-passwords);
  color: var(--stronger-passwords);
}
.after-breach {
  border-bottom-color: var(--after-breach);
  color: var(--after-breach);
}
.steps-to-protect {
  border-bottom-color: var(--steps-to-protect);
  color: var(--steps-to-protect);
}
.five-myths {
  border-bottom-color: var(--five-myths);
  color: var(--five-myths);
}
.next-steps {
  border-bottom-color: var(--next-steps);
  color: var(--next-steps);
}
.security-tip-link svg path {
  fill: rgb(255 255 255 / 1);
}
.how-hackers-work-list {
  margin-top: calc(var(--padding) * 2);
}
.myth {
  color: var(--violet3);
  display: block;
  margin-right: 1rem;
}
.article-icon .icon-inline {
  opacity: 1;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.article-wrapper {
  padding-top: 12rem;
  padding-bottom: 0;
}
.article-wrapper,
.st-intro-wrap {
  width: 75%;
  margin: auto;
}
.article-headline {
  color: var(--ink);
  font-size: 3rem;
  font-weight: 700;
}
.article-list-item,
.article-paragraph {
  font-size: 1.1rem;
  line-height: 200%;
  opacity: 0.9;
}
a.st-copy-link {
  color: var(--blue3);
}
.article-paragraph .bold {
  color: var(--ink);
}
a.st-copy-link:hover,
a.st-link:hover {
  text-decoration: underline;
}
.st-list-header {
  margin-top: 2rem;
  color: var(--ink);
  font-size: 1.1rem;
}
.article-list-item {
  margin-bottom: 0.5rem;
}
.article-list-item::before {
  content: "\2022";
  display: inline-block;
  margin-right: 1rem;
  font-size: 1.5rem;
  color: var(--ink);
  align-self: flex-start;
}
.article-subhead {
  font-size: 1.5rem;
  display: inline-block;
  font-weight: 500;
}
h3.article-subhead,
.toggle-subhead {
  margin: 2.5rem auto 0;
  font-weight: 700;
  color: var(--ink);
}
.steps-to-protect::before {
  background-color: var(--blue3);
}
.icon-inline-wrapper {
  display: flex;
  align-items: center;
  margin-right: 1.5rem;
}
.icon-inline {
  min-width: 1.5rem;
  max-width: 1.5rem;
  max-height: 1.5rem;
  opacity: 0.9;
}
.st-headline {
  margin: 0;
  line-height: 200%;
  display: inline;
}
.st-list,
.st-subhead {
  margin: 0;
  padding: var(--padding) calc(30px + 2rem) 0;
}
.st-list-item {
  margin: 0.75rem 0;
  position: relative;
}
.st-list-item::before {
  content: "\2022";
  display: inline-block;
  margin-right: 0.75rem;
}
a.st-link {
  color: var(--blue3);
  display: block;
  margin-top: 1rem;
}
.st-icon {
  margin-right: 2rem;
}
.st-headline .bold {
  display: block;
  text-transform: uppercase;
  font-size: 1.3rem;
}
.st-call-out {
  margin: calc(var(--padding) * 2) auto;
  border-radius: 0.7rem;
  background: var(--monitor-gradient);
  padding: 2px;
  box-shadow: 0 0 10px 1px rgb(205 205 212 / 0.78);
}
.inset {
  background-color: var(--bg-light);
  border-radius: 0.575rem;
  padding: calc(var(--padding) * 2);
}
.pw-tip-item {
  width: 100%;
}
.pw-tip-item.flx:nth-child(odd) {
  background-color: rgb(32 18 58 / 0.031);
}
.pw-do-hl,
.pw-do {
  border-right: 1px solid var(--grey2);
}
.pw-tip-headlines {
  position: relative;
}
.pw-tip-headlines::after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  display: block;
  content: "";
  background: var(--monitor-gradient);
}
.pw-tip-headlines,
.do-dont-hl {
  width: 100%;
}
.do-dont-hl {
  padding: 2rem 1rem;
  flex: 1 1 50%;
}
.do-dont-hl h4 {
  align-items: center;
  font-size: 1.5rem;
  position: relative;
  color: var(--blue5);
}
.icon-dont::before {
  background-image: url(../img/svg/x-close-red.svg);
}
.icon-do::before {
  background-image: url(../img/svg/green-check.svg);
}
.icon-do::before,
.icon-dont::before {
  left: -2.5rem;
  content: "";
  width: 2rem;
  height: 2rem;
  background-size: contain;
  background-position: center center;
  display: inline-block;
  position: absolute;
}
.do-dont-wrap {
  padding: var(--padding);
  flex: 1 1 50%;
}
.do-dont {
  width: 80%;
  line-height: 150%;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--ink);
}
.password-tip-list {
  flex-wrap: wrap;
}
.pw-tip-table {
  border-radius: 0.7rem;
  box-shadow: 0 0 10px 1px rgb(205 205 212 / 0.78);
}
.password-tip-list-headline {
  padding: calc(var(--padding) * 2) var(--padding);
  margin-bottom: 0;
  font-size: 2.25rem;
}
.do-list-item,
.dont-list-item {
  padding: var(--padding);
  display: flex;
  align-items: center;
  min-height: 70px;
}
.article-toggle {
  padding: 0;
  position: relative;
  width: 5rem;
  min-width: 100%;
  pointer-events: none;
  transition: background-color 0.15s ease-in-out;
}
.article-toggle:hover {
  background-color: var(--grey2);
  transition: background-color 0.15s ease-in-out;
}
.article-toggle svg.toggle-down {
  display: none;
}
.drop-cap {
  font-size: 40px;
  color: var(--orange6);
  font-weight: 700;
  display: block;
  float: left;
  padding-top: 5px;
  margin-bottom: -10px;
  padding-right: 3px;
}
@media screen and (max-width: 950px) {
  .security-tip-list-item .article-icon,
  .security-tip-link-subhead {
    display: none;
  }
  .security-tip-list-item {
    margin-bottom: 1.25rem;
    flex: 1 1 100%;
    width: 100%;
  }
}
@media screen and (max-width: 800px) {
  .pw-tip-headlines::after {
    display: none;
  }
  .do-dont-wrap {
    flex: 1 1 100% !important;
    border: none;
  }
  .pw-tip-table {
    background-color: rgb(0 0 0 / 0);
    box-shadow: none;
  }
  .pw-tip-item {
    flex-direction: column;
    margin-bottom: 3rem;
    border-radius: 0.7rem;
    overflow: hidden;
    border: none !important;
  }
  .security-tips-headline {
    font-size: var(--headline);
  }
  .security-tip-link {
    font-size: 1rem;
  }
  .article-wrapper,
  .st-intro-wrap {
    width: 100%;
    max-width: 100%;
  }
  .do-dont-hl-mobile {
    position: relative;
    font-weight: bold;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    color: var(--blue5);
  }
  .do-dont-hl-mobile::before {
    width: 1.5rem;
    height: 1.5rem;
    left: -2.15rem;
  }
  .do-dont-hl {
    display: none;
  }
  .do-dont {
    text-align: left;
    display: flex;
    flex-direction: column;
  }
  .pw-do {
    background-color: rgb(255 255 255 / 1);
  }
  .pw-dont {
    position: relative;
    background-color: rgb(32 18 58 / 0.05);
  }
  .pw-dont::before {
    width: 1.25rem;
    height: 1.25rem;
    background-color: white;
    display: block;
    content: "";
    position: absolute;
    top: -0.75rem;
    transform: rotate(45deg);
  }
}
@media screen and (max-width: 600px) {
  .st-intro,
  .article-list-item,
  .article-paragraph {
    font-size: 1rem;
  }
  .st-intro-wrap {
    padding: 0;
    border-left: none;
  }
  .article-headline {
    font-size: var(--headline);
  }
  .drop-cap {
    font-size: 28px;
    padding-right: 1px;
    margin-bottom: -6px;
  }
  .article-list-item::before {
    margin-right: 0.75rem;
  }
  .article-list-item {
    line-height: 180%;
  }
  .st-toggle {
    margin-bottom: var(--padding);
  }
  .toggle.article-toggle {
    pointer-events: all;
    margin-bottom: 0;
  }
  .st-toggle-wrapper {
    border-bottom: 1px solid var(--grey3);
    border-radius: 0;
    padding: var(--padding) 0;
    margin: 1rem 0;
  }
  .st-icon {
    display: none;
  }
  .st-next-steps .st-toggle-wrapper {
    border: 1px solid var(--grey8);
    border-radius: 0.25rem;
    padding: var(--padding);
  }
  .article-toggle svg.toggle-down {
    right: var(--padding);
    display: inline-block;
  }
  .toggle-subhead {
    font-weight: 500;
    font-size: 1rem;
    padding-right: calc(var(--padding) * 3);
    margin: auto;
  }
  .myth {
    display: block;
  }
  .icon-inline {
    min-width: 1.15rem;
    max-width: 1.15rem;
    max-height: 1.15rem;
  }
  .icon-inline-wrapper {
    margin-right: 1rem;
  }
  .security-tip-list-item {
    padding-right: 13%;
  }
  .logo-title-wrapper .arrow-head-right {
    margin-left: 0;
  }
  .do-dont-wrap {
    padding: calc(var(--padding) * 2) var(--padding);
  }
  .st-subhead {
    padding: 1rem 0;
  }
  .st-call-out {
    margin: calc(var(--padding) * 3) auto;
  }
}

/* public/css/partials/sign-up-banner.css */
.sign-up-banner {
  display: flex;
  flex-direction: row;
  width: 100%;
  padding: 40px;
  justify-content: space-between;
  color: rgb(255 255 255 / 1);
}
.breach-detail-sign-up {
  border-radius: 16px;
  box-shadow: 0 2px 12px -2px #1c1c1d80;
}
.sign-up-feature-list {
  max-width: 500px;
  margin: 0;
}
.fxa-signup-banner {
  padding-left: var(--padding);
  padding-right: var(--padding);
  justify-content: center;
}
.feature-button {
  margin-top: calc(var(--padding) * 2);
}
.feature-button .feature-tip-content {
  text-align: center;
}
.sign-up-feature::before {
  content: "\2022";
  display: inline-block;
  height: 1rem;
  color: rgb(255 255 255 / 1);
  flex: 1;
  margin-right: 0.5rem;
  width: 1rem;
  min-width: 1rem;
  max-width: 1rem;
}
.sign-up-cta::before {
  width: 76px;
  height: 50px;
  content: "";
  display: block;
  background-image: url(../img/svg/fxa-tout-yellow-env.svg);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: contain;
  margin-bottom: 16px;
}
.sign-up-cta p,
.sign-up-cta .text-link {
  color: rgb(255 255 255 / 1);
}
.have-an-account path {
  fill: var(--blue3);
}
.browser-not-required {
  display: inline-block;
  text-align: center;
  font-size: 12px;
  margin: 12px auto;
  color: rgb(91 91 102 / 1);
  line-height: 1.4;
  max-width: 288px;
}
p.have-an-account button.text-link,
p.have-an-account {
  font-size: 16px;
  min-height: 0;
}
p.have-an-account {
  display: inline-block;
  margin: auto;
}
.have-an-account button.text-link {
  margin: 0 0.5rem;
}
.sign-up-headline {
  font-size: 24px;
  line-height: 1.17;
  color: rgb(255 255 255 / 1);
  max-width: 320px;
  margin: 0 0 16px;
}
.sign-up-feature {
  line-height: 1.5;
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 8px;
  display: flex;
}
.sign-up-banner .feature-tip-group {
  margin-bottom: calc(var(--padding) * 2);
}
.sign-up-cta .browser-not-required {
  color: rgb(255 255 255 / 0.8);
}
.sign-up-cta {
  max-width: 300px;
  text-align: center;
  align-items: center;
  flex: 1;
  justify-content: center;
}
@media screen and (max-width: 800px) {
  .col-12.feat-headline-wrapper {
    padding-bottom: 0;
  }
  .sign-up-banner {
    flex-direction: column;
    padding: calc(var(--padding) + var(--padding)) var(--padding);
  }
  h2.sign-up-headline {
    text-align: center;
    margin: 0 auto 24px;
  }
  .sign-up-cta,
  .sign-up-feature-list {
    margin-left: auto;
    margin-right: auto;
  }
  .sign-up-cta {
    margin-top: 24px;
  }
}

/* public/css/partials/subpage.css */
.subpage {
  margin: auto;
}
.subpage.email-confirmed {
  background-image: url(../img/svg/scan-res-bg.svg);
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
}
.subpage .content-box {
  flex-direction: column;
  justify-content: center;
}

/* public/css/partials/vpn-banner.css */
.vpn-banner {
  --step-list-w: 560px;
  position: fixed;
  width: 100%;
  z-index: 1;
  text-align: center;
  color: white;
}
.vpn-banner ~ header,
.vpn-banner ~ main,
.vpn-banner ~ footer {
  transform: translateY(var(--vpn-banner-height, 0));
}
.vpn-banner[data-protected] ~ header,
.vpn-banner[data-protected] ~ main,
.vpn-banner[data-protected] ~ footer {
  transition: transform 0.3s;
}
.vpn-banner label,
.vpn-banner li {
  font-size: 13px;
}
.vpn-banner em,
.vpn-banner output {
  font-weight: bold;
  font-style: normal;
}
.vpn-banner em {
  color: #e22850;
}
.vpn-banner[data-protected=true] em {
  color: #1cc4a0;
}
.vpn-banner .vpn-banner-top::after,
.vpn-banner:not([data-protected]) .vpn-banner-top::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  transition: opacity 0.3s ease-out, visibility 0s 0.3s;
}
.vpn-banner[data-protected] .vpn-banner-top::after {
  opacity: 0;
  visibility: hidden;
}
.vpn-banner[data-protected=true] .protected-txt:first-child,
.vpn-banner[data-protected=false] .protected-txt:last-child {
  display: block;
}
.vpn-banner[data-protected=false] .protected-txt:first-child,
.vpn-banner[data-protected=true] .protected-txt:last-child,
.vpn-banner[data-protected=true] .vpn-banner-cta {
  display: none;
}
.vpn-banner-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 8px 0;
  background-color: black;
  cursor: pointer;
  box-shadow: inset 0 -1px 0 #444;
}
.vpn-banner-top label {
  padding: 0 4px;
  pointer-events: none;
}
.vpn-banner-top .short-location::after {
  content: "\2022";
  padding-left: 8px;
}
.vpn-banner-chevron {
  min-width: 76px;
  text-align: left;
}
.vpn-banner-chevron::before {
  content: attr(data-expand);
  display: inline-block;
}
.vpn-banner-chevron::after {
  content: url(../img/svg/chevron.svg);
  display: inline-block;
  vertical-align: bottom;
  width: 16px;
  height: 16px;
  margin-left: 3px;
  transition: transform 0.15s;
  transform-origin: 50% 53%;
}
[data-expanded] .vpn-banner-chevron::before {
  content: attr(data-close);
}
[data-expanded] .vpn-banner-chevron::after {
  transform: rotate(180deg);
}
.vpn-banner-bottom {
  position: relative;
  display: none;
  max-width: var(--max-width);
  min-height: 250px;
  color: black;
  margin: auto;
  padding: 32px 16px 16px;
  counter-reset: step;
  animation: vpn-banner-expand 0.3s ease-in both;
}
[data-expanded] .vpn-banner-bottom {
  display: grid;
}
.vpn-banner-bottom::before {
  content: "";
  position: absolute;
  width: 100vw;
  height: 100%;
  top: 0;
  left: calc(50% - 50vw);
  background: white url(../img/svg/clouds.svg) no-repeat 90% 75%;
  z-index: -1;
}
.vpn-banner-title {
  font-family: Metropolis, sans-serif;
  text-align: left;
}
.vpn-banner-title .subheading {
  display: block;
  font-weight: normal;
  font-size: 18px;
  margin-top: 8px;
}
.vpn-banner-lists {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.vpn-banner-lists .status-list {
  margin: 16px 0;
}
.vpn-banner-lists .status-list em,
.vpn-banner-lists .status-list output {
  padding: 0 4px;
}
.vpn-banner-lists .step-list {
  flex: 0 1 var(--step-list-w);
  display: flex;
  flex-wrap: wrap;
  margin: 16px 0;
  padding: 0;
  list-style: none;
}
.vpn-banner-lists .step-list li {
  flex-basis: calc(var(--step-list-w) / 3);
  margin: 0 auto 16px;
}
.vpn-banner-lists .step-list li::before {
  display: inline-block;
  content: counter(step) ".";
  counter-increment: step;
  height: 40px;
  line-height: 40px;
  width: 36px;
  margin-left: -36px;
  border: 2px solid black;
  box-shadow: inset 4px 4px 0 white;
  background-color: #ededf0;
  font-family: Metropolis, sans-serif;
  font-size: 18px;
  font-weight: bold;
  vertical-align: top;
}
.vpn-banner-lists .step-list figure {
  display: inline-block;
  width: 110px;
  margin: 0;
}
.vpn-banner-cta {
  justify-self: start;
  margin: 16px 0;
  padding: 12px 24px;
  border: 2px solid black;
  box-shadow: 6px 6px 0 #a883f8;
  font: bold 14px/1 Metropolis, sans-serif;
  font-weight: bold;
  color: black;
  background-color: white;
}
.vpn-banner-close {
  width: 20px;
  height: 20px;
  padding: 0;
  border: transparent;
  border-top: 2px solid #321c64;
  border-left: 2px solid #321c64;
  transform: rotate(45deg);
  margin: auto;
}
.vpn-banner-close::after {
  content: "";
  display: block;
  border-top: 1px solid #592acb;
  border-left: 1px solid #592acb;
  width: 100%;
  height: 100%;
  margin: 4px;
}
@keyframes vpn-banner-expand {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* public/css/app.css */
