:root {
  /* Fonts */
  --primary-font-family: Wigrum;
  /* Colors */
  --body-background-color: #f5f5f7;
  --primary-text-color: #3c396f;
  --primary-background-color: #fafafc;
  --secondary-text-color: #939597;
  --secondary-background-color: #fff;
  --dim-background-color: rgba(25, 25, 65, 0.5);;
  --tertiary-text-color: #6269ff;
  --highlight-color: #6269ff;
  --hero-text-color: #fff;
  --list-active-color: #d8d7e2;
  --navigation-text-color: #3c396f;
  --navigation-background-color: #fff;
  --navigation-dropdown-background-color: #fbfcfd;
  --ui-light-gray: #dbdbdb;
  --footer-primary-text-color: #939597;
  --footer-secondary-text-color: #dbdbdb;
  --footer-background-color: #191941;
  --input-border-color: #ccc;
  --input-text-color: #1f1f1f;
  --input-background-color: #fff;
  --input-background-color-disabled: #ccc;
  --button-light-text-color: #6269ff;
  --button-light-background-color: #fff;
  --button-dark-text-color: #fff;
  --button-dark-background-color: #6269ff;
  --button-dark-background-disabled-color: #c2c9ff;
  --button-outline-text-color: #3c396f;
  --button-outline-background-color: #fff;
  --button-outline-border-color: #c6c6c6;
  --button-background-color-disabled: #c2c9ff;
  --box-shadows-navbar: 0 10px 30px 0 rgba(0,0,0,.08);
  --box-shadows-images: -17px 28px 14px 0 rgba(0, 0, 0, 0.21),
    0 0 10px 0 rgba(0, 0, 0, 0.04);
  --color-success: #17e3ae;
  --color-success-bg: #f1fefa;
  --color-error: #fa1478;
  --color-error-bg: #fff1f7;
  --color-warning: orange;
  --color-info: blue;
  --tooltip-background-color: #202020;
  --grey-bg: #eeeff0;
  --color-white: #fff;
  --footer-mini-block-color: #dbdbdb;
  --footer-mini-right-block-color: #c6c6c6;
  --newsletter-mobile-bg: #2e2e53;
  --mobile-footer-links-border: rgba(234, 234, 234, 0.2);
}

:root {
  --padding-hor: 90px;
  --content-width: 844px;
  --modal-padding-hor: 50px;
}

@media screen and (max-width: 759px) {
  :root {
    --padding-hor: 24px;
    --content-width: 100%;
    --modal-padding-hor: 20px;
  }
}

@media screen and (min-width: 760px) and (max-width: 991px) {
  :root {
    --padding-hor: 60px;
    --content-width: 100%;
    --modal-padding-hor: 50px;
  }
}

@media screen and (min-width: 1200px)  {
  :root {
    --padding-hor: 90px;
    --content-width: 844px;
    --modal-padding-hor: 50px;
  }
}

@font-face {
  font-family: Wigrum;
  src: url("/static/fonts/WigrumWeb-Light.eot");
  src: url("/static/fonts/WigrumWeb-Light.eot?#iefix") format("embedded-opentype"),
       url("/static/fonts/wigrumweb-light.woff") format("woff");
  font-style: normal;
  font-weight: 100;
}

@font-face {
  font-family: Wigrum;
  src: url("/static/fonts/WigrumWeb-Regular.eot");
  src: url("/static/fonts/WigrumWeb-Regular.eot?#iefix") format("embedded-opentype"),
       url("/static/fonts/wigrumweb-regular.woff") format("woff");
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: Wigrum;
  src: url("/static/fonts/WigrumWeb-Medium.eot");
  src: url("/static/fonts/WigrumWeb-Medium.eot?#iefix") format("embedded-opentype"),
       url("/static/fonts/wigrumweb-medium.woff") format("woff");
  font-style: normal;
  font-weight: 500;
}

@font-face {
  font-family: Wigrum;
  src: url("/static/fonts/WigrumWeb-Bold.eot");
  src: url("/static/fonts/WigrumWeb-Bold.eot?#iefix") format("embedded-opentype"),
       url("/static/fonts/wigrumweb-bold.woff") format("woff");
  font-style: normal;
  font-weight: 700;
}
* {
  box-sizing: border-box;
  word-wrap: break-word;
}

html,
body,
body > div {
  width: 100%;
  height: 100%;
}

body {
  font-style: normal;
  font-stretch: normal;
  font-family: var(--primary-font-family);
  background-color: #EEEFF0;
  letter-spacing: normal;
  -webkit-overflow-scrolling: touch;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
  margin: 0;
  padding: 0;
}
body[data-user-agent*="MacIntel"] .signLbl,
body[data-user-agent*="iPad"] .signLbl {
  position: relative;
  top: 2px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

p {
  margin: 0;
}

*:focus,
*:active {
  outline: 0 !important;
}

a {
  text-decoration: none;
}

.layout {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding-top: 80px;
  background-color: transparent;
  height:100%;
}

@media (max-width: 992px) {
  .layout {
    padding-top: 70px;
  }
}

.container {
  width: 100%;
  height: 100%;
  padding: 0 60px;
}

#header .container {
  padding: 0 46px 0 60px;
}

@media (max-width: 992px) {
  .container {
    padding: 0 30px;
  }

  #header .container {
    padding: 0 10px 0 10px;
  }
}

.checkout-container { /* TODO cleanup */
  overflow-x: hidden;
  position: relative;
  display: flex;
  align-content: stretch;
  flex-flow: row nowrap;
  min-height: calc(100vh - 80px);
  background: white;
}

.checkout-container-new {
  overflow: hidden;
  position: relative;
  display: flex;
  align-content: stretch;
  flex-flow: row nowrap;
  min-height: calc(100vh - 80px);
  background: #eeeff0;
}

.checkout-container-inner-new {
  background: #eeeff0;
  padding: 20px;
  width: 100%;
}
@media (min-width: 993px) {
  .checkout-container-inner-new {
    max-width: calc(100% - 430px);
  }
}
@media (min-width: 1440px) {
  .checkout-container-inner-new {
    max-width: 1010px;
  }
}

.checkout-container-inner-new fieldset legend {
  position: absolute;
  padding: 0;
  margin: 0;
}

.checkout-container-inner-new fieldset {
  background-color: #fff;
  padding: 20px;
  border-radius: 15px;
  position: relative;
  box-shadow: 0 1px 3px 0 #dbdbdb;
  margin-bottom: 20px;
}

@media (max-width: 992px) {
  .checkout-container {
    flex-direction: column;
    min-height: calc(100vh - 80px);
  }
}

@media (max-width: 992px) {  /* TODO cleanup */
  .checkout-container-new {
    flex-direction: column;
    min-height: calc(100vh - 80px);
  }
}

.default-container {
  position: relative;
  background: white;
  min-height: calc(100vh - 80px);
}

@media (max-width: 992px) {
  .default-container {
    min-height: calc(100vh - 80px);
  }
}

.overlay-video {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

/* Legal page styles. To be refactored */

.legal-page {
  font-size: 16px;
  line-height: 1.4;
  color: var(--secondary-text-color);
}

.legal-page h2 {
  font-size: 27px;
  font-weight: 400;
  margin-bottom: 20px;
  color: var(--primary-text-color);
}


.legal-page h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 18px;
  margin-top: 15px;
  font-weight: 500;
  color: var(--primary-text-color);
}

.legal-page h4 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 18px;
  font-weight: 500;
  color: var(--primary-text-color);
}

.legal-page h5 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 18px;
  font-weight: 500;
}

.legal-page p,
.legal-page address {
  margin-bottom: 20px;
}

.legal-page a {
  color: var(--primary-text-color);
}

.legal-page ol,
.legal-page ul {
  padding: 0;
}

.legal-page table {
  margin-bottom: 20px;
  border-collapse: collapse;
  border: 1px solid var(--secondary-text-color);
}

.legal-page tr {
  border-collapse: collapse;
  border: 1px solid var(--secondary-text-color);
}

.legal-page th,
.legal-page td {
  border-collapse: collapse;
  border: 1px solid var(--secondary-text-color);
  padding: 1ex;
  text-align: center;
}

@media (min-width: 992px) {
  .hide-desktop {
    display: none!important;
  }
}

@media (max-width: 991px) {
  .hide-mobile {
    display: none!important;
  }
}

.dashboard-title h3 {
  display: inline-block;
  padding-right: 1ex;
  position: relative;
}

@media screen and (--media-phone) {
  .dashboard-title h3 {
    letter-spacing: 0;
  }
}
@media (min-width: 768px) {
  .legal-page {
    display: table;
    padding: 0 0;
    width: 100%;
  }

}

@media (max-width: 992px) {
  .invoice-page .checkout-container-inner-new {
    padding: 20px 18px 0;
    background-color: #fff;
  }
  .order-summary-open body {
    overflow: hidden;
    position: relative;
    height: 100%;
  }
  .checkout-page.layout {
    padding-top: 0;
  }
  .checkout-page .checkout-container-new {
    margin-top: -200px;
    padding-top: 200px;
  }
  .checkout-page .checkout-container-inner-new {
    -webkit-transition: visibility 0.5s ease;
    transition: visibility 0.5s ease;
    visibility: visible;
  }
  .order-summary-open .checkout-page .checkout-container-inner-new {
    overflow: hidden;
    max-height: calc(100vh - 60px);
    visibility: hidden;
  }
}

@media (min-width: 993px) {
  .checkout-container-inner-new fieldset {
    padding: 40px 38px 5px;
  }
  .checkout-container-inner-new fieldset legend + .form-row {
    margin-top: 42px;
  }
  .checkout-container-inner-new fieldset legend + .form-row.deliver-to {
    margin-top: 48px;
  }
  .invoice-page .checkout-container-new {
    padding-bottom: 60px;
  }
  .theme-promo-sunrise.invoice-page .checkout-container-new {
    padding-bottom: 0;
  }
}

.sticky-header-stack {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 13;
}
.layout #header {
  position: static;
}

/* Transition duration */

button,
a {
  -webkit-transition: all 300ms;
  -moz-transition: all 300ms;
  -ms-transition: all 300ms;
  -o-transition: all 300ms;
  transition: all 300ms;
}

/* Fade in */

.fade-in {
  -webkit-animation: fadein-KQGdB3_q .7s;
  -moz-animation: fadein-KQGdB3_q .7s;
  -ms-animation: fadein-KQGdB3_q .7s;
  -o-animation: fadein-KQGdB3_q .7s;
  animation: fadein-KQGdB3_q .7s;
}

@keyframes fadein-KQGdB3_q {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@-moz-keyframes fadein-KQGdB3_q {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@-webkit-keyframes fadein-KQGdB3_q {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@-ms-keyframes fadein-KQGdB3_q {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@-o-keyframes fadein-KQGdB3_q {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Fade out */

.fade-out {
  -webkit-animation: fadeout-1J-9lsQw .7s;
  -moz-animation: fadeout-1J-9lsQw .7s;
  -ms-animation: fadeout-1J-9lsQw .7s;
  -o-animation: fadeout-1J-9lsQw .7s;
  animation: fadeout-1J-9lsQw .7s;
}

@keyframes fadeout-1J-9lsQw {
  from { opacity: 1; }
  to   { opacity: 0; }
}

@-moz-keyframes fadeout-1J-9lsQw {
  from { opacity: 1; }
  to   { opacity: 0; }
}

@-webkit-keyframes fadeout-1J-9lsQw {
  from { opacity: 1; }
  to   { opacity: 0; }
}

@-ms-keyframes fadeout-1J-9lsQw {
  from { opacity: 1; }
  to   { opacity: 0; }
}

@-o-keyframes fadeout-1J-9lsQw {
  from { opacity: 1; }
  to   { opacity: 0; }
}

/* Slide Down */

.slide-down {
  -webkit-animation: slideDown-2erbGAUQ .8s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-animation: slideDown-2erbGAUQ .8s cubic-bezier(0.215, 0.61, 0.355, 1);
  -ms-animation: slideDown-2erbGAUQ .8s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-animation: slideDown-2erbGAUQ .8s cubic-bezier(0.215, 0.61, 0.355, 1);
  animation: slideDown-2erbGAUQ .8s cubic-bezier(0.215, 0.61, 0.355, 1);
}

@keyframes slideDown-2erbGAUQ {
  from { transform: translateY(-100px); }
  to  { transform: translateY(0); }
}

@-moz-keyframes slideDown-2erbGAUQ {
  from { -moz-transform: translateY(-100px); }
  to   { -moz-transform: translateY(0); }
}

@-webkit-keyframes slideDown-2erbGAUQ {
  from { -webkit-transform: translateY(-100px); }
  to   { -webkit-transform: translateY(0); }
}

@-ms-keyframes slideDown-2erbGAUQ {
  from { -ms-transform: translateY(-100px); }
  to   { -ms-transform: translateY(0); }
}

@-o-keyframes slideDown-2erbGAUQ {
  from { -o-transform: translateY(-100px); }
  to   { -o-transform: translateY(0); }
}

/* Spin */

.spin {
  -webkit-animation: spin-3i_vnsQK ease infinite 1.5s;
  -moz-animation: spin-3i_vnsQK ease infinite 1.5s;
  -ms-animation: spin-3i_vnsQK ease infinite 1.5s;
  -o-animation: spin-3i_vnsQK ease infinite 1.5s;
  animation: spin-3i_vnsQK ease infinite 1.5s;
  height: inherit;
  width: auto;
  transform-origin: 50% 50%;
}

.spinner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 33px;
  width: 100%;
}

.inline-spinner {
  display: inline-block;
  height: 18px;
  margin: 9px 0 4px;
  width: auto;
}

@keyframes spin-3i_vnsQK {
  from { transform:rotate(0deg); }
  to   { transform:rotate(360deg); }
}

@-moz-keyframes spin-3i_vnsQK {
  from { transform:rotate(0deg); }
  to   { transform:rotate(360deg); }
}

@-webkit-keyframes spin-3i_vnsQK {
  from { transform:rotate(0deg); }
  to   { transform:rotate(360deg); }
}

@-ms-keyframes spin-3i_vnsQK {
  from { transform:rotate(0deg); }
  to   { transform:rotate(360deg); }
}

@-o-keyframes spin-3i_vnsQK {
  from { transform:rotate(0deg); }
  to   { transform:rotate(360deg); }
}
/* Font sizes */

.title-xl {
  font-size: 44px;
  line-height: 1.2;
}

.title-l {
  font-size: 36px;
  line-height: 1.2;
}

.title-m {
  font-size: 26px;
  line-height: 1.2;
}

.default-l {
  font-size: 18px;
  line-height: 1.4;
}

.default-m {
  font-size: 16px;
  line-height: 1.4;
}

.default-s {
  font-size: 13px;
}

.uppercase-s {
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

/* Font weight */

.regular {
  font-weight: 400;
}

.semi-bold {
  font-weight: 500;
}

.bold {
  font-weight: 700;
}

/* Mobile font sizes */

@media(max-width: 992px) {
  .title-xl,
  .title-l {
    font-size: 28px;
    line-height: 1.25;
  }

  .default-l {
    font-size: 15px;
  }
}

@media(max-width: 760px) {

  .title-xl,
  .title-l {
    font-size: 24px;
    line-height: 1.25;
  }
}
form {
  padding: 0;
}

fieldset {
  padding: 0;
  border: 0;
}

legend {
  position: static;
  padding: 0;
  border: 0;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 1px;
  padding-top: 40px;
  padding-bottom: 28px;
  color: var(--primary-text-color);
  text-transform: uppercase;
}

legend,
input,
select,
button {
  font-family: var(--primary-font-family);
}

/* Prevent chrome input background color for prefilled data */
input:-internal-autofill-previewed,
input:-internal-autofill-selected,
textarea:-internal-autofill-previewed,
textarea:-internal-autofill-selected,
select:-internal-autofill-previewed,
select:-internal-autofill-selected {
  background-color: white !important;
}

.form-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.form-field {
  padding-left: 10px;
  margin-bottom: 28px;
}

.form-field:first-child {
  padding-left: 0;
}

.form-row-items-1 .form-field {
  width: 100%;
}

.form-row-items-2 .form-field {
  width: 50%;
}

.form-row-address-appartment .form-field:first-child {
  width: 100%;
}

.form-row-address-appartment .form-field:nth-child(2) {
  width: 25%;
}

.form-row-city-state-post .form-field:first-child {
  width: 50%;
}

.form-row-city-state-post .form-field:nth-child(2),
.form-row-city-state-post .form-field:nth-child(3) {
  width: 25%;
}

.form-row-city-post .form-field:first-child {
  width: 75%;
}

.form-row-city-post .form-field:nth-child(2) {
  width: 25%;
}

.form-row-address-appartment .form-field:only-child {
  width: 100%;
}

.formFieldIsRequired .inputText {
  border-bottom: 2px solid var(--input-border-color);
}

.formFieldHasError .inputText {
  border-bottom: 2px solid var(--color-error);
}

.formFieldIsValid .inputText {
  border-bottom: 2px solid var(--color-success);
}

.form-actions {
  padding: 0;
  display: flex;
  justify-content: center;
}

/* :global(button.button-submit) {
  align-items: center;
  background-color: var(--button-background-color-primary);
  border: 0;
  border-radius: 28px;
  color: var(--button-text-color-primary);
  height: 56px;
  display: flex;
  justify-content: center;
  flex-direction: row;
  font-weight: 500;
  padding: 0 50px;
  cursor: pointer;
}

:global(button.buttonSubmit:disabled) {
  background-color: var(--button-background-color-disabled);
  cursor: default;
} */

.inputErrorMessage {
  color: var(--color-error);
  font-size: 12px;
  line-height: 16px;
  margin: 5px 0 0;
}

.labelOptional span {
  text-transform: lowercase;
}

@media(max-width: 992px) {
  legend {
    font-size: 16px;
    padding-top: 0;
    padding-bottom: 20px;
  }

  /* :global(.form-row) {
    flex-direction: column;
  } */

  .form-row-items-1 .form-field {
    width: 100%;
  }

  .form-row-items-2 .form-field {
    width: 100%;
    padding-left: 0;
  }

  .form-row-address-appartment .form-field:first-child {
    width: 100%;
  }

  .form-row-address-appartment .form-field:nth-child(2) {
    width: 100%;
    padding-left: 0;
  }

  .form-row-city-state-post {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .form-row-city-state-post .form-field:first-child {
    width: 100%;
  }

  .form-row-city-state-post .form-field:nth-child(2) {
    width: 40%;
    padding-left: 0;
  }
  .form-row-city-state-post .form-field:nth-child(3) {
    width: 60%;
  }
}

.btn {
    display: flex;
    justify-content: center;
    line-height: 1.1;
    border-radius: 28px;
    border: 1px solid;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    font-family: var(--primary-font-family);
    width: 100%;
}

.btn-one-line {
    width: auto;
    max-width: auto;
    padding: 1.1em 2em;
    white-space: nowrap;
}

.btn-small {
    font-size: 14px;
    padding: 16px 30px 15px;
    max-width: 140px;
}

.btn-medium {
    font-size: 16px;
    padding: 16px 30px 15px;
    max-width: 300px;
}

.btn-large {
    font-size: 18px;
    padding: 15px 30px 14px;
    max-width: 235px;
}

.btn-solid-light {
    color: var(--button-light-text-color);
    background-color: var(--button-light-background-color);
    border-color: var(--button-light-background-color);
}

.btn-solid-light:hover,
.btn-solid-light:focus,
.btn-solid-light:active {
    opacity: .9;
}

.btn-solid-light:disabled {
    background-color: var(--button-background-color-disabled);
    cursor: default;
}

.btn-solid-dark {
    color: var(--button-dark-text-color);
    background-color: var(--button-dark-background-color);
    border-color: var(--button-dark-background-color);
}

.btn-solid-dark:hover,
.btn-solid-dark:focus,
.btn-solid-dark:active {
    opacity: .9;
}

.btn-solid-dark:disabled {
    background-color: var(--button-dark-background-disabled-color);
    border-color: var(--button-dark-background-disabled-color);
    cursor: default;
}

.btn-outline {
    color: var(--button-outline-text-color);
    background-color: var(--button-outline-background-color);
    border-color: var(--button-outline-border-color);
}

.btn-outline:hover,
.btn-outline:focus,
.btn-outline:active {
    opacity: .9;
}

.btn-outline:disabled {
    background-color: var(--button-background-color-disabled);
    cursor: default;
}

div#solvvy-v4-launch-widget {
    bottom: 74px !important;
    transition: bottom 0.3s ease;
}
@media(min-width: 993px) {
    .footer-active div#solvvy-v4-launch-widget {
        bottom: 370px !important;
        transition: bottom 0.2s ease;
    }
}

@media(max-width: 992px) {
    div#solvvy-v4-launch-widget.solvvy-v4-launch-widget {
        bottom: 136px !important;
    }
}

div#solvvy-v4-launch-widget {
    bottom: 74px !important;
    transition: bottom 0.3s ease;
}

.footer-active div#solvvy-v4-launch-widget {
    bottom: 360px !important;
    transition: bottom 0.2s ease;
}

div#solvvy-v4-launch-widget {
  bottom: 74px !important;
  transition: bottom 0.3s ease;
}
@media(min-width: 993px) {
  .footer-active div#solvvy-v4-launch-widget {
    bottom: 370px !important;
    transition: bottom 0.2s ease;
  }
}

@media(max-width: 992px) {
  div#solvvy-v4-launch-widget.solvvy-v4-launch-widget {
    bottom: 136px !important;
  }
}

div#solvvy-v4-launch-widget {
  bottom: 74px !important;
  transition: bottom 0.3s ease;
}

.footer-active div#solvvy-v4-launch-widget {
  bottom: 360px !important;
  transition: bottom 0.2s ease;
}

div#solvvy-v4-launch-widget {
  bottom: 74px !important;
  transition: bottom 0.3s ease;
}
@media(min-width: 993px) {
  .footer-active div#solvvy-v4-launch-widget {
    bottom: 370px !important;
    transition: bottom 0.2s ease;
  }
}

@media(max-width: 992px) {
  div#solvvy-v4-launch-widget.solvvy-v4-launch-widget {
    bottom: 136px !important;
  }
}

div#solvvy-v4-launch-widget {
  bottom: 74px !important;
  transition: bottom 0.3s ease;
}

.footer-active div#solvvy-v4-launch-widget {
  bottom: 360px !important;
  transition: bottom 0.2s ease;
}

@media(min-width: 1440px) {
  div#solvvy-v4-launch-widget {
    max-width: 150px;
    left: calc(1440px - 150px);
    margin: 0 auto;
  }
}

.webp .home-adaptive-wifi-bg {
  background-image: url("/static/images/illustration-plume-never-a-dull-moment.webp");
}

.no-webp .home-adaptive-wifi-bg {
  background-image: url("/static/images/illustration-plume-never-a-dull-moment.png");
}

.webp .home-parental-controls-bg {
  background-image: url("/static/images/illustration-plume-make-internet-a-safer-place.webp");
}

.no-webp .home-parental-controls-bg {
  background-image: url("/static/images/illustration-plume-make-internet-a-safer-place.png");
}

.webp .pod-innards-bg {
  background-image: url("/static/images/pod-innards-big.webp");
}

.no-webp .pod-innards-bg {
  background-image: url("/static/images/pod-innards-big.png");
}

.webp .about-hero-bg {
  background-image: url("/static/images/about-hero-big.webp");
}

.no-webp .about-hero-bg {
  background-image: url("/static/images/about-hero-big.jpg");
}

@media only screen and (max-width: 760px) {
  .webp .about-hero-bg {
    background-image: url("/static/images/about-hero-small.webp");
  }

  .no-webp .about-hero-bg {
    background-image: url("/static/images/about-hero-small.jpg");
  }
}

.webp .careers-hero-bg {
  background-image: url("/static/images/careers-hero-big.webp");
}

.no-webp .careers-hero-bg {
  background-image: url("/static/images/careers-hero-big.jpg");
}

.webp .explore-app-hero-bg {
  background-image: url("/static/images/hero-explore-app.webp");
}

.no-webp .explore-app-hero-bg {
  background-image: url("/static/images/hero-explore-app.png");
}

.webp .explore-app-simple-setup-bg {
  background-image: url("/static/images/img-simple-setup.webp");
}

.no-webp .explore-app-simple-setup-bg {
  background-image: url("/static/images/img-simple-setup.png");
}

.webp .explore-app-wifi-family-bg {
  background-image: url("/static/images/photo-kid.webp");
}

.no-webp .explore-app-wifi-family-bg {
  background-image: url("/static/images/photo-kid.png");
}

.theme-promo-sunrise .sticky-header-stack {
  background-color: #fff;
}
.theme-promo-sunrise .accent-text-color,
.theme-promo-sunrise .accent-text-color strong {
  color: #e6003c !important;
}
.theme-promo-sunrise .accent-bg-color {
  background: #e6003c !important;
  border-color: #e6003c !important;
}
.theme-promo-sunrise .accent-link-color,
.theme-promo-sunrise .accent-link-color strong {
  color: #95223d !important;
}
.theme-promo-sunrise .accent-hide {
  display: none;
}
.theme-promo-sunrise .accent-show {
  display: block;
}
.theme-promo-sunrise #userActions .drop-arrow svg path {
  stroke: #e6003c;
}
.theme-promo-sunrise .accent-svg-header svg path {
  fill: #e6003c;
}
.theme-promo-sunrise .accent-svg-header svg g circle {
  stroke: #e6003c;
}
.theme-promo-sunrise .accent-svg-color svg g {
  stroke: #e6003c;
}
.theme-promo-sunrise .linkContainer .accent-svg-color svg g {
  stroke: #e6003c;
}
.theme-promo-sunrise .accent-svg.accent-svg-color svg g {
  fill: #e6003c;
}
.theme-promo-sunrise .accent-svg.accent-svg-color svg path {
  fill: #e6003c;
}
.theme-promo-sunrise .accent-select-color {
  color: #e6003c !important;
}
.theme-promo-sunrise .accent-border-color {
  border-color: #e6003c !important;
}
/* Header */
.theme-promo-sunrise .btn-solid-dark {
  background: #e6003c;
  border-color: #e6003c;
}
.theme-promo-sunrise .btn-solid-dark:disabled {
  opacity:0.5;
}
/*Product Selector*/
.theme-promo-sunrise .selectListContainer .accent-select-color ul li.active a {
  color: #e6003c;
  font-weight: 500;
}
/* Header */
.theme-promo-sunrise .selectListContainer .accent-select-color ul li.active {
  background: #faccd8;
}
.theme-promo-sunrise #IncludedSuperPod .section-subtitle,
.theme-promo-sunrise .dropdown-colors{
  visibility: hidden;
}
.theme-promo-sunrise .accent-sunrise-store {
  display:block
}
@media only screen and (min-width: 993px) {
  .theme-promo-sunrise #superPodAddon .media-container {
    min-height: 140px;
  }
}
@media(max-width: 992px) {
  .theme-promo-sunrise .membershiplink a,
  .theme-promo-sunrise #membership_button_addon{
    bottom: 0;
  }
}
@media(max-width: 760px) {
  .theme-promo-sunrise .dropdown-qty {
     float:right;
  }

}
/*Product Configurator*/
.theme-promo-sunrise #configuratorPage .configurator .details-cart {
  min-height:100vh;
}
/*Product Selector*/
.theme-promo-sunrise .options .option-item .label input:checked + span:before {
  background: #e6003c !important;
}
.theme-promo-sunrise #configuratorPage #configurator-bundles .bundle-container.active a {
  color: #e6003c;
}
.theme-promo-sunrise .accent-svg.accent-svg-color svg.home-icon g {
  stroke: none;
}
.theme-promo-sunrise #configurator-bundles .membershipBtn .label {
  visibility: hidden;
}
@media(max-width: 992px) {
  .theme-promo-sunrise #configuratorPage #configurator-bundles  .bundle-title {
    display: none;
  }
  .theme-promo-sunrise #configuratorPage #configurator-bundles  .bundle-container {
    margin: 40px 0 0;
  }
}
@media(max-width: 760px) {
  .theme-promo-sunrise .dropdown-qty {
    float:right;
  }
  .theme-promo-sunrise .accent-hide-m {
    display: none;
  }
  .theme-promo-sunrise #configuratorPage #configurator-bundles  .bundle-container {
    margin: 20px 0 0;
  }
  .theme-promo-sunrise  #configuratorPage .mainContainer {
    padding:0 0 60px;
  }
}
@media only screen and (min-width: 993px) {
  .theme-promo-sunrise #configurator-bundles .bundle-title {
    padding: 5px 10px 15px 20px;
  }
}
@media only screen and (min-width: 1280px) {
  .theme-promo-sunrise #configurator-bundles .bundle-title {
    padding: 5px 40px 34px 75px;
  }
}
/* Checkout Page */
.theme-promo-sunrise #checkoutPage .accent-svg-path svg path {
  fill: none;
  stroke: #fff;
}
/*Product Configurator*/
.theme-promo-sunrise #checkoutPage .accent-svg-path svg rect {
  fill: #e6003c;
  stroke: #e6003c;
}
.theme-promo-sunrise #checkoutPage .accent-text-color-black {
  color: #939597;
}
.theme-promo-sunrise #checkoutPage .shipping-method-active .accent-text-color-black {
  color: #2e2e2e;
  text-transform: none;
}
.theme-promo-sunrise #billingFormToggler + .form-row.form-row-items-1 .form-field > div {
  margin-bottom: 0;
}
@media only screen and (min-width: 993px) {
  .theme-promo-sunrise.checkout-page  .accent-checkout-sidebar {
    top: 89px;
  }
  .theme-promo-sunrise .checkout-container-inner-new fieldset {
    margin-left: 0;
    margin-right: 0;
    padding-bottom: 23px;
  }
  .theme-promo-sunrise #billingFormToggler + .form-row.form-row-items-1 .form-field {
    margin-bottom: 0;
  }
  .theme-promo-sunrise #billingForm + #shipping .form-row.form-row-items-1:not(:first-child) .form-field {
    margin-bottom: 7px;
  }
  .theme-promo-sunrise #checkoutPage #sidebarCheckoutButton {
    margin-top: 15px;
  }
  .theme-promo-sunrise span[data-content=" (optional)"] {
    white-space: nowrap;
  }
}
@media(max-width: 992px) {
  .theme-promo-sunrise #checkoutPage .accent-checkoutHeading,
  .order-summary-open .theme-promo-sunrise.checkout-page .accent-mbg-color {
    top: 89px;
  }
  .theme-promo-sunrise.checkout-page .checkout-container-inner-new {
    padding: 125px 18px 70px;
  }
  .theme-promo-sunrise.checkout-page .accent-mbg-color{
    background: #444444;
  }
  .theme-promo-sunrise #billingForm + #shipping .form-row.form-row-items-1:first-child .form-field {
    margin-bottom: 40px;
  }
  .theme-promo-sunrise #billingFormToggler + .form-row.form-row-items-1 {
    clear: both;
  }
  .theme-promo-sunrise #billingFormToggler > div {
    margin-left: 30px;
  }
  .theme-promo-sunrise #billingFormToggler > div span:first-child {
    margin-left: -30px;
  }
  .theme-promo-sunrise #sidebarPricing {
    display: none;
  }
}
@media(max-width: 760px) {
  .theme-promo-sunrise #checkoutPage .accent-checkoutHeading,
  .order-summary-open .theme-promo-sunrise.checkout-page .accent-mbg-color{
    top:72px;
  }
}
.theme-promo-sunrise #checkoutPage .accent-checkoutHeading .accent-bg-color {
  background: #444444 !important;
  border-color: #444444 !important;
}
.theme-promo-sunrise #checkoutPage #sidebarCheckoutButton {
  background: #e6003c;
}
.theme-promo-sunrise #checkoutPage .shipping-method-active {
  border-color: #c6c6c6;
}
.theme-promo-sunrise #checkoutPage .shipping-method-active:after {
  border: solid 4px #e6003c;
}
.theme-promo-sunrise #checkoutPage form .form-field input,
.theme-promo-sunrise #checkoutPage form .form-field select {
  color: #2e2e2e;
}
.theme-promo-sunrise iframe .form-element input,
.theme-promo-sunrise iframe .form-element select {
  color:#2e2e2e;
}
.theme-promo-sunrise #sidebarPricing {
  background-color: rgba(230, 0, 60, 0.05);
}
.theme-promo-sunrise #sidebarFooter address {
  color: #939597;
}
.theme-promo-sunrise .invoice-page .checkout-container-new {
  padding-bottom:0;
}
.theme-promo-sunrise #invoicePage + .sticky-footer-stack {
  display: none;
}
/* Account Page */
.theme-promo-sunrise .dashboard-title h3,
.theme-promo-sunrise .dashboard-title h4,
.theme-promo-sunrise .dashboard-subtitle {
  color: #e6003c !important;
}
/* Checkout Page */
.theme-promo-sunrise .titleActionButton {
  color: #3C396F;
}
.theme-promo-sunrise .form-row input,
.theme-promo-sunrise .form-row select {
  color:#2e2e2e !important;
}
.theme-promo-sunrise .accent-svg-path svg path {
  fill: none;
  stroke: #fff;
}
.theme-promo-sunrise .accent-svg-path svg rect {
  fill: #e6003c;
  stroke: #e6003c;
}

.dropdown-2zaByPNy {
  background-color: var(--navigation-dropdown-background-color);
  box-shadow: var(--box-shadows-navbar);
  position: fixed;
  top: 80px;
  width: 100%;
  max-height: 0;
  max-width: 1440px;
  display: block;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 6;
  pointer-events:none;
}

.dropdown-2zaByPNy.open-2_LGyXx6 {
  max-height: 353px;
  z-index: 7;
  opacity: 1;
  pointer-events: all;
}

@media(max-width: 992px) {
  .dropdown-2zaByPNy.open-2_LGyXx6 {
    max-height: 600px;
    pointer-events: all;
  }
}

@media(max-width: 992px) {
  .dropdown-2zaByPNy {
    border-top: 0;
    background-color: transparent;
    box-shadow: none;
    position: relative;
    top: 40px;
  }
}

.container-qhEHEeyf {
  width: 100%;
  max-width: 1440px;
  height: 100%;
  padding: 0 60px;
  margin: 0 auto;
}

@media(max-width: 992px) {
  .container-qhEHEeyf {
    padding: 0;
  }
}

.content-3caJs9BK {
  display: flex;
  justify-content: center;
  max-width: 80%;
  margin: auto;
  padding-bottom: 72px;
  padding-top: 56px;
}

@media(max-width: 992px) {
  .content-3caJs9BK {
    max-width: 100%;
    padding-top: 0;
  }
}

@media(max-width: 760px) {
  .content-3caJs9BK {
    flex-direction: column;
  }
}

.column-2XrNLiod {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 33.33%;
  margin-left: 35px;
  margin-right: 35px;
  cursor: pointer;
  visibility: hidden;
}

@media(max-width: 992px) {
  .column-2XrNLiod {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
  }
}

@media(max-width: 760px) {
  .column-2XrNLiod {
    border-bottom: 1px solid #dbdbdb;
  }
}

.dropdown-2zaByPNy.open-2_LGyXx6 .column-2XrNLiod:nth-child(1) {
  -webkit-animation: slideUp-37Hu9MV9 .6s cubic-bezier(0.215, 0.61, 0.355, 1) .4s forwards;
  -moz-animation: slideUp-37Hu9MV9 .6s cubic-bezier(0.215, 0.61, 0.355, 1) .4s forwards;
  -ms-animation: slideUp-37Hu9MV9 .6s cubic-bezier(0.215, 0.61, 0.355, 1) .4s forwards;
  -o-animation: slideUp-37Hu9MV9 .6s cubic-bezier(0.215, 0.61, 0.355, 1) .4s forwards;
  animation: slideUp-37Hu9MV9 .6s cubic-bezier(0.215, 0.61, 0.355, 1) .4s forwards;
}  

.dropdown-2zaByPNy.open-2_LGyXx6 .column-2XrNLiod:nth-child(2) {
  -webkit-animation: slideUp-37Hu9MV9 .6s cubic-bezier(0.215, 0.61, 0.355, 1) .8s forwards;
  -moz-animation: slideUp-37Hu9MV9 .6s cubic-bezier(0.215, 0.61, 0.355, 1) .8s forwards;
  -ms-animation: slideUp-37Hu9MV9 .6s cubic-bezier(0.215, 0.61, 0.355, 1) .8s forwards;
  -o-animation: slideUp-37Hu9MV9 .6s cubic-bezier(0.215, 0.61, 0.355, 1) .8s forwards;
  animation: slideUp-37Hu9MV9 .6s cubic-bezier(0.215, 0.61, 0.355, 1) .8s forwards;
} 

.dropdown-2zaByPNy.open-2_LGyXx6 .column-2XrNLiod:nth-child(3) {
  -webkit-animation: slideUp-37Hu9MV9 .6s cubic-bezier(0.215, 0.61, 0.355, 1) 1.2s forwards;
  -moz-animation: slideUp-37Hu9MV9 .6s cubic-bezier(0.215, 0.61, 0.355, 1) 1.2s forwards;
  -ms-animation: slideUp-37Hu9MV9 .6s cubic-bezier(0.215, 0.61, 0.355, 1) 1.2s forwards;
  -o-animation: slideUp-37Hu9MV9 .6s cubic-bezier(0.215, 0.61, 0.355, 1) 1.2s forwards;
  animation: slideUp-37Hu9MV9 .6s cubic-bezier(0.215, 0.61, 0.355, 1) 1.2s forwards;
} 

@keyframes slideUp-37Hu9MV9 {
  0% { visibility: hidden; transform: translateY(20px); }
  100%  { visibility: visible; transform: translateY(0); }
}

@-moz-keyframes slideUp-37Hu9MV9 {
  0%  { visibility: hidden; -moz-transform: translateY(20px); }
  100%   { visibility: visible; -moz-transform: translateY(0); }
}

@-webkit-keyframes slideUp-37Hu9MV9 {
  0%  { visibility: hidden; -webkit-transform: translateY(20px); }
  100%   { visibility: visible; -webkit-transform: translateY(0); }
}

@-ms-keyframes slideUp-37Hu9MV9 {
  0%  { visibility: hidden; -ms-transform: translateY(20px); }
  100%   { visibility: visible; -ms-transform: translateY(0); }
}

@-o-keyframes slideUp-37Hu9MV9 {
  0% { visibility: hidden; -o-transform: translateY(20px); }
  100%   { visibility: visible; -o-transform: translateY(0); }
}

.img-container-5jJAiWZo {
  width: 88px;
  height: 88px;
  margin-bottom: 20px;
}

@media(max-width: 992px) {
  .img-container-5jJAiWZo {
    width: 70px;
    height: 70px;
    margin-bottom: 10px;
  }
}

.img-container-5jJAiWZo img {
  width: 100%;
  height: auto;
}

.section-subtitle-3tx_73uq {
  color: var(--primary-text-color);
}

@media(max-width: 992px) {
  .section-subtitle-3tx_73uq {
    font-size: 18px;
    text-transform: none;
    color: var(--navigation-text-color);
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: normal;
  }
}

.info-15VXkZvt {
  display: flex;
  justify-content: center;
  padding-top: 36px;
  padding-bottom: 40px;
  opacity: 0;
}

@media(max-width: 992px) {
  .info-15VXkZvt {
    display: none;
  }
}

.dropdown-2zaByPNy.open-2_LGyXx6 .info-15VXkZvt {
  -webkit-animation: fadeIn-1X3A3rJG .6s cubic-bezier(0.215, 0.61, 0.355, 1) 1.6s forwards;
  -moz-animation: fadeIn-1X3A3rJG .6s cubic-bezier(0.215, 0.61, 0.355, 1) 1.6s forwards;
  -ms-animation: fadeIn-1X3A3rJG .6s cubic-bezier(0.215, 0.61, 0.355, 1) 1.6s forwards;
  -o-animation: fadeIn-1X3A3rJG .6s cubic-bezier(0.215, 0.61, 0.355, 1) 1.6s forwards;
  animation: fadeIn-1X3A3rJG .6s cubic-bezier(0.215, 0.61, 0.355, 1) 1.6s forwards;
}

@keyframes fadeIn-1X3A3rJG {
  0% { opacity: 0; }
  100%   { opacity: 1; }
}

.border-top-1Wkb9MYr {
  border-top: 1px solid #dbdbdb;
  opacity: .5;
  width: 100%;
}

.info-text-2V_r4f1- {
  font-size: 14px;
  font-weight: normal;
  color: var(--primary-text-color);
  letter-spacing: 2.3px;
}

.info-text-2V_r4f1-:first-child {
  margin-right: 70px;
}

.info-text-2V_r4f1-:last-child {
  margin-right: 50px;
}

.user-actions-2pyi5Of4 {
  position: relative;
  display: inline-block;
}

.user-actions-user-24k6osbq {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.user-actions-user-text-Dz-01NEy {
  display: flex;
  align-items: center;
  padding-left: 5px;
  color: var(--primary-text-color);
}

.user-actions-user-text-Dz-01NEy svg {
  margin-left: 5px;
  margin-bottom: 1px;
  pointer-events: none;
}

.user-actions-user-text-Dz-01NEy.active-3qTvsjbs svg {
  margin-bottom: 1px;
}

.user-actions-user-icon-oRfv3dzO {
  position: relative;
  height: 20px;
}

.user-actions-user-icon-oRfv3dzO svg {
  width: 20px;
  height: 20px;
  overflow: visible;
}

.user-actions-menu-16MhIlNl {
  position: absolute;
  display: none;
  right: -6px;
  top: 32px;
  background: white;
  border-radius: 10px;
  box-shadow: 1px 2px 9px 1px rgba(32, 32, 32, 0.1);
  width: 228px;
  z-index: 10;
}

.user-actions-menu-active-39OPM6GU {
  display: block;
}

.theme-promo-sunrise .user-actions-menu-active-39OPM6GU {
  display: flex;
  flex-direction: column;
}
.theme-promo-sunrise .user-actions-menu-item-1tYWT8sA:last-child {
  border-bottom: 1px solid #eaeaea;
  order: -2;
}
.theme-promo-sunrise .account-menu.user-actions-menu-item-1tYWT8sA {
  order: -2;
}
.theme-promo-sunrise .user-actions-menu-item-exposed-3yfI2Sqm {
  order: -1;
}
.theme-promo-sunrise .user-actions-menu-item-1tYWT8sA:first-child {
  border-bottom: none;
}

.user-actions-menu-item-1tYWT8sA {
  border-bottom: 1px solid #eaeaea;
  padding: 16px 20px 15px 0;
  margin-left: 20px;
}

.user-actions-menu-item-1tYWT8sA span {
  color: var(--primary-text-color);
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  cursor: pointer;
  display: block;
}
.user-actions-menu-item-1tYWT8sA .buy-pods-HxEwfc3A {
  color: var(--tertiary-text-color);
}

.user-actions-menu-item-1tYWT8sA small {
  display: block;
  font-size: 14px;
  line-height: 1.2;
  color: var(--secondary-text-color);
  padding-top: 4px;
}

.user-actions-menu-item-exposed-3yfI2Sqm span {
  color: var(--tertiary-text-color);
}

.user-actions-menu-item-1tYWT8sA:last-child {
  border-bottom: 0;
}

.user-menu-overlay-3Jn3Neit {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  z-index: 9;
  background: pink;
}
.clip-text-13hzuWRN {
  clip-path: inset(100%);
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px;
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
}



@media only screen and (max-width: 992px) {
  .user-actions-2pyi5Of4 {
    margin-right: 0;
  }

  .user-actions-menu-16MhIlNl {
    margin-right: 0px;
  }
}

.bag-eWECL7lK {
  display: block;
  margin-right: 15px;
}
.bag-eWECL7lK svg {
  width: 20px;
  height: 20px;
}

.bar_active-3LIa9Dyh {
  color: #6269ff;
}

.bag_display-_-EwiLDk {
  cursor: pointer;
  display: flex;
  align-items: center;
}

.bag_icon-3SLejRDQ {
  position: relative;
  display: block;
  height: 20px;
}

.bag_text-2RtNB2xm {
  background: var(--button-dark-background-color);
  color: var(--color-white);
  font-size: 12px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  padding: 0;
  display: inline-block;
  line-height: 20px;
  position: relative;
  right: 4px;
  text-align: center;
}
.theme-promo-sunrise .bag_text-2RtNB2xm {
  padding: 1px 0;
}
body[data-user-agent*="Win"] .theme-promo-sunrise .bag_text-2RtNB2xm {
  padding: 0;
  line-height: 18px;
}
.button_shop_now-1XDa8gg9 {
  background: #6269ff;
  border-radius: 25px;
  color: white !important;
  display: inline-block;
  height: 50px;
  line-height: 50px !important;
  font-weight: 700;
  padding: 0 30px;
  opacity: 1 !important;
  white-space: nowrap;
  vertical-align: top;
  text-decoration: none;
}
.clip-text-1jSXLLXI {
  clip-path: inset(100%);
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px;
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
}

@media screen and (max-width: 1000px) {
  .button_shop_now-1XDa8gg9 {
    padding: 0 15px;
  }
}

@media only screen and (max-width:760px) {
  .button_shop_now-1XDa8gg9 {
    display: none;
  }
}

.not-found-1td0askE {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: calc(100vh - 80px);
  margin: 40px 0;
}

.section-title-qfGbPi-d {
  color: var(--primary-text-color);
  margin-bottom: 12px;
}

@media(max-width: 760px) {
  .section-title-qfGbPi-d {
    max-width: 220px;
    margin-bottom: 4px;
    margin-left: auto;
    margin-right: auto;
  }
}  

.section-text-3nxXxttL {
  color: var(--secondary-text-color);
  margin-bottom: 40px;
}

@media(max-width: 760px) {
  .section-text-3nxXxttL {
    margin-bottom: 20px;
  }
}

.img-container-3BVGqPNf {
  max-width: 400px;
  margin: auto;
}

.img-container-3BVGqPNf img {
  width: 100%;
  height: auto;
}

.about-hero-FriHT1Mu {
  position: relative;
  background: white;
}

.about-hero-content-2KKqg-h9 {
  position: relative;
  width: 80%;
  margin: auto;
  padding: 80px 60px;
}

.about-hero-background-uuPp9yWk {
  background-repeat: no-repeat;
  background-position: top;
  height: 1377px;
  position: absolute;
  width: 100%;
}

.section-title-3Lj3AF7k {
  color: var(--primary-text-color);
  margin-bottom: 10px;
}

.section-subtitle-2zxdw6Ws {
  color: var(--primary-text-color);
  width: 587px;
  max-width: 100%;
  padding-bottom: 777px;
}

.section-text-1G0u15m6 {
  color: var(--secondary-text-color);
  width: 569px;
  max-width: 100%;
  margin-bottom: 12px;
}

@media only screen and (max-width: 760px) {

  .about-hero-content-2KKqg-h9 {
    width: 100%;
    margin: 0;
    padding: 40px 30px;
  }

  .about-hero-background-uuPp9yWk {
    background-position: 100% -80px;
    height: 562px;
  }

  .section-subtitle-2zxdw6Ws {
    margin-bottom: 50px;
    width: 228px;
    padding-bottom: 325px;
  }

  .section-text-1G0u15m6 {
    padding-bottom: 35px;
    width: 100%;
  }
}


.explore-app-hero-1FBbCHvE {
  background-size: 101%;
  background-repeat: no-repeat;
  background-position: top;
  height: 700px;
  background-color: var(--secondary-background-color);
}

@media(max-width: 992px) {
  .explore-app-hero-1FBbCHvE {
    background-size: cover;
    background-position: right;
  }
}

@media(max-width: 760px) {
  .explore-app-hero-1FBbCHvE {
    background-size: contain;
    background-position: top;
    height: 100%;
  }
}

.content-teoni1qI {
  display: flex;
  align-items: center;
  height: 100%;
  width: 80%;
  margin: auto;
}

@media(max-width: 992px) {
  .content-teoni1qI {
    align-items: flex-start;
    width: 100%;
  }
}

.column-left-29dAhaEy {
  display: flex;
  flex-direction: column;
  margin-top: -60px;
  width: 50%;
}

@media(max-width: 992px) {
  .column-left-29dAhaEy {
    margin-top: 60px;
    width: 100%;
  }
}

@media(max-width: 760px) {
  .column-left-29dAhaEy {
    margin-top: 220px;
  }
}

.section-title-yuE5LDsh {
  color: var(--primary-text-color);
  margin-bottom: 10px;
  max-width: 400px;
}

.section-text-3WfYViG1 {
  color: var(--secondary-text-color);
  max-width: 317px;
}

.plume-app-22rBGWDM {
  font-family: Wigrum;
  font-size: 18px;  
  line-height: 1.44;
  letter-spacing: normal;
  color: #939597;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.explore-app-device-usage-24S3wscB {
  background-color: var(--secondary-background-color);
  padding-top: 70px;
}

@media(max-width: 992px) {
  .explore-app-device-usage-24S3wscB {
    padding-top: 40px;
  }
}

.content-2M7V21Ap {
  display: flex;
  justify-content: space-between;
  width: 80%;
  height: 100%;
  margin: auto;
}

@media(max-width: 992px) {
  .content-2M7V21Ap {
    width: 100%;
  }
}

@media(max-width: 760px) {
  .content-2M7V21Ap {
    flex-direction: column;
  }
}

.column-8amU2prc {
  display: flex;
  flex-direction: column;
}

.section-icon-olHm-VK2 {
  margin-bottom: 21px;
  max-width: 36px;
}

.img-container-b6oLTCsR {
  max-width: 360px;
  box-shadow: var(--box-shadows-images);
  background-color: #c8c8c8;
  border-radius: 25px;
  margin-bottom: 40px;
}

@media(max-width: 992px) {
  .img-container-b6oLTCsR {
    max-width: 290px;
  }
}

@media(max-width: 760px) {
  .img-container-b6oLTCsR {
    max-width: 240px;
    margin-left: auto;
    margin-right: auto;
  }

  .img-container-b6oLTCsR.img-order-sm-31Jud-iS {
    order: 1;
  }
}

.img-container-b6oLTCsR img {
  display: block;
  width: 100%;
  height: auto;
}

.section-title--XFcqn0i {
  color: var(--primary-text-color);
  max-width: 387px;
  margin-bottom: 10px;
}

@media(max-width: 992px) {
  .section-title--XFcqn0i {
    max-width: 320px;
  }
}

.section-text-2rBC6i7F {
  color: var(--secondary-text-color);
  max-width: 308px;
  margin-bottom: 36px;
}
.explore-app-simple-setup-Ia751P3V {
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: top;
  background-color: var(--secondary-background-color);
  display: flex;
  align-items: flex-end;
  min-height: 990px;
  padding-bottom: 100px;
}

@media(max-width: 992px) {
  .explore-app-simple-setup-Ia751P3V {
    min-height: 600px;
    margin-top: -20px;
    padding-bottom: 0;
  }
}

@media(max-width: 760px) {
  .explore-app-simple-setup-Ia751P3V {
    background-position: bottom;
    align-items: flex-start;
    min-height: 500px;
    margin-top: 0;
  }
}

.content-3fWPCpNO {
  display: flex;
  justify-content: space-between;
  width: 70%;
  height: 100%;
  margin: auto;
}

@media(max-width: 992px) {
  .content-3fWPCpNO {
    width: 100%;
  }
}

@media(max-width: 760px) {
  .content-3fWPCpNO {
    flex-direction: column;
  }
}

.column-left-1dqwqjPK {
  display: flex;
  flex-direction: column;
}

.column-right-3m-CXJUu {
  display: flex;
  flex-direction: column;
  margin-top: 60px;
  padding-right: 60px;
}

@media(max-width: 992px) {
  .column-right-3m-CXJUu {
    padding-right: 0;
  }
}

@media(max-width: 760px) {
  .column-right-3m-CXJUu {
    margin-top: 0;
    padding-right: 0;
  }
}

.section-icon-14u2cZdP {
  margin-bottom: 21px;
  max-width: 36px;
}

.section-title-3WTDh003 {
  color: var(--primary-text-color);
  max-width: 328px;
  margin-bottom: 10px;
}

@media(max-width: 992px) {
  .section-title-3WTDh003 {
    max-width: 290px;
  }
}

.section-text-35Ns7cUC {
  color: var(--secondary-text-color);
  max-width: 380px;
  margin-bottom: 32px;
}

.section-link-26eF7d2i {
  display: flex;
  align-items: center;
  color: var(--tertiary-text-color);
  opacity: .9;
  background-color: transparent;
  border: 0;
  margin-top: 0;
  cursor: pointer;
}

.section-link-26eF7d2i:hover {
  opacity: .8;
}

.icon-play-RAEPOxTd {
  margin-right: 12px;
}

.explore-app-wifi-family-3Yo2qUZ0 {
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: top;
  height: 800px;
  background-color: var(--secondary-background-color);
}

@media(max-width: 992px) {
  .explore-app-wifi-family-3Yo2qUZ0 {
    background-size: cover;
    background-position: -200px;
    height: 690px;
  }
}

@media(max-width: 760px) {
  .explore-app-wifi-family-3Yo2qUZ0 {
    background-size: contain;
    background-position: top;
    height: 100%;
  }
}

.content-f0HdxP_k {
  display: flex;
  justify-content: center;
  height: 100%;
  width: 80%;
  padding-left: 120px;
  padding-top: 140px;
  margin: auto;
}

@media(max-width: 992px) {
  .content-f0HdxP_k {
    justify-content: flex-end;
    width: 100%;
    padding-left: 0;
  }
}

@media(max-width: 760px) {
  .content-f0HdxP_k {
    padding-top: 0;
  }
}

.column-left-2nxiNrbi {
  display: flex;
  flex-direction: column;
  width: 50%;
}

@media(max-width: 760px) {
  .column-left-2nxiNrbi {
    width: 100%;
  }
}

@media(max-width: 760px) {
  .column-left-2nxiNrbi {
    margin-top: 240px;
  }
}

.section-title-3_9wrUsO {
  color: var(--primary-text-color);
  margin-bottom: 10px;
  max-width: 430px;
}

.section-text-hY3ncfBp {
  color: var(--secondary-text-color);
  max-width: 380px;
}

.explore-app-your-home-2UODPrjc {
  background-color: var(--secondary-background-color);
  padding-top: 120px;
  padding-bottom: 60px;
}

@media(max-width: 992px) {
  .explore-app-your-home-2UODPrjc {
    padding-top: 40px;
  }
}

.content-2wLrOsGT {
  display: flex;
  justify-content: space-between;
  width: 80%;
  height: 100%;
  margin: auto;
}

@media(max-width: 992px) {
  .content-2wLrOsGT {
    width: 100%;
  }
}

@media(max-width: 760px) {
  .content-2wLrOsGT {
    flex-direction: column;
  }
}

.column-3MbCQ_jb {
  display: flex;
  flex-direction: column;
}

.section-icon-30IJvOSB {
  position: absolute;
  max-width: 36px;
  top: 0;
  left: -80px;
}

.img-container-3dORj8j2 {
  max-width: 360px;
  box-shadow: var(--box-shadows-images);
  background-color: #c8c8c8;
  border-radius: 25px;
  margin-bottom: 80px;
}

@media(max-width: 992px) {
  .img-container-3dORj8j2 {
    max-width: 290px;
  }
}

@media(max-width: 760px) {
  .img-container-3dORj8j2 {
    max-width: 240px;
    margin-left: auto;
    margin-right: auto;
  }

  .img-container-3dORj8j2.img-order-sm-3ksBVYrW {
    order: 1;
  }
}

.img-set-up-pnvPktj3 {
  margin-top: -300px;
  margin-bottom: 105px;
  z-index: 1;
}

@media(max-width: 760px) {
  .img-set-up-pnvPktj3 {
    margin-top: 0;
    margin-bottom: 40px;
  }
}

.img-set-up-pnvPktj3 img {
  border-radius: 20px;
}

.img-container-3dORj8j2 img {
  display: block;
  width: 100%;
  height: auto;
}

.section-group-1kIehV9U {
  position: relative;
  margin-bottom: 100px;
}

@media(max-width: 760px) {
  .section-group-1kIehV9U {
    margin-bottom: 10px;
  }
}

.section-title-1CyXvujh {
  color: var(--primary-text-color);
  max-width: 380px;
  margin-bottom: 10px;
}

@media(max-width: 992px) {
  .section-title-1CyXvujh {
    max-width: 320px;
  }
}

.section-text-3pDxx2th {
  color: var(--secondary-text-color);
  max-width: 308px;
  margin-bottom: 30px;
}
.app-content-1r4Ysj3k {
  background-color: var(--secondary-background-color);
  padding: 100px 0;
  text-align: center;
}

@media screen and (max-width: 992px) {
  .app-content-1r4Ysj3k {
    background-image: linear-gradient(to bottom, #fafafc, #ffffff);
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

@media screen and (max-width: 760px) {
  .app-content-1r4Ysj3k {
    background-image: none;
    background-color: var(--secondary-background-color);
  }
}

.content-7hdZYryP {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media screen and (max-width: 760px) {
  .content-7hdZYryP {
    flex-direction: column;
  }
}
.store-links-group-1X2MTzMx {
  display: flex;
  justify-content: center;
  margin-bottom: 22px;
  z-index: 2;
}

.link-container-1_cbPJzj {
  max-width: 230px;
  margin-left: 6px;
  margin-right: 6px;
}

.qrcode-container-3c2AhaZL {
  max-width: 120px;
  margin-left: auto;
  margin-right: auto;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

.img-wrapper-2aYXfX-0 {
  display: flex;
  flex-direction: column;
  position: relative;
  max-width: 90%;
  margin-top: 95px;
}

@media screen and (min-width: 992px) and (max-width: 1200px) {
  .img-wrapper-2aYXfX-0 {
    max-width: 100%;
  }
}

@media screen and (max-width: 992px) {
  .img-wrapper-2aYXfX-0 {
    margin-top: 0;
  }
}

@media screen and (max-width: 760px) {
  .img-wrapper-2aYXfX-0 {
    max-width: 100%;
  }
}

.img-container-bg-3lYKFCTU {
  padding-right: 20px;
}

@media screen and (max-width: 992px) {
  .img-container-bg-3lYKFCTU {
    display: none;
  }
}

.img-container-devices-1JFWk_n_ {
  display: flex;
  position: absolute;
  width: 59%;
  top: 32%;
  left: 50%;
  transform: translate(-50%);
}

@media screen and (max-width: 992px) {
  .img-container-devices-1JFWk_n_ {
    position: relative;
    width: 100%;
    order: 1;
  }
}

.img-container-device-1-30KHYMHc {
  max-width: 190px;
  height: auto;
  margin-right: 45px;
  margin-top: 38px;
  box-shadow: var(--box-shadows-images);
  border-radius: 25px;
}

.img-container-device-2-1Y8tsu3p {
  max-width: 234px;
  height: auto;
  box-shadow: var(--box-shadows-images);
  border-radius: 25px;
}

.img-container-device-3-1dw7Tl0m {
  max-width: 190px;
  height: auto;
  margin-left: 45px;
  margin-top: 38px;
  box-shadow: var(--box-shadows-images);
  border-radius: 25px;
}

@media screen and (max-width: 992px) {
  .img-container-device-1-30KHYMHc,
  .img-container-device-2-1Y8tsu3p,
  .img-container-device-3-1dw7Tl0m {
    box-shadow: -10px 14px 14px 0 rgba(0, 0, 0, 0.21), 0 0 10px 0 rgba(0, 0, 0, 0.04);
  }
}

@media screen and (max-width: 760px) {
  .img-container-device-1-30KHYMHc {
    margin-right: 18px;
  }

  .img-container-device-3-1dw7Tl0m {
    margin-left: 18px;
  }

  .img-container-device-1-30KHYMHc,
  .img-container-device-3-1dw7Tl0m {
    margin-top: 15px;
  }
}

.img-container-text-1oQIKKNT {
  position: absolute;
  top: 22%;
  left: 50%;
  transform: translate(-50%);
}

@media screen and (max-width: 992px) {
  .img-container-text-1oQIKKNT {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin-top: 40px;
    margin-bottom: 30px;
  }
}

.section-title-3koSG4l4 {
  color: var(--primary-text-color);
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
  max-width: 65%;
}

.section-subtitle-3puE7L03 {
  color: var(--primary-text-color);
  margin-bottom: 20px;
}

@media screen and (max-width: 992px) {
  .section-title-3koSG4l4 {
    max-width: 95%;
  }
} 

@media screen and (max-width: 760px) {
  .section-title-3koSG4l4 {
    max-width: 100%;
  }
}  

.section-text-2kpGcCRE {
  color: var(--secondary-text-color);
  margin-bottom: 20px;
}

.btn-shadow-3EwU20wd {
  box-shadow: -6px 4px 10px 0 rgba(98, 105, 255, 0.2);
  margin-top: -130px;
  margin-left: auto;
  margin-right: auto;
} 

@media screen and (max-width: 992px) {
  .btn-shadow-3EwU20wd {
    margin-top: 60px;
  }  
}  

.hide-lg-3EX9zGZe {
  display: none;
}

@media screen and (max-width: 992px) {
  .hide-lg-3EX9zGZe {
    display: flex;
  }
} 

.hide-sm-zeqZUsTX {
  display: flex;
}

@media screen and (max-width: 992px) {
  .hide-sm-zeqZUsTX {
    display: none;
  }
}  
.home-logos-1ghu7UYN {
  margin-top: 51px;
}

@media(max-width: 760px) {
  .home-logos-1ghu7UYN {
    padding-top: 30px;
    padding-bottom: 20px;
    margin-top: 0;
  }
}

@media(max-width: 640px) {
  .home-logos-1ghu7UYN {
    padding-top: 45px;
  }
}

@media(max-width: 440px) {
  .home-logos-1ghu7UYN {
    padding-left: 18px;
  }
}

.logo-3NgVsITj {
  max-height:30px;
  width:auto;
}

.logosmaller-1bW-fsU9 {
  max-height: 15px;
  width: auto;
}

.logonudgedown-jgeUE28l {
  position: relative;
  top: 2px;
}

.bumpopacity-2IX_muw7 {
  opacity: .55;
}

.logonudgeup-3TEGKIGt {
  position: relative;
  top: -2px;
}

.content-1RAEkKOz {
  height: 100%;
  width: 64%;
  margin: 0 auto;
}

@media(max-width: 922px) {
  .content-1RAEkKOz {
    flex-wrap: nowrap;
    width: 80%;
  }
}

@media(max-width: 760px) {
  .content-1RAEkKOz {
    flex-wrap: wrap;
    width: 100%;
  }
}

.column-3_B5AEXg {
  padding: 0 30px;
}

@media(max-width: 1280px) {
  .column-3_B5AEXg {
    padding: 0 20px;
  }
}

@media(max-width: 992px) {
  .column-3_B5AEXg {
    padding: 0 20px;
  }
}

@media(max-width: 760px) {
  .column-3_B5AEXg {
    padding: 0 20px;
  }

  .column-3_B5AEXg img {
    width: 100%;
    height: auto;
  }
}

@media(max-width: 440px) {
  .column-3_B5AEXg {
    padding: 0 2px;
  }
}

.home-benefits-2pWIRMPO {
  background-color: #eeeff0;
  padding-top: 50px;
  padding-bottom: 79px;
  text-align: center;
}

.home-benefits-container-D0s6s-1m {
  padding-left: 0;
  padding-right: 0;
}

body[data-user-agent*="MacIntel"] .home-benefits .swiper-wrapper{
  overflow-x: auto;  
  overflow: -moz-scrollbars-none;
  -ms-overflow-style: none;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

body[data-user-agent*="MacIntel"] .home-benefits .swiper-wrapper::-webkit-scrollbar, body[data-user-agent*="MacIntel"] .home-benefits .swiper-wrapper::-webkit-scrollbar-thumb, body[data-user-agent*="MacIntel"] .home-benefits .swiper-wrapper::-webkit-scrollbar-track {
    width: 0 !important;
    background: transparent;
    -webkit-appearance: none;
    display:none;
  }

.home-benefits .section-info-bottom {
    margin-bottom: 0;  
  }

.home-benefits .section-info-main {
    margin-bottom: 35px;
  }

@media(max-width: 760px) {
  .home-benefits-container-D0s6s-1m {
    padding: 0;
    padding-left: 0px;
  }
  .sectionContainer-1DSQht7a {
    padding-left:24px;
  }
  .home-benefits .section-info-bottom {
    text-align: center;
    padding-right: 24px;
    padding-left: 24px;
  }
}

@media(max-width: 760px) {
  .home-benefits-2pWIRMPO {
    padding-top: 26px;
    padding-bottom: 30px;
  }
}

.content-2eGHQgek {
  display: flex;
  justify-content: center;
  margin-bottom: 58px;
}

@media(max-width: 992px) {
  .content-2eGHQgek {
    margin-top: 30px;
    margin-bottom: 50px;
  }
  .item-wrapper-QMuet1bd {
    min-width: 283px;
  }
}
@media(max-width: 760px) {

  .item-wrapper-QMuet1bd {
    min-width: 224px;
  }
}

@media(max-width: 760px) {
  .content-2eGHQgek {
    margin-top: 0;
    margin-bottom: 20px;
  }
}

.play-video-icon-_5r-cvah {
  transform: skewX(6deg);
  position: absolute;
  top: 44%;
  left: 50%;
  margin-left: -36px;
}

.play-video-icon-_5r-cvah svg {
  height: 50px;
}

@media(max-width: 1172px) {
  .play-video-icon-_5r-cvah {
    top: 45%;
    margin-left: -38px;
  }
  .play-video-icon-_5r-cvah svg {
    height: 40px;
  }
}

@media(max-width: 440px) {
  .play-video-icon-_5r-cvah {
    top: 43%;
  }
}

.column-1OF_toEm {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 25%;

  padding-left: 20px;
  padding-right: 20px;
}

@media(max-width: 1440px) {
  .column-1OF_toEm {
    width: 27%;
    padding-left: 35px;
    padding-right: 35px;
  }
}

@media(max-width: 992px) {
  .column-1OF_toEm {
    width: 27%;
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media(max-width: 768px) {
  .column-1OF_toEm {
    width: 30%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .column-1OF_toEm:nth-child(4){
    order: -1;
  }
}

@media(max-width: 640px) {
  .column-1OF_toEm {
    width: 40%;
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media(max-width: 440px) {
  .column-1OF_toEm {
    padding-left: 0;
    padding-right: 0;
    margin: 0 15px;
  }
}

.content-slide-to-left-1wMW-jJt {
  /*margin-left: 98px;*/
  opacity: 0;
  -webkit-animation: slideLeft-1tIToymC .5s cubic-bezier(0.250, 0.460, 0.450, 0.940) 2s both;
  -moz-animation: slideLeft-1tIToymC .5s cubic-bezier(0.250, 0.460, 0.450, 0.940) 2s both;
  -ms-animation: slideLeft-1tIToymC .5s cubic-bezier(0.250, 0.460, 0.450, 0.940) 2s both;
  -o-animation: slideLeft-1tIToymC .5s cubic-bezier(0.250, 0.460, 0.450, 0.940) 2s both;
  animation: slideLeft-1tIToymC .5s cubic-bezier(0.250, 0.460, 0.450, 0.940) 2s both;
}
@keyframes slideLeft-1tIToymC {
  from { opacity: 0; transform: translateX(30px); }
  to  { opacity: 1; transform: translateX(0); }
}

@-moz-keyframes slideLeft-1tIToymC {
  from { opacity: 0; -moz-transform: translateX(30px); }
  to   { opacity: 1; -moz-transform: translateX(0);}
}

@-webkit-keyframes slideLeft-1tIToymC {
  from { opacity: 0; -webkit-transform: translateX(30px); }
  to   { opacity: 1; -webkit-transform: translateX(0); }
}

@-ms-keyframes slideLeft-1tIToymC {
  from { opacity: 0; -ms-transform: translateX(30px); }
  to   { opacity: 1; -ms-transform: translateX(0); }
}

@-o-keyframes slideLeft-1tIToymC {
  from { opacity: 0; -o-transform: translateX(30px); }
  to   { opacity: 1; -o-transform: translateX(0); }
}

@media(max-width: 1440px) {
  .content-slide-to-left-1wMW-jJt {
    margin-left: 0;
  }
}

/*:global(.home-benefits) {
  padding-right: 0;
  padding-left: 0;
}*/

.item-wrapper-QMuet1bd {
  background-color: #fff;
  transform: skewX(-6deg);
  border-radius: 10px;
  padding: 0 18px;
  max-height: 234px;
  box-shadow: 0 10px 15px 0 #dbdbdb;
}

.sub-text-3vZTAl_4 {
  opacity: 0.6;
  font-family: var(--primary-font-family);
  font-size: 16px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: 1;
  letter-spacing: normal;
  color: #191941;
  display: block;
}

.sub-text-bottom-2kWPG3Ow {
  font-family: var(--primary-font-family);
  font-size: 16px;
  line-height: 1;
  letter-spacing: normal;
  color: var(--primary-text-color);
  margin: 2px 0 0 0px;
  float: left;
}

@media(max-width: 1286px) {
  .sub-text-bottom-2kWPG3Ow {
    font-size: 13px;
  }
}

@media(max-width: 760px) {
  .sub-text-bottom-2kWPG3Ow {
    text-transform: lowercase;
  }
  .home-benefits-container-D0s6s-1m .sub-text-bottom-2kWPG3Ow {
    text-transform: none;
  }
}

@media(max-width: 640px) {
  .sub-text-bottom-2kWPG3Ow {
    font-size: 12px;
    line-height: 1.33;
  }
}

@media(max-width: 640px) {
  .sub-text-3vZTAl_4 {
    font-size: 12px;
  }
  .section-text-sub-5r0w1wWD {
    padding-top: 0;
  }
}

.separator-TAkhZGZz {
  position: absolute;
  right: -46px;
  top: 34%;
  transform: skewX(6deg);
}

@media(max-width: 1440px) {
  .separator-TAkhZGZz {
    right: -18%;
  }
}

@media(max-width: 1286px) {
  .separator-TAkhZGZz {
    right: -19%;
  }
  .separator-TAkhZGZz::before {
    font-size: 48px;
  }
}
@media(max-width: 1172px) {
  .separator-TAkhZGZz {
    right: -23%;
    top: 33%;
  }
}

@media(max-width: 1023px) {
  .separator-TAkhZGZz {
    display: none;
  }
}

.separator-TAkhZGZz::before {
  font-size: 54px;
  color: #c6c6c6;
  content:'+';
  font-weight: 100;
}

.img-container-2THnyltw {
  width: 90px;
  height: 90px;
  margin-bottom: 20px;
}

@media(max-width: 992px) {
  .img-container-2THnyltw {
    width: 75px;
    height: 65px;
  }
}

@media(max-width: 760px) {
  .img-container-2THnyltw {
    width: 60px;
    height: 50px;
  }
}

.video-container-31xMcxl3 {
  max-width: 260px;
  border-radius: 24px;
  cursor: pointer;
  transition: all .2s ease-in-out;
  margin: 0 auto 32px;
}

@media(max-width: 992px) {
  .video-container-31xMcxl3 {
    max-width: 190px;
    margin-bottom: 35px;
  }
}

@media(max-width: 760px) {
  .video-container-31xMcxl3 {
    max-width: 220px;
    margin-bottom: 28px;
  }
}

@media(max-width: 640px) {
  .video-container-31xMcxl3 {
    margin-bottom: 24px;
  }
}
@media(max-width: 440px) {
  .video-container-31xMcxl3 {
    margin-bottom: 24px;
  }
}

.video-container-31xMcxl3 img {
  border-radius: 10px;
}

.video-container-31xMcxl3 img,
.img-container-2THnyltw img {
  width: 100%;
  height: auto;
}

.section-info-1rc319Xf {
  max-width: 698px;
  font-family: Wigrum;
  font-size: 16px;
  line-height: 1.31;
  text-align: center;
  color: #939597;
  margin: 0 auto 75px;
  font-weight: 200;
}
.section-info-bold-2jRYDN8c {
  font-size: 16px;
}

@media(max-width: 760px) {
  .section-info-1rc319Xf {
    text-align: left;
    font-size: 14px;
    padding-right: 40px;
    margin-bottom: 24px;
    line-height: 1.43;
  }
  .section-info-bold-2jRYDN8c {
    font-size: 14px;
  }
}

.section-title-30iPHUAA {
  color: var(--primary-text-color);
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 11px;
  text-align: center;
  font-size: 36px;
}

@media(max-width: 992px) {
  .section-title-30iPHUAA {
    font-size: 30px;
    margin-bottom: 0;
  }
}
@media(max-width: 760px) {
  .section-title-30iPHUAA {
    text-align: left;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.25;
    padding-right: 25px;
  }
}

.section-subtitle-3KMPnh3V {
  font-size: 24px;
  letter-spacing: 0.1px;
  line-height: 1.2;
  color: var(--primary-text-color);
  transform: skewX(6deg);
  text-align: left;
  margin: 14px 0 18px 8px;
}

.semi-bold.section-subtitle-with-info {
  margin-bottom: 2px;
}

@media(max-width: 1140px) {
  .section-subtitle-3KMPnh3V {
    font-size: 19px;
  }
}

@media(max-width: 992px) {
  .section-subtitle-3KMPnh3V {
    font-size: 18px;
  }
}

@media(max-width: 640px){
  .section-subtitle-3KMPnh3V {
    margin-bottom: 14px;
    font-size: 15px;
  }
}

@media(max-width: 440px) {
  .section-subtitle-3KMPnh3V {
    font-size: 12px;
  }
}

.section-text-PfXLXIXJ {
  color: var(--secondary-text-color);
  text-align: left;
  font-weight: 200;
  padding: 37px 34px 0 6%;
  letter-spacing: 0.5px;
  width: 100%;
}

.section-text-sub {
  padding-top: 0 !important;
}

@media(max-width: 1286px) {
  .section-text-PfXLXIXJ {
   padding-left: 0;
  }
}

@media(max-width: 992px) {
  .section-text-PfXLXIXJ {
   max-width: 220px;
    font-size: 14px;
    line-height: 1.43;
  }
}

@media(max-width: 640px) {
  .section-text-PfXLXIXJ {
   padding-top: 14px;
  }
}

.btn-shadow-3LWUKyqR {
  font-size: 16px;
  padding: 16px 30px 15px;
  max-width: 260px;
  box-shadow: -6px 4px 10px 0 rgba(98, 105, 255, 0.2);
  margin: auto;
  opacity: 0;
  -webkit-animation: slideUp-1ByO36Rf .6s cubic-bezier(0.215, 0.61, 0.355, 1) 2.4s forwards;
  -moz-animation: slideUp-1ByO36Rf .6s cubic-bezier(0.215, 0.61, 0.355, 1) 2.4s forwards;
  -ms-animation: slideUp-1ByO36Rf .6s cubic-bezier(0.215, 0.61, 0.355, 1) 2.4s forwards;
  -o-animation: slideUp-1ByO36Rf .6s cubic-bezier(0.215, 0.61, 0.355, 1) 2.4s forwards;
  animation: slideUp-1ByO36Rf .6s cubic-bezier(0.215, 0.61, 0.355, 1) 2.4s forwards;
}

@keyframes slideUp-1ByO36Rf {
  from { opacity: 0; transform: translateY(20px); }
  to  { opacity: 1; transform: translateY(0); }
}

@-moz-keyframes slideUp-1ByO36Rf {
  from { opacity: 0; -moz-transform: translateY(20px); }
  to   { opacity: 1; -moz-transform: translateY(0); }
}

@-webkit-keyframes slideUp-1ByO36Rf {
  from { opacity: 0; -webkit-transform: translateY(20px); }
  to   { opacity: 1; -webkit-transform: translateY(0); }
}

@-ms-keyframes slideUp-1ByO36Rf {
  from { opacity: 0; -ms-transform: translateY(20px); }
  to   { opacity: 1; -ms-transform: translateY(0); }
}

@-o-keyframes slideUp-1ByO36Rf {
  from { opacity: 0; -o-transform: translateY(20px); }
  to   { opacity: 1; -o-transform: translateY(0); }
}

.header-mini-1wHA_XWw {
  position: fixed;
  top: 0;
  height: 80px;
  width: 100%;
  max-width: 1440px;
  transform: translateY(-80px);
  z-index: 1;
  opacity: 0;
}
.sticky-active .header {
  background: var(--color-white);
}
.header-mini-1wHA_XWw {
  -webkit-animation: removeSticky-2pGsL2z0 .3s;
  -webkit-animation-direction: removeSticky;
  animation: removeSticky-2pGsL2z0 .3s;
  animation-direction: removeSticky;
}
@keyframes removeSticky-2pGsL2z0 {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.set-sticky-2GHlqD4V {
  visibility: visible;
  left: 50%;
  transform:translate(-50%, 0);
  max-width: 600px;
  opacity: 1;
  z-index: 13;
}


.set-sticky-2GHlqD4V {
  -webkit-animation: stickyAnimate-2VoOjWXa 0.5s;
  -webkit-animation-direction: stickyAnimate;
  animation: stickyAnimate-2VoOjWXa 0.5s;
  animation-direction: stickyAnimate;
}
@keyframes stickyAnimate-2VoOjWXa {
  0%   {opacity: 0;}
  100% {opacity: 1;}
}

.content-QOPaxfn- {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.column-3lGrYYgp {
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  margin-left: 10px;
  margin-right: 10px;
  padding: 1px 14px;
  cursor: pointer;
}
.active-menu {
  border-radius: 15px;
}
.img-container-3q2-XOJk {
  height: 20px;
  width: 20px;
}

.header-mini-text-2xyQdU-d {
  color: var(--primary-text-color);
  font-size: 16px;
}
.img-container-3q2-XOJk {
  display: none;
}
@media(max-width: 767px) {
  .img-container-3q2-XOJk {
    display: block;
  }
  .header-mini-1wHA_XWw {
    background: var(--secondary-background-color);
    height: 43px;
    top: 70px;
    left: 0;
    transition: none;
    transform: translateY(0);
    max-width: 100%;
  }
  .column-3lGrYYgp {
    margin-left: 15px;
    margin-right: 15px;
    padding: 5px 14px;
  }
  .stroke-path {
    -webkit-transform: translate3d(1px, 1px, 0);
    transform: translate3d(1px, 1px, 0);
    opacity: 0.7;
  }
  .column-3lGrYYgp.active .stroke-path {
    stroke-width: 2px;
    opacity: 1;
  }
  #header-homePass-link.active.column-3lGrYYgp .stroke-path path {
    stroke-width: 1px;
  }

}
@media(max-width: 760px) {
  .header-mini-text-2xyQdU-d {
    display: none;
  }
}
@media(min-width: 768px) {

  .set-sticky-2GHlqD4V .header-mini-text-2xyQdU-d {
    opacity: 1;
    transition: all .5s;
  }
  .header-mini-text-2xyQdU-d {
    opacity: 0;
    transition: all .5s;
  }
  body[data-user-agent*="MacIntel"] .regular.nav-links,
  body[data-user-agent*="iPad"] .regular.nav-links {
    position: relative;
    top: 2px;
  }
  .column.active-menu{
    -webkit-animation: slide-right-2XrnPjPW 0.5s 2s both;
    animation: slide-right-2XrnPjPW 0.5s 2s both;
  }
  @keyframes slide-right-2XrnPjPW {
    0% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
    }
    100% {
      -webkit-transform: translateX(100px);
              transform: translateX(100px);
    }
  }

}

.no-border-2dZs6z8V {
  border-bottom: 1px solid #fff;
}

.home-adaptive-wifi-1CQzV4xh {
  height: 100%;
}

.section-image-7_ukrcxH {
  background-size: 707px;
  background-color: #fcfcff;
  background-repeat: no-repeat;
  background-position: 90% 35%;
  min-height: 750px;
  padding-top: 170px;
}

@media screen and (max-width: 1350px) { /*Additional breakpoint just for this example*/
  .section-image-7_ukrcxH {
    background-size: 650px;
    background-position: right center;
    min-height: 620px;
  }
} 

@media screen and (max-width: 1200px) {
  .section-image-7_ukrcxH {
    background-size: 590px;
    background-position: right center;
    min-height: 620px;
  }
} 

@media screen and (max-width: 992px) {
  .section-image-7_ukrcxH {
    background-size: 420px;
    background-position: right top;
    min-height: 450px;
    padding-top: 40px;
  }
}

@media screen and (max-width: 760px) {
  .section-image-7_ukrcxH {
    background-image: none;
    padding-top: 45px;
    min-height: 100%;
    padding-bottom: 50%;
    background-position: 15px 105%;
    background-size: 99%;
  }
}

.section-color-2T9mbjCO {
  background-color: var(--secondary-background-color);
  padding-top: 150px;
}

@media screen and (max-width: 760px) {
  .section-color-2T9mbjCO {
    padding-top: 58px;
  }
}

.content-up-mu5YcQgz {
  width: 81.3%;
  height: 100%;
  margin: auto;
}

@media screen and (max-width: 1200px) {
  .content-up-mu5YcQgz {
    width: 100%;
  }
}  

.content-up-mu5YcQgz .column-left-u-lCSntL {
  display: flex;
  flex-direction: column;
  width: 60%;
}

@media screen and (max-width: 760px) {
  .content-up-mu5YcQgz .column-left-u-lCSntL {
    width: 100%;
  }
}

.content-down-1KV1ZxwD {
  display: flex;
  width: 80%;
  height: 100%;
  margin: auto;
}

.column-left-u-lCSntL h1 {
  margin-bottom: 9px;
  padding-top: 6px;
}
@media screen and (max-width: 1200px) {
  .content-down-1KV1ZxwD {
    width: 100%;
  }
} 

@media screen and (max-width: 760px) {
  .content-down-1KV1ZxwD {
    flex-direction: column;
  }
}

.content-down-1KV1ZxwD .column-left-u-lCSntL {
  display: flex;
  flex-direction: column;
  max-width: 570px;
  width: 60%;
  padding-left: 75px;
}

@media screen and (max-width: 992px) {
  .content-down-1KV1ZxwD .column-left-u-lCSntL {
    order: 2;
    padding-left: 0;
    width: 100%;
    padding-top: 60px;
  }
}

.content-down-1KV1ZxwD .column-right-zriQk_SW {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  margin-top: -230px;
  padding-bottom: 50px;
}

@media screen and (max-width: 760px) {
  .content-down-1KV1ZxwD .column-right-zriQk_SW {
    order: 1;
    width: 100%;
    margin-top: 0;
  }
}

.img-container-1KjW9wYo {
  max-width: 360px;
  box-shadow: var(--box-shadows-images);
  background-color: #c8c8c8;
  border-radius: 25px;
  margin-right: 55px;
}

@media screen and (max-width: 992px) {
  .img-container-1KjW9wYo {
    max-width: 260px;
  }
}

@media screen and (max-width: 760px) {
  .img-container-1KjW9wYo {
    margin-right: 0;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}

.img-container-1KjW9wYo img {
  display: block;
  width: 100%;
  height: auto;
}

.section-title-3UV_hGIc {
  color: var(--secondary-text-color);
  margin-bottom: 0;
  font-size: 14px;
  letter-spacing: 0;
}

.content-down-1KV1ZxwD .section-title-3UV_hGIc {
  color: var(--secondary-text-color);
}

.section-subtitle-fM8e8sJa {
  color: var(--primary-text-color);
  margin-bottom: 13px;
}
@media screen and (max-width: 760px) {
  .section-subtitle-fM8e8sJa {
    margin-bottom: 8px;
  }
}

.section-text-2JeRhQW7 {
  color: var(--secondary-text-color);
  max-width: 336px;
  margin-bottom: 26px;
  line-clamp: 26px;
  font-size: 18px;
  line-height: 26px;
}

@media screen and (max-width: 992px) {
  .section-text-2JeRhQW7 {
    font-size: 15px;
    line-height: 21px;
  }
}

@media screen and (max-width: 760px) {
  .section-text-2JeRhQW7 {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 11px;
  }
}

.home-parental-controls-2mDuPgtQ {
  height: 100%;
}

.section-up-1DnifGMI {
  background-color: var(--secondary-background-color);
  min-height: 850px;
  padding-top: 130px;
}

@media screen and (max-width: 992px) {
  .section-up-1DnifGMI {
    padding-top: 120px;
  }
}

@media screen and (max-width: 760px) {
  .section-up-1DnifGMI {
    min-height: 100%;
    padding-top: 45px;
  }
}

.section-down-3-dqsqoV {
  background-color: var(--secondary-background-color);
  height: 100%;
}

@media screen and (max-width: 760px) {
  .section-down-3-dqsqoV {
    background-color: var(--primary-background-color);
    height: 100%;
  }
}

.content-3siImWXV {
  display: flex;
  width: 85%;
  height: 100%;
  margin: auto;
}

@media screen and (max-width: 1200px) {
  .content-3siImWXV {
    width: 100%;
  }
}

@media screen and (max-width: 760px) {
  .content-3siImWXV {
    flex-direction: column;
  }
}

.section-up-1DnifGMI .content-3siImWXV {
  background-size: 650px;
  background-color: var(--secondary-background-color);
  background-repeat: no-repeat;
  background-position: left top;
}

@media screen and (max-width: 1350px) { /*Additional breakpoint just for this example*/
  .section-up-1DnifGMI .content-3siImWXV {
    background-size: 490px;
  }
} 

@media screen and (min-width: 992px) and (max-width: 1200px) {
  .section-up-1DnifGMI .content-3siImWXV {
    background-size: 445px;
  }
}

@media screen and (max-width: 992px) {
  .section-up-1DnifGMI .content-3siImWXV {
    background-size: 540px;
  }
}

@media screen and (max-width: 760px) {
  .section-up-1DnifGMI .content-3siImWXV {
    background-image: none;
  }
}

.section-up-1DnifGMI .column-right-2NsDeAN3 {
  display: flex;
  flex-direction: column;
  margin-left: auto;
  max-width: 483px;
  width: 50%;
  padding-top: 40px;
  margin-right: 60px;
}

@media screen and (max-width: 992px) {
  .section-up-1DnifGMI .column-right-2NsDeAN3 {
    margin-right: 0;
  }
}

@media screen and (max-width: 760px) {
  .section-up-1DnifGMI .column-right-2NsDeAN3 {
    width: 100%;
    padding-top: 0;
    padding-left: 0;
  }
}

.section-up-1DnifGMI .img-container-20VClui4 {
  max-width: 460px;
  margin-top: 280px;
  box-shadow: var(--box-shadows-images);
  background-color: #c8c8c8;
  border-radius: 25px;
  margin-right: 55px;
}

@media screen and (max-width: 1350px) { /*Additional breakpoint just for this example*/
  .section-up-1DnifGMI .img-container-20VClui4 {
    margin-top: 180px;
  }
}

@media screen and (min-width: 992px) and (max-width: 1200px) {
  .section-up-1DnifGMI .img-container-20VClui4 {
    max-width: 420px;
    margin-left: 55px;
  }
}

@media screen and (max-width: 760px) {
  .section-up-1DnifGMI .img-container-20VClui4 {
    max-width: 80%;
    margin-top: 20px;
    margin-bottom: 60px;
    margin-right: auto;
    margin-left: auto;
  }
}

.section-down-3-dqsqoV .column-left-1yqhxHgP {
  width: 50%;
  padding-left: 20px;
}

@media screen and (max-width: 760px) {
  .section-down-3-dqsqoV .column-left-1yqhxHgP {
    width: 100%;
    padding-left: 0;
    order: 1;
    margin-bottom: 60px;
  }
}

.section-down-3-dqsqoV .column-right-2NsDeAN3 {
  display: flex;
  flex-direction: column;
  max-width: 334px;
  width: 50%;
  padding-left: 20px;
  padding-top: 200px;
}

@media screen and (max-width: 992px) {
  .section-down-3-dqsqoV .column-right-2NsDeAN3 {
    padding-left: 20px;
  }
}

@media screen and (max-width: 760px) {
  .section-down-3-dqsqoV .column-right-2NsDeAN3 {
    width: 90%;
    padding-top: 40px;
    padding-left: 0;
  }
}

.section-down-3-dqsqoV .img-container-20VClui4 {
  max-width: 366px;
  box-shadow: var(--box-shadows-images);
  background-color: #c8c8c8;
  border-radius: 25px;
  margin-right: 55px;
  margin-top: -90px;
}

@media screen and (min-width: 992px) and (max-width: 1200px) {
  .section-down-3-dqsqoV .img-container-20VClui4 {
    max-width: 320px;
  }
}

@media screen and (max-width: 760px) {
  .section-down-3-dqsqoV .img-container-20VClui4 {
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    max-width: 80%;
  }
}

.img-container-20VClui4 img {
  width: 100%;
  height: auto;
}

.section-title-1IeiaMq- {
  color: var(--secondary-text-color);
  margin-bottom: 9px;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 760px) {
  .section-title-1IeiaMq- {
    margin-bottom: 5px;
  }
}

.section-subtitle-2IPH1q05 {
  color: var(--primary-text-color);
  margin-bottom: 16px;
}

@media screen and (max-width: 760px) {
  .section-subtitle-2IPH1q05 {
    margin-bottom: 8px;
  }
}

.section-text-3gBK3DLC {
  color: var(--secondary-text-color);
  max-width: 334px;
  margin-bottom: 16px;
}

@media screen and (max-width: 760px) {
  .section-text-3gBK3DLC {
    margin-bottom: 8px;
  }
}
.home-homepass-3F3na4p6 {
  background-color: var(--secondary-background-color);
  padding-top: 150px;
  padding-bottom: 10px;
}

@media screen and (max-width: 992px) {
  .home-homepass-3F3na4p6 {
    padding-top: 60px;
  }
}

@media screen and (max-width: 760px) {
  .home-homepass-3F3na4p6 {
    padding-top: 40px;
  }
}

.content-3OsVpB-C {
  display: flex;
  width: 85%;
  height: 100%;
  margin: auto;
}

@media screen and (max-width: 1200px) {
  .content-3OsVpB-C {
    width: 100%;
  }
}

@media screen and (max-width: 760px) {
  .content-3OsVpB-C {
    flex-direction: column;
  }
}

.column-left-ruT6ufRQ {
  width: 60%;
  padding-left: 20px;
}

@media screen and (max-width: 992px) {
  .column-left-ruT6ufRQ {
    width: 50%;
    padding-left: 0;
  }
}

@media screen and (max-width: 760px) {
  .column-left-ruT6ufRQ {
    align-items: center;
    width: 100%;
  }
}

.column-right-3DlFZSbC {
  width: 60%;
  padding-left: 20px;
}

@media screen and (max-width: 992px) {
  .column-right-3DlFZSbC {
    width: 50%;
    padding-top: 40px;
  }
}

@media screen and (max-width: 760px) {
  .column-right-3DlFZSbC {
    align-items: center;
    width: 100%;
    padding-top: 0;
    padding-left: 0;
  }
}

.img-container-2DEklTBn {
  max-width: 460px;
  box-shadow: var(--box-shadows-images);
  background-color: #c8c8c8;
  border-radius: 25px;
}

.img-container-2DEklTBn img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.img-lg-1KQqzhRO {
  display: block;
}

@media screen and (max-width: 760px) {
  .img-lg-1KQqzhRO {
    display: none;
  }
}

.img-sm-kGcqrYrA {
  display: none;
}

@media screen and (max-width: 760px) {
  .img-sm-kGcqrYrA {
    display: block;
    margin-top: 10px;
    margin-bottom: 40px;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}

.section-title-10Au6wU_ {
  color: var(--secondary-text-color);
  margin-bottom: 9px;
}

@media screen and (max-width: 760px) {
  .section-title-10Au6wU_ {
    margin-bottom: 5px;
  }
}

@media screen and (max-width: 760px) {
  .section-title-10Au6wU_ {
    margin-bottom: 5px;
  }
}

.section-subtitle-il-JpMRb {
  color: var(--primary-text-color);
  margin-bottom: 16px;
  max-width: 450px;
}

@media screen and (max-width: 992px) {
  .section-subtitle-il-JpMRb {
    max-width: 320px;
  }
}

@media screen and (max-width: 760px) {
  .section-subtitle-il-JpMRb {
    margin-bottom: 20px;
  }
}

.section-text-3pZ_3Y9V {
  color: var(--secondary-text-color);
  margin-bottom: 25px;
  max-width: 340px;
  min-height: 150px;
  animation-duration: 1.5s;
}

@media screen and (max-width: 992px) {
  .section-text-3pZ_3Y9V {
    max-width: 310px;
  }
}

@media screen and (max-width: 760px) {
  .section-text-3pZ_3Y9V {
    min-height: 110px;
  }
}

.section-link-kI7A_6Vq {
  display: flex;
  align-items: center;
  color: var(--tertiary-text-color);
  background-color: transparent;
  border: 0;
  margin-top: 68px;
  opacity: .9;
  cursor: pointer;
}

@media screen and (max-width: 760px) {
  .section-link-kI7A_6Vq {
    margin-top: 25px;
  }
}

.section-link-kI7A_6Vq:hover {
  opacity: .8;
}

.icon-play-1uo0ap45 {
  margin-right: 12px;
}

.tags-3JuIKqkc {
  display: flex;
  flex-wrap: wrap;
  max-width: 400px;
}

.tag-rX-Rpw6m {
  background: var(--button-light-background-color);
  color: var(--secondary-text-color);
  border: solid 1px var(--button-outline-border-color);
  font-size: 14px;
  font-weight: 500;
  padding: 6px 16px 5px;
  border-radius: 17px;
  margin-right: 10px;
  margin-bottom: 10px;
  cursor: pointer;
  transition-duration: 1s;
}

@media screen and (max-width: 760px) {
  .tag-rX-Rpw6m {
    font-size: 13px;
  }
}

.tag-rX-Rpw6m.active-38wrbxIN {
  color: var(--button-dark-text-color);
  border: solid 1px var(--button-dark-background-color);
  background-color: var(--button-dark-background-color);
}

.home-ai-security-wxPRtko- {
  background-color: var(--secondary-background-color);
  padding-top: 150px;
  padding-bottom: 170px;
}

@media screen and (max-width: 992px) {
  .home-ai-security-wxPRtko- {
    padding-top: 70px;
    padding-bottom: 40px;
  }
}

@media screen and (max-width: 760px) {
  .home-ai-security-wxPRtko- {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.content-32L2y4ng {
  display: flex;
  flex-direction: column;
  width: 85%;
  height: 100%;
  margin: auto;
  padding-left: 20px;
}

@media screen and (max-width: 1200px) {
  .content-32L2y4ng {
    width: 100%;
    padding-left: 0;
  }
}

@media screen and (max-width: 760px) {
  .content-32L2y4ng {
    flex-direction: column;
  }
}

.column-2s396wmb {
  width: 100%;
}

.img-containers-2LP1V17l {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 760px) {
  .img-containers-2LP1V17l {
    flex-direction: column;
  }
}

.type-video-1Sg3IcSN {
  position: relative;
  max-width: 52%;
  box-shadow: var(--box-shadows-images);
  border-radius: 25px;
  cursor: pointer;
  transition: all .2s ease-in-out;
  z-index: 1;
}

@media screen and (max-width: 760px) {
  .type-video-1Sg3IcSN {
    max-width: 90%;
    margin-top: 20px;
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: auto;
    z-index: 1;
  }
}

.type-video-1Sg3IcSN:hover {
  transform: scale(1.03);
}

.type-video-1Sg3IcSN img {
  border-radius: 20px;
}

.section-btn-1Xd8Tw2b {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -45%);
  background-color: transparent;
  border: 0;
  cursor: pointer;
}

@media screen and (max-width: 992px) {
  .section-btn-1Xd8Tw2b svg {
    width: 50px;
    height: 50px;
  }
}

.graph-group-iRKmzXGd {
  position: relative;
  max-width: 48%;
}

@media screen and (max-width: 760px) {
  .graph-group-iRKmzXGd {
    max-width: 100%;
    margin-top: 100px;
    order: 1;
  }
}

.img-graph-2l_p023_ {
  max-width: 100%;
}

img {
  width: 100%;
  height: auto;
}

.type-popup-3RXYdTFL {
  position: absolute;
  animation-duration: 1.5s;
}

.type-popup-3RXYdTFL.popup1-1JhEUIVl {
  right: 18px;
  top: -116px;
}

.type-popup-3RXYdTFL.popup2-CxNhuDej {
  right: 43px;
  top: -206px;
}

.type-popup-3RXYdTFL.popup3-4ld5CSt2 {
  right: -2px;
  top: -124px;
}

@media screen and (max-width: 992px) {
  .type-popup-3RXYdTFL.popup1-1JhEUIVl {
    right: 0px;
    top: -82px;
  }

  .type-popup-3RXYdTFL.popup2-CxNhuDej {
    right: 10px;
    top: -114px;
  }

  .type-popup-3RXYdTFL.popup3-4ld5CSt2 {
    right: 0px;
    top: -82px;
  }
}

@media screen and (max-width: 760px) {
  .type-popup-3RXYdTFL.popup1-1JhEUIVl {
    top: -76px;
  }

  .type-popup-3RXYdTFL.popup2-CxNhuDej {
    top: -104px;
  }

  .type-popup-3RXYdTFL.popup3-4ld5CSt2 {
    top: -76px;
  }
}

.section-title-1Frk_oPd {
  color: var(--secondary-text-color);
  margin-bottom: 9px;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 760px) {
  .section-title-1Frk_oPd {
    margin-bottom: 5px;
  }
}

@media screen and (max-width: 760px) {
  .section-title-1Frk_oPd {
    margin-bottom: 5px;
  }
}

.section-subtitle-1kIhdzuC {
  color: var(--primary-text-color);
  margin-bottom: 16px;
}

@media screen and (max-width: 760px) {
  .section-subtitle-1kIhdzuC {
    margin-bottom: 8px;
  }
}

.section-text-2bovDIyK {
  color: var(--secondary-text-color);
  margin-bottom: 40px;
  max-width: 340px;
  min-height: 180px;
  animation-duration: 1.5s;
}

@media screen and (max-width: 992px) {
  .section-text-2bovDIyK {
    min-height: 130px;
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 760px) {
  .section-text-2bovDIyK {
    min-height: auto;
    margin-bottom: 20px;
  }
  .home-ai-security-wxPRtko- .section-text-2bovDIyK {
    min-height: 130px;
  }
}

@media screen and (max-width: 370px) {
  .home-ai-security-wxPRtko- .section-text-2bovDIyK {
    min-height: 150px;
  }
}

.btn-containers-3nxkjDPD {
  display: flex;
}

.progress-bars-Zm-vBQdx {
  display: flex;
  margin-bottom: 40px;
}

@media screen and (max-width: 760px) {
  .progress-bars-Zm-vBQdx {
    margin-bottom: 10px;
  }
}

.progress-bar--BYMVORn {
  width: 73px;
  height: 3px;
  border-radius: 1.5px;
  background-color: #e8e8e8;
  margin-right: 10px;
  cursor: pointer;
}

.bar-idoWu577 {
  width: 0%;
  height: 3px;
  border-radius: 1.5px;
  background-color: var(--highlight-color);
}

.tags-1ztwTQXG {
  position: relative;
  display: flex;
  flex-direction: column;
  margin-left: auto;
  margin-top: -50px;
  width: 44%;
  z-index: 1;
}

@media screen and (max-width: 992px) {
  .tags-1ztwTQXG {
    margin-top: -32px;
  }
}

@media screen and (max-width: 760px) {
  .tags-1ztwTQXG {
    width: 95%;
    margin-top: 20px;
  }
}

.icon-chevron-1We18NK_ {
  position: absolute;
  left: -15px;
  top: 8px;
  transition-duration: .7s;
}

.icon-chevron-1We18NK_.icon1-2uTLNCkc {
  transform: translateY(0px);
}

.icon-chevron-1We18NK_.icon2-2l-KjxUs {
  transform: translateY(44px);
}

.icon-chevron-1We18NK_.icon3-13S7jcq1 {
  transform: translateY(86px);
}

@media screen and (max-width: 992px) {
  .icon-chevron-1We18NK_ {
    top: 4px;
  }

  .icon-chevron-1We18NK_.icon2-2l-KjxUs {
    transform: translateY(28px);
  }

  .icon-chevron-1We18NK_.icon3-13S7jcq1 {
    transform: translateY(58px);
  }
}

.tag-20jmMdsv {
  background: white;
  color: var(--primary-text-color);
  font-size: 36px;
  font-weight: 500;
  text-align: left;
  border: 0;
  margin-bottom: 5px;
  cursor: pointer;
  transition-duration: 1s;
}

.tag-20jmMdsv.active-2_Kee_uk {
  color: var(--highlight-color);
}

@media screen and (max-width: 1350px) { /*Additional breakpoint just for this example*/
  .tag-20jmMdsv {
    font-size: 26px;
  }
}

@media screen and (max-width: 992px) {
  .tag-20jmMdsv {
    font-size: 23px;
  }
}

.home-view-benefits-3hE019vy {
  background-color: var(--secondary-background-color);
  padding-top: 0;
  padding-bottom: 62px;
  text-align: center;
}

@media(max-width: 992px) {
  .home-view-benefits-3hE019vy {
    padding-top: 0;
    padding-bottom: 50px;
  }
}

@media(max-width: 760px) {
  .home-view-benefits-3hE019vy {
    padding-top: 0;
    padding-bottom: 50px;
  }
}

.benefits-container-EBKefMSo {
  width: 75%;
  margin-left: auto;
  margin-right: auto;
}

@media(max-width: 992px) {
  .benefits-container-EBKefMSo {
    width: 100%;
  }
}

.icons-lg-1SyTAy2w {
  display: block;
  width: 100%;
  height: auto;
}

@media(max-width: 992px) {
  .icons-lg-1SyTAy2w {
    display: none;
  }
}

.icons-sm-3MoarTw8 {
  display: none;
  width: 100%;
  height: auto;
}

@media(max-width: 992px) {
  .icons-sm-3MoarTw8 {
    display: block;
  }
}

.section-link-3dgoASbm {
  display: flex;
  align-items: center;
  color: var(--tertiary-text-color);
  background-color: transparent;
  border: 0;
  margin-top: 32px;
  cursor: pointer;
  margin-left: auto;
  margin-right: auto;
}

@media(max-width: 992px) {
  .section-link-3dgoASbm {
    margin-top: 14px;
  }
}

.icon-view-more-37ST5Uut {
  margin-left: 2px;
  margin-bottom: 2px;
  height: 20px;
}

@media(max-width: 992px) {
  .icon-view-more-37ST5Uut {
    margin-bottom: 0;
  }
}
.stars-UBscbTyi {
  display: flex;
}

.star-2yxrp_Wq {
  margin-left: 1px;
  margin-right: 1px;
}

.review-card-EVgNHL6I {
  border-radius: 11px;
  box-shadow: -2px 2px 1px 2px rgba(33, 33, 41, 0.08);
  background-color: var(--secondary-background-color);
  padding: 24px 28px 30px;
  margin: 14px;
  width: 30%;
  height: 100%;
}

@media(max-width: 992px) {
  .review-card-EVgNHL6I {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

.review-card-data-2u7xCuYj {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}

@media(max-width: 760px) {
  .review-card-data-2u7xCuYj {
    margin-bottom: 20px;
  }
}

.review-card-user-2Fmc1zW6 {
  display: flex;
  align-items: center;
}

.review-card-user-avatar-2o0Icq8x {
  background-color: #d8d8d8;
  height: 44px;
  width: 44px;
  border-radius: 100%;
}

.review-card-user-title-3qNhxUDb {
  color: var(--primary-text-color);
  text-align: left;
}

.review-card-user-title-3qNhxUDb p {
  font-size: 14px;
}

.review-card-user-title-3qNhxUDb p:first-child {
  padding-bottom: 4px;
}

.review-card-stars-3gLfazW4 {
  padding-top: 4px;
}

.review-card-quote-3wr3IX8B {
  color: var(--secondary-text-color);
  text-align: left;
}

.home-reviews-3vdG5vyV {
  background-color: var(--primary-background-color);
  padding-top: 100px;
  padding-bottom: 85px;
  text-align: center;
}

@media(max-width: 992px) {
  .home-reviews-3vdG5vyV {
    display: none;
  }
}

@media(max-width: 760px) {
  .home-reviews-3vdG5vyV {
    display: block;
    padding-top: 70px;
    padding-bottom: 50px;
  }
}

.content-1JawVryO {
  display: flex;
  justify-content: center;
}

@media(max-width: 760px) {
  .content-1JawVryO {
    flex-direction: column;
  }
}

.section-title-2EhUX0EL {
  color: var(--secondary-text-color);
  margin-bottom: 9px;
  letter-spacing: 0.05em;
}

@media(max-width: 760px) {
  .section-title-2EhUX0EL {
    margin-bottom: 5px;
  }
}

.section-subtitle-1_P9VEPv {
  color: var(--primary-text-color);
  margin-bottom: 30px;
}

@media(max-width: 760px) {
  .section-subtitle-1_P9VEPv {
    margin-bottom: 10px;
  }
}
.home-best-rated-app-sYxO2BgK {
  background-color: var(--secondary-background-color);
  padding-top: 150px;
  padding-bottom: 100px;
  text-align: center;
}

@media screen and (max-width: 992px) {
  .home-best-rated-app-sYxO2BgK {
    background-image: linear-gradient(to bottom, #fafafc, #ffffff);
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

@media screen and (max-width: 760px) {
  .home-best-rated-app-sYxO2BgK {
    background-image: none;
    background-color: var(--secondary-background-color);
  }
}

.content-bxhczPR9 {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media screen and (max-width: 760px) {
  .content-bxhczPR9 {
    flex-direction: column;
  }
}

.img-wrapper-UYJOS2is {
  display: flex;
  flex-direction: column;
  position: relative;
  max-width: 90%;
}

@media screen and (min-width: 992px) and (max-width: 1200px) {
  .img-wrapper-UYJOS2is {
    max-width: 100%;
  }
}

@media screen and (max-width: 760px) {
  .img-wrapper-UYJOS2is {
    max-width: 100%;
  }
}

.img-container-bg-AdGU6SYP {
  padding-right: 20px;
}

@media screen and (max-width: 992px) {
  .img-container-bg-AdGU6SYP {
    display: none;
  }
}

.img-container-devices-3qhJRqXm {
  display: flex;
  position: absolute;
  width: 59%;
  top: 35.5%;
  left: 50%;
  transform: translate(-50%);
}

@media screen and (max-width: 992px) {
  .img-container-devices-3qhJRqXm {
    position: relative;
    width: 100%;
    order: 1;
  }
}

.img-container-device-1-3YFg5fBs {
  max-width: 190px;
  height: auto;
  margin-right: 45px;
  margin-top: 38px;
  box-shadow: var(--box-shadows-images);
  border-radius: 25px;
}

.img-container-device-2-1jmXTZ2H {
  max-width: 234px;
  height: auto;
  box-shadow: var(--box-shadows-images);
  border-radius: 25px;
}

.img-container-device-3-1ay-rVQs {
  max-width: 190px;
  height: auto;
  margin-left: 45px;
  margin-top: 38px;
  box-shadow: var(--box-shadows-images);
  border-radius: 25px;
}

@media screen and (max-width: 992px) {
  .img-container-device-1-3YFg5fBs,
  .img-container-device-2-1jmXTZ2H,
  .img-container-device-3-1ay-rVQs {
    box-shadow: -10px 14px 14px 0 rgba(0, 0, 0, 0.21), 0 0 10px 0 rgba(0, 0, 0, 0.04);
  }
}

@media screen and (max-width: 760px) {
  .img-container-device-1-3YFg5fBs {
    margin-right: 18px;
  }

  .img-container-device-3-1ay-rVQs {
    margin-left: 18px;
  }

  .img-container-device-1-3YFg5fBs,
  .img-container-device-3-1ay-rVQs {
    margin-top: 15px;
  }
}

img {
  display: block;
  width: 100%;
  height: auto;
}

.text-button-group-xX2ayQVI {
  position: absolute;
  top: 18.5%;
  left: 50%;
  transform: translate(-50%);
}

.text-button-group-xX2ayQVI button {
  margin: auto;
}

@media screen and (max-width: 992px) {
  .text-button-group-xX2ayQVI {
    position: relative;
    margin-bottom: 50px;
  }
}

.store-links-group-CfDrAKFk {
  display: flex;
  justify-content: center;
  margin-top: -80px;
  margin-bottom: 52px;
  z-index: 2;
}

@media screen and (max-width: 992px) {
  .store-links-group-CfDrAKFk {
    margin-top: 40px;
    margin-bottom: 30px;
  }
}

.link-container-3pbqotN3 {
  max-width: 230px;
  margin-left: 6px;
  margin-right: 6px;
}

.link-container-3pbqotN3 img {
  width: 100%;
  height: auto;
}

.section-title-YgD1n2eL {
  color: var(--primary-text-color);
  margin-bottom: 20px;
}

.btn-shadow-Tb89VM0k {
  box-shadow: -6px 4px 10px 0 rgba(98, 105, 255, 0.2);
  margin: auto;
}

.home-before-footer-3iqVRTPP {
  background-image: linear-gradient(to bottom, #ffffff, #ebebff);
  padding-bottom: 60px;
}

.img-container-20Ha0DjE {
  max-width: 720px;
  margin: auto;
}

.img-container-20Ha0DjE img {
  display: block;
  width: 100%;
  height: auto;
}

.img-group-I6E2WXdO {
  display: flex;
}

@media(max-width: 992px) {
  .img-group-I6E2WXdO {
    display: none;
  }
}

.img-sm-2NaGvPzL {
  display: none;
}

@media(max-width: 992px) {
  .img-sm-2NaGvPzL {
    display: block;
    padding-left: 20px;
  }
}


.careers-hero-1tMF--1u {
  position: relative;
  background: white;
  height: 643px;
}

.careers-hero-content-Qu_G843O {
  position: relative;
  width: 80%;
  margin: auto;
  padding: 80px 60px;
}

.careers-hero-background-3KXgS9bs {
  background-image: url("/static/images/careers-hero-big.jpg");
  background-repeat: no-repeat;
  height: 643px;
  position: absolute;
  width: 100%;
  z-index: 0;
}

.section-title-25PtFAw4 {
  color: #fff;
  margin-bottom: 10px;
}

.section-subtitle-2GFBUdSZ {
  color: #fff;
  width: 356px;
  max-width: 100%;
  margin-bottom: 12px;
}

.section-text-1lxCiRZ- {
  color: #fff;
  width: 450px;
  max-width: 100%;
  
}

@media only screen and (max-width: 760px) {
  .careers-hero-1tMF--1u {
    height: 405px;
  }

  .careers-hero-content-Qu_G843O {
    width: 100%;
    margin: 0;
    padding: 40px 30px;
  }

  .careers-hero-background-3KXgS9bs {
    background-position: -58px -110px;
    height: 405px;
  }

  .careers-hero-content-Qu_G843O h2 {
    font-size: 38px;
    margin-bottom: 50px;
    width: 185px;
    line-height: 41px;
  }
}

.careers-list-2dwWnusJ {
  position: relative;
  width: 80%;
  margin: auto;
  padding: 80px 60px;
}

@media only screen and (max-width: 760px) {
  .careers-list-2dwWnusJ {
    width: 100%;
    padding: 10px 20px;
  }
}  
.configurator .configurator-steps .step-item .selected-items .item {
  border-bottom: 1px solid #dbdbdb;
  padding: 16px 0;
}
.configurator .configurator-steps .step-item .selected-items .item:last-child {
  border-bottom: none;
}
.configurator .configurator-steps .step-item .selected-items .item .product-name {
  color: #3c396f;
  font-size: 18px;
  line-height: 1.39;
}
.configurator .configurator-steps .step-item .selected-items .item .qty-container {
  font-weight: 500;
  text-align: center;
  color: #3c396f;
  float: right;
  display: flex;
  margin-top: -2px;
}
.configurator .configurator-steps .step-item .selected-items .item .qty-container input[type="text"] {
  width: 50px;
  height:28px;
  text-align: center;
  border: 0;
  font-size: 24px;
  font-weight: 500;
  color: #3c396f;
  background: transparent;
}
.configurator .configurator-steps .step-item .selected-items .item .qty-container .minus {
  max-width: 30px;
  cursor:pointer;
}
.configurator .configurator-steps .step-item .selected-items .item .qty-container .plus {
  max-width: 30px;
  cursor:pointer;
}
.configurator .configurator-steps .step-item .selected-items .item .qty-container .disabled {
  opacity: 0.5;
  pointer-events: none;
}
@media(max-width: 992px) {
  .configurator .configurator-steps .step-item .selected-items .item {
    padding: 16px 10px 16px 0px;
    margin-right: -20px;
  }
  .configurator .configurator-steps .step-item .selected-items .item .qty-container {
    margin-top: -5px;
  }
  .configurator .configurator-steps .step-item .selected-items .item .qty-container input[type="text"] {
    height:30px;
  }
}
@media only screen and (min-width: 993px) {
  .configurator .configurator-steps .step-item .selected-items .item {
    padding: 16px 0;
  }
  .configurator .configurator-steps .step-item .selected-items .item:last-child {
    border-bottom: none;
  }
  .configurator .configurator-steps .step-item .selected-items .item .qty-container {
    font-size: 24px;
    line-height: 1;
  }
  .configurator .configurator-steps .step-item .selected-items .item .qty-container input[type="text"] {
    font-size: 24px;
  }
  .configurator .configurator-steps .step-item .selected-items .item .qty-container {
    margin-top: -2px;
  }
}

/* common */
.configurator-body .layout {
  padding-top:0;
}
/* radio button design*/
.options .option-item .label input {
  display: none;
}
.options .option-item .label input + span {
  line-height: 16px;
  height: 16px;
  padding-left: 18px;
  display: block;
  position: relative;
}
.options .option-item .label input + span:not(:empty) {
  padding-left: 32px;
}
.options .option-item .label input + span:before,
.options .option-item .label input + span:after {
  content: '';
  width: 16px;
  height: 16px;
  display: block;
  border-radius: 50%;
  left: 0;
  top: 0;
  position: absolute;
}
.options .option-item .label input + span:before {
  background: rgba(147, 149, 151,0.5);
}
.options .option-item .label input + span:after {
  background: #fff;
  -webkit-transform: scale(0.85);
  transform: scale(0.85);
}
.options .option-item .label input:checked + span:before {
  -webkit-transform: scale(1.04);
  transform: scale(1.04);
  background: #6269ff;
}
.options .option-item .label input:checked + span:after {
  -webkit-transform: scale(0.5);
  transform: scale(0.5);
}
/* radio button design*/
.configurator {
  margin: 0 auto;
  width: 100%;
  background: #fff;
}
.configurator p {
  color: #939597;
}
.configurator .details-cart .heading-content .heading {
  font-weight: 500;
  color: #3c396f;
}
.configurator .details-cart .home-icon {
  float: left;
}
.configurator .configurator-steps {
  margin: 35px 0;
}
.configurator .configurator-steps .step-item {
  padding:0px;
}
.configurator .configurator-steps .step-item .heading-container {

}
.configurator .configurator-steps .step-item .heading-container .ques-heading {
  font-weight: 500;
  color: #3c396f;
}
.configurator .configurator-steps .step-item .selected-items {
  margin: 11px 0 34px;
}
.configurator .configurator-steps .step-item .options .option-item {
  border-bottom: 1px solid #dbdbdb;
}
.configurator .configurator-steps .step-item .options .option-item:last-child {
  border-bottom: none;
}
.configurator .configurator-steps .step-item .options .option-item .label {
  color: #3c396f;
  font-size: 18px;
  line-height: 1.39;
}
.configurator .details-cart {
  background: #fff;
  box-shadow: inset 1px 1px 0 0 #dbdbdb;
  border-bottom: 1px solid #dbdbdb;
}
.configurator .summary-cart-container {
  position: relative;
}
.configurator .summary-cart {
  box-shadow: inset 1px 1px 0 0 #dbdbdb;
  background: #eeeff0;
  padding: 10px 20px 100px;
  border-right:1px solid #dbdbdb;
  border-bottom: 1px solid #dbdbdb;
}
.configurator .summary-cart p {
  color: #939597;
}
.configurator .summary-cart .plume-logo {
  float: left;
}
.configurator .summary-cart .heading-content {
  padding: 0 10px;
}
.configurator .summary-cart .summary-title {
  color: #3c396f;
}
.configurator .btn-container button {
  border-radius: 25px;
  height: 50px;
  box-shadow: -2px 1px 6px 0 rgba(98, 105, 255, 0.2);
  background-color: #6269ff;
  display: block;
  margin: 60px auto 41px;
  text-align: center;
  line-height: 50px;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  padding: 0 20px;
  border:none;
  cursor: pointer;
}
.configurator .membershipBtn {
  position: relative;
  height: 100px;
  box-shadow: 0 1px 2px 0 #dbdbdb;
  background-color: #ffffff;
  color: #939597;
  font-weight: 500;
  line-height: 1;
  padding: 0 19px 0 25px;
  border-radius: 50px 0px 0px 50px;
  z-index: 1;
  text-align: left;
  display: flex;
  min-height: 50px;
  align-items: center;
  font-size: 24px;
  margin-bottom: 30px;
}
.configurator .membershipBtn span:first-child {
  line-height: 29px;
}
.configurator .membershipBtn span.member-price {
  font-size: 24px;
  padding-left: 10px;
  text-align: right;
  position: absolute;
  right: 55px;
  letter-spacing: normal;
}
.configurator .membershipBtn .label {
  padding-right: 30px;
}
.configurator .overlay-close {
  position: relative;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border-radius: 25px;
  border: solid 2px #c6c6c6;
  height: 50px;
  width: 50px;
  cursor: pointer;
  z-index: 1;
  margin: 0 auto;
  display: block;
  text-align: center;
}
@media(max-width: 992px) {
  .configurator .visible-xs {
    display:block;
  }
  .configurator p {
    font-size: 12px;
    line-height: 1.5;
  }
  .configurator .details-cart {
    position:relative;
    z-index: 2;
    padding:0 20px 80px;
  }
  .configurator .details-cart .heading-content {
    margin: 0 -20px;
    padding: 33px 20px 22px;
    background: #eeeff0;
  }
  .configurator .details-cart .heading-content .overlay-close {
    top: 32px;
  }
  .configurator .details-cart .home-icon {
    max-width: 34px;
    margin-right: 22px;
    margin-bottom: 30px;
    position: relative;
    top: -13px;
  }
  .configurator .details-cart .heading-content .heading {
    font-size: 18px;
    margin-bottom: 3px;
    padding-top: 0;
  }
  .configurator .configurator-steps {
    margin: 26px 0;
  }
  .configurator .configurator-steps .step-item .content {
    margin-top: 7px;
  }
  .configurator .configurator-steps .step-item .content P {
    font-size: 14px;
    line-height: 1.5;
    padding-right: 15px;
  }
  .configurator .configurator-steps .step-item .heading-container .ques-heading {
    font-size: 18px;
    line-height: 23px;
    padding-right: 15px;
  }
  .configurator .configurator-steps .step-item .selected-items {
    margin: 8px 0 33px;
  }
  .configurator .configurator-steps .step-item .options {
    margin-top: 0px;
    margin-bottom: 30px;
  }
  .configurator .configurator-steps .step-item .options .option-item {
    padding: 20px 8px 21px;
  }
  .configurator .back-link a {
    font-size: 18px;
    line-height: 23px;
    font-weight: 500;
    color: #3c396f;
    position: absolute;
    left: 19px;
    top: 19px;
  }
  .configurator .back-link a .arrow {
    border: solid #3c396f;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 2px;
    transform: rotate(45deg);
    -webkit-transform: rotate(135deg);
    top: -2px;
    position: relative;
    right: auto;
    margin-right: 8px;
  }
  .configurator .summary-cart .plume-logo {
    max-width: 37px;
    margin-bottom: 20px;
    margin-right: 23px;
  }
  .configurator .summary-cart .summary-title {
    font-size: 16px;
    line-height: 18px;
    padding-top: 0px;
    margin-bottom: 20px;
    padding-right: 15px;
  }
  .configurator .overlay-close {
    position: absolute;
    top: 21px;
    right: 9px;
    border: none;
    height: auto;
    width: auto;
  }
  .configurator .overlay-close svg {
    width: 13px;
    height: 13px;
  }
  .configurator .overlay-close svg path {
    stroke: #3c396f;
  }
  .configurator .details-cart .btn-container button {
    margin: 0;
    position: fixed;
    z-index: 2;
    bottom: 0;
    border-radius: 0;
    padding: 0;
    line-height: 60px;
    height: 60px;
    left: 0;
    right: 0;
    width: 100%;
  }
  .configurator .summary-cart .btn-container button {
    margin: 0;
    position: fixed;
    z-index: 1;
    bottom: 0;
    border-radius: 0;
    padding: 0;
    line-height: 60px;
    height: 60px;
    left: 0;
    right: 0;
    width: 100%;
  }
  .recomended-bundle-open .configurator .details-cart .btn-container button {
    z-index: 0;
  }
  .recomended-bundle-open .configurator .details-cart {
    z-index: 0;
  }
  .configurator .summary-cart {
    padding: 63px 5px 80px 10px;
    position: fixed;
    top: -100%;
    left: 0;
    bottom: 0;
    z-index: 1;
    width: 100%;
    padding-bottom: 100px;
    overflow-y: auto;
  }
  .recomended-bundle-open .configurator .summary-cart {
    top: 0;
    z-index: 3;
    -webkit-transition: top 0.5s ease;
    -moz-transition: top 0.5s ease;
    -o-transition: top 0.5s ease;
    -ms-transition: top 0.5s ease;
    transition: top 0.5s ease;
  }
}
@media only screen and (min-width: 993px) {
  .configurator .visible-xs {
    display:none;
  }
  .configurator .membershipBtn .label {
    padding-right: 10px;
  }
  .configurator {
    display: flex;
    padding-bottom: 0px;
  }
  .configurator .details-cart {
    padding: 50px;
    float: left;
    width: 70%;
  }
  .configurator .summary-cart {
    padding: 50px 10px;
    position: fixed;
    height: 100%;
  }
  .configurator .details-cart .home-icon {
    max-width: 58px;
    margin-right: 18px;
  }
  .configurator .summary-cart .plume-logo {
    max-width: 44px;
    float: left;
    margin-right: 20px;
    margin-bottom: 40px;
  }
  .configurator p {
    font-size: 18px;
    line-height: 1.39;
  }
  .configurator .details-cart .heading-content .heading {
    padding-top: 6px;
    font-size: 28px;
  }
  .configurator .configurator-steps {
    margin: 35px 0;
  }
  .configurator .configurator-steps .step-item {
    padding:0px;
  }
  .configurator .configurator-steps .step-item .heading-container .ques-heading {
    font-size: 24px;
    line-height: 29px;
  }
  .configurator .configurator-steps .step-item .content {
    margin-top: 2px;
  }
  .configurator .configurator-steps .step-item .selected-items {
    margin: 12px 0 34px;
  }
  .configurator .configurator-steps .step-item .options {
    margin-top: 9px;
    margin-bottom: 29px;
  }
  .configurator .configurator-steps .step-item .options .option-item {
    padding: 20px 6px 20px;
  }
  .configurator .configurator-steps .step-item .options .option-item:last-child {
    border-bottom: none;
  }
  .configurator .summary-cart p {
    font-size: 16px;
    line-height: 20px;
  }
  .configurator .summary-cart .summary-title {
    font-size: 18px;
    line-height: 22px;
    padding-top: 3px;
    margin-bottom: 20px;
  }
  .configurator .overlay-close {
    height: 50px;
    width: 50px;
  }
  .configurator .overlay-close svg {
    margin-top:5px;
  }
}
@media(min-width: 1160px) {

}
@media(min-width: 1280px) {
  .configurator .details-cart {
    max-width: 840px;
    float: left;
    padding: 70px 100px 92px 110px;
  }
  .configurator .summary-cart .btn-container button {
    border-radius: 25px;
    height: 50px;
    margin: 60px auto 41px;
    line-height: 50px;
    font-size: 16px;
    padding:0 60px;
  }
  .configurator .summary-cart .heading-content {
    padding: 0 40px 0 10px;
  }
  .configurator .details-cart .heading-content .heading {
    padding-top: 6px;
    font-size: 28px;
  }
  .configurator .configurator-steps {
    margin: 35px 0;
  }
  .configurator .configurator-steps .step-item {
    padding:0px;
  }
  .configurator .configurator-steps .step-item .heading-container .ques-heading {
    padding-right: 40px;
  }
  .configurator .configurator-steps .step-item .content {
    margin-top: 2px;
  }
  .configurator .configurator-steps .step-item .content P {
    padding-right: 50px;
  }
  .configurator .configurator-steps .step-item .options {
    margin-top: 9px;
    margin-bottom: 29px;
  }
  .configurator .configurator-steps .step-item .options .option-item {
    padding: 20px 6px 20px;
  }
  .configurator .configurator-steps .step-item .options .option-item:last-child {
    border-bottom: none;
  }
  .configurator .summary-cart {
    max-width: 600px;
    float: right;
    padding: 80px 30px 10px 30px;
  }
  .configurator .summary-cart .plume-logo {
    margin-bottom: 20px;
  }
  .configurator .summary-cart p {
    font-size: 16px;
    line-height: 20px;
  }
  .configurator .summary-cart .heading-content {
    padding: 0 10px;
  }
  .configurator .summary-cart .summary-title {
    padding-right: 50px;
  }
  .configurator .overlay-close {
    height: 50px;
    width: 50px;
  }
  .configurator .membershipBtn .label {
    padding-right: 30px;
  }
}
@media(min-width: 1440px) {
  .configurator .summary-cart .btn-container button {
    width: 440px;
    padding:0;
  }
}

.contact-info-1zFFAkH7 {
  padding-top: 100px;
  padding-bottom: 100px;
  padding-left: 60px;
  padding-right: 60px;
  min-height: 600px;
}

.contact-info-content-1w81kQ21 {
  width: 960px;
  margin: 0 auto;
  max-width: 100%;
  line-height: 26px;
}

.section-title-22WBvcYG {
  float: left;
  padding-right: 22px;
  margin-right: 0;
  margin-bottom: 100px;
  width: 50%;
  color: var(--primary-text-color);
}

.section-subtitle-2fm8uAMP {
  color: var(--primary-text-color);
}

.section-text-1RvjjZVj,
.section-text-1RvjjZVj a {
  color: var(--secondary-text-color);
}

.section-text-1RvjjZVj a:hover {
  color: var(--primary-text-color);
}


.section-info-2Jcb6C-C {
  float: left;
  width: 50%;
  margin-bottom: 30px;
  color: var(--secondary-text-color);
}

.contact-info-content-1w81kQ21 h3 {
  text-align: center;
  font-weight: 400;
  margin-bottom: 20px;
}

.contact-info-content-1w81kQ21 h4 {
  margin-bottom: 10px;
}

.contact-info-content-1w81kQ21 address {
  font-style: normal;
}

.contact-info-bits-2Ofyugxu {
  clear: both;
  display: flex;
  justify-content: space-between;
}

.contact-info-bit-JGsO_4di {
  width: 230px;
  padding-bottom: 20px;
}

.support-email-25ui9Tu9 {
  margin-bottom: 10px;
}

.support-url-1vaWePDc {
  margin-bottom: 4px;
}

@media screen and (max-width: 992px) {
  .contact-info-1zFFAkH7 {
    padding: 80px 30px 30px 30px;
  }
}  

@media screen and (max-width: 760px) {
  .contact-info-1zFFAkH7 {
    padding: 60px 30px 30px 30px;
  }

  .contact-info-content-1w81kQ21 h2 {
    float: none;
    line-height: normal;
    width: 100%;
    font-size: 32px;
    margin-bottom: 25px;
  }

  .contact-info-content-1w81kQ21 p {
    font-size: 16px;
  }

  .section-info-2Jcb6C-C {
    float: none;
    width: 100%;
    font-size: 14px;
  }

  .contact-info-bits-2Ofyugxu {
    flex-direction: column;
  }
}

.modalOverlay-P9W9ZhS2 {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  background: var(--dim-background-color);
  opacity: 0;
  pointer-events: none;
  z-index: 100;
  transition: opacity ease-in .25s;
}

.modalOverlay-P9W9ZhS2.modalActive-3Q-O9yjE {
  opacity: 1;
  pointer-events: all;
}

.modal-3lLCJWQe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 760px;
  max-width: 96%;
  max-height: 96%;
  border-radius: 20px;
  background-color: var(--primary-background-color);
  box-shadow: 0 10px 40px 0 rgba(60, 57, 111, 0.2);
  padding: 40px 50px 120px;
  transform: translate(-50%,-50%);
  pointer-events: none;
  overflow-y: auto;
  opacity: 0;
  transition: opacity .3s;
}

@media screen and (max-width: 992px) {
  .modal-3lLCJWQe {
    padding: 30px 30px 120px;
  }
}

@media screen and (max-width: 760px) {
  .modal-3lLCJWQe {
    padding: 20px 20px 110px;
  }
}

.modalActive-3Q-O9yjE {
  opacity: 1;
  pointer-events: all;
}

.modalTitle-1Ocm_fqT {
  color: var(--primary-text-color);
  max-width: 80%;
  margin: 0 auto 50px;
  text-align: center;
}

@media screen and (max-width: 760px) {
  .modalTitle-1Ocm_fqT {
    max-width: 90%;
  }
}

.modalCloseIcon-2x8LbsVi {
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--secondary-text-color);
  background-color: var(--primary-background-color);
  height: 50px;
  width: 50px;
  border-radius: 100%;
  padding: 0;
  margin-top: 30px;
  cursor: pointer;
}

.modalCloseIcon-2x8LbsVi:hover {
  border: 1px solid var(--primary-text-color);
  background-color: var(--primary-text-color);
}

.modalCloseIconImage-393CFBZk {
  stroke: var(--secondary-text-color);
}

.modalCloseIcon-2x8LbsVi:hover .modalCloseIconImage-393CFBZk {
  stroke: var(--secondary-background-color);
}
.theme-promo-sunrise .modalCloseIcon-2x8LbsVi:hover {
  background-color: #e6003c;
  border-color: #e6003c;
}
.theme-promo-sunrise .modalTitle-1Ocm_fqT {
  color: #e6003c;
}

.renew-options-OD9X-BXZ {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: justify;
  margin-bottom: 50px;
}

@media(max-width: 760px) {
  .renew-options-OD9X-BXZ {
    flex-direction: column;
    margin-bottom: 30px;
  }
}

.renew-option-3TNiDosZ {
  position: relative;
  padding: 22px 30px 30px 60px;
  margin-bottom: 20px;
  border-radius: 10px;
  border: 1px solid var(--secondary-text-color);
  background-color: var(--secondary-background-color);
  width: 49%;
  min-height: 320px;
  cursor: pointer;
}

@media(max-width: 992px) {
  .renew-option-3TNiDosZ {
    min-height: 270px;
  }
}

@media(max-width: 760px) {
  .renew-option-3TNiDosZ {
    width: 100%;
    min-height: 250px;
  }

  .renew-option-3TNiDosZ:first-child {
    margin-right: 0;
  }
}

.renew-option-3TNiDosZ::after {
  content: "";
  display: block;
  position: absolute;
  top: 24px;
  left: 22px;
  height: 16px;
  width: 16px;
  z-index: 2;
  box-sizing: border-box;
  border-radius: 50%;
  border: 1px solid #cdcdcd;
  background-color: var(--secondary-background-color);
  border-image: initial;
  cursor: pointer;
}

.renew-option-active-2r8LqJUr::after {
  border: solid 4px var(--highlight-color);
}
.theme-promo-sunrise .renew-option-active-2r8LqJUr::after {
  border-color: #e6003c;
}
.renew-option-active-2r8LqJUr {
  border: 1px solid #191941;
}

.renew-option-disabled-3olEwDhF {
  border: 1px solid var(--ui-light-gray);
  opacity: .3;
  box-shadow: 0 2px 2px 0 #dbdbdb;
}

.renew-option-title-1eA95Kwf {
  color: var(--primary-text-color);
  margin-bottom: 5px;
}

.renew-option-text-3YRYfcQf {
  font-size: 14px;
  color: var(--secondary-text-color);
}

.renew-button-Y4sMKlLq {
  padding: 0;
  display: flex;
  justify-content: center;
}

.dashboardMembership-1Yx1JBJ3 {
  padding-top: 60px;
}

.dashboardMembershipContent-2ABYsgkm {
  margin: 0 auto 60px;
  width: var(--content-width);
}

.membership-3a07P6XO {
  margin-bottom: 30px;
}

.membershipCanceled-318AFAPX {
  display: none;
}

.membership-renew-success-JH9omdMB {
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  background: var(--color-success-bg);
  border-radius: 10px;
}

.membership-renew-success-JH9omdMB  p {
  font-size: 18px;
  font-weight: 400;
  color: var(--color-success);
}

.membership-renew-success-JH9omdMB span {
  position: absolute;
  top: 30%;
  right: 20px;
  color: var(--secondary-text-color);
  cursor: pointer;
}

@media screen and (max-width: 760px) {
  .dashboardMembership-1Yx1JBJ3 {
    padding-top: 48px;
  }

  .dashboardMembershipContent-2ABYsgkm {
    margin: 0 auto 48px;
  }
}

.paymentMethodsContent-3a-NTfVH {
  margin: 0 auto;
  width: var(--content-width);
}

.notDefault-qV9KSmK3 {
  padding-top: 26px;
}

.cardFadeOut-26-vNOqD {
  opacity: 0;
}

.card-3uNLwrT8 {
  position: relative;
  padding: 22px 30px 30px 50px;
  margin-bottom: 20px;
  border-radius: 10px;
  border: 1px solid var(--secondary-text-color);
  background-color: var(--secondary-background-color);
  width: 49%;
  cursor: pointer;
}

@media screen and (max-width: 759px) {
  .card-3uNLwrT8 {
    width: 100%;
  }
}

.card-3uNLwrT8::after {
  content: "";
  display: block;
  position: absolute;
  top: 24px;
  left: 22px;
  height: 16px;
  width: 16px;
  z-index: 2;
  box-sizing: border-box;
  border-radius: 50%;
  border: 1px solid #cdcdcd;
  background-color: var(--secondary-background-color);
  border-image: initial;
  cursor: pointer;
}

.card-active-tQNVFaW7::after {
  border: solid 4px var(--highlight-color);
}

.card-active-tQNVFaW7 {
  border: 1px solid #191941;
}

.input-error-3c5gKYJJ {
  border-bottom-color: var(--color-error);
}

.card-text-1q7dZ9yn {
  color: var(--primary-text-color);
}

.card-badge-3gPwzssY {
  position: absolute;
  top: 10px;
  right: 35px;
  width: auto;
  height: 24px;
  margin: 10px 0 8px;
}

.card-cvv-3fkMCjpt {
  display: flex;
  flex-direction: column;
  font-size: 12px;
  text-transform: uppercase;
  margin-top: 15px;
}

.card-cvv-3fkMCjpt input[type="text"] {
  display: block;
  width: 100%;
  height: 40px;
  border-top-style: initial;
  border-right-style: initial;
  border-left-style: initial;
  border-top-color: initial;
  border-right-color: initial;
  border-left-color: initial;
  font-size: 16px;
  font-weight: 500;
  color: #3c396f;
  background-color: transparent;
  border-image: initial;
}

.zuoraPayment-3b_bUCVI {
  min-height: 263px;
}

.input-checkbox-2PxfjPna {
  overflow: hidden;
  position: relative;
  height: 20px;
  line-height: 22px;
  margin-bottom: 20px;
}

.input-checkbox-2PxfjPna input[type='checkbox'] {
  position: absolute;
  left: -9999px;
}

.input-checkbox-2PxfjPna input[type='checkbox']:disabled + .input-checkbox-checkmark-2SDzPl8N {
  opacity: 0.2;
}

.input-checkbox-checkmark-2SDzPl8N {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: solid 2px var(--secondary-text-color);
  border-radius: 2px;
  background-color: var(--primary-backgroud-color);
  margin: 0 8px 0 0;
  vertical-align: top;
  cursor: pointer;
}

.input-checkbox-label-Xkh6auwI {
  display: inline-block;
  font-size: 15px;
  font-weight: 400;
  color: var(--secondary-text-color);
  cursor: pointer;
  user-select: none;
}

.input-checkbox-checkmark-active-3cPOT6mI {
  background-color: var(--tertiary-text-color);
  border: solid 2px var(--tertiary-text-color);
}

.checkmarkIcon-iXU8jrk8 {
  height: 1em;
  width: auto;
}
.error-overlay-39C95jLb {
  position: absolute;
  background-color: rgba(255,255,255,.3);
  width: calc(100% - 100px);
  height: calc(100% - 60px);
  z-index: 999;
}

.error-overlay-box-2M0TJ1Fv {
  position: relative;
  background-color: var(--secondary-background-color);
  box-shadow: rgba(60, 57, 111, 0.2) 0px 10px 40px 0px;
  width: 400px;
  min-height: 280px;
  border-radius: 20px;
  padding: 60px 36px;
  margin: 50px auto;
}

@media(max-width: 760px) {
  .error-overlay-box-2M0TJ1Fv {
    max-width: 320px;
    min-height: 280px;
  }  
}

.error-overlay-message-1YyTG3v- {
  color: var(--primary-text-color);
  text-align: center;
}

.error-overlay-btn-14HstprX {
  position: absolute;
  left: 50%;
  bottom: 50px;
  transform: translate(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--secondary-text-color);
  background-color: var(--secondary-background-color);
  height: 50px;
  width: 50px; 
  border-radius: 100%;
  padding: 0;
  cursor: pointer;
}

.error-overlay-btn-14HstprX:hover {
  border: 1px solid var(--primary-text-color);
  background-color: var(--primary-text-color);
} 

.error-overlay-close-icon-3h0PPuu1 {
  stroke: var(--secondary-text-color);
}

.error-overlay-btn-14HstprX:hover .error-overlay-close-icon-3h0PPuu1 {
  stroke: var(--secondary-background-color);
}  
.renew-membership-2KRo_J0d {
  background: var(--color-error-bg);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
}

.renew-membership-2KRo_J0d p {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.11;
  letter-spacing: 0.9px;
  color: var(--primary-text-color);
}

.renew-membership-link-2Ub8SmqK {
  font-size: 18px;
  color: var(--highlight-color);
  margin-top: 5px;
  cursor: pointer;
}

.payment-methods-wrapper-3IQEOkfR {
  margin: 20px 0 10px;
}

.renew-container-1wYFtkN5 {
  position: relative;
}

.renew-info-3JKQQZDg {
  border-radius: 10px;
  background-color: #f5f5f7;
  padding: 12px 20px;
  color: var(--secondary-text-color);
}

.input-checkbox-3gIU9F1P {
  overflow: hidden;
  position: relative;
  line-height: 22px;
  margin-bottom: 20px;
}

.input-checkbox-3gIU9F1P input[type='checkbox'] {
  position: absolute;
  left: -9999px;
}

.input-checkbox-3gIU9F1P input[type='checkbox']:disabled + .input-checkbox-checkmark-NvulJ7tv {
  opacity: 0.2;
}

.input-checkbox-checkmark-NvulJ7tv {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: solid 2px var(--secondary-text-color);
  border-radius: 2px;
  background-color: var(--primary-backgroud-color);
  margin: 2px 8px 0 0;
  vertical-align: top;
  cursor: pointer;
}

.input-checkbox-label-2JeoG3u4 {
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  color: var(--secondary-text-color);
  user-select: none;
  width: 95%;
}

@media screen and (max-width: 760px) {
  .input-checkbox-label-2JeoG3u4 {
    width: 90%;
  }
}

.input-checkbox-checkmark-active-2o0oBB8L {
  background-color: var(--tertiary-text-color);
  border: solid 2px var(--tertiary-text-color);
}

.checkmarkIcon-3Idb-JNq {
  height: 1em;
  width: auto;
}

.add-new-method-3hyo6ahm {
  font-size: 15px;
  color: var(--tertiary-text-color);
  cursor: pointer;
}

.is-validating-_NcEnZdH {
  opacity: .3;
  pointer-events: none;
  position: relative;
}

.overlay-spinner-4h4ZrcGH {
  position: absolute;
  top: 100px;
  z-index: 400;
}

.check-terms-tGJCtZue {
  margin-top: 28px;
  margin-bottom: 16px;
}

.renew-button-4sEE6qEd {
  padding: 0;
  display: flex;
  justify-content: center;
}


.tooltipContainer-1M0wgNko {
  position: relative;
}

.tooltip-2PQVnwVd {
  position: absolute;
  top: 20px;
  right: 8px;
  cursor: arrow;
  pointer-events: all;
  z-index: 5;
}

.tooltip-2PQVnwVd img {
  width: auto;
  height: 100%;
}

.content-TpfiUBo1 {
  display: none;
}

.tooltip-2PQVnwVd:hover .content-TpfiUBo1 {
  display: block;
}

.info-NX-a5SHf {
  position: absolute;
  bottom: 35px;
  right: -30px;
  width: 150px;
  padding: 8px;
  background-color: var(--tooltip-background-color);
  color: var(--button-dark-text-color);
  border-radius: 6px;
  text-align: center;
  font-size: 12px;
  line-height: 1.33;
  font-family: var(--primary-font-family);
}

@media screen and (max-width: 760px) {
  .tooltipContent-1AUfl_T_ {
    right: -15px;
  }
}

.triangle-C5Al_3X_ {
  position: absolute;
  bottom: 25px;
  right: 0;
  width: 0;
  border-top: 10px solid var(--tooltip-background-color);
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  content: " ";
  font-size: 0;
  line-height: 0;
}

.orderItems-3QG1Ebgd {
  margin-bottom: 28px;
}

.content-oRqKNf3V {
  margin: 58px auto;
  width: var(--content-width);
}

.orderCard-D08TcDZW:not(:last-child) {
  margin-bottom: 58px;
}

.card-2waU9Xzq {
  width: 33.33%;
  min-width: 250px;
  padding-right: 20px;
}

@media screen and (max-width: 760px) {
  .card-2waU9Xzq {
    width: 100%;
    margin-bottom: 20px;
  }
}

.modal-2vwydYrc {
  max-height: 65vh;
  overflow-x: hidden;
  overflow-y: auto;
}

.faq-hero-1urcbzgq {
  position: relative;
  display: block;
}

.content-1IuBPwJI {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
}

.column-left-9833hwmR {
  display: flex;
  flex-direction: column;
  max-width: 488px;
  z-index: 3;
}

@media(max-width: 760px) {
  .column-left-9833hwmR {
    width: 80%;
  }
}

.video-RzShrhEI {
  display: flex;
  width: 100%;
  height: 100%;
}

.video-overlay-1eLunTHb {
  position: absolute;
  background-color: rgba(98, 105, 255, 0.2);
  height: 100%;
  width: 100%;
  z-index: 2;
}

.section-title-31iDr64E {
  color: var(--hero-text-color);
  margin-bottom: 20px;
}

.section-link-TTIxR2pZ {
  display: flex;
  align-items: center;
  color: var(--hero-text-color);
  margin: auto;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.section-link-TTIxR2pZ:hover {
  opacity: .8;
}

.icon-play-2E-DKz6u {
  margin-right: 12px;
}
.faq-content-3S8lwLTc {
  background-color: var(--secondary-background-color);
  padding-top: 120px;
  padding-bottom: 156px;
}

@media(max-width: 992px) {
  .faq-content-3S8lwLTc {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.content-1jWxF7No {
  max-width: 66%;
  margin: auto;
}

@media(max-width: 992px) {
  .content-1jWxF7No {
    max-width: 100%;
  }
}

.section-title-yQb5lO2G {
  color: var(--primary-text-color);
  margin-bottom: 85px;
}

@media(max-width: 992px) {
  .section-title-yQb5lO2G {
    margin-bottom: 30px;
  }
}

.faq-container-1iYF_mHh {
  border-bottom: 1px solid #eaeaea;
  margin-bottom: 20px;
  padding-bottom: 10px;
}

.faq-title-2nhksbH2 {
  display: flex;
  justify-content: space-between;
  color: var(--primary-text-color);
  cursor: pointer;
  padding-bottom: 10px;
}

.faq-answer-2u861I2K {
  color: var(--secondary-text-color);
  max-height: 0;
  height: 100%;
  overflow: hidden;
  transition: .5s ease-out;
  white-space: pre-line;
}
.faq-answer-2u861I2K a {
  font-size: 18px;
  font-weight: normal;
  line-height: 1.44;
  color: #6269ff;
}

.faq-answer-2u861I2K.open-VZ0ls-BE {
  max-height: 200px;
}

@media(max-width: 992px) {
  .faq-answer-2u861I2K.open-VZ0ls-BE {
    max-height: 450px;
  }
}

.menu-2gGvcjD_ {
  justify-content: space-between;
  padding: 0;
  width: 100%;
}
.legalSideBar-2-RSW5bp {
  background: #f5f5f7;
  vertical-align: top;
}
.legalSideBar-2-RSW5bp h2 {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0;
}
@media screen and (max-width: 760px) {
  .menu-2gGvcjD_ {
    display: block;
  }
  .menu-2gGvcjD_ > li {
    display: block;
    width: 100%;
    text-align: left !important;
  }
  .menu-2gGvcjD_ > li a {
    text-align: left;
    padding-bottom: 10px;
    display: block;
  }
}
.menu-2gGvcjD_ > li {
  list-style: none !important;
  text-align: left;
  padding-bottom: 5px;
}
.menu-2gGvcjD_ a {
  text-decoration: none;
  color: #939597;
}

.menu-2gGvcjD_ .active-3O3mYb4n {
  opacity: 1;
}
.country-drop ul {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 7px 7px 6px rgba(0, 0, 0, 0.1);
  display: none;
  margin: 0 auto;
  max-width: 299px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  left: 50%;
  top: 0;
  text-align: left;
  transform: translate(-50%, 0);
  width: 100%;
  z-index: 9;
}
.country-drop ul li {
  font-size: 16px;
  font-weight: 500;
  height: 50px;
  line-height: 50px;
  list-style: none;
}

.country-drop ul li a {
  display: block;
  padding: 0 0 0 18px;
  width: 100%;
}
.country-drop ul li a:hover {
  background: #e8e9ec;
}
.country-drop {
  position: relative;
}
.country-drop-head {
  color: #6269ff;
  font-size: 16px;
  line-height: 1;
  position: relative;
}
.country-drop-head:after {
  border: solid 2px #6269ff;
  border-left: 0;
  border-bottom: 0;
  content: '';
  height: 4px;
  margin: 0 0 0 12px;
  position: absolute;
  top: 6px;
  transform: rotate(-225deg);
  width: 4px;
}
.country-drop.active ul {
  display: block;
}
body[data-user-agent*="MacIntel"] .country-drop-head:after,
body[data-user-agent*="iPhone"] .country-drop-head:after {
  top: 3px;
}

@media(max-width: 767px) {
  .legalSideBar-2-RSW5bp h2 {
    margin: 0 0 15px;
    text-align: center;
  }
  .legalSideBar-2-RSW5bp {
    padding: 17px 20px 30px;
  }
  .country-drop-head {
    margin: 0 auto;
    max-width: 150px;
  }
  .country-drop {
    margin: 0 0 16px;
    text-align: center;
  }
  .sidebarWrap-xLwCdpc0 {
    position: relative;
  }
  .sidebarWrap-xLwCdpc0 ul {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 7px 7px 6px rgba(0, 0, 0, 0.1);
    display: none;
    margin: 0 auto;
    max-width: 299px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    left: 0;
    right: 0;
    overflow-y: auto;
    max-height: 350px;
    top: 100%;
    text-align: left;
    width: 100%;
  }
  .sidebarWrap-xLwCdpc0 ul li a {
    display: block;
    padding: 12px 0 16px 18px;
    width: 100%;
  }
  .sidebarWrap-xLwCdpc0 ul li a:hover {
    background: #e8e9ec;
  }
  .sidebarWrap-xLwCdpc0.active-3O3mYb4n ul {
    display: block;
  }
  .menuDropHead-3ffMGEEZ {
    border: 1px solid #3c396f;
    background: #fff;
    border-radius: 25px;
    color: #3c396f;
    height: 51px;
    line-height: 16px;
    margin: 0 auto;
    max-width: 325px;
    padding: 15px 0 14px 13px;
    position: relative;
  }
  body[data-user-agent*="MacIntel"] .menuDropHead-3ffMGEEZ,
  body[data-user-agent*="iPhone"] .menuDropHead-3ffMGEEZ {
    padding-top: 19px;
    padding-bottom: 11px;
  }
  .menuDropHead-3ffMGEEZ:after {
    border: solid 2px #6269ff;
    border-left: 0;
    border-bottom: 0;
    content: '';
    height: 4.2px;
    margin: 0 0 0 12px;
    position: absolute;
    top: 22px;
    transform: rotate(-225deg);
    right: 30px;
    width: 4.2px;
  }
  .legal-sidebar.active ul {
    display: block;
  }
}
@media(min-width: 768px) {
  .country-drop ul {
    left: 0;
    transform: translate(0, 0);
    margin: 0 0 0 -18px;
    width: 299px;
  }
  .legalSideBar-2-RSW5bp h2 {
    line-height: 44px;
  }
  .legalSideBar-2-RSW5bp {
    padding: 30px 0 0 24px;
    width: 22.99%;
  }
  .menu-2gGvcjD_ {
    margin: 0;
  }
  .menu-2gGvcjD_ li a {
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
    display: block;
    padding: 6px 0 7px 18px;
    line-height: 1.2;
  }
  body[data-user-agent*="MacIntel"] .menu-2gGvcjD_ li a {
    padding-top: 8px;
    padding-bottom: 6px;
  }

  .menu-2gGvcjD_ a:hover {
    background: #e9eaf1;
  }
  .menu-2gGvcjD_ .active-3O3mYb4n,
  .menu-2gGvcjD_ a.active-3O3mYb4n:hover {
    background: #3c396f;
    color: #fff;
  }
  .menu-2gGvcjD_ > li {
    margin: 0 0 13px;
    padding: 0;
    line-height: 1;
  }
  .sidebarWrap-xLwCdpc0 {
    margin: 0 0 0 -18px;
  }
  .country-drop {
    margin: 0 0 23px;
  }


}

@media(min-width: 993px) {
  .legalSideBar-2-RSW5bp {
    padding: 71px 0 0 60px;
  }

}
@media(min-width: 1100px) {
  .menu-2gGvcjD_ li a {
    padding-right: 34%;
  }
}

.regulatoryCE-2C92f9q7,
.regulatoryWarning-2BdB3XG1 {
  height: 2em;
  width: auto;
  margin-bottom: 1em;
}

.regulatoryWarningBook-1B2UDSPU {
  height: 4em;
  width: auto;
  margin: 0 2em;
}

.tableCaption-3ZdxdPoI {
  text-align: left;
  margin-bottom: 1em;
  font-weight: 700;
  font-size: 18px;
}

.address-GqF-3eYr {
  font-style: normal;
  margin-left: 3em;
}
.headerIcon-3jXHwycT {
  height: auto;
  width: 1em;
  display: inline;
  margin: 0 1ex -3px 0;
}

.legalpageContent-3PzULpM3 h1 {
    color: #3c396f;
    font-weight: 500;
}
.legalpageContent-3PzULpM3 ul li {
    list-style: none;
    padding-bottom: 16px;
}
.legalpageContent-3PzULpM3 ul li:last-child {
    padding-bottom: 0;
}
.legalpageContent-3PzULpM3 {
    background: #fff;
}
.sub-list li {
    position: relative;
}
.sub-list li .sub-list-bullet {
    left: 0;
    position: absolute;
}
.legalpageContent-3PzULpM3 strong {
    font-weight: 500;
}
.legalpageContent-3PzULpM3 ul li ul li:last-child,
.legalpageContent-3PzULpM3 ul li:last-child {
    padding-bottom: 0;
}
.legalpageContent-3PzULpM3 p {
    font-size: 16px;
    margin: 0 0 18px 0;
}
.legalpageContent-3PzULpM3 li span {
    font-weight: 500;
}
.legalpageContent-3PzULpM3 h3 {
    margin: 0 0 9px 0; 
}
.legalpageContent-3PzULpM3 li h4 {
    color: #939597;
    font-weight: 500;
    font-size: 16px;
    margin: 0;
    padding: 0 0 9px;
}
.legalpageContent-3PzULpM3 a {
    color: #6269ff;
}
.legal-page {
    padding: 0;
    width: 100%;
}
.legal-page .legalpageContent ol,
.legal-page .legalpageContent ul {
  padding: 0;
}
body > div {
    height: auto;
}
.legalpageContent-3PzULpM3 address {
    margin: 11px 0 9px;
}
.legalpageContent-3PzULpM3 address span {
    font-weight: 400;
    clear: both;
    display: block;
}
.legalpageContent-3PzULpM3 ul li ul {
    margin: 0;
}
.sub-list-sub-49TneZSh li:first-child {
    padding-bottom: 9px;
}
.legalpageContent-3PzULpM3 ul li ul li:first-child {
    padding-bottom: 9px;
}
ul.sub-list-axkF_mXn {
    padding-left: 15px;
}

@media(max-width: 767px) {
    .legal-page {
        float: left;
        width: 100%;
    }
    .legal-page-content {
        float: left;
        padding: 0 0 60px;
        width: 100%;
    }
    .legalpageContent-3PzULpM3 {
        background: #fff;
        padding: 19px 20px 25px;
    }
    .sub-list li {
        padding-left: 18px;
        position: relative;
    }
    .legalpageContent-3PzULpM3 ul li, 
    .legalpageContent-3PzULpM3 p {
        font-size: 16px;
    }
    .legalpageContent-3PzULpM3 ul {
        padding-left: 10px;
        margin-top: 0;
    }
    .legalpageContent-3PzULpM3 h1 {
        font-size: 32px;
        line-height: 44px;
        padding: 0 0 15px;
    }

}
@media(min-width: 768px) {
    .legalpageContent-3PzULpM3 {
        padding: 26px 20px 60px 5%;
        width: 77.01%;
    }
    .legalpageContent-3PzULpM3 h1 {
        font-size: 44px;
        line-height: 44px;
        padding: 0 0 30px;
    }
    .legalpageContent-3PzULpM3 ul {
        padding: 0 0 0 20px;
        margin: 9px 0 18px;
    }
    .legalpageContent-3PzULpM3 ul li ul {
        margin-bottom: 0;
        padding: 0 0 0 15px;
    }
    .sub-list li {
        padding-left: 20px;
        position: relative;
    }
    .legal-page-content {
        display: flex;
        min-height: calc(100vh - 80px);
        flex-flow: row nowrap;
        align-items: stretch;
    }
}
@media(min-width: 993px) {
    .legalpageContent-3PzULpM3 {
        padding: 26px 60px 120px 8%;
    }
}

  

.content-2GrWYELX {
  display: flex;
  flex-wrap: wrap;
  width: 85%;
  margin: auto;
  padding-top: 55px;
  padding-bottom: 100px;
}
.main-head-HO7SPeLy{
  font-size: 44px;
  font-weight: 500;
  font-style: normal;
  font-stretch: normal;
  line-height: 1;
  letter-spacing: normal;
  text-align: center;
  color: #3c396f;
  padding-top: 60px;
  background: #fff;
}
@media(max-width: 992px) {
  .content-2GrWYELX {
    padding-top: 30px;
    width: 100%;
  }
}

@media(max-width: 760px) {
  .content-2GrWYELX {
    flex-direction: column;
    margin-bottom: 0;
  }
  .main-head-HO7SPeLy {
    font-size: 32px;
  }
}

.column-3hVeD6ZA {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 33.33%;
  padding-left: 40px;
  padding-right: 40px;
  padding-bottom: 60px;
}

@media(max-width: 992px) {
  .column-3hVeD6ZA {
    padding-left: 12px;
    padding-right: 12px;
    padding-bottom: 20px;
  }
}

@media(max-width: 760px) {
  .column-3hVeD6ZA {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
  }
}

.img-container-Nzrvx1ls {
  width: 90px;
  height: 90px;
  margin-bottom: 22px;
}
.section-text-2iUiGtsX {
  color: var(--secondary-text-color);
  padding:0 5px;
}
.img-container-Nzrvx1ls img {
  width: 100%;
  height: auto;
}

.section-subtitle-B6Nt2ccI {
  color: var(--primary-text-color);
  margin-bottom: 15px;
  font-size: 18px;
  line-height: 1.44;
}

@media(max-width: 992px) {
  .img-container-Nzrvx1ls {
    width: 60px;
    height: 50px;
  }
}

@media(max-width: 992px) {
  .section-subtitle-B6Nt2ccI {
    margin-bottom: 5px;
    padding: 0 20px;
    line-height: 1.44;
    font-size: 18px;
  }
  .section-text-2iUiGtsX {
    padding:0 25px;
    font-size:16px;
    line-height: 1.5;
  }
}

.overlay-benefit-wrap {
  background-color: #fff;
}
@media(min-width: 993px) {
  .theme-promo-sunrise .overlay-benefit-wrap {
    padding: 0 35px;
  }
  .theme-promo-sunrise .img-container-Nzrvx1ls {
    width: 102px;
    height: auto;
  }
  .theme-promo-sunrise .al-security-24l4cyun {
    padding-left: 26px;
    padding-right: 26px;
  }
  .theme-promo-sunrise .map-your-home-2J-484th .img-container-Nzrvx1ls {
    width: 106px;
  }
  .theme-promo-sunrise .efficient-updates-2ilLDWV0 .img-container-Nzrvx1ls {
    width: 90px;
    margin-top: -20px;
  }
  .theme-promo-sunrise .efficient-updates-2ilLDWV0 .section-subtitle-B6Nt2ccI {
    padding: 0 40px;
  }
  .theme-promo-sunrise .efficient-updates-2ilLDWV0 .section-text-2iUiGtsX {
    padding: 0;
  }
  .theme-promo-sunrise .cheap-hardware-2nNUfMNx .img-container-Nzrvx1ls {
    width: 82px;
  }
  .theme-promo-sunrise .warranty-extension-3RcBUIZy .section-text-2iUiGtsX,
  .theme-promo-sunrise .return-policy-1U3BMh1D .section-text-2iUiGtsX,
  .theme-promo-sunrise .customer-service-61xs9Gep .section-text-2iUiGtsX {
    padding: 0 15px;
  }
}

.privacy-hero-2d1VuAVu {
  background-color: #fcfcff;
  padding-top: 80px;
  padding-bottom: 50px;
}

@media screen and (max-width: 992px) {
  .privacy-hero-2d1VuAVu {
    padding-top: 40px;
    padding-bottom: 20px;
  }
}

.content-VPCM7BjE {
  display: flex;
  height: 100%;
  width: 85%;
  margin: auto;
}

@media screen and (max-width: 992px) {
  .content-VPCM7BjE {
    flex-direction: column;
    width: 60%;
  }
}

@media screen and (max-width: 760px) {
  .content-VPCM7BjE {
    width: 100%;
  }
}

.column-left-31_CeotG {
  width: 60%;
  padding-left: 80px;
}

@media screen and (max-width: 1350px) { /*Additional breakpoint just for this example*/
  .column-left-31_CeotG {
    width: 50%;
    padding-left: 0;
  }
}

@media screen and (max-width: 992px) {
  .column-left-31_CeotG {
    width: 100%;
    padding-left: 0;
  }
}

.column-right-ms_99EIY {
  width: 40%;
  padding-top: 10px;
}

@media screen and (max-width: 1350px) { /*Additional breakpoint just for this example*/
  .column-right-ms_99EIY {
    width: 50%;
  }
}

@media screen and (max-width: 992px) {
  .column-right-ms_99EIY {
    width: 100%;
    padding-top: 0;
  }
}

.section-title-xndgUqNc {
  font-size: 58px;
  line-height: 1.07;
  color: var(--primary-text-color);
  margin-bottom: 10px;
  max-width: 500px;
}

@media screen and (max-width: 1350px) { /*Additional breakpoint just for this example*/
  .section-title-xndgUqNc {  
    font-size: 51px;
  }
}

@media screen and (max-width: 1200px) {
  .section-title-xndgUqNc {
    font-size: 36px;
    max-width: 360px;
  }
} 

@media screen and (max-width: 992px) {
  .section-title-xndgUqNc {
    font-size: 32px;
    max-width: 100%;
  }
}  

@media screen and (max-width: 760px) {
  .section-title-xndgUqNc {
    margin-bottom: 10px;
  }
}

.section-text-1fNddwAe {
  font-size: 21px;
  line-height: 1.24;
  color: var(--primary-text-color);
  margin-bottom: 30px;
  max-width: 410px;
}

@media screen and (max-width: 1350px) { /*Additional breakpoint just for this example*/
  .section-text-1fNddwAe {
    font-size: 18px;
  }
} 

@media screen and (max-width: 992px) {
  .section-text-1fNddwAe {
    font-size: 15px;
    margin-bottom: 10px;
    max-width: 100%;
  }
}

.privacy-content-first-255sNy3h {
  background-color: var(--secondary-background-color);
  padding-top: 70px;
  padding-bottom: 77px;
}

.privacy-content-second-3aAt61xP {
  background-color: #fcfcff;
  padding-top: 104px;
  padding-bottom: 124px;
}

.privacy-content-third-xsZ06mef {
  background-color: var(--secondary-background-color);
  padding-top: 20px;
  padding-bottom: 120px;
}

@media screen and (max-width: 992px) {
  .privacy-content-first-255sNy3h {
    padding-top: 20px;
    padding-bottom: 40px;
  }
}

@media screen and (max-width: 992px) {
  .privacy-content-second-3aAt61xP {
    padding-top: 40px;
    padding-bottom: 60px;
  }
}

@media screen and (max-width: 992px) {
  .privacy-content-third-xsZ06mef {
    padding-top: 40px;
    padding-bottom: 0;
  }
}

.content-11i27NPn {
  display: flex;
  height: 100%;
  width: 85%;
  margin: auto;
}

@media screen and (max-width: 992px) {
  .content-11i27NPn {
    flex-direction: column;
    width: 60%;
  }
}

@media screen and (max-width: 760px) {
  .content-11i27NPn {
    width: 100%;
    text-align: center;
  }
}

.column-left-LMm4MywI {
  width: 60%;
  padding-left: 80px;
  padding-top: 30px;
}

@media screen and (max-width: 1350px) { /*Additional breakpoint just for this example*/
  .column-left-LMm4MywI {
    padding-left: 0;
    padding-top: 0;
  }
}

@media screen and (max-width: 992px) {
  .column-left-LMm4MywI {
    width: 100%;
    padding-left: 0;
  }
}

.privacy-content-second-3aAt61xP .column-left-LMm4MywI {
  padding-top: 0;
  padding-left: 55px;
}

@media screen and (max-width: 1350px) { /*Additional breakpoint just for this example*/
  .privacy-content-second-3aAt61xP .column-left-LMm4MywI {
    padding-left: 0;
  }
}

@media screen and (max-width: 992px) {
  .privacy-content-second-3aAt61xP .column-left-LMm4MywI {
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-top: 40px;
    order: 1;
  }

  .privacy-content-second-3aAt61xP .column-left-LMm4MywI .img-container-27qw02G7 {
    order: 1;
  }
}

.privacy-content-third-xsZ06mef .column-left-LMm4MywI {
  width: 45%;
  padding-left: 0;
  padding-top: 0;
}

@media screen and (max-width: 992px) {
  .privacy-content-third-xsZ06mef .column-left-LMm4MywI {
    width: 60%;
    margin-left: auto;
    margin-right: auto;
    order: 1;
  }
}

.column-right-2YW0pQoR {
  width: 40%;
  padding-top: 10px;
} 

@media screen and (max-width: 992px) {
  .column-right-2YW0pQoR {
    width: auto;
    padding-top: 0;
    margin-left: auto;
    margin-right: auto;
  }
}

.privacy-content-second-3aAt61xP .column-right-2YW0pQoR {
  padding-top: 65px;
}

@media screen and (max-width: 992px) {
  .privacy-content-second-3aAt61xP .column-right-2YW0pQoR {
    padding-top: 0;
  }
}

.privacy-content-third-xsZ06mef .column-right-2YW0pQoR {
  width: 55%;
  padding-top: 100px;
}

@media screen and (max-width: 992px) {
  .privacy-content-third-xsZ06mef .column-right-2YW0pQoR {
    width: 100%;
    padding-top: 0;
  }
}

.img-container-27qw02G7 {
  max-width: 400px;
  box-shadow: var(--box-shadows-images);
  background-color: #c8c8c8;
  border-radius: 30px;
}

@media screen and (max-width: 1200px) {
  .img-container-27qw02G7 {
    max-width: 300px;
  }
}  

@media screen and (max-width: 992px) {
  .img-container-27qw02G7 {
    max-width: 320px;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (max-width: 760px) {
  .img-container-27qw02G7 {
    max-width: 80%;
  }
}

.img-container-27qw02G7.push-down-9g69Ni0p {
  margin-top: 260px;
}

@media screen and (max-width: 992px) {
  .img-container-27qw02G7.push-down-9g69Ni0p {
    margin-top: 30px;
  }
}

.img-container-27qw02G7 img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 25px;
}

.section-icon-lg-3dyoHZI8 {
  max-width: 510px;
}

.section-icon-3oIG3INe {
  position: absolute;
  max-width: 120px;
  top: -20px;
  left: -145px;
}

@media screen and (max-width: 1200px) {
  .section-icon-3oIG3INe {
    position: absolute;
    max-width: 75px;
    left: -95px;
  }
}  

@media screen and (max-width: 992px) {
  .section-icon-3oIG3INe {
    position: relative;
    max-width: 80px;
    margin-right: 25px;
    top: -5px;
    left: 0;
  }
}

@media screen and (max-width: 760px) {
  .section-icon-3oIG3INe {
    margin-bottom: 5px; 
    margin-left: auto;
    margin-right: auto;
    top: 0;
  }
}

.section-group-3JdXpdlq {
  position: relative;
  margin-bottom: 100px;
}

@media screen and (max-width: 1200px) {
  .section-group-3JdXpdlq {
    margin-bottom: 40px;
  }
}  

@media screen and (max-width: 992px) {
  .section-group-3JdXpdlq {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 760px) {
  .section-group-3JdXpdlq {
    flex-direction: column;
    align-items: flex-start;
  }
}

.section-group-3JdXpdlq.push-down-9g69Ni0p {
  margin-top: 151px;
  margin-left: 35px;
}

@media screen and (max-width: 992px) {
  .section-group-3JdXpdlq.push-down-9g69Ni0p {
    margin-top: 50px;
    margin-left: 0;
  }
}

@media screen and (max-width: 760px) {
  .section-group-3JdXpdlq.push-down-9g69Ni0p {
    margin-top: 30px;

  }
}

.section-title-1TZEfAa0 {
  font-size: 51px;
  line-height: 1.14;
  color: var(--primary-text-color);
  font-style: italic;
  letter-spacing: -1px;
  margin-bottom: 40px;
  max-width: 480px;
}

@media screen and (max-width: 1200px) {
  .section-title-1TZEfAa0 {  
    font-size: 32px;
    max-width: 350px;
  }
}

@media screen and (max-width: 992px) {
  .section-title-1TZEfAa0 {
    max-width: 100%;
  }
}  

@media screen and (max-width: 760px) {
  .section-title-1TZEfAa0 {
    margin-bottom: 10px;
  }
}

.section-text-CAXUEiPu {
  font-size: 26px;
  line-height: 1.26;
  color: var(--primary-text-color);
  max-width: 485px;
}

@media screen and (max-width: 1200px) {
  .section-text-CAXUEiPu { 
    font-size: 15px;
    max-width: 350px;
  }
}

.privacy-content-third-xsZ06mef .section-text-CAXUEiPu {
  min-width: 660px;
}

@media screen and (max-width: 1200px) {
  .privacy-content-third-xsZ06mef .section-text-CAXUEiPu {
    min-width: 100%;
  }
}

.section-note-wJpRapOl {
  color: var(--secondary-text-color);
  margin-top: 60px;
  text-align: left;
}

@media screen and (max-width: 760px) {
  .section-note-wJpRapOl {
    max-width: 80%;
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
}

.membershipButton-15Dw-MgM {
  position: absolute;
  cursor:pointer;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  color: var(--color-white);
  padding: 0 19px 0 25px;
  background: var(--tertiary-text-color);
  border-radius: 25px;
  border: solid 1px var(--tertiary-text-color);
  z-index: 1;
  min-width: 370px;
  max-width: 100%;
  text-align: left;
  display: flex;
  min-height: 50px;
  align-items: center;
  letter-spacing: 0.3px;
}

.membershipButton-15Dw-MgM i {
  font-size: 16px;
  font-style: normal;
  display: block;
  padding-bottom: 1px;
}
.membershipButton-15Dw-MgM em {
  font-style: normal;
}
.membershipButton-15Dw-MgM span:last-child {
  font-size: 26px;
  padding-left: 10px;
  text-align: right;
  position: absolute;
  right: 19px;
  letter-spacing: normal;
}
.techLink-285k0wWk {
  color: var(--navigation-text-color);
}

/* configModuleContainer */
.accent-select-color ul li.active {
  background: var(--list-active-color);
  color: var(--primary-text-color);
}
.accent-select-color ul li.active a {
  color: #191941;
  font-weight: 500;
}
@media(max-width: 760px) {
  .selectListContainer {
    position: relative;
    height: 60px;
    overflow-x: auto;
    padding-bottom: 20px;
    overflow: -moz-scrollbars-none;
    -ms-overflow-style: none;
    scrollbar-width: none;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }
  .selectListContainer::-webkit-scrollbar,
  .selectListContainer::-webkit-scrollbar-thumb,
  .selectListContainer::-webkit-scrollbar-track {
    width: 0px;
    background: transparent;
    -webkit-appearance: none;
    display:none;
  }
  .accent-select-color ul li.active a {
    font-size:18px;
    line-height: 1.22;
  }
}

.selectSpeed-6qyaUiLK .selectList-gSqSdeVh{
  width: 321px;
}
.selectSpeed-6qyaUiLK .selectList-gSqSdeVh ul li{
  width: 150px;
}
.selectList-gSqSdeVh {
  border-radius: 20px;
  box-shadow: 0 10px 15px 0  var(--ui-light-gray);
  background-color: var(--color-white);
}
.selectList-gSqSdeVh ul{
  list-style: none;
  padding: 0 5px;
  margin: 0;
  height: 44px;
  line-height: 44px;
}
.selectList-gSqSdeVh ul li {
  display: inline-block;
  min-width: 130px;
  padding: 0 10px;
  text-align: center;
  border-radius: 20px;
  line-height: 32px;
  font-size: 18px;
  color: var(--secondary-text-color);
  margin-right: 0px;
}
.selectList-gSqSdeVh ul li a{
  color: var(--secondary-text-color);
  cursor:pointer;
  position: relative;
  top: 2px;
}
.selectList-gSqSdeVh ul li:last-child{
  margin-right: 0px;
}
.selectorHeading-2WftprQ0 {
  color: var(--secondary-text-color);
  font-size: 20px;
  padding: 10px 20px 0;
}
/* configModuleContainer */

@media(max-width: 760px) {
  .selectSpeed-6qyaUiLK .selectList-gSqSdeVh {
    margin: 0 20px;
  }
  .selectList-gSqSdeVh ul li{
    font-size: 16px;
  }
  .selectorHeading-2WftprQ0 {
    font-size: 14px;
    padding: 3px 0px 5px;
  }
  .selectList-gSqSdeVh {
    margin: 0 5px;
    position: absolute;
  }
}
@media(min-width: 993px) {
  .selectList-gSqSdeVh ul {
    margin: 8px 0px;
  }
  .selectList-gSqSdeVh ul li {
    margin-right: 10px;
  }
}

.swipe-2n1v3F7t {
  display: flex;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 40px 20px 30px;
  overflow: -moz-scrollbars-none;
  -ms-overflow-style: none;
  scrollbar-width: none;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}
@media(max-width: 760px) {
  .swipe-2n1v3F7t {
    padding: 0 40px 20px 20px;
  }
}
.swipe-2n1v3F7t::-webkit-scrollbar,
.swipe-2n1v3F7t::-webkit-scrollbar-thumb,
.swipe-2n1v3F7t::-webkit-scrollbar-track {
  width: 0px;
  background: transparent;
  -webkit-appearance: none;
  display:none;
}

.dropdown-colors-22_K26zo {
  float: right;
}
.dropdown-qty-pYebwPqq {
  float: left;
}
.optionselector-2CoFQvCV {
  transform: skewX(5deg);
}
.optionselector-2CoFQvCV > li{
  float:left;
  list-style-type:none;
  position:relative;
}
.optionselector-2CoFQvCV.active-hv5SNxp6 {
  z-index: 2;
  position: relative;
}
.optiontitle-o56LmeNP{
  position:relative;
  display:block;
  padding:0 8px 0 5px;
  line-height:1em;
  transition:background 0.1s;
  cursor:pointer;
  font-weight: 500;
  font-size: 16px;
  text-align: right;
  color: var(--tertiary-text-color);
  text-transform: capitalize;
}
.arrow-Zj5UDczn {
  border: solid var(--tertiary-text-color);
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 2px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  top: -2px;
  position: relative;
  right: -6px;
}
.active-hv5SNxp6 .arrow-Zj5UDczn {
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
  top: 3px;
}

/*show the second levele menu of the selected voice*/
.active-hv5SNxp6 .dropdown-1CvovSUb{
  display:block;
  transition: max-height 0.1s ease-in;
  background: var(--secondary-background-color);
  box-shadow: 0 1px 3px 0 var(--ui-light-gray);
}

/*hide the inputs*/
.optionselector-2CoFQvCV  input{display:none}

/*style for the second level menu*/
.dropdown-qty-pYebwPqq .dropdown-1CvovSUb{
  transform: translateY(-86%);
  max-height: 230px;
}
.dropdown-colors-22_K26zo .dropdown-1CvovSUb{
  transform: translateY(-89%);
  max-height: 225px;
  left: -25px;
  text-align:left;
}
.dropdown-1CvovSUb{
  display:none;
  overflow:auto;
  max-height: 225px;
  list-style-type:none;
  transition:max-height 0.3s ease-out;
  position:absolute;
  padding:10px 0;
  margin:0;
  height:auto;
  text-align: center;
  transform: skewX(0deg);
  border-radius: 10px;
  z-index: 99;
  top: 50%;
  overflow: -moz-scrollbars-none;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.dropdown-1CvovSUb::-webkit-scrollbar {
  width: 0px;
  background: transparent;
}

.dropdown-1CvovSUb li {
  display:block;
  padding:0 10px;
  text-decoration:none;
  transition:background .1s;
  white-space:nowrap;
  height: 40px;
  line-height: 40px;
}
.dropdown-1CvovSUb li a {
  display: block;
}

.active-hv5SNxp6 .dropdown-1CvovSUb li:hover{
  background: rgba(98,105,255, 0.1);
}
.dropdown-qty-pYebwPqq .arrow-Zj5UDczn {
  right: -6px;
}
.dropdown-qty-pYebwPqq.active-hv5SNxp6 .dropdown-1CvovSUb {
  width: 90px;
  left: 7px;
}
.dropdown-colors-22_K26zo {
  margin-right: 0px;
}
.dropdown-colors-22_K26zo .optiontitle-o56LmeNP {
  padding: 0 10px 0 0;
}
.dropdown-colors-22_K26zo .dropdown-1CvovSUb {
  width: 160px;
}
@media(max-width: 992px) {
  .optiontitle-o56LmeNP {
    font-size:12px;
  }
  .dropdown-1CvovSUb{
    transform: translateY(-60%);
  }
}

@media only screen and (min-width: 993px) {
  .arrow-Zj5UDczn {
    top:-3px;
  }
}

.itemColumn {
  width: auto;
  margin-right: 14px;
  transform:skewX(-5deg);
}
.section-btm-title {
  margin-top: 22px;
}
.swiper-main .section-subtitle {
  padding-left: 12px;
  font-size: 16px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: 1;
  letter-spacing: normal;
  color: #3c396f;
  display: block;
  transform: skewX(5deg);
  word-break: break-word;
  white-space: normal;
}
.swiper-main .superPodAddon .section-subtitle {
  color: #191941;
  opacity: 0.6;
}
.add-tocart-link {
  font-size: 16px;
  float:left;
  line-height: 1;
  transform: skewX(5deg);
  color: var(--tertiary-text-color);
}
@media(max-width: 760px) {
  body{
    cursor: pointer;
  }
}
@media(max-width: 992px) {
  .itemColumn {
    min-width: 250px;
  }
  .add-tocart-link {
    font-size: 12px;
  }
  .slider-order {
    order:-1;
  }
  .swiper-main .section-subtitle {
    font-size: 12px;
    min-height: 30px;
    font-size: 12px;
  }
  .slider-order .section-subtitle{
    min-height: auto;
  }
  .slider-order .media-container picture img {
    max-height: 106px;
  }
  .section-btm-title {
    position: relative;
    bottom: 10px;
    margin-top: 0;
  }
}
@media(min-width: 993px) {
  .itemColumn {
    min-width: 312px;
  }
  .slider-order .media-container picture img {
    max-height: 150px;
  }
  .swiper-main .fade {
    opacity:0.5;
  }
  .swiper-main .slider-order .fade {
    opacity:1;
  }
  .swiper-main .fade:hover {
    opacity:1;
  }
}
@media(min-width: 1160px) {
  .slider-order .itemColumn {
    min-width: 339px;
  }
  .itemColumn {
    min-width: 296px;
  }
  .slider-order .media-container picture img {
    max-height: 150px;
  }
}
.play-video-icon-GWfp_Z4U {
  transform: skewX(5deg);
  position: absolute;
  top: 46%;
  left: 50%;
  margin-left: -38px;
}

.play-video-icon-GWfp_Z4U svg {
  height: 50px;
}

.video-tile-1ng03BbT {
  max-width: 312px;
}
.product-tile-1Fljqwlo {
  max-width: 317px;
  z-index: 9;
  position: relative;
}
.product-tile-1Fljqwlo:hover {
  opacity:1;
  z-index: 10;
}
.largewidth-1EQXSNI8 {
  max-width: 378px;
}
.mediumwidth--dqchL11 {
  max-width: 399px;
}
.largewidth-1EQXSNI8 .item-wrapper-2qsU2f97 {
  min-height: 262px;
}
.mediumwidth--dqchL11 .item-wrapper-2qsU2f97 {
  min-height: 261px;
}
.largewidth-1EQXSNI8 .button-section-3RdJ13hg {
  margin: 29px 2px 0 10px;
}
.mediumwidth--dqchL11 .button-section-3RdJ13hg {
  margin: 10px 2px 0 10px;
}
.mediumwidth--dqchL11 .section-title-52KN6NH3 {
  padding: 21px 0 8px 8px;
}
.largewidth-1EQXSNI8 .section-title-52KN6NH3 {
  padding: 23px 0 3px 8px;
}
.mediumwidth--dqchL11 .product-price-1MHmlmr5 {
  right: 25px;
}
.largewidth-1EQXSNI8 .product-price-1MHmlmr5 {
  right: 25px;
}
.item-wrapper-2qsU2f97 {
  background-color: #fff;
  border-radius: 10px;
  padding: 0 18px;
  min-height: 241px;
  position: relative;
  box-shadow: 0 10px 15px 0 #dbdbdb;
  z-index:1;
}
.button-section-3RdJ13hg {
  position:relative;
  margin: -5px 2px 0 0px;
}
.section-title-52KN6NH3 {
  font-size: 24px;
  letter-spacing: 0.0px;
  line-height: 22px;
  color: var(--primary-text-color);
  transform: skewX(5deg);
  text-align: left;
  padding: 20px 0 3px 8px;
  display: inline-block;
}
.product-price-1MHmlmr5 {
  font-size: 20px;
  font-weight: 500;
  line-height: 0.9;
  text-align: right;
  color: var(--primary-text-color);
  position: absolute;
  right: 15px;
  top: 23px;
  transform: skewX(5deg);
}
.video-container-ECXTJzGc{
  max-width: 260px;
  border-radius: 24px;
  cursor: pointer;
  transition: all .2s ease-in-out;
  padding: 15px 0 30px;
}
.video-container-ECXTJzGc picture img {
  border-radius: 6px;
  max-width: 215px;
  margin:0 auto;
}
.product-container-3bbEXcSo picture img {
  border-radius: 6px;
  width: auto;
  margin:0 auto;
}
.media-1BAtOiTN {
  width:auto;
}
.product-container-3bbEXcSo {
  cursor: pointer;
  transition: all .2s ease-in-out;
}

.option-selector-2mDwAfVV {
  float: right;
  text-align: right;

}
.option-title-1b9BwgQx {
  color: var(--tertiary-text-color);
  font-size: 16px;
  line-height: 1;
}
.new-membership-exclusive-1nzflxds {
  float: left;
  font-size: 16px;
  color: var(--primary-text-color);
}
.optionselector-1ThzY4qq {
  float:right;
}
@media(max-width: 1172px) {
  .play-video-icon-GWfp_Z4U {
    top: 45%;
    margin-left: -38px;
  }
  .play-video-icon-GWfp_Z4U svg {
    height: 40px;
  }
}
@media(max-width: 992px) {
  .section-title-52KN6NH3 {
    font-size: 12px;
    padding: 11px 0 0px 7px;
    line-height: 15px;
    width: 85%;
  }
  .item-wrapper-2qsU2f97 {
    min-height:auto !important;
    padding: 0 8px;
  }
  .new-membership-exclusive-1nzflxds {
    font-size: 12px;
  }
  .video-container-ECXTJzGc {
    padding: 5px 0 15px;
  }
  .product-price-1MHmlmr5 {
    font-size: 16px;
    line-height: 18px;
    right: 15px;
    top: 10px;
  }
  .button-section-3RdJ13hg {
    position:relative;
    margin: 0px;
    padding: 0 0 20px 2px;
  }
  .largewidth-1EQXSNI8 {
    min-width: 280px;
    max-width: 280px;
  }
  .largewidth-1EQXSNI8 .media-1BAtOiTN {
    min-height:165px;
  }
  .mediumwidth--dqchL11 .media-1BAtOiTN {
    min-height: 150px;
  }
  .mediumwidth--dqchL11{
    min-width: 260px;
    max-width: 260px;
  }
  .largewidth-1EQXSNI8 .button-section-3RdJ13hg,
  .mediumwidth--dqchL11 .button-section-3RdJ13hg{
    margin: 0;
    padding: 0 0 20px 5px;
  }
  .mediumwidth--dqchL11 .section-title-52KN6NH3,
  .largewidth-1EQXSNI8 .section-title-52KN6NH3 {
    padding: 14px 0 0px 8px;
    font-size:16px;
  }
  .mediumwidth--dqchL11 picture img,
  .largewidth-1EQXSNI8 picture img{
    max-height: 130px;
  }
  .mediumwidth--dqchL11 .product-price-1MHmlmr5,
  .largewidth-1EQXSNI8 .product-price-1MHmlmr5 {
    right: 15px;
    top:14px;
  }
  #IncludedSuperPod2 .item-wrapper-2qsU2f97,
  #superPodAddon .item-wrapper-2qsU2f97 {
    min-height: 200px !important;
    /* max-height: 200px; *! fix buy pods */
    /* overflow: hidden; *! fix buy pods */
}
}

@media(max-width: 440px) {
.play-video-icon-GWfp_Z4U {
  top: 43%;
}
}

/* Desktop  993 */
@media only screen and (min-width: 993px) {
  .video-container-ECXTJzGc picture img {
    max-width: 100%;
    min-height: 150px;
  }
  .mediumwidth--dqchL11 {
    min-width: 399px;
  }
  .tile-block-wrapper.IncludedSuperPod2 {
    min-width: 358px;
  }
  .largewidth-1EQXSNI8 {
    min-width: 378px;
  }
  .mediumwidth--dqchL11 .media-1BAtOiTN {
    min-height: 150px;
  }
  .largewidth-1EQXSNI8 .media-1BAtOiTN {
    min-height: 150px;
  }
  .largewidth-1EQXSNI8 picture img,
  .mediumwidth--dqchL11 picture img {
    max-height: 160px;
  }
}

@media(min-width: 1160px) {
  .mediumwidth--dqchL11 .button-section-3RdJ13hg {
    margin: -2px 2px 0 10px;
  }
  .mediumwidth--dqchL11 picture img {
    max-height: 164px;
  }
  .largewidth-1EQXSNI8 picture img{
    max-height: 156px;
  }
}
.powerPodAddon {
    margin-left: 30px;
  }
#configuratorPage .powerPodAddon:before {
    font-size: 43px;
    color: #c6c6c6;
    content: '+';
    position: absolute;
    left: -34px;
    top: 41%;
    transform: skewX(6deg);
    font-weight: 100;
  }
#configuratorPage .superPodAddon {
    margin-left: 30px;
  }
#configuratorPage .superPodAddon:before {
    font-size: 43px;
    color: #c6c6c6;
    content: '+';
    position: absolute;
    left: -34px;
    top: 41%;
    transform: skewX(6deg);
    font-weight: 100;
  }

.addon-container-2NeZmGcr {
  background: var(--grey-bg);
}

.section-title-2VPnkUuq {
  color: var(--primary-text-color);
}

.sub-section-title-drNUCdh2 {
  color: var(--secondary-text-color);
  font-size: 20px;
  display: block;
}

.membershipBtn-3Vt-E0_l {
}

.membershipBtnDisabled-3dwBJQ-Y {
  opacity: 0.5;
  pointer-events: none;
}

.membershipBtn-3Vt-E0_l span:last-child {
  top: 13px;
}
.extendBlock-2K_3RRz4 .section-title-2VPnkUuq {
  border-top: 1px solid var(--ui-light-gray);
}

.headingContainer-3W1s-G_v {
  position: relative;
}

.subHeading-C3vSvXSS {
  font-size: 28px;
}

.techLinkBlock-356w2EAF {
  display: none;
}

.techLink-1YfJ9qlT {
}

.icon-view-more-3c3ssxRb svg {
  padding-left: 2px;
  position: relative;
  top: 2px;
}

.productTileContainer-1X5lDVSA {
  display: flex;
  z-index: 1;
  position: relative;
}
.swiper-main-20kHmVyK .product-tile-8-evpsIR {
  opacity:1;
}
.selectorHeading-2yS1hUTK {
  color: var(--secondary-text-color);
  font-size: 20px;
}


/* tab and Mobile start */

@media (max-width: 992px) {
  .addon-container-2NeZmGcr {
    padding: 51px 0 150px 30px;
  }

  .addon-container-2NeZmGcr .container-3ztUQfL2 {
    padding-right: 0;
  }

  .membershipBtn-3Vt-E0_l {
    position: fixed;
    bottom: 60px;
    left: 0;
    width: 100%;
    min-width: 100%;
    border-radius: 0;
    max-height: 70px;
    min-height: 70px;
    padding: 0 17px;
    z-index: 2;
  }

  .membershipBtn-3Vt-E0_l span:first-child {
    line-height: 1.25;
    padding-top: 4px;
  }

  .membershipBtn-3Vt-E0_l i {
    padding: 0;
  }

  .membershipBtn-3Vt-E0_l span:last-child {
    top:23px;
    right: 16px;
  }

  .productTileContainer-1X5lDVSA {
    margin-top: 15px;
  }


}

@media (max-width: 760px) {
  .addon-container-2NeZmGcr {
    padding-left: 0px;
    padding-bottom: 150px;
  }
  .headingContainer-3W1s-G_v {
    padding: 0 30px 0;
  }

  .section-title-2VPnkUuq {
    font-size: 18px;
    line-height: 1;
  }

  .techLinkBlock-356w2EAF {
    padding: 0 0 29px 0;
    margin: 0 30px;
  }

  .techLinkBlock-356w2EAF a {
    font-size: 14px;
    cursor: pointer;
  }

  .extendBlock-2K_3RRz4 .section-title-2VPnkUuq {
    padding: 34px 0 0;
    margin: 0 35px 0 30px;
  }

  .icon-view-more-3c3ssxRb svg {
    padding-left: 4px;
    top: 3px;
    left: -1px;
  }
}

/* Desktop start */

@media (min-width: 993px) {
  .addon-container-2NeZmGcr {
    padding: 79px 30px 200px;
  }

  .productTileContainer-1X5lDVSA {
    padding-left: 10px;
  }

  .membershipBtn-3Vt-E0_l {
    position: absolute;
    min-width: 430px;
    right: 60px;
    top: -18px;
  }

  .membershipBtn-3Vt-E0_l br {
    display: none;
  }
}

@media (min-width: 761px) {
  .headingContainer-3W1s-G_v {
    padding-left: 60px;
    padding-bottom: 25px;
  }

  .section-title-2VPnkUuq {
    font-size: 28px;
    line-height: 20px;
  }

  .techLinkBlock-356w2EAF {
    padding: 2px 0 37px 0;
    margin: 0 60px;
  }

  .techLinkBlock-356w2EAF a {
    font-size: 20px;
    cursor:pointer;
  }

  .extendBlock-2K_3RRz4 .section-title-2VPnkUuq {
    padding: 42px 0 25px;
    margin: 0 60px;
  }
}

/* common */
.swiper-main .swiper-container {
  padding: 0 30px 24px;
  width: 100%;
}
.swiper-main .swiper-container .swiper-slide {
  width: auto !important;
}
#techSpecPage {
  background-color: #fff;
}
.main-head {
  font-size: 44px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: normal;
  text-align: center;
  color: #3c396f;
  padding-top: 70px;
  background: #fff;
}
.linkContainer {
  clear: both;
  overflow: hidden;
  padding: 0 50px;
}
.linkContainer a{
  color: var(--primary-text-color);
  font-size: 20px;
  cursor:pointer;
}
.rightlinkContainer {
  float:right;
  clear:right;
  margin-top: 3px;
}
.rightlinkContainer a{
  color: var(--highlight-color);
  font-size: 20px;
  padding-right: 7px;
}
.linkContainer svg g {
  stroke: var(--primary-text-color);
}
.rightlinkContainer svg g {
  stroke: #6269ff;
}
.filter-heading {
  color: var(--secondary-text-color);
  font-size: 20px;
  padding: 3px 20px 0;
  margin-top: 25px;
}
.filter-heading .accent-text-color {
  font-weight: 500;;
}
.clearfix {
  clear:both;
}
.accent-sunrise-store {
  clear: both;
  overflow: hidden;
}
.filter-heading span {
  color: var(--primary-text-color);
}
.accent-sunrise-store .linkContainer{
  padding:12px 0 0;
}
#powerPodAddon .section-subtitle {
  opacity:0.6;
  color: #191941;
}
@media(max-width: 760px) {
  .swiper-main .swiper-container {
    padding: 0 20px 20px;
  }
  .main-head {
    font-size: 32px;
    padding-top: 25px;
  }
  #overlayTechSpecs .tab-navigation {
    padding-top: 25px;
  }
  #techSpecPage .tab-navigation{
    display: none;
  }
  .linkContainer svg {
    height:9px;
  }
  .rightlinkContainer svg {
    height:9px;
  }
  .linkContainer {
    padding: 0 25px;
  }
  .rightlinkContainer {
    position: absolute;
    right: 19px;
    margin-top: 19px;
  }
  .linkContainer a,
  .rightlinkContainer a{
    font-size: 14px;
    color: var(--primary-text-color);
  }
  .filter-heading {
    font-size: 14px;
    padding: 3px 0px 0;
    margin-top: 15px;
  }
  .filter-heading span{
    font-size: 20px;
    display:block;
  }
  .accent-sunrise-store.title-container{
    padding: 0 25px;
  }
}
@media(min-width: 761px) {
  #configuratorPage .membershiplink {
    float: right;
  }
}
@media(min-width: 768px) {
  .linkContainer svg {
    position: relative;
    top:2px;
  }
  .rightlinkContainer svg {
    position: relative;
    top:2px;
  }
}
@media(min-width: 993px) {
  #configuratorPage .membershiplink {
    float:left;
    margin-top: 20px;
    clear:both;
  }
  .theme-promo-sunrise .membership-Btn-text {
    padding-right:20px;
  }
}
@media(min-width: 1160px) {
  #configuratorPage .membershiplink {
    float:right;
    margin-top: 0;
    clear: none;
  }
}

.config-container-25IAPEUD {
  background: var(--grey-bg);
}
.mainContainer-3ShhQvMV {
  width: 100%;
  padding: 0 0 130px;
}
.speedScroll-1fOhWe39 {
  width: 321px;
}
.speedScroll-1fOhWe39 ul li {
  width: 150px;
}
.section-title-Yl63avbX {
  color: var(--primary-text-color);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.14;
}

.sub-section-title-2LNK1jTI {
  color: var( --secondary-text-color);
  font-size: 20px;
  display: block;
  line-height: 1;
  font-weight: normal;
  margin-top: 5px;
  letter-spacing: 0px;
}

.subHeading-Nh8xr_cS {
  font-size: 28px;
}
.headingContainer-1RLntJX9 {
  padding: 0 0 3px 50px;
  clear: both;
  overflow: hidden;
}

/* Product Selecter */
.productSelecter-1Rcubm_q {
  padding:60px 0 27px;
}
.productTileContainer-1y5p-zKU {
  overflow-y:hidden;
}

.membership-Btn-2HF9kKNn {
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  color: var(--color-white);
  padding: 0 20px 0 25px;
  background: var(--tertiary-text-color);
  border-radius: 25px;
  border: solid 1px var(--tertiary-text-color);
  z-index: 1;
  cursor: pointer;
  min-width: 370px;
  max-width: 100%;
  text-align: left;
  display: flex;
  height: 50px;
  align-items: center;
  letter-spacing: 0.3px;
  float: right;
  position: relative;
  box-shadow: -2px 1px 6px 0 rgba(98, 105, 255, 0.2);
}
.membership-Btn-text-1VDcVf1X {
  padding-right: 70px;
}
.membership-Btn-2HF9kKNn i {
  font-size: 16px;
  font-style: normal;
  display: block;
  padding: 3px 0;
  letter-spacing: 0.3px;
}
.membership-Btn-2HF9kKNn em {
  font-style: normal;
}
.membership-Btn-2HF9kKNn span:last-child {
  font-size: 26px;
  padding-left: 10px;
  text-align: right;
  position: relative;
  letter-spacing: normal;
  line-height:27px;
}

.productgridContainer-28C3c-L_ {
  margin-top: 30px;
}

/* Product Selecter */

/* configModuleContainer */
.configModuleContainer-34WbaYjc {
  padding-bottom: 10px;
}
.configModuleContainer-34WbaYjc .headingContainer-1RLntJX9{
  border-top: 1px solid var(--ui-light-gray);
  margin: 0 50px;
  padding: 35px 0 2px;
}
.configSelectors-1xH2A6HE {
  clear: both;
}
.configModuleContainer-34WbaYjc .productgridContainer-28C3c-L_ {
  margin: 14px 0 0 30px;
}
.selectors-container-3xbWdGqK {
  clear: both;
  padding: 0 50px 5px;
  overflow:hidden;
}
/* configModuleContainer */

/* configExtendModuleContainer */
.configExtendModuleContainer-2Ro3MN5B .dropdown-MqxFhmPR {
  transform: translateY(-80%);
}
.configExtendModuleContainer-2Ro3MN5B .headingContainer-1RLntJX9{
  border-top: 1px solid var(--ui-light-gray);
  margin: 0 50px;
  padding: 37px 0 0;
}

.configExtendModuleContainer-2Ro3MN5B .productgridContainer-28C3c-L_ {
  margin: 20px 0 0;
}
.configExtendModuleContainer-2Ro3MN5B .productgridContainer-28C3c-L_ .itemColumn-2wDJXukz{
  min-width: 350px;

}

.configureLinkBlock-6VunlQTt {
  align-self: center;
}

/* configExtendModuleContainer */

/* tab and Mobile start */



@media(max-width: 992px) {
  .productTileContainer-1y5p-zKU {
    overflow-x: auto;
    margin-top: 15px;
    padding: 0 20px 20px;
    overflow-y: hidden;
  }
  .headingContainer-1RLntJX9,
  .configModuleContainer-34WbaYjc .headingContainer-1RLntJX9 ,
  .configExtendModuleContainer-2Ro3MN5B .headingContainer-1RLntJX9 {
    margin: 0;
    padding: 25px 25px 3px;
  }
  .membership-Btn-2HF9kKNn {
    float: none;
    margin: 0;
    max-width: initial;
    position: fixed;
    left: 0;
    right: 0;
    min-height: 60px;
    bottom: 60px;
    border-radius: 0;
    z-index:11;
    min-width: 300px;
  }
  .selectors-container-3xbWdGqK {
    padding: 0 0px 5px 25px;
  }
  .membership-Btn-2HF9kKNn span:last-child {
    position: absolute;
    right: 20px;
  }
  .configModuleContainer-34WbaYjc .productgridContainer-28C3c-L_ {
    margin-left: 20px;
  }
}
@media(max-width: 760px) {
  .config-container-25IAPEUD {
    padding-bottom: 30px;
  }
  .productSelecter-1Rcubm_q {
    padding: 6px 0 15px;
  }
  .productgridContainer-28C3c-L_ {
    margin-top: 15px;
  }
  .section-title-Yl63avbX {
    font-size: 18px;
  }
  .sub-section-title-2LNK1jTI {
    font-size: 14px;
    margin-top: 3px;
  }
  .configModuleContainer-34WbaYjc svg g {
    stroke: var(--primary-text-color);
  }
  .selectType-1lkYzZTY {
    margin: 16px 0 0 0;
  }
  .selectSpeed-BPHdsgRZ {
    margin-top: 0;
  }
  .membership-Btn-text-1VDcVf1X {
    padding-right: 145px;
  }
}
@media(min-width:320px) and (max-width:374px) {
  .speedScroll-1fOhWe39 ul li {
    width: 130px;
  }
  .speedScroll-1fOhWe39 {
    width: auto;
  }
}

@media(min-width: 761px) {
  .titlecontainer-2d_q91nK{
    float:left;
  }
  .selectType-1lkYzZTY {
    float:left;
    width: auto;
    padding: 0px 0 15px;
  }
  .selectSpeed-BPHdsgRZ {
    margin: 15px 0;
    clear:both;
  }
}

/* Till Mini desktop till 992 */
@media only screen and (min-width: 993px) {
  .mainContainer-3ShhQvMV {
    max-width: 1440px;
    padding: 0 40px 100px;
  }

  .section-title-Yl63avbX {
    font-size: 28px;
    line-height: 1.14;
  }
  .productSelecter-1Rcubm_q .section-title-Yl63avbX {
    font-size: 32px;
  }
  .sub-section-title-2LNK1jTI {
    font-size: 20px;
  }
  .subHeading-Nh8xr_cS {
    font-size: 28px;
  }
  .titlecontainer-2d_q91nK{
    float:left;
    width: auto;
  }
  .configSelectors-1xH2A6HE {
    padding-top: 15px;
  }
}

@media(min-width: 1160px) {
  #configuratorPage-3y2LRKKM .membershiplink-1tS-5Hi_ {
    float: right;
  }
  .titlecontainer-2d_q91nK {
    width: auto;
  }
  .selectSpeed-BPHdsgRZ {
    padding-top: 0px;
  }
}
@media(min-width: 1440px) {
  .headingContainer-1RLntJX9 {
    padding: 0 50px 3px;
  }
}

.linkContainer.accent-hide {
  display: none;
}

.group-title-3cnkyEjr {
  position: relative;
  margin: 25px 0;
  margin-right: 40px;
}

.group-title-3cnkyEjr:after {
  display: block;
  content: "";
  height: 1px;
  width: 100%;
  position: absolute;
  left: 0;
  top: 7px;
  background-color: #e5e5e5;
  z-index: 1;
}

.group-title-3cnkyEjr p {
  position: relative;
  display: inline-block;
  color: var(--primary-text-color);
  background: var(--secondary-background-color);
  padding-right: 10px;
  font-size: 13px;
  text-transform: uppercase;
  z-index: 2;
  letter-spacing: 1.1px;
}

@media(max-width: 992px) {
  .group-title-3cnkyEjr {
    margin-right: 0;
  }
}

@media(max-width: 760px) {
  .group-title-3cnkyEjr {
    margin: 0 0 25px 0;
  }

  .group-title-3cnkyEjr p {
    position: relative;
    background: white;
    z-index: 2;
    font-size: 12px;
    font-weight: 400;
    padding-right: 5px;
    color: #1f1f1f;
  }
}

.review-37n2rVO0 {
  width: 64%;
  display: flex;
  justify-content: flex-end;
  margin-top: 60px;
  opacity: 0;
}

.fade-in-3UZNyMqF {
  -webkit-animation: fadeIn-32wsHiFQ .6s cubic-bezier(0.215, 0.61, 0.355, 1) .8s forwards;
  -moz-animation: fadeIn-32wsHiFQ .6s cubic-bezier(0.215, 0.61, 0.355, 1) .8s forwards;
  -ms-animation: fadeIn-32wsHiFQ .6s cubic-bezier(0.215, 0.61, 0.355, 1) .8s forwards;
  -o-animation: fadeIn-32wsHiFQ .6s cubic-bezier(0.215, 0.61, 0.355, 1) .8s forwards;
  animation: fadeIn-32wsHiFQ .6s cubic-bezier(0.215, 0.61, 0.355, 1) .8s forwards;
}

@keyframes fadeIn-32wsHiFQ {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (max-width: 992px) {
  .review-37n2rVO0 {
    width: 100%;
    margin-top: 140px;
  }
}

@media (max-width: 760px) {
  .review-37n2rVO0 {
    margin-top: 130px;
  }
}

.review-content-Wa5NC3Vb {
  max-width: 780px;
  width: 100%;
  padding: 60px 80px 30px 45px;
}

.review-content-Wa5NC3Vb h2 {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--primary-text-color);
  margin-bottom: 40px;
}

.review-section-content-2HBpjl4y {
  display: flex;
  flex-flow: row wrap;
  margin-bottom: 20px;
}

.review-section-title-1lU7Ljs3 {
  position: relative;
  height: 20px;
  margin-bottom: 26px;
}

.review-section-title-1lU7Ljs3:after {
  position: absolute;
  content: "";
  height: 1px;
  display: block;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  background-color: #dbdbdb;
  z-index: 1;
}

.review-section-title-1lU7Ljs3 h3 {
  position: relative;
  float: left;
  padding-right: 10px;
  z-index: 2;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--primary-text-color);
  text-transform: uppercase;
  background-color: white;
}

.review-section-title-1lU7Ljs3 a {
  position: absolute;
  display: block;
  padding-left: 10px;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  font-size: 12px;
  font-weight: 400;
  background-color: white;
  z-index: 2;
  color: var(--tertiary-text-color);
}

.review-section-content-item-18pS5IIm {
  width: 50%;
  margin-bottom: 20px;
  color: var(--secondary-text-color);
}

.review-section-content-item-18pS5IIm p {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.35;
  color: var(--secondary-text-color);
  display: flex;
}

.review-section-content-item-18pS5IIm p strong {
  padding-right: 4px;
}

.review-section-content-item-18pS5IIm h4 {
  font-size: 18px;
  font-weight: 500;
  color: var(--primary-text-color);
  margin-bottom: 5px;
}

.card-icon-1c5xpEg5 {
  margin-top: -4px;
  margin-left: 5px;
}

.capitalize-2HXLLV7t {
  text-transform: capitalize;
}

@media (max-width: 992px) {
  .review-37n2rVO0 {
    width: 100%;
    order: 2;
  }

  .review-37n2rVO0 + div {
    position: fixed;
    top: 130px;
    display: flex;
    align-items: center;
    background-color: #f7f7ff;
    padding-top: 0;
    min-height: 75px;
    order: 1;
  }

  .review-37n2rVO0 + div > div {
    display: flex;
  }

  .review-content-Wa5NC3Vb {
    padding-top: 40px;
    padding-left: 60px;
    padding-right: 60px;
    max-width: 100%;
  }
}

@media (max-width: 760px) {
  .review-content-Wa5NC3Vb {
    padding: 30px 30px 150px;
  }

  .review-section-title-1lU7Ljs3 {
    width: 100%;
    margin-bottom: 20px;
  }

  .review-section-title-1lU7Ljs3:after {
    display: none;
  }

  .review-section-content-2HBpjl4y {
    flex-direction: column;
    width: 100%;
  }

  .review-content-Wa5NC3Vb h2 {
    font-size: 20px;
    margin: 20px 0;
  }

  .review-section-title-1lU7Ljs3 h3 {
    font-size: 16px;
  }

  .review-section-title-1lU7Ljs3 a {
    font-size: 14px;
  }

  .review-section-content-item-18pS5IIm {
    width: 80%;
  }

  .review-section-content-item-18pS5IIm:last-child {
    margin-bottom: 0;
  }

  .review-section-content-item-18pS5IIm h4, p {
    font-size: 14px;
  }
}

.sunrise-page-center {
  display: block;
  float: none;
  margin: 0 auto;
  max-width: 966px;
  position: relative;
  width: 100%;
  z-index: 2;
}
.product-banner  {
  margin: 0 auto;
  background-color: #fff;
}
.product-banner h1 {
  color: #fff;
  font-weight: 500;
  margin: 0;
  padding: 0;
}
.banner-btn {
  background: #e6003c;
  border-radius: 28px;
  border: 0;
  color: #fff;
  display: block;
  font-size: 14px;
  font-weight: 700;
  height: 38px;
  line-height: 38px;
  margin: 0;
  padding: 0;
  text-align: center;
  text-decoration: none;
  width: 170px;
  -webkit-appearance: none;
}

@media only screen and (max-width: 992px) {
  .sunrise-main {
    position: relative;
  }
  .sunrise-main .product-banner:after {
    content: " ";
    background-image: linear-gradient(to bottom, #911834, #f7c017);
    clear: both;
    display: block;
    height: 520px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
  }
  .product-banner .banner-img {
    padding: 0 2.72%;
  }
  .sunrise-page-center {
    padding: 36px 22px 27px;
  }
  .product-banner h1 {
    font-size: 32px;
    line-height: 40px;
    padding-bottom: 28px;
  }
  .product-banner-txt {
    padding: 0 0 54px;
    text-align: center;
  }
  .banner-btn {
    margin: 0 auto;
  }
}

@media only screen and (min-width: 993px) {
  .product-banner {
    background-image: linear-gradient(to bottom, #911834, #f7c017);
    width: 100%;
  }
  .sunrise-page-center {
    min-height: 452px;
    padding: 30px 15px 27px;
  }

  .product-banner h1 {
    font-size: 44px;
    line-height: 50px;
    padding-bottom: 28px;
  }
  .product-banner-txt {
    padding: 65px 25px 0 0;
    max-width: 450px;
  }
  .sunrise-main .product-banner {
    min-height: 452px;
  }
  .banner-img {
    position: absolute;
    bottom: -12.3%;
    right: 15px;
    text-align: right;
  }
  .banner-img img {
    max-width: 440px;
    width: 100%;
  }
}

.memberships-benefits {
  background-color: #fff;
}
.memberships-benefits .column {
  text-align: center;
}
.memberships-benefits .column strong {
  color: #e6003c;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.memberships-benefits .column p {
  color: #939597;
  font-size: 18px;
  line-height: 24px;
  margin: 0;
  padding: 0;
}
.memberships-benefits .column img {
  margin: 0 auto;
}
.memberships-benefits .column:first-child img {
  width: 90px
}
.memberships-benefits .column:nth-child(2) img {
  width: 97px
}
.memberships-benefits .column:nth-child(3) img {
  width: 97px
}
.all-membership-benefits {
  text-align: center
}
.all-membership-benefits a {
  color: #e6003c;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
}
.all-membership-benefits a svg {
  vertical-align: middle;
}

@media only screen and (max-width: 992px) {
  .memberships-benefits .sunrise-page-center {
    padding-top: 10px;
    padding-bottom: 42px;
  }
  .memberships-benefits .column strong {
    clear: both;
    display: block;
    margin: 15px 0 11px;
  }
  .memberships-benefits .column {
    padding: 0 5px 30px;
    margin: 0 auto;
    max-width: 260px;
  }
  .sunrise-page-center .benefits-icon-group {
    display: none;
  }
  .memberships-benefits .column:last-child {
    padding-bottom: 43px;
  }
}

@media only screen and (min-width: 993px) {
  .memberships-benefits {
    padding: 82px 0 0 0;
  }
  .memberships-benefits .sunrise-page-center {
    padding-top: 20px;
    min-height: auto;
    padding-bottom: 70px;
  }
  .memberships-benefits .column strong {
    display: block;
    clear: both;
    padding: 7px 0 12px 0;
  }
  .memberships-benefits .column {
    position: relative;
    padding: 0 5px;
    max-width: 260px;
  }
  .benefits-group {
    display: flex;
    justify-content: space-between;
  }
  .benefits-icon-group {
    margin: 25px 0 0 0;
  }
  .all-membership-benefits {
    padding: 23px 0 0;
  }
  .benefits-group .benefit-img-outer {
    min-height: 100px;
  }
}

.benefits-outline-wrapper {
  background: #fff;
  clear: both;
}
.benefits-items ul {
  padding: 0;
}
.benefits-items ul li {
  list-style: none;
  list-style-position: inside;
  position: relative;
  color: #939597;
}
.benefits-items ul li svg {
  position: absolute;
}
h2.headings-red {
  color: #e6003c;
  font-weight: 500;
  text-align: center;
  margin: 0;
}
.benefits-items li strong {
  color: #e6003c;
  font-weight: 600;
}

@media only screen and (max-width: 992px) {
  .benefits-outline-wrapper .sunrise-page-center {
    padding-top: 29px;
    padding-bottom: 18px;
  }
  h2.headings-red {
    font-size: 24px;
    letter-spacing: 0.5px;
    line-height: 30px;
    padding: 0 30px;
  }
  .benefits-items ul {
    margin: 0;
  }
  .benefits-items ul:first-child {
    margin-top: 14px;
  }
  .benefits-items ul li {
    font-size: 14px;
    line-height: 20px;
    padding: 0 5px 15px 45px;
  }
  .benefits-items ul li svg {
    left: 7px;
    top: 1%;
  }
}

@media only screen and (min-width: 993px) {
  .benefits-outline-wrapper {
    padding: 16px 0 0;
  }
  .benefits-outline-wrapper .sunrise-page-center {
    min-height: auto;
    overflow: hidden;
    padding-bottom: 45px;
  }
  .heading-benefits h2 {
    padding-bottom: 11px;
  }
  h2.headings-red {
    font-size: 32px;
  }
  .benefits-items ul {
    margin: 25px 0 0;
    width: 50%;
    float: left;
  }
  .benefits-items ul li {
    font-size: 18px;
    line-height: 27px;
    padding-left: 40px;
    padding-right: 56px;
    margin-bottom: 21px;
    min-height: 84px;
  }
  .benefits-items ul li:last-child {
    margin-bottom: 0;
  }
  .benefits-items ul li svg {
    left: -15px;
    top: 4px;
  }
}

.about-plume {
  background: #f5f5f5;
  float: left;
  text-align: center;
  width: 100%;
}
.about-plume .video-container {
  position: relative;
  width: 100%;
}
.video-container img {
  border-radius: 8px;
}
.about-plume .btn-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -40%);
  background-color: transparent;
  border: 0;
  cursor: pointer;
}
.about-plume h2 {
  color: #e6003c;
  font-weight: 500;
  margin: 0;
  padding: 0;
}
.about-plume p {
  color: #939597;
  margin: 0;
  padding: 0;
}
/* video overlay */
.theme-promo-sunrise iframe {
  height: 100%;
  width: 100%;
}

@media only screen and (max-width: 992px) {
  .about-plume .btn-play {
    width: auto;
  }
  .sunrise-page-center.about-plume-wrap {
    padding: 34px 22px;
  }
  .about-plume .btn-play svg {
    width: 60px;
    height: auto;
  }
  .about-plume h2 {
    font-size: 32px;
    line-height: 38px;
    margin: 0 0 18px;
  }
  .about-plume .about-plume-subtitle {
    font-size: 18px;
    line-height: 24px;
    padding: 0 0 15px;
  }
  .about-plume .video-container {
    width: auto;
    margin: 0 -8.5px;
  }
  .about-plume .about-plume-txt {
    font-size: 14px;
    line-height: 20px;
    padding-top: 10px;
    margin: 0 -8.5px;
  }
}

@media only screen and (min-width: 993px) {
  .about-plume h2 {
    font-size: 44px;
    line-height: 52px;
    padding: 0 0 21px;
  }
  .about-plume .about-plume-subtitle {
    font-size: 24px;
    line-height: 34px;
    padding: 0 0 30px;
  }
  .about-plume .about-plume-txt {
    font-size: 18px;
    line-height: 25px;
    padding: 13px 30px 0;
  }
  .about-plume {
    padding: 34px 0 48px;
  }
  .about-plume .btn-play {
    width: 110px;
  }
}

.super-pod-intro-1pL88zXo {
  background-color: var(--secondary-background-color);
  padding-top: 113px;
  padding-bottom: 74px;
}

@media(max-width: 992px) {
  .super-pod-intro-1pL88zXo {
    padding-bottom: 30px;
  }
}

.content-UGuJ3SKQ {
  display: flex;
  width: 85%;
  height: 100%;
  margin: auto;
}

@media(max-width: 992px) {
  .content-UGuJ3SKQ {
    flex-direction: column;
    width: 100%;
  }
}

.column-3eWia28t {
  margin: auto;;
  text-align: center;
  margin-bottom: 177px;
}

@media(max-width: 992px) {
  .column-3eWia28t {
    margin-bottom: 40px;
  }
}

.column-left-ztsEugzF {
  width: 70%;
}

@media(max-width: 992px) {
  .column-left-ztsEugzF {
    margin-top: 0;
    margin-bottom: 60px;
    margin-left: auto;
    margin-right: auto;
    order: 1;
  }
}

@media(max-width: 760px) {
  .column-left-ztsEugzF {
    width: 100%;
    margin-top: 20px;
    margin-bottom: 0;
  }
}

.column-right-1EYCEN9V {
  width: 30%;
}

@media(max-width: 992px) {
  .column-right-1EYCEN9V {
    width: 100%;
  }
}

.section-title-2gvEc5np {
  color: var(--secondary-text-color);
  margin-bottom: 9px;
}

.section-subtitle-3nulZBHo {
  color: var(--primary-text-color);
  margin-bottom: 10px;
}

.column-right-1EYCEN9V .section-subtitle-3nulZBHo {
  max-width: 150px;
}

@media(max-width: 992px) {
  .column-right-1EYCEN9V .section-subtitle-3nulZBHo {
    max-width: 100%;
  }
}

.section-text-2mRJSaOu {
  color: var(--secondary-text-color);
  margin-bottom: 24px;
}

.column-3eWia28t .section-text-2mRJSaOu {
  max-width: 450px;
}

@media(max-width: 992px) {
  .column-3eWia28t .section-text-2mRJSaOu {
    text-align: center;
    max-width: 100%;
  }
}

.column-right-1EYCEN9V .section-text-2mRJSaOu {
  max-width: 248px;
}

@media(max-width: 992px) {
  .column-right-1EYCEN9V .section-text-2mRJSaOu {
    max-width: 100%;
  }
}

.icon-container-1P3qdVqu {
  max-width: 84px;
  margin-top: 60px;
  margin-bottom: 64px;
  margin-left: auto;
  margin-right: auto;
}

@media(max-width: 992px) {
  .icon-container-1P3qdVqu {
    margin-top: 20px;
    margin-bottom: 35px;
  }
}

.img-container-2EjYuCh6 {
  max-width: 687px;
  margin-top: -40px;
}

@media(max-width: 992px) {
  .img-container-2EjYuCh6 {
    margin-top: 0;
  }
}

.icon-container-1P3qdVqu img,
.img-container-2EjYuCh6 img {
  width: 100%;
  height: auto;
}

.section-link-3UArvPyh {
  display: flex;
  align-items: center;
  background-color: transparent;
  border: 0;
  color: var(--tertiary-text-color);
  padding: 0;
  margin-top: 32px;
  opacity: .9;
}

.section-link-3UArvPyh:hover {
  opacity: .8;
}

.icon-play-21RgXzzx {
  margin-right: 12px;
}
.super-pod-internals-1L5U8FWY {
  background-color: var(--secondary-background-color);
  padding-top: 74px;
  padding-bottom: 74px;
}

@media(max-width: 992px) {
  .super-pod-internals-1L5U8FWY {
    padding-top: 0;
  }
}

.content-156lsFFa {
  display: flex;
  align-items: center;
  width: 85%;
  height: 100%;
  margin: auto;
}

@media(max-width: 1340px) {
  .content-156lsFFa {
    flex-direction: column;
    width: 100%;
  }
}

.column-left-3GgCyBie {
  width: 70%;
}

@media(max-width: 1340px) {
  .column-left-3GgCyBie {
    margin-top: 20px;
    order: 1;
  }
}

@media(max-width: 760px) {
  .column-left-3GgCyBie {
    width: 100%;
    margin-top: 20px;
    order: 1;
  }
}

@media(max-width: 992px) {
  .column-left-3GgCyBie {
    margin-top: 0;
  }
}

.column-right-215im4Hv {
  width: 30%;
}

@media(max-width: 1340px) {
  .column-right-215im4Hv {
    width: 82%;
  }
}

@media(max-width: 992px) {
  .column-right-215im4Hv {
    width: 100%;
  }
}

.section-subtitle-3lqp1usO {
  color: var(--primary-text-color);
  margin-bottom: 10px;
  max-width: 150px;
}

@media(max-width: 992px) {
  .section-subtitle-3lqp1usO {
    max-width: 100%;
  }
}

.section-text-2TOyJTB7 {
  color: var(--secondary-text-color);
  margin-bottom: 24px;
  max-width: 248px;
}

@media(max-width: 1340px) {
  .section-text-2TOyJTB7 {
    max-width: 460px;
  }
}

@media(max-width: 992px) {
  .section-text-2TOyJTB7 {
    max-width: 100%;
  }
}

.pod-coverage-3bKdSVGb {
  position: relative;
  height: 556px;
}

.pod-innards-2Zrj0r8X {
  background-repeat: no-repeat;
  position: relative;
  height: 556px;
  width: 760px;
  margin-top: 200px;
}

@media(max-width: 992px) {
  .pod-coverage-3bKdSVGb {
    width: 100%;
  }

  .pod-innards-2Zrj0r8X {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    background-size: contain;
    margin-top: 260px;
    width: 475px;
    height: 550px;
  }
}

.super-pod-smart-clouds-faUjbdwg {
  background-color: var(--secondary-background-color);
  padding-bottom: 60px;
}

@media(max-width: 992px) {
  .super-pod-smart-clouds-faUjbdwg {
    padding-top: 120px;
  }
}

.content-2AKjbBMd {
  display: flex;
  align-items: center;
  width: 85%;
  height: 100%;
  margin: auto;
}

@media(max-width: 992px) {
  .content-2AKjbBMd {
    flex-direction: column;
    width: 100%;
  }
}

.column-left-2rr55dSB {
  width: 70%;
  padding-left: 65px;
}

@media(max-width: 992px) {
  .column-left-2rr55dSB {
    width: 100%;
    padding-left: 0;
    margin-top: 20px;
    order: 1;
  }
}

.column-right-2LBUhoqL {
  width: 30%;
}

@media(max-width: 992px) {
  .column-right-2LBUhoqL {
    width: 100%;
  }
}

.img-container-2-cP9asr {
  width: 90%;
  max-width: 650px;
}

@media(max-width: 992px) {
  .img-container-2-cP9asr {
    width: 100%;
  }
}

.img-container-2-cP9asr img {
  width: 100%;
  height: auto;
}

.section-subtitle-10b5Sgh7 {
  color: var(--primary-text-color);
  margin-bottom: 10px;
  max-width: 250px;
}

@media(max-width: 992px) {
  .section-subtitle-10b5Sgh7 {
    max-width: 100%;
  }
}

.section-text-3JWF7A2e {
  color: var(--secondary-text-color);
  margin-bottom: 24px;
  max-width: 248px;
}

@media(max-width: 992px) {
  .section-text-3JWF7A2e {
    max-width: 100%;
  }
}

.section-info-OMZhlK5C {
  color: var(--secondary-text-color);
  margin-left: 15px;
}
.color-selector-30t4sU6t {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media(max-width: 760px) {
  .color-selector-30t4sU6t {
    flex-wrap: wrap;
  }
}

.color-selector-item-39_R3I2A {
  margin: 0 3px;
  display: inline-block;
  width: 29px;
  height: 26px;
  cursor: pointer;
}

.color-selector-item-selected-31pPNTBv {

}

@media(max-width: 760px) {
  .color-selector-item-39_R3I2A {
    height: 24px;
    width: 28px;
  }
}

.color-selector-item-39_R3I2A.large-3YqPHAbS {
  margin: 0 12px;
  width: 59px;
  height: 52px;
}

@media(max-width: 992px) {
  .color-selector-item-39_R3I2A.large-3YqPHAbS {
    margin: 0 3px;
    width: 46px;
    height: 38px;
  }
}

@media(max-width: 760px) {
  .color-selector-item-39_R3I2A.large-3YqPHAbS {
    margin: 2px;
    width: 59px;
    height: 52px;
  }
}

.color-selector-item-39_R3I2A svg {
  width: 100%;
  height: 100%;
}

.checkout-addOn-selector-1IO9WyrM {
  max-width: 280px;
}

.checkout-addOn-selector-1IO9WyrM img {
  max-width: 180px;
  margin-left: -32px;
  height: 150px;
  width: auto;
}

.checkout-addOn-selector-info-1L7I_AxA {
  position: relative;
  margin-top: 10px;
}

.checkout-addOn-selector-info-1L7I_AxA small {
  display: block;
  font-size: 15px;
  line-height: 1.33;
  font-weight: 400;
  color: var(--secondary-text-color);
}

.checkout-addOn-selector-info-1L7I_AxA small:last-of-type {
  margin-bottom: -5px;
}

.checkout-addOn-selector-info-1L7I_AxA h3 {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 2px 0;
  color: var(--primary-text-color);
}

.checkout-addOn-selector-price-Eba0rFlp {
  color: var(--primary-text-color);
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  font-size: 18px;
  font-weight: 500;
}

.checkout-addOn-selector-input-1WAIRb2C {
  display: flex;
  align-items: center;
  height: 28px;
  line-height: 28px;
  margin-top: 23px;
  user-select: none;
  padding-bottom: 5px;
}

.checkout-addOn-selector-input-button-2gBhp5JC {
  display: inline-block;
  vertical-align: top;
  width: 28px;
  height: 28px;
  line-height: 28px;
  text-align: center;
  border-radius: 5px;
  background-color: #fcfcfd;
  cursor: pointer;
  font-size: 20px;
  font-weight: 500;
}

.checkout-addOn-selector-input-button-2gBhp5JC:first-child {
  margin-right: 8px;
}

.checkout-addOn-selector-input-button-2gBhp5JC:last-child {
  margin-left: 8px;
}

.checkout-addOn-selector-input-button-disabled-pfgfDtmz {
  opacity: 0.5;
  pointer-events: none;
  cursor: default;
}

.checkout-addOn-selector-input-label-1epsXaFg {
  text-align: center;
  width: 28px;
  height: 28px;
  line-height: 31px;
  vertical-align: middle;
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  background-color: var(--highlight-color);
  border-radius: 5.6px;
  box-shadow: 0 2px 4px 0 #c6c6c6;
}

.checkout-addOn-selector-input-label-blanc-11a8Bqd5 {
  color: var(--primary-text-color);
  background-color: #f7f7ff;
}

.checkout-addOn-color-3Uy2LWMC {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
  min-height: 30px;
}

.checkout-addOn-color-mobile-19tG-Jsk {
  display: none;
}

.checkout-addOn-color-info-1qZSylv0 {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  color: #939597;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

.checkout-addOn-color-info-1qZSylv0 span:not(:first-child):last-child {
  color: #939597;
  font-size: 13px;
  font-weight: 400;
  margin-top: 2px;
}

@media (max-width: 760px) {
  .checkout-addOn-selector-1IO9WyrM {
    max-width: 100%;
  }

  .checkout-addOn-selector-1IO9WyrM img {
    margin: 0 20px 0 0;
    float: left;
    max-width: 110px;
    height: auto;
  }

  .checkout-addOn-color-3Uy2LWMC {
    margin-top: 30px;
  }

  .checkout-addOn-color-desktop-soYC4n0l {
    display: none;
  }

  .checkout-addOn-color-mobile-19tG-Jsk {
    display: flex;
  }
}

@media (max-width: 350px) {
  .checkout-addOn-selector-1IO9WyrM img {
    max-width: 80px;
    padding-bottom: 30px;
    margin-right: 10px;
  }
}

.pods-MHzlcQIF {
  width: 64%;
  display: flex;
  justify-content: flex-end;
  opacity: 0;
}

.fade-in-2QTnlaI_ {
  -webkit-animation: fadeIn-gK628-sQ .6s cubic-bezier(0.215, 0.61, 0.355, 1) .8s forwards;
  -moz-animation: fadeIn-gK628-sQ .6s cubic-bezier(0.215, 0.61, 0.355, 1) .8s forwards;
  -ms-animation: fadeIn-gK628-sQ .6s cubic-bezier(0.215, 0.61, 0.355, 1) .8s forwards;
  -o-animation: fadeIn-gK628-sQ .6s cubic-bezier(0.215, 0.61, 0.355, 1) .8s forwards;
  animation: fadeIn-gK628-sQ .6s cubic-bezier(0.215, 0.61, 0.355, 1) .8s forwards;
}

@keyframes fadeIn-gK628-sQ {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (max-width: 960px) {
  .pods-MHzlcQIF {
    width: 100%;
  }
}

.pods-content-g48KUtTy {
  max-width: 780px;
  width: 100%;
  padding: 30px 30px 30px 45px;
}

.pods-section-kf49jfWC {
  display: flex;
  justify-content: space-between;
  margin-bottom: 80px;
  margin-right: 40px;
}

.pods-section-kf49jfWC > div {
  width: 50%;
}

@media (max-width: 1249px) {
  .pods-section-kf49jfWC {
    flex-direction: column;
  }

  .pods-section-kf49jfWC > div {
    min-width: 100%;
  }
}

@media (max-width: 960px) {
  .pods-content-g48KUtTy {
    padding: 0 60px;
  }

  .pods-section-kf49jfWC {
    margin-right: 0;
    margin-bottom: 20px;
  }
}

@media (max-width: 760px) {
  .pods-MHzlcQIF {
    width: 100%;
  }

  .pods-content-g48KUtTy {
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 0;
    max-width: 100%;
  }

  .pods-section-kf49jfWC {
    flex-direction: column;
  }

  .pods-section-kf49jfWC > div {
    width: 100%;
    margin-bottom: 50px;
  }

  .pods-section-kf49jfWC > div:last-child {
    margin-bottom: 0px;
  }
}

.pods-selector-2cT-35XS {
  position: relative;
  height: 520px;
  margin: 15px 0;
}

@media (max-width: 992px) {
  .pods-selector-2cT-35XS {
    margin-top: -40px;
    margin-bottom: 0;
  }
}

@media (max-width: 760px) {
  .pods-selector-2cT-35XS {
    width: 98%;
    height: 245px;
    margin: 0 auto 20px auto;
  }
}

.pods-selector-items-3wPKbqnp {
  position: relative;
  height: 100%;
  display: flex;
  align-content: center;
  justify-content: center;
  overflow: hidden;
}

.pods-selector-items-active-1-1kJklrkn .pods-selector-item-ly3DziaO:nth-child(1) {
  transform: translateX(0);
}

.pods-selector-items-active-1-1kJklrkn .pods-selector-item-ly3DziaO:nth-child(2) {
  transform: translateX(100%);
}

.pods-selector-items-active-2-_YwfoogT .pods-selector-item-ly3DziaO:nth-child(1) {
  transform: translateX(-100%);
}

.pods-selector-items-active-2-_YwfoogT .pods-selector-item-ly3DziaO:nth-child(2) {
  transform: translateX(0);
}

.pods-selector-item-ly3DziaO {
  position: absolute;
  z-index: 2;
  height: 100%;
  display: flex;
  align-content: center;
  justify-content: center;
  transition: transform 300ms;
  overflow: hidden;
  width: 100%;
}

@media (max-width: 760px) {
  .pods-selector-item-ly3DziaO {
    width: auto;
  }
}

.pods-selector-item-ly3DziaO img {
  width: auto;
  height: 100%;
}

.pods-selector-previous-3VJmvbbi,
.pods-selector-next-2XxRIar1 {
  position: absolute;
  height: 100%;
  top: 0;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  cursor: pointer;
}

.pods-selector-previous-3VJmvbbi {
  left: 0;
}

.pods-selector-next-2XxRIar1 {
  right: 0;
}

.pods-selector-previous-disabled-2vWI4xBt,
.pods-selector-next-disabled-3LHsip8Q {
  opacity: 0.5;
  pointer-events: none;
  cursor: default;
}

.pod-selection-info-date-2YK6q2tT {
  display: block;
  font-size: 13px;
  font-weight: 400;
}

.pod-selection-info-3IE0BcVp {
  color: var(--secondary-text-color);
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  line-height: 18px;
  margin-top: 20px;
  margin-bottom: 40px;
}

@media (max-width: 760px) {
  .pod-selection-info-3IE0BcVp {
    margin-top: 10px;
  }
}

.bundles-3WiYDsCg {
  display: flex;
  justify-content: flex-end;
  width: 64%;
  opacity: 0;
}

.fade-in-3JjOHs8n {
  -webkit-animation: fadeIn-srLiXL3g .6s cubic-bezier(0.215, 0.61, 0.355, 1) .8s forwards;
  -moz-animation: fadeIn-srLiXL3g .6s cubic-bezier(0.215, 0.61, 0.355, 1) .8s forwards;
  -ms-animation: fadeIn-srLiXL3g .6s cubic-bezier(0.215, 0.61, 0.355, 1) .8s forwards;
  -o-animation: fadeIn-srLiXL3g .6s cubic-bezier(0.215, 0.61, 0.355, 1) .8s forwards;
  animation: fadeIn-srLiXL3g .6s cubic-bezier(0.215, 0.61, 0.355, 1) .8s forwards;
}

@keyframes fadeIn-srLiXL3g {
  from { opacity: 0; }
  to { opacity: 1; }
}

.bundles-content-2g5WwBDJ {
  max-width: 830px;
  width: 100%;
  padding-right: 30px;
}

@media (max-width: 1400px) {
  .bundles-content-2g5WwBDJ {
    padding-right: 20px;
    padding-left: 20px;
  }
}

@media (max-width: 992px) {
  .bundles-3WiYDsCg {
    width: 95%;
  }

  .bundles-content-2g5WwBDJ {
    width: 95%;
  }
}

@media (max-width: 760px) {
  .bundles-3WiYDsCg {
    width: 100%;
  }

  .bundles-content-2g5WwBDJ {
    width: 100%;
  }
}
.home-buy-pods-3tR7HRJK {
  display: flex;
  flex-direction: column;
  padding-top: 120px;
  padding-bottom: 220px;
  align-items: center;
  width: 100%;
}

@media (max-width: 992px) {
  .home-buy-pods-3tR7HRJK {
    margin-top: 80px;
    padding: 0 20px 80px 20px;
  }
}

@media (max-width: 760px) {
  .home-buy-pods-3tR7HRJK {
    margin-top: 50px;
  }
}


.home-buy-pods-3tR7HRJK h1 {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.5px;
  color: var(--primary-text-color);
  max-width: 600px;
  margin-bottom: 26px;
  text-align: center;
}

@media (max-width: 992px) {
  .home-buy-pods-3tR7HRJK h1 {
    font-size: 22px;
    max-width: 500px;
    text-align: center;
  }
}

@media (max-width: 760px) {
  .home-buy-pods-3tR7HRJK h1 {
    font-size: 20px;
    margin-left: 20px;
    margin-right: 20px;
    max-width: 100%;
  }
}

.home-buy-pods-button-1lvm3J9E {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 50px;
  color: var(--button-dark-text-color);
  border-radius: 28px;
  background-color: var(--button-dark-background-color);
  box-shadow: -6px 4px 10px 0 rgba(98, 105, 255, 0.2);
  text-align: center;
  height: 50px;
  width: 100%;
  max-width: 340px;
  cursor: pointer;
}

.home-selection-1A3EaV4C {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding-top: 90px;
  padding-bottom: 55px;
}

@media(max-width: 922px) {
  .home-selection-1A3EaV4C {
    padding-top: 60px;
    padding-bottom: 20px;
    border-bottom: 0;
  }
}

@media(max-width: 760px) {
  .home-selection-1A3EaV4C {
    padding-top: 20px;
  }
}

.home-selection-1A3EaV4C h1 {
  font-size: 28px;
  line-height: 1.2;
  font-weight: 500;
  margin-bottom: 55px;
  padding: 0 20px;
  text-align: center;
  color: var(--primary-text-color);
}

@media(max-width: 992px) {
  .home-selection-1A3EaV4C h1 {
    font-size: 30px;
  }
}

@media(max-width: 760px) {
  .home-selection-1A3EaV4C h1 {
    font-size: 22px;
    margin-bottom: 0;
    padding: 0 40px;
  }
}

.home-selection-items-3V1ncMsT {
  display: flex;
  align-content: center;
  justify-content: center;
}

@media(max-width: 760px) {
  .home-selection-items-3V1ncMsT {
    position: relative;
    flex-direction: column;
    align-items: center;
    z-index: 2;
  }
}

.home-selection-item-2hTqpZd1 {
  overflow: hidden;
  width: 300px;
  height: 300px;
  border-radius: 50%;
}

.home-selection-item-one-3PtbPhw0 {
  opacity: 0;
  -webkit-animation: slideUp-22GjyxzF .6s cubic-bezier(0.215, 0.61, 0.355, 1) .8s forwards;
  -moz-animation: slideUp-22GjyxzF .6s cubic-bezier(0.215, 0.61, 0.355, 1) .8s forwards;
  -ms-animation: slideUp-22GjyxzF .6s cubic-bezier(0.215, 0.61, 0.355, 1) .8s forwards;
  -o-animation: slideUp-22GjyxzF .6s cubic-bezier(0.215, 0.61, 0.355, 1) .8s forwards;
  animation: slideUp-22GjyxzF .6s cubic-bezier(0.215, 0.61, 0.355, 1) .8s forwards;
}

.home-selection-item-two-3Il616Qn {
  opacity: 0;
  -webkit-animation: slideUp-22GjyxzF .6s cubic-bezier(0.215, 0.61, 0.355, 1) 1.2s forwards;
  -moz-animation: slideUp-22GjyxzF .6s cubic-bezier(0.215, 0.61, 0.355, 1) 1.2s forwards;
  -ms-animation: slideUp-22GjyxzF .6s cubic-bezier(0.215, 0.61, 0.355, 1) 1.2s forwards;
  -o-animation: slideUp-22GjyxzF .6s cubic-bezier(0.215, 0.61, 0.355, 1) 1.2s forwards;
  animation: slideUp-22GjyxzF .6s cubic-bezier(0.215, 0.61, 0.355, 1) 1.2s forwards;
}

.home-selection-item-three-FI6Q6T3M {
  opacity: 0;
  -webkit-animation: slideUp-22GjyxzF .6s cubic-bezier(0.215, 0.61, 0.355, 1) 1.6s forwards;
  -moz-animation: slideUp-22GjyxzF .6s cubic-bezier(0.215, 0.61, 0.355, 1) 1.6s forwards;
  -ms-animation: slideUp-22GjyxzF .6s cubic-bezier(0.215, 0.61, 0.355, 1) 1.6s forwards;
  -o-animation: slideUp-22GjyxzF .6s cubic-bezier(0.215, 0.61, 0.355, 1) 1.6s forwards;
  animation: slideUp-22GjyxzF .6s cubic-bezier(0.215, 0.61, 0.355, 1) 1.6s forwards;
}

@keyframes slideUp-22GjyxzF {
  from { opacity: 0; transform: translateY(20px); }
  to  { opacity: 1; transform: translateY(0); }
}

@-moz-keyframes slideUp-22GjyxzF {
  from { opacity: 0; -moz-transform: translateY(20px); }
  to   { opacity: 1; -moz-transform: translateY(0); }
}

@-webkit-keyframes slideUp-22GjyxzF {
  from { opacity: 0; -webkit-transform: translateY(20px); }
  to   { opacity: 1; -webkit-transform: translateY(0); }
}

@-ms-keyframes slideUp-22GjyxzF {
  from { opacity: 0; -ms-transform: translateY(20px); }
  to   { opacity: 1; -ms-transform: translateY(0); }
}

@-o-keyframes slideUp-22GjyxzF {
  from { opacity: 0; -o-transform: translateY(20px); }
  to   { opacity: 1; -o-transform: translateY(0); }
}

.home-selection-item-2hTqpZd1 svg {
  max-width: 100%;
  max-height: 100px;
}

@media(max-width: 992px) {
  .home-selection-item-2hTqpZd1 {
    width: 190px;
    height: 190px;
    margin-bottom: 0;
  }

  @media(max-width: 760px) {
    .home-selection-item-2hTqpZd1 {
      margin-left: auto;
      margin-right: auto;
    }
  }  
    

  .home-selection-item-2hTqpZd1 svg {
    display: block;
    max-width: 100%;
    max-height: 95px;
  }
}

@media(max-width: 760px) {
  .home-selection-item-2hTqpZd1 {
    width: 210px;
    height: 210px;
  }
}

.home-selection-item-2hTqpZd1:nth-child(2) {
  margin: 0 20px;
}

.home-selection-item-2hTqpZd1 a {
  display: flex;
  height: 235px;
  flex-direction: column;
  align-content: center;
  align-items: center;
  justify-content: flex-end;
  text-decoration: none;
  color: var(--primary-text-color);
}

@media(max-width: 992px) {
  .home-selection-item-2hTqpZd1 a {
    height: 170px;
  }
}

.home-selection-item-2hTqpZd1 a > span {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.44;
  margin-top: 20px;
}

@media(max-width: 760px) {
  .home-selection-item-2hTqpZd1 a > span {
    font-size: 16px;
    margin-top: 10px;
  }
}

.home-selection-item-2hTqpZd1:hover {
  background-color: rgba(98, 105, 255, 0.08);
}

.home-selection-selector-255Ew8bK > span,
.home-selection-selector-255Ew8bK > input[type="radio"] {
  visibility: hidden;
}

@media(max-width: 760px) {
  .home-selection-1A3EaV4C h1 br {
    display: none;
  }

  .home-selection-selector-255Ew8bK {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
}

.sidebar-membership-ksNC2mfR {
  position: relative;
  background: rgba(98, 105, 255, 0.05);
  padding: 15px 40px 24px;
}

.sidebar-membership-ksNC2mfR > div:first-child {
  color: #3c396f;
  height: 30px;
  line-height: 30px;
  max-width: 340px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sidebar-membership-ksNC2mfR > div:first-child h3 {
  margin: 0;
  font-size: 13px;
  letter-spacing: 1.1px;
  color: #3c396f;
}

.sidebar-membership-ksNC2mfR div {
  max-width: 320px;
}

.sidebar-membership-item-1XOxA5ya {
  display: flex;
  position: relative;
  max-width: 340px;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  padding-left: 26px;
}

.sidebar-membership-item-1XOxA5ya::after {
  content: "";
  display: block;
  position: absolute;
  left: 0px;
  bottom: 5px;
  height: 16px;
  width: 16px;
  background-color: white;
  z-index: 2;
  box-sizing: border-box;
  border-radius: 50%;
  border: 1px solid rgb(204, 204, 204);
  border-image: initial;
  cursor: pointer;
}

.sidebar-membership-item-no-bullet-3nweUOoh {
  padding-left: 0;
}

.sidebar-membership-item-no-bullet-3nweUOoh:after {
  display: none;
}

.sidebar-membership-item-active-1x4E55DV:after {
  border: solid 4px #6269ff;
}

.sidebar-membership-item-label-1f-1nt3O {
  font-size: 18px;
  font-weight: 500;
  color: var(--secondary-text-color);
}

.sidebar-membership-item-active-1x4E55DV .sidebar-membership-item-label-1f-1nt3O {
  color: var(--tertiary-text-color);
}

.sidebar-membership-item-price-3GcSWrKm {
  display: flex;
  align-items: center;
}

.sidebar-membership-item-price-3GcSWrKm strong {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--secondary-text-color);
  display: inline-block;
  vertical-align: middle;
}

.sidebar-membership-item-active-1x4E55DV .sidebar-membership-item-price-3GcSWrKm strong {
  color: var(--tertiary-text-color);
}

.sidebar-membership-item-price-3GcSWrKm small {
  font-size: 12px;
  font-weight: 400;
  margin-right: 8px;
  color: var(--secondary-text-color);
  position: relative;
  display: inline-block;
  vertical-align: middle;
}

.sidebar-membership-item-active-1x4E55DV .sidebar-membership-item-price-3GcSWrKm small {
  color: var(--primary-text-color);
}

.sidebar-review-benefits-button-29SAMesW {
  font-size: 12px;
  font-weight: 500;
  color: #3c396f;
  display: inline-block;
  height: 30px;
  line-height: 30px;
  padding: 0 18px;
  border-radius: 20px;
  border: solid 1px #dbdbdb;
  text-align: center;
  cursor: pointer;
  background: white;
}

.sidebar-membership-ksNC2mfR h3 span {
  background: #f7f8ff !important;
}

.sidebar-membership-ksNC2mfR h3:after {
  display: none;
}

@media(max-width: 992px) {
  .sidebar-membership-ksNC2mfR > div:first-child {
    max-width: 100%;
    flex-direction: column;
  }
  .sidebar-membership-ksNC2mfR div {
    max-width: 100%;
  }
  .sidebar-membership-ksNC2mfR h3 span {
    background: white !important;
    letter-spacing: 0px;
  }

  .sidebar-membership-item-price-3GcSWrKm strong {
    font-size: 21px;
  }

  .sidebar-membership-item-price-3GcSWrKm small {
    font-size: 14px;
    font-weight: 400;
    margin-right: 14px;
  }

  .sidebar-membership-ksNC2mfR {
    padding: 20px 60px 10px;
    background: white;
  }

  .sidebar-membership-item-1XOxA5ya {
    max-width: 100%;
  }

  .sidebar-membership-ksNC2mfR h3 {
    min-width: 100%;
  }

  .sidebar-review-benefits-button-29SAMesW {
    display: none;
    right: 0;
  }

  .sidebar-membership-ksNC2mfR h3:after {
    display: block;
    content: "";
    height: 1px;
    width: 100%;
    position: absolute;
    left: 0;
    top: 50%;
    background-color: #e5e5e5;
    z-index: 1;
  }

  .sidebar-membership-ksNC2mfR h3 span {
    position: relative;
    background: white;
    z-index: 2;
    font-size: 12px;
    font-weight: 400;
    padding-right: 5px;
  }
}

@media(max-width: 760px) {
  .sidebar-membership-ksNC2mfR {
    padding: 20px 30px 10px;
  }
}

.sidebar-button-bundles-38nDDVtt {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 22px;
  margin: 40px 40px 30px;
  color: var(--button-dark-text-color);
  border-radius: 28px;
  background-color: var(--button-dark-background-color);
  box-shadow: -6px 4px 10px 0 rgba(98, 105, 255, 0.2);
  text-align: center;
  height: 50px;
  width: 100%;
  max-width: 340px;
  cursor: pointer;
}

@media (max-width: 992px) {
  .sidebar-button-bundles-38nDDVtt {
    position: fixed;
    height: 70px;
    bottom: 0;
    left: 0;
    margin: 0;
    max-width: 100%;
    width: 100%;
    z-index: 10;
    border-radius: 0;
    padding: 1px 60px 0;
  }
}

@media (max-width: 760px) {
  .sidebar-button-bundles-38nDDVtt {
    padding: 1px 30px 0;
  }
}

.sidebar-button-bundles-disabled-KT5sMY-0 {
  background-color: #c2c9ff;
  pointer-events: none;
}

.sidebar-button-bundles-label-2m-nyiYK {
  font-size: 16px;
  font-weight: 500;
}

.sidebar-button-bundles-totalPrice-38H0J4KX {
  font-size: 26px;
  font-weight: 500;
}
.sidebar-selector-3b1i-DLo {
  margin: 40px 40px;
  max-width: 320px;
}

.sidebar-selector-item-2SGOHUuT {
  position: relative;
  margin-bottom: 27px;
  padding-left: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sidebar-selector-item-2SGOHUuT:after {
  content:"";
  display: block;
  position: absolute;
  top: 50%;
  left: 0px;
  border-radius: 50%;
  border: 1px solid #cccccc;
  height: 16px;
  width: 16px;
  background-color: white;
  z-index: 2;
  transform: translateY(-50%);
  box-sizing: border-box;
  cursor: pointer;
}

.sidebar-selector-item-2SGOHUuT small {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.33;
  color: var(--secondary-text-color);
}

.sidebar-selector-item-active-wCB5Lc1I small {
  color: var(--tertiary-text-color);
}

.sidebar-selector-item-2SGOHUuT h4 {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--secondary-text-color);
  padding-top: 3px;
}

.sidebar-selector-item-active-wCB5Lc1I h4 {
  color: var(--tertiary-text-color);
}

.sidebar-selector-item-price-1PNGk7-N {
  color: var(--secondary-text-color);
  height: 100%;
  font-size: 24px;
  font-weight: 500;
  margin-left: 5px;
}

.sidebar-selector-item-active-wCB5Lc1I .sidebar-selector-item-price-1PNGk7-N {
  color: var(--tertiary-text-color);
}

.sidebar-selector-item-active-wCB5Lc1I:after {
  border: solid 4px var(--tertiary-text-color);
}

.sidebar-selector-item-no-bullet-2TWU00Ia {
  padding-left: 0;
}

.sidebar-selector-item-no-bullet-2TWU00Ia:after {
  display: none;
}

@media (max-width: 992px) {
  .sidebar-selector-3b1i-DLo {
    max-width: 100%;
    margin: 20px 60px;
  }

  .sidebar-selector-item-price-1PNGk7-N {
    padding-right: 0;
  }
}

@media(max-width: 760px) {
  .sidebar-selector-3b1i-DLo {
    margin: 20px 30px;
  }
}

.sidebar-selector-c_1Kg5ta {
  margin: 20px 40px;
  max-width: 320px;
}

.sidebar-selector-item-PsqS4STM {
  position: relative;
  margin-bottom: 15px;
}

.sidebar-selector-item-PsqS4STM small {
  font-size: 14px;
  color: var(--secondary-text-color);
  font-weight: 400;
}

.sidebar-selector-item-PsqS4STM h4 {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--tertiary-text-color);
  margin-top: 3px;
}

.sidebar-selector-item-price-KJAvbJ3A {
  color: #6269ff;
  font-size: 24px;
  font-weight: 500;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: flex-end;
}

@media (max-width: 992px) {
  .sidebar-selector-c_1Kg5ta {
    max-width: 100%;
    margin: 20px 60px;
  }
}

@media(max-width: 760px) {
  .sidebar-selector-c_1Kg5ta {
    margin: 20px 30px;
  }
}

.sidebar-bundles-1zAL8kHJ {
  padding: 30px;
}


.sidebar-section-2g7p5eY0 { 
  border: 1px solid blue;
}

#configurator-bundles .bundle-container.active a {
  color: #3c396f;
}
@media(max-width: 992px) {
  #configurator-bundles .bundle-title {
    padding: 10px 40px 9px 70px;
    font-size: 12px;
    line-height: 14px;
  }
  #configurator-bundles .membershipBtn {
    height: 80px;
    font-size: 18px;
    margin-bottom: 7px;
    margin-right: -5px;
  }
  #configurator-bundles .membershipBtn span.member-product {
    line-height: 28px;
  }
  #configurator-bundles .membershipBtn span.member-price {
    font-size: 18px;
    line-height: 1.56;
    right: 20px;
  }
  #configurator-bundles .membershipBtn span.member-product {
    max-width: 120px;
  }

}
@media only screen and (min-width: 993px) {
  #configurator-bundles .bundle-title {
    padding: 5px 10px 5px 20px;
  }
  #configurator-bundles .membershipBtn {
    margin-right: -10px;
  }
  #configurator-bundles .membershipBtn {
    height: 80px;
    font-size: 18px;
    margin-bottom: 7px;
    margin-right: -10px;
  }
  #configurator-bundles .membershipBtn span.member-price {
    font-size: 18px;
    line-height: 1.56;
    right: 20px;
  }
  #configurator-bundles .membershipBtn span.member-product {
    max-width: 120px;
  }
}
@media(min-width: 1280px) {
  #configurator-bundles .membershipBtn {
    height: 100px;
    line-height: 1;
    padding: 0 19px 0 25px;
    border-radius: 50px 0px 0px 50px;
    min-height: 50px;
    font-size: 24px;
    margin-bottom: 30px;
    margin-right: -30px;
  }
  #configurator-bundles .bundle-title {
    padding: 5px 40px 13px 75px;
  }
  #configurator-bundles .membershipBtn span:first-child {
    line-height: 29px;
  }
  #configurator-bundles .membershipBtn span.member-price {
    font-size: 24px;
    padding-left: 10px;
    text-align: right;
    right: 55px;
  }
  #configurator-bundles .membershipBtn .label {
    padding-right: 30px;
  }
  #configurator-bundles .membershipBtn span.member-product {
    max-width: 160px;
  }
}
@media(min-width: 1440px) {
  #configurator-bundles .membershipBtn {
    margin-right: -30px;
  }
}

 {
  @-webkit-keyframes swiper-preloader-spin-jbtivqtI {
    100% {
      -webkit-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }
}
  .swiper-container {
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    /* Fix of Webkit flickering */
    z-index: 1;
    /*padding-left: 14px;
    margin-right: -14px;*/
    opacity: 0;
  }
  .swiper-container-initialized {
    opacity: 1;
  }
  @media(max-width: 1140px) {
    .home-benefits .swiper-slide {
      /*padding-left: 10px;*/
    }
  }
  @media(max-width: 767px) {
    .home-benefits .swiper-slide {
      /*padding-left: 10px;*/
    }
  }
  .swiper-container-no-flexbox .swiper-slide {
    float: left;
  }
  .swiper-container-vertical > .swiper-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
  }
  .swiper-container-android .swiper-slide,
  .swiper-wrapper {
    -webkit-transform: translate3d(0px, 0, 0);
    transform: translate3d(0px, 0, 0);
  }
  .swiper-container-multirow > .swiper-wrapper {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .swiper-container-free-mode > .swiper-wrapper {
    -webkit-transition-timing-function: ease-out;
    -o-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    margin: 0 auto;
    padding-left: 13px;
  }
  .swiper-slide {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
  }
  .swiper-slide-invisible-blank {
    visibility: hidden;
  }
  /* Auto Height */
  .swiper-container-autoheight,
  .swiper-container-autoheight .swiper-slide {
    height: auto;
  }
  .swiper-container-autoheight .swiper-wrapper {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-transition-property: height, -webkit-transform;
    transition-property: height, -webkit-transform;
    -o-transition-property: transform, height;
    transition-property: transform, height;
    transition-property: transform, height, -webkit-transform;
  }
  /* 3D Effects */
  .swiper-container-3d {
    -webkit-perspective: 1200px;
    perspective: 1200px;
  }
  .swiper-container-3d .swiper-wrapper,
  .swiper-container-3d .swiper-slide,
  .swiper-container-3d .swiper-slide-shadow-left,
  .swiper-container-3d .swiper-slide-shadow-right,
  .swiper-container-3d .swiper-slide-shadow-top,
  .swiper-container-3d .swiper-slide-shadow-bottom,
  .swiper-container-3d .swiper-cube-shadow {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
  }
  .swiper-container-3d .swiper-slide-shadow-left,
  .swiper-container-3d .swiper-slide-shadow-right,
  .swiper-container-3d .swiper-slide-shadow-top,
  .swiper-container-3d .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
  }
  .swiper-container-3d .swiper-slide-shadow-left {
    background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
    background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-container-3d .swiper-slide-shadow-right {
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
    background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-container-3d .swiper-slide-shadow-top {
    background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
    background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-container-3d .swiper-slide-shadow-bottom {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
    background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  /* IE10 Windows Phone 8 Fixes */
  .swiper-container-wp8-horizontal,
  .swiper-container-wp8-horizontal > .swiper-wrapper {
    -ms-touch-action: pan-y;
    touch-action: pan-y;
  }
  .swiper-container-wp8-vertical,
  .swiper-container-wp8-vertical > .swiper-wrapper {
    -ms-touch-action: pan-x;
    touch-action: pan-x;
  }
  .swiper-button-prev,
  .swiper-button-next {
    position: absolute;
    top: 50%;
    width: 27px;
    height: 44px;
    margin-top: -22px;
    z-index: 10;
    cursor: pointer;
    background-size: 27px 44px;
    background-position: center;
    background-repeat: no-repeat;
  }
  .swiper-button-prev.swiper-button-disabled,
  .swiper-button-next.swiper-button-disabled {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
  }
  .swiper-button-prev,
  .swiper-container-rtl .swiper-button-next {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
    left: 10px;
    right: auto;
  }
  .swiper-button-next,
  .swiper-container-rtl .swiper-button-prev {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
    right: 10px;
    left: auto;
  }
  .swiper-button-prev.swiper-button-white,
  .swiper-container-rtl .swiper-button-next.swiper-button-white {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
  }
  .swiper-button-next.swiper-button-white,
  .swiper-container-rtl .swiper-button-prev.swiper-button-white {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
  }
  .swiper-button-prev.swiper-button-black,
  .swiper-container-rtl .swiper-button-next.swiper-button-black {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
  }
  .swiper-button-next.swiper-button-black,
  .swiper-container-rtl .swiper-button-prev.swiper-button-black {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
  }
  .swiper-button-lock {
    display: none;
  }
  .swiper-pagination {
    position: absolute;
    text-align: center;
    -webkit-transition: 300ms opacity;
    -o-transition: 300ms opacity;
    transition: 300ms opacity;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    z-index: 10;
  }
  .swiper-pagination.swiper-pagination-hidden {
    opacity: 0;
  }
  /* Common Styles */
  .swiper-pagination-fraction,
  .swiper-pagination-custom,
  .swiper-container-horizontal > .swiper-pagination-bullets {
    bottom: 10px;
    left: 0;
    width: 100%;
  }
  /* Bullets */
  .swiper-pagination-bullets-dynamic {
    overflow: hidden;
    font-size: 0;
  }
  .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    -webkit-transform: scale(0.33);
    -ms-transform: scale(0.33);
    transform: scale(0.33);
    position: relative;
  }
  .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
    -webkit-transform: scale(0.66);
    -ms-transform: scale(0.66);
    transform: scale(0.66);
  }
  .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
    -webkit-transform: scale(0.33);
    -ms-transform: scale(0.33);
    transform: scale(0.33);
  }
  .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
    -webkit-transform: scale(0.66);
    -ms-transform: scale(0.66);
    transform: scale(0.66);
  }
  .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
    -webkit-transform: scale(0.33);
    -ms-transform: scale(0.33);
    transform: scale(0.33);
  }
  .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 100%;
    background: #000;
    opacity: 0.2;
  }
  button.swiper-pagination-bullet {
    border: none;
    margin: 0;
    padding: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
  .swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer;
  }
  .swiper-pagination-bullet-active {
    opacity: 1;
    background: #007aff;
  }
  .swiper-container-vertical > .swiper-pagination-bullets {
    right: 10px;
    top: 50%;
    -webkit-transform: translate3d(0px, -50%, 0);
    transform: translate3d(0px, -50%, 0);
  }
  .swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 6px 0;
    display: block;
  }
  .swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 8px;
  }
  .swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    display: inline-block;
    -webkit-transition: 200ms top, 200ms -webkit-transform;
    transition: 200ms top, 200ms -webkit-transform;
    -o-transition: 200ms transform, 200ms top;
    transition: 200ms transform, 200ms top;
    transition: 200ms transform, 200ms top, 200ms -webkit-transform;
  }
  .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 4px;
  }
  .swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    white-space: nowrap;
  }
  .swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    -webkit-transition: 200ms left, 200ms -webkit-transform;
    transition: 200ms left, 200ms -webkit-transform;
    -o-transition: 200ms transform, 200ms left;
    transition: 200ms transform, 200ms left;
    transition: 200ms transform, 200ms left, 200ms -webkit-transform;
  }
  .swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    -webkit-transition: 200ms right, 200ms -webkit-transform;
    transition: 200ms right, 200ms -webkit-transform;
    -o-transition: 200ms transform, 200ms right;
    transition: 200ms transform, 200ms right;
    transition: 200ms transform, 200ms right, 200ms -webkit-transform;
  }
  /* Progress */
  .swiper-pagination-progressbar {
    background: rgba(0, 0, 0, 0.25);
    position: absolute;
  }
  .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: #007aff;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top;
  }
  .swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    -webkit-transform-origin: right top;
    -ms-transform-origin: right top;
    transform-origin: right top;
  }
  .swiper-container-horizontal > .swiper-pagination-progressbar,
  .swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: 4px;
    left: 0;
    top: 0;
  }
  .swiper-container-vertical > .swiper-pagination-progressbar,
  .swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
    width: 4px;
    height: 100%;
    left: 0;
    top: 0;
  }
  .swiper-pagination-white .swiper-pagination-bullet-active {
    background: #ffffff;
  }
  .swiper-pagination-progressbar.swiper-pagination-white {
    background: rgba(255, 255, 255, 0.25);
  }
  .swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
    background: #ffffff;
  }
  .swiper-pagination-black .swiper-pagination-bullet-active {
    background: #000000;
  }
  .swiper-pagination-progressbar.swiper-pagination-black {
    background: rgba(0, 0, 0, 0.25);
  }
  .swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
    background: #000000;
  }
  .swiper-pagination-lock {
    display: none;
  }
  /* Scrollbar */
  .swiper-scrollbar {
    border-radius: 10px;
    position: relative;
    -ms-touch-action: none;
    background: rgba(0, 0, 0, 0.1);
  }
  .swiper-container-horizontal > .swiper-scrollbar {
    position: absolute;
    left: 1%;
    bottom: 3px;
    z-index: 50;
    height: 5px;
    width: 98%;
  }
  .swiper-container-vertical > .swiper-scrollbar {
    position: absolute;
    right: 3px;
    top: 1%;
    z-index: 50;
    width: 5px;
    height: 98%;
  }
  .swiper-scrollbar-drag {
    height: 100%;
    width: 100%;
    position: relative;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    left: 0;
    top: 0;
  }
  .swiper-scrollbar-cursor-drag {
    cursor: move;
  }
  .swiper-scrollbar-lock {
    display: none;
  }
  .swiper-zoom-container {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
  }
  .swiper-zoom-container > img,
  .swiper-zoom-container > svg,
  .swiper-zoom-container > canvas {
    max-width: 100%;
    max-height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
  }
  .swiper-slide-zoomed {
    cursor: move;
  }
  /* Preloader */
  .swiper-lazy-preloader {
    width: 42px;
    height: 42px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -21px;
    margin-top: -21px;
    z-index: 10;
    -webkit-transform-origin: 50%;
    -ms-transform-origin: 50%;
    transform-origin: 50%;
    -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
    animation: swiper-preloader-spin 1s steps(12, end) infinite;
  }
  .swiper-lazy-preloader:after {
    display: block;
    content: '';
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
    background-position: 50%;
    background-size: 100%;
    background-repeat: no-repeat;
  }
  .swiper-lazy-preloader-white:after {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  }
  @keyframes swiper-preloader-spin-jbtivqtI {
    100% {
      -webkit-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }
  /* a11y */
  .swiper-container .swiper-notification {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    opacity: 0;
    z-index: -1000;
  }
  .swiper-container-fade.swiper-container-free-mode .swiper-slide {
    -webkit-transition-timing-function: ease-out;
    -o-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .swiper-container-fade .swiper-slide {
    pointer-events: none;
    -webkit-transition-property: opacity;
    -o-transition-property: opacity;
    transition-property: opacity;
  }
  .swiper-container-fade .swiper-slide .swiper-slide {
    pointer-events: none;
  }
  .swiper-container-fade .swiper-slide-active,
  .swiper-container-fade .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
  }
  .swiper-container-cube {
    overflow: visible;
  }
  .swiper-container-cube .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1;
    visibility: hidden;
    -webkit-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
    width: 100%;
    height: 100%;
  }
  .swiper-container-cube .swiper-slide .swiper-slide {
    pointer-events: none;
  }
  .swiper-container-cube.swiper-container-rtl .swiper-slide {
    -webkit-transform-origin: 100% 0;
    -ms-transform-origin: 100% 0;
    transform-origin: 100% 0;
  }
  .swiper-container-cube .swiper-slide-active,
  .swiper-container-cube .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
  }
  .swiper-container-cube .swiper-slide-active,
  .swiper-container-cube .swiper-slide-next,
  .swiper-container-cube .swiper-slide-prev,
  .swiper-container-cube .swiper-slide-next + .swiper-slide {
    pointer-events: auto;
    visibility: visible;
  }
  .swiper-container-cube .swiper-slide-shadow-top,
  .swiper-container-cube .swiper-slide-shadow-bottom,
  .swiper-container-cube .swiper-slide-shadow-left,
  .swiper-container-cube .swiper-slide-shadow-right {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  .swiper-container-cube .swiper-cube-shadow {
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.6;
    -webkit-filter: blur(50px);
    filter: blur(50px);
    z-index: 0;
  }
  .swiper-container-flip {
    overflow: visible;
  }
  .swiper-container-flip .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1;
  }
  .swiper-container-flip .swiper-slide .swiper-slide {
    pointer-events: none;
  }
  .swiper-container-flip .swiper-slide-active,
  .swiper-container-flip .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
  }
  .swiper-container-flip .swiper-slide-shadow-top,
  .swiper-container-flip .swiper-slide-shadow-bottom,
  .swiper-container-flip .swiper-slide-shadow-left,
  .swiper-container-flip .swiper-slide-shadow-right {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  .swiper-container-coverflow .swiper-wrapper {
    /* Windows 8 IE 10 fix */
    -ms-perspective: 1200px;
  }

.home-hero-2ARbxvUM {
  background-image: url("/static/images/photo-hero-desktop.png");
  background-size: cover;
  background-position: center;
  height: 870px;
}

@media(max-width: 992px) {
  .home-hero-2ARbxvUM {
    background-image: url("/static/images/photo-hero-tablet-mobile.png");
  }
}

@media(max-width: 760px) {
  .home-hero-2ARbxvUM {
    height: 620px;
  }
}

.content-18UGEnPr {
  display: flex;
  align-items: center;
  padding-left: 34px;
  height: 100%;
}

@media(max-width: 992px) {
  .content-18UGEnPr {
    align-items: flex-end;
    justify-content: center;
    padding-left: 0;
    padding-bottom: 87px;
  }
}

@media(max-width: 760px) {
  .content-18UGEnPr {
    position: relative;
    padding-bottom: 73px;
  }
}

.column-left-27h26Bqy {
  display: flex;
  flex-direction: column;
  max-width: 455px;
  margin-top: -3%;
}

@media(max-width: 992px) {
  .column-left-27h26Bqy {
    max-width: 340px;
    text-align: center;
  }
}

@media(max-width: 760px) {
  .column-left-27h26Bqy {
    max-width: 260px;
  }
}

.btn-video-1Mn8uO32 {
  display: flex;
  align-items: center;
  color: var(--primary-text-color);
  max-width: 340px;
  font-size: 17px;
  padding: 19px 30px 17px;
  box-shadow: 0 15px 20px 0 rgba(60, 57, 111, 0.1);
}

@media(max-width: 992px) {
  .btn-video-1Mn8uO32 {
    margin-left: auto;
    margin-right: auto;
  }
}

@media(max-width: 760px) {
  .btn-video-1Mn8uO32 {
    position: absolute;
    bottom: -115px;
    left: 50%;
    font-size: 15px;
    color: var(--tertiary-text-color);
    transform: translate(-50%);
    border: solid 1px #dbdbdb;
  }
}

.icon-play-NePyUNZO {
  margin-top: -4px;
  margin-right: 12px;
}

.icon-play-NePyUNZO.icon-lg-1NFrSW-t {
  display: block;
}

.icon-play-NePyUNZO.icon-xs-h_Wz-YBW {
  display: none;
}

@media(max-width: 760px) {
  .icon-play-NePyUNZO.icon-lg-1NFrSW-t {
    display: none;
  }

  .icon-play-NePyUNZO.icon-xs-h_Wz-YBW {
    display: block;
  }
}

.section-title-2Lk3HUpg {
  font-size: 42px;
  line-height: 1.1;
  color: var(--primary-text-color);
  margin-bottom: 13px;
}

@media(max-width: 992px) {
  .section-title-2Lk3HUpg {
    font-size: 32px;
    color: var(--hero-text-color);
  }
}

@media(max-width: 760px) {
  .section-title-2Lk3HUpg {
    font-size: 26px;
  }
}

.section-subtitle-3_CusO0b {
  font-size: 27px;
  line-height: normal;
  color: var(--primary-text-color);
  margin-bottom: 36px;
}

@media(max-width: 992px) {
  .section-subtitle-3_CusO0b {
    font-size: 24px;
    color: var(--hero-text-color);
    margin-bottom: 30px;
  }
}


@media(max-width: 760px) {
  .section-subtitle-3_CusO0b {
    font-size: 20px;
  }
}

.LiSection-3bHNRvyu {
  position: relative;
  padding-left: 6%;
}

.LiSection__Letter-3T50uWlK {
  position: absolute;
  top: 0;
  left: 1.5%;
}

.regionSwitcher-2PZkX1KP {
  position: relative;
  width: 38px;
  height: 16px;
  display: inline-block;
  vertical-align: middle;
  margin-left: 6px;
  opacity: 0.4;
  transition: opacity 0.2s;
  cursor: pointer;
}

.regionSwitcher-2PZkX1KP:hover {
  opacity: 1;
  transition: opacity 0.4s;
}

.regionSwitcher_select-1PpJv1Pu {
  position: absolute;
  text-transform: uppercase;
  background-color: transparent;
  border: none;
  top: 0;
  left: 0;
  width: 100%;
  display: inline-block;
  padding: 0;
  margin: 0;
  background-image: url(/arrow-down.svg);
  background-repeat: no-repeat;
  background-position: top 3px right;
  background-size: 17px 5px;
  -webkit-appearance: none;
  appearance: none;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
}


.legal-2aZceNnQ {
  background: white;
  padding-top: 100px;
  padding-left: 60px;
  padding-right: 60px;
  padding-bottom: 50px;
  min-height: 100%;
}

@media screen and (max-width: 1000px) {
  .legal-2aZceNnQ {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.legal-2aZceNnQ h1 {
  font-weight: 500;
  margin-bottom: 40px;
}

.legal-2aZceNnQ h3 {
  font-size: 20px;
  margin-bottom: 18px;
  font-weight: 500;
} 

.legal-2aZceNnQ ol,
.legal-2aZceNnQ ul {
  margin-left: 20px;
}

.legal-2aZceNnQ ol li {
  list-style: decimal inside;
}

.legal-2aZceNnQ ul li {
  list-style: square inside;
}

.menu-2lA3fWws {
  border-bottom: 1px solid #c2c2c2;
  overflow-y: auto;
  margin-left: 0 !important;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 760px) {
  .menu-2lA3fWws {
    display: block;
  }

  .menu-2lA3fWws > li {
    display: block;
    width: 100%;
    text-align: left !important;
  }

  .menu-2lA3fWws > li a {
    text-align: left;
    padding-bottom: 10px;
    display: block;
  }
}

.menu-2lA3fWws > li {
  list-style: none !important;
  text-align: center;
  max-width: 160px;
  padding-bottom: 5px;
}

.menu-2lA3fWws a {
  text-decoration: none;
  color: black;
  opacity: 0.45;
}

.menu-2lA3fWws .active-32POWx-C {
  opacity: 1;
}



.legalpageRHS-2MFfxyEn {
  background: #fff;
}




@media only screen and (max-width: 960px) {

  .legal-2aZceNnQ {
    padding: 20px;
    padding-top: 65px;
  }
}

.LegalTabContent-1rym1Ick p {
  margin: 18px 0 24px 0;
}

.LegalTabContent-1rym1Ick ul li {
  margin: 24px 0;
  text-indent: -20px;
}

.LegalTabContent-1rym1Ick ol li {
  margin: 24px 0;
  text-indent: -18px;
}

.LegalTabContent-1rym1Ick ol li p {
  margin: 24px 0;
  text-indent: 0px;
}

.regionSwitcher-1HwOg9ir {
  position: relative;
  width: 38px;
  height: 16px;
  display: inline-block;
  vertical-align: middle;
  margin-left: 6px;
  opacity: 0.4;
  transition: opacity 0.2s;
  cursor: pointer;
}

.regionSwitcher-1HwOg9ir:hover {
  opacity: 1;
  transition: opacity 0.4s;
}

.regionSwitcher_select-mbn3prxO {
  position: absolute;
  text-transform: uppercase;
  background-color: transparent;
  border: none;
  top: 0;
  left: 0;
  width: 100%;
  display: inline-block;
  padding: 0;
  margin: 0;
  background-image: url(/arrow-down.svg);
  background-repeat: no-repeat;
  background-position: top 3px right;
  background-size: 17px 5px;
  -webkit-appearance: none;
  appearance: none;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
}

.LiSection-u5tLN0Bg {
  position: relative;
  padding-left: 6%;
}

.LiSection__Letter-M5xrTaBi {
  position: absolute;
  top: 0;
  left: 1.5%;
}

.magic-link-form-3v2lxBKS {
  display: flex;
  flex-direction: column;
  padding-top: 80px;
  padding-bottom: 220px;
  align-items: center;
  width: 100%;
}

.modal .magic-link-form-3v2lxBKS{
  padding-top: 60px;
  padding-bottom: 130px;
}

@media (max-width: 992px) {
  .magic-link-form-3v2lxBKS {
    margin-top: 80px;
    padding: 0 20px 80px 20px;
  }
}

@media (max-width: 760px) {
  .magic-link-form-3v2lxBKS {
    margin-top: 50px;
  }
}

.magic-link-title-JKnfaBKc {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.5px;
  color: var(--primary-text-color);
  max-width: 608px;
  margin-bottom: 26px;
  text-align: center;
}

@media (max-width: 992px) {
  .magic-link-title-JKnfaBKc {
    font-size: 22px;
    max-width: 500px;
    text-align: center;
  }
}

@media (max-width: 760px) {
  .magic-link-title-JKnfaBKc {
    font-size: 20px;
    margin-left: 20px;
    margin-right: 20px;
    max-width: 100%;
  }
}

.magic-link-title-JKnfaBKc.slide-up-27UIbIjh {
  opacity: 0;
  -webkit-animation: slideUp-1f2_KG85 .6s cubic-bezier(0.215, 0.61, 0.355, 1) 2s forwards;
  -moz-animation: slideUp-1f2_KG85 .6s cubic-bezier(0.215, 0.61, 0.355, 1) 2s forwards;
  -ms-animation: slideUp-1f2_KG85 .6s cubic-bezier(0.215, 0.61, 0.355, 1) 2s forwards;
  -o-animation: slideUp-1f2_KG85 .6s cubic-bezier(0.215, 0.61, 0.355, 1) 2s forwards;
  animation: slideUp-1f2_KG85 .6s cubic-bezier(0.215, 0.61, 0.355, 1) 2s forwards;
}

.magic-link-field-email-1uezhf_j {
  position: relative;
  max-width: 400px;
  width: 100%;
}

@media (max-width: 760px) {
  .magic-link-field-email-1uezhf_j {
    margin-left: auto;
    margin-right: auto;
  }
}

.magic-link-field-email-1uezhf_j.slide-up-27UIbIjh {
  opacity: 0;
  -webkit-animation: slideUp-1f2_KG85 .6s cubic-bezier(0.215, 0.61, 0.355, 1) 2.4s forwards;
  -moz-animation: slideUp-1f2_KG85 .6s cubic-bezier(0.215, 0.61, 0.355, 1) 2.4s forwards;
  -ms-animation: slideUp-1f2_KG85 .6s cubic-bezier(0.215, 0.61, 0.355, 1) 2.4s forwards;
  -o-animation: slideUp-1f2_KG85 .6s cubic-bezier(0.215, 0.61, 0.355, 1) 2.4s forwards;
  animation: slideUp-1f2_KG85 .6s cubic-bezier(0.215, 0.61, 0.355, 1) 2.4s forwards;
}

@keyframes slideUp-1f2_KG85 {
  from { opacity: 0; transform: translateY(20px); }
  to  { opacity: 1; transform: translateY(0); }
}

@-moz-keyframes slideUp-1f2_KG85 {
  from { opacity: 0; -moz-transform: translateY(20px); }
  to   { opacity: 1; -moz-transform: translateY(0); }
}

@-webkit-keyframes slideUp-1f2_KG85 {
  from { opacity: 0; -webkit-transform: translateY(20px); }
  to   { opacity: 1; -webkit-transform: translateY(0); }
}

@-ms-keyframes slideUp-1f2_KG85 {
  from { opacity: 0; -ms-transform: translateY(20px); }
  to   { opacity: 1; -ms-transform: translateY(0); }
}

@-o-keyframes slideUp-1f2_KG85 {
  from { opacity: 0; -o-transform: translateY(20px); }
  to   { opacity: 1; -o-transform: translateY(0); }
}

.magic-link-field-email-pristine-3ELbVdAV div label {
  text-align: center;
  font-size: 18px;
  padding-top: 25px;
  overflow: visible;
}

.magic-link-field-icon-Wt7iYcTG {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 25px;
  height: 25px;
}

.magic-link-field-icon-Wt7iYcTG svg {
  width: 25px;
  height: 25px;
}

.magic-link-field-email-1uezhf_j input[type="text"],
.magic-link-field-email-1uezhf_j input[type="email"] {
  display: block;
  height: 49px;
  font-size: 16px;
  line-height: 1.5;
  border: 1px solid #939597;
  border-radius: 25px;
  background-color: transparent;
  padding-left: 22px;
  width: 100%;
  -webkit-appearance: none;
}

.magic-link-field-email-1uezhf_j input[type="text"]:focus,
.magic-link-field-email-1uezhf_j input[type="email"]:focus,
.magic-link-field-email-1uezhf_j input[type="text"]:active,
.magic-link-field-email-1uezhf_j input[type="email"]:active {
  border: solid 1px var(--highlight-color);
  color: var(--highlight-color);
}

.magic-link-field-email-1uezhf_j input[type="text"]::placeholder,
.magic-link-field-email-1uezhf_j input[type="email"]::placeholder {
  color: var(--secondary-text-color);
}

.magic-link-field-error-1MrraBQ6 {
  position: absolute;
  top: 50px;
  left: 22px;
  color: var(--color-error);
  font-size: 12px;
  line-height: 16px;
  margin: 6px 0 0;
}

.magic-link-form-actions-2kM40nNL {
  padding: 40px 0;
}

.magic-link-form-button-2oEmk9w1 {
  font-size: 15px;
  padding: 16px 30px 14px;
  box-shadow: -2px 1px 5px 0 rgba(98, 105, 255, 0.2);
}

.content-2ap9xtp2 {
  display: flex;
  flex-wrap: wrap;
  width: 85%;
  margin: auto;
  padding-top: 120px;
  padding-bottom: 100px;
}

@media(max-width: 992px) {
  .content-2ap9xtp2 {
    padding-top: 100px;
    width: 100%;
  }
}

@media(max-width: 760px) {
  .content-2ap9xtp2 {
    flex-direction: column;
    margin-bottom: 0;
  }
}

.column-2piL4Z2q {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 33.33%;
  padding-left: 40px;
  padding-right: 40px;
  padding-bottom: 60px;
}

@media(max-width: 992px) {
  .column-2piL4Z2q {
    padding-left: 12px;
    padding-right: 12px;
    padding-bottom: 20px;
  }
}

@media(max-width: 760px) {
  .column-2piL4Z2q {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
  }
}

.img-container-2wLAaQVo {
  width: 90px;
  height: 90px;
  margin-bottom: 20px;
}

@media(max-width: 992px) {
  .img-container-2wLAaQVo {
    width: 60px;
    height: 50px;
  }
}

.img-container-2wLAaQVo img {
  width: 100%;
  height: auto;
}

.section-subtitle-1tpoY_uV {
  color: var(--primary-text-color);
  margin-bottom: 15px;
}

@media(max-width: 992px) {
  .section-subtitle-1tpoY_uV {
    margin-bottom: 5px;
  }
}

.section-text-33f-kZgX {
  color: var(--secondary-text-color);
}

/* === Common === */



/* === Mobile === */
@media only screen and (max-width: 767px) {

}



/* === Desktop === */
@media only screen and (min-width: 768px) {

}
.overlay-benefits {
  float: left;
  width: 100%;
}
.overlay-benefits .overlay-content {
  display: flex;
  float: none;
  flex-wrap: wrap;
  margin: auto;
}
.overlay-benefits .overlay-column {
  align-items: center;
  display: flex;
  flex-direction: column;
  margin: 0;
  text-align: center;
  width: 100%;
}
.overlay-benefits .overlay-benefits-wrap {
  background-color: #fff;
  float: none;
  margin: 0 auto;
  max-width: 1440px;
  width: 100%;
}
.overlay-column img {
  width: 102px;
  margin: 0 auto;
}
.overlay-column strong {
  color: #e6003c;
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
}
.overlay-column p {
  color: #939597;
  font-size: 18px;
  line-height: 26px;
  margin: 0;
  padding: 17px 0 0 0;
}
.overlay-benefits {
  position: fixed;
  background-color: #f5f5f7;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  transition: all .7s cubic-bezier(0.215, 0.61, 0.355, 1);
  opacity: 1;
  visibility: visible;
  z-index: 1;
}
/*Animation styles*/
.home-overlay-benefits-29jwoxsr {
  position: relative;
  background-color: #fff;
  min-height: 100vh;
  -webkit-transform: translate(0, 20px);
  -ms-transform: translate(0, 20px);
  transform: translate(0, 20px);
}
.slide-up-3yBsL-FX {
  -webkit-animation: slideUp-3_r1qF53 .6s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
  -ms-animation: slideUp-3_r1qF53 .6s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
  animation: slideUp-3_r1qF53 .6s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

@-webkit-keyframes slideUp-3_r1qF53 {
  from { -webkit-transform: translate(0, 20px); }
  to   { -webkit-transform: translate(0, 0); }
}

@-ms-keyframes slideUp-3_r1qF53 {
  from { -ms-transform: translate(0, 20px); }
  to   { -ms-transform: translate(0, 0); }
}

@keyframes slideUp-3_r1qF53 {
  from { transform: translate(0, 20px); }
  to  { transform: translate(0, 0); }
}

@media only screen and (max-width: 992px) {
  .overlay-benefits .overlay-content {
    padding: 50px 20px 130px;
    justify-content: center;
  }
  .overlay-benefits .overlay-column {
    padding-bottom: 45px;
  }
  .overlay-column strong {
    margin: 20px 0 0;
    display: block;
    font-size: 14px;
    line-height: 26px;
  }
  .overlay-column:first-child strong {
    margin-top: 10px;
  }
  .overlay-benefits .overlay-column p {
    font-size: 12px;
    line-height: 18px;
    padding: 10px 0 0;
    margin: 0 auto;
    max-width: 270px;
  }
  .overlay-column:first-child p {
    max-width: 277px;
  }
  .overlay-column.home-pass p, .overlay-column.efficient-updates p {
    max-width: 310px;
  }
  .overlay-column.al-security p {
    max-width: 336px;
  }
  .overlay-column img {
    width: 75px;
  }
  .overlay-column.cheap-hardware img {
    width: 60px;
  }
}

@media only screen and (min-width: 993px) {
  .overlay-benefits .overlay-column {
    padding-left: 4%;
    padding-right: 4%;
    padding-bottom: 68px;
  }
  .overlay-column.al-security {
    padding-left: 2.3%;
    padding-right: 2.3%;
  }
  .overlay-column.map-your-home {
    padding-left: 4%;
    padding-right: 4%;
  }
  .overlay-column.map-your-home img {
    width: 107px;
  }
  .overlay-column.efficient-updates {
    padding-left: 3.2%;
    padding-right: 3.2%;
  }
  .overlay-column.efficient-updates strong {
    display: block;
    padding: 0 40px;
  }
  .efficient-updates img {
    width: 89px;
    margin-top: -20px;
  }
  .overlay-img-wrap {
    height: 117px;
    margin: 0 0 15px;
  }
  .overlay-column.map-your-home .overlay-img-wrap {
    height: 105px;
  }
  .overlay-column.efficient-updates .overlay-img-wrap {
    height: 102px;
  }
  .overlay-column.cheap-hardware img {
    width: 84px;
  }
  .overlay-column.free-delivery img {
    width: 107px;
  }
  .overlay-column.customer-service img {
    width: 105px;
  }
  .overlay-column.new-features img {
    width: 111px;
  }
  .overlay-column.cheap-hardware .overlay-img-wrap {
    height: 105px;
  }
  .overlay-column.warranty-extension p {
    padding: 15px 15px 0;
  }
  .overlay-column.return-policy p {
    padding: 18px 9px 0;
  }
  .overlay-column.customer-service p {
    padding: 10px 10px 0;
  }
  .overlay-column.control-for-iot strong {
    display: block;
    padding: 0 45px;
  }
  .overlay-benefits .overlay-benefits-wrap {
    padding: 0 3.2% 150px;
  }
  .overlay-benefits .overlay-column {
    width: 33.33%;
  }
  .overlay-benefits .overlay-content {
    padding-top: 120px;
  }
  .overlay-benefits .overlay-content {
    width: 86.4%;
  }
}

.youtube-BUtsvTlu {
  background-image: linear-gradient(to top, #ffffff, rgba(250, 250, 255, 1));
  text-align: center;
}

@media(max-width: 992px) {
  .home-benefits-2L0tKZM3 {
    padding-top: 60px;
    padding-bottom: 50px;
  }
}

@media(max-width: 760px) {
  .home-benefits-2L0tKZM3 {
    padding-top: 40px;
    padding-bottom: 50px;
  }
}

.content-3mN8vpkh {
  display: flex;
  justify-content: center;
  margin-bottom: 65px;
}

@media(max-width: 992px) {
  .content-3mN8vpkh {
    margin-top: 30px;
    margin-bottom: 50px;
  }
}

@media(max-width: 760px) {
  .content-3mN8vpkh {
    flex-direction: column;
    margin-top: 0;
  }
}

.column-2iYINB1r {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 33.33%;
  max-width: 290px;
  margin-left: 35px;
  margin-right: 35px;
}

@media(max-width: 992px) {
  .column-2iYINB1r {
    max-width: 220px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media(max-width: 760px) {
  .column-2iYINB1r {
    max-width: 100%;
    width: 80%;
    margin-bottom: 25px;
  }
}

.img-container-10-WYW3E {
  width: 90px;
  height: 90px;
  margin-bottom: 20px;
}

@media(max-width: 992px) {
  .img-container-10-WYW3E {
    width: 75px;
    height: 65px;
  }
}

@media(max-width: 760px) {
  .img-container-10-WYW3E {
    width: 60px;
    height: 50px;
  }
}

.video-container-1IoKjogl {
  max-width: 220px;
  margin-bottom: 43px;
  box-shadow: -17px 20px 14px 0 rgba(0, 0, 0, 0.21), 0 0 10px 0 rgba(0, 0, 0, 0.04);
  background-color: #c8c8c8;
  border-radius: 24px;
  cursor: pointer;
}

@media(max-width: 992px) {
  .video-container-1IoKjogl {
    max-width: 190px;
    margin-bottom: 35px;
  }
}

@media(max-width: 760px) {
  .video-container-1IoKjogl {
    max-width: 220px;
    margin-bottom: 28px;
  }
}

.video-container-1IoKjogl img,
.img-container-10-WYW3E img {
  width: 100%;
  height: auto;
}

.section-title-2Ewu9k9- {
  color: var(--primary-text-color);
  max-width: 752px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 58px;
}

@media(max-width: 992px) {
  .section-title-2Ewu9k9- {
    font-size: 30px;
    margin-bottom: 20px;
  }
}

.section-subtitle-2x4Iz6WR {
  font-size: 24px;
  letter-spacing: 0.5px;
  line-height: 1.2;
  color: var(--primary-text-color);
  margin-bottom: 24px;
}

@media(max-width: 992px) {
  .section-subtitle-2x4Iz6WR {
    margin-bottom: 16px;
    font-size: 18px;
  }
}

@media(max-width: 760px) {
  .section-subtitle-2x4Iz6WR {
    margin-bottom: 10px;
  }
}

.section-text-208kC39z {
  color: var(--secondary-text-color);
}

.btn-shadow-3D8OoyeX {
  font-size: 16px;
  padding: 17px 30px 16px;
  max-width: 260px;
  box-shadow: -6px 4px 10px 0 rgba(98, 105, 255, 0.2);
  margin: auto;
}

.microdata-container-ILFBbwiq {
  display: none;
}

.navigation-desktop-3dsCRKh2 {
  background: var(--navigation-background-color);
  position: fixed;
  top: 0;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  height: 80px;
  z-index: 13;
}

.navigation-bg-hp {
  background: #eeeff0;
}
body[data-user-agent*="MacIntel"] .signLbl,
body[data-user-agent*="iPad"] .signLbl {
  position: relative;
  top: 2px;
}
body[data-user-agent*="Win32"] .signLbl {
  position: relative;
  top: -1px;
}

@media only screen and (min-width: 768px) {
  .menu-indicator {
      position: relative;
      z-index: 0;
    }
    .menu-indicator .menu-item:last-child:before,
    .menu-indicator .menu-item:last-child:after {
      content: '';
      display: block;
      position: absolute;
      pointer-events: none;
      transition: left .5s ease;
    }
    .menu-indicator .menu-item:last-child:after {
      top: 26px;
      left: 14%;
      width: 24%;
      z-index: -1;
      border: 1px solid var(--primary-text-color);
      border-radius: 15px;
      height: 28px;
    }
    .menu-indicator .menu-item:nth-child(1).active ~ .menu-item:last-child:after {
      left: 14% !important;
      width: 24%;
    }
    .menu-indicator .menu-item:nth-child(1).active ~ .menu-item:last-child:before {
      left: 10% !important;
    }
    .menu-indicator .menu-item:nth-child(2).active ~ .menu-item:last-child:after {
      left: 41% !important;
      width: 21%;
    }
    .menu-indicator .menu-item:nth-child(2).active ~ .menu-item:last-child:before {
      left: 39% !important;
    }
    .menu-indicator .menu-item:nth-child(3).active ~ .menu-item:last-child:after {
      left: 40% !important;
    }
    .menu-indicator .menu-item:nth-child(3).active ~ .menu-item:last-child:before {
      left: 50% !important;
    }
    .menu-indicator .menu-item:last-child.active:before {
      left: 90% !important;
    }
    .menu-indicator .menu-item:last-child.active:after {
        left: 66.5% !important;
        width: 19%;
    }
    .menu-wrapper:before,
    .menu-wrapper:after {
      content: " ";
      display: table;
    }
}

@media only screen and (min-width: 993px) {
  .menu-indicator .menu-item:last-child:after {
    left: 7.3% !important;
    width: 31%;
  }
  .menu-indicator .menu-item:nth-child(1).active ~ .menu-item:last-child:after {
    left: 7.3% !important;
    width: 31%;
  }
  .menu-indicator .menu-item:nth-child(1).active ~ .menu-item:last-child:before {
    left: 10% !important;
  }
  .menu-indicator .menu-item:nth-child(2).active ~ .menu-item:last-child:after {
    left: 38.8% !important;
    width: 26%;
  }
  .menu-indicator .menu-item:nth-child(2).active ~ .menu-item:last-child:before {
    left: 39% !important;
  }
  .menu-indicator .menu-item:nth-child(3).active ~ .menu-item:last-child:after {
    left: 40% !important;
  }
  .menu-indicator .menu-item:nth-child(3).active ~ .menu-item:last-child:before {
    left: 50% !important;
  }
  .menu-indicator .menu-item:last-child.active:before {
    left: 90% !important;
  }
  .menu-indicator .menu-item:last-child.active:after {
    left: 67% !important;
    width: 24%;
  }
  .menu-wrapper:before,
  .menu-wrapper:after {
    content: " ";
    display: table;
  }
}

@media(max-width: 992px) {
  /*.navigation-desktop {*/
  /*  display: none;*/
  /*}*/
}

@media(max-width: 992px) {
  /*.navigation-desktop {*/
  /*  display: none;*/
  /*}*/
}

.navigation-desktop-checkout-fnEF420R .navigation-desktop-content-3MBHR7J8 {
  justify-content: space-between;
}

.navigation-desktop-content-3MBHR7J8 {
  position: relative;
  display: flex;
  justify-content: left;
  align-items: center;
  height: 100%;
}

.brand-3t-daxG7,
.brand-3t-daxG7 a {
  cursor: pointer;
}

.btn-shadow-26DTmjVf {
  box-shadow: -2px 1px 5px 0 rgba(98, 105, 255, 0.2);
  transition: all .7s cubic-bezier(0.215, 0.61, 0.355, 1);
  margin-left: 30px;
}

.primary-menu-3QQFrdlE {
  position: absolute;
  display: flex;
  list-style: none;
  left: 0;
  margin: 0;
  padding: 0;
}

.primary-menu-3QQFrdlE li {
  margin-right: 40px;
}

.primary-menu-3QQFrdlE li:last-child {
  margin-right: 0;
}

.primary-menu-3QQFrdlE li a {
  color: var(--navigation-text-color);
  font-size: 13px;
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  cursor: pointer;
}

.primary-menu-3QQFrdlE li a.active-sTgSXLBW {
  color: var(--tertiary-text-color);
}

.primary-menu-3QQFrdlE svg {
  margin-left: 5px;
  margin-bottom: 2px;
}

.primary-menu-3QQFrdlE li a.active-sTgSXLBW svg {
  margin-bottom: 0;
}

.extras-3to5cl10 {
  position: absolute;
  align-items: center;
  right: 0;
  display: flex;
}

.extras-3to5cl10 a + a {
  margin-left: 35px;
}

.navigation-desktop-back-1ljKwY3i {
  color: #3c396f;
  cursor: pointer;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.1px;
}

.navigation-sign-in-4wJBQ49S {
  display: block;
  padding: 0;
  font-size: 13px;
  color: var(--navigation-text-color);
  width: auto;
  cursor: pointer;
}
.navigation-sign-in-4wJBQ49S span {
  font-size: 16px;
  margin: 0px 10px 0 0;
  line-height: 1;
  vertical-align: middle;
}
.navigation-sign-in-4wJBQ49S svg {
  margin-right: 4px;
  vertical-align: middle;
  width: 20px;
}

.navigation-sign-in-4wJBQ49S:hover {
  text-decoration: none;
}

.newsletter-title-21vHgtjy {
  color: var(--secondary-text-color);
  font-size: 14px;
  margin-bottom: 8px;
  padding-left: 22px;
}
.newsletter-form-N1qmYcXl {
  position: relative;
  width: 400px;
}

@media(max-width: 760px) {
  .newsletter-form-N1qmYcXl {
    position: relative;
    width: 100%;
  }
}

.newsletter-input-18MiwyHf {
  display: block;
  height: 75px;
  font-size: 16px;
  line-height: 1.5;
  border: 1px solid #939597;
  border-radius: 25px;
  padding-left: 22px;
  width: 100%;
  -webkit-appearance: none;
  color: var(--footer-primary-text-color);
}
.newsletter-input-18MiwyHf:focus, .newsletter-input-18MiwyHf:active {
  border: solid 1px var(--highlight-color);
  color: var(--highlight-color);
}
.newsletter-input-18MiwyHf::placeholder {
  color: var(--footer-primary-text-color);
}
.newsletter-error-message-UaijpwKV {
  color: var(--color-error);
  font-size: 11px;
  padding: 6px 10px 0;
}

/*From previous stylings*/

.newsletter-signup-result-view-1Ka4LE5_, .newsletter-signup-view-3_QNng-L {
  opacity: 0;
  transition: opacity 300ms;
}

.newsletter-signup-result-view-active-GJ-fO2O3, .newsletter-signup-view-active-3-BvrrbW {
  opacity: 1;
}

.newsletter-signup-result-view-active-GJ-fO2O3+div {
  height: 0 !important;
  overflow: hidden;
}

.newsletter-32Oh_L-M h3 {
  position: absolute;
  top: 50px;
  opacity: 1;
  transition: opacity 500ms ease-in-out;
  z-index: 0;
}

@media(max-width: 992px) {
  .newsletter-32Oh_L-M h3 {
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 220px;
  }
  .newsletter-input-18MiwyHf::placeholder {
    color: var(--color-white);
  }
}

.newsletterFormHasError-13dCEyiU {
  border: 1px solid var(--color-invalid);
}

.newsletterInput-1Py19Rm9 p.newsletterInputErrorMessage--tYlMi09 {
  color: var(--color-invalid);
  font-size: 11px;
  padding: 3px 10px;
}

.newsletter-button-submit-1ZU-d63l {
  position: absolute;
  right: 0;
  top: 0;
  height: 49px;
  visibility: visible;
  font-size: 15px;
  margin: 0;
  box-shadow: -2px 1px 5px 0 rgba(98, 105, 255, 0.2);
}

.newsletter-button-submit-1ZU-d63l:disabled {
  visibility: hidden;
  z-index: -1;
}

.newsletterLoader-3VVg1coM {
  display: inline-block;
}

.icon-sussess-3wv6H4ZL {
  padding-right: 10px;
}

.icon-sussess-3wv6H4ZL svg {
  overflow: visible;
  transform: scale(1.09);
}

.newsletterSubmissionSuccess-2Tc6VEN3 {
  height: 48px;
  border: 0;
  font-size: 15px;
  font-weight: 400;
  display: flex;
  align-items: center;
  padding-left: 2px;
  width: 100%;
  color: var(--color-success);
}

.newsletterSubmissionError-28HbZcDl {
  height: 48px;
  border: 0;
  font-size: 13px;
  font-weight: 400;
  border-radius: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-transform: uppercase;
  background-color: #ffafaf;
  color: var(--color-error);
}

@media(max-width: 992px) {
  .newsletter-title-21vHgtjy {
    display: none;
  }

  .newsletter-input-18MiwyHf {
    color: var(--color-white);
    font-size: 14px;
    font-weight: 500;
    background: var(--newsletter-mobile-bg);
    border-color: var(--newsletter-mobile-bg);
    border-radius: 0;
    padding-right: 120px;
  }

  .newsletter-button-submit-1ZU-d63l {
    height: 75px;
    -webkit-transition: none;
    -moz-transition: none;
    -ms-transition: none;
    -o-transition: none;
    transition: none;
    border-radius: 0;
  }
}

/* Mobile first approach */

@media(min-width: 993px) {
  .newsletter-title-21vHgtjy {
    padding-top: 64px;
  }
  .newsletter-input-18MiwyHf {
    background: transparent;
    height: 50px;
  }
}

.footer-14P9BbxB {
  background-color: var(--footer-background-color);
  position: fixed;
  left: 0;
  width: 100%;
  z-index: 11;
  color: var(--color-white);
  height: 60px;
  min-height: auto !important;
}

.footerContainer-1AQEduIz {
  background-color: var(--footer-background-color);
}

.membership-button-home-159MpFhl {
  position: absolute;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  color: var(--color-white);
  padding: 0 19px 0 25px;
  background: var(--tertiary-text-color);
  border-radius: 25px;
  border: solid 1px var(--tertiary-text-color);
  z-index: 1;
  left: 50%;
  transform: translateX(-50%);
  min-width: 370px;
  max-width: 100%;
  margin-top: -25px;
  text-align: left;
  display: flex;
  min-height: 50px;
  align-items: center;
  letter-spacing: 0.3px;
}

.membership-Btn-text-UwjxIIxM {
  padding-right: 70px;
}

.membership-Btn-text-pods-2NGxGW8W {
  padding-right: 0;
  font-size: 16px;
  text-align: center;
  width: 100%;
  position: static;
}

.membership-button-home-159MpFhl i {
  font-size: 16px;
  font-style: normal;
  display: block;
  padding-bottom: 1px;
}
.membership-button-home-159MpFhl em {
  font-style: normal;
}
.membership-button-home-159MpFhl .membership-Btn-text-pods-2NGxGW8W + span:empty {
  display: none;
}
.membership-button-home-159MpFhl span:last-child {
  font-size: 26px;
  padding-left: 10px;
  text-align: right;
  position: relative;
  right: 4px;
  letter-spacing: normal;
}

.footerMini-7NWlXmJg {
  min-height: 60px;
  display: flex;
  align-items: center;
  font-size: 13px;
  font-weight: normal;
  line-height: 1;
  letter-spacing: 1px;
  color: var(--footer-mini-block-color);
}

.footerMini-7NWlXmJg ul {
  list-style: none;
  list-style-position: inside;
  padding: 0 0 0 23px;
  line-height: 1;
  letter-spacing: 1px;
}

.footerMini-7NWlXmJg li {
  display: inline;
}

.footerMini-7NWlXmJg li a {
  color: var(--footer-mini-block-color);
}

.miniNavright-3b-LmxKh {
  display: flex;
  flex: 1;
  justify-content: flex-end;
}

.miniNavright-3b-LmxKh ul {
  color: var(--color-white);
  opacity: 0.6;
}

.footer-trigger-2H2H1mrd {
  width: 30px;
  height: 30px;
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.footer-trigger-2H2H1mrd:before {
  content: '';
  position: absolute;
  background: var(--color-white);
  height: 1px;
  width: 16px;
}

.footer-trigger-2H2H1mrd span {
  width: 16px;
  height: 11px;
  display: inline-block;
  position: relative;
}

.footer-trigger-2H2H1mrd span:before,
.footer-trigger-2H2H1mrd span:after {
  content: '';
  background: var(--color-white);
  height: 1px;
  width: 100%;
  position: absolute;
  top: 0;
}

.footer-trigger-2H2H1mrd span:after {
  top: auto;
  bottom: 0;
}

.footer-trigger-2H2H1mrd img {
  display: none;
}

.footer-active .footer-trigger-up {
  left: -2px;
  top: 1px;
}

.footer-active .footer-trigger-up img {
  display: block;
}

.footer-active .footer-trigger-up span {
  width: 20px;
  height: 20px;
}

.footer-active .footer-trigger-up:before {
  opacity: 0;
}

.footer-active .footer-trigger-up span:before,
.footer-active .footer-trigger-up span:after {
  display: none;
}

.nav-item-1hh9dso- {
  margin: 0;
  padding-right: 30px;
}

.nav-item-1hh9dso- a {
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  color: var(--footer-mini-block-color);
}

.nav-item-1hh9dso- a:hover {
  color: var(--footer-secondary-text-color)
}

.footer-language-3aOTJEEw img {
  width: 20px;
  height: 20px;
  margin-left: 10px;
  top: -3px;
  position: relative;
}

.footer-language-text-13oaflLk {
  color: var(--footer-secondary-text-color);
}

/* tab and Mobile start */

@media(max-width: 992px) {
  .footer-14P9BbxB {
    transform: translateY(calc(100% - 60px));
    bottom: 0;
    -webkit-transition: all 200ms ease-out;
    -o-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
  }
  html.footer-active {
    overflow: hidden;
  }
  html.footer-active .footer-14P9BbxB {
    height: 100%;
  }
  html.footer-active .home-wrapper {
    display: none;
  }
  html.footer-active .footer-up {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    transform: translateY(0);
  }
  html.footer-active .footerContainerup {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    height: 100%;
  }
  .footerContainer-1AQEduIz {
    padding: 0 20px;
  }
  .membership-button-home-159MpFhl {
    width: 100%;
    min-width: 100%;
    border-radius: 0;
    margin-top: -60px;
    min-height: 60px;
    padding: 0 17px;
  }
  .membership-button-home-159MpFhl em {
    display: none;
  }
  .membership-button-home-159MpFhl span:last-child {
    right: 15px;
    padding-top: 5px;
    min-width: 100px;
  }
  .footerMini-7NWlXmJg {
    background-color: var(--footer-background-color);
  }
  html.footer-active .footerMini-up {
    position: static;
    padding: 0;
  }
  .footer-active .footer-trigger-up {
    left: -4px;
    top: -3px;
  }
  .footerMini-7NWlXmJg ul {
    padding: 6px 0 5px 9px;
    letter-spacing: 1px;
    font-size: 16px;
  }
  .footerMini-7NWlXmJg ul li {
    margin-left: 20px;
  }
  .footerMini-7NWlXmJg ul li:first-child {
    margin-left: 0;
  }
  .miniNavright-3b-LmxKh {
    display: none;
  }


  .footer-active .header-main {
    background-color: var(--footer-background-color);
    border: 0;
    transition: background-color 1s;
  }
  .footer-active .mobile-logo-up svg g {
    fill: currentColor;
    color: var(--secondary-background-color);
  }
  .footer-active .user-actions-icon-up svg circle {
    stroke: var(--secondary-background-color);
  }
  .footer-active .user-actions-icon-up svg path {
    fill: currentColor;
    color: var(--secondary-background-color);
  }
  .footer-active .user-actions-icon-up svg use {
    fill: currentColor;
    color: var(--footer-background-color);
  }
  .footer-active .user-actions-icon-up svg mask {
    fill: currentColor;
    color: var(--footer-background-color);
  }
  .footer-active .user-actions-icon-up svg mask use {
    fill: currentColor;
    color: var(--secondary-background-color);
  }
  .footer-active .drop-arrow svg path {
    stroke: var(--secondary-background-color);
  }


}

@media(max-width: 760px) {
  .membership-Btn-text-UwjxIIxM {
    padding-right: 20px;
  }
}

/* tab and Mobile */

.footer-navigation-1PNFZf9O, .footer-content--JdqozQB {
  justify-content: space-between;
  overflow: hidden;
  padding: 0;
}

.nav-1Vs1sNIZ {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

@media(max-width: 992px) {
  .nav-1Vs1sNIZ {
    flex-direction: column;
    align-items: inherit;
    margin-bottom: 16px;
  }
}

@media(max-width: 992px) {
  .nav-item-1hh9dso- {
    padding: 0;
    border-bottom: 1px solid var(--mobile-footer-links-border);
  }
  .nav-item-1hh9dso- a {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.08;
    padding: 16px 30px 16px 0px;
    display: block;
    -webkit-transition: none;
    -moz-transition: none;
    -ms-transition: none;
    -o-transition: none;
    transition: none;
  }
  .footer-navigation-1PNFZf9O {
    flex-direction: column;
    margin-bottom: 44px;
    padding-top: 10px;
  }
}

.footer-checkout-cta-2lffa9PP .membership-button-home-159MpFhl {
  opacity: 0;
  visibility: hidden;
}

/* Till Mini desktop till 992 */

@media(min-width: 993px) {
  .footer-14P9BbxB {
    bottom: 0;
    -webkit-transform: translateY(calc(100% - 60px));
    -ms-transform: translateY(calc(100% - 60px));
    transform: translateY(calc(100% - 60px));
    min-height: 359px;
    -webkit-transition: bottom 300ms cubic-bezier(0.17, 0.04, 0.03, 0.94);
    -o-transition: bottom 300ms cubic-bezier(0.17, 0.04, 0.03, 0.94);
    transition: bottom 300ms cubic-bezier(0.17, 0.04, 0.03, 0.94);
  }
  .footer-active .footer-up {
    bottom: calc(359px - 60px);
    height: auto;
  }
  .footerMini-7NWlXmJg ul {
    padding-top: 3px;
    font-size: 14px;
    padding-left: 15px;
  }
  .footerMini-7NWlXmJg ul li {
    margin-right: 20px;
  }
  .footerMini-7NWlXmJg ul li:last-child {
    margin-right: 0;
  }
  .miniNavright-3b-LmxKh ul {
    letter-spacing: normal;
  }
  .miniNavright-3b-LmxKh ul li:first-child {
    margin-right: 30px;
  }
  .footerContainer-1AQEduIz {
    padding: 0 60px;
  }
  .nav-item-1hh9dso- {
    letter-spacing: 1px;
    padding-right: 27px;
  }
  .nav-item-1hh9dso-:first-child {
    padding-right: 32px;
  }
  .footer-navigation-1PNFZf9O {
    display: flex;
    padding: 29px 0 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .footer-content--JdqozQB {
    padding-bottom: 46px;
  }
  .footer-question-wrap-R1f-HgBR {
    font-size: 16px;
    font-weight: 400;
    text-align: right;
  }
  .footer-link-zJ34MAGe {
    color: var(--footer-mini-block-color);
    white-space: nowrap;
    padding-left: 5px;
  }
  .icon-view-more-2ABY5uhR svg g {
    stroke: var(--color-white);
  }
  .newsletter-title-2Kdvf7wp {
    padding-top: 64px;
  }
  .footer-content-right-3mjAMmoo {
    padding-top: 40px;
  }
  .footer-language-text-13oaflLk {
    font-size: 16px;
    line-height: 1;
  }
  .footer-trademarks-title-mob-2eApv47s {
    display: none;
  }
  .checkout-cta-visible.footer-checkout-cta-2lffa9PP .membership-button-home-159MpFhl {
    -webkit-animation: fadeInAnimate-2tJsJHja .3s alternate both;
    -ms-animation: fadeInAnimate-2tJsJHja .3s alternate both;
    animation: fadeInAnimate-2tJsJHja .3s alternate both;
  }
  .checkout-cta-hidden.footer-checkout-cta-2lffa9PP .membership-button-home-159MpFhl {
    -webkit-animation: fadeOutAnimate-2eAr81VM .3s alternate both;
    -ms-animation: fadeOutAnimate-2eAr81VM .3s alternate both;
    animation: fadeOutAnimate-2eAr81VM .3s alternate both;
  }
  @-webkit-keyframes fadeInAnimate-2tJsJHja {
    from { opacity: 0; visibility: hidden;}
    to   { opacity: 1; visibility: visible;}
  }

  @-ms-keyframes fadeInAnimate-2tJsJHja {
    from { opacity: 0; visibility: hidden;}
    to   { opacity: 1; visibility: visible;}
  }

  @keyframes fadeInAnimate-2tJsJHja {
    from { opacity: 0; visibility: hidden;}
    to   { opacity: 1; visibility: visible;}
  }

  @-webkit-keyframes fadeOutAnimate-2eAr81VM {
    from { opacity: 1; visibility: visible;}
    to   { opacity: 0; visibility: hidden;}
  }

  @-ms-keyframes fadeOutAnimate-2eAr81VM {
    from { opacity: 1; visibility: visible;}
    to   { opacity: 0; visibility: hidden;}
  }

  @keyframes fadeOutAnimate-2eAr81VM {
    from { opacity: 1; visibility: visible;}
    to   { opacity: 0; visibility: hidden;}
  }

  .footer-expand .sticky-footer-stack {
    position: static;
    margin-top: -60px;
  }
  .footer-expand .footer-trigger-up {
    left: -2px;
    top: 1px;
  }

  .footer-expand .footer-trigger-up img {
    display: block;
  }

  .footer-expand .footer-trigger-up span {
    width: 20px;
    height: 20px;
  }

  .footer-expand .footer-trigger-up:before {
    opacity: 0;
  }

  .footer-expand .footer-trigger-up span:before,
  .footer-expand .footer-trigger-up span:after {
    display: none;
  }
  .footer-expand #stickyCookie {
    top: calc(359px - 60px);
  }
}

@media(min-width: 1160px) {
  .footer-14P9BbxB {
    min-height: 343px;
    max-width: 1440px;
    margin: 0 auto;
    left: auto;
  }
  .footer-active .footer-up {
    bottom: calc(343px - 60px);
  }
  .footerMini-7NWlXmJg ul {
    font-size: 16px;
    padding-left: 22px;
  }
  .footerMini-7NWlXmJg ul li {
    margin-right: 31px;
  }
  .footer-expand #stickyCookie {
    top: calc(343px - 60px);
  }
}

.footer-question-hoNNu8Yq {
  color: var(--color-white);
  opacity: 0.6;
  padding-bottom: 2px;
}

@media(max-width: 992px) {
  .footer-question-hoNNu8Yq {
    display: none;
  }
}

@media(max-width: 992px) {
  .footer-link-zJ34MAGe {
    font-size: 18px;
    font-weight: 500;
    color: var(--tertiary-text-color);
    padding-bottom: 10px;
    display: block;
    border-bottom: 1px solid var(--mobile-footer-links-border);
  }
  .footer-link-zJ34MAGe .icon-view-more-2ABY5uhR {
    display: none;
  }
}

.icon-view-more-2ABY5uhR svg {
  margin-bottom: -4px;
  padding-left: 5px;
  position: relative;
  right: 2px;
}

.footer-content--JdqozQB {
  justify-content: space-between;
  display: flex;
}

@media(max-width: 992px) {
  .footer-content--JdqozQB {
    flex-direction: column;
    padding-bottom: 41px;
  }
}

.footer-content-left-uLiayuRF {
  display: flex;
  flex-direction: column;
}

.newsletter-3-7zDhHG {
  position: relative;
  min-height: 100px;
}

@media(max-width: 992px) {
  .newsletter-3-7zDhHG {
    order: 1;
    margin-bottom: 36px;
    margin-left: auto;
    margin-right: auto;
    min-height: 65px;
  }
}

@media(max-width: 760px) {
  .newsletter-3-7zDhHG {
    margin-left: 0;
    margin-right: 0;
  }
}

.footer-social-links-2eD94QNB {
  display: flex;
  align-items: center;
  margin-top: 19px;
  padding-left: 2px;
}

@media(max-width: 992px) {
  .footer-social-links-2eD94QNB {
    justify-content: center;
    margin-top: 0;
    padding-left: 0;
    margin-bottom: 42px;
  }
  .footer-social-links-2eD94QNB img {
    height: 30px;
    width: 30px;
  }
}

.footer-social-links-2eD94QNB a {
  margin-right: 25px;
}

@media(max-width: 992px) {
  .footer-social-links-2eD94QNB a {
    margin-left: 25px;
    margin-right: 25px;
  }
}

.footer-copyright-1bjkOEX0 {
  font-size: 14px;
  color: var(--footer-primary-text-color);
  margin-top: 4px;
  padding-left: 4px;
}

@media(max-width: 992px) {
  .footer-copyright-1bjkOEX0 {
    display: none;
  }
}

.copyright-sm-b1uwunt4 {
  font-size: 14px;
  color: var(--footer-primary-text-color);
  display: none;
}

@media(max-width: 992px) {
  .copyright-sm-b1uwunt4 {
    display: block;
    order: 2;
    color: var(--footer-mini-block-color);
    opacity: 0.5;
    font-size: 14px;
    font-weight: 500;
  }
}

.footer-content-right-3mjAMmoo {
  text-align: right;
  max-width: 346px;
}

@media(max-width: 992px) {
  .footer-content-right-3mjAMmoo {
    text-align: center;
    margin: auto;
    display: flex;
    flex-direction: column;
  }
}

.footer-trademarks-title-HTarAb7S {
  color: var(--footer-primary-text-color);
  padding-bottom: 2px;
}

@media(max-width: 992px) {
  .footer-trademarks-title-HTarAb7S {
    display: none;
  }
  .footer-trademarks-title-mob-2eApv47s {
    display: inline;
    margin-right: 2px;
  }
  .footer-trademarks-title-mob-2eApv47s:after {
    content: ':';
  }
}

.footer-trademarks-text-3pvvV1yI {
  color: var(--color-white);
  opacity: 0.6;
  font-size: 14px;
  margin-bottom: 42px;
}

@media(max-width: 992px) {
  .footer-trademarks-text-3pvvV1yI {
    margin-bottom: 17px;
    order: 1;
    color: var(--footer-mini-block-color);
    opacity: 0.5;
    font-size: 11px;
    font-weight: 500;
  }
}

.footer-language-3aOTJEEw {
  display: flex;
  padding: 0;
  margin-left: auto;
  border: 0;
  background-color: transparent;
  cursor: pointer;
}

@media(max-width: 992px) {
  .footer-language-3aOTJEEw {
    margin-bottom: 25px;
    margin-left: auto;
    margin-right: auto;
    order: 0;
  }
  .footer-language-3aOTJEEw img {
    margin-top: 0;
  }
}

.overlay-Dbi4rYv1 {
  position: fixed;
  background-color: var(--body-background-color);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  z-index: 13;
}

.overlay-content-2C616-9m {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  background-color: var(--secondary-background-color);
}

.sticky-footer-partner ~ .overlay-Dbi4rYv1 .overlay-video {
  height: auto;
  bottom: 65px;
}

.sticky-footer-partner ~ .overlay-Dbi4rYv1 .overlay-close-rjKA-wYO {
  bottom: 80px;
}

.sticky-footer-cookie ~ .overlay-Dbi4rYv1 .overlay-video {
  height: auto;
  bottom: 100px;
}

.sticky-footer-cookie ~ .overlay-Dbi4rYv1 .overlay-close-rjKA-wYO {
  bottom: 120px;
}

.overlay-close-rjKA-wYO {
  position: fixed;
  bottom: 25px;
  left: 50%;
  transform: translate(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-text-color);
  height: 50px;
  width: 50px;
  border: 0;
  border-radius: 100%;
  cursor: pointer;
  z-index: 1;
}

.theme-promo-sunrise .overlay-close-rjKA-wYO {
  background-color: #e6003c;
}

.overlay-spinner-3P96gkUk {
  width: 50px;
  height: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.slide-up-RLKiEGWF {
  -webkit-animation: slideUp-3kRH0VWo .6s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-animation: slideUp-3kRH0VWo .6s cubic-bezier(0.215, 0.61, 0.355, 1);
  -ms-animation: slideUp-3kRH0VWo .6s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-animation: slideUp-3kRH0VWo .6s cubic-bezier(0.215, 0.61, 0.355, 1);
  animation: slideUp-3kRH0VWo .6s cubic-bezier(0.215, 0.61, 0.355, 1);
}

@keyframes slideUp-3kRH0VWo {
  from { transform: translate(-50%, 100px); }
  to  { transform: translate(-50%, 0); }
}

@-moz-keyframes slideUp-3kRH0VWo {
  from { -moz-transform: translate(-50%, 100px); }
  to   { -moz-transform: translate(-50%, 0px); }
}

@-webkit-keyframes slideUp-3kRH0VWo {
  from { -webkit-transform: translate(-50%, 100px); }
  to   { -webkit-transform: translate(-50%, 0px); }
}

@-ms-keyframes slideUp-3kRH0VWo {
  from { -ms-transform: translate(-50%, 100px); }
  to   { -ms-transform: translate(-50%, 0px); }
}

@-o-keyframes slideUp-3kRH0VWo {
  from { -o-transform: translate(-50%, 100px); }
  to   { -o-transform: translate(-50%, 0px); }
}

@media only screen and (max-width: 992px) {
  .theme-promo-sunrise .home-benefits-overlay .overlay-close-rjKA-wYO {
    bottom: 54px;
  }
}

@media only screen and (min-width: 993px) {
  .theme-promo-sunrise .home-benefits-overlay .overlay-close-rjKA-wYO {
    bottom: 100px;
  }
}

.modal-bg-OcP4eDqR {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(25, 25, 65, 0.5);
  z-index: 100;
}

.modal {
  position: fixed;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 40px 0 rgba(60,57,111,0.2);
  top: 50%;
  left: 50%;
  width: 100%;
  max-width: 600px;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: 101;
}

.modal-content-20-QMjJ3 {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 20px;
}

.modal-close-3KQN_DYw {
  position: fixed;
  bottom: 60px;
  left: 50%;
  transform: translate(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  height: 50px;
  width: 50px;
  border: 0 none;
  border-radius: 100%;
  cursor: pointer;
  z-index: 1;
  padding: 0;
}
.magic-link-sent .modal-close-3KQN_DYw {
  bottom: 40px;
}

.modal-spinner-3N2mi4o3 {
  width: 50px;
  height: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.slide-up-2kDZWvdu {
  -webkit-animation: slideUp-3Qus0GL6 .6s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-animation: slideUp-3Qus0GL6 .6s cubic-bezier(0.215, 0.61, 0.355, 1);
  -ms-animation: slideUp-3Qus0GL6 .6s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-animation: slideUp-3Qus0GL6 .6s cubic-bezier(0.215, 0.61, 0.355, 1);
  animation: slideUp-3Qus0GL6 .6s cubic-bezier(0.215, 0.61, 0.355, 1);
}

@keyframes slideUp-3Qus0GL6 {
  from { transform: translate(-50%, 100px); }
  to  { transform: translate(-50%, 0); }
}

@-moz-keyframes slideUp-3Qus0GL6 {
  from { -moz-transform: translate(-50%, 100px); }
  to   { -moz-transform: translate(-50%, 0px); }
}

@-webkit-keyframes slideUp-3Qus0GL6 {
  from { -webkit-transform: translate(-50%, 100px); }
  to   { -webkit-transform: translate(-50%, 0px); }
}

@-ms-keyframes slideUp-3Qus0GL6 {
  from { -ms-transform: translate(-50%, 100px); }
  to   { -ms-transform: translate(-50%, 0px); }
}

@-o-keyframes slideUp-3Qus0GL6 {
  from { -o-transform: translate(-50%, 100px); }
  to   { -o-transform: translate(-50%, 0px); }
}
@media only screen and (max-width:760px) {
  .modal{
    width: 95%;
  }
}
@media only screen and (max-width:992px) {
  .close-button {
    bottom:35px;
  }
  .modal {
    max-width: 335px;
    border-radius: 0;
  }
  .modal-content-20-QMjJ3 {
    border-radius: 0;
  }
  .magic-link-sent .modal-close-3KQN_DYw {
    bottom: 45px;
  }
}

.sticky-footer-cookie-1QrOTxWd {
  position: fixed;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.98);
  border-top: 1px solid #ad7272;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 20px 0 20px 0;
  transition: bottom 1s;
  z-index: 12;
}

.footer-question-2kvXauYy {
  color: var(--secondary-text-color);
}

.footer-link-ErdsgmUg {
  color: var(--tertiary-text-color);
  padding-left: 5px;
}

.sticky-footer-cookie-inner-3KXDuveS {
  margin-left: auto;
  position: relative;
  padding-right: 160px;
  color: var(--color-cool-grey);
}

.sticky-footer-cookie-inner-3KXDuveS p {
  text-align: left;
}

.sticky-footer-cookie-inner-3KXDuveS a {
  white-space: nowrap;
}

.sticky-footer-cookie-close-328I-5UO {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
  box-shadow: -2px 1px 5px 0 rgba(98, 105, 255, 0.2);
}

@media (max-width: 760px) {
  .sticky-footer-cookie-1QrOTxWd {
    padding-left: 10px;
    padding-right: 10px;
  }

  .sticky-footer-cookie-inner-3KXDuveS {
    padding-right: 0;
  }

  .sticky-footer-cookie-1QrOTxWd {
    font-size: 18px;
    padding: 15px 0 21px 0;
  }

  .sticky-footer-cookie-close-328I-5UO {
    position: static;
    margin-top: 16px;
    transform: none;
  }

  .sticky-footer-cookie-inner-3KXDuveS p {
    font-size: 14px;
  }
}

.sticky-partner-cookie {
  background-color: #6269ff;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 25px 0;
  transition: all 1s;
}

.sticky-partner-cookie .container {
  max-width: 1440px;
  margin: 0 auto;
}

.sticky-partner-question-1Pc7XA4O {
  color: #ffffff;
  padding-bottom: 2px;
}

.sticky-partner-link-rT-3eBQ1 {
  color: #ffffff;
  text-decoration: underline;
}

.icon-view-more-2cjTPs1b svg {
  margin-bottom: -2px;
}

.sticky-partner-cookie-inner-Unfv8du6 {
  margin-left: auto;
  position: relative;
  overflow: hidden;
  color: #ffffff;
  text-align: center;
}

.sticky-partner-cookie-inner-Unfv8du6 p {
  text-align: center;
  font-size: 14px;
  line-height: 1;
  display: inline-block;
  vertical-align: middle;
}

.sticky-partner-cookie-close-2lFLx5h8 {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  padding: 0;
  width: 20px;
  height: 20px;
  cursor: pointer;
  background-color: transparent;
  border: 1px solid #fff;
  border-radius: 50%;
  margin-left: 18px;
}

.sticky-partner-cookie-close-2lFLx5h8 svg {
  width: 10px;
  height: 10px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

@media (max-width: 760px) {
  .sticky-partner-cookie {
    font-size: 14px;
    padding: 0;
    line-height: 1;
    height: 70px;
  }

  .sticky-partner-cookie .container {
    padding: 0 33px 0 24px;
    display: flex;
    align-items: center;
  }

  .sticky-partner-cookie-inner-Unfv8du6 {
    margin-left: 0;
    padding-right: 0;
    text-align: left;
    width: 100%;
  }

  .sticky-partner-cookie-close-2lFLx5h8 {
    right: 0;
    margin-left: 0;
    float: right;
  }

  .sticky-partner-cookie-inner-Unfv8du6 p {
    text-align: left;
    width: calc(100% - 30px);
  }

  .icon-view-more-2cjTPs1b {
    display: none;
  }

  .has-sticky-partner-banner {
    padding-top: 140px;
  }
  .has-sticky-partner-banner #headerMini {
    top: 140px;
  }
}

@media (min-width: 768px) {
  .has-sticky-partner-banner {
    padding-top: 150px;
  }
  .has-sticky-partner-banner #headerMini {
    top: 70px;
  }
}

.sticky-footer-stack {
  z-index: 11;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
}

.sticky-footer-stack > div {
  position: relative !important;
}

@media (max-width: 992px) {
  html.footer-active .sticky-footer-stack {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 69px);
    transform: translateY(0);
  }
}

/* === Common === */
.theme-promo-sunrise .sunrise-user-actions #userActionsMenu {
    top: 40px;
  }
@media(max-width: 760px) {
    .theme-promo-sunrise .sunrise-user-actions #userActionsMenu {
      right: 2px;
      top: 60px;
    }
  }
.sunrise-header-32KkgszY {
  background: #fff;
  border-bottom: solid 1px rgba(151, 151, 151, 0.3);
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 99;
}
.sunriseContainer-1HNMAXVX {
  display: block;
  float: none;
  margin: 0 auto;
  max-width: 1280px;
  width: 100%;
}
.headerContainer-gQFSL9l6 {
  float: left;
  width: 100%;
}
.brand-pohv8ask {
  float: left;
}
.extras-12v6kB5B {
  float: right;
  position: relative;
  display: flex;
  align-items: center;
}
.sunriseHdrPlume-3swWwmKP {
  display: inline-block;
  pointer-events: none;
  margin-right: 5px;
}
.navigation-sign-in-3QF4Qo22 {
  display: inline-block;
  font-size: 13px;
  color: var(--navigation-text-color);
  width: auto;
  cursor: pointer;
  vertical-align: top;
}
.navigation-sign-in-3QF4Qo22 span {
  font-size: 16px;
  margin: 0px 10px 0 0;
  line-height: 1;
  vertical-align: middle;
}
.navigation-sign-in-3QF4Qo22 svg {
  margin-right: 4px;
  vertical-align: middle;
  width: 20px;
}

.navigation-sign-in-3QF4Qo22:hover {
  text-decoration: none;
}

/* === Mobile === */
@media only screen and (max-width: 767px) {
  .headerContainer-gQFSL9l6 {
    padding: 25px 15px 18px 18px;
  }
  .headerContainer-gQFSL9l6 .sunriseLogo-KEdQLLNr svg {
    height: 24px;
    width: 107px;
  }
  .sunriseHdrPlume-3swWwmKP svg {
    height: 25px;
    width: 97px;
  }
  .signLbl {
    display:none;
  }
  .layout.theme-promo-sunrise {
    padding: 72px 0 0 0;
  }
  .sunrisebag-2jJFU_gP {
    display: inline-block;
    vertical-align: top;
  }
  #bag {
    margin-left: 10px;
    margin-right:10px;
  }
}


/* === desktop === */
@media only screen and (min-width: 768px) {
  .headerContainer-gQFSL9l6 {
    padding: 29px 15px 24px;
  }
  .sunriseHdrPlume-3swWwmKP svg {
    height: 32px;
    width: 120px;
  }
  .layout.theme-promo-sunrise {
    padding: 89px 0 0 0;
  }
  .sunriseHdrPlume-3swWwmKP {
    margin-right: 25px;
  }
  .sunrisebag-2jJFU_gP {
    display: inline-block;
    vertical-align: top;
  }
}




/* === Common === */
.sunriseFooter-1YG3-RwQ {
  background: #95223d;
  color: #fff;
  float: left;
  width: 100%;
}
.footerSocial-1ilfFmQu ul li {
  list-style: none;
  display: inline-block;
  margin: 0 23px 0 0;
}
.footerSocial-1ilfFmQu ul {
  margin: 0;
  padding: 0;
  text-align: right;
}
.footerSocial-1ilfFmQu ul li:last-child {
  margin: 0;
}
.footerSocial-1ilfFmQu ul li svg {
  height: 32px;
  width: 32px;
}
.footerSocial-1ilfFmQu ul li a {
  display: block;
}
.footerLegal-1ERfyI0g {
  color: #fff;
  text-decoration: none;
}
.footerWrapper-2RJAS3ex {
  float: left;
  position: relative;
  width: 100%;
}
.footerLogos-2Pf6QiCD a {
  display: inline-block;
  vertical-align: middle;
}
.footerLogoSunrise-2SZc6bx7 {
  height: 20px;
  width: 90px;
  pointer-events: none;
}
.footerLogoPlume-39VyUjdp {
  height: 30px;
  width: 107px;
  pointer-events: none;
}
.sunriseTrademarks-MI-1X5yt h3 {
  font-size: 21px;
  font-weight: 500;
}
.footerCopyright-EiX_1j7G p {
  margin: 0;
}
.theme-promo-sunrise #stickyCookie {
  float: left;
  width: 100%;
  max-width: 100%;
}
.theme-promo-sunrise #stickyStack {
  position: static;
}

/* === Mobile small === */
@media only screen and (max-width: 374px)  {
  .sunrise-footer-icons-3XOq1Flg li {
    margin-right: 15px;
  }
}


/* === Mobile === */
@media only screen and (max-width: 767px) {
  .footerContainer---QI05UB {
    float: left;
    padding: 0 17px 0 16px;
    width: 100%;
  }
  .sunriseFooter-1YG3-RwQ {
    padding: 45px 0 56px;
  }
  .sunriseTrademarks-MI-1X5yt h3 {
    margin: 20px 0 0 0;
    padding: 0;
  }
  .sunriseTrademarks-MI-1X5yt p {
    margin: 0;
    padding: 4px 0 23px;
    line-height: 18px;
  }
  .footerLegal-1ERfyI0g {
    vertical-align: middle;
  }
  .footerSocial-1ilfFmQu {
    float: right;
  }
  .footerRHS-3657U4O2 {
    padding: 0 0 34px;
  }
  .footerRHS-3657U4O2, .footerLHS-1az6X-EZ {
    float: right;
    width: 100%;
  }
  .sunriseTrademarks-MI-1X5yt {
    padding: 22px 0 0;
  }
  .footerLogoSunrise-2SZc6bx7 {
    margin: 0 18px 0 0;
  }
  .footerLegal-1ERfyI0g {
    float: left;
    width: 50%;
  }
}

/* === desktop === */
@media only screen and (min-width: 768px) {
  .footerContainer---QI05UB {
    display: block;
    margin: 0 auto;
    max-width: 966px;
    width: 100%;
  }
  .sunriseFooter-1YG3-RwQ {
    padding: 60px 0 60px;
  }
  .footerWrapper-2RJAS3ex {
    padding: 0 15px;
  }
  .footerRHS-3657U4O2 {
    text-align: right;
    float: right;
    width: 49%;
  }
  .footerLHS-1az6X-EZ {
    float: left;
    width: 51%;
  }
  .footerSocial-1ilfFmQu {
    position: absolute;
    right: 0;
    bottom: 15px;
  }
  .sunriseTrademarks-MI-1X5yt h3 {
    margin: 27px 0 4px 0;
    padding: 0
  }
  .sunriseTrademarks-MI-1X5yt p {
    line-height: 19px;
    margin: 0 0 11px;
    padding: 0;
  }
  .footerLogoSunrise-2SZc6bx7 {
    margin: 0 30px 0 0;
  }
  .footerCopyright-EiX_1j7G {
    padding: 17px 0 0 0;
  }
}


.navigation-mobile-A6h0IxeE {
  background: var(--navigation-background-color);
  position: fixed;
  top: 0;
  height: 70px;
  width: 100%;
  z-index: 13;
  border-bottom: 1px solid #eaeaea;
}

.navigation-mobile-checkout-1Oh45n5X {
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: flex-start;
  border-bottom: 0;
}

.navigation-mobile-checkout-1Oh45n5X .navigation-mobile-content-17kxr5B4 {
  width: 100%;
}

.navigation-mobile-checkout-1Oh45n5X .brand-2PBEqsMt {
  position: relative;
  width: 35px;
  height: 30px;
  overflow: hidden;
}

.navigation-mobile-checkout-1Oh45n5X .brand-2PBEqsMt a {
  position: absolute;
  top: 0;
  left: 0;
}

.navigation-mobile-checkout-1Oh45n5X .brand-2PBEqsMt a svg {
  height: 30px;
  margin-left: -15px;
  font-size: 16px;
}

.navigation-mobile-checkout-1Oh45n5X .brand-small-hbynUYoE a svg {
  margin: 0;
}

.navigation-checkout-title-1Yny4RxS {
  font-size: 14px;
  margin-top: 4px;
  margin-left: 8px;
  text-transform: uppercase;
  color: #191941;
}

.navigation-mobile-content-17kxr5B4 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 0 20px 0 24px;
}
.brand-2PBEqsMt svg {
  width: 136px;
}

.navigation-mobile-trigger-3RTVHUrG {
  height: 80px;
  width: 50px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.mobile-nav-userActions-28-m7I0c {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  width: 50px;
}

.actions-2XmvNyu- {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.mobile-nav-menu-2YKu9E4F {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  height: 0;
  max-height: none;
  width: 100%;
  overflow: hidden;
  z-index: 1;
  background: var(--navigation-background-color);
  -webkit-transition: background .44s .2s cubic-bezier(0.52, 0.16, 0.24, 1), height .6s cubic-bezier(0.52, 0.16, 0.24, 1);
  transition: background .44s .2s cubic-bezier(0.52, 0.16, 0.24, 1), height .6s cubic-bezier(0.52, 0.16, 0.24, 1);
}

.mobile-nav-menu-2YKu9E4F.active-37BD42-E {
  height: 100%;
  background: #fdfdfd;
  -webkit-transition: background .36s cubic-bezier(0.32, 0.08, 0.24, 1), height .6s cubic-bezier(0.52, 0.16, 0.24, 1);
  transition: background .36s cubic-bezier(0.32, 0.08, 0.24, 1), height .6s cubic-bezier(0.52, 0.16, 0.24, 1);

}

.mobile-nav-conntent-D02nZbxo {
  overflow-y: auto;
  height: 100%;
  padding-top: 40px;
  padding-bottom: 100px;
}

.mobile-nav-head-2ogX9pdS {
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 30px;
}

.close-mobile-drEzMXyw {
  height: 80px;
  width: 50px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.close-mobile-drEzMXyw svg {
  width: 22px;
  height: 22px;
}

.btn-shadow-3zP0vAjK {
  box-shadow: -6px 4px 10px 0 rgba(98, 105, 255, 0.2);
}

.primary-nav-26t9lWjd {
  list-style: none;
  margin: 0 30px;
  padding: 0;
}

.primary-nav-26t9lWjd li {
  margin-bottom: 40px;
}

.primary-nav-26t9lWjd li:last-child {
  border-bottom: 1px solid #e5e5e5;
}

.primary-nav-26t9lWjd li a {
  color: var(--navigation-text-color);
  font-size: 18px;
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 3px;
}
.navigation-sign-in-mob-1DXpzreY {
  display: block;
}
.clip-text-LS_OPBxI {
  clip-path: inset(100%);
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px;
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
}
.navigation-sign-in-mob-1DXpzreY svg {
  height: 20px;
  width: 20px;
  margin: -5px 11px 0 0;
  overflow: visible;
}



@media(max-width: 992px) {
  html.footer-active .header-main {
    z-index: 12;
  }
  .actionwrap-3iWCh5T2{
    display: flex;
    align-items: center;
  }
  .action-container-1ruYRWKN {
    display: flex;
  }
  .footer-active .hdr-action svg path {
    fill: currentColor;
    color: var(--secondary-background-color);
  }
  .navigation-sign-in .mob-clip {
    clip-path: inset(100%);
    clip: rect(1px, 1px, 1px, 1px);
    width: 1px;
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
  }
  .navigation-sign-in svg {
    height: 20px;
    overflow: visible;
    width: 20px;
  }
  .footer-active .mobile-logo-up svg g {
    fill: currentColor;
    color: var(--secondary-background-color);
  }
  .footer-active .navigation-sign-in svg circle {
    stroke: var(--secondary-background-color);
  }
  .footer-active .navigation-sign-in svg path {
    fill: currentColor;
    color: var(--secondary-background-color);
  }
  .footer-active .navigation-sign-in svg use {
    fill: currentColor;
    color: var(--footer-background-color);
  }
  .footer-active .navigation-sign-in svg mask {
    fill: currentColor;
    color: var(--footer-background-color);
  }
  .footer-active .navigation-sign-in svg mask use {
    fill: currentColor;
    color: var(--secondary-background-color);
  }



}

@media(max-width: 760px) {
  .primary-nav-26t9lWjd li a {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  .mobile-clip-NZRORkeD {
    clip-path: inset(100%);
    clip: rect(1px, 1px, 1px, 1px);
    width: 1px;
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
  }
  .primary-nav-26t9lWjd svg {
    height: 12px;
    width: 12px;
  }

  .primary-nav-26t9lWjd svg path {
    stroke-width: 1px;
  }
}

/* Nav items transitions */

.primary-nav-26t9lWjd li,
.secondary-nav-3HD_BNdm li,
.nav-social-links-3fZnTTJW,
.newsletter-1WRoIjj6,
.nav-trademarks-text-Nx66D1xM,
.nav-copyright-3m4HShXo {
  opacity: 0;
}

.mobile-nav-menu-2YKu9E4F.active-37BD42-E .primary-nav-26t9lWjd li,
.mobile-nav-menu-2YKu9E4F.active-37BD42-E .secondary-nav-3HD_BNdm li,
.mobile-nav-menu-2YKu9E4F.active-37BD42-E .nav-social-links-3fZnTTJW,
.mobile-nav-menu-2YKu9E4F.active-37BD42-E .newsletter-1WRoIjj6,
.mobile-nav-menu-2YKu9E4F.active-37BD42-E .nav-trademarks-text-Nx66D1xM,
.mobile-nav-menu-2YKu9E4F.active-37BD42-E .nav-copyright-3m4HShXo {
  opacity: 1;
  transform: translateY(0);
}

.primary-nav-26t9lWjd li:nth-child(1) {
  -webkit-transform: translateY(-32px);
  transform: translateY(-32px);
  transition: opacity .34577s cubic-bezier(0.32, 0.08, 0.24, 1) .03s,
              transform .39692s cubic-bezier(0.32, 0.08, 0.24, 1) .02s,
              -webkit-transform .39692s cubic-bezier(0.32, 0.08, 0.24, 1) .02s;
}

.primary-nav-26t9lWjd li:nth-child(2) {
  -webkit-transform: translateY(-30px);
  transform: translateY(-30px);
  transition: opacity .34577s cubic-bezier(0.32, 0.08, 0.24, 1) .05s,
              transform .39692s cubic-bezier(0.32, 0.08, 0.24, 1) .04s,
              -webkit-transform .39692s cubic-bezier(0.32, 0.08, 0.24, 1) .04s;
}

.primary-nav-26t9lWjd li:nth-child(3) {
  -webkit-transform: translateY(-28px);
  transform: translateY(-28px);
  transition: opacity .34577s cubic-bezier(0.32, 0.08, 0.24, 1) .07s,
              transform .39692s cubic-bezier(0.32, 0.08, 0.24, 1) .06s,
              -webkit-transform .39692s cubic-bezier(0.32, 0.08, 0.24, 1) .06s;
}

.primary-nav-26t9lWjd li:nth-child(4) {
  -webkit-transform: translateY(-26px);
  transform: translateY(-26px);
  transition: opacity .34577s cubic-bezier(0.32, 0.08, 0.24, 1) .09s,
              transform .39692s cubic-bezier(0.32, 0.08, 0.24, 1) .08s,
              -webkit-transform .39692s cubic-bezier(0.32, 0.08, 0.24, 1) .08s;
}

.secondary-nav-3HD_BNdm li:nth-child(1) {
  -webkit-transform: translateY(-24px);
  transform: translateY(-24px);
  transition: opacity .34577s cubic-bezier(0.32, 0.08, 0.24, 1) .11s,
              transform .39692s cubic-bezier(0.32, 0.08, 0.24, 1) .10s,
              -webkit-transform .39692s cubic-bezier(0.32, 0.08, 0.24, 1) .10s;
}

.secondary-nav-3HD_BNdm li:nth-child(2) {
  -webkit-transform: translateY(-22px);
  transform: translateY(-22px);
  transition: opacity .34577s cubic-bezier(0.32, 0.08, 0.24, 1) .13s,
              transform .39692s cubic-bezier(0.32, 0.08, 0.24, 1) .12s,
              -webkit-transform .39692s cubic-bezier(0.32, 0.08, 0.24, 1) .12s;
}

.secondary-nav-3HD_BNdm li:nth-child(3) {
  -webkit-transform: translateY(-20px);
  transform: translateY(-20px);
  transition: opacity .34577s cubic-bezier(0.32, 0.08, 0.24, 1) .15s,
              transform .39692s cubic-bezier(0.32, 0.08, 0.24, 1) .14s,
              -webkit-transform .39692s cubic-bezier(0.32, 0.08, 0.24, 1) .14s;
}

.secondary-nav-3HD_BNdm li:nth-child(3) {
  -webkit-transform: translateY(-18px);
  transform: translateY(-18px);
  transition: opacity .34577s cubic-bezier(0.32, 0.08, 0.24, 1) .17s,
              transform .39692s cubic-bezier(0.32, 0.08, 0.24, 1) .16s,
              -webkit-transform .39692s cubic-bezier(0.32, 0.08, 0.24, 1) .16s;
}

.secondary-nav-3HD_BNdm li:nth-child(4) {
  -webkit-transform: translateY(-16px);
  transform: translateY(-16px);
  transition: opacity .34577s cubic-bezier(0.32, 0.08, 0.24, 1) .19s,
              transform .39692s cubic-bezier(0.32, 0.08, 0.24, 1) .18s,
              -webkit-transform .39692s cubic-bezier(0.32, 0.08, 0.24, 1) .18s;
}

.secondary-nav-3HD_BNdm li:nth-child(5) {
  -webkit-transform: translateY(-14px);
  transform: translateY(-14px);
  transition: opacity .34577s cubic-bezier(0.32, 0.08, 0.24, 1) .21s,
              transform .39692s cubic-bezier(0.32, 0.08, 0.24, 1) .2s,
              -webkit-transform .39692s cubic-bezier(0.32, 0.08, 0.24, 1) .2s;
}

.secondary-nav-3HD_BNdm li:nth-child(6) {
  -webkit-transform: translateY(-12px);
  transform: translateY(-12px);
  transition: opacity .34577s cubic-bezier(0.32, 0.08, 0.24, 1) .23s,
              transform .39692s cubic-bezier(0.32, 0.08, 0.24, 1) .22s,
              -webkit-transform .39692s cubic-bezier(0.32, 0.08, 0.24, 1) .22s;
}

.secondary-nav-3HD_BNdm li:nth-child(7) {
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
  transition: opacity .34577s cubic-bezier(0.32, 0.08, 0.24, 1) .25s,
              transform .39692s cubic-bezier(0.32, 0.08, 0.24, 1) .24s,
              -webkit-transform .39692s cubic-bezier(0.32, 0.08, 0.24, 1) .24s;
}

.mobile-nav-menu-2YKu9E4F .nav-social-links-3fZnTTJW {
  -webkit-transform: translateY(-8px);
  transform: translateY(-8px);
  transition: opacity .34577s cubic-bezier(0.32, 0.08, 0.24, 1) .27s,
              transform .39692s cubic-bezier(0.32, 0.08, 0.24, 1) .26s,
              -webkit-transform .39692s cubic-bezier(0.32, 0.08, 0.24, 1) .26s;
}

.mobile-nav-menu-2YKu9E4F .newsletter-1WRoIjj6 {
  -webkit-transform: translateY(-6px);
  transform: translateY(-6px);
  transition: opacity .34577s cubic-bezier(0.32, 0.08, 0.24, 1) .29s,
              transform .39692s cubic-bezier(0.32, 0.08, 0.24, 1) .28s,
              -webkit-transform .39692s cubic-bezier(0.32, 0.08, 0.24, 1) .28s;
}

.mobile-nav-menu-2YKu9E4F .nav-trademarks-text-Nx66D1xM {
  -webkit-transform: translateY(-4px);
  transform: translateY(-4px);
  transition: opacity .34577s cubic-bezier(0.32, 0.08, 0.24, 1) .31s,
              transform .39692s cubic-bezier(0.32, 0.08, 0.24, 1) .3s,
              -webkit-transform .39692s cubic-bezier(0.32, 0.08, 0.24, 1) .3s;
}

.mobile-nav-menu-2YKu9E4F .nav-copyright-3m4HShXo {
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  transition: opacity .34577s cubic-bezier(0.32, 0.08, 0.24, 1) .33s,
              transform .39692s cubic-bezier(0.32, 0.08, 0.24, 1) .32s,
              -webkit-transform .39692s cubic-bezier(0.32, 0.08, 0.24, 1) .32s;
}

/* END nav items transitions */

.btn-shadow-3zP0vAjK {
  margin-top: 5px;
  margin-bottom: 45px;
  max-width: 100%;
  width: 100%;
}

.secondary-nav-3HD_BNdm {
  list-style: none;
  margin: 0 30px;
  padding: 0;
}

.secondary-nav-3HD_BNdm li {
  padding-top: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid #e5e5e5;
}

.secondary-nav-3HD_BNdm li a {
  color: var(--navigation-text-color);
  font-size: 18px;
  font-weight: 500;
}

.nav-partner-with-plume-1VGK_kgi {
  color: var(--tertiary-text-color);
}

.mobile-nav-footer-1vYVZ8E- {
  text-align: center;
  margin: 43px 20px 35px;
}

.nav-social-links-3fZnTTJW {
  display: flex;
  justify-content: center;
}

.nav-social-links-3fZnTTJW a {
  margin-left: 23px;
  margin-right: 23px;
}

.nav-social-links-3fZnTTJW img {
  height: 30px;
  width: 30px;
}

.newsletter-1WRoIjj6 {
  position: relative;
  margin-top: 40px;
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
  min-height: 65px;
  max-width: 360px;
}

.nav-trademarks-text-Nx66D1xM {
  color: var(--footer-primary-text-color);
  font-size: 11px;
  padding-bottom: 20px;
  max-width: 500px;
  margin: auto;
}

.nav-copyright-3m4HShXo {
  color: var(--footer-primary-text-color);
  font-size: 14px;
}

.navigation-mobile-back-g1ImDrUY {
  font-size: 14px;
  font-weight: 500;
  color: var(--primary-text-color);
  cursor: pointer;
  padding-top: 1px;
  padding-left: 10px;
}

.extras-3h4B-PLJ {

}


.formField-2qeXk8Wj {
  margin-bottom: 28px;
}

.firstName-2NP6C4Ie {
  width: 49%;
}

.lastName-Hw5dBBUN {
  width: 49%;
}

.workPhone-1c8nD0-u {
  width: 100%;
}

@media screen and (max-width: 760px) {
  .firstName-2NP6C4Ie,
  .lastName-Hw5dBBUN {
    width: 100%;
  }
}

.dashboardContactInfo-clbb1AqE {
}

.dashboardContactInfoContent-3OfBVMvK {
  margin: 0 auto 60px;
  width: var(--content-width);
}

.contactInfoLoaderInline-3EvFlDL3 img {
  display: inline-block;
  margin-top: 12px;
}

@media screen and (max-width: 760px) {
  .dashboardContactInfo-clbb1AqE {
    margin: 30px 0;
  }
}

.magic-link-form-1Wy3JdZ3 {
  padding-top: 76px;
  padding-bottom: 140px;
  padding-left: 70px;
  padding-right: 70px;
  width: 100%;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.magic-link-sent .magic-link-form-1Wy3JdZ3 {
  padding-top: 61px;
  padding-bottom: 188px;
}

.magic-link-form-1Wy3JdZ3 .input-text-with-loader-label-1fPtM-j4 {
  font-size: 12px;
  line-height: 12px;
  letter-spacing: 1px;
}

@media (max-width: 992px) {
  .magic-link-form-1Wy3JdZ3 {
    margin-top: 80px;
    padding: 0 20px 80px 20px;
  }
}

@media (max-width: 760px) {
  .magic-link-form-1Wy3JdZ3 {
    margin-top: 50px;
  }
}

.magic-link-title-3uIM7q68 {
  font-size: 36px;
  font-weight: 500;
  line-height: 43px;
  color: var(--primary-text-color);
  margin-bottom: 76px;
  text-align: center;
}

.magic-link-sent .magic-link-title-3uIM7q68 {
  margin-bottom: 26px;
}

.magic-link-subtitle-qwFf8teX {
  margin-top: -60px;
  margin-bottom: 50px;
  font-size: 18px;
  line-height: 1.44;
  color: var(--secondary-text-color);
  text-align: center;
}

.magic-link-title-3uIM7q68.slide-up-1dg_Q7bm {
  opacity: 0;
  -webkit-animation: slideUp-12D2aL0Z .6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s forwards;
  -moz-animation: slideUp-12D2aL0Z .6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s forwards;
  -ms-animation: slideUp-12D2aL0Z .6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s forwards;
  -o-animation: slideUp-12D2aL0Z .6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s forwards;
  animation: slideUp-12D2aL0Z .6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s forwards;
}

.magic-link-field-email-3C2HPm1w {
  position: relative;
  width: 100%;
  padding: 0 30px;
}

@media (max-width: 760px) {
  .magic-link-field-email-3C2HPm1w {
    margin-left: auto;
    margin-right: auto;
  }
}

.magic-link-field-email-3C2HPm1w.slide-up-1dg_Q7bm {
  opacity: 0;
  -webkit-animation: slideUp-12D2aL0Z .6s cubic-bezier(0.215, 0.61, 0.355, 1) .4s forwards;
  -moz-animation: slideUp-12D2aL0Z .6s cubic-bezier(0.215, 0.61, 0.355, 1) .4s forwards;
  -ms-animation: slideUp-12D2aL0Z .6s cubic-bezier(0.215, 0.61, 0.355, 1) .4s forwards;
  -o-animation: slideUp-12D2aL0Z .6s cubic-bezier(0.215, 0.61, 0.355, 1) .4s forwards;
  animation: slideUp-12D2aL0Z .6s cubic-bezier(0.215, 0.61, 0.355, 1) .4s forwards;
}

@keyframes slideUp-12D2aL0Z {
  from { opacity: 0; transform: translateY(20px); }
  to  { opacity: 1; transform: translateY(0); }
}

@-moz-keyframes slideUp-12D2aL0Z {
  from { opacity: 0; -moz-transform: translateY(20px); }
  to   { opacity: 1; -moz-transform: translateY(0); }
}

@-webkit-keyframes slideUp-12D2aL0Z {
  from { opacity: 0; -webkit-transform: translateY(20px); }
  to   { opacity: 1; -webkit-transform: translateY(0); }
}

@-ms-keyframes slideUp-12D2aL0Z {
  from { opacity: 0; -ms-transform: translateY(20px); }
  to   { opacity: 1; -ms-transform: translateY(0); }
}

@-o-keyframes slideUp-12D2aL0Z {
  from { opacity: 0; -o-transform: translateY(20px); }
  to   { opacity: 1; -o-transform: translateY(0); }
}

.magic-link-field-error-zWIhQ0Ml {
  position: absolute;
  top: 50px;
  left: 22px;
  color: var(--color-error);
  font-size: 12px;
  line-height: 16px;
  margin: 5px 0 0;
}

.magic-link-form-actions-2Db7TCfT {
  padding: 76px 70px 10px;
}

.magic-link-form-button-1FXodsUc {
  display: block;
  font-size: 16px;
  padding: 16px 30px 15px;
  width: 100%;
  box-shadow: -2px 1px 6px 0 rgba(98,105,255,0.2);
}

@media (max-width: 992px) {
  .magic-link-form-1Wy3JdZ3 {
    margin-top: 0;
    padding: 67px 22px 100px;
  }
  .magic-link-title-3uIM7q68 {
    font-size: 24px;
    max-width: 100%;
    text-align: center;
    line-height: 24px;
    margin-bottom: 45px;
  }
  .magic-link-field-email-3C2HPm1w {
    position: relative;
    width: 100%;
    padding: 0 0;
    margin: 0 auto;
    max-width: 286px;
  }
  .magic-link-form-actions-2Db7TCfT {
    padding: 31px 0 10px;
  }
  .magic-link-form-button-1FXodsUc {
    max-width: 286px;
    margin: 0 auto;
    line-height: 16px;
    letter-spacing: 0.3px;
    border-radius: 25px;
    padding: 16px 30px;
  }
  .magic-link-sent .magic-link-form-1Wy3JdZ3 {
    padding-top: 30px;
    padding-bottom: 141px;
  }
  .magic-link-sent .magic-link-title-3uIM7q68 {
    margin-bottom: 35px;
  }
}

.formField-1ZIOtAJd {
  margin-bottom: 28px;
}

form {
  width: 100%;
}

/* gap between fields in desktop is 2% */

.address-sYaWXjTT {
  width: 100%;
}

.town-3EgufYJy {
  width: 38%;
}

.city-2Rh7N6uk {
  width: 38%;
}

.postalCode-qFDwNu2y {
  width: 20%;
}

/* gap between fields in mobile is 4% */

@media screen and (max-width: 760px) {
  .address-sYaWXjTT {
    width: 100%;
  }

  .town-3EgufYJy {
    width: 100%;
  }

  .city-2Rh7N6uk {
    width: 48%;
  }

  .postalCode-qFDwNu2y {
    width: 48%;
  }
}

/* gap between fields in desktop is 2% */

.address-2cIMaQvz {
  width: 68%;
}

.apt-1lY-ZXAp {
  width: 30%;
}

.city-3THRfKpV {
  width: 56%;
}

.postalCode-hwPfmPBB {
  width: 20%;
}

.state-1fzBGXzd {
  width: 20%;
}

/* gap between fields in mobile is 4% */

@media screen and (max-width: 760px) {
  .address-2cIMaQvz {
    width: 100%;
  }

  .apt-1lY-ZXAp {
    width: 100%;
  }

  .city-3THRfKpV {
    width: 100%;
  }

  .postalCode-hwPfmPBB {
    width: 48%;
  }

  .state-1fzBGXzd {
    width: 48%;
  }
}

.dashboardAddresses-1_bPcxR8 {
}

.dashboardAddressesContent-3lqa4fje {
  margin: 0 auto 60px;
  width: var(--content-width);
}

.notDefault-1PCQrCw4 {
  padding-top: 26px;
}

.cardFadeOut-2_eLGlLk {
  opacity: 0;
}

.card-EEBIDVGf {
  width: 33.33%;
  padding-right: 20px;
  color: var(--color-darker-grey);
}

@media screen and (max-width: 992px) {
  .card-EEBIDVGf {
    width: 50%;
  }
}

@media screen and (max-width: 760px) {
  .dashboardAddresses-1_bPcxR8 {
    margin: 30px 0 0 0;
  }
  .card-EEBIDVGf {
    width: 100%;
  }
}

.zuoraPayment-2lmfrMLZ {
  min-height: 263px;
}

.input-checkbox-2g7_3Mws {
  overflow: hidden;
  position: relative;
  height: 20px;
  line-height: 22px;
  margin-bottom: 20px;
}

.input-checkbox-2g7_3Mws input[type='checkbox'] {
  position: absolute;
  left: -9999px;
}

.input-checkbox-2g7_3Mws input[type='checkbox']:disabled + .input-checkbox-checkmark-1gyeCGN3 {
  opacity: 0.2;
}

.input-checkbox-checkmark-1gyeCGN3 {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: solid 2px var(--secondary-text-color);
  border-radius: 2px;
  background-color: var(--primary-backgroud-color);
  margin: 0 8px 0 0;
  vertical-align: top;
  cursor: pointer;
}

.input-checkbox-label-1DuwXowq {
  display: inline-block;
  font-size: 15px;
  font-weight: 400;
  color: var(--secondary-text-color);
  cursor: pointer;
  user-select: none;
}

.input-checkbox-checkmark-active-3gTmv-HE {
  background-color: var(--tertiary-text-color);
  border: solid 2px var(--tertiary-text-color);
}

.theme-promo-sunrise .input-checkbox-checkmark-active-3gTmv-HE {
  background-color: #e6003c;;
  border-color: #e6003c;
}

.checkmarkIcon-37a04NH8 {
  height: 1em;
  width: auto;
}
.theme-promo-sunrise .checkmarkIcon-37a04NH8 {
  height: 30px;
  width: 30px;
  margin-top: -7px;
  margin-left: -7px;
}

.creditCard-2_omfpJS {
  width: calc(33.33% - 10px);
  margin-bottom: 10px;
  border-radius: 10px;
  border: solid 1px #c6c6c6;
  margin-right: 10px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 30px 30px 15px 30px;
  height: 150px;
}

@media screen and (max-width: 760px) {
  .creditCard-2_omfpJS {
    width: 100%;
    margin-right: 0;
    height: 180px;
  }
}

.creditCard-2_omfpJS.default-11B0gige {
  border: solid 2px #191941;
}

.cardInfoText-2Wb9LKcR {
  font-size: 18px;
  font-weight: 500;
  color: #3c396f;
  line-height: 1.4;
}

.isExpired-1zclu3xH .cardInfoText-2Wb9LKcR{
  color: #fa1478;
}

.cardBadge-1lerQ2Wi {
  width: auto;
  height: 24px;
}

.defaultLabel-YsaWnnWY {
  font-size: 14px;
  color: #939597;
}

.action-2l9UnENw {
  font-size: 14px;
  color: #6269ff;
  cursor: pointer;
}

.delete-3DigQZEu {
  font-size: 14px;
  color: #fa1478;
  margin-left: auto;
  cursor: pointer;
}

.cardInfo-OTkHlP2c {
  display: flex;
  justify-content: space-between;
}

.footer-ll7cPK2O {
  display: flex;
  justify-content: space-between;
}

.dashboardPaymentMethods-1jY5Vh-D {
}

.dashboardPaymentMethodsContent-W2uWhh4L {
  margin: 0 auto;
  width: var(--content-width);
}

.notDefault-26EATwG1 {
  padding-top: 26px;
}

.cardFadeOut-31GfEOr6 {
  opacity: 0;
}

.card-2ip3s_7E {
  width: 33.33%;
  padding-right: 20px;
  color: var(--color-darker-grey);
}

@media screen and (max-width: 760px) {
  .card-2ip3s_7E {
    width: 100%;
  }

  .dashboardPaymentMethods-1jY5Vh-D {
    margin: 30px 0 0 0;
  }
}

@media screen and (max-width: 992px) {
  .card-2ip3s_7E {
    width: 50%;
  }
}

h3.dashboard,
.dashboard-title h3 {
  font-family: var(--primary-font-family);
  font-size: 24px;
  line-height: 1em;
  font-weight: 500;
  font-style: normal;
  font-stretch: normal;
  letter-spacing: 0.5px;
  color: var(--primary-text-color);
  text-transform: uppercase;
  background: var(--secondary-background-color);
  margin-bottom: 28px;
}

h4.dashboard,
.dashboard-title h4 {
  font-family: var(--primary-font-family);
  font-size: 18px;
  line-height: 1em;
  font-weight: 500;
  font-style: normal;
  font-stretch: normal;
  letter-spacing: 0.5px;
  color: var(--primary-text-color);
  text-transform: uppercase;
  background: var(--secondary-background-color);
  margin-bottom: 4px;
  display: inline-block;
  padding-right: 1ex;
  position: relative;
}

.dashboard-subtitle {
  font-family: Wigrum;
  font-size: 18px;
  font-weight: 500;
  font-style: normal;
  font-stretch: normal;
  line-height: 26px;
  letter-spacing: normal;
  color: var(--primary-text-color);
}

.uppercase {
  text-transform: uppercase;
}

.dashboard-title {
  position: relative;
}

.dashboard-title:before {
  content: "";
  width: 100%;
  left: 0;
  height: 1px;
  background-color: var(--ui-light-gray);
  position: absolute;
  display: block;
  top: 20%;
}

.dashboard-title-no-edit:before {
  display: none;
}

.titleActionButton {
  position: relative;
  display: inline-block;
  float: right;
  text-transform: uppercase;
  padding-left: 1ex;
  z-index: 2;
  top: 4px;
  cursor: pointer;
  font-family: var(--primary-font-family);
  font-size: 13px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: 1em;
  letter-spacing: 1px;
  text-align: right;
  color: var(--highlight-color);
  background: var(--secondary-background-color);
}

.titleActionButtonSecondary {
  top: 0;
}

.dashboard-text {
  font-family: var(--primary-font-family);
  font-size: 18px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: 26px;
  letter-spacing: normal;
  color: var(--secondary-text-color);
}

.dashboard-notice {
  font-style: italic;
}

.dashboard-alert {
  color: var(--color-error);
}

.dashboard-action {
  cursor: pointer;
  font-family: var(--primary-font-family);
  font-size: 18px;
  font-weight: 500;
  font-style: normal;
  font-stretch: normal;
  line-height: 26px;
  letter-spacing: normal;
  color: var(--primary-text-color);
  display: inline-block;
  margin: 10px 1em 0 0;
  border-bottom: 1px solid var(--secondary-text-color);
}

.dashboard-noaction {
  height: 37px;
}


.dashboard-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  overflow-y: auto;
}

.dashboard-card-fade {
  -webkit-transition: opacity ease-in 750ms;
  -moz-transition: opacity ease-in 750ms;
  -ms-transition: opacity ease-in 750ms;
  -o-transition: opacity ease-in 750ms;
  transition: opacity ease-in 750ms;
}

.container-3raeUh4B {
  background-color: #ffffff;
  padding: 0 var(--padding-hor) 60px;
}

.spinner-l5mlKg-C {
  margin: 50px auto;
}

.notAvailable-ZZzl_D0u {
  margin: 50px auto;
  text-align: center;
}

.checkout-breadcrumbs-3riQ3X2- {
  position: fixed;
  width: 100%;
  max-width: 1440px;
  background: #f7f7ff;
  z-index: 3;
  opacity: 0;
}

@media (max-width: 992px) {
  .checkout-breadcrumbs-3riQ3X2- {
    opacity: 1;
  }
} 

.fade-in-2yZadyA_ {
  -webkit-animation: fadeIn-2ynJSml- .6s cubic-bezier(0.215, 0.61, 0.355, 1) .8s forwards;
  -moz-animation: fadeIn-2ynJSml- .6s cubic-bezier(0.215, 0.61, 0.355, 1) .8s forwards;
  -ms-animation: fadeIn-2ynJSml- .6s cubic-bezier(0.215, 0.61, 0.355, 1) .8s forwards;
  -o-animation: fadeIn-2ynJSml- .6s cubic-bezier(0.215, 0.61, 0.355, 1) .8s forwards;
  animation: fadeIn-2ynJSml- .6s cubic-bezier(0.215, 0.61, 0.355, 1) .8s forwards;
}

@media (max-width: 992px) {
  .fade-in-2yZadyA_ {
    -webkit-animation: fadeIn-2ynJSml- 0s forwards;
    -moz-animation: fadeIn-2ynJSml- 0s forwards;
    -ms-animation: fadeIn-2ynJSml- 0s forwards;
    -o-animation: fadeIn-2ynJSml- 0s forwards;
    animation: fadeIn-2ynJSml- 0s forwards;
  }
} 

@keyframes fadeIn-2ynJSml- {
  from { opacity: 0; }
  to { opacity: 1; }
}

.checkout-breadcrumbs-content-3ST8Asbt {
  width: 64%;
  display: flex;
  justify-content: flex-end;
}

.checkout-breadcrumbs-links-1xSNJQ9p {
  width: 780px;
  max-width: 100%;
  padding-left: 45px;
}

.checkout-breadcrumb-1AnoeYVQ {
  display: inline-block;
  vertical-align: top;
  height: 50px;
  line-height: 50px;
  font-size: 14px;
  font-weight: 400;
  margin-right: 40px;
  color: var(--secondary-text-color);
}

.checkout-breadcrumb-active-3SPl15Yt {
  font-weight: 500;
  color: var(--tertiary-text-color);
}

@media(max-width: 992px) {
  .checkout-breadcrumbs-3riQ3X2- {
    z-index: 7;
  }

  .checkout-breadcrumbs-content-3ST8Asbt {
    width: 100%;
  }

  .checkout-breadcrumbs-links-1xSNJQ9p {
    width: 100%;
    padding-left: 0;
  }

  .checkout-breadcrumbs-content-3ST8Asbt {
    padding: 0 60px;
  }
}

@media(max-width: 760px) {
  .checkout-breadcrumbs-content-3ST8Asbt {
    padding: 0 30px;
  }

  .checkout-breadcrumb-1AnoeYVQ {
    font-size: 12px;
    margin-right: 20px;
  }
}
.loadingIndicator-29HvEI8r  {
  display: inline-block;
  height: 30px;
  width: 100%;
  padding: 30px 0;
  vertical-align: top;
}

.loadingIndicator-29HvEI8r svg {
  height: 100%;
  width: 100%;
}

.PayWithCreditButton-XV0s4hK7 {
  width: 100%;
}
.formError-2VQzRKcA {
  outline: 1px solid var(--color-red);
  outline-offset: 1px;
}

.errorMessage-jgpD9_Pk {
  padding: 8px 0;
  font-size: 0.8em;
  color: var(--color-invalid);
}

.isProcessing-qnxfKICF {
  position: relative;
  text-indent: -99999px;
  display: block;
  pointer-events: none;
  outline: none;
  width: 100%;
}
.isProcessing-qnxfKICF::before {
  opacity: .6;
  content: ' ';
  position: absolute;
  width: 100%;
  height: 100%;
  animation-name: plumeSpinner-2cetzI6K;
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  -webkit-animation-name: plumeSpinner-2cetzI6K;
  -webkit-animation-duration: 1.5s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-name: plumeSpinner-2cetzI6K;
  -moz-animation-duration: 1.5s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  background: url('/plume-spinner.png') no-repeat center center;
  background-size: 32px;
  display: block;
  top: 0px;
  left: 0px;
  border: 0px none;
}

.CreditCardForm-3EiXku1f {
  position: relative;
  padding-bottom: 300px;
}

.BillingForm-1CM3MXHH {
  position: relative;
}

.CreditCardForm-3EiXku1f h4 {
  font-size: 20px;
  font-weight: 500;
  position: relative;
  margin-bottom: 29px;
  width: 100%;
  margin-top: 50px;
}

.CreditCardForm-3EiXku1f h4:after{
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  width: 100%;
  height: 1px;
  background-color: var(--color-light-grey);
  z-index: 1;
}

.CreditCardForm-3EiXku1f h4 span {
  background-color: #efefec;
  display: inline-block;
  padding-right: 10px;
  position: relative;
  z-index: 2;
}

.CreditCardFormMask-239ZPiGh {
  position: absolute;
  top: 90px;
  left: 0;
  font-family: 'Wigrum', Helvetica, Arial;
  font-size: 20px;
  font-weight: 400;
  width: 100%;
}

.CreditCardFormMask-239ZPiGh * {
  box-sizing: border-box;
}

.CreditCardFormMask_hidden-M7i315Qh {
  pointer-events: none;
  opacity: 0;
}

.CreditCardFormMask-239ZPiGh span {
  display: inline-block;
  height:37px;
  margin-top: 23px;
  margin-bottom: 10px;
  vertical-align: top;
}

.CreditCardFormMask-239ZPiGh span i {
  display: inline-block;
  height: 33px;
  line-height: 31px;
  width: 100%;
  max-width: 100%;
  background: white;
  vertical-align: top;
  font-style: normal;
  overflow: hidden;
  padding: 0 12px;
}

.CreditCardFormMask-239ZPiGh span.CreditCardFormMaskHolder-2kNseXLe {
  display: block;
  background: transparent;
}

.CreditCardFormMask-239ZPiGh span.CreditCardFormMaskHolder-2kNseXLe i {
  background: transparent;
}

.CreditCardFormMask-239ZPiGh span.CreditCardFormMaskNumber-3tClfnT7 {
  width: 50%;
  padding-right: 15px;
}

.CreditCardFormMaskMonthYear-1kmMpoZB {
  display: inline-block;
  vertical-align: top;
  width: calc(35% - 10px);
  overflow: hidden;
}

.CreditCardFormMaskMonthYear-1kmMpoZB span.CreditCardFormMaskMonth-3sJ4yejs {
  width: 48%;
  float: left;
}
.CreditCardFormMaskMonthYear-1kmMpoZB span.CreditCardFormMaskMonth-3sJ4yejs i {
  width: 97%;
}

.CreditCardFormMaskMonthYear-1kmMpoZB span.CreditCardFormMaskYear-1JKLm7db {
  width: 48%;
  float: right;
}
.CreditCardFormMaskMonthYear-1kmMpoZB span.CreditCardFormMaskYear-1JKLm7db i {
  float: right;
  width: 97%;
}

.CreditCardFormMask-239ZPiGh span.CreditCardFormMaskCcv-35Gogywd {
  padding-left: 10px;
  width: 15%;
}


@media screen and (max-width: 769px) {

  .CreditCardFormMask-239ZPiGh {
    padding: 0 15px;
  }

}

@media screen and (max-width: 525px), screen and (min-width: 769px) and (max-width: 860px) {
  .CreditCardFormMask-239ZPiGh span.CreditCardFormMaskNumber-3tClfnT7 {
    width: 100%;
    padding-right: 0;
  }

  .CreditCardFormMaskMonthYear-1kmMpoZB {
    width: 68.6%;
    padding-right: 20px;
  }

  .CreditCardFormMask-239ZPiGh span.CreditCardFormMaskCcv-35Gogywd {
    padding-left: 0;
    width: 31.3%;
  }
  .CreditCardFormMaskMonthYear-1kmMpoZB span.CreditCardFormMaskYear-1JKLm7db i {
    float: right;
    width: 91%;
  }


}

@media screen and (max-width: 769px) {
  .CreditCardForm-3EiXku1f {
    padding-bottom: 0px;
  }

  .CreditCardForm-3EiXku1f h4 {
    margin-top: 30px;
  }
}

@keyframes plumeSpinner-2cetzI6K {
  0% {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
  }
}
@-webkit-keyframes plumeSpinner-2cetzI6K {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@-moz-keyframes plumeSpinner-2cetzI6K {
  0% {
    -moz-transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(360deg);
  }
}
@media (max-width: 768px) {
  .CreditCardForm_container-3X6YY0nk {
    margin: 0 var(--width-margin);
  }

}
@media (max-width: 640px) {
  #zuora_payment iframe {
    height: 340px;
  }
}
@media(min-width:993px) and (max-width:1150px) {
  #zuora_payment iframe {
    height: 340px;
  }
}

#zuora_payment {
  min-height: 256px;
}

#zuora_payment iframe {
  background-color: transparent;
  width: 100%;
  min-height: 256px;
}

.CreditCardFormIcons-3-UG4BRS {
  display: inline-block;
  height: 24px;
  margin-left: auto;
  padding-right: 20px;
}

.CreditCardFormIcons-3-UG4BRS img {
  position: relative;
  margin-right: -15px;
}

.CreditCardFormIcons-3-UG4BRS img:nth-child(1) {
  z-index: 4;
}

.CreditCardFormIcons-3-UG4BRS img:nth-child(2) {
  z-index: 3;
}

.CreditCardFormIcons-3-UG4BRS img:nth-child(3) {
  z-index: 2;
}

.CreditCardFormIcons-3-UG4BRS img:nth-child(4) {
  z-index: 1;
}

.AutoRenewMembershipNotification-3_7IE3mc {
  font-size: 14px;
  font-style: italic;
  color: #8187F9;
  padding-left: 30px;
  margin-top: -10px;
  margin-bottom: 10px;
}

@media (max-width: 992px) {
  .CouponTitle-1pZ2UwAs {
    display: block;
  }

  #zuora_payment iframe {
    background-color: transparent;
  }
}

.autoRenewMembership-1y1VBIB2 {
  margin-bottom: 13px;
}

.billing-form-toggler-HlE9Jvw2 {
  margin: 0;
  line-height: 22px;
  height: 20px;
  color: #939597;
  margin-bottom: 32px;
  cursor: pointer;
}

.billing-form-toggler-HlE9Jvw2 > div {
  float: left;
}

.billing-form-toggler-checkbox-1rAKEt4- {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: solid 2px #c6c6c6;
  border-radius: 2px;
  background-color: #fff;
  margin: 3px 8px 0 0;
  vertical-align: top;
  cursor: pointer;
  position: relative;
}
.input-checkbox-label-3BrA8C6b {
  font-size: 15px;
  font-weight: 400;
  color: var(--secondary-text-color);
  cursor: pointer;
}
/*.billing-form-toggler-checkbox-active {*/
/*  background-color: var(--tertiary-text-color);*/
/*  border: solid 2px var(--tertiary-text-color);*/
/*}*/

/*.billing-form-toggler-checkbox svg {*/
/*  width: 16px;*/
/*  height: 16px;*/
/*}*/
.billing-form-toggler-checkbox-1rAKEt4- svg {
  position: absolute;
  top: 0;
  left: -7px;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 30px;
  height: 30px;
}
@media (max-width: 992px) {
  #billingFormToggler {
    margin-bottom: 18px;
  }
  #billingFormToggler span:not(.billing-form-toggler-HlE9Jvw2) {
    font-size: 12px;
    line-height: 18px;
    color: #939597;
  }
}

.billing-3HOr4Gmn {
  display: flex;
  justify-content: flex-end;
  opacity: 0;
}

.fade-in-3tRgoJCi {
  -webkit-animation: fadeIn-qHIiXDSX .6s cubic-bezier(0.215, 0.61, 0.355, 1) .8s forwards;
  -moz-animation: fadeIn-qHIiXDSX .6s cubic-bezier(0.215, 0.61, 0.355, 1) .8s forwards;
  -ms-animation: fadeIn-qHIiXDSX .6s cubic-bezier(0.215, 0.61, 0.355, 1) .8s forwards;
  -o-animation: fadeIn-qHIiXDSX .6s cubic-bezier(0.215, 0.61, 0.355, 1) .8s forwards;
  animation: fadeIn-qHIiXDSX .6s cubic-bezier(0.215, 0.61, 0.355, 1) .8s forwards;
}

@keyframes fadeIn-qHIiXDSX {
  from { opacity: 0; }
  to { opacity: 1; }
}

.legend-zhU8Aoo7 {
  text-transform: none;
  letter-spacing: normal;
}

.legend-zhU8Aoo7 svg {
  float: left;
  position: relative;
}

@media (min-width: 768px) {
  .legend-zhU8Aoo7 {
    font-size: 24px;
    top: 38px;
  }
  .legend-zhU8Aoo7 svg {
    margin-top: -5px;
    margin-right: 12px;
  }
}

.billing-content-1jVxasxx {
  max-width: 720px;
  width: 100%;
  padding: 0;
  margin: 0 auto;
}

.billing-credit-card-2x85CNlb {
  width: 100%;
  margin-bottom: 30px;
}

.billing-auto-renewal-terms-14inWmy5 {
  color: var(--highlight-color);
}

.billing-credit-card-method-21FZ0TdS {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  border: 1px solid #eaeaea;
  height: 80px;
  padding: 10px 80px 10px 50px;
  margin-bottom: 20px;
  background: white;
  border-radius: 45px;
  width: 100%;
}

.billing-credit-card-method-21FZ0TdS::after {
  content: "";
  display: block;
  position: absolute;
  left: 16px;
  height: 16px;
  width: 16px;
  background-color: white;
  z-index: 2;
  box-sizing: border-box;
  border-radius: 50%;
  border: 1px solid rgb(204, 204, 204);
  border-image: initial;
  cursor: pointer;
}

.billing-credit-card-method-active-mxMnCAKO::after {
  border: solid 4px #6269ff;
}

.billing-credit-card-method-active-mxMnCAKO {
  border: 1px solid var(--highlight-color);
  box-shadow: 0 2px 2px 0 #dbdbdb;
}

.billing-credit-card-method-label-1CZhxkPr {
  font-size: 18px;
  font-weight: 500;
  color: var(--primary-text-color);
  text-transform: capitalize;
}

.form-billing-3mXukDKY {
  background: white;
  margin-bottom: 0;
}

.error-message-fdVnPWlf {
  color: #fa1478;
}

.error-billing-39NuUQLq {
  color: #fa1478;
}
.legend-zhU8Aoo7 {
  text-transform: none;
  letter-spacing: normal;
}

.legend-zhU8Aoo7 svg {
  float: left;
  position: relative;
}

body[data-user-agent*="Win"] .legend-zhU8Aoo7 {
  line-height: 20px;
}
body[data-user-agent*="Win"] .theme-promo-sunrise .legend-zhU8Aoo7 {
  line-height: 17px;
}

@media (max-width: 992px) {
  .form-billing-3mXukDKY {
    margin-bottom: 0;
  }
  .form-billing-3mXukDKY .form-row-items-1 .form-field {
    margin-bottom: 0;
  }
  .checkout-container-inner-new fieldset legend {
    top: 0;
  }
  .legend-zhU8Aoo7 svg {
    top: -8px;
    margin-right: 12px;
  }
  .billing-content-1jVxasxx {
    max-width: 100%;
  }
}

@media (min-width: 993px) {
  .form-billing-3mXukDKY {
    margin-top: 54px;
  }
  .legend-zhU8Aoo7 {
    font-size: 24px;
    top: 38px;
  }
  .legend-zhU8Aoo7 svg {
    margin-top: -5px;
    margin-right: 12px;
  }
}

.input-text-with-loader-B9sZeyNg {
  position: relative;
}

.input-text-with-loader-B9sZeyNg input[type='text'] {
  display: block;
  width: 100%;
  height: 40px;
  border: 0;
  border-bottom: 2px solid var(--input-border-color);
  padding-right: 30px;
  font-size: 16px;
  font-weight: 500;
  color: var(--primary-text-color);
}

.input-text-with-loader-B9sZeyNg input[type='text']:focus {
  border-color: var(--highlight-color);
}
.input-text-hasError input[type='text'],
.input-text-hasError input[type='text']:focus {
  border-color: var(--color-error);
}

.input-text-Success input[type='text'],
.input-text-Success input[type='text']:focus {
  border-color: var(--color-success);
}
.input-text-with-loader-label-26sLQ8IZ {
  color: var(--secondary-text-color);
  display: block;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
}

.input-text-with-loader-state-icon-zfEmRv5D {
  position: absolute;
  top: 40%;
  right: 10px;
  width: 26px;
  height: 26px;
}

.input-text-with-loader-state-icon-zfEmRv5D svg {
  max-width: 26px;
  max-height: 26px;
  border-radius: 50%;
}

.input-text-error-iJxKM818 {
  color: var(--color-error);
  font-size: 12px;
}

.input-text-with-loader-label-26sLQ8IZ:after {
  content: ' (optional)';
  text-transform: none;
}

.input-text-with-loader-required-1KZp3fYm .input-text-with-loader-label-26sLQ8IZ:after {
  content: '';
}

.magic-link-field .input-text-error-iJxKM818 {
  color: var(--secondary-text-color);
}
@media (max-width: 992px) {
  .input-text-with-loader-state-icon-zfEmRv5D {
    display: none;
  }
}

.shipping-l8uw9BMD {
  display: flex;
  justify-content: flex-end;
  opacity: 0;
}

.fade-in-K1olfT72 {
  -webkit-animation: fadeIn-2FwPRRsN .6s cubic-bezier(0.215, 0.61, 0.355, 1) .8s forwards;
  -moz-animation: fadeIn-2FwPRRsN .6s cubic-bezier(0.215, 0.61, 0.355, 1) .8s forwards;
  -ms-animation: fadeIn-2FwPRRsN .6s cubic-bezier(0.215, 0.61, 0.355, 1) .8s forwards;
  -o-animation: fadeIn-2FwPRRsN .6s cubic-bezier(0.215, 0.61, 0.355, 1) .8s forwards;
  animation: fadeIn-2FwPRRsN .6s cubic-bezier(0.215, 0.61, 0.355, 1) .8s forwards;
}

@keyframes fadeIn-2FwPRRsN {
  from { opacity: 0; }
  to { opacity: 1; }
}

.shipping-content-z8k2iUfQ {
  max-width: 720px;
  width: 100%;
  padding: 0;
  margin: 0 auto;
}

.info-label-1yYinfcE {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--secondary-text-color);
  padding-left: 30px;
  width: 98%;
}

.info-label-link-3sV1I4pv {
  color: var(--highlight-color);
}

.form-info-Akp5nBqt {
  position: relative;
}

@media (max-width: 992px) {
  .checkout-container-inner-new .shipping-content-z8k2iUfQ fieldset {
    padding-top: 20px;
  }
  .checkout-container-inner-new .shipping-content-z8k2iUfQ .form-field {
    margin-bottom: 0;
  }
  .shipping-content-z8k2iUfQ {
    max-width: 100%;
  }
  .info-label-1yYinfcE {
    font-size: 12px;
    line-height: 1.8;
  }
  .theme-promo-sunrise .checkout-container-inner-new .shipping-content-z8k2iUfQ fieldset {
    padding-top: 5px;
    margin-bottom: 0;
  }
}

.sidebar-header-1MkH_EgS {
  margin: 0 40px 16px;
}
.sidebar-header-checkout-2uIBZXOV {
  margin-left: 40px;
  margin-right: 50px;
}

.sidebar-header-icon-1ZHGMvvP {
  height: 40px;
  margin-bottom: 12px;
}

.sidebar-header-icon-small-1Hhvms0t svg {
  width: 50px;
}

.sidebar-header-icon-medium-14nqPdzF svg {
  width: 105px;
}

.sidebar-header-icon-large-2FzB7v4p svg {
  width: 62px;
}

.sidebar-header-icon-1ZHGMvvP svg {
  max-height: 40px;
}

.sidebar-header-homeType-3N6Huk73 {
  font-size: 18px;
  font-weight: 500;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.44;
  color: #3c396f;
}

.checkout-sidebar-title-2060dVTZ {
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  color: #3c396f;
  overflow: hidden;
  margin-top: 35px;
}
.checkout-sidebar-title-success-2WPFGBpG {
  margin-left: 75px;
  margin-top: 0;
  margin-bottom: 25px;
}
.checkout-sidebar-title-2060dVTZ svg {
  margin-right: 4px;
  float: left;
  position: relative;
  top: -4px;
}
.checkout-sidebar-link-3qhlhvJB {
  color: #6269ff;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 1;
  text-decoration: none;
  float: right;
  margin-top: 4px;
  margin-right: 3px;
}
.successIcon-1qfslfDP img {
  max-width: 30px;
}

@media (max-width: 992px) {
  .successIcon-1qfslfDP {
    margin-top: -6px;
    padding-bottom: 6px;
  }
  .invoice-page .sidebar-header-1MkH_EgS {
    display: block;
    margin: 0 20px;
  }
  .checkout-page .sidebar-header-1MkH_EgS {
    margin: 0;
    background-color: #3c396f;
    padding: 16px 20px;
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    -webkit-transition: top 0.5s ease;
    transition: top 0.5s ease;
    z-index: 12;
  }
  .checkout-page .sidebar-header-1MkH_EgS .sidebar-back-button-3I3-OwSw {
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    line-height: normal;
    outline: none;
  }
  .order-summary-open .checkout-page .sidebar-header-1MkH_EgS {
    top: 80px;
  }
  .checkout-sidebar-title-success-2WPFGBpG {
    margin-left: 20px;
    margin-bottom: 10px;
  }
}
@media (min-width: 993px) {
  .successIcon-1qfslfDP {
    padding: 0 40px 10px;
  }
  .invoice-page .sidebar-header-1MkH_EgS {
    margin: 0 0 15px;
  }
}

.input-text-2R3m2csB {
  position: relative;
}

.input-text-2R3m2csB input[type='text'] {
  display: block;
  width: 100%;
  height: 40px;
  border: 0;
  border-bottom: 2px solid var(--button-outline-border-color);
  font-size: 18px;
  font-weight: 500;
  color: var(--primary-text-color);
  background-color: transparent;
  padding-left: 8px;
}
.checkout-container-new .input-text-2R3m2csB input[type='text'] {
  border-radius: 0;
}

.input-text-2R3m2csB input[readonly] {
  cursor: default;
}

.input-text-2R3m2csB input[type='text']:focus {
  border-color: var(--highlight-color);
}

.input-text-hasError-9IKRph1a input[type='text'],
.input-text-hasError-9IKRph1a input[type='text']:focus {
  border-color: var(--color-error);
}

.input-text-Success-EQczoHtS input[type='text'],
.input-text-Success-EQczoHtS input[type='text']:focus {
  border-color: var(--color-success);
}

.input-text-label-1Ytwo7PZ {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--secondary-text-color);
  display: block;
  text-transform: uppercase;
  padding-left: 6px;
}
.input-text-success-2kCMbHcI {
  color: var(--color-success);
  font-size: 12px;
}

.input-text-error-1sgDl3Eu {
  color: var(--color-error);
  font-size: 12px;
}

.input-text-label-1Ytwo7PZ:after {
  content: attr(data-content);
  text-transform: none;
}

.input-text-required-2vwtEcjz .input-text-label-1Ytwo7PZ:after {
  content: '';
}

.input-text-2R3m2csB label {
  position: relative;
}

@media (max-width: 992px) {
  .input-text-label-1Ytwo7PZ, .input-text-2R3m2csB input[type='text'] {
    padding-left: 0;
  }
}

.sidebar-footer-GZy6-fv4 {
  padding: 0 40px 40px;
}

.sidebar-footer-help-2bpfJCnn {
  margin-bottom: 40px;
  margin-left: 3px;
}

.sidebar-footer-help-2bpfJCnn svg {
  margin-left: 5px;
  margin-bottom: 2px;
}

.sidebar-footer-help-2bpfJCnn a {
  font-size: 16px;
  font-weight: 500;
  line-height: 23px;
  color: var(--primary-text-color);
}

.sidebar-footer-help-2bpfJCnn small {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.33;
  color: var(--secondary-text-color);
  margin-bottom: 2px;
}

.sidebar-footer-shipTo-1KygJj1g {
  margin-bottom: 40px;
}

.sidebar-footer-shipTo-1KygJj1g p {
  line-height: 20px;
}

.sidebar-footer-shipTo-1KygJj1g p strong {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.44;
  color: var(--primary-text-color);
  margin-top: 5px;
}

.sidebar-footer-shipTo-1KygJj1g small {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.33;
  color: var(--secondary-text-color);
}

.shippingInfo-2m3cGhTE {
  border-top: solid 1px var(--ui-light-gray);
  color: var(--primary-text-color);
}

.subTitle-1jSIPvs1 {
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
}

.subTitle-1jSIPvs1 svg {
  margin-right: 8px;
  float: left;
}

.shippingInfo-2m3cGhTE address {
  font-style: normal;
  padding: 10px 0;
  font-size: 16px;
  line-height: 22px;
}

@media (max-width: 992px) {
  .sidebar-footer-GZy6-fv4 {
    display: flex;
    justify-content: center;
    text-align: center;
    width: 100%;
    padding: 40px 20px 90px;
  }

  .sidebar-footer-GZy6-fv4:empty {
    display: none;
  }

  .sidebar-footer-help-2bpfJCnn svg {
    margin: 0 auto;
  }

  .sidebar-footer-shipTo-1KygJj1g {
    width: 100%;
    text-align: left;
    margin-left: 40px;
    margin-bottom: 20px;
  }
  .invoice-page .sidebar-footer-GZy6-fv4 {
    padding: 0 0 20px;
  }
  .shippingInfo-2m3cGhTE {
    padding: 30px 25px 20px 22px;
    text-align: left;
    margin: 0;
    width: 100%;
  }
}

@media (max-width: 760px) {
  .sidebar-footer-GZy6-fv4 {
    padding: 30px 20px 90px;
  }

  .sidebar-footer-ship-to-LKj2R56q {
    padding-bottom: 20px;
  }

  .sidebar-footer-shipTo-1KygJj1g {
    margin-left: 10px;
  }
}

@media (min-width: 993px) {
  .shippingInfo-2m3cGhTE {
    padding-top: 36px;
    margin: 0;
  }
  .checkout-page .sidebar-footer-GZy6-fv4 {
    padding-bottom: 0;
  }
  .invoice-page .sidebar-footer-GZy6-fv4 {
    padding-bottom: 135px;
  }
}

.shipping-3GaN9G8c {
  display: flex;
  justify-content: flex-end;
  opacity: 0;
}

.fade-in-3IOl_ugJ {
  -webkit-animation: fadeIn-3Gk88UcZ .6s cubic-bezier(0.215, 0.61, 0.355, 1) .8s forwards;
  -moz-animation: fadeIn-3Gk88UcZ .6s cubic-bezier(0.215, 0.61, 0.355, 1) .8s forwards;
  -ms-animation: fadeIn-3Gk88UcZ .6s cubic-bezier(0.215, 0.61, 0.355, 1) .8s forwards;
  -o-animation: fadeIn-3Gk88UcZ .6s cubic-bezier(0.215, 0.61, 0.355, 1) .8s forwards;
  animation: fadeIn-3Gk88UcZ .6s cubic-bezier(0.215, 0.61, 0.355, 1) .8s forwards;
}

.legend-3xN0fg5J {
  text-transform: none;
  letter-spacing: normal;
}

.legend-3xN0fg5J svg {
  float: left;
  position: relative;
}

@keyframes fadeIn-3Gk88UcZ {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.shipping-content-3YX7e2Hw {
  max-width: 720px;
  width: 100%;
  padding: 0;
  margin: 0 auto;
}

.info-label-114uBL5Y {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--secondary-text-color);
  padding-left: 30px;
  width: 98%;
}

.info-label-link-2358Es42 {
  color: var(--highlight-color);
}

.form-info-1ORM2J6f {
  position: relative;
}

body[data-user-agent*="Win"] .legend-3xN0fg5J {
  line-height: 20px;
}

@media (max-width: 992px) {
  .checkout-page .checkout-container-inner-new {
    background-color: #fff;
    padding: 195px 18px 80px;
    position: relative;
    z-index: 5;
  }
  .checkout-page .checkout-container-inner-new fieldset {
    padding: 40px 0 0;
    border-radius: 0;
    box-shadow: none;
    margin-bottom: 10px;
  }
  .checkout-page .checkout-container-inner-new fieldset legend {
    top: 0;
  }
  .legend-3xN0fg5J svg {
    top: -8px;
    margin-right: 12px;
  }
  .delivery-fieldset-iOwGb890 .legend-3xN0fg5J svg {
    top: -2px;
  }
  .form-row-items-2.deliver-to .form-field {
    max-width: 48%;
  }
  .shipping-content-3YX7e2Hw {
    max-width: 100%;
  }
}

@media (min-width: 993px) {
  .legend-3xN0fg5J {
    font-size: 24px;
    top: 38px;
  }
  .legend-3xN0fg5J svg {
    margin-top: -5px;
    margin-right: 12px;
  }
  .deliver-to .form-field {
    padding-bottom: 19px;
    margin: 0;
  }
  .delivery-fieldset-iOwGb890 .legend-3xN0fg5J svg {
    width: 32px;
    margin-top: 2px;
  }
  .form-row-address-appartment .form-field:first-child {
    width: 75%;
  }
}

.sidebar-checkout-items-XQHJ_0CE {
  padding: 0;
  margin-bottom: 15px;
  overflow-x: hidden;
}
.sidebar-checkout-membership-3xtszspu {
  padding: 0 50px 20px 40px;
}
.sidebar-checkout-item-1gde5gpr {
  display: flex;
  max-width: 370px;
}

.sidebar-checkout-item-image-3ctcWxOH {
  width: 160px;
}

.sidebar-checkout-item-image-3ctcWxOH img {
  display: block;
}

.sidebar-checkout-item-info-2Q75uUDx {
  text-align: right;
  padding-left: 55px;
  flex: 1;
  line-height: 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sidebar-checkout-item-label-3hZsUKQ1 {
  font-weight: 500;
  color: #3c396f;
  line-height: 1;
  font-size: 16px;
}

.sidebar-checkout-item-label-3hZsUKQ1 span {
  display: block;
}
.sidebar-header-title-3yDyujjU {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: normal;
  color: #3c396f;
  overflow: hidden;
}
.theme-promo-sunrise .sidebar-header-title-3yDyujjU {
  font-size: 22px;
}
.sidebar-header-price-2VZNMGHK {
  float: right;
  margin-right: 10px;
}
.theme-promo-sunrise .sidebar-header-price-2VZNMGHK {
  font-size: 24px;
}
.sidebar-header-renewal-text-2ePJ8RIR {
  font-size: 16px;
  line-height: 1;
  color: #939597;
  margin-top: 3px;
}
.sidebar-header-subtext-X2oP_vZQ {
  font-size: 16px;
  color: #3c396f;
  line-height: 1.25;
  margin-top: 7px;
}
.sidebar-header-subtext-X2oP_vZQ span {
  display: block;
}
.sidebar-checkout-item-type-qQJqxkHh, .sidebar-checkout-item-included-36WShUbq {
  font-size: 12px;
  color: #939597;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1;
  margin-top: 7px;
}
.sidebar-checkout-item-included-36WShUbq {
  text-transform: none;
}

.sidebar-checkout-item-price-cjkdAZeQ {
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  color: #3c396f;
  margin-top: 8px;
}

.invoice-page .sidebar-header-renewal-text-2ePJ8RIR {
  display: none;
}

@media(max-width: 992px) {
  .sidebar-checkout-membership-3xtszspu {
    padding: 5px 20px 0;
  }
  .sidebar-checkout-item-1gde5gpr {
    float: none;
    max-width: 100%;
    padding: 20px 25px 20px 0;
  }
  .sidebar-checkout-item-info-2Q75uUDx {
    padding-left: 25px;
  }
  .checkout-page .sidebar-checkout-items-XQHJ_0CE {
    visibility: hidden;
  }
  .order-summary-open .checkout-page .sidebar-checkout-items-XQHJ_0CE {
    visibility: visible;
  }
  .checkout-page .sidebar-checkout-items-XQHJ_0CE {
    visibility: hidden;
  }
  .order-summary-open .checkout-page .sidebar-checkout-items-XQHJ_0CE {
    visibility: visible;
  }
  .theme-promo-sunrise .sidebar-header-price-2VZNMGHK {
    margin-right: 0;
  }
  .theme-promo-sunrise .sidebar-checkout-item-1gde5gpr {
    padding-bottom: 0;
  }
  .theme-promo-sunrise .sidebar-checkout-items-XQHJ_0CE {
    margin-bottom: 0;
  }
}

@media(min-width: 310px) and (max-width: 365px) {
  .theme-promo-sunrise .sidebar-header-title-3yDyujjU {
    font-size: calc(1.125rem + ((1vw - 3.1px) * 7.2727));
  }
  .theme-promo-sunrise .sidebar-header-price-2VZNMGHK {
    font-size: calc(1.25rem + ((1vw - 3.1px) * 7.2727));
  }
}

@media(min-width: 993px) {
  .theme-promo-sunrise .sidebar-checkout-items-XQHJ_0CE {
    margin-bottom: 5px;
  }
}

.sidebar-price-summary-3J0w1ZL2 {
  background-color: rgba(98, 105, 255, 0.05);
  padding: 13px 40px 6px 40px;
}

.sidebar-shipping-method-2v35THSe {
  text-transform: capitalize;
  opacity: 1 !important;
}

.sidebar-price-subtotal-2NYwMMIz,
.sidebar-price-tax-1EmLs-f5,
.sidebar-price-shipping-1dU4O3CG,
.sidebar-price-discount-1B6YsK5b,
.sidebar-price-total-39zFOTXG {
  display: flex;
  max-width: 330px;
  height: 40px;
  line-height: 35px;
  font-size: 14px;
  font-weight: 500;
  color: #3c396f;
}

.sidebar-price-subtotal-2NYwMMIz strong,
.sidebar-price-tax-1EmLs-f5 strong,
.sidebar-price-shipping-1dU4O3CG strong,
.sidebar-price-discount-1B6YsK5b strong,
.sidebar-price-total-39zFOTXG strong {
  color: #3c396f;
  font-size: 18px;
  font-weight: 500;
  margin-left: auto;
}

.sidebar-price-total-39zFOTXG {
  padding: 0 10px 0 40px;
  height: 70px;
  line-height: 70px;
  max-width: 380px;
  opacity: 1;
}

.sidebar-price-total-39zFOTXG strong {
  color: #6269ff;
  font-size: 24px;
  font-weight: 500;
}

.sidebar-tax-loader-2Q9ud13d  {
  display: inline-block;
  height: 17px;
  width: 17px;
  vertical-align: top;
}

.sidebar-tax-loader-2Q9ud13d svg {
  height: 100%;
  width: 100%;
}

@media(max-width: 992px) {
  .sidebar-price-summary-3J0w1ZL2 {
    padding: 10px 25px 6px 22px;
  }

  .sidebar-price-summary-3J0w1ZL2.sidebar-invoice-1a5xNMml {
    display: block;
    padding: 13px 30px 6px;
    margin: 0 60px;
    border-left: 1px solid rgba(147, 149, 151, 0.37);;
    border-right: 1px solid rgba(147, 149, 151, 0.37);;
  }

  .checkout-page .sidebar-price-total-39zFOTXG  {
    display: none;
  }

  .sidebar-price-subtotal-2NYwMMIz,
  .sidebar-price-tax-1EmLs-f5,
  .sidebar-price-shipping-1dU4O3CG,
  .sidebar-price-discount-1B6YsK5b,
  .sidebar-price-total-39zFOTXG {
    max-width: 100%;
  }

  .invoice-page .sidebar-price-summary-3J0w1ZL2 {
    margin: 0;
    padding: 13px 25px 6px 22px;
  }
  .invoice-page .sidebar-price-total-39zFOTXG {
    padding: 0 25px 0 22px;
  }
  .theme-promo-sunrise.invoice-page .sidebar-price-total-39zFOTXG {
    padding: 23px 25px 18px 22px;
    height: auto;
    line-height: 24px;
  }
  .checkout-page .sidebar-price-summary-3J0w1ZL2 {
    visibility: hidden;
  }
  .order-summary-open .checkout-page .sidebar-price-summary-3J0w1ZL2 {
    visibility: visible;
  }
}
@media(min-width: 993px) {
  .theme-promo-sunrise .sidebar-price-total-39zFOTXG {
    height: 65px;
    line-height: 65px;
  }
}

.contentConfirmBlock-368Q2xSu {
  width: 100%;
  background-color: var(--color-white);
}

.sidebarInfo-1513BxP3 {
  width: 100%;
  background-color: var(--color-white);
}

.section-title-lHgSIxBg {
  color: var(--primary-text-color);
  font-size: 36px;
  line-height: 34px;
  text-transform: capitalize;
}

.section-title-lHgSIxBg span {
  font-size: 24px;
  text-transform: none;
}

.headingContainer-UXjX1f0e {
  padding: 0 0 20px;
}

.confirmContents-YckcB72I p {
  color: var(--secondary-text-color);
}

.confirmContents-YckcB72I a {
  color: var(--tertiary-text-color);
}

.shippingInfo-1k8UNH4j {
  border-top: solid 1px var(--ui-light-gray);
}

.subTitle-Uz7xCZ-r {
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
}

.subTitle-Uz7xCZ-r svg {
  margin-right: 8px;
  float: left;
}

.shippingInfo-1k8UNH4j address {
  font-style: normal;
  padding: 10px 0;
  font-size: 16px;
  line-height: 21px;
}

.successIcon-29mth8MT img {
  max-width: 30px;
}

/* tab and Mobile start */

@media (max-width: 992px) {
  .confirmation-container-2Zayo6l6 {
    padding: 22px 0 0;
  }
  .headingContainer-UXjX1f0e {
    padding-bottom: 18px;
  }
  .headingContainer-UXjX1f0e svg {
    max-width: 26px;
    float: left;
    margin-right: 15px;
  }
  .section-title-lHgSIxBg {
    font-size: 32px;
    line-height: 33px;
    padding-right: 20%;
  }
  .section-title-lHgSIxBg span {
    display: block;
    line-height: 27px;
  }
  .confirmContents-YckcB72I p {
    font-size: 14px;
    line-height: 22px;
    padding-bottom: 22px;
  }
  .shippingInfo-1k8UNH4j {
    margin: 0 -20px;
    padding: 33px 20px 44px;
  }
  .successIcon-29mth8MT {
    margin-top: -6px;
    padding-bottom: 6px;
  }
}

/* Mobile only */

@media (max-width: 760px) {}

/* Desktop start */

@media (min-width: 993px) {
  .confirmation-container-2Zayo6l6 {
    display: flex;
    justify-content: space-between;
    background-color: #eeeff0;
    max-width: 1010px;
    width: 100%;
  }
  .sidebarInfo-1513BxP3 {
    max-width: 430px;
    width: 100%;
    margin-left: 6%;
  }
  .contentConfirm--rhelcBh {
    margin: 80px auto 0;
  }
  .theme-promo-sunrise .contentConfirm--rhelcBh {
    margin-top: 53px;
  }
  .theme-promo-sunrise .section-title-lHgSIxBg span {
    display: block;
    line-height: 24px;
  }
  .contentConfirmBlock-368Q2xSu {
    max-width: 720px;
    padding: 33px 12.5% 16px 11.45%;
    border-radius: 15px;
    box-shadow: 0 1px 3px 0 var(--ui-light-gray);
  }
  .headingContainer-UXjX1f0e {
    position: relative;
  }
  .theme-promo-sunrise .headingContainer-UXjX1f0e {
    padding-bottom: 10px;
  }
  .headingContainer-UXjX1f0e svg {
    max-width: 30px;
    position: absolute;
    left: -40px;
    top: -2px;
  }
  .confirmContents-YckcB72I p {
    font-size: 18px;
    line-height: 26px;
    padding-bottom: 26px;
  }
  .shippingInfo-1k8UNH4j {
    padding-top: 36px;
    margin: 0 40px;
  }
  .successIcon-29mth8MT {
    padding: 0 40px 10px;
  }
}

.input-select-3E3CVCEH {
  position: relative;
}

.input-select-3E3CVCEH select {
  display: block;
  width: 100%;
  height: 40px;
  border: 0;
  background: transparent;
  border-bottom: 2px solid var(--input-border-color);
  font-size: 16px;
  font-weight: 500;
  color: var(--primary-text-color);
  border-radius: 0;
  -webkit-appearance: none;
}

.input-select-3E3CVCEH select:focus {
  border-color: var(--highlight-color);
}

.input-select-3E3CVCEH select option {
  font-size: 16px;
  font-weight: 500;
}

.input-select-hasError-24RxMc2K select,
.input-select-hasError-24RxMc2K select:focus {
  border-color: var(--color-error)
}

.input-select-label-1P4lwkHT {
  color: var(--secondary-text-color);
  display: block;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
}

.input-select-arrow-UxqDRvJi {
  position: absolute;
  right: 5px;
  top: 25px;
}

.input-select-arrow-UxqDRvJi svg {
  width: 20px;
}  

.input-select-error-2Yd254fG {
  color: var(--color-error);
  font-size: 12px;
}

.input-select-label-1P4lwkHT:after {
  content: ' (optional)';
  text-transform: none;
}

.input-select-required-1em5E6iq .input-select-label-1P4lwkHT:after {
  content: '';
}
.checkout-legal-2Iem_2tN {
  max-width: 330px;
  text-align: center;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.43;
  color: #939597;
}

.checkout-legal-link-3tClAW2h {
  color: #3c396f;
}

@media (max-width: 992px) {
  .checkout-legal-2Iem_2tN {
    display: none;
  }
}

.input-text-autocomplete-V61VacsV {
  position: relative;
  width: 100%;
}

.input-text-autocomplete-V61VacsV input[type='text'] {
  display: block;
  width: 100%;
  height: 40px;
  border: 0;
  border-bottom: 2px solid var(--input-border-color);
  font-size: 18px;
  font-weight: 500;
  color: var(--primary-text-color);
  background: transparent;
}

.input-text-autocomplete-V61VacsV input[type='text']:focus {
  border-color: var(--highlight-color);
}

.checkout-container-new .input-text-autocomplete-V61VacsV input[type='text'] {
  border-radius: 0;
}

.input-text-autocomplete-hasError-IL-tZMv0 input[type='text'],
.input-text-autocomplete-hasError-IL-tZMv0 input[type='text']:focus {
  border-color: var(--color-error)
}

.input-text-autocomplete-Success-3KL9_zeH input[type='text'] {
  border-color: var(--color-success);
}

.input-text-autocomplete-clear-1pBTYBim {
  position: absolute;
  right: 5px;
  bottom: 10px;
  border: none;
  width: 20px;
  height: 20px;
  padding: 0;
  cursor: pointer;
}

.input-text-autocomplete-clear-1pBTYBim svg {
  width: 15px;
  height: 15px;
}

.input-text-autocomplete-label-lSY-mHtN {
  width: 100%;
  display: block;
}

.input-text-autocomplete-label-title-2ejD64ej {
  color: var(--secondary-text-color);
  display: block;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
}

.input-text-autocomplete-options-343dUjNQ {
  display: none;
  position: absolute;
  top: 50px;
  left: 0;
  background: var(--primary-background-color);
  border: 1px solid var(--input-border-color);
  box-shadow: 0 3px 5px rgba(0,0,0,0.05);
  z-index: 2;
  width: 100%;
}

.input-text-autocomplete-options-active-hO3W5urO {
  display: block;
}

.input-text-autocomplete-option-2o6HLHeF {
  border-top: 1px solid var(--input-border-color);
  height: 36px;
  line-height: 36px;
  padding: 0 10px;
  width: 100%;
  white-space: nowrap;
  color: var(--primary-text-color);
  overflow: hidden;
  text-overflow: ellipsis;
}

.input-text-autocomplete-option-2o6HLHeF:first-child {
  border-top: 0;
}

.input-text-autocomplete-option-2o6HLHeF:hover {
  cursor: pointer;
  background-color: var(--ui-light-gray);
}

.highlight-2zmpTZkn {
  background-color: var(--ui-light-gray);
}

.input-text-autocomplete-label-title-2ejD64ej:after {
  content: attr(data-content);
  text-transform: none;
}

.input-text-autocomplete-required-32r9eepj .input-text-autocomplete-label-title-2ejD64ej:after {
  content: '';
}

@media (min-width: 993px) {
  .input-text-autocomplete-label-title-2ejD64ej,
  .input-text-autocomplete-V61VacsV input[type='text'] {
    padding-left: 6px;
  }

  }

.input-checkbox-1iRrw073 {
  position: relative;
  line-height: 1.4;
  margin-bottom: 20px;
}

.input-checkbox-1iRrw073 .input-checkbox-label-wrapper-1egAqAU9 {
  cursor: pointer;
  display: block;
}

.input-checkbox-label-wrapper-1egAqAU9 {
  margin-left: 30px;
}

.input-checkbox-label-wrapper-1egAqAU9::before {
  margin-left: -30px;
  content: '';
  display: inline-block;
}

.input-checkbox-label-e4hVsoAv {
  font-size: 15px;
  font-weight: 400;
  color: var(--secondary-text-color);
  cursor: pointer;
}

.input-checkbox-checkmark-2IzTkyps {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: solid 2px var(--secondary-text-color);
  border-radius: 2px;
  background-color: var(--primary-backgroud-color);
  margin: 0 8px 0 0;
  vertical-align: top;
  margin-right: 8px;
  cursor: pointer;
}

.input-checkbox-checkmark-active-3kcPv7eQ {
  background-color: var(--tertiary-text-color);
  border: solid 2px var(--tertiary-text-color);
}

.input-checkbox-checkmark-2IzTkyps svg {
  width: 16px;
  height: 16px;
}

.input-checkbox-1iRrw073 input[type='checkbox'] {
  position: absolute;
  left: -9999px;
}

.input-checkbox-1iRrw073 input[type='checkbox']:disabled + .input-checkbox-checkmark-2IzTkyps {
  opacity: 0.2;
}

.checkout-container-new .input-checkbox-checkmark-2IzTkyps {
  border-color: #c6c6c6;
  background-color: #fff;
  position: relative;
  top: 3px;
}
.checkout-container-new .input-checkbox-checkmark-active-3kcPv7eQ {
  border-color: #3C396F;
  background-color: #fff;
  position: relative;
}
.checkout-container-new .input-checkbox-checkmark-2IzTkyps svg {
  position: absolute;
  top: 0;
  left: -7px;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 30px;
  height: 30px;
}
@media (max-width: 992px) {
  .input-checkbox-label-e4hVsoAv {
    font-size: 12px;
    line-height: 18px;
  }
}

@media (max-width: 600px) {
  .checkout-container-new .input-checkbox-checkmark-2IzTkyps {
	top: 5px;
  }
}
.sidebar-button-checkout-disabled {
  background-color: #c2c9ff;
  pointer-events: none;
  opacity:0.2;
}

.sidebar-button-checkout-3hVxiafN {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 22px;
  margin: 20px 40px 30px;
  color: var(--button-dark-text-color);
  border-radius: 28px;
  background-color: var(--button-dark-background-color);
  box-shadow: -6px 4px 10px 0 rgba(98, 105, 255, 0.2);
  text-align: center;
  height: 50px;
  width: 100%;
  max-width: 340px;
  cursor: pointer;
  position: relative;
}
.sidebar-button-checkout-3hVxiafN svg {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0 auto 10px;
  opacity: 0;
}
.sidebar-button-checkout-3hVxiafN .sidebar-total-price-1p7aTrhd {
  display: none;
}

@media (max-width: 992px) {
  .sidebar-button-checkout-3hVxiafN {
    position: fixed;
    height: 60px;
    bottom: 0;
    left: 0;
    margin: 0;
    max-width: 100%;
    width: 100%;
    z-index: 11;
    border-radius: 0;
    justify-content: flex-start;
    text-align: left;
    font-weight: 700;
    padding: 0 18px 0;
  }
  .sidebar-button-checkout-3hVxiafN .sidebar-total-price-1p7aTrhd {
    display: block;
    padding-right: 5px;
    height: 60px;
    line-height: 60px;
    color: #fff;
    float: right;
    margin-left: auto;
    font-size: 24px;
    font-weight: 500;
  }
}


#shippingMethods .shipping-method-active {
    border: 1px solid #c6c6c6;
  }
  #shippingMethods .shipping-method-active:after {
    border: solid 4px #6269ff;
  }

.shipping-methods-21M8-mb6 {
  display: flex;
  align-items: center;
}

.shipping-method-252xgDod {
  cursor: pointer;
  display: flex;
  justify-content: center;
  flex-direction: column;
  position: relative;
  border: 1px solid transparent;
  height: 80px;
  padding: 10px 80px 10px 54px;
  background: white;
  border-radius: 45px;
  width: 100%;
}

.shipping-method-252xgDod:first-child {
  margin-right: 5px;
}

.shipping-method-252xgDod:last-child {
  margin-left: 11px;

}
.shipping-method-252xgDod:last-child .shipping-method-label-PbqTYnml,
.shipping-method-252xgDod:last-child .shipping-methods-arrivalDate-3KbIehF- {
  margin-left: -7px;
}
.shipping-method-252xgDod:last-child:after {
  left: 18px;
}
.shipping-method-252xgDod:last-child .shipping-method-price-3nPeSGTe {
  right: 35px;
}

.shipping-method-252xgDod::after {
  content: "";
  display: block;
  position: absolute;
  left: 26px;
  height: 16px;
  width: 16px;
  background-color: white;
  z-index: 2;
  box-sizing: border-box;
  border-radius: 50%;
  border: solid 1px #939597;
  border-image: initial;
  cursor: pointer;
}

.shipping-method-label-PbqTYnml {
  font-size: 18px;
  line-height: 18px;
  font-weight: 500;
  color: var(--primary-text-color);
  margin-bottom: 3px;
  text-transform: capitalize;
}

.shipping-methods-arrivalDate-3KbIehF- {
  font-size: 15px;
  font-weight: 400;
  color: var(--secondary-text-color);
}

.shipping-method-price-3nPeSGTe {
  position: absolute;
  top: 50%;
  right: 26px;
  font-size: 18px;
  font-weight: 500;
  color: var(--primary-text-color);
  text-transform: uppercase;
  transform: translateY(-50%);
}
@media(max-width: 992px) {
  .shipping-methods-21M8-mb6 {
    flex-direction: column;
    margin-bottom: 30px;
  }
  .shipping-method-252xgDod {
    width: 100%;
    margin: 0 0 20px 0;
  }
  .shipping-method-252xgDod:first-child {
    margin-right: 0;
  }
  .delivery-method .form-field, .shipping-methods-21M8-mb6 {
    margin-bottom: 0;
    width: 100%;
  }
  .shipping-method-252xgDod:last-child,
  .shipping-method-252xgDod:last-child .shipping-method-label-PbqTYnml,
  .shipping-method-252xgDod:last-child .shipping-methods-arrivalDate-3KbIehF- {
    margin-left: 0;
  }
  .shipping-method-252xgDod:last-child:after {
    left: 26px;
  }
  .shipping-method-252xgDod:last-child .shipping-method-price-3nPeSGTe {
    right: 26px;
  }
}
@media(max-width: 760px) {
  .shipping-method-252xgDod:last-child .shipping-method-price-3nPeSGTe {
    right: 15px;
  }
}
@media (min-width: 993px) and (max-width: 1280px) {
  .shipping-method-252xgDod:last-child .shipping-method-price-3nPeSGTe {
    right: 18px;
  }
}

@media (max-width: 992px) {
  .checkout-page .sidebar-checkout-wrapper-9jDBOP1i {
    position: fixed;
    z-index: 10;
    top: -100%;
    left: 0;
    width: 100%;
    max-height: calc(100vh - 60px);
    min-height: calc(100vh - 60px);
    -webkit-transition: top 0.5s ease;
    transition: top 0.5s ease;
    background: #fff;
    padding-top: 148px;
    padding-bottom: 60px;
    -webkit-overflow-scrolling: touch;
    overflow-y: auto;
  }
  .order-summary-open .checkout-page .sidebar-checkout-wrapper-9jDBOP1i {
    top: 0;
  }
}

.shipping-1hbhvemV {
  display: flex;
  justify-content: flex-end;
  opacity: 0;
}

.fade-in-1EVkA0yG {
  -webkit-animation: fadeIn-DqxKh9hj .6s cubic-bezier(0.215, 0.61, 0.355, 1) .8s forwards;
  -moz-animation: fadeIn-DqxKh9hj .6s cubic-bezier(0.215, 0.61, 0.355, 1) .8s forwards;
  -ms-animation: fadeIn-DqxKh9hj .6s cubic-bezier(0.215, 0.61, 0.355, 1) .8s forwards;
  -o-animation: fadeIn-DqxKh9hj .6s cubic-bezier(0.215, 0.61, 0.355, 1) .8s forwards;
  animation: fadeIn-DqxKh9hj .6s cubic-bezier(0.215, 0.61, 0.355, 1) .8s forwards;
}

.legend-2ll626uM {
  text-transform: none;
  letter-spacing: normal;
}

.legend-2ll626uM svg {
  float: left;
  position: relative;
}

@keyframes fadeIn-DqxKh9hj {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.shipping-content-2plNi4Ac {
  max-width: 720px;
  width: 100%;
  padding: 0;
  margin: 0 auto;
}

.info-label-1rXiAHpe {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--secondary-text-color);
  padding-left: 30px;
  width: 98%;
}

.info-label-link-3wU5pYC6 {
  color: var(--highlight-color);
}

.form-info-LCt5upBk {
  position: relative;
}

body[data-user-agent*="Win"] .legend-2ll626uM {
  line-height: 20px;
}
body[data-user-agent*="Win"] .theme-promo-sunrise .legend-2ll626uM {
  line-height: 17px;
}

@media (max-width: 992px) {
  .checkout-page .checkout-container-inner-new {
    background-color: #fff;
    padding: 195px 18px 80px;
    position: relative;
    z-index: 5;
  }
  .checkout-page .checkout-container-inner-new fieldset {
    padding: 40px 0 0;
    border-radius: 0;
    box-shadow: none;
    margin-bottom: 10px;
  }
  .checkout-page .checkout-container-inner-new fieldset legend {
    top: 0;
  }
  .legend-2ll626uM svg {
    top: -8px;
    margin-right: 12px;
  }
  .delivery-fieldset-24QOc70P .legend-2ll626uM svg {
    top: -2px;
  }
  .form-row-items-2.deliver-to .form-field {
    max-width: 48%;
  }
  .shipping-content-2plNi4Ac {
    max-width: 100%;
  }
}

@media (min-width: 993px) {
  .legend-2ll626uM {
    font-size: 24px;
    top: 38px;
  }
  .legend-2ll626uM svg {
    margin-top: -5px;
    margin-right: 12px;
  }
  .deliver-to .form-field {
    padding-bottom: 19px;
    margin: 0;
  }
  .delivery-fieldset-24QOc70P .legend-2ll626uM svg {
    width: 32px;
    margin-top: 2px;
  }
  .form-row-address-appartment .form-field:first-child {
    width: 75%;
  }
}

.checkout-sidebar-VEv60hi7 {
  position: relative;
  width: 100%;
  max-width: 430px;
  overflow-y: hidden;
  box-shadow: 2px 0 18px 1px rgba(10, 10, 10, 0.11);
  z-index: 2;
  visibility: visible;
  background: #fff;
}

.animate-1mGFPof_ {
  opacity: 0;
}

.slide-left-1rNSPL93 {
  -webkit-animation: slideLeft-3GKBBM-O .8s cubic-bezier(0.215, 0.61, 0.355, 1) 1.2s forwards;
  -moz-animation: slideLeft-3GKBBM-O .8s cubic-bezier(0.215, 0.61, 0.355, 1) 1.2s forwards;
  -ms-animation: slideLeft-3GKBBM-O .8s cubic-bezier(0.215, 0.61, 0.355, 1) 1.2s forwards;
  -o-animation: slideLeft-3GKBBM-O .8s cubic-bezier(0.215, 0.61, 0.355, 1) 1.2s forwards;
  animation: slideLeft-3GKBBM-O .8s cubic-bezier(0.215, 0.61, 0.355, 1) 1.2s forwards;
}

@keyframes slideLeft-3GKBBM-O {
  from { opacity: 0; transform: translateX(12%); }
  to  { opacity: 1; transform: translateX(0); }
}

@-moz-keyframes slideLeft-3GKBBM-O {
  from { opacity: 0; -moz-transform: translateX(12%); }
  to   { opacity: 1; -moz-transform: translateX(0); }
}

@-webkit-keyframes slideLeft-3GKBBM-O {
  from { opacity: 0; -webkit-transform: translateX(12%); }
  to   { opacity: 1; -webkit-transform: translateX(0); }
}

@-ms-keyframes slideLeft-3GKBBM-O {
  from { opacity: 0; -ms-transform: translateX(12%); }
  to   { opacity: 1; -ms-transform: translateX(0); }
}

@-o-keyframes slideLeft-3GKBBM-O {
  from { opacity: 0; -o-transform: translateX(12%); }
  to   { opacity: 1; -o-transform: translateX(0); }
}

@media (max-width: 992px) {
  .checkout-sidebar-VEv60hi7 {
    min-width: 100%;
    width: 100%;
    box-shadow: none;
    overflow-y: visible;
    z-index: 6;
  }
  .slide-left-1rNSPL93 {
    -webkit-animation: fadeIn-ZX911F4h .8s cubic-bezier(0.215, 0.61, 0.355, 1) 1.2s forwards;
    -moz-animation: fadeIn-ZX911F4h .8s cubic-bezier(0.215, 0.61, 0.355, 1) 1.2s forwards;
    -ms-animation: fadeIn-ZX911F4h .8s cubic-bezier(0.215, 0.61, 0.355, 1) 1.2s forwards;
    -o-animation: fadeIn-ZX911F4h .8s cubic-bezier(0.215, 0.61, 0.355, 1) 1.2s forwards;
    animation: fadeIn-ZX911F4h .8s cubic-bezier(0.215, 0.61, 0.355, 1) 1.2s forwards;
  }
}

@media (max-width: 760px) and (orientation: landscape) {
  .checkout-page .checkout-sidebar-VEv60hi7 {
    max-height: calc(100vh - 80px);
  }
}

@keyframes fadeIn-ZX911F4h {
  from { opacity: 0; }
  to  { opacity: 1; }
}

.checkout-sidebar-content-2rNBFUfv {
  height: 100%;
  width: 100%;
}

@media(max-width: 992px) {
  .checkout-page .checkout-sidebar-content-2rNBFUfv:after {
    position: fixed;
    content: '';
    display: block;
    background: #fff;
    width: 100%;
    height: 60px;
    bottom: 0;
  }
}

.checkout-sidebar-content-2rNBFUfv h3 {
  position: relative;
  font-size: 12px;
  text-transform: uppercase;
  padding: 0;
  margin: 30px 0 15px 0;
}

.checkout-sidebar-content-2rNBFUfv h3 span {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1.1px;
  color: var(--primary-text-color);
  position: relative;
  background: white;
  z-index: 2;
  padding-right: 5px;
}

.checkout-sidebar-content-2rNBFUfv h3:after {
  display: block;
  content: "";
  height: 1px;
  width: 100%;
  position: absolute;
  left: 0;
  top: 49%;
  background-color: #e5e5e5;
  z-index: 1;
}

@media(max-width: 992px) {
  .checkout-sidebar-content-2rNBFUfv h3 {
    margin-bottom: 26px;
  }
  .checkout-sidebar-content-2rNBFUfv h3 span {
    font-size: 12px;
  }
  .checkout-sidebar-content-review-KAs4Y1RG {
    padding: 15px 20px;
    margin-bottom: 20px;
  }
}
@media (min-width: 993px) {
  .checkout-page .checkout-sidebar-VEv60hi7 {
    position: fixed;
    overflow-y: auto;
    height: calc(100% - 80px);
    top: 80px;
    right: 0;
    margin: 0 auto;
    background-color: #fff;
  }
  .checkout-page .checkout-sidebar-content-2rNBFUfv {
    height: calc(100% - 80px);
  }
}
@media (min-width: 1440px) {
  .checkout-page .checkout-sidebar-VEv60hi7 {
    left: calc(1440px - 430px);
  }
}



.checkoutHeading-container-11B1DDTs {
  max-width: 720px;
  width: 100%;
  padding: 10px 10px 30px;
  margin: 0 auto;
  text-align: center;
}
.co-top-Heading-3tBaZAqz {
  font-size: 20px;
  color: var(--secondary-text-color);
  font-weight: normal;
}

body[data-user-agent*="Win"] .theme-promo-sunrise .checkoutHeading-container-11B1DDTs {
  padding-bottom: 23px;
}

@media (max-width:992px) {
  .checkoutHeading-container-11B1DDTs {
    max-width: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
    position: fixed;
    z-index: 10;
    top: 80px;
    left: 0;
  }
  .checkout-mobile-header-1Bmf6Ivp {
    background-color: #3c396f;
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    padding: 16px 20px;
  }
  .checkout-mobile-header-1Bmf6Ivp .checkout-item-list-22f2e2xn, .checkout-mobile-header-1Bmf6Ivp .checkout-total-wrapper-3UBmvLzn {
    max-width: 48%;
  }
  .checkout-mobile-header-1Bmf6Ivp .checkout-total-wrapper-3UBmvLzn {
    margin-left: auto;
    text-align: right;
  }
  .checkout-mobile-header-1Bmf6Ivp .checkout-items-3HR9g7Rp {
    font-size: 12px;
    line-height: normal;
    font-weight: 500;
    margin-bottom: 2px;
    text-align: left;
  }
  .checkout-mobile-header-1Bmf6Ivp .checkout-total-title-1s4yvvps {
    font-size: 16px;
    line-height: normal;
    font-weight: 500;
  }
  .checkout-mobile-header-1Bmf6Ivp .checkout-total-price-tNVTXfDD {
    font-size: 26px;
    line-height: normal;
    font-weight: 500;
    margin-bottom: 4px;
  }
  .checkout-summary-toggler-2vDcZhc_, .checkout-summary-toggler-2vDcZhc_:focus, .checkout-summary-toggler-2vDcZhc_:hover {
    color: #fff;
    font-size: 12px;
    line-height: normal;
    font-weight: 500;
    opacity: 0.7;
    background: none;
    border: none;
    outline: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
  }
}


/*# sourceMappingURL=styles.dc726289.chunk.css.map*/