/* default */

@font-face {
  font-display: swap;
  font-family: 'dazzed';
  font-weight: 300;
  src: url('https://assets.f-secure.com/f/Dazzed-Regular.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'dazzed';
  font-weight: 400;
  src: url('https://assets.f-secure.com/f/Dazzed-Medium.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'dazzed';
  font-weight: 600;
  src: url('https://assets.f-secure.com/f/Dazzed-SemiBold.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'dazzed';
  font-weight: 700;
  src: url('https://assets.f-secure.com/f/Dazzed-Bold.woff2') format('woff2');
}

@font-face {
  font-family: fallback;
  size-adjust: 106%;
  font-stretch: ultra-expanded;
  src: local("Arial")
}

@font-face {
  font-family: fallback;
  size-adjust: 103%;
  font-stretch: ultra-expanded;
  font-weight: 700;
  src: local("Arial Bold")
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "dazzed", fallback, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #0a1e3c;
  line-height: 1.5;
}

.container {
  margin: 0 auto;
  padding: 0 2rem;
  max-width: 72rem;
}

.header {
  background-color: #FAF5F5;
  position: relative;
  padding: 1.875rem 0 2.875rem;
}

.header .logo img {
  display: flex;
  max-width: 9.375rem;
}

h1 {
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 1.2;
}

.header h1 {
  margin-top: 2.875rem;
}

.main {
  padding: 2rem 0;
}

.main h1 {
  margin-bottom: 2rem;
}

.main h2 {
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.main p {
  margin-bottom: 1.875rem;
  max-width: 43rem;
}

.main p:last-child {
  margin-bottom: 0;
}

.main a {
  color: #0a1e3c;
  text-decoration: underline;
}

.main a:hover {
  color: #003cff;
}

.main a.privacy {
  font-size: 0.875rem;
}

.main form {
  margin-bottom: 1.25rem;
}

.main form input[type="submit"],
.main a.button {
  -webkit-appearance: none;
  appearance: none;
  background: #003cff;
  border-radius: 1.875em;
  border: none;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-size: 1rem;
  font-weight: 700;
  justify-content: center;
  line-height: 1.5;
  min-width: 10rem;
  outline: none;
  padding: 0.75em 2em;
  text-decoration: none;
}

.main form input[type="submit"]:hover,
.main a.button:hover {
  background-color: #0a1e3c;
  border-color: #0a1e3c;
  color: #fff;
}

/* default mobile */
@media (min-width: 992px) {
  .header {
    padding: 1.875rem 0 4rem;
  }
  h1 {
    font-size: 2.3125rem;
  }
  .header h1 {
    margin-top: 3.5rem;
  }
  .main {
    padding: 2.5rem 0;
  }
}


/* subscription center */

.subscription-center .main p,
.subscription-center form {
  font-size: 0.875rem;
}

.subscription-center input[type="submit"] {
  margin-top: 1rem;
}

.subscription-center [type="checkbox"] {
  left: -9999px;
  position: absolute;
}

.subscription-center label {
  cursor: pointer;
  display: block;
  line-height: 150%;
  margin-bottom: 0;
  padding-left: 30px;
  position: relative;
}

.subscription-center label:hover {
  color: #888;
}

.subscription-center label::before {
  border: 1px solid #666;
  content: "";
  height: 18px;
  left: 0;
  position: absolute;
  top: 0;
  width: 18px;
}

.subscription-center label:hover::before,
.subscription-center [type="checkbox"]:focus+label::before {
  border: 1px solid #aaa;
}

.subscription-center label::after {
  color: #003cff !important;
  content: "✔";
  font-family: "Arial Unicode MS" !important;
  font-size: 16px;
  left: 4px;
  line-height: 0.8;
  position: absolute;
  top: 5px;
  transition: all 0.2s;
}

.subscription-center [type="checkbox"]:not(:checked)+label::after {
  opacity: 0;
  transform: scale(0);
}

.subscription-center [type="checkbox"]:checked+label::after {
  opacity: 1;
  transform: scale(1);
}


/* newsletter signup */

.newsletter-signup {
  text-align: center;
}

.newsletter-signup .logo {
  display: flex;
  justify-content: center;
}

.newsletter-signup form {
  display: flex;
  flex-direction: column;
  gap: 1rem 0.5rem;
}

.newsletter-signup input[type="email"] {
  background-color: #ffffff;
  border-radius: 2px;
  border: 1px solid #0000003d;
  color: #363636;
  font-size: 16px;
  height: 48px;
  max-width: 400px;
  padding: 0 1rem;
  transition: border-color 0.15s ease-in-out 0s;
  width: 100%;
}

.newsletter-signup input[type="email"]:focus {
  border-color: rgba(0, 0, 0, 0.6);
  outline: 0;
}

.newsletter-signup input[type="email"]::placeholder {
  color: #aaa;
}

@media (min-width: 480px) {
  .newsletter-signup.non-iframe {
    text-align: left;
  }
  .newsletter-signup.non-iframe .logo {
    justify-content: left;
  }
  .newsletter-signup.non-iframe form {
    flex-direction: row;
  }
}


/* newsletter signup iframe */

.newsletter-signup.iframe .container {
  padding: 0;
}
@media (min-width: 380px) {
  .newsletter-signup.iframe {
    text-align: left;
  }
  .newsletter-signup.iframe form {
    flex-direction: row;
  }
}
@media (min-width: 640px) {
  .newsletter-signup.iframe .container {
    padding: 0 2rem;
  }
}

/* notification settings */
.containerBody {
  margin: 0 auto;
  padding: 0 2rem;
  max-width: 72rem;
}




