/*
	Reset

	CSS reset styles based on https://meyerweb.com/eric/tools/css/reset/.

	Styleguide: Reset
*/
html, a, abbr, acronym, address, applet, article, aside, audio, b, big, blockquote, body, canvas, caption, center, cite, code, dd, del, details, dfn, div, dl, dt, em, embed, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, i, iframe, img, ins, kbd, label, legend, li, mark, menu, nav, object, ol, output, p, pre, q, ruby, s, samp, section, small, span, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, time, tr, tt, u, ul, var, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline; }

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block; }

body {
  line-height: normal; }

blockquote, q {
  quotes: none; }

blockquote:after, blockquote:before, q:after, q:before {
  content: '';
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

input, textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0; }

a {
  text-decoration: none;
  color: inherit; }

/*
	Utility Mixins

	Styleguide: Utilities
*/
/*
	clickable

	Changes the mouse cursor to a pointer and does not allow text selection.

	```scss
	button {
		@include clickable;
	}
	```

	Styleguide: Utilities - clickable
*/
/*
	hide-scrollbar

	Hides the scrollbar on the element.

	Compatible in Chrome 4+, Safari 5.1+, Opera 15+, iOS Safari 7.1+.

	```scss
	.container {
		@include hide-scrollbar;
	}
	```

	Styleguide: Utilities - hide-scrollbar
*/
/*
	hide-number-spinner

	Hides the number spinner.

	```scss
	input[type="number"] {
		@include hide-number-spinner;
	}
	```

	Styleguide: Utilities - hide-number-spinner
*/
/*
	vertical-middle

	Vertically align content in an element.

	```scss
	.container {
		@include vertical-middle;
	}
	```

	Styleguide: Utilities - vertical-middle
*/
/*
	maintain-ratio

	Uses zero height and bottom padding to maintain the ratio
	of an element.

	$ratio - The width to height ratio of the element, separated
	by a space.

	```scss
	.square {
		@include maintain-ratio(1 1);
	}

	.rectangle {
		@include maintain-ratio(4 3);
	}
	```

	Styleguide: Utilities - maintain-ratio
*/
/*
	Media Queries

	Utility mixins to use to define your media query styles.

	Styleguide: Utilities - Media Queries
*/
/*
	mq-min

	Sets a minimum width in which css styles will be applied to a desired class.

	$viewport - The breakpoint at which to show the styling.

	```scss
	.class {
		color: blue;

		@include mq-min($bp-md) {
			color: red;
		}
	}
	```

	Styleguide: Utilities - Media Queries - mq-min
*/
/*
	mq-max

	Sets a maximum width in which css styles will be applied to a desired class.

	$viewport - The breakpoint at which to show the styling.

	```scss
	.class {
		color: blue;

		@include mq-max($bp-md) {
			color: red;
		}
	}
	```

	Styleguide: Utilities - Media Queries - mq-max
*/
/*
	mq-min-max

	Sets a range in which css styles will be applied to a desired class.

	$viewport-min - The minimum breakpoint at which to show the styling.<br/>
	$viewport-max - The maximum breakpoint at which to show the styling.

	```scss
	.class {
		color: blue;

		@include mq-min-to-max($bp-md, $bp-lg) {
			color: red;
		}
	}
	```

	Styleguide: Utilities - Media Queries - mq-min-max
*/
.no-scroll {
  overflow: hidden; }
  .no-scroll body {
    overflow: hidden; }

/*
	Grid System

	Styleguide: Grid System
*/
/*
	clearfix

	Forces an element to self clear its children elements.

	```scss
	.container {
		@include clearfix;
	}
	```

	Styleguide: Grid System - clearfix
*/
/*
	gutterize

	Adds left and right gutter padding to grid items.

	```scss
	.item {
		@include gutterize;
	}
	```

	Styleguide: Grid System - gutterize
*/
/*
	degutterize

	Removes left and right gutter padding to grid items.

	```scss
	.item {
		@include degutterize;
	}
	```

	Styleguide: Grid System - degutterize
*/
/*
	col

	Sets the column width relative to the browser. This mixin
	takes an infinite number of parameters in pairs. The first
	is the size to use and the second the breakpoint at which to use
	it. The size is specified as a ratio.

	$size - The width of the element.<br/>
	$breakpoint - The breakpoint at which to use the ratio.

	```scss
	// The item will take half the row on screens below 800px,
	and 1/3 otherwise.
	.item {
		@include col(1/2, 800, 1/3);
	}

	// The variables defined in the theme can be used
	.item {
		@include col(1/2, $bp-md);
	}
	```

	Styleguide: Grid System - col
*/
/*
	container

	The wrapper element for grid items. This mixin helps with
	the proper alignment of gutters and clearfixing of its children
	items.

	$breakpoints - The breakpoints at which to define the container.

	```scss
	.container {
		@include container(1);
	}
	```

	Styleguide: Grid System - container
*/
/*
	col-push

	Pushes the column to the left by the specified width.

	$size - The width by which to move the element.<br/>
	$breakpoint - The breakpoint at which to push the element.

	```scss
	// Moves the item by half the column to the right.
	.item-right {
		@include col-push(1/2, 800px);
	}
	```

	Styleguide: Grid System - col-push
*/
/*
	col-pull

	Pulls the column to the right by the specified width.

	$size - The width by which to move the element.<br/>
	$breakpoint - The breakpoint at which to pull the element.

	```scss
	// Moves the item by half the column to the left.
	.item-left {
		@include col-pull(1/2, 800px);
	}
	```

	Styleguide: Grid System - col-pull
*/
html {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

@font-face {
  font-family: "Museo Sans";
  src: url("//cdn.shopify.com/s/files/1/2974/4858/t/17/assets/MuseoSans_500.otf?2514332202813309776") format("opentype");
  font-weight: 500; }

@font-face {
  font-family: "Museo Sans";
  src: url("//cdn.shopify.com/s/files/1/2974/4858/t/17/assets/MuseoSans_300.otf?2514332202813309776") format("opentype");
  font-weight: 300; }

@font-face {
  font-family: "Museo Sans";
  src: url("//cdn.shopify.com/s/files/1/2974/4858/t/17/assets/MuseoSans_700.otf?2514332202813309776") format("opentype");
  font-weight: 700; }

body {
  font-family: "Open Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 12px; }

.button__main, .button__main--outline, .button__live, .button__live--outline, .button__vault, .button__vault--outline, .external-cta__link, .designguide__buttons-section--color button:nth-child(2), .designguide__buttons-section--color button:nth-child(3), .designguide__buttons-section--color button:nth-child(4), .designguide__buttons-section--logo button:nth-child(2), .designguide a:nth-child(2), .designguide__buttons-section--logo button:nth-child(3), .designguide a:nth-child(3), .designguide__buttons-section--logo button:nth-child(5), .designguide a:nth-child(5), .designguide__buttons-section--outline button:nth-child(2), .designguide__buttons-section--outline button:nth-child(3), .designguide__buttons-section--outline button:nth-child(4), .homepage-main-banner__cta-link, .cart__button, .cart__button--apple-pay, .cart__button--paypal, .cart__button--continue, .cart__recommended-atc, .subbar__submit, .review__yotpo .yotpo-default-button.yotpo-icon-btn.write-review-button, .review__yotpo .yotpo-default-button.yotpo-submit.primary-color-btn, .add-to-cart__submit, .page-not-found__button, .page__previous, .page__next, .page__number, .ledger-live__top-banner__button, .ledger-live__currencies-button__button, .ledger-live__get-onboard-text__button, .get-started__button, .get-started--blue .get-started__button, .live__button-mobile, .live__button-tablet, .live__button-desktop, .vault-overview__cta-link, .crypto__btn, html:root .flow-checkout .order-confirmation-step__continue-shopping, html:root .flow-checkout .customer-information-form__continue-button, html:root .flow-checkout .customer-information-form .cart-button, html:root .flow-checkout .shipping-method-form__return-button, html:root .flow-checkout .shipping-method-form__continue-button, html:root .flow-checkout .payment-form__return-button, html:root .flow-checkout .payment-form__continue-button {
  font-family: "Museo Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 16px;
  line-height: normal;
  font-weight: 500;
  letter-spacing: normal;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 15px 20px;
  display: block;
  letter-spacing: normal;
  cursor: pointer; }

.button__main {
  background: #41ccb4;
  color: #ffffff; }

.button__main--outline {
  font-size: 14px;
  line-height: 18px;
  border: #41ccb4 1px solid;
  color: #41ccb4; }

.button__live {
  background: #6490f1;
  color: #ffffff; }

.button__live--outline {
  font-size: 14px;
  line-height: 18px;
  border: #6490f1 1px solid;
  color: #6490f1; }

.button__vault {
  background: #27d0e2;
  color: #ffffff; }

.button__vault--outline {
  font-size: 14px;
  line-height: 18px;
  border: #27d0e2 1px solid;
  color: #27d0e2; }

input[type="submit"] {
  cursor: pointer; }

.external-cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  @media screen and (min-width: 768px) {
    .external-cta {
      -ms-flex-wrap: wrap;
      flex-wrap: wrap; } }
  .external-cta__link {
    width: 200px;
    margin-right: 25px;
    margin-bottom: 20px;
    color: #999999;
    border: #999999 1px solid;
    font-size: 12px;
    line-height: 14px;
    padding: 17px 20px;
    font-family: "Open Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
    padding: 12px 8px 12px 23px; }
    .external-cta__link i, .external-cta__link svg {
      height: 14px;
      width: auto;
      display: inline-block;
      color: black;
      vertical-align: middle;
      margin-left: 1px; }
    .external-cta__link i {
      padding: 9px 20px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; }
  .external-cta__button-text {
    border-left: 2px solid #d8d8d8;
    padding-left: 9px;
    display: inline-block; }
  .external-cta__location {
    font-weight: 600;
    color: #666666;
    font-size: 14px; }
  .external-cta__caption {
    color: #999999;
    margin-top: 5px;
    font-size: 14px;
    font-weight: 400; }
  .external-cta__icon {
    height: 14px;
    width: 20px;
    margin-right: 12px;
    margin-bottom: 7px;
    display: inline-block !important; }
  .external-cta__tablet-link-container {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33%;
    flex: 0 0 33%;
    margin-bottom: 10px; }
  .external-cta--tablet .external-cta__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 0; }
  .external-cta--tablet .external-cta__icon {
    margin-bottom: 0px; }
  .external-cta .slick-dots {
    left: 0; }

.retailers {
  max-width: 768px;
  margin: auto;
  padding: 0 20px; }
  @media screen and (min-width: 1080px) {
    .retailers {
      max-width: 1040px;
      padding: 0 20px;
      margin: auto; } }
  .retailers-distributor {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 30px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 60px; }
    .retailers-distributor__btn {
      width: 192px;
      height: 50px;
      border-radius: 4px;
      border: 1px solid #d8d8d8;
      padding: 7px 13px;
      display: block;
      text-align: center; }
      .retailers-distributor__btn-text {
        display: block;
        font-size: 12px;
        letter-spacing: normal;
        font-style: normal;
        font-stretch: normal;
        line-height: 1.5; }
      .retailers-distributor__btn-header {
        color: #666666; }
      .retailers-distributor__btn-caption {
        font-weight: 600;
        color: #41ccb4; }
      @media screen and (min-width: 768px) {
        .retailers-distributor__btn {
          text-align: right; } }
    @media screen and (min-width: 768px) {
      .retailers-distributor {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        margin-bottom: 0; } }

main {
  overflow: hidden; }

.retailers-hero {
  margin-bottom: 60px; }
  @media screen and (min-width: 768px) {
    .retailers-hero {
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      width: 100%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between;
      margin-top: 55px;
      margin-bottom: 90px; } }
  @media screen and (min-width: 1080px) {
    .retailers-hero {
      width: 100%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between;
      margin-top: 55px;
      margin-bottom: 90px; } }
  @media screen and (min-width: 768px) {
    .retailers-hero__header-section {
      -webkit-box-flex: 1;
      -ms-flex: 1 0 320px;
      flex: 1 0 320px; } }
  @media screen and (min-width: 1080px) {
    .retailers-hero__header-section {
      -webkit-box-flex: 1;
      -ms-flex: 1 0 320px;
      flex: 1 0 320px; } }
  .retailers-hero__header {
    margin: 40px 0;
    text-align: center; }
    @media screen and (min-width: 768px) {
      .retailers-hero__header {
        text-align: left; } }
  .retailers-hero__title {
    font-family: "Museo Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
    font-size: 44px;
    font-weight: 500;
    line-height: 1.23;
    font-style: normal;
    font-stretch: normal;
    letter-spacing: -0.3px;
    color: #142533; }
    @media screen and (max-width: 1079px) {
      .retailers-hero__title {
        font-size: 34px;
        line-height: 1.59;
        letter-spacing: -0.2px; } }
    @media screen and (max-width: 767px) {
      .retailers-hero__title {
        letter-spacing: 0;
        line-height: normal; } }
    @media screen and (min-width: 768px) {
      .retailers-hero__title {
        letter-spacing: -0.3px;
        line-height: 54px;
        font-size: 44px; } }
  .retailers-hero__search {
    display: none;
    margin: 30px 0;
    position: relative;
    font-family: "Museo Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
    font-size: 14px;
    color: #999999;
    margin-bottom: 40px; }
    .retailers-hero__search > input {
      border: 1px solid #d8d8d8;
      border-radius: 4px;
      height: 50px;
      max-width: 486px;
      display: block;
      line-height: 1.71;
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      width: 100%;
      padding: 7px 13px; }
    .retailers-hero__search > label {
      position: absolute;
      line-height: 1.71;
      left: 13px;
      top: 13px; }
    .retailers-hero__search > input:focus + label {
      top: 7px;
      left: 13px;
      font-size: 10px; }
    .retailers-hero__search > input:focus {
      outline: none;
      padding-top: 22px;
      border: 1px solid #41ccb4; }
    .retailers-hero__search > input {
      max-width: 100%; }
    @media screen and (min-width: 1080px) {
      .retailers-hero__search {
        margin-top: 100px; } }
    .retailers-hero__search .retailers-hero__input-label {
      line-height: 24px;
      font-family: "Open Sans", "Helvetica Neue", Verdana, Arial, sans-serif; }
  .retailers-hero__caption {
    font-family: "Open Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.71;
    letter-spacing: normal;
    color: #666666;
    line-height: 24px; }
    @media screen and (min-width: 1080px) {
      .retailers-hero__caption {
        font-size: 16px;
        line-height: 1.88; } }
    @media screen and (min-width: 768px) {
      .retailers-hero__caption {
        line-height: 30px;
        font-size: 16px; } }
  .retailers-hero__image-container {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 350px;
    padding-top: 46px; }
    @media screen and (min-width: 768px) {
      .retailers-hero__image-container {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 343px;
        flex: 0 0 343px;
        height: 500px; } }
  @media screen and (min-width: 768px) and (max-width: 1079px) {
    .retailers-hero__image-container img {
      height: 421px; } }
    @media screen and (min-width: 1080px) {
      .retailers-hero__image-container {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 743px;
        flex: 0 0 743px;
        height: 500px; } }
  .retailers-hero__background {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 70%;
    height: 100%;
    background: #f9f9f9;
    margin: auto; }
    @media screen and (min-width: 768px) {
      .retailers-hero__background {
        margin: 0;
        margin-left: auto; } }
    @media screen and (min-width: 1080px) {
      .retailers-hero__background {
        width: 350px;
        margin-left: 300px; } }
  .retailers-hero__picture {
    position: relative;
    z-index: 10; }
    .retailers-hero__picture img {
      display: block; }
    @media screen and (min-width: 1080px) {
      .retailers-hero__picture {
        width: 100%; }
        .retailers-hero__picture img {
          width: 100%;
          margin: 0; } }

@media screen and (min-width: 768px) {
  .retailer-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    width: calc(100% + 20px);
    margin-left: -10px;
    margin-right: -10px; } }

.retailer-list__country {
  font-family: "Museo Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.23;
  color: #142533;
  font-style: normal;
  font-stretch: normal;
  line-height: 32px;
  letter-spacing: normal;
  padding-bottom: 32px;
  padding-top: 75px;
  font-size: 20px; }
  @media screen and (min-width: 768px) {
    .retailer-list__country {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
      flex: 0 0 100%;
      max-width: 100%;
      padding-left: 10px;
      padding-right: 10px;
      line-height: 32px; } }
  .retailer-list__country::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background-color: #979797;
    margin-top: 15px; }
    @media screen and (min-width: 768px) {
      .retailer-list__country::after {
        margin-top: 21px; } }

.retailer-list__merchant-info {
  font-family: "Open Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.71;
  letter-spacing: normal;
  color: #666666;
  padding-bottom: 30px; }
  @media screen and (min-width: 1080px) {
    .retailer-list__merchant-info {
      font-size: 16px;
      line-height: 1.88; } }
  @media screen and (min-width: 768px) {
    .retailer-list__merchant-info {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 33.33%;
      flex: 0 0 33.33%;
      max-width: 33.33%;
      padding: 0 10px 30px;
      font-size: 16px;
      line-height: 30px; } }
  @media screen and (min-width: 1080px) {
    .retailer-list__merchant-info {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
      flex: 0 0 25%;
      max-width: 25%; } }
  .retailer-list__merchant-info__name {
    font-family: "Museo Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.56;
    font-weight: 300;
    line-height: 28px;
    letter-spacing: -0.2px;
    color: #41ccb4;
    text-transform: uppercase;
    padding-bottom: 10px; }
  .retailer-list__merchant-info__text-line {
    word-wrap: break-word; }
  .retailer-list__merchant-info a .retailer-list__merchant-info__text-line {
    text-decoration: underline; }

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

.designguide {
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  *zoom: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap; }
  .designguide::before, .designguide::after {
    content: " ";
    display: table; }
  .designguide::after {
    clear: both; }
  @media (min-width: 1079px) {
    .designguide {
      width: 1319px; } }
  .designguide__toc {
    list-style: inside;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%; }
  .designguide__main-title {
    font-family: "Museo Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
    font-size: 44px;
    font-weight: 500;
    line-height: 1.23;
    font-style: normal;
    font-stretch: normal;
    letter-spacing: -0.3px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    color: #142533; }
    @media screen and (max-width: 1079px) {
      .designguide__main-title {
        font-size: 34px;
        line-height: 1.59;
        letter-spacing: -0.2px; } }
  .designguide__main-section {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 75%;
    flex: 1 0 75%; }
  .designguide__section-heading {
    font-family: "Museo Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.23;
    color: #142533;
    padding-top: 30px; }
  .designguide__subsection-heading {
    font-family: "Museo Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.56;
    text-transform: uppercase;
    color: #41ccb4;
    padding-top: 30px;
    padding-bottom: 15px; }
  .designguide__body-text {
    font-family: "Open Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.71;
    letter-spacing: normal;
    color: #666666; }
    @media screen and (min-width: 1080px) {
      .designguide__body-text {
        font-size: 16px;
        line-height: 1.88; } }
  .designguide__brand {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-family: "Museo Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.23;
    font-weight: 300; }
    .designguide__brand--primary {
      border: 1px solid #41ccb4;
      background: #41ccb4;
      color: white; }
    .designguide__brand--inverse-primary {
      border: 1px solid #41ccb4;
      color: #41ccb4; }
    .designguide__brand--main-live {
      background: #6490f1;
      border: #6490f1 1px solid;
      color: white; }
    .designguide__brand--inverse-main-live {
      border: #6490f1 1px solid;
      color: #6490f1; }
    .designguide__brand--main-vault {
      background: #27d0e2;
      border: solid 1px #27d0e2;
      color: white; }
    .designguide__brand--inverse-main-vault {
      border: solid 1px #27d0e2;
      color: #27d0e2; }
    .designguide__brand__brand-col {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
      flex: 0 0 50%; }
    .designguide__brand__brand-item {
      margin: 20px 10px;
      padding: 15px;
      text-align: center;
      border-radius: 4px; }
  .designguide__typography-colors p:nth-child(2) {
    color: #142533; }
  .designguide__typography-colors p:nth-child(3) {
    color: #41ccb4; }
  .designguide__typography-colors p:nth-child(4) {
    color: #666666; }
  .designguide__typography-colors p:nth-child(5) {
    color: #999999; }
  .designguide__headings-section--h1 {
    font-family: "Museo Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
    font-size: 44px;
    font-weight: 500;
    line-height: 1.23;
    font-style: normal;
    font-stretch: normal;
    letter-spacing: -0.3px; }
    @media screen and (max-width: 1079px) {
      .designguide__headings-section--h1 {
        font-size: 34px;
        line-height: 1.59;
        letter-spacing: -0.2px; } }
  .designguide__headings-section--h2 {
    font-family: "Museo Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
    font-size: 36px;
    font-weight: 500;
    line-height: 1.33; }
  .designguide__headings-section--h3 {
    font-family: "Museo Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.23; }
  .designguide__headings-section--h4 {
    font-family: "Museo Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.23; }
    @media screen and (min-width: 768px) {
      .designguide__headings-section--h4 {
        font-size: 24px; } }
  .designguide__headings-section--h5 {
    font-family: "Museo Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.56; }
  .designguide__headings-section--h6 {
    font-family: "Museo Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.23; }
  .designguide__colour-palette {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap; }
    .designguide__colour-palette__heading {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
      flex: 0 0 100%; }
  .designguide__colour-palette div {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 45%;
    flex: 0 0 45%;
    padding: 40px;
    margin: 15px;
    text-align: center;
    font-family: "Open Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.71;
    letter-spacing: normal;
    color: #ffffff; }
    @media screen and (min-width: 1080px) {
      .designguide__colour-palette div {
        font-size: 16px;
        line-height: 1.88; } }
    .designguide__colour-palette div:nth-child(2) {
      background: #142533; }
    .designguide__colour-palette div:nth-child(3) {
      background: #41ccb4; }
    .designguide__colour-palette div:nth-child(4) {
      background: #6490f1; }
    .designguide__colour-palette div:nth-child(5) {
      background: #27d0e2; }
    .designguide__colour-palette div:nth-child(6) {
      background: #000000; }
    .designguide__colour-palette div:nth-child(7) {
      background: #666666; }
    .designguide__colour-palette div:nth-child(8) {
      background: #999999; }
    .designguide__colour-palette div:nth-child(9) {
      background: #f9f9f9;
      color: #666666; }
    .designguide__colour-palette div:nth-child(10) {
      background: #ea2e49; }
    .designguide__colour-palette div:nth-child(11) {
      background: #ffd24a; }
  .designguide__buttons-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap; }
    .designguide__buttons-section__heading {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
      flex: 0 0 100%; }
    .designguide__buttons-section__col {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 33%;
      flex: 0 0 33%; }
  .designguide__buttons-section--color button:nth-child(2) {
    background: #41ccb4;
    color: #ffffff; }
  .designguide__buttons-section--color button:nth-child(3) {
    background: #6490f1;
    color: #ffffff; }
  .designguide__buttons-section--color button:nth-child(4) {
    background: #27d0e2;
    color: #ffffff; }
  .designguide__buttons-section--logo button:nth-child(2), .designguide a:nth-child(2) {
    color: #999999;
    border: #999999 1px solid;
    font-size: 12px;
    line-height: 24px;
    padding: 12px 20px; }
    .designguide__buttons-section--logo button:nth-child(2) i, .designguide__buttons-section--logo button:nth-child(2) svg, .designguide a:nth-child(2) i, .designguide a:nth-child(2) svg {
      height: 24px;
      width: auto;
      display: inline-block;
      color: black;
      vertical-align: middle;
      margin-left: 1px; }
  .designguide__buttons-section--logo button:nth-child(3), .designguide a:nth-child(3) {
    color: #999999;
    border: #999999 1px solid;
    font-size: 12px;
    line-height: 24px;
    padding: 12px 20px; }
    .designguide__buttons-section--logo button:nth-child(3) i, .designguide__buttons-section--logo button:nth-child(3) svg, .designguide a:nth-child(3) i, .designguide a:nth-child(3) svg {
      height: 24px;
      width: auto;
      display: inline-block;
      color: black;
      vertical-align: middle;
      margin-left: 1px; }
  .designguide__buttons-section--logo button:nth-child(5), .designguide a:nth-child(5) {
    color: #999999;
    border: #999999 1px solid;
    font-size: 12px;
    line-height: 14px;
    padding: 17px 20px;
    width: 200px; }
    .designguide__buttons-section--logo button:nth-child(5) i, .designguide__buttons-section--logo button:nth-child(5) svg, .designguide a:nth-child(5) i, .designguide a:nth-child(5) svg {
      height: 14px;
      width: auto;
      display: inline-block;
      color: black;
      vertical-align: middle;
      margin-left: 1px; }
    .designguide__buttons-section--logo button:nth-child(5) i, .designguide a:nth-child(5) i {
      padding: 9px 20px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; }
  .designguide__buttons-section--outline button:nth-child(2) {
    font-size: 14px;
    line-height: 18px;
    border: #999999 1px solid;
    color: #999999;
    width: 215px; }
  .designguide__buttons-section--outline button:nth-child(3) {
    font-size: 14px;
    line-height: 18px;
    border: #41ccb4 1px solid;
    color: #41ccb4; }
  .designguide__buttons-section--outline button:nth-child(4) {
    font-size: 14px;
    line-height: 18px;
    border: #27d0e2 1px solid;
    color: #27d0e2; }
  .designguide__button {
    display: block;
    margin: 10px 0;
    min-width: 140px; }
  .designguide__form__text {
    margin: 30px 0;
    position: relative;
    font-family: "Museo Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
    font-size: 14px;
    color: #999999; }
    .designguide__form__text > input {
      border: 1px solid #d8d8d8;
      border-radius: 4px;
      height: 50px;
      max-width: 486px;
      display: block;
      line-height: 1.71;
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      width: 100%;
      padding: 7px 13px; }
    .designguide__form__text > label {
      position: absolute;
      line-height: 1.71;
      left: 13px;
      top: 13px; }
    .designguide__form__text > input:focus + label {
      top: 7px;
      left: 13px;
      font-size: 10px; }
    .designguide__form__text > input:focus {
      outline: none;
      padding-top: 22px;
      border: 1px solid #41ccb4; }
  .designguide__form__quantity-input-wrap {
    position: relative;
    text-align: center;
    width: 80px;
    font-family: "Rubik", sans-serif;
    line-height: 2; }
    .designguide__form__quantity-input-wrap > input[type="number"] {
      -webkit-appearance: none;
      -moz-appearance: textfield;
      appearance: none;
      width: 32px;
      height: 24px;
      font-size: 12px;
      color: #999999;
      border: 1px solid #999999;
      padding: 6px; }
    .designguide__form__quantity-input-wrap:before {
      position: absolute;
      content: "-";
      color: #999999;
      border: 1px solid #999999;
      border-right: none;
      border-top-left-radius: 4px;
      border-bottom-left-radius: 4px;
      height: 22px;
      width: 22px;
      left: 1px; }
    .designguide__form__quantity-input-wrap:after {
      position: absolute;
      content: "+";
      color: #999999;
      border: 1px solid #999999;
      border-left: none;
      border-top-right-radius: 4px;
      border-bottom-right-radius: 4px;
      height: 22px;
      width: 22px; }

.homepage-main-banner {
  text-align: center;
  margin: auto;
  overflow: hidden;
  background-color: #f3f3f3; }
  @media screen and (max-width: 767px) {
    .homepage-main-banner {
      background-position: 0px 139px;
      height: 590px;
      background-position: center 139px;
      background-repeat: no-repeat;
      background-size: auto 451px; } }
  @media screen and (min-width: 768px) {
    .homepage-main-banner {
      position: relative;
      background-position: center;
      background-size: auto 630px;
      background-repeat: no-repeat;
      height: 550px; } }
  @media screen and (min-width: 1080px) {
    .homepage-main-banner {
      height: 691px;
      background-size: auto 771px; } }
  @media screen and (min-width: 1280px) {
    .homepage-main-banner {
      background-size: cover !important; } }
  .homepage-main-banner__content-container {
    text-align: center;
    padding: 0 20px;
    padding-top: 30px; }
    @media screen and (min-width: 768px) {
      .homepage-main-banner__content-container {
        max-width: 768px;
        padding: 0 40px;
        margin: auto;
        position: absolute;
        z-index: 100;
        text-align: left;
        top: 100px;
        width: 100%;
        padding-top: 0;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%); } }
    @media screen and (min-width: 1080px) {
      .homepage-main-banner__content-container {
        max-width: 1040px;
        padding: 0 20px;
        margin: auto;
        top: 175px;
        padding-right: 692px; } }
  .homepage-main-banner__main-heading {
    color: #142533;
    font-family: "Museo Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
    font-size: 44px;
    font-weight: 300;
    line-height: 1.23;
    letter-spacing: -2px;
    font-style: normal;
    font-stretch: normal; }
    @media screen and (max-width: 1079px) {
      .homepage-main-banner__main-heading {
        font-size: 34px;
        line-height: 1.59;
        letter-spacing: -1.5px; } }
    @media screen and (min-width: 768px) {
      .homepage-main-banner__main-heading {
        font-size: 44px;
        line-height: 54px; } }
    .homepage-main-banner__main-heading strong {
      font-family: "Museo Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
      font-size: 44px;
      font-weight: 500;
      line-height: 1.23;
      font-style: normal;
      font-stretch: normal;
      letter-spacing: -0.3px; }
      @media screen and (max-width: 1079px) {
        .homepage-main-banner__main-heading strong {
          font-size: 34px;
          line-height: 1.59;
          letter-spacing: -0.2px; } }
      @media screen and (min-width: 768px) {
        .homepage-main-banner__main-heading strong {
          font-size: 44px;
          line-height: 1.23; } }
  .homepage-main-banner__caption {
    font-family: "Open Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.71;
    letter-spacing: normal;
    font-size: 14px;
    color: #666666;
    margin-top: 20px; }
    @media screen and (min-width: 1080px) {
      .homepage-main-banner__caption {
        font-size: 16px;
        line-height: 1.88; } }
    @media screen and (min-width: 768px) {
      .homepage-main-banner__caption {
        font-family: "Open Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
        font-size: 14px;
        font-weight: normal;
        font-style: normal;
        font-stretch: normal;
        line-height: 1.71;
        letter-spacing: normal;
        font-size: 16px;
        line-height: 30px;
        max-width: 331px; } }
  @media screen and (min-width: 768px) and (min-width: 1080px) {
    .homepage-main-banner__caption {
      font-size: 16px;
      line-height: 1.88; } }
    @media screen and (min-width: 1080px) {
      .homepage-main-banner__caption {
        max-width: unset; } }
  .homepage-main-banner__cta-link {
    background: #41ccb4;
    color: #ffffff;
    width: 120px;
    margin: auto;
    margin-top: 10px;
    height: 40px;
    padding: 10px 20px; }
    @media screen and (min-width: 768px) {
      .homepage-main-banner__cta-link {
        margin: unset;
        margin-top: 10px;
        text-align: center;
        padding: 13px 20px;
        width: 140px;
        height: 50px;
        line-height: 24px; } }
    @media screen and (max-width: 767px) {
      .homepage-main-banner__cta-link {
        font-size: 14px; } }
  .homepage-main-banner__rating {
    font-family: "Open Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.71;
    letter-spacing: normal;
    padding: 20px 0; }
    @media screen and (min-width: 1080px) {
      .homepage-main-banner__rating {
        font-size: 16px;
        line-height: 1.88; } }
    .homepage-main-banner__rating .yotpo .pull-left {
      float: none;
      text-align: center; }
      @media screen and (min-width: 768px) {
        .homepage-main-banner__rating .yotpo .pull-left {
          text-align: left; } }
      .homepage-main-banner__rating .yotpo .pull-left .text-m {
        line-height: 22px;
        cursor: pointer !important; }
    .homepage-main-banner__rating .yotpo a {
      margin-left: 5px;
      color: #999999 !important;
      cursor: default !important;
      font-family: "Open Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
      font-size: 12px;
      font-weight: normal; }
      @media screen and (min-width: 768px) {
        .homepage-main-banner__rating .yotpo a {
          font-size: 13px; } }
      .homepage-main-banner__rating .yotpo a:hover {
        color: #999999 !important; }
  .homepage-main-banner__image-mobile {
    display: block;
    max-height: 465px;
    margin-left: auto; }
    @media screen and (min-width: 768px) {
      .homepage-main-banner__image-mobile {
        display: none; } }

.icon__cross-close {
  position: absolute;
  width: 13px;
  height: 13px;
  top: 11px;
  right: 0px;
  -webkit-transition: rotation 0.25s ease-in-out;
  transition: rotation 0.25s ease-in-out; }
  .icon__cross-close:after, .icon__cross-close:before {
    content: '';
    display: block;
    position: absolute;
    height: 13px;
    width: 2px;
    background: #1d2028;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto; }
  .icon__cross-close:after {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg); }
  .icon__cross-close:before {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }

.icon__hamburger {
  width: 16px;
  height: 16px;
  padding: 2px 1px; }
  .icon__hamburger span {
    width: 100%;
    height: 2px;
    background: #000000;
    display: block; }
  .icon__hamburger span:nth-child(1), .icon__hamburger span:nth-child(2) {
    margin-bottom: 3px; }

.icon__x-close {
  width: 16px;
  height: 16px;
  padding: 3px 1px;
  position: relative;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg); }
  .icon__x-close span {
    display: block;
    background: #000000;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto; }
  .icon__x-close span:nth-child(1) {
    height: 100%;
    width: 2px; }
  .icon__x-close span:nth-child(2) {
    width: 100%;
    height: 2px; }

.icon__chevron {
  position: relative;
  display: inline-block;
  height: 9px;
  width: 10px;
  vertical-align: middle; }
  .icon__chevron:before {
    content: '';
    display: block;
    position: absolute;
    border-left: 2px solid #999999;
    border-top: 2px solid #999999;
    width: 5px;
    height: 5px;
    left: 0;
    right: 0;
    margin: auto; }
  .icon__chevron--left:before {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg); }
  .icon__chevron--top:before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg); }
  .icon__chevron--right:before {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg); }
  .icon__chevron--bottom:before {
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg); }

.js-accordion__list-trigger {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer; }

.js-accordion__list-expander {
  display: block; }
  @media (max-width: 767px) {
    .js-accordion__list-expander {
      max-height: 0;
      overflow: hidden;
      -webkit-transition: max-height 0.25s ease-in-out, border-color 0.25s linear;
      transition: max-height 0.25s ease-in-out, border-color 0.25s linear; } }

.js-accordion__list--open .js-accordion__list-expander {
  max-height: 2000px; }

.homepage-cta-banner {
  text-align: center;
  padding: 0 20px; }
  @media screen and (min-width: 768px) {
    .homepage-cta-banner {
      max-width: 100%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: start;
      -ms-flex-align: start;
      align-items: flex-start;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between;
      max-width: 768px;
      padding: 0 40px;
      margin: auto;
      padding: 100px 0; } }
  @media screen and (min-width: 1080px) {
    .homepage-cta-banner {
      max-width: 1040px;
      padding: 0 20px;
      margin: auto;
      padding: 148px 0 149px; } }
  @media screen and (min-width: 768px) {
    .homepage-cta-banner__content-container {
      -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
      order: 2;
      text-align: right;
      margin: 0 40px 0 60px;
      -webkit-box-flex: 1;
      -ms-flex: 1;
      flex: 1; } }
  @media screen and (min-width: 1080px) {
    .homepage-cta-banner__content-container {
      -webkit-box-flex: 0;
      -ms-flex: 0 1 315px;
      flex: 0 1 315px;
      max-width: 315px; } }
  .homepage-cta-banner__heading {
    margin-top: 75px;
    font-family: "Museo Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
    font-size: 44px;
    font-weight: 300;
    line-height: 1.23;
    letter-spacing: -2px;
    font-style: normal;
    font-stretch: normal;
    color: #142533; }
    @media screen and (max-width: 1079px) {
      .homepage-cta-banner__heading {
        font-size: 34px;
        line-height: 1.59;
        letter-spacing: -1.5px; } }
    .homepage-cta-banner__heading strong {
      font-family: "Museo Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
      font-size: 44px;
      font-weight: 500;
      line-height: 1.23;
      font-style: normal;
      font-stretch: normal;
      letter-spacing: -0.3px; }
      @media screen and (max-width: 1079px) {
        .homepage-cta-banner__heading strong {
          font-size: 34px;
          line-height: 1.59;
          letter-spacing: -0.2px; } }
      @media screen and (min-width: 768px) {
        .homepage-cta-banner__heading strong {
          font-size: 44px;
          line-height: 1.23; } }
    @media screen and (min-width: 768px) {
      .homepage-cta-banner__heading {
        font-size: 44px;
        line-height: 1.23; } }
  .homepage-cta-banner__caption {
    font-family: "Open Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.71;
    letter-spacing: normal;
    font-size: 14px;
    color: #666666;
    margin-bottom: 30px;
    margin-top: 21px; }
    @media screen and (min-width: 1080px) {
      .homepage-cta-banner__caption {
        font-size: 16px;
        line-height: 1.88; } }
    @media screen and (min-width: 1080px) {
      .homepage-cta-banner__caption {
        font-size: 14px;
        margin-bottom: 40px;
        margin-top: 20px; } }
  .homepage-cta-banner__cta-link {
    width: 120px;
    height: 40px;
    padding: 12px 20px;
    margin: auto;
    font-size: 16px;
    line-height: 1; }
    @media screen and (min-width: 768px) {
      .homepage-cta-banner__cta-link {
        margin: 0;
        margin-left: auto;
        width: 150px;
        height: 50px;
        padding: 14px 20px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center; } }
    @media screen and (min-width: 1080px) {
      .homepage-cta-banner__cta-link {
        margin: 0 0 0 auto; } }
    @media screen and (max-width: 767px) {
      .homepage-cta-banner__cta-link {
        font-size: 14px; } }
  .homepage-cta-banner__image {
    height: 264px; }
    @media screen and (min-width: 768px) {
      .homepage-cta-banner__image {
        height: 393px; } }
    .homepage-cta-banner__image img {
      height: 264px;
      width: auto;
      -webkit-box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
      box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1); }
      @media screen and (min-width: 768px) {
        .homepage-cta-banner__image img {
          height: 393px;
          margin-left: -225px; } }
      @media screen and (min-width: 1080px) {
        .homepage-cta-banner__image img {
          margin-left: 0px; } }
      @media screen and (max-width: 767px) {
        .homepage-cta-banner__image img {
          margin-top: 40px;
          display: block;
          margin-left: -20px; } }

.cart {
  padding: 13px 20px 20px; }
  @media screen and (min-width: 1080px) {
    .cart {
      padding-top: 55px; } }
  .cart__flyout {
    display: none;
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100000;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end; }
    .cart__flyout-overlay {
      background: transparent;
      background: rgba(102, 102, 102, 0.4);
      -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
      flex: 1 0 100%;
      max-width: 100%;
      position: absolute;
      width: 100%;
      height: 100%;
      -webkit-touch-callout: none;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none;
      cursor: pointer; }
    .cart__flyout-cart {
      position: absolute;
      top: 0;
      right: 0;
      -webkit-transition: -webkit-transform 0.3s linear;
      transition: -webkit-transform 0.3s linear;
      transition: transform 0.3s linear;
      transition: transform 0.3s linear, -webkit-transform 0.3s linear;
      -webkit-transform: translateX(100%);
      transform: translateX(100%);
      background: #ffffff;
      -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
      flex: 1 0 100%;
      max-width: 300px;
      width: 100%;
      height: 100%;
      padding: 0 20px 20px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
      flex-flow: column nowrap; }
      @media screen and (min-width: 768px) {
        .cart__flyout-cart {
          -webkit-box-flex: 1;
          -ms-flex: 1 0 100%;
          flex: 1 0 100%;
          max-width: 440px;
          width: 100%;
          padding: 0 30px; } }
      .cart__flyout-cart--active {
        -webkit-transform: translateX(0%);
        transform: translateX(0%); }
    .cart__flyout--active {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; }
    @media screen and (min-width: 768px) {
      .cart__flyout .cart__header {
        margin-bottom: 20px; } }
    @media screen and (min-width: 768px) {
      .cart__flyout .cart__summary {
        width: 100%; } }
    @media screen and (min-width: 768px) {
      .cart__flyout .cart__summary-cost {
        margin-top: 20px;
        margin-bottom: 50px; } }
    @media screen and (min-width: 768px) {
      .cart__flyout .cart__summary-buttons {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-flow: wrap;
        flex-flow: wrap;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between; } }
    .cart__flyout .cart__button--checkout {
      font-size: 14px;
      line-height: 24px;
      padding: 7px 20px; }
      @media screen and (min-width: 768px) {
        .cart__flyout .cart__button--checkout {
          margin-bottom: 0px;
          font-size: 16px;
          padding: 12px 20px; } }
    @media screen and (min-width: 768px) {
      .cart__flyout .cart__button--paypal, .cart__flyout .cart__button--apple-pay {
        -webkit-box-flex: 48%;
        -ms-flex: 48%;
        flex: 48%;
        height: 50px;
        max-width: calc(50% - 5px); } }
    @media screen and (min-width: 768px) {
      .cart__flyout .cart__item-details {
        display: initial; } }
    .cart__flyout .cart__item-image {
      -webkit-box-flex: 1;
      -ms-flex: 1 0 40px;
      flex: 1 0 40px;
      max-width: 40px;
      text-align: center; }
      @media screen and (min-width: 768px) {
        .cart__flyout .cart__item-image {
          -webkit-box-flex: 1;
          -ms-flex: 1 0 50px;
          flex: 1 0 50px;
          max-width: 50px; } }
      .cart__flyout .cart__item-image img {
        max-width: 100%;
        max-height: 50px;
        vertical-align: top;
        display: inline-block; }
    @media screen and (min-width: 768px) {
      .cart__flyout .cart__details:nth-child(2) {
        padding-top: 7px; } }
    @media screen and (min-width: 768px) {
      .cart__flyout .cart__details-title {
        margin-left: 0; } }
  @media screen and (min-width: 768px) {
    .cart__container {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between;
      max-width: 1040px;
      padding: 0 20px;
      margin: auto;
      -ms-flex-flow: wrap;
      flex-flow: wrap;
      position: relative; } }
  @media screen and (min-width: 1080px) {
    .cart__container {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-flow: initial;
      flex-flow: initial; } }
  .cart__title {
    font-family: "Museo Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.23;
    line-break: 1.5;
    font-size: 24px;
    color: #142533;
    margin-bottom: 10px; }
    @media screen and (min-width: 768px) {
      .cart__title {
        font-size: 24px; } }
    @media screen and (min-width: 768px) {
      .cart__title {
        margin-bottom: 20px;
        line-height: 32px; } }
  .cart__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 17px 0 19px;
    width: 100%; }
    .cart__header-caption {
      text-transform: uppercase;
      font-family: "Museo Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
      font-size: 16px;
      font-weight: 500;
      line-height: 1.23;
      line-height: 1.5;
      color: #142533;
      font-weight: 500; }
      @media screen and (min-width: 768px) {
        .cart__header-caption {
          font-size: 18px;
          line-height: 28px; } }
    .cart__header svg {
      vertical-align: top; }
    .cart__header-close {
      -webkit-touch-callout: none;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none;
      cursor: pointer; }
    @media screen and (min-width: 1080px) {
      .cart__header {
        padding-bottom: 38px; } }
  .cart__content {
    width: 100%;
    overflow-y: auto; }
    .cart__content::-webkit-scrollbar {
      display: none; }
    .cart__content-empty {
      font-family: "Open Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
      font-size: 14px;
      line-height: 1.71;
      color: #666666;
      text-align: center; }
    .cart__content-item {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      width: 100%;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      margin-bottom: 23px; }
      .cart__content-item--last {
        margin-bottom: 14px; }
        @media screen and (min-width: 1080px) {
          .cart__content-item--last {
            margin-bottom: 23px; } }
    @media screen and (min-width: 768px) {
      .cart__content--page {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 100%;
        flex: 1 0 100%;
        max-width: 100%; } }
    @media screen and (min-width: 1080px) {
      .cart__content--page {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 486px;
        flex: 1 0 486px;
        max-width: 486px; } }
    .cart__content--page .cart__button--continue {
      margin: 0;
      max-width: 176px;
      line-height: normal;
      height: auto;
      padding: 15.5px 8px; }
      @media screen and (min-width: 768px) {
        .cart__content--page .cart__button--continue {
          position: absolute;
          bottom: 125px;
          max-width: 196px;
          width: 196px;
          line-height: 24px; } }
      @media screen and (min-width: 1080px) {
        .cart__content--page .cart__button--continue {
          position: initial; } }
  .cart__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 100%;
    flex: 1 0 100%;
    max-width: 100%;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding-bottom: 28px;
    border-bottom: 1px solid #eeeeee; }
    @media screen and (min-width: 768px) {
      .cart__item {
        border-bottom: 1px solid #d8d8d8; } }
    @media screen and (min-width: 1080px) {
      .cart__item {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 100%;
        flex: 1 0 100%;
        max-width: 100%; } }
    .cart__item-details {
      -webkit-box-flex: 1;
      -ms-flex: 1 0 calc(100% - 40px);
      flex: 1 0 calc(100% - 40px);
      max-width: calc(100% - 40px);
      padding-left: 10.5px; }
      @media screen and (min-width: 768px) {
        .cart__item-details {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-pack: justify;
          -ms-flex-pack: justify;
          justify-content: space-between; } }
      @media screen and (min-width: 1080px) {
        .cart__item-details {
          display: initial;
          padding-left: 18.5px;
          -webkit-box-flex: 1;
          -ms-flex: 1 0 calc(100% - 50px);
          flex: 1 0 calc(100% - 50px);
          max-width: calc(100% - 50px); } }
      @media screen and (min-width: 1080px) {
        .cart__item-details--page {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          padding-left: 19px; } }
    .cart__item--page {
      padding-bottom: 22px; }
      @media screen and (min-width: 1080px) {
        .cart__item--page {
          -webkit-box-align: start;
          -ms-flex-align: start;
          align-items: flex-start; } }
      @media screen and (min-width: 768px) {
        .cart__item--page {
          padding-bottom: 20px; } }
    @media screen and (min-width: 1080px) {
      .cart__item--last {
        border-color: transparent; } }
  .cart__details {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    color: #666666;
    font-size: 14px; }
    .cart__details:nth-child(2) {
      padding-top: 7px; }
      @media screen and (min-width: 768px) {
        .cart__details:nth-child(2) {
          padding-top: 0px; } }
    .cart__details-title {
      font-family: "Open Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
      line-height: 1.71; }
      @media screen and (min-width: 768px) {
        .cart__details-title {
          margin-left: 25px; } }
      .cart__details-title h2 {
        line-height: 24px; }
    .cart__details-instock {
      font-family: "Open Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
      font-size: 13px;
      line-height: 22px;
      color: #41ccb4; }
    .cart__details-price {
      font-family: "Rubik", sans-serif; }
      @media screen and (min-width: 768px) {
        .cart__details-price {
          -webkit-box-flex: 1;
          -ms-flex: 1;
          flex: 1;
          text-align: right;
          line-height: 24px; } }
    .cart__details-quantity {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; }
    .cart__details-trash {
      padding-left: 10px;
      line-height: 1.71;
      -webkit-touch-callout: none;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none;
      cursor: pointer;
      -ms-flex-item-align: start;
      align-self: flex-start; }
      @media screen and (min-width: 768px) {
        .cart__details-trash {
          -ms-flex-item-align: center;
          align-self: center;
          margin-left: 20px; } }
    @media screen and (min-width: 768px) {
      .cart__details--page:nth-child(1) {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start; }
      .cart__details--page:nth-child(2) {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between; } }
    @media screen and (min-width: 1080px) {
      .cart__details--page {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        -webkit-box-flex: 1;
        -ms-flex: 1 0 70%;
        flex: 1 0 70%;
        max-width: 100%;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding-left: 65px; }
        .cart__details--page:nth-child(1) {
          -webkit-box-flex: 1;
          -ms-flex: 1 0 30%;
          flex: 1 0 30%;
          max-width: 30%;
          -webkit-box-pack: start;
          -ms-flex-pack: start;
          justify-content: flex-start;
          padding-left: 0; }
        .cart__details--page:nth-child(2) {
          padding-top: 0px; }
        .cart__details--page .cart__details-quantity {
          margin-right: auto; }
        .cart__details--page .cart__details-price {
          margin-right: 18px; }
        .cart__details--page .cart__details-trash {
          -ms-flex-item-align: center;
          align-self: center; } }
  .cart__quantity {
    color: #999999;
    border: 1px solid #999999;
    vertical-align: top;
    width: 24px;
    height: 24px;
    position: relative;
    font-family: "Rubik", sans-serif;
    font-size: 12px; }
    .cart__quantity--dec {
      border-right: none;
      border-top-left-radius: 4px;
      border-bottom-left-radius: 4px;
      -webkit-touch-callout: none;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none;
      cursor: pointer; }
      .cart__quantity--dec:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        margin: auto;
        height: 1px;
        width: 11px;
        background: #999999; }
    .cart__quantity--inc {
      border-left: none;
      border-top-right-radius: 4px;
      border-bottom-right-radius: 4px;
      -webkit-touch-callout: none;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none;
      cursor: pointer; }
      .cart__quantity--inc:before, .cart__quantity--inc:after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        margin: auto; }
      .cart__quantity--inc:before {
        height: 1px;
        width: 11px;
        background: #999999; }
      .cart__quantity--inc:after {
        width: 1px;
        height: 11px;
        background: #999999; }
    .cart__quantity-input {
      width: 32px;
      font-size: 12px;
      padding: 6px;
      -webkit-appearance: none;
      -moz-appearance: textfield;
      appearance: none;
      text-align: center; }
      .cart__quantity-input::-webkit-inner-spin-button, .cart__quantity-input::-webkit-outer-spin-button {
        -webkit-appearance: none;
        appearance: none;
        margin: 0; }
  .cart__checkout-form--checkout {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 100%;
    flex: 1 0 100%;
    max-width: 100%; }
  .cart__button {
    background: #41ccb4;
    color: #ffffff;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 100%;
    flex: 1 0 100%;
    max-width: 100%;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
    display: block;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    line-height: normal;
    padding: 8px 20px;
    margin: 10px 0;
    width: 100%; }
    .cart__button--apple-pay {
      color: #999999;
      border: #999999 1px solid;
      font-size: 12px;
      line-height: 40px;
      padding: 4px 20px;
      padding: 8px 20px;
      background: transparent;
      position: relative;
      height: 40px; }
      .cart__button--apple-pay i, .cart__button--apple-pay svg {
        height: 40px;
        width: auto;
        display: inline-block;
        color: black;
        vertical-align: middle;
        margin-left: 1px; }
      .cart__button--apple-pay svg {
        position: absolute;
        width: 55px !important;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        margin: auto; }
    .cart__button--paypal {
      color: #142533;
      border: #142533 1px solid;
      font-size: 12px;
      line-height: 20px;
      padding: 14px 20px;
      padding: 8px 15px;
      background: transparent;
      border-color: #999999;
      font-family: "Museo Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
      font-size: 12px;
      line-height: 2; }
      .cart__button--paypal i, .cart__button--paypal svg {
        height: 20px;
        width: auto;
        display: inline-block;
        color: black;
        vertical-align: middle;
        margin-left: 1px; }
      .cart__button--paypal svg {
        width: 65px; }
      .cart__button--paypal span {
        margin-right: 5.1px; }
    @media screen and (min-width: 1080px) {
      .cart__button {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 calc(50% - 5px);
        flex: 1 0 calc(50% - 5px);
        max-width: calc(50% - 5px);
        height: 50px;
        padding: 14px 15px; } }
    @media screen and (min-width: 1080px) {
      .cart__button--paypal {
        padding: 8px 11px; } }
    .cart__button--checkout {
      -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
      flex: 1 0 100%;
      max-width: 100%;
      padding: 10.5px 20px;
      font-size: 16px;
      line-height: 1; }
      @media screen and (min-width: 768px) {
        .cart__button--checkout {
          font-size: 15px; } }
      @media screen and (min-width: 1080px) {
        .cart__button--checkout {
          padding: 15.5px 20px; } }
    .cart__button--continue {
      font-size: 14px;
      line-height: 18px;
      border: #999999 1px solid;
      color: #999999;
      background: white;
      margin-top: 30px; }
      @media screen and (min-width: 768px) {
        .cart__button--continue {
          font-size: 16px; } }
  @media screen and (min-width: 768px) {
    .cart__summary {
      margin-left: auto;
      width: 47%; } }
  .cart__summary-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap; }
    @media screen and (min-width: 1080px) {
      .cart__summary-buttons {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        margin-top: 53px; } }
    .cart__summary-buttons--page {
      margin-top: 16px; }
      @media screen and (min-width: 1080px) {
        .cart__summary-buttons--page .cart__button {
          -webkit-box-flex: 1;
          -ms-flex: 1 0 100%;
          flex: 1 0 100%;
          max-width: 100%; } }
  .cart__summary-title {
    font-family: "Museo Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.56;
    color: #142533;
    text-align: center;
    letter-spacing: -0.2px;
    margin-bottom: 43px;
    text-transform: uppercase; }
  @media screen and (min-width: 1080px) {
    .cart__summary--page {
      -webkit-box-flex: 1;
      -ms-flex: 1 0 400px;
      flex: 1 0 400px;
      max-width: 400px;
      background: #f9f9f9;
      padding: 21px 43px 40px 37px; } }
  .cart__cost {
    padding-top: 7px;
    font-family: "Open Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
    font-size: 14px;
    color: #666666;
    line-height: 1.71;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between; }
    .cart__cost:first-child {
      padding-top: 0px;
      line-height: 24px; }
    .cart__cost-price {
      font-family: "Rubik", sans-serif;
      font-weight: normal;
      font-size: 14px; }
      .cart__cost-price--total {
        font-weight: 500;
        font-size: 16px;
        line-height: 24px; }
    .cart__cost--total {
      padding-top: 10px;
      font-weight: 600;
      line-height: 30px;
      font-size: 16px; }
  .cart__recommended {
    margin-top: 32px; }
    .cart__recommended data {
      display: none; }
    .cart__recommended-header {
      font-size: 13px;
      font-family: "Museo Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
      font-weight: 500;
      color: #41ccb4;
      text-transform: uppercase;
      margin-bottom: 10px; }
    .cart__recommended-product {
      background: #f9f9f9;
      width: 100%;
      padding: 12px 17px 15px 10px; }
      @media screen and (min-width: 768px) {
        .cart__recommended-product {
          padding: 24px 30px; } }
    .cart__recommended-form {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; }
      @media screen and (min-width: 768px) {
        .cart__recommended-form {
          -webkit-box-align: end;
          -ms-flex-align: end;
          align-items: flex-end; } }
    .cart__recommended-image {
      -webkit-box-flex: 1;
      -ms-flex: 1 0 40px;
      flex: 1 0 40px;
      max-width: 40px; }
      .cart__recommended-image img {
        max-width: 100%;
        vertical-align: top; }
      @media screen and (min-width: 768px) {
        .cart__recommended-image {
          -webkit-box-flex: 1;
          -ms-flex: 1 0 50px;
          flex: 1 0 50px;
          max-width: 50px; } }
    .cart__recommended-details {
      padding-left: 5px;
      -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
      flex: 1 0 auto;
      max-width: calc(100% - 40px);
      -webkit-box-align: start;
      -ms-flex-align: start;
      align-items: flex-start; }
      .cart__recommended-details h2 {
        font-family: "Open Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
        font-size: 14px;
        line-height: 24px;
        color: #666666;
        margin-bottom: 7px; }
      @media screen and (min-width: 768px) {
        .cart__recommended-details {
          padding-left: 8.5px; } }
    .cart__recommended-content {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between; }
    .cart__recommended-price {
      font-size: 14px;
      font-family: "Rubik", sans-serif;
      color: #666666; }
    .cart__recommended-atc {
      font-size: 14px;
      line-height: 18px;
      border: #41ccb4 1px solid;
      color: #41ccb4;
      padding: 5px 20px;
      font-size: 14px;
      font-weight: 500;
      width: 100%;
      line-height: 24px;
      background: transparent; }
      @media screen and (min-width: 768px) {
        .cart__recommended-atc {
          width: auto; } }
  .cart--fallback .cart__item-image {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 50px;
    flex: 1 0 50px;
    max-width: 50px; }
    .cart--fallback .cart__item-image img {
      max-width: 100%;
      vertical-align: top; }

html:root .cart__items .section__header {
  margin: 0;
  padding: 0; }

html:root .cart__items .section__title {
  font-family: "Museo Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.23;
  line-break: 1.5;
  color: #142533;
  margin: 0;
  margin-bottom: 10px;
  text-transform: unset; }
  @media screen and (min-width: 768px) {
    html:root .cart__items .section__title {
      font-size: 24px; } }

html:root .complete-order {
  background-color: #f9f9f9; }

header {
  border-bottom: 1px solid transparent;
  width: 100%; }
  header.header--fixed {
    top: 0px;
    left: 0px;
    position: fixed;
    width: 100%;
    z-index: 99999; }
  header.header--borderless {
    border: none; }
  @media screen and (min-width: 768px) {
    header.stickied {
      border-bottom: 1px solid #d8d8d8; }
      header.stickied .header-container.header__subbar.header__subbar--active {
        max-height: 60px; }
      header.stickied .header-container.header__subbar.header__subbar--inactive {
        max-height: 0px; }
      header.stickied .header-container.header__subbar .header {
        padding-top: 20px;
        padding-bottom: 16px; }
        header.stickied .header-container.header__subbar .header__logo {
          -webkit-box-flex: 1;
          -ms-flex: 1 0 81x;
          flex: 1 0 81x;
          max-width: 81px; } }

.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  position: relative;
  width: 100%;
  z-index: 2;
  padding: 10px 21px 10px 20px; }
  .header-container {
    background: #ffffff;
    width: 100%; }
  .header__subbar {
    background: #ffffff;
    max-height: 0px; }
    @media screen and (min-width: 768px) {
      .header__subbar {
        overflow-y: hidden; } }
    .header__subbar--inactive {
      max-height: 0px; }
    .header__subbar--active {
      max-height: 100px; }
      .header__subbar--active.subbar__crypto {
        overflow-y: visible; }
    .header__subbar__pdp {
      background: rgba(255, 255, 255, 0.95); }
  .header__logo {
    margin-right: auto; }
    .header__logo svg {
      width: 80px; }
    @media screen and (min-width: 768px) {
      .header__logo {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
        margin-right: 0;
        -webkit-box-flex: 1;
        -ms-flex: 1 0 97px;
        flex: 1 0 97px;
        max-width: 97px; }
        .header__logo svg {
          width: 100%; } }
  .header__nav {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 100%;
    flex: 1 0 100%;
    max-width: 100%;
    position: absolute;
    top: 100%;
    top: calc(100% - 1px);
    left: 0;
    width: 100%;
    background: #ffffff;
    padding: 0 20px;
    border-bottom: 1px solid transparent; }
    .header__nav ul {
      list-style-type: none; }
      .header__nav ul li {
        padding-bottom: 20px; }
        .header__nav ul li:not(:first-child) a {
          color: #000000; }
      .header__nav ul li:last-child {
        padding-bottom: 0; }
    .header__nav nav {
      margin: 32px 0 48px; }
    .header__nav a {
      font-family: "Museo Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
      font-size: 16px;
      font-weight: 500;
      line-height: 1.23;
      font-size: 14px;
      font-style: normal;
      font-stretch: normal;
      line-height: normal;
      letter-spacing: -0.1px;
      color: #142533; }
    @media screen and (min-width: 768px) {
      .header__nav {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        max-width: 100%;
        width: auto;
        position: relative;
        padding: 0;
        border-bottom: none;
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2; }
        .header__nav ul {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
          -ms-flex-align: center;
          align-items: center; }
          .header__nav ul li {
            padding-bottom: 0;
            margin-right: 40px; }
          .header__nav ul li:last-child {
            margin-right: 0px; }
        .header__nav nav {
          margin: 0; } }
    @media screen and (min-width: 1080px) {
      .header__nav ul li {
        margin-right: 65px; } }
  .header__hamburger {
    margin-left: 23px;
    position: relative; }
    .header__hamburger .icon__x-close {
      position: absolute;
      top: 0;
      left: 0; }
      .header__hamburger .icon__x-close span:nth-child(1) {
        height: 0%; }
      .header__hamburger .icon__x-close span:nth-child(2) {
        width: 0%; }
    @media screen and (min-width: 768px) {
      .header__hamburger {
        display: none; } }
  .header__cart {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer; }
    .header__cart--count {
      display: none; }
    @media screen and (min-width: 768px) {
      .header__cart {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
        position: relative; }
        .header__cart--count {
          background: #41ccb4;
          position: absolute;
          border-radius: 1000px;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-pack: center;
          -ms-flex-pack: center;
          justify-content: center;
          -webkit-box-align: center;
          -ms-flex-align: center;
          align-items: center;
          font-size: 8px;
          color: #ffffff;
          width: 12px;
          height: 12px;
          top: -5px;
          right: -4px; }
        .header__cart--count--hidden {
          display: none !important; } }
  .header.js-accordion__list--open {
    border-color: #ffffff; }
    .header.js-accordion__list--open .header__nav {
      border-color: #d8d8d8; }
    .header.js-accordion__list--open .header__hamburger .icon__x-close span:nth-child(1) {
      height: 100%; }
    .header.js-accordion__list--open .header__hamburger .icon__x-close span:nth-child(2) {
      width: 100%; }
    .header.js-accordion__list--open .header__hamburger .icon__hamburger span {
      width: 0; }
  .header svg {
    vertical-align: top; }
  .header--cart .header__hamburger, .header--cart .header__cart, .header--cart .header__nav {
    display: none; }
  @media screen and (min-width: 768px) {
    .header {
      max-width: 768px;
      padding: 0 40px;
      margin: auto;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between;
      -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
      padding-top: 30px;
      padding-bottom: 26px; } }
  @media screen and (min-width: 1080px) {
    .header {
      max-width: 1040px;
      padding: 0 20px;
      margin: auto;
      padding-top: 30px;
      padding-bottom: 26px; } }

.subbar__container {
  padding: 10px 20px;
  background: transparent; }
  .subbar__container--crypto {
    padding-top: 0px;
    padding-bottom: 0px; }
  @media screen and (max-width: 1079px) {
    .subbar__container {
      padding: 10px 40px; } }

.subbar__title {
  font-family: "Museo Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.23; }
  @media screen and (min-width: 768px) {
    .subbar__title {
      font-size: 24px; } }
  .subbar__title-pdp {
    font-weight: 300;
    letter-spacing: -0.5px;
    color: #142533; }
    .subbar__title-pdp--strong {
      font-weight: 500; }

.subbar__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: "Museo Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 16px;
  letter-spacing: -0.2px;
  color: #142533; }
  .subbar__content-pdp-price {
    font-family: "Rubik", sans-serif; }

.subbar__submit {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
  background: #41ccb4;
  color: #ffffff;
  padding: 10px 20px;
  letter-spacing: -0.1px;
  line-height: normal;
  margin-left: 19px; }

.subbar.header__subbar--active {
  border-bottom: 1px solid #ffffff; }
  @media screen and (min-width: 768px) {
    .subbar.header__subbar--active {
      border-color: #eeeeee; } }

html:root .header.header--flow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  position: relative;
  width: 100%;
  z-index: 0;
  padding: 10px 21px 10px 20px; }
  html:root .header.header--flow .header__logo {
    margin-right: auto; }

html:root .header.application__header {
  display: none; }

.footer {
  padding: 75px 20px 44px; }
  .footer--inactive {
    display: none; }
  .footer--pdp {
    padding-bottom: 100px; }
  .footer__parent-title {
    font-family: "Museo Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: normal;
    font-style: normal;
    font-stretch: normal;
    letter-spacing: -0.1px;
    color: #1d2028;
    padding: 10px 0;
    position: relative; }
    .footer__parent-title a {
      display: inline-block;
      pointer-events: none; }
    @media screen and (min-width: 768px) {
      .footer__parent-title .icon__cross-close {
        display: none; } }
    @media screen and (min-width: 768px) {
      .footer__parent-title {
        cursor: default;
        padding: 0 0 10px; } }
  .footer__parent-list {
    list-style-type: none; }
    @media screen and (min-width: 768px) {
      .footer__parent-list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; } }
  .footer__parent-item {
    border-bottom: 1px solid #d8d8d8; }
    .footer__parent-item.js-accordion__list--open .icon__cross-close {
      -webkit-transform: rotate(45deg);
      transform: rotate(45deg); }
    @media screen and (min-width: 768px) {
      .footer__parent-item {
        border: none;
        -webkit-box-flex: 1;
        -ms-flex: 1 0 16.667%;
        flex: 1 0 16.667%;
        max-width: 16.667%; } }
  .footer__child-list {
    list-style-type: none;
    -webkit-text-size-adjust: 100%; }
  .footer__child-item {
    padding-bottom: 10px; }
    @media screen and (min-width: 768px) {
      .footer__child-item--last {
        padding-bottom: 0px; } }
  .footer__child-link {
    font-family: "Museo Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
    font-size: 12px;
    font-weight: 300;
    line-height: normal;
    font-style: normal;
    font-stretch: normal;
    letter-spacing: -0.1px;
    color: #1d2028; }
  .footer__logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 22px 0 19px 0; }
    .footer__logo svg {
      vertical-align: top; }
    .footer__logo-brand svg {
      width: 81px;
      height: 20px; }
    .footer__logo-social {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center; }
      .footer__logo-social-logo {
        padding-left: 10px; }
        .footer__logo-social-logo svg, .footer__logo-social-logo path, .footer__logo-social-logo g {
          fill: #999999; }
      .footer__logo-social > div.footer__logo-social-logo:first-child {
        padding-left: 0; }
    @media screen and (min-width: 768px) {
      .footer__logo {
        border-top: 1px solid #d8d8d8;
        margin-top: 46px; } }
  .footer__disclaimer {
    font-family: "Open Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
    font-size: 12px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.5;
    letter-spacing: -0.2px;
    color: #999999; }
  @media screen and (min-width: 768px) {
    .footer {
      max-width: 768px;
      padding: 0 40px;
      margin: auto;
      padding-top: 80px;
      padding-bottom: 73px; } }
  @media screen and (min-width: 1080px) {
    .footer {
      max-width: 1040px;
      padding: 0 20px;
      margin: auto;
      padding-top: 80px;
      padding-bottom: 73px; } }

.product {
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 35px; }
  @media screen and (min-width: 768px) {
    .product {
      max-width: 768px;
      padding: 0 40px;
      margin: auto; } }
  @media screen and (min-width: 1080px) {
    .product {
      max-width: 1040px;
      padding: 0 20px;
      margin: auto; } }
  .product__atc {
    padding: 10px 20px 6px 20px;
    border-top: 1px solid #d8d8d8;
    background: #ffffff; }
    .product__atc--fixed {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 99999; }
  .product__review {
    max-width: 1040px;
    padding: 0 20px;
    margin: auto; }
    @media screen and (min-width: 768px) {
      .product__review {
        max-width: 768px;
        padding: 0 40px;
        margin: auto; } }
    @media screen and (min-width: 1080px) {
      .product__review {
        max-width: 1040px;
        padding: 0 20px;
        margin: auto; } }
    .product__review__sort {
      -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
      flex: 1 0 100%;
      max-width: 100%;
      max-width: 100%;
      margin-top: 30px;
      margin-bottom: 80px; }
      .product__review__sort__container {
        max-width: 1040px;
        padding: 0 20px;
        margin: auto; }
        @media screen and (min-width: 768px) {
          .product__review__sort__container {
            max-width: 768px;
            padding: 0 40px;
            margin: auto;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: end;
            -ms-flex-pack: end;
            justify-content: flex-end; } }
        @media screen and (min-width: 1080px) {
          .product__review__sort__container {
            max-width: 1040px;
            padding: 0 20px;
            margin: auto; } }
      @media screen and (min-width: 768px) {
        .product__review__sort {
          -webkit-box-flex: 1;
          -ms-flex: 1 0 100%;
          flex: 1 0 100%;
          max-width: 235px;
          padding: 0px;
          margin-bottom: 46px; } }
      @media screen and (min-width: 1080px) {
        .product__review__sort {
          margin-bottom: 100px; } }
    .product__review__pagination {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
      flex-flow: row nowrap;
      max-width: 1040px;
      padding: 0 20px;
      margin: auto; }
      @media screen and (min-width: 768px) {
        .product__review__pagination {
          max-width: 768px;
          padding: 0 40px;
          margin: auto; } }
      @media screen and (min-width: 1080px) {
        .product__review__pagination {
          max-width: 1040px;
          padding: 0 20px;
          margin: auto; } }

#launcher {
  left: 0px !important; }
  @media screen and (max-width: 1079px) {
    #launcher {
      z-index: 99999 !important; } }

#template-product #launcher, #template-product-simple #launcher, #template-product-blue #launcher {
  bottom: 65px !important; }

@media screen and (min-width: 768px) {
  .product-details {
    padding-top: 100px;
    margin-bottom: 100px; } }

@media screen and (min-width: 1080px) {
  .product-details {
    padding-top: 73px;
    margin-bottom: 0px; } }

@media screen and (min-width: 768px) {
  .product-details__main-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; } }

.product-details__header {
  text-align: center; }
  @media screen and (min-width: 768px) {
    .product-details__header {
      text-align: right;
      -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
      order: 2;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-box-pack: end;
      -ms-flex-pack: end;
      justify-content: flex-end;
      -webkit-box-align: end;
      -ms-flex-align: end;
      align-items: flex-end; } }
  @media screen and (min-width: 1040px) {
    .product-details__header {
      text-align: right;
      -webkit-box-flex: 1;
      -ms-flex: 1;
      flex: 1;
      -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
      order: 2;
      padding-left: 100px; } }

.product-details__title {
  font-family: "Museo Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 44px;
  font-weight: 300;
  line-height: 1.23;
  letter-spacing: -2px;
  font-style: normal;
  font-stretch: normal;
  color: #142533; }
  @media screen and (max-width: 1079px) {
    .product-details__title {
      font-size: 34px;
      line-height: 1.59;
      letter-spacing: -1.5px; } }
  @media screen and (min-width: 768px) {
    .product-details__title {
      font-size: 44px; } }
  .product-details__title--bold {
    font-family: "Museo Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
    font-size: 44px;
    font-weight: 500;
    line-height: 1.23;
    font-style: normal;
    font-stretch: normal;
    letter-spacing: -0.3px; }
    @media screen and (max-width: 1079px) {
      .product-details__title--bold {
        font-size: 34px;
        line-height: 1.59;
        letter-spacing: -0.2px; } }
    @media screen and (min-width: 768px) {
      .product-details__title--bold {
        font-size: 44px; } }

.product-details__caption {
  font-family: "Museo Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.23;
  font-weight: 300;
  color: #999999;
  padding-top: 10px; }
  @media screen and (min-width: 768px) {
    .product-details__caption {
      font-size: 24px; } }

@media screen and (max-width: 1079px) and (min-width: 768px) {
  .product-details__caption {
    max-width: 330px; } }

.product-details__icon {
  margin-right: 6px; }
  .product-details__icon svg,
  .product-details__icon path {
    fill: #41ccb4; }
  .product-details__icon svg {
    height: 24px;
    width: 24px;
    vertical-align: middle;
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1); }

.product-details__shipping-prompt {
  font-family: "Open Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 14px;
  color: #666666;
  margin-bottom: 64px; }
  @media screen and (min-width: 768px) {
    .product-details__shipping-prompt {
      margin-bottom: 75px; } }
  @media screen and (min-width: 1080px) {
    .product-details__shipping-prompt {
      margin-bottom: 0; } }

.product-details__ratings {
  font-family: "Museo Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 12px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.6;
  color: #666666;
  padding: 20px 0; }
  .product-details__ratings .yotpo {
    text-align: center; }
    .product-details__ratings .yotpo .pull-left {
      text-align: center;
      float: none; }
      @media screen and (min-width: 1080px) {
        .product-details__ratings .yotpo .pull-left {
          text-align: right; } }
    .product-details__ratings .yotpo a {
      color: #999999 !important;
      font-size: 12px; }
      @media screen and (min-width: 768px) {
        .product-details__ratings .yotpo a {
          font-size: 14px; } }

.product-details__description {
  font-family: "Open Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.71;
  letter-spacing: normal;
  color: #666666;
  padding-top: 10px;
  padding-bottom: 75px;
  display: block; }
  @media screen and (min-width: 1080px) {
    .product-details__description {
      font-size: 16px;
      line-height: 1.88; } }
  .product-details__description--desktop {
    display: none; }
  @media screen and (min-width: 768px) {
    .product-details__description {
      -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
      order: 1;
      font-size: 16px;
      line-height: 1.88; }
      .product-details__description--mobile {
        display: none; }
      .product-details__description--desktop {
        display: block;
        padding-top: 0px;
        padding-bottom: 0; } }
  @media screen and (min-width: 1080px) {
    .product-details__description {
      -webkit-box-ordinal-group: initial;
      -ms-flex-order: initial;
      order: initial;
      width: 490px; }
      .product-details__description--desktop {
        padding-top: 40px; } }

.product-details__main-image {
  width: 100%;
  margin-bottom: 24px; }
  @media screen and (min-width: 768px) {
    .product-details__main-image {
      position: absolute;
      width: 341px;
      left: -20px; } }
  @media screen and (min-width: 768px) and (max-width: 1079px) {
    .product-details__main-image {
      margin-top: -26px; } }
  @media screen and (min-width: 1080px) {
    .product-details__main-image {
      margin-bottom: 0;
      width: unset;
      max-height: 508px;
      position: unset;
      -webkit-box-flex: 0;
      -ms-flex: 0 0 379px;
      flex: 0 0 379px;
      max-width: 379px; } }

.product-details__image-wrapper {
  position: relative; }

.product-details__gray-rectangle {
  position: absolute;
  background-color: #f9f9f9;
  z-index: -1;
  width: 72%;
  height: 82%;
  bottom: 0;
  left: 50%;
  border-radius: 4px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%); }
  @media screen and (min-width: 768px) {
    .product-details__gray-rectangle {
      width: 304px;
      height: 416px;
      top: 10px;
      left: 50px;
      -webkit-transform: none;
      transform: none; } }
  @media screen and (min-width: 1080px) {
    .product-details__gray-rectangle {
      width: 340px;
      height: 480px;
      top: 24px;
      left: 67px;
      -webkit-transform: none;
      transform: none; } }

.product-details__secondary-image {
  width: 100%; }

.product--ledger-otg-kit {
  margin-bottom: 80px; }
  .product--ledger-otg-kit .product-details__main-image {
    width: 100%;
    margin-bottom: 84px;
    margin-top: 55px; }
    @media screen and (max-width: 767px) {
      .product--ledger-otg-kit .product-details__main-image {
        max-height: 220px;
        max-width: 280px;
        margin-left: -31px; } }
    @media screen and (min-width: 768px) {
      .product--ledger-otg-kit .product-details__main-image {
        margin-top: 72px;
        position: absolute;
        width: 355px;
        max-width: 355px; } }
    @media screen and (min-width: 1080px) {
      .product--ledger-otg-kit .product-details__main-image {
        margin-top: 96px;
        margin-bottom: 0;
        max-height: 508px;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 379px;
        flex: 0 0 379px;
        max-width: 379px;
        max-width: 457px;
        width: 457px;
        left: -28px; } }
  .product--ledger-otg-kit .product-details__image-wrapper {
    position: relative; }
    @media screen and (max-width: 767px) {
      .product--ledger-otg-kit .product-details__image-wrapper {
        text-align: center; } }
    @media screen and (min-width: 768px) {
      .product--ledger-otg-kit .product-details__image-wrapper {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 334px;
        flex: 1 0 334px;
        max-width: 334px; } }
    @media screen and (min-width: 1080px) {
      .product--ledger-otg-kit .product-details__image-wrapper {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 429px;
        flex: 1 0 429px;
        max-width: 429px;
        min-height: 452px; } }
  .product--ledger-otg-kit .product-details__gray-rectangle {
    position: absolute;
    background-color: #f9f9f9;
    z-index: -1;
    width: 250px;
    height: 330px;
    top: 0;
    left: 0;
    margin: auto;
    right: 0;
    border-radius: 4px;
    -webkit-transform: translateX(0%);
    transform: translateX(0%); }
    @media screen and (min-width: 768px) {
      .product--ledger-otg-kit .product-details__gray-rectangle {
        width: 334px;
        height: 422px;
        left: 1px;
        top: 0;
        -webkit-transform: none;
        transform: none;
        bottom: unset; } }
    @media screen and (min-width: 1080px) {
      .product--ledger-otg-kit .product-details__gray-rectangle {
        width: 404px;
        height: 500px;
        top: 0;
        left: 25px;
        -webkit-transform: none;
        transform: none; } }
  @media screen and (min-width: 768px) {
    .product--ledger-otg-kit .product-details__header {
      padding-left: 20px; } }
  @media screen and (min-width: 1080px) {
    .product--ledger-otg-kit .product-details__header {
      padding-left: 80px; } }
  @media screen and (min-width: 768px) {
    .product--ledger-otg-kit .product-details__description--desktop {
      -webkit-box-ordinal-group: initial;
      -ms-flex-order: initial;
      order: initial;
      width: 334px; } }
  @media screen and (min-width: 1080px) {
    .product--ledger-otg-kit .product-details__description--desktop {
      width: 490px; } }

.review {
  border-top: 1px solid #d8d8d8;
  padding-top: 30px;
  padding-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start; }
  @media screen and (min-width: 1080px) {
    .review {
      padding-top: 43px;
      padding-bottom: 39px; } }
  .review--unavailable {
    font-size: 16px;
    font-family: "Open Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
    color: #666666;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; }
  .review__user {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 calc(100% - 50px);
    flex: 1 0 calc(100% - 50px);
    max-width: calc(100% - 50px);
    padding-left: 25px;
    margin-bottom: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    cursor: default; }
    @media screen and (min-width: 768px) {
      .review__user {
        font-size: 14px;
        margin-bottom: 30px; } }
    .review__user-img {
      width: 50px;
      height: 50px;
      margin-bottom: 15px;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat; }
      .review__user-img--noimg {
        background-color: #d1f3ec;
        color: #41ccb4;
        border-radius: 50%;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; }
      @media screen and (min-width: 768px) {
        .review__user-img {
          margin-bottom: 30px; } }
    .review__user-verified {
      color: #41ccb4;
      width: 100%;
      margin-top: 5px;
      position: relative; }
      @media screen and (min-width: 1080px) {
        .review__user-verified:hover .verified__tooltip {
          display: block; } }
    .review__user-container {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: start;
      -ms-flex-align: start;
      align-items: flex-start;
      padding-right: 65px; }
      @media screen and (min-width: 1080px) {
        .review__user-container {
          -webkit-box-flex: 1;
          -ms-flex: 1 0 25.8%;
          flex: 1 0 25.8%;
          max-width: 25.8%; } }
  .review__details {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 100%;
    flex: 1 0 100%;
    max-width: 100%;
    margin-bottom: 20px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start; }
    @media screen and (min-width: 768px) {
      .review__details {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        max-width: none;
        margin-left: auto;
        font-size: 14px; } }
    @media screen and (min-width: 1080px) {
      .review__details {
        margin-left: 0;
        margin-bottom: 11px;
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center; } }
    .review__details--comment {
      -webkit-box-pack: start;
      -ms-flex-pack: start;
      justify-content: flex-start; }
      @media screen and (min-width: 1080px) {
        .review__details--comment {
          -webkit-box-pack: end;
          -ms-flex-pack: end;
          justify-content: flex-end; } }
  .review__content {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 100%;
    flex: 1 0 100%;
    max-width: 100%; }
    .review__content-title {
      font-family: "Museo Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
      font-size: 18px;
      font-weight: 500;
      line-height: 1.56;
      color: #142533;
      margin-bottom: 10px; }
      @media screen and (min-width: 768px) {
        .review__content-title {
          font-size: 20px;
          margin-bottom: 20px; } }
    .review__content-data {
      color: #666666;
      word-break: break-word; }
      @media screen and (min-width: 768px) {
        .review__content-data {
          font-size: 14px; } }
    @media screen and (min-width: 1080px) {
      .review__content {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 74.2%;
        flex: 1 0 74.2%;
        max-width: 74.2%; } }
  .review__date {
    color: #666666; }
  .review__stars {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-bottom: 5px;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 100%;
    flex: 1 0 100%;
    max-width: 100%; }
    @media screen and (min-width: 768px) {
      .review__stars {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end; } }
    @media screen and (min-width: 1080px) {
      .review__stars {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        max-width: none;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start; } }
  .review__star {
    color: #ffd24a;
    display: block; }
    .review__star:before {
      content: "\e60e";
      font-family: "yotpo-widget-font";
      font-size: 16px; }
      @media screen and (min-width: 768px) {
        .review__star:before {
          font-size: 18px; } }
  .review__pages {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
  .review__sort {
    padding: 15px 15px 15px 14px; }
    .review__sort-list-item {
      padding: 15px 29px 15px 15px; }
  .review__comment {
    height: 0px;
    overflow: hidden;
    padding: 0;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 100%;
    flex: 1 0 100%;
    max-width: 100%;
    background-color: #f9f9f9;
    border-left: 2px solid #d8d8d8; }
    .review__comment a {
      color: #41ccb4; }
    .review__comment-content {
      padding-left: 75px; }
    .review__comment-username {
      -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
      flex: 0 1 auto;
      font-weight: bold; }
    .review__comment-img {
      margin-bottom: 0px; }
    .review__comment-date {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
      flex: 1 0 auto;
      max-width: auto;
      -webkit-box-pack: end;
      -ms-flex-pack: end;
      justify-content: flex-end;
      color: #666666; }
      @media screen and (min-width: 768px) {
        .review__comment-date {
          font-size: 14px; } }
    .review__comment-user {
      padding: 0;
      -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
      flex: 1 0 100%;
      max-width: 100%; }
    @media screen and (min-width: 1080px) {
      .review__comment {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 74.2%;
        flex: 1 0 74.2%;
        max-width: 74.2%; } }
  .review__checkbox {
    -webkit-appearance: checkbox;
    display: none; }
  .review__label {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    max-width: 100%;
    cursor: pointer;
    color: #41ccb4;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin-top: 10px; }
    @media screen and (min-width: 1080px) {
      .review__label {
        margin-left: auto;
        -webkit-box-flex: 1;
        -ms-flex: 1 0 74.2%;
        flex: 1 0 74.2%;
        max-width: 74.2%; } }
  .review__comments {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 100%;
    flex: 1 0 100%;
    max-width: 100%; }
  .review__checkbox:checked ~ .review__comment {
    height: auto;
    margin-top: 20px;
    margin-left: auto;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 10px;
    padding-right: 20px; }
  .review__yotpo {
    max-width: 1040px;
    padding: 0 20px;
    margin: auto;
    margin-top: 30px; }
    .review__yotpo .yotpo .y-label, .review__yotpo .yotpo .yotpo label.y-label, .review__yotpo .yotpo .yotpo-or {
      font-family: "Open Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
      font-size: 14px;
      font-weight: normal;
      font-style: normal;
      font-stretch: normal;
      line-height: 1.71;
      letter-spacing: normal;
      font-size: 14px;
      color: #666666; }
      @media screen and (min-width: 1080px) {
        .review__yotpo .yotpo .y-label, .review__yotpo .yotpo .yotpo label.y-label, .review__yotpo .yotpo .yotpo-or {
          font-size: 16px;
          line-height: 1.88; } }
    .review__yotpo .yotpo .y-label.yotpo-header-title {
      text-transform: lowercase; }
      .review__yotpo .yotpo .y-label.yotpo-header-title::first-letter {
        text-transform: uppercase; }
    .review__yotpo .yotpo .yotpo-small-box, .review__yotpo .yotpo .yotpo-regular-small-box, .review__yotpo .yotpo .yotpo-popup-box-medium {
      border: none; }
    .review__yotpo .yotpo .yotpo-regular-box {
      border-color: #d8d8d8; }
    .review__yotpo .yotpo .form-group .form-element .y-input, .review__yotpo .yotpo .connect-wrapper .form-element .y-input {
      border: 1px solid #d8d8d8;
      border-radius: 4px;
      height: 50px;
      display: block;
      line-height: 1.71;
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      width: 100%;
      padding: 7px 13px;
      font-family: "Museo Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
      font-size: 14px;
      color: #999999; }
      .review__yotpo .yotpo .form-group .form-element .y-input.yotpo-text-box, .review__yotpo .yotpo .connect-wrapper .form-element .y-input.yotpo-text-box {
        height: 70px; }
    .review__yotpo .yotpo-nav.reviews {
      display: none; }
    .review__yotpo .yotpo-nav-content {
      display: none; }
    .review__yotpo .yotpo-default-button.yotpo-icon-btn.write-review-button {
      background: #41ccb4;
      color: #ffffff;
      font-weight: 500 !important;
      height: 40px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center; }
      .review__yotpo .yotpo-default-button.yotpo-icon-btn.write-review-button:hover {
        background: #41ccb4; }
    .review__yotpo .yotpo-default-button.yotpo-submit.primary-color-btn {
      background: #41ccb4;
      color: #ffffff;
      font-weight: 500 !important;
      text-transform: none; }
      .review__yotpo .yotpo-default-button.yotpo-submit.primary-color-btn:hover {
        background: #41ccb4 !important;
        border: 1px solid transparent !important; }
      .review__yotpo .yotpo-default-button.yotpo-submit.primary-color-btn.yotpo-disabled {
        background: #d1f3ec !important; }
        .review__yotpo .yotpo-default-button.yotpo-submit.primary-color-btn.yotpo-disabled:hover {
          background: #d1f3ec !important;
          border: 1px solid transparent !important; }
    .review__yotpo .yotpo-default-button.yotpo-icon-btn {
      background: #41ccb4; }
      .review__yotpo .yotpo-default-button.yotpo-icon-btn:hover {
        background: #41ccb4; }
    .review__yotpo .yotpo-icon-write {
      display: none; }
    .review__yotpo .yotpo-icon-button-text {
      font-family: "Museo Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
      font-size: 16px;
      line-height: normal;
      font-weight: 500;
      text-transform: none;
      display: inline-block; }
      .review__yotpo .yotpo-icon-button-text::first-letter {
        text-transform: uppercase; }
    @media screen and (min-width: 768px) {
      .review__yotpo {
        max-width: 768px;
        padding: 0 40px;
        margin: auto;
        margin-top: 30px; } }
    @media screen and (min-width: 1080px) {
      .review__yotpo {
        max-width: 1040px;
        padding: 0 20px;
        margin: auto;
        margin-top: 30px; } }

.verified {
  cursor: default; }
  .verified__tooltip {
    position: absolute;
    -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    top: 100%;
    background: #ffffff;
    padding: 20px;
    border: 1px solid #d8d8d8;
    border-radius: 5px;
    max-width: 331px;
    width: 500px;
    color: #999999;
    z-index: 1;
    font-family: "Open Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.71;
    letter-spacing: normal;
    font-size: 14px; }
    @media screen and (min-width: 1080px) {
      .verified__tooltip {
        font-size: 16px;
        line-height: 1.88; } }
    .verified__tooltip-header {
      display: block;
      margin-bottom: 20px; }
      .verified__tooltip-header--type {
        color: #41ccb4; }

.review__sort-list {
  height: 200px;
  overflow-y: scroll; }

#reviews {
  display: none; }

.add-to-cart {
  margin-top: 55px;
  margin-bottom: 45px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  @media screen and (max-width: 767px) {
    .add-to-cart {
      display: none; } }
  @media screen and (max-width: 1079px) {
    .add-to-cart {
      margin-top: 35px;
      margin-bottom: 65px; } }
  @media screen and (min-width: 768px) {
    .add-to-cart {
      -webkit-box-pack: end;
      -ms-flex-pack: end;
      justify-content: flex-end; } }
  .add-to-cart__price-container {
    text-align: left; }
    @media screen and (min-width: 768px) {
      .add-to-cart__price-container {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 140px;
        flex: 1 0 140px;
        max-width: 140px;
        margin-right: 50px; } }
    @media screen and (min-width: 1080px) {
      .add-to-cart__price-container {
        -webkit-box-flex: initial;
        -ms-flex: initial;
        flex: initial;
        max-width: initial;
        margin-right: 75px; } }
    .add-to-cart__price-container--fixed {
      text-align: left; }
  .add-to-cart__price {
    max-width: 210px;
    font-family: "Rubik", sans-serif;
    font-size: 34px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: -0.5px;
    color: #142533; }
    @media screen and (min-width: 768px) {
      .add-to-cart__price {
        margin-bottom: 4px; } }
    .add-to-cart__price--fixed {
      font-size: 22px;
      letter-spacing: -0.3px;
      color: #1D2028; }
  .add-to-cart__caption {
    text-align: left;
    font-family: "Museo Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
    font-size: 12px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.6;
    font-family: "Open Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
    font-size: 13px;
    color: #999999; }
    .add-to-cart__caption--fixed {
      font-size: 10px;
      line-height: 2.2; }
  .add-to-cart__submit {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
    background: #41ccb4;
    color: #ffffff;
    height: 50px; }
    @media screen and (min-width: 768px) {
      .add-to-cart__submit {
        margin-top: 50px; } }
    @media screen and (min-width: 1080px) {
      .add-to-cart__submit {
        margin-top: 0px; } }
    .add-to-cart__submit--fixed {
      height: 60px;
      width: 180px;
      padding: 5px 27px;
      font-size: 19px;
      font-weight: 500;
      letter-spacing: -0.1px;
      margin-top: 2px; }
  .add-to-cart__quantity-select-container {
    text-align: left;
    font-family: "Rubik", sans-serif;
    font-size: 14px;
    color: #142533; }
    @media screen and (min-width: 768px) {
      .add-to-cart__quantity-select-container {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 70px;
        flex: 1 0 70px;
        max-width: 70px;
        margin-right: -10px; } }
    @media screen and (min-width: 1080px) {
      .add-to-cart__quantity-select-container {
        -webkit-box-flex: initial;
        -ms-flex: initial;
        flex: initial;
        max-width: initial;
        margin-right: 50px; } }
  .add-to-cart__quantity-list {
    list-style: none;
    position: absolute;
    width: 100%;
    top: 44px;
    left: 0;
    border: 1px solid #d8d8d8;
    border-radius: 4px;
    -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
    display: none; }
    .add-to-cart__quantity-list--active {
      display: block;
      z-index: 1; }
    .add-to-cart__quantity-list-item {
      padding: 6px 0;
      padding-left: 17px;
      color: #666666;
      position: relative;
      cursor: pointer; }
      .add-to-cart__quantity-list-item--selected {
        background: #f9f9f9; }
        .add-to-cart__quantity-list-item--selected .add-to-cart__quantity-list-item--check {
          display: inline-block; }
      .add-to-cart__quantity-list-item--check {
        position: absolute;
        right: 5px;
        display: none; }
        .add-to-cart__quantity-list-item--check svg,
        .add-to-cart__quantity-list-item--check path {
          height: 11px;
          width: 10px;
          fill: #27d0e2; }
  .add-to-cart__box {
    height: 40px;
    width: 60px;
    border: 1px solid #d8d8d8;
    border-radius: 4px;
    position: relative;
    padding: 12px 0;
    padding-left: 12px;
    padding-right: 21px;
    margin-bottom: 5px;
    cursor: pointer; }
    .add-to-cart__box--arrow {
      display: block;
      position: absolute;
      right: 4px;
      top: 11px; }
      .add-to-cart__box--arrow svg,
      .add-to-cart__box--arrow path {
        fill: #999999; }
      .add-to-cart__box--arrow svg {
        height: 18px;
        width: 18px; }
  .add-to-cart--fixed {
    margin: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
  .add-to-cart__error {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 100%;
    flex: 1 0 100%;
    max-width: 100%; }
    .add-to-cart__error-msg {
      display: block;
      margin-top: 10px;
      margin-bottom: 5px;
      text-align: right;
      color: #ea2e49;
      position: absolute;
      right: 0; }

@media screen and (min-width: 768px) {
  .page-not-found {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 1040px;
    padding: 0 40px;
    margin: 43px auto 0 auto;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start; } }

.page-not-found__text-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 40px 20px; }
  @media screen and (min-width: 768px) {
    .page-not-found__text-wrapper {
      margin: 15px 0 0 0;
      -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
      flex: 1 1 100%;
      max-width: 100%;
      -webkit-box-pack: start;
      -ms-flex-pack: start;
      justify-content: flex-start; } }
  @media screen and (min-width: 1080px) {
    .page-not-found__text-wrapper {
      margin: 61px 0 0 0; } }

.page-not-found__title {
  font-family: "Museo Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 44px;
  font-weight: 500;
  line-height: 1.23;
  font-style: normal;
  font-stretch: normal;
  letter-spacing: -0.3px;
  margin-bottom: 22px; }
  @media screen and (max-width: 1079px) {
    .page-not-found__title {
      font-size: 34px;
      line-height: 1.59;
      letter-spacing: -0.2px; } }
  @media screen and (min-width: 768px) {
    .page-not-found__title {
      font-size: 44px;
      line-height: 54px;
      letter-spacing: -0.3; } }

.page-not-found__text {
  color: #666666;
  text-align: center;
  width: 100%;
  margin-bottom: 40px; }
  @media screen and (min-width: 768px) {
    .page-not-found__text {
      text-align: left; } }
  .page-not-found__text__top {
    font-family: "Open Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.71;
    letter-spacing: normal;
    margin-bottom: 21px;
    line-height: 24px; }
    @media screen and (min-width: 1080px) {
      .page-not-found__text__top {
        font-size: 16px;
        line-height: 1.88; } }
    @media screen and (min-width: 768px) {
      .page-not-found__text__top {
        font-size: 16px;
        line-height: 30px; } }
  .page-not-found__text__bottom {
    font-family: "Open Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.71;
    letter-spacing: normal;
    font-size: 12px; }
    @media screen and (min-width: 1080px) {
      .page-not-found__text__bottom {
        font-size: 16px;
        line-height: 1.88; } }
    @media screen and (min-width: 768px) {
      .page-not-found__text__bottom {
        font-size: 14px;
        max-width: 80%;
        line-height: 24px; } }
  .page-not-found__text em {
    color: #41ccb4; }

.page-not-found__button {
  background: #41ccb4;
  color: #ffffff;
  line-height: 24px;
  font-weight: 500;
  padding: 7px 26px;
  text-align: center;
  width: 164px; }
  @media screen and (min-width: 768px) {
    .page-not-found__button {
      font-weight: 500; } }

.page-not-found__image-wrapper {
  margin-left: 20px;
  max-width: calc(100% - 20px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start; }
  @media screen and (min-width: 768px) {
    .page-not-found__image-wrapper {
      margin: 0;
      -webkit-box-flex: 0;
      -ms-flex: 0 0 500px;
      flex: 0 0 500px;
      max-width: 500px;
      max-height: 500px;
      margin-right: -167px; } }
  @media screen and (min-width: 1080px) {
    .page-not-found__image-wrapper {
      margin: 0;
      -webkit-box-flex: 0;
      -ms-flex: 0 0 625px;
      flex: 0 0 625px;
      max-width: 625px;
      max-height: 480px; } }

.page-not-found__image {
  max-width: 100%; }

.page__previous, .page__next {
  font-size: 14px;
  line-height: 18px;
  border: #d8d8d8 1px solid;
  color: #d8d8d8;
  color: #41ccb4;
  display: inline-block;
  padding: 4px 8px;
  text-align: center;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer; }

.page__previous {
  margin-right: 10px; }

.page__next {
  margin-left: 5px; }

.page__number {
  font-size: 14px;
  line-height: 18px;
  border: #d8d8d8 1px solid;
  color: #d8d8d8;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
  margin-right: 5px;
  color: #41ccb4;
  display: inline-block;
  padding: 4px;
  width: 28px;
  height: 28px;
  text-align: center; }
  .page__number--current {
    color: #666666; }
  .page__number--active {
    display: block; }
  .page__number--inactive {
    display: none; }
  .page__number--ellipses {
    padding-left: 0;
    padding-right: 0;
    border: none;
    color: #666666;
    width: 11px;
    cursor: default; }

.ledger-live {
  margin-top: 34px; }
  @media screen and (min-width: 768px) {
    .ledger-live {
      margin-top: 50px; } }
  @media screen and (min-width: 1080px) {
    .ledger-live {
      margin-top: 70px; } }
  .ledger-live__top-banner {
    text-align: center;
    padding: 0 20px; }
    @media screen and (min-width: 768px) {
      .ledger-live__top-banner {
        max-width: 768px;
        padding: 0 40px;
        margin: auto; } }
    @media screen and (min-width: 768px) {
      .ledger-live__top-banner {
        max-width: 1040px;
        padding: 0 20px;
        margin: auto; } }
    .ledger-live__top-banner__title {
      font-family: "Museo Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
      font-size: 44px;
      font-weight: 500;
      line-height: 1.23;
      font-style: normal;
      font-stretch: normal;
      letter-spacing: -0.3px;
      font-size: 34px;
      letter-spacing: -1.5px;
      font-weight: 300;
      line-height: 1.59;
      color: #142533;
      margin-bottom: 9px;
      text-align: center; }
      @media screen and (max-width: 1079px) {
        .ledger-live__top-banner__title {
          font-size: 34px;
          line-height: 1.59;
          letter-spacing: -0.2px; } }
      @media screen and (min-width: 768px) {
        .ledger-live__top-banner__title {
          font-size: 44px;
          letter-spacing: -2px;
          line-height: 1.23;
          margin-bottom: 14px; } }
      @media screen and (min-width: 1080px) {
        .ledger-live__top-banner__title {
          margin-bottom: 9px; } }
      .ledger-live__top-banner__title strong {
        font-weight: 500;
        letter-spacing: -0.2px; }
        @media screen and (min-width: 768px) {
          .ledger-live__top-banner__title strong {
            letter-spacing: -0.3px; } }
    .ledger-live__top-banner__subtitle {
      font-family: "Museo Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
      font-size: 24px;
      font-weight: 500;
      line-height: 1.23;
      color: #999999;
      font-weight: 300;
      line-height: 1.25;
      font-size: 20px;
      text-align: center;
      margin-bottom: 40px; }
      @media screen and (min-width: 768px) {
        .ledger-live__top-banner__subtitle {
          font-size: 24px;
          line-height: 1.33; } }
    .ledger-live__top-banner__button {
      background: #6490f1;
      color: #ffffff;
      padding: 8px 20px;
      display: inline-block;
      margin-bottom: 15px;
      line-height: 1.5;
      font-weight: 500; }
    .ledger-live__top-banner__link {
      color: #6490f1;
      display: block;
      margin-bottom: 50px; }
  .ledger-live__features-wrapper {
    position: relative; }
    @media screen and (min-width: 1080px) {
      .ledger-live__features-wrapper {
        padding-top: 48px; } }
    @media screen and (min-width: 768px) {
      .ledger-live__features-wrapper__gradient-banner {
        width: 100%;
        height: 109px;
        background-image: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(rgba(255, 255, 255, 0)));
        background-image: linear-gradient(to bottom, #ffffff, rgba(255, 255, 255, 0));
        position: absolute;
        top: 0;
        left: 0; } }
    @media screen and (min-width: 1080px) {
      .ledger-live__features-wrapper__gradient-banner {
        height: 140px;
        top: 48px; } }
    .ledger-live__features-wrapper__image img {
      width: auto;
      height: 256px;
      margin-left: 20px;
      display: block;
      overflow: hidden; }
      @media screen and (min-width: 768px) {
        .ledger-live__features-wrapper__image img {
          width: 688px;
          height: auto;
          position: absolute;
          top: 0;
          left: 50%;
          -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
          margin: 0; } }
      @media screen and (min-width: 1080px) {
        .ledger-live__features-wrapper__image img {
          width: 1000px; } }
    .ledger-live__features-wrapper__image-banner {
      width: 100%;
      height: 0px; }
      @media screen and (min-width: 768px) {
        .ledger-live__features-wrapper__image-banner {
          height: 372px;
          background-size: auto 372px;
          background-position: center;
          background-repeat: no-repeat; } }
      @media screen and (min-width: 1080px) {
        .ledger-live__features-wrapper__image-banner {
          height: 490px;
          background-size: auto 490px; } }
      @media screen and (min-width: 1280px) {
        .ledger-live__features-wrapper__image-banner {
          background-size: cover !important; } }
    .ledger-live__features-wrapper__features {
      background-color: #f9f9f9; }
      @media screen and (min-width: 768px) {
        .ledger-live__features-wrapper__features {
          padding-bottom: 62px; } }
      @media screen and (min-width: 1080px) {
        .ledger-live__features-wrapper__features {
          padding-bottom: 64px; } }
  .ledger-live__features__padding-wrapper {
    padding: 90px 20px 0 20px; }
    @media screen and (min-width: 768px) {
      .ledger-live__features__padding-wrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        max-width: 768px;
        padding: 0 40px;
        margin: auto;
        padding-top: 67px; } }
    @media screen and (min-width: 1080px) {
      .ledger-live__features__padding-wrapper {
        max-width: 1040px;
        padding: 0 20px;
        margin: auto;
        padding-top: 108px; } }
    @media screen and (max-width: 767px) {
      .ledger-live__features__padding-wrapper {
        padding-bottom: 55px; } }
  .ledger-live__features__feature {
    margin-bottom: 40px; }
    @media screen and (min-width: 768px) {
      .ledger-live__features__feature {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 216px;
        flex: 0 0 216px;
        max-width: 216px;
        margin-bottom: 0;
        text-align: center; } }
    @media screen and (min-width: 1080px) {
      .ledger-live__features__feature {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 294px;
        flex: 0 0 294px;
        max-width: 294px; } }
    @media screen and (max-width: 767px) {
      .ledger-live__features__feature:last-child {
        margin-bottom: 0px; } }
  .ledger-live__feature__icon {
    margin-bottom: 10px; }
    .ledger-live__feature__icon svg {
      width: 30px;
      height: 30px; }
      @media screen and (min-width: 768px) {
        .ledger-live__feature__icon svg {
          width: 40px;
          height: 40px; } }
    .ledger-live__feature__icon svg, .ledger-live__feature__icon path {
      fill: #6490f1; }
  .ledger-live__feature__title {
    font-family: "Museo Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.23;
    color: #142533;
    line-height: 1.6;
    margin-bottom: 10px; }
    @media screen and (min-width: 768px) {
      .ledger-live__feature__title {
        font-size: 24px; } }
    @media screen and (min-width: 768px) {
      .ledger-live__feature__title {
        line-height: 1.4;
        letter-spacing: -0.7px;
        font-size: 20px; } }
  .ledger-live__feature__body {
    font-family: "Open Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.71;
    letter-spacing: normal;
    color: #666666;
    font-size: 14px;
    font-weight: normal; }
    @media screen and (min-width: 1080px) {
      .ledger-live__feature__body {
        font-size: 16px;
        line-height: 1.88; } }
    @media screen and (min-width: 1080px) {
      .ledger-live__feature__body {
        font-size: 14px;
        line-height: 1.71; } }
  .ledger-live__currencies-wrapper {
    margin-bottom: 20px; }
    .ledger-live__currencies-wrapper__currencies-text {
      padding: 0 20px; }
      @media screen and (min-width: 768px) {
        .ledger-live__currencies-wrapper__currencies-text {
          max-width: 768px;
          padding: 0 40px;
          margin: auto; } }
      @media screen and (min-width: 1080px) {
        .ledger-live__currencies-wrapper__currencies-text {
          max-width: 1040px;
          padding: 0 20px;
          margin: auto; } }
    .ledger-live__currencies-wrapper__currencies-button {
      padding: 0 20px;
      text-align: center; }
      @media screen and (min-width: 768px) {
        .ledger-live__currencies-wrapper__currencies-button {
          max-width: 768px;
          padding: 0 40px;
          margin: auto; } }
      @media screen and (min-width: 1080px) {
        .ledger-live__currencies-wrapper__currencies-button {
          max-width: 1040px;
          padding: 0 20px;
          margin: auto; } }
    .ledger-live__currencies-wrapper__currencies {
      padding: 0 20px;
      margin-top: 40px; }
      @media screen and (min-width: 768px) {
        .ledger-live__currencies-wrapper__currencies {
          max-width: 768px;
          padding: 0 40px;
          margin: auto;
          margin-top: 64px; } }
      @media screen and (min-width: 1080px) {
        .ledger-live__currencies-wrapper__currencies {
          max-width: 1040px;
          padding: 0 20px;
          margin: auto;
          margin-top: 64px; } }
    @media screen and (min-width: 768px) {
      .ledger-live__currencies-wrapper__currencies-padding-wrapper {
        width: calc(100% + 20px);
        margin-left: -10px;
        margin-right: -10px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap; } }
    @media screen and (min-width: 1080px) {
      .ledger-live__currencies-wrapper__currencies-padding-wrapper {
        width: calc(100% + 32px);
        margin-left: -16px;
        margin-right: -16px; } }
    .ledger-live__currencies-wrapper__currencies-padding-wrapper.slick-dotted.slick-slider {
      margin-bottom: 75px; }
  .ledger-live__currencies-text__title {
    font-family: "Museo Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
    font-size: 36px;
    font-weight: 500;
    line-height: 1.33;
    color: #142533;
    font-size: 24px;
    line-height: 2;
    margin-top: 75px;
    text-align: center; }
    @media screen and (min-width: 768px) {
      .ledger-live__currencies-text__title {
        font-size: 36px;
        line-height: 1.33; } }
  .ledger-live__currencies-text__text {
    font-family: "Open Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.71;
    letter-spacing: normal;
    color: #999999;
    font-size: 12px;
    margin-top: 5px;
    text-align: center;
    line-height: 1.83;
    font-weight: normal; }
    @media screen and (min-width: 1080px) {
      .ledger-live__currencies-text__text {
        font-size: 16px;
        line-height: 1.88; } }
    @media screen and (min-width: 768px) {
      .ledger-live__currencies-text__text {
        font-size: 13px;
        line-height: 1.69; } }
  .ledger-live__currencies__currency-quad {
    width: 284px;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    @media screen and (min-width: 768px) {
      .ledger-live__currencies__currency-quad {
        width: 236px; } }
    @media screen and (min-width: 1080px) {
      .ledger-live__currencies__currency-quad {
        width: 344px; } }
  .ledger-live__currency-quad__currency {
    margin: 0 auto 30px;
    display: inline-block;
    width: 142px;
    height: 94px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    @media screen and (min-width: 768px) {
      .ledger-live__currency-quad__currency {
        margin-bottom: 50px; } }
    @media screen and (min-width: 768px) {
      .ledger-live__currency-quad__currency {
        width: 98px;
        margin-left: 10px;
        margin-right: 10px; } }
    @media screen and (min-width: 1080px) {
      .ledger-live__currency-quad__currency {
        width: 142px;
        margin-left: 15px;
        margin-right: 15px; } }
  .ledger-live__currency__icon {
    width: 40px;
    height: 40px;
    margin-bottom: 15px;
    text-align: center;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 100%;
    flex: 1 0 100%;
    max-width: 100%; }
  .ledger-live__currency__title {
    font-family: "Open Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.71;
    letter-spacing: normal;
    font-family: "Museo Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
    font-size: 16px;
    letter-spacing: -0.1px;
    line-height: normal;
    width: 100%;
    margin-bottom: 2px;
    text-align: center;
    font-weight: 500;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 100%;
    flex: 1 0 100%;
    max-width: 100%; }
    @media screen and (min-width: 1080px) {
      .ledger-live__currency__title {
        font-size: 16px;
        line-height: 1.88; } }
    @media screen and (min-width: 1080px) {
      .ledger-live__currency__title {
        line-height: normal; } }
  .ledger-live__currency__subtitle {
    font-family: "Open Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.71;
    letter-spacing: normal;
    font-size: 13px;
    letter-spacing: -0.1px;
    line-height: normal;
    color: #999999;
    text-align: center;
    font-weight: normal;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 100%;
    flex: 1 0 100%;
    max-width: 100%; }
    @media screen and (min-width: 1080px) {
      .ledger-live__currency__subtitle {
        font-size: 16px;
        line-height: 1.88; } }
    @media screen and (min-width: 1080px) {
      .ledger-live__currency__subtitle {
        font-size: 13px;
        line-height: normal; } }
  .ledger-live__currencies-button__button {
    background: #6490f1;
    color: #ffffff;
    padding: 8px 20px;
    display: inline-block;
    margin-bottom: 15px;
    line-height: 1.5;
    font-weight: 500; }
  .ledger-live__real-time-banner {
    background-color: #f9f9f9; }
    .ledger-live__real-time-banner__padding-wrapper {
      padding-left: 20px;
      padding-right: 20px;
      padding-top: 53px; }
      @media screen and (min-width: 768px) {
        .ledger-live__real-time-banner__padding-wrapper {
          max-width: 768px;
          padding: 0 40px;
          margin: auto;
          padding-top: 71px; } }
      @media screen and (min-width: 1080px) {
        .ledger-live__real-time-banner__padding-wrapper {
          max-width: 1040px;
          padding: 0 20px;
          margin: auto;
          max-width: 1145px;
          padding-top: 110px;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-pack: end;
          -ms-flex-pack: end;
          justify-content: flex-end;
          -webkit-box-align: end;
          -ms-flex-align: end;
          align-items: flex-end;
          -webkit-box-orient: horizontal;
          -webkit-box-direction: reverse;
          -ms-flex-direction: row-reverse;
          flex-direction: row-reverse; } }
    @media screen and (min-width: 1080px) {
      .ledger-live__real-time-banner__real-time-text {
        padding-left: 70px; } }
    @media screen and (min-width: 1080px) {
      .ledger-live__real-time-banner__image-container {
        width: 530px;
        overflow: visible; } }
    .ledger-live__real-time-banner__image img {
      vertical-align: top; }
      @media (min-width: 768px) and (max-width: 1079px) {
        .ledger-live__real-time-banner__image img {
          padding: 0 26px; } }
      @media screen and (min-width: 1080px) {
        .ledger-live__real-time-banner__image img {
          margin-left: -105px; } }
  .ledger-live__real-time-text__title {
    font-family: "Museo Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
    font-size: 36px;
    font-weight: 500;
    line-height: 1.33;
    font-size: 24px;
    line-height: 1.46;
    color: #142533;
    margin-bottom: 20px; }
    @media screen and (min-width: 768px) {
      .ledger-live__real-time-text__title {
        font-size: 36px;
        line-height: 1.33;
        margin-bottom: 21px;
        margin-top: 8px; } }
  .ledger-live__real-time-text__subtitle {
    font-family: "Open Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.71;
    letter-spacing: normal;
    color: #666666;
    margin-bottom: 55px;
    font-weight: normal; }
    @media screen and (min-width: 1080px) {
      .ledger-live__real-time-text__subtitle {
        font-size: 16px;
        line-height: 1.88; } }
    @media screen and (min-width: 768px) {
      .ledger-live__real-time-text__subtitle {
        margin-bottom: 52px;
        font-size: 16px;
        line-height: 1.88; } }
    @media screen and (min-width: 1080px) {
      .ledger-live__real-time-text__subtitle {
        margin-bottom: 93px; } }
  .ledger-live__transactions-banner {
    padding: 75px 20px; }
    @media screen and (max-width: 767px) {
      .ledger-live__transactions-banner {
        padding: 70px 20px; } }
    @media screen and (min-width: 768px) {
      .ledger-live__transactions-banner {
        max-width: 768px;
        padding: 0 40px;
        margin: auto;
        padding-top: 111px;
        padding-bottom: 111px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start; } }
    @media screen and (min-width: 1080px) {
      .ledger-live__transactions-banner {
        max-width: 1040px;
        padding: 0 20px;
        margin: auto;
        padding-top: 100px;
        padding-bottom: 89px;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between; } }
    .ledger-live__transactions-banner__transaction-text {
      margin-bottom: 50px; }
      @media screen and (min-width: 768px) {
        .ledger-live__transactions-banner__transaction-text {
          margin-bottom: 90px; } }
      @media screen and (min-width: 1080px) {
        .ledger-live__transactions-banner__transaction-text {
          margin-bottom: 23px;
          margin-top: 53px;
          -webkit-box-flex: 1;
          -ms-flex: 1 1 485px;
          flex: 1 1 485px;
          max-width: 485px; } }
      .ledger-live__transactions-banner__transaction-text.left-block {
        margin-top: 53px; }
        @media screen and (max-width: 1079px) {
          .ledger-live__transactions-banner__transaction-text.left-block {
            margin-top: 0; } }
      .ledger-live__transactions-banner__transaction-text.right-block {
        margin-top: 137px; }
        .ledger-live__transactions-banner__transaction-text.right-block .ledger-live__transaction-text__title {
          margin-bottom: 17px; }
    .ledger-live__transactions-banner__image--right img {
      vertical-align: top;
      max-width: 100%;
      padding: 0 20px;
      margin-bottom: 79px; }
      @media screen and (min-width: 768px) {
        .ledger-live__transactions-banner__image--right img {
          padding: 0;
          margin-bottom: 121px;
          -webkit-box-flex: 0;
          -ms-flex: 0 0 450px;
          flex: 0 0 450px;
          max-width: 450px; } }
      @media screen and (min-width: 1080px) {
        .ledger-live__transactions-banner__image--right img {
          margin-bottom: 0; } }
    .ledger-live__transactions-banner__image--left img {
      vertical-align: top;
      max-width: 100%;
      padding: 0 33px;
      margin-bottom: 0; }
      @media screen and (min-width: 768px) {
        .ledger-live__transactions-banner__image--left img {
          padding: 0;
          -webkit-box-flex: 0;
          -ms-flex: 0 0 318px;
          flex: 0 0 318px;
          max-width: 318px; } }
  .ledger-live__transaction-text__title {
    font-family: "Museo Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
    font-size: 36px;
    font-weight: 500;
    line-height: 1.33;
    color: #142533;
    font-size: 24px;
    line-height: 1.46;
    margin-bottom: 20px; }
    @media screen and (min-width: 768px) {
      .ledger-live__transaction-text__title {
        margin-bottom: 21px;
        font-size: 36px;
        line-height: 1.33; } }
  .ledger-live__transaction-text__body {
    font-family: "Open Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.71;
    letter-spacing: normal;
    line-height: 1.71;
    color: #666666;
    font-weight: normal; }
    @media screen and (min-width: 1080px) {
      .ledger-live__transaction-text__body {
        font-size: 16px;
        line-height: 1.88; } }
    @media screen and (min-width: 768px) {
      .ledger-live__transaction-text__body {
        font-size: 16px;
        line-height: 1.88; } }
  .ledger-live__transaction-text__note {
    font-family: "Open Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.71;
    letter-spacing: normal;
    font-size: 12px;
    line-height: 1.83;
    color: #999999;
    margin-top: 20px;
    font-weight: normal; }
    @media screen and (min-width: 1080px) {
      .ledger-live__transaction-text__note {
        font-size: 16px;
        line-height: 1.88; } }
    @media screen and (min-width: 768px) {
      .ledger-live__transaction-text__note {
        margin-top: 15px;
        font-size: 13px;
        line-height: 1.69; } }
  .ledger-live__manage-banner {
    background-color: #f9f9f9; }
    .ledger-live__manage-banner__padding-wrapper {
      padding: 40px 20px; }
      @media screen and (min-width: 768px) {
        .ledger-live__manage-banner__padding-wrapper {
          max-width: 768px;
          padding: 0 40px;
          margin: auto;
          padding-top: 102px;
          padding-bottom: 96px;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-pack: justify;
          -ms-flex-pack: justify;
          justify-content: space-between;
          -webkit-box-align: start;
          -ms-flex-align: start;
          align-items: flex-start; } }
      @media screen and (min-width: 1080px) {
        .ledger-live__manage-banner__padding-wrapper {
          max-width: 1040px;
          padding: 0 20px;
          margin: auto;
          padding-top: 128px;
          padding-bottom: 124px; } }
    @media screen and (min-width: 768px) {
      .ledger-live__manage-banner__manage-column {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 216px;
        flex: 1 1 216px;
        max-width: 216px; } }
    @media screen and (min-width: 1080px) {
      .ledger-live__manage-banner__manage-column {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 313px;
        flex: 1 1 313px;
        max-width: 313px; } }
    @media screen and (min-width: 768px) {
      .ledger-live__manage-banner__manage-column.middle-column {
        margin: 0 20px; } }
    @media screen and (min-width: 1080px) {
      .ledger-live__manage-banner__manage-column.middle-column {
        margin: 0 30px; } }
  .ledger-live__manage-column__manage-block {
    margin-bottom: 30px; }
    @media screen and (min-width: 768px) {
      .ledger-live__manage-column__manage-block:not(:last-child) {
        margin-bottom: 40px; } }
    @media screen and (min-width: 1080px) {
      .ledger-live__manage-column__manage-block:not(:last-child) {
        margin-bottom: 50px; } }
    .ledger-live__manage-column__manage-block.blue {
      margin-bottom: 40px; }
      .ledger-live__manage-column__manage-block.blue:not(:last-child) {
        margin-bottom: 40px; }
  .ledger-live__manage-block__image img {
    display: none; }
    @media screen and (min-width: 768px) {
      .ledger-live__manage-block__image img {
        display: block;
        max-width: 200px; } }
    @media screen and (min-width: 1080px) {
      .ledger-live__manage-block__image img {
        padding-bottom: 30px;
        max-width: 221px; } }
  .ledger-live__manage-block__image.blue {
    display: none; }
    @media screen and (min-width: 768px) {
      .ledger-live__manage-block__image.blue {
        display: block;
        padding-bottom: 30px; } }
  .ledger-live__manage-block__title {
    font-family: "Museo Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.23;
    color: #142533;
    font-size: 18px;
    letter-spacing: -0.2px;
    margin-bottom: 10px; }
    @media screen and (min-width: 768px) {
      .ledger-live__manage-block__title {
        font-size: 24px; } }
    @media screen and (min-width: 768px) {
      .ledger-live__manage-block__title {
        font-size: 20px;
        line-height: 1.4;
        letter-spacing: -0.7px;
        margin-bottom: 16px; } }
  .ledger-live__manage-block__body {
    font-family: "Open Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.71;
    letter-spacing: normal;
    color: #666666;
    font-size: 14px;
    line-height: 1.71;
    font-weight: normal; }
    @media screen and (min-width: 1080px) {
      .ledger-live__manage-block__body {
        font-size: 16px;
        line-height: 1.88; } }
    @media screen and (min-width: 768px) {
      .ledger-live__manage-block__body {
        font-size: 14px;
        line-height: 1.71; } }
  .ledger-live__get-onboard-banner {
    background-color: #142533;
    color: #ffffff; }
    .ledger-live__get-onboard-banner__padding-wrapper {
      padding: 40px 20px 0 20px; }
      @media screen and (min-width: 768px) {
        .ledger-live__get-onboard-banner__padding-wrapper {
          max-width: 768px;
          padding: 0 40px;
          margin: auto;
          padding-top: 112px;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: start;
          -ms-flex-align: start;
          align-items: flex-start;
          -webkit-box-pack: center;
          -ms-flex-pack: center;
          justify-content: center;
          -ms-flex-wrap: wrap;
          flex-wrap: wrap; } }
      @media screen and (min-width: 1080px) {
        .ledger-live__get-onboard-banner__padding-wrapper {
          max-width: 1040px;
          padding: 0 20px;
          margin: auto;
          padding-top: 112px;
          -webkit-box-pack: justify;
          -ms-flex-pack: justify;
          justify-content: space-between;
          -ms-flex-wrap: nowrap;
          flex-wrap: nowrap; } }
    .ledger-live__get-onboard-banner__get-onboard-text {
      margin-bottom: 75px; }
      @media screen and (min-width: 768px) {
        .ledger-live__get-onboard-banner__get-onboard-text {
          margin-bottom: 60px;
          -webkit-box-flex: 0;
          -ms-flex: 0 0 570px;
          flex: 0 0 570px;
          max-width: 570px; } }
      @media screen and (min-width: 1080px) {
        .ledger-live__get-onboard-banner__get-onboard-text {
          margin-bottom: 0;
          -webkit-box-flex: 0;
          -ms-flex: 0 0 495px;
          flex: 0 0 495px;
          max-width: 495px; } }
    .ledger-live__get-onboard-banner__image img {
      width: auto;
      max-height: 187px;
      margin: auto;
      display: block; }
      @media screen and (min-width: 768px) {
        .ledger-live__get-onboard-banner__image img {
          -webkit-box-flex: 0;
          -ms-flex: 0 0 528px;
          flex: 0 0 528px;
          max-width: 528px;
          max-height: 349px;
          margin: 0; } }
      @media screen and (min-width: 1080px) {
        .ledger-live__get-onboard-banner__image img {
          margin-left: 80px; } }
  .ledger-live__get-onboard-text__title {
    font-family: "Museo Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
    font-size: 36px;
    font-weight: 500;
    line-height: 1.33;
    font-size: 24px;
    line-height: 1.46;
    margin-bottom: 38px; }
    @media screen and (min-width: 768px) {
      .ledger-live__get-onboard-text__title {
        font-size: 36px;
        line-height: 1.22;
        margin-bottom: 30px; } }
  .ledger-live__get-onboard-text__body {
    font-family: "Open Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.71;
    letter-spacing: normal;
    margin-bottom: 40px;
    font-weight: normal; }
    @media screen and (min-width: 1080px) {
      .ledger-live__get-onboard-text__body {
        font-size: 16px;
        line-height: 1.88; } }
    @media screen and (min-width: 768px) {
      .ledger-live__get-onboard-text__body {
        font-size: 16px;
        line-height: 1.75;
        margin-bottom: 50px; } }
  .ledger-live__get-onboard-text__button {
    font-size: 14px;
    line-height: 18px;
    border: #ffffff 1px solid;
    color: #ffffff;
    line-height: 1.5;
    display: inline-block;
    padding: 8px 20px;
    font-weight: 500;
    font-size: 16px; }
    @media screen and (min-width: 768px) {
      .ledger-live__get-onboard-text__button {
        line-height: 1.71; } }

.homepage-background-banner {
  text-align: center;
  margin: auto; }
  @media screen and (min-width: 768px) {
    .homepage-background-banner {
      position: relative;
      max-height: 370px;
      height: 370px;
      background-repeat: no-repeat; } }
  @media screen and (min-width: 1280px) {
    .homepage-background-banner {
      background-size: cover !important; } }
  @media screen and (min-width: 768px) {
    .homepage-background-banner__content-container {
      max-width: 768px;
      padding: 0 40px;
      margin: auto;
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      bottom: 0;
      width: 100%;
      text-align: left;
      z-index: 100;
      padding: 0 35px; } }
  @media screen and (min-width: 1080px) {
    .homepage-background-banner__content-container {
      max-width: 1040px;
      padding: 0 20px;
      margin: auto; } }
  .homepage-background-banner__heading {
    margin-top: 75px;
    font-family: "Museo Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
    font-size: 44px;
    font-weight: 300;
    line-height: 1.23;
    letter-spacing: -2px;
    font-style: normal;
    font-stretch: normal;
    color: #142533; }
    @media screen and (max-width: 1079px) {
      .homepage-background-banner__heading {
        font-size: 34px;
        line-height: 1.59;
        letter-spacing: -1.5px; } }
    .homepage-background-banner__heading strong {
      font-family: "Museo Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
      font-size: 44px;
      font-weight: 500;
      line-height: 1.23;
      font-style: normal;
      font-stretch: normal;
      letter-spacing: -0.3px; }
      @media screen and (max-width: 1079px) {
        .homepage-background-banner__heading strong {
          font-size: 34px;
          line-height: 1.59;
          letter-spacing: -0.2px; } }
      @media screen and (min-width: 768px) {
        .homepage-background-banner__heading strong {
          font-size: 44px;
          line-height: 1.23; } }
    @media screen and (min-width: 768px) {
      .homepage-background-banner__heading {
        color: #ffffff;
        font-size: 44px;
        line-height: 1.23; } }
  .homepage-background-banner__caption {
    font-family: "Open Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.71;
    letter-spacing: normal;
    font-size: 14px;
    color: #666666;
    margin: 30px; }
    @media screen and (min-width: 1080px) {
      .homepage-background-banner__caption {
        font-size: 16px;
        line-height: 1.88; } }
    @media screen and (min-width: 768px) {
      .homepage-background-banner__caption {
        color: #ffffff;
        margin-left: 0;
        max-width: 350px;
        font-size: 14px;
        line-height: 24px; } }
  .homepage-background-banner__cta-link {
    display: inline-block;
    padding: 10px 20px;
    margin: auto;
    font-size: 16px; }
    @media screen and (min-width: 768px) {
      .homepage-background-banner__cta-link {
        color: #ffffff;
        border: 1px solid #ffffff;
        text-align: center;
        margin: unset;
        margin-right: auto;
        padding: 15px 32px; } }
    @media screen and (max-width: 767px) {
      .homepage-background-banner__cta-link {
        font-size: 14px; } }
  .homepage-background-banner__image-mobile {
    height: 320px;
    width: 768px;
    margin-top: 40px;
    display: block; }
    @media screen and (min-width: 768px) {
      .homepage-background-banner__image-mobile {
        display: none; } }
  .homepage-background-banner__background-mask {
    background: transparent; }
    @media screen and (min-width: 1080px) {
      .homepage-background-banner__background-mask {
        background: rgba(20, 37, 51, 0.55);
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        width: 100%; } }

.get-started {
  width: 100%;
  height: 320px; }
  @media screen and (min-width: 1080px) {
    .get-started {
      height: 500px; } }
  @media screen and (min-width: 1280px) {
    .get-started {
      background-size: cover !important; } }
  .get-started__content {
    padding-left: 20px;
    padding-top: 40px; }
    @media screen and (min-width: 768px) {
      .get-started__content {
        max-width: 768px;
        padding: 0 40px;
        margin: auto;
        padding: 0 40px;
        padding-top: 56px; } }
    @media screen and (min-width: 1080px) {
      .get-started__content {
        padding-left: 0;
        max-width: 1040px;
        padding: 0 20px;
        margin: auto;
        margin: 0 auto;
        padding-top: 146px; } }
  .get-started__text-wrapper {
    font-family: "Open Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.71;
    letter-spacing: normal;
    font-family: "Museo Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
    font-size: 25px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #142533; }
    @media screen and (min-width: 1080px) {
      .get-started__text-wrapper {
        font-size: 16px;
        line-height: 1.88; } }
    @media screen and (min-width: 768px) {
      .get-started__text-wrapper {
        font-family: "Museo Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
        font-size: 36px;
        font-weight: 500;
        line-height: 1.33;
        margin-bottom: 63px; } }
  @media screen and (min-width: 768px) {
    .get-started__text {
      max-width: 403px;
      line-height: 48px; } }
  @media screen and (min-width: 1080px) {
    .get-started__text {
      max-width: 100%; } }
  .get-started__button {
    font-family: "Open Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.71;
    letter-spacing: normal;
    font-family: "Museo Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
    line-height: 1.5;
    font-size: 14px;
    padding: 8px 20px;
    background: transparent;
    display: inline-block;
    font-size: 14px;
    line-height: 18px;
    border: #41ccb4 1px solid;
    color: #41ccb4;
    font-weight: 500; }
    @media screen and (min-width: 1080px) {
      .get-started__button {
        font-size: 16px;
        line-height: 1.88; } }
    @media screen and (min-width: 768px) {
      .get-started__button {
        font-size: 16px;
        padding: 13px 29.5px 11px;
        line-height: 24px; } }
  .get-started--blue .get-started__text-wrapper {
    color: white; }
  .get-started--blue .get-started__button {
    font-family: "Open Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.71;
    letter-spacing: normal;
    font-family: "Museo Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
    line-height: 1.5;
    font-size: 14px;
    padding: 8px 20px;
    background: transparent;
    display: inline-block;
    font-size: 14px;
    line-height: 18px;
    border: white 1px solid;
    color: white;
    font-weight: 500; }
    @media screen and (min-width: 1080px) {
      .get-started--blue .get-started__button {
        font-size: 16px;
        line-height: 1.88; } }
    @media screen and (min-width: 768px) {
      .get-started--blue .get-started__button {
        font-size: 16px;
        padding: 13px 29.5px 11px;
        line-height: 24px; } }

.tech-specs {
  background: #f9f9f9; }
  .tech-specs__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    max-width: 1040px;
    padding: 0 20px;
    margin: auto; }
    @media screen and (min-width: 1080px) {
      .tech-specs__wrapper {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between; } }
  .tech-specs__image {
    display: none; }
    @media screen and (min-width: 1080px) {
      .tech-specs__image {
        display: block;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 204px;
        flex: 0 0 204px;
        max-width: 204px; } }
  .tech-specs__content {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    max-width: 100%;
    margin: 40px 20px; }
    @media screen and (min-width: 768px) {
      .tech-specs__content {
        margin: 100px 0px;
        -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
        flex: 1 1 100%;
        max-width: 100%;
        max-width: 768px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -ms-flex-wrap: no-wrap;
        flex-wrap: no-wrap;
        padding: 0 40px; } }
    @media screen and (min-width: 1080px) {
      .tech-specs__content {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 70%;
        flex: 1 1 70%;
        max-width: 70%;
        margin: 150px 0;
        padding: 0; } }
  .tech-specs__column {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    max-width: 100%; }
    @media screen and (min-width: 768px) {
      .tech-specs__column {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 340px;
        flex: 1 1 340px;
        max-width: 340px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap; } }
    @media screen and (min-width: 768px) {
      .tech-specs__column:first-child {
        margin-right: 14px; } }
    @media screen and (min-width: 1080px) {
      .tech-specs__column:first-child {
        margin-right: 9px; } }
    @media screen and (min-width: 768px) {
      .tech-specs__column:last-child {
        margin-left: 14px; } }
    @media screen and (min-width: 1080px) {
      .tech-specs__column:last-child {
        margin-left: 40px; } }
  .tech-specs__block {
    margin-bottom: 32px; }
    @media screen and (min-width: 768px) {
      .tech-specs__block {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
        flex: 1 1 100%;
        max-width: 100%; } }
    @media screen and (min-width: 1080px) {
      .tech-specs__block {
        margin-bottom: 40px; } }
    .tech-specs__block__title {
      font-family: "Museo Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
      font-size: 20px;
      font-weight: 500;
      line-height: 1.23;
      font-size: 18px;
      margin-bottom: 10px;
      color: #142533;
      letter-spacing: -0.2px;
      line-height: normal; }
      @media screen and (min-width: 768px) {
        .tech-specs__block__title {
          font-size: 24px; } }
      @media screen and (min-width: 768px) {
        .tech-specs__block__title {
          letter-spacing: -0.7px;
          line-height: 1.4;
          font-size: 20px; } }
    .tech-specs__block__body {
      font-family: "Open Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
      font-size: 14px;
      font-weight: normal;
      font-style: normal;
      font-stretch: normal;
      line-height: 1.71;
      letter-spacing: normal;
      font-size: 14px;
      color: #666666;
      line-height: 24px; }
      @media screen and (min-width: 1080px) {
        .tech-specs__block__body {
          font-size: 16px;
          line-height: 1.88; } }
      @media screen and (min-width: 1080px) {
        .tech-specs__block__body {
          font-size: 14px;
          line-height: 24px; } }

.whole-column {
  height: 100%; }

.prod-features {
  background: #ffffff;
  width: 100%;
  padding: 75px 20px 45px 20px; }
  @media screen and (min-width: 768px) {
    .prod-features {
      padding: 80px 40px 52px 40px;
      max-width: 768px;
      padding: 0 40px;
      margin: auto;
      margin-bottom: 50px; } }
  @media screen and (min-width: 1080px) {
    .prod-features {
      padding: 0 20px;
      margin: auto;
      max-width: 1040px;
      min-height: 1507px;
      position: relative;
      margin-bottom: 0; } }
  .prod-features__banner {
    position: relative;
    max-width: 282px;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -ms-flex-line-pack: start;
    align-content: flex-start; }
    @media screen and (min-width: 768px) {
      .prod-features__banner {
        max-width: 100%; } }
    @media screen and (min-width: 1080px) {
      .prod-features__banner {
        max-width: 1040px;
        margin-top: 150px; } }
    .prod-features__banner--blue {
      display: block;
      margin-bottom: 53px;
      max-width: unset; }
      @media screen and (min-width: 768px) {
        .prod-features__banner--blue {
          margin-bottom: 150px; } }
      @media screen and (min-width: 768px) {
        .prod-features__banner--blue {
          margin-bottom: 180px; } }
    .prod-features__banner__text {
      font-family: "Museo Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
      font-size: 36px;
      font-weight: 500;
      line-height: 1.33;
      color: #142533;
      line-height: 1.46;
      font-size: 24px;
      position: absolute;
      left: 0;
      bottom: 70px;
      max-width: 160px; }
      @media screen and (min-width: 768px) {
        .prod-features__banner__text {
          font-size: 36px;
          line-height: 1.33;
          max-width: 452px;
          bottom: 175px; } }
      @media screen and (min-width: 1080px) {
        .prod-features__banner__text {
          top: 175px;
          bottom: auto; } }
      .prod-features__banner__text--blue {
        position: unset;
        max-width: unset;
        margin-bottom: 100px; }
        @media screen and (min-width: 768px) {
          .prod-features__banner__text--blue {
            max-width: 449px;
            margin-bottom: 150px; } }
        @media screen and (min-width: 1080px) {
          .prod-features__banner__text--blue {
            margin-bottom: 180px; } }
    .prod-features__banner__image {
      width: 100%;
      max-width: 282px; }
      @media screen and (min-width: 768px) {
        .prod-features__banner__image {
          max-width: 422px; } }
      @media screen and (min-width: 1080px) {
        .prod-features__banner__image {
          max-width: 528px; } }
      .prod-features__banner__image--blue {
        max-width: unset;
        width: auto;
        height: 401px;
        margin: auto;
        display: block; }
        @media screen and (min-width: 768px) {
          .prod-features__banner__image--blue {
            height: auto;
            width: 687px; } }
        @media screen and (min-width: 1080px) {
          .prod-features__banner__image--blue {
            width: 761px; } }
    .prod-features__banner__image-wrapper {
      width: 100%;
      max-width: 282px; }
      @media screen and (min-width: 768px) {
        .prod-features__banner__image-wrapper {
          max-width: 422px;
          margin-right: 50px; } }
      @media screen and (min-width: 1080px) {
        .prod-features__banner__image-wrapper {
          max-width: 528px;
          margin-right: 0; } }
  .prod-features__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 30px;
    width: 100%; }
    @media screen and (min-width: 768px) {
      .prod-features__content {
        margin-top: 0;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between; } }
    @media screen and (min-width: 1080px) {
      .prod-features__content {
        max-width: 746px;
        position: absolute;
        top: 608px;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start; } }
    @media screen and (min-width: 1080px) {
      .prod-features__content--blue {
        position: unset;
        max-width: 100%;
        margin-left: -10px;
        margin-right: -10px; } }
  .prod-features__block {
    margin-bottom: 30px;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 290px;
    flex: 1 1 290px;
    max-width: 290px; }
    @media screen and (min-width: 620px) {
      .prod-features__block:nth-child(odd) {
        padding-right: 10px; }
      .prod-features__block:nth-child(even) {
        padding-left: 10px; } }
    @media screen and (min-width: 768px) {
      .prod-features__block {
        margin-bottom: 48px;
        -webkit-box-flex: 1;
        -ms-flex: 1 1 334px;
        flex: 1 1 334px;
        max-width: 334px; } }
    @media screen and (min-width: 1080px) {
      .prod-features__block {
        margin-bottom: 48px; }
        .prod-features__block:nth-child(odd) {
          padding-right: 53px; }
        .prod-features__block:nth-child(even) {
          padding-left: 53px; } }
    .prod-features__block__icon {
      width: 24px;
      height: 24px;
      margin-bottom: 5px; }
      @media screen and (min-width: 768px) {
        .prod-features__block__icon {
          margin-bottom: 9px; } }
      .prod-features__block__icon svg, .prod-features__block__icon path {
        fill: #41ccb4; }
    .prod-features__block__title {
      font-family: "Museo Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
      font-size: 18px;
      font-weight: 500;
      line-height: 1.56;
      font-size: 16px;
      margin-bottom: 3px;
      line-height: 1.75;
      letter-spacing: -0.2px;
      color: #142533;
      text-transform: uppercase; }
      @media screen and (min-width: 768px) {
        .prod-features__block__title {
          font-size: 18px;
          margin-bottom: 2px;
          line-height: 28px; } }
    .prod-features__block__body {
      font-family: "Open Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
      font-size: 14px;
      font-weight: normal;
      font-style: normal;
      font-stretch: normal;
      line-height: 1.71;
      letter-spacing: normal;
      font-size: 14px;
      line-height: 1.71;
      letter-spacing: -0.2px;
      color: #666666; }
      @media screen and (min-width: 1080px) {
        .prod-features__block__body {
          font-size: 16px;
          line-height: 1.88; } }
      @media screen and (min-width: 768px) {
        .prod-features__block__body {
          letter-spacing: normal;
          font-size: 16px;
          line-height: 30px; } }

.prod-features--blue .prod-features__block {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
  max-width: 100%;
  padding-left: 10px !important;
  padding-right: 10px !important; }
  @media screen and (min-width: 768px) {
    .prod-features--blue .prod-features__block {
      margin-bottom: 48px;
      -webkit-box-flex: 1;
      -ms-flex: 1 1 50%;
      flex: 1 1 50%;
      max-width: 50%; } }
  @media screen and (min-width: 1080px) {
    .prod-features--blue .prod-features__block {
      margin-bottom: 48px;
      -webkit-box-flex: 1;
      -ms-flex: 1 1 33.3%;
      flex: 1 1 33.3%;
      max-width: 33.3%; } }
  @media screen and (min-width: 1080px) {
    .prod-features--blue .prod-features__block {
      margin-bottom: 48px; } }

.homepage-news-banner {
  text-align: center;
  background-color: #f9f9f9; }
  @media screen and (min-width: 768px) {
    .homepage-news-banner {
      text-align: left;
      min-height: 400px; } }
  @media screen and (min-width: 768px) {
    .homepage-news-banner__content-container {
      max-width: 768px;
      padding: 0 40px;
      margin: auto;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; } }
  @media screen and (min-width: 1080px) {
    .homepage-news-banner__content-container {
      max-width: 1040px;
      padding: 0 20px;
      margin: auto; } }
  @media screen and (min-width: 768px) {
    .homepage-news-banner__left-wrapper {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-flex: 1;
      -ms-flex: 1 0 50%;
      flex: 1 0 50%;
      max-width: 50%; } }
  @media screen and (min-width: 1080px) {
    .homepage-news-banner__left-wrapper {
      -webkit-box-flex: 1;
      -ms-flex: 1 0 36%;
      flex: 1 0 36%;
      max-width: 36%; } }
  @media screen and (min-width: 1080px) {
    .homepage-news-banner__text-wrapper {
      padding-right: 40px; } }
  .homepage-news-banner__heading {
    padding-top: 44px;
    font-family: "Museo Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
    font-size: 44px;
    font-weight: 300;
    line-height: 1.23;
    letter-spacing: -2px;
    font-style: normal;
    font-stretch: normal;
    color: #142533;
    line-height: 54px; }
    @media screen and (max-width: 1079px) {
      .homepage-news-banner__heading {
        font-size: 34px;
        line-height: 1.59;
        letter-spacing: -1.5px; } }
    @media screen and (min-width: 768px) {
      .homepage-news-banner__heading {
        font-size: 44px;
        letter-spacing: -2px; } }
    @media screen and (max-width: 1079px) {
      .homepage-news-banner__heading {
        line-height: 54px; } }
    .homepage-news-banner__heading strong {
      font-family: "Museo Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
      font-size: 44px;
      font-weight: 500;
      line-height: 1.23;
      font-style: normal;
      font-stretch: normal;
      letter-spacing: -0.3px;
      line-height: 54px; }
      @media screen and (max-width: 1079px) {
        .homepage-news-banner__heading strong {
          font-size: 34px;
          line-height: 1.59;
          letter-spacing: -0.2px; } }
      @media screen and (min-width: 768px) {
        .homepage-news-banner__heading strong {
          font-size: 44px;
          letter-spacing: -0.3px; } }
      @media screen and (max-width: 1079px) {
        .homepage-news-banner__heading strong {
          line-height: 54px; } }
  .homepage-news-banner__caption {
    font-family: "Open Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.71;
    letter-spacing: normal;
    font-size: 14px;
    color: #666666;
    margin: 32px 20px 57px 20px;
    font-size: 14px;
    line-height: 24px; }
    @media screen and (min-width: 1080px) {
      .homepage-news-banner__caption {
        font-size: 16px;
        line-height: 1.88; } }
    @media screen and (min-width: 768px) {
      .homepage-news-banner__caption {
        margin-left: 0;
        margin-right: 60px;
        max-width: 350px; } }
    @media screen and (min-width: 1080px) {
      .homepage-news-banner__caption {
        margin-right: 20px;
        font-size: 14px;
        line-height: 24px; } }
  .homepage-news-banner__cta-link {
    width: 120px;
    height: 40px;
    padding: 12px 20px;
    margin: auto; }
    @media screen and (min-width: 768px) {
      .homepage-news-banner__cta-link {
        color: #ffffff;
        border: 1px solid #ffffff;
        text-align: center;
        margin: unset;
        margin-right: auto; } }
  .homepage-news-banner__articles-wrapper {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    @media screen and (min-width: 768px) {
      .homepage-news-banner__articles-wrapper {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 50%;
        flex: 1 1 50%;
        max-width: 50%;
        margin-top: 37px;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start; } }
    @media screen and (min-width: 1080px) {
      .homepage-news-banner__articles-wrapper {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 64%;
        flex: 1 1 64%;
        max-width: 64%; } }
  .homepage-news-banner__articles {
    background-color: #ffffff;
    padding: 42px 20px 35px 74px;
    margin: -27px 0px 71px 20px;
    -webkit-box-shadow: -2px 2px 15px rgba(0, 0, 0, 0.1);
    box-shadow: -2px 2px 15px rgba(0, 0, 0, 0.1);
    border-radius: 4px; }
    @media screen and (min-width: 768px) {
      .homepage-news-banner__articles {
        margin: 39px -40px 74px 0;
        padding: 31px 41px 31px 74px;
        max-width: 400px; } }
    @media screen and (min-width: 1080px) {
      .homepage-news-banner__articles {
        margin: 39px 0 74px 18%;
        padding: 42px 56px 45px 74px;
        max-width: 450px; } }
  .homepage-news-banner__article {
    text-align: left;
    list-style: none;
    position: relative;
    line-height: 24px; }
    .homepage-news-banner__article:not(:last-child) {
      margin-bottom: 20px; }
    @media screen and (min-width: 1080px) {
      .homepage-news-banner__article:not(:last-child) {
        margin-bottom: 22px; } }
    .homepage-news-banner__article::before {
      content: '';
      display: block;
      width: 8px;
      height: 8px;
      background-color: #41ccb4;
      position: absolute;
      left: -19px;
      top: 8px;
      border-radius: 4px; }
  .homepage-news-banner__article-link {
    font-family: "Open Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.71;
    letter-spacing: normal;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.71;
    color: #666666; }
    @media screen and (min-width: 1080px) {
      .homepage-news-banner__article-link {
        font-size: 16px;
        line-height: 1.88; } }
    @media screen and (min-width: 1080px) {
      .homepage-news-banner__article-link {
        font-size: 14px;
        line-height: 1.71; } }

.live {
  padding: 75px 0 72px 20px;
  max-width: 100%;
  display: block; }
  .live__slideshow .slick-list {
    padding: 0 75px 0 0 !important; }
  .live__slideshow .slick-slide {
    margin-right: 21px;
    max-width: 204px; }
  .live__slideshow .slick-dots .slick-active button:before {
    background-color: #41ccb4; }
  @media screen and (min-width: 768px) {
    .live__slideshow-slide {
      -webkit-box-flex: 1;
      -ms-flex: 1 0 218px;
      flex: 1 0 218px;
      max-width: 218px; } }
  @media screen and (min-width: 1080px) {
    .live__slideshow-slide {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
      flex: 0 0 auto;
      max-width: 239px;
      width: 100%; } }
  @media screen and (min-width: 768px) {
    .live__slideshow {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between;
      -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
      flex: 1 0 100%;
      max-width: 100%; } }
  @media screen and (min-width: 1080px) {
    .live__slideshow {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-flow: column wrap;
      flex-flow: column wrap;
      -webkit-box-pack: start;
      -ms-flex-pack: start;
      justify-content: flex-start;
      -webkit-box-flex: 1;
      -ms-flex: 1 0 239px;
      flex: 1 0 239px;
      max-width: 239px; } }
  .live__title {
    font-family: "Rubik", sans-serif;
    font-size: 40px;
    line-height: 0.88;
    letter-spacing: -0.2px;
    color: #41ccb4; }
    @media screen and (min-width: 768px) {
      .live__title {
        margin-bottom: 23px;
        line-height: 35px;
        font-size: 50px; } }
    @media screen and (min-width: 1080px) {
      .live__title {
        margin-bottom: 11px;
        line-height: 54px;
        font-size: 44px;
        letter-spacing: -0.3px; } }
  .live__header {
    font-family: "Museo Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.75;
    letter-spacing: -0.2px;
    color: #142533;
    text-transform: uppercase; }
    @media screen and (min-width: 768px) {
      .live__header {
        line-height: 28px;
        font-size: 18px;
        letter-spacing: -0.3px;
        margin-bottom: 10px; } }
    @media screen and (min-width: 1080px) {
      .live__header {
        letter-spacing: -0.2px; } }
    @media screen and (min-width: 1080px) {
      .live__header {
        margin-bottom: 0px; } }
  .live__text {
    font-family: "Open Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.71;
    letter-spacing: normal;
    color: #666666; }
    @media screen and (min-width: 1080px) {
      .live__text {
        font-size: 14px;
        margin-bottom: 23px; } }
  .live__button {
    margin-top: 40px; }
    .live__button-mobile {
      background: #41ccb4;
      color: #ffffff;
      width: 120px;
      padding: 8.5px 16px;
      text-align: center; }
    .live__button-tablet {
      background: #41ccb4;
      color: #ffffff;
      width: 150px;
      padding: 13.5px 20px;
      text-align: center; }
    .live__button-desktop {
      background: #41ccb4;
      color: #ffffff;
      width: 150px;
      text-align: center;
      padding: 13.5px 20px; }
    @media screen and (min-width: 768px) {
      .live__button {
        margin-top: 50px;
        -webkit-box-flex: 1;
        -ms-flex: 1 0 100%;
        flex: 1 0 100%;
        max-width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center; } }
    @media screen and (min-width: 1080px) {
      .live__button {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 50px;
        flex: 1 0 50px;
        max-width: 150px;
        margin: 0;
        max-height: 50px;
        margin-top: 8px; } }
  .live__img {
    margin-bottom: 40px;
    -webkit-box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1); }
    @media screen and (min-width: 768px) {
      .live__img {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 543.9px;
        flex: 1 0 543.9px;
        max-width: 543.9px;
        margin-bottom: 70px; }
        .live__img img, .live__img picture {
          max-width: 100%;
          vertical-align: top; } }
    @media screen and (min-width: 1080px) {
      .live__img {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 700px;
        flex: 1 0 700px;
        max-width: 700px;
        margin-top: 8px; } }
  @media screen and (min-width: 768px) {
    .live {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
      flex-flow: row wrap;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      max-width: 768px;
      padding: 0 40px;
      margin: auto;
      padding-top: 100px;
      padding-bottom: 100px; } }
  @media screen and (min-width: 1080px) {
    .live {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
      flex-flow: row wrap;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between;
      max-width: 1040px;
      padding: 0 20px;
      margin: auto;
      padding-top: 150px;
      padding-bottom: 151px; } }

.popularity {
  background: #142533; }
  .popularity__container {
    max-width: 1040px;
    margin: auto;
    padding: 0 20px; }
  .popularity__content {
    color: #ffffff;
    text-align: center;
    font-family: "Open Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
    padding: 38px 0; }
    @media screen and (min-width: 768px) {
      .popularity__content {
        padding: 40.5px 0; } }
  .popularity__caption {
    font-family: "Rubik", sans-serif;
    font-size: 35px;
    margin-bottom: 18px; }
    @media screen and (min-width: 768px) {
      .popularity__caption {
        font-size: 50px;
        margin-bottom: 20px;
        margin-top: 30px; } }
  .popularity__header {
    margin-bottom: 13px;
    font-size: 20px;
    letter-spacing: -0.1px;
    line-height: 1.25;
    font-weight: normal; }
    @media screen and (min-width: 768px) {
      .popularity__header {
        font-size: 25px;
        line-height: 35px;
        letter-spacing: -0.2px;
        margin-bottom: 0; } }
  .popularity__subheader {
    font-size: 14px;
    line-height: 1.5; }
    @media screen and (min-width: 768px) {
      .popularity__subheader {
        font-size: 16px; } }

@media screen and (min-width: 1080px) {
  .pdp-modal-section__wrapper {
    max-width: 1040px;
    padding: 0 20px;
    margin: auto;
    overflow: visible;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 200px; } }

.pdp-modal-section__picture-container {
  overflow: visible;
  width: auto;
  height: 320px;
  margin-bottom: 80px; }
  @media screen and (min-width: 1080px) {
    .pdp-modal-section__picture-container {
      height: 860px;
      margin-bottom: 0; } }
  @media screen and (min-width: 1280px) {
    .pdp-modal-section__picture-container {
      overflow-y: hidden;
      overflow-x: visible; } }

.pdp-modal-section__block {
  margin-bottom: 30px; }
  .pdp-modal-section__block-container {
    padding: 0 20px; }
    @media screen and (min-width: 768px) {
      .pdp-modal-section__block-container {
        max-width: 768px;
        padding: 0 40px;
        margin: auto; } }
    @media screen and (min-width: 1080px) {
      .pdp-modal-section__block-container {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 510px;
        flex: 1 0 510px;
        max-width: 510px;
        margin: 0;
        padding: 0;
        margin-right: 145px;
        padding-left: 65px; } }

.pdp-modal-section__main-image {
  width: auto;
  height: 400px;
  padding-bottom: 80px; }
  @media screen and (min-width: 768px) {
    .pdp-modal-section__main-image {
      height: 420px;
      padding-bottom: 100px; } }
  @media screen and (min-width: 1080px) {
    .pdp-modal-section__main-image {
      width: auto;
      height: 860px;
      margin: 0;
      padding: 0; } }
  @media screen and (min-width: 1280px) {
    .pdp-modal-section__main-image {
      height: auto;
      width: 100%; } }

@media screen and (min-width: 768px) {
  .pdp-modal-section__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; } }

@media screen and (min-width: 1080px) {
  .pdp-modal-section__head {
    -webkit-transform: translateX(-65px);
    transform: translateX(-65px); } }

.pdp-modal-section__header {
  font-family: "Museo Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.23;
  color: #142533;
  padding-bottom: 16px; }
  @media screen and (min-width: 768px) {
    .pdp-modal-section__header {
      font-size: 24px; } }
  @media screen and (min-width: 1080px) {
    .pdp-modal-section__header {
      padding-bottom: 0; } }

.pdp-modal-section__body-text {
  font-family: "Open Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.71;
  letter-spacing: normal;
  color: #666666;
  padding-bottom: 8px; }
  @media screen and (min-width: 1080px) {
    .pdp-modal-section__body-text {
      font-size: 16px;
      line-height: 1.88; } }
  @media screen and (min-width: 768px) {
    .pdp-modal-section__body-text {
      font-size: 16px;
      line-height: 1.88;
      margin-left: 65px; } }
  @media screen and (min-width: 1080px) {
    .pdp-modal-section__body-text {
      margin-left: 0; } }

.pdp-modal-section__modal-trigger {
  font-family: "Open Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.71;
  letter-spacing: normal;
  font-size: 16px;
  font-weight: 600;
  color: #41ccb4;
  cursor: pointer; }
  @media screen and (min-width: 1080px) {
    .pdp-modal-section__modal-trigger {
      font-size: 16px;
      line-height: 1.88; } }
  @media screen and (min-width: 768px) {
    .pdp-modal-section__modal-trigger {
      margin-left: 65px; } }
  @media screen and (min-width: 1080px) {
    .pdp-modal-section__modal-trigger {
      margin-left: 0; } }

.pdp-modal-section__arrow svg,
.pdp-modal-section__arrow path {
  fill: #41ccb4; }

.pdp-modal-section__arrow svg {
  height: 14px;
  width: 14px;
  -webkit-transform: translateY(3px);
  transform: translateY(3px);
  margin-left: 2px; }

.pdp-modal-section__icon svg,
.pdp-modal-section__icon path {
  fill: #41ccb4; }

.pdp-modal-section__icon svg {
  height: 30px;
  width: 30px;
  margin-bottom: 10px; }
  @media screen and (min-width: 768px) {
    .pdp-modal-section__icon svg {
      height: 40px;
      width: 40px;
      margin: 0;
      margin-right: 25px; } }

.modal {
  display: none;
  position: fixed;
  top: 44px;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(102, 102, 102, 0.4);
  z-index: 2; }
  @media screen and (min-width: 1080px) {
    .modal {
      z-index: 100001;
      top: 0; } }
  .modal--active {
    display: block; }
  .modal__header {
    font-family: "Museo Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.23;
    padding-bottom: 20px; }
    @media screen and (min-width: 768px) {
      .modal__header {
        font-size: 24px; } }
  .modal__subheader {
    font-family: "Museo Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.56;
    color: #41ccb4;
    text-transform: uppercase;
    padding-bottom: 10px; }
  .modal__text {
    font-family: "Open Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.71;
    letter-spacing: normal;
    padding-bottom: 20px; }
    @media screen and (min-width: 1080px) {
      .modal__text {
        font-size: 16px;
        line-height: 1.88; } }
  .modal__white-background {
    width: 100%;
    height: 100%;
    background: white;
    padding: 0 20px;
    padding-top: 50px;
    border-radius: 3px;
    overflow: auto;
    max-height: 80vh; }
    @media screen and (min-width: 768px) {
      .modal__white-background {
        max-width: 510px;
        position: absolute;
        height: auto;
        top: 50%;
        left: 0;
        right: 0;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        margin: auto;
        overflow: hidden;
        padding: 60px 64px 60px 130px; } }
    @media screen and (min-width: 1080px) {
      .modal__white-background {
        max-width: 760px;
        padding: 60px 60px 60px 104px; } }
  .modal__close {
    position: absolute;
    right: 20px;
    top: 20px;
    cursor: pointer; }
  .modal__icon svg,
  .modal__icon path {
    fill: #41ccb4; }
  .modal__icon svg {
    margin-bottom: 10px;
    height: 60px;
    width: 60px; }
  @media screen and (min-width: 1080px) {
    .modal__icon {
      position: absolute;
      left: -12px;
      top: 70.4px; } }

@media screen and (max-width: 530px) {
  #shopify-section-pdp_modal_section--blue .pdp-modal-section__picture img {
    -webkit-transform: translateX(-30%);
    transform: translateX(-30%); } }

.vault-overview {
  text-align: center;
  margin: auto; }
  @media screen and (min-width: 768px) {
    .vault-overview {
      position: relative;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: start;
      -ms-flex-align: start;
      align-items: flex-start;
      overflow: visible;
      padding-top: 90px;
      max-width: 768px; } }
  @media screen and (min-width: 1080px) {
    .vault-overview {
      max-width: 1000px;
      overflow: visible; } }
  .vault-overview__content-container {
    text-align: center;
    padding-top: 30px;
    overflow: hidden;
    padding-bottom: 50px; }
    @media screen and (min-width: 768px) {
      .vault-overview__content-container {
        padding-top: 0px;
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
        overflow: visible;
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        min-width: 57%;
        padding: 0 20px;
        margin-top: -10px;
        padding-right: 40px; } }
    @media screen and (min-width: 1080px) {
      .vault-overview__content-container {
        min-width: 50%;
        padding-left: 0px;
        padding-right: 40px;
        margin-left: -20px; } }
  .vault-overview__main-heading {
    padding: 0 20px;
    color: #142533;
    font-family: "Museo Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
    font-size: 44px;
    font-weight: 300;
    line-height: 1.23;
    letter-spacing: -2px;
    font-style: normal;
    font-stretch: normal; }
    @media screen and (max-width: 1079px) {
      .vault-overview__main-heading {
        font-size: 34px;
        line-height: 1.59;
        letter-spacing: -1.5px; } }
    @media screen and (min-width: 768px) {
      .vault-overview__main-heading {
        text-align: left;
        font-size: 44px;
        padding-bottom: 5px; } }
    @media screen and (min-width: 768px) {
      .vault-overview__main-heading {
        padding-bottom: 10px; } }
    .vault-overview__main-heading strong {
      padding: 0;
      font-family: "Museo Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
      font-size: 44px;
      font-weight: 500;
      line-height: 1.23;
      font-style: normal;
      font-stretch: normal;
      letter-spacing: -0.3px; }
      @media screen and (max-width: 1079px) {
        .vault-overview__main-heading strong {
          font-size: 34px;
          line-height: 1.59;
          letter-spacing: -0.2px; } }
      @media screen and (min-width: 768px) {
        .vault-overview__main-heading strong {
          font-size: 44px; } }
  .vault-overview__main-subtitle {
    font-family: "Museo Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.25;
    color: #999999;
    padding-bottom: 5px;
    padding: 0 20px; }
    @media screen and (min-width: 768px) {
      .vault-overview__main-subtitle {
        font-size: 24px;
        letter-spacing: 0.3px; } }
    @media screen and (min-width: 768px) {
      .vault-overview__main-subtitle {
        text-align: left; } }
  .vault-overview__caption {
    font-family: "Open Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.71;
    letter-spacing: normal;
    font-size: 14px;
    padding: 0 20px;
    color: #666666;
    margin-top: 30px;
    text-align: left; }
    @media screen and (min-width: 1080px) {
      .vault-overview__caption {
        font-size: 16px;
        line-height: 1.88; } }
    @media screen and (min-width: 768px) {
      .vault-overview__caption {
        font-family: "Open Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
        font-size: 14px;
        font-weight: normal;
        font-style: normal;
        font-stretch: normal;
        line-height: 1.71;
        letter-spacing: normal;
        font-size: 16px; } }
  @media screen and (min-width: 768px) and (min-width: 1080px) {
    .vault-overview__caption {
      font-size: 16px;
      line-height: 1.88; } }
    .vault-overview__caption:last-of-type {
      margin-top: 20px; }
      @media screen and (min-width: 1080px) {
        .vault-overview__caption:last-of-type {
          margin-top: 30px; } }
  .vault-overview__cta-link {
    background: #27d0e2;
    color: #ffffff;
    width: 140px;
    margin-top: 30px;
    height: 40px;
    padding: 10px 20px;
    margin-left: 20px;
    font-size: 14px;
    line-height: 19px;
    white-space: nowrap; }
    @media screen and (min-width: 768px) {
      .vault-overview__cta-link {
        font-size: 16px; } }
  .vault-overview__image-container {
    margin-top: 50px;
    position: relative;
    padding-left: 20px; }
    @media screen and (min-width: 768px) {
      .vault-overview__image-container {
        margin-top: 40px; } }
  .vault-overview__image-mobile {
    display: block;
    height: 300px; }
    @media screen and (min-width: 768px) {
      .vault-overview__image-mobile {
        display: none; } }
  .vault-overview__image-desktop-container {
    display: none;
    position: relative;
    overflow: visible; }
    @media screen and (min-width: 768px) {
      .vault-overview__image-desktop-container {
        margin-top: 20px;
        display: block;
        width: 100%;
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2; } }
    @media screen and (min-width: 1080px) {
      .vault-overview__image-desktop-container {
        margin-left: 20px;
        width: auto; } }
  .vault-overview__image-desktop {
    margin-right: -20px;
    height: 619px;
    width: auto; }

.vault-modal-section {
  background: #142533; }
  @media screen and (min-width: 768px) {
    .vault-modal-section {
      margin-top: -30px; } }
  @media screen and (min-width: 1080px) {
    .vault-modal-section {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      padding-top: 110px;
      overflow: hidden;
      -webkit-box-pack: end;
      -ms-flex-pack: end;
      justify-content: flex-end; } }
  @media screen and (min-width: 1080px) {
    .vault-modal-section__block {
      max-width: 410px; } }
  .vault-modal-section__block:not(:last-child) {
    margin-bottom: 40px; }
    @media screen and (min-width: 1080px) {
      .vault-modal-section__block:not(:last-child) {
        margin-bottom: 75px; } }
  @media screen and (min-width: 768px) {
    .vault-modal-section__picture-container {
      height: 529px;
      text-align: center; } }
  @media screen and (min-width: 768px) and (max-width: 1079px) {
    .vault-modal-section__picture-container {
      height: 628px; } }
  @media screen and (min-width: 1080px) {
    .vault-modal-section__picture-container {
      -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
      order: 1;
      -webkit-box-flex: 0;
      -ms-flex: 0 0 47%;
      flex: 0 0 47%;
      text-align: right;
      padding-right: 94px; } }
  .vault-modal-section__block-container {
    padding: 20px;
    padding-bottom: 50px; }
    @media screen and (min-width: 768px) {
      .vault-modal-section__block-container {
        padding: 40px;
        padding-bottom: 100px; } }
    @media screen and (min-width: 1080px) {
      .vault-modal-section__block-container {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        padding-right: 0px;
        padding-bottom: 150px;
        margin-left: auto;
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
        padding-left: 70px; } }
  .vault-modal-section__main-image {
    height: 410px;
    padding-bottom: 30px;
    margin-bottom: -120px;
    margin-top: -20px; }
    @media screen and (min-width: 768px) {
      .vault-modal-section__main-image {
        margin-bottom: -140px;
        margin-top: 0;
        height: 714px;
        padding: 0; } }
    @media screen and (min-width: 1080px) {
      .vault-modal-section__main-image {
        width: auto;
        margin: 0;
        padding: 0;
        height: 700px; } }
    @media screen and (max-width: 767px) {
      .vault-modal-section__main-image {
        height: 482px;
        margin-top: 16px;
        margin-bottom: 0px;
        padding-bottom: 0;
        margin-left: -118px; } }
  @media screen and (min-width: 1080px) {
    .vault-modal-section__head {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-transform: translateX(-65px);
      transform: translateX(-65px); } }
  .vault-modal-section__header {
    font-family: "Museo Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.23;
    line-height: 1.5;
    color: #ffffff;
    padding-bottom: 16px; }
    @media screen and (min-width: 768px) {
      .vault-modal-section__header {
        font-size: 24px; } }
    @media (min-width: 768px) and (max-width: 1079px) {
      .vault-modal-section__header {
        display: inline-block;
        line-height: normal; } }
  .vault-modal-section__body-text {
    font-family: "Open Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.71;
    letter-spacing: normal;
    color: #cccccc; }
    @media screen and (min-width: 1080px) {
      .vault-modal-section__body-text {
        font-size: 16px;
        line-height: 1.88; } }
    @media screen and (min-width: 768px) {
      .vault-modal-section__body-text {
        font-size: 16px; } }
    @media (min-width: 768px) and (max-width: 1079px) {
      .vault-modal-section__body-text {
        margin-left: 66px; } }
  @media (min-width: 768px) and (max-width: 1079px) {
    .vault-modal-section__icon {
      display: inline-block;
      margin-right: 33px;
      vertical-align: top; } }
  .vault-modal-section__icon svg,
  .vault-modal-section__icon path {
    fill: #27d0e2; }
  .vault-modal-section__icon svg {
    height: 30px;
    width: 30px;
    margin-bottom: 10px; }
    @media (min-width: 768px) and (max-width: 1079px) {
      .vault-modal-section__icon svg {
        margin-bottom: 0; } }
    @media screen and (min-width: 1080px) {
      .vault-modal-section__icon svg {
        height: 40px;
        width: 40px;
        margin: 0;
        margin-right: 25px; } }

.vault-how-it-works {
  padding: 80px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative; }
  @media screen and (min-width: 768px) {
    .vault-how-it-works {
      height: 950px;
      width: 768px;
      margin: 0 auto;
      margin-bottom: 100px; } }
  @media screen and (min-width: 1080px) {
    .vault-how-it-works {
      height: 920px;
      width: 1000px;
      margin-bottom: 150px;
      margin-top: 65px; } }
  .vault-how-it-works h2 {
    font-family: "Museo Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 24px;
    text-align: center;
    margin-bottom: 40px; }
    @media screen and (min-width: 768px) {
      .vault-how-it-works h2 {
        font-size: 36px;
        line-height: 36px; } }
  @media screen and (min-width: 768px) {
    .vault-how-it-works__block {
      position: absolute;
      text-align: right; } }
  .vault-how-it-works__block--content--text {
    font-family: "Open Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.88;
    color: #666666; }
    .vault-how-it-works__block--content--text span {
      font-family: "Open Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
      font-size: 22px;
      font-weight: 600;
      line-height: 22px;
      color: #27d0e2; }
  .vault-how-it-works__block img {
    display: block;
    margin: 30px auto; }
    @media screen and (min-width: 768px) {
      .vault-how-it-works__block img {
        display: none; } }
  @media screen and (min-width: 768px) {
    .vault-how-it-works__block1 {
      width: 215px;
      top: 200px;
      left: 40px; } }
  @media screen and (min-width: 1080px) {
    .vault-how-it-works__block1 {
      width: 235px;
      top: 185px;
      left: 70px; } }
  @media screen and (min-width: 768px) {
    .vault-how-it-works__block2 {
      width: 215px;
      right: 80px;
      top: 240px; } }
  @media screen and (min-width: 1080px) {
    .vault-how-it-works__block2 {
      width: 215px;
      right: 80px;
      top: 245px; } }
  @media screen and (min-width: 768px) {
    .vault-how-it-works__block3 {
      width: 410px;
      right: 80px;
      bottom: 55px; } }
  @media screen and (min-width: 1080px) {
    .vault-how-it-works__block3 {
      width: 545px;
      right: 80px;
      bottom: 83px; } }
  @media screen and (min-width: 768px) {
    .vault-how-it-works__block4 {
      width: 215px;
      left: 40px;
      top: 420px; } }
  @media screen and (min-width: 1080px) {
    .vault-how-it-works__block4 {
      width: 235px;
      left: 0px;
      top: 495px; } }
  .vault-how-it-works__img--tablet {
    display: none; }
    @media screen and (min-width: 768px) {
      .vault-how-it-works__img--tablet {
        display: block;
        position: absolute;
        bottom: 0px; } }
    @media screen and (min-width: 1080px) {
      .vault-how-it-works__img--tablet {
        display: none; } }
  .vault-how-it-works__img--desktop {
    display: none; }
    @media screen and (min-width: 1080px) {
      .vault-how-it-works__img--desktop {
        display: block;
        position: absolute;
        bottom: 0px;
        right: -8px; } }

.vault-testimonial {
  position: relative; }
  .vault-testimonial__wrapper {
    background: #27d0e2;
    position: relative;
    max-width: 100%;
    margin: 0 auto; }
    @media screen and (min-width: 1080px) {
      .vault-testimonial__wrapper {
        position: absolute;
        max-width: 50%;
        margin: 0 auto;
        z-index: 2;
        width: 100%;
        right: 0;
        height: 100%; } }
  .vault-testimonial__content--desktop--wrapper {
    display: none; }
    @media screen and (min-width: 1080px) {
      .vault-testimonial__content--desktop--wrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        color: #ffffff;
        top: 50%;
        left: 50%;
        max-width: 1000px;
        width: 100%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        position: absolute;
        z-index: 2; } }
  .vault-testimonial__content--desktop {
    width: 400px;
    text-align: right;
    margin-left: auto; }
  .vault-testimonial__content {
    padding: 40px 20px;
    color: #ffffff; }
    @media screen and (min-width: 768px) {
      .vault-testimonial__content {
        padding: 50px 40px; } }
    @media screen and (min-width: 1080px) {
      .vault-testimonial__content {
        display: none; } }
    .vault-testimonial__content--text {
      font: italic normal 400 18px/30px "Open Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
      letter-spacing: -0.1px;
      margin-bottom: 30px; }
      @media screen and (min-width: 768px) {
        .vault-testimonial__content--text {
          font: italic normal 400 20px/40px "Open Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
          letter-spacing: -0.2px; } }
    .vault-testimonial__content--signature {
      font: normal normal 400 16px/36px "Open Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
      letter-spacing: -0.1px; }
  .vault-testimonial__image {
    position: relative; }
    .vault-testimonial__image:after {
      content: '';
      display: block;
      position: absolute;
      width: 100%;
      height: 100%;
      background: rgba(20, 37, 51, 0.55);
      right: 0;
      left: 0;
      top: 0;
      bottom: 0;
      margin: auto; }
      @media screen and (min-width: 768px) {
        .vault-testimonial__image:after {
          background: transparent; } }
    .vault-testimonial__image--asset {
      width: auto;
      height: 400px;
      display: block; }

@media screen and (min-width: 768px) {
  .vault {
    margin-top: 90px; } }

@media screen and (min-width: 1080px) {
  .vault {
    margin-top: 150px; } }

.vault .ledger-live__currencies-text__title {
  margin-top: 50px; }

@media screen and (min-width: 1080px) {
  .vault .ledger-live__currencies-wrapper__currencies-padding-wrapper {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start; } }

.vault.ledger-live .slick-dots li.slick-active button:before {
  background: #41ccb4; }

@media screen and (max-width: 1079px) and (min-width: 768px) {
  .vault .ledger-live__currencies-wrapper {
    margin-bottom: 20px; } }

.ledger-live .slick-dots li.slick-active button:before {
  background: #41ccb4; }

.vault-form .designguide__form__text {
  margin: 0; }
  @media screen and (min-width: 768px) {
    .vault-form .designguide__form__text {
      width: 100%; } }

.vault-form h2 {
  display: block;
  width: 100%;
  font: normal normal 500 24px/24px "Museo Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
  margin-bottom: 27px; }

.vault-form__image {
  display: block;
  width: 100%; }
  .vault-form__image img {
    width: 100%; }

.vault-form__container {
  padding: 0 20px;
  margin-top: 80px;
  margin-bottom: 75px; }
  @media screen and (min-width: 768px) {
    .vault-form__container {
      margin-bottom: 0px; } }
  .vault-form__container--title {
    font: normal normal 500 34px/34px "Museo Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
    margin-bottom: 70px;
    text-align: center; }
    @media screen and (min-width: 768px) {
      .vault-form__container--title {
        font: normal normal 500 36px/36px "Museo Sans", "Helvetica Neue", Verdana, Arial, sans-serif; } }
  @media screen and (min-width: 768px) {
    .vault-form__container form {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      -ms-flex-flow: wrap;
      flex-flow: wrap;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between;
      width: 450px;
      margin: 0 auto; } }
  @media screen and (min-width: 1080px) {
    .vault-form__container form {
      width: 485px; } }
  .vault-form__container form input:focus {
    padding-top: 10px; }
  .vault-form__container form label {
    font: normal normal 400 14px/14px "Open Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
    color: #999999;
    top: 19px;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease; }
  .vault-form__container form select {
    color: #999999;
    background: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none; }
  .vault-form__container form input, .vault-form__container form select, .vault-form__container form textarea {
    width: 100%;
    max-width: 100%;
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 4px;
    border: 1px solid #d8d8d8;
    padding: 0 15px;
    margin-bottom: 27px;
    font: normal normal 400 14px/14px "Open Sans", "Helvetica Neue", Verdana, Arial, sans-serif; }
    .vault-form__container form input::-webkit-input-placeholder, .vault-form__container form select::-webkit-input-placeholder, .vault-form__container form textarea::-webkit-input-placeholder {
      color: #999999; }
    .vault-form__container form input:-moz-placeholder, .vault-form__container form select:-moz-placeholder, .vault-form__container form textarea:-moz-placeholder {
      color: #999999; }
    .vault-form__container form input::-moz-placeholder, .vault-form__container form select::-moz-placeholder, .vault-form__container form textarea::-moz-placeholder {
      color: #999999; }
    .vault-form__container form input:-ms-input-placeholder, .vault-form__container form select:-ms-input-placeholder, .vault-form__container form textarea:-ms-input-placeholder {
      color: #999999; }
    .vault-form__container form input:focus, .vault-form__container form input:active, .vault-form__container form select:focus, .vault-form__container form select:active, .vault-form__container form textarea:focus, .vault-form__container form textarea:active {
      outline: none; }
  .vault-form__container form .select-wrap {
    width: 100%;
    position: relative;
    cursor: pointer;
    margin-bottom: 27px; }
    .vault-form__container form .select-wrap__icon {
      width: 100%;
      max-width: 100%;
      height: 50px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      border-radius: 4px;
      border: 1px solid #d8d8d8;
      padding: 0 15px;
      margin-bottom: 5px;
      color: #999999;
      font: normal normal 400 14px/14px "Open Sans", "Helvetica Neue", Verdana, Arial, sans-serif; }
    .vault-form__container form .select-wrap__box {
      height: 100%;
      display: none; }
      .vault-form__container form .select-wrap__box--active {
        display: block; }
      .vault-form__container form .select-wrap__box--selector {
        width: 100%;
        max-width: 100%;
        border-radius: 4px;
        border: 1px solid #d8d8d8;
        padding: 15px 0;
        list-style: none;
        -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        max-height: 300px;
        overflow-y: auto; }
        .vault-form__container form .select-wrap__box--selector li {
          width: 100%;
          padding: 10px 15px;
          position: relative; }
          .vault-form__container form .select-wrap__box--selector li:hover {
            background: #f9f9f9; }
            .vault-form__container form .select-wrap__box--selector li:hover .list-item--check {
              display: block; }
          .vault-form__container form .select-wrap__box--selector li .list-item--check {
            position: absolute;
            right: 10px;
            top: 10px;
            display: none; }
            .vault-form__container form .select-wrap__box--selector li .list-item--check svg, .vault-form__container form .select-wrap__box--selector li .list-item--check path {
              height: 12px;
              width: 12px;
              fill: #27d0e2; }
  .vault-form__container form textarea {
    min-height: 150px;
    color: #999999;
    padding-top: 20px; }
  .vault-form__container form input[type=submit] {
    width: auto;
    padding: 13px 30px;
    margin-left: auto;
    background: #27d0e2;
    color: #ffffff;
    border: 0px;
    font: normal normal 500 16px/16px "Museo Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
    margin-bottom: 0; }
  .vault-form__container form .radio-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 40px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
  .vault-form__container form input[type=radio] {
    -webkit-appearance: radio;
    -moz-appearance: radio;
    appearance: radio;
    width: 16px;
    height: 16px;
    display: initial;
    margin: 0; }
    .vault-form__container form input[type=radio]:last-of-type {
      margin-left: 30px; }
  .vault-form__container form .select-icon, .vault-form__container form .select-wrap__icon {
    position: relative;
    width: 100%; }
    .vault-form__container form .select-icon img, .vault-form__container form .select-wrap__icon img {
      position: absolute;
      top: 19px;
      right: 15px;
      pointer-events: none;
      color: #999999; }
  @media screen and (min-width: 768px) {
    .vault-form__container form .haft {
      width: calc(50% - 10px);
      float: left; } }
  .vault-form__container em {
    color: #27d0e2;
    margin-left: 5px; }

.not-empty {
  outline: none !important;
  padding-top: 10px !important; }

.not-empty + label {
  top: 7px !important;
  left: 13px !important;
  font-size: 10px !important; }

.on-error {
  border: 1px solid #ea2e49 !important;
  outline: none !important;
  padding-top: 10px !important; }

.on-error + label {
  top: 7px !important;
  left: 13px !important;
  font-size: 10px !important; }

.on-error + label > em {
  color: #ea2e49 !important; }

.crypto {
  max-width: 1040px;
  padding: 0 20px;
  margin: auto; }
  @media screen and (min-width: 768px) {
    .crypto {
      max-width: 768px;
      padding: 0 40px;
      margin: auto; } }
  @media screen and (min-width: 1080px) {
    .crypto {
      max-width: 1040px;
      padding: 0 20px;
      margin: auto; } }
  .crypto__hero {
    margin-top: 30px; }
    @media screen and (min-width: 768px) {
      .crypto__hero {
        margin-top: 40px; } }
    @media screen and (min-width: 1080px) {
      .crypto__hero {
        margin-top: 70px; } }
  .crypto__header {
    font-family: "Museo Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
    font-size: 36px;
    font-weight: 500;
    line-height: 1.33;
    color: #142533;
    font-size: 34px;
    line-height: 1.29;
    letter-spacing: -0.3px;
    text-align: center;
    margin-bottom: 8px; }
    @media screen and (min-width: 768px) {
      .crypto__header {
        font-size: 44px;
        line-height: 1.23;
        margin-bottom: 10px; } }
  .crypto__subheader {
    font-family: "Museo Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.23;
    color: #999999;
    font-weight: 300;
    line-height: 1.3;
    font-size: 20px;
    letter-spacing: normal;
    text-align: center;
    margin-bottom: 40px; }
    @media screen and (min-width: 768px) {
      .crypto__subheader {
        font-size: 24px;
        line-height: 1.33; } }
  .crypto__btn {
    font-size: 14px;
    line-height: 18px;
    border: #41ccb4 1px solid;
    color: #41ccb4;
    display: inline-block;
    padding: 7px 20px;
    margin: 0 10px;
    line-height: 24px; }
    .crypto__btn-container {
      text-align: center;
      display: none; }
      @media screen and (min-width: 768px) {
        .crypto__btn-container {
          display: block; } }
  .crypto__new:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    border-radius: 50%;
    width: 5px;
    height: 5px;
    background: #41ccb4;
    margin-right: 5px; }
  .crypto__name {
    color: #666666;
    font-size: 16px;
    line-height: 1.88;
    letter-spacing: normal;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    margin-right: 5px; }
    @media screen and (max-width: 767px) {
      .crypto__name {
        font-size: 14px;
        line-height: 24px; } }
  .crypto__symbol {
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.71;
    letter-spacing: normal;
    color: #999999; }
    @media screen and (max-width: 767px) {
      .crypto__symbol {
        font-size: 13px;
        line-height: 25px; } }
    .crypto__symbol--new:after {
      content: "";
      display: inline-block;
      vertical-align: middle;
      border-radius: 50%;
      width: 5px;
      height: 5px;
      background: #41ccb4;
      margin-left: 5px; }
  .crypto__img {
    width: 16px;
    height: 16px;
    margin-right: 15px; }
  .crypto__wallets {
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.77;
    letter-spacing: normal;
    color: #999999;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
    .crypto__wallets--link {
      text-decoration: underline; }
  .crypto__question {
    margin-left: auto; }
    @media screen and (min-width: 768px) {
      .crypto__question {
        margin-left: 10px; } }
    .crypto__question svg {
      vertical-align: middle; }
  .crypto__filter {
    width: 100%;
    max-width: 280px;
    border: 1px solid #d8d8d8;
    border-radius: 4px;
    -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.1);
    position: absolute;
    left: 0;
    top: 100%;
    background: #ffffff;
    z-index: 1;
    display: none; }
    .crypto__filter--active {
      display: block; }
    .crypto__filter-list {
      display: block;
      list-style-type: none; }
    .crypto__filter-label {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      min-height: 40px;
      padding: 10px 15px;
      position: relative;
      cursor: pointer;
      color: #666666;
      font-family: "Open Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
      font-size: 14px;
      font-weight: normal;
      font-style: normal;
      font-stretch: normal;
      line-height: 1.43;
      letter-spacing: normal; }
      .crypto__filter-label--check {
        display: none;
        position: absolute;
        right: 0;
        top: 10px;
        bottom: 0;
        left: auto;
        margin: auto; }
        .crypto__filter-label--check svg {
          height: 20px; }
        .crypto__filter-label--check svg, .crypto__filter-label--check path {
          fill: #41ccb4; }
    .crypto__filter-input {
      display: none; }
      .crypto__filter-input:checked + .crypto__filter-label {
        background: #f9f9f9; }
        .crypto__filter-input:checked + .crypto__filter-label .crypto__filter-label--check {
          display: block; }
    @media screen and (min-width: 768px) {
      .crypto__filter {
        max-width: 220px; } }
    @media screen and (min-width: 1080px) {
      .crypto__filter {
        max-width: 188px; } }
  .crypto__search {
    margin-bottom: 40px;
    position: relative; }
    .crypto__search-icon {
      position: absolute;
      left: 14px;
      top: 0;
      bottom: 0;
      margin: auto;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      cursor: text; }
    @media screen and (min-width: 1080px) {
      .crypto__search {
        margin-top: 80px;
        margin-bottom: 60px; } }
    @media screen and (min-width: 768px) {
      .crypto__search {
        margin-top: 50px;
        margin-bottom: 57px; } }
  .crypto__input {
    width: 100%;
    border: 1px solid #d8d8d8;
    border-radius: 4px;
    padding-top: 8px;
    padding-bottom: 8px;
    color: #666666;
    line-height: 1.71;
    font-size: 14px;
    font-family: "Open Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    letter-spacing: normal;
    padding-left: 42px; }
  .crypto__table {
    width: 100%; }
    .crypto__table-data {
      display: none !important; }
    .crypto__table__body, .crypto__table__hr {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: start;
      -ms-flex-pack: start;
      justify-content: flex-start;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      border-top: 1px solid #d8d8d8; }
      .crypto__table__body .table__column, .crypto__table__hr .table__column {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-line-pack: center;
        align-content: center;
        padding: 5px 10px;
        min-height: 33px; }
        .crypto__table__body .table__column--lg, .crypto__table__hr .table__column--lg {
          -webkit-box-flex: 1;
          -ms-flex: 1 0 100%;
          flex: 1 0 100%;
          max-width: 100%; }
          @media screen and (min-width: 768px) {
            .crypto__table__body .table__column--lg, .crypto__table__hr .table__column--lg {
              -webkit-box-flex: 1;
              -ms-flex: 1 0 100%;
              flex: 1 0 100%;
              max-width: 226px; } }
          @media screen and (min-width: 1080px) {
            .crypto__table__body .table__column--lg, .crypto__table__hr .table__column--lg {
              -webkit-box-flex: 1;
              -ms-flex: 1 0 100%;
              flex: 1 0 100%;
              max-width: 500px; } }
        .crypto__table__body .table__column--md, .crypto__table__hr .table__column--md {
          -webkit-box-flex: 1;
          -ms-flex: 1 0 100%;
          flex: 1 0 100%;
          max-width: calc(100% - 31px);
          margin-left: 31px;
          -ms-flex-wrap: wrap;
          flex-wrap: wrap; }
          @media screen and (min-width: 768px) {
            .crypto__table__body .table__column--md, .crypto__table__hr .table__column--md {
              margin-left: 0;
              -webkit-box-flex: 1;
              -ms-flex: 1 0 100%;
              flex: 1 0 100%;
              max-width: 117px; } }
          @media screen and (min-width: 1080px) {
            .crypto__table__body .table__column--md, .crypto__table__hr .table__column--md {
              -webkit-box-flex: 1;
              -ms-flex: 1 0 100%;
              flex: 1 0 100%;
              max-width: 245px; } }
        .crypto__table__body .table__column--sm, .crypto__table__hr .table__column--sm {
          -webkit-box-flex: 1;
          -ms-flex: 1 0 100%;
          flex: 1 0 100%;
          max-width: calc(100% - 31px);
          margin-left: 31px;
          -webkit-box-pack: justify;
          -ms-flex-pack: justify;
          justify-content: space-between; }
          .crypto__table__body .table__column--sm:before, .crypto__table__hr .table__column--sm:before {
            content: attr(data-device);
            font-size: 13px;
            font-weight: normal;
            font-style: normal;
            font-stretch: normal;
            line-height: 1.77;
            letter-spacing: normal;
            color: #666666; }
          @media screen and (min-width: 768px) {
            .crypto__table__body .table__column--sm, .crypto__table__hr .table__column--sm {
              margin-left: 0;
              -webkit-box-pack: center;
              -ms-flex-pack: center;
              justify-content: center;
              -webkit-box-flex: 1;
              -ms-flex: 1 0 100%;
              flex: 1 0 100%;
              max-width: 115px; }
              .crypto__table__body .table__column--sm:before, .crypto__table__hr .table__column--sm:before {
                content: none; } }
          @media screen and (min-width: 1080px) {
            .crypto__table__body .table__column--sm, .crypto__table__hr .table__column--sm {
              -webkit-box-flex: 1;
              -ms-flex: 1 0 100%;
              flex: 1 0 100%;
              max-width: 85px; } }
        @media screen and (max-width: 767px) {
          .crypto__table__body .table__column--compatibility, .crypto__table__hr .table__column--compatibility {
            line-height: 23px;
            font-size: 13px; } }
        @media screen and (max-width: 767px) {
          .crypto__table__body .table__column--compatibility svg, .crypto__table__hr .table__column--compatibility svg {
            height: 12px; } }
        .crypto__table__body .table__column--featured, .crypto__table__hr .table__column--featured {
          background: #f9f9f9; }
          .crypto__table__body .table__column--featured:first-child, .crypto__table__hr .table__column--featured:first-child {
            border-top-left-radius: 4px;
            border-top-right-radius: 4px; }
          .crypto__table__body .table__column--featured:last-child, .crypto__table__hr .table__column--featured:last-child {
            border-bottom-left-radius: 4px;
            border-bottom-right-radius: 4px; }
        .crypto__table__body .table__column--header, .crypto__table__hr .table__column--header {
          display: none;
          border-radius: 0;
          font-size: 14px;
          font-weight: bold;
          font-style: normal;
          font-stretch: normal;
          line-height: 1.57;
          letter-spacing: -0.2px;
          color: #142533;
          text-align: center;
          -ms-flex-wrap: wrap;
          flex-wrap: wrap; }
          .crypto__table__body .table__column--header-main, .crypto__table__hr .table__column--header-main {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            padding-bottom: 20px; }
            @media screen and (min-width: 768px) {
              .crypto__table__body .table__column--header-main, .crypto__table__hr .table__column--header-main {
                padding-bottom: 5px; } }
          @media screen and (min-width: 768px) {
            .crypto__table__body .table__column--header, .crypto__table__hr .table__column--header {
              display: -webkit-box;
              display: -ms-flexbox;
              display: flex; } }
        @media screen and (min-width: 768px) {
          .crypto__table__body .table__column, .crypto__table__hr .table__column {
            min-height: 60px;
            padding: 0px 10px; } }
      .crypto__table__body .table__filter, .crypto__table__hr .table__filter {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 100%;
        flex: 1 0 100%;
        max-width: 100%;
        text-align: left;
        position: relative; }
      .crypto__table__body .table__header, .crypto__table__hr .table__header {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-flex: 1;
        -ms-flex: 1 0 100%;
        flex: 1 0 100%;
        max-width: 100%;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start; }
      .crypto__table__body .table__main-heading, .crypto__table__hr .table__main-heading {
        font-family: "Museo Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
        font-size: 20px;
        font-weight: 500;
        font-style: normal;
        font-stretch: normal;
        line-height: 1.4;
        letter-spacing: -0.7px;
        color: #142533;
        cursor: pointer; }
        .crypto__table__body .table__main-heading-arrow, .crypto__table__hr .table__main-heading-arrow {
          margin-left: 5px;
          display: -webkit-inline-box;
          display: -ms-inline-flexbox;
          display: inline-flex;
          -webkit-box-align: center;
          -ms-flex-align: center;
          align-items: center; }
          .crypto__table__body .table__main-heading-arrow svg, .crypto__table__hr .table__main-heading-arrow svg {
            -webkit-transform: scale(1.333);
            transform: scale(1.333); }
          .crypto__table__body .table__main-heading-arrow path, .crypto__table__hr .table__main-heading-arrow path {
            fill: #999999; }
      .crypto__table__body .table__main-details, .crypto__table__hr .table__main-details {
        font-size: 12px;
        font-weight: normal;
        font-style: normal;
        font-stretch: normal;
        line-height: 1.83;
        letter-spacing: normal;
        color: #999999; }
        .crypto__table__body .table__main-details a, .crypto__table__hr .table__main-details a {
          text-decoration: underline; }
      .crypto__table__body .table__row, .crypto__table__hr .table__row {
        display: none;
        -webkit-box-flex: 1;
        -ms-flex: 1 0 100%;
        flex: 1 0 100%;
        max-width: 100%;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        border-bottom: 1px solid #d8d8d8;
        padding: 15px 0 20px 0; }
        .crypto__table__body .table__row--active, .crypto__table__hr .table__row--active {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex; }
        @media screen and (min-width: 768px) {
          .crypto__table__body .table__row, .crypto__table__hr .table__row {
            -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
            padding: 0; } }
        .crypto__table__body .table__row--empty, .crypto__table__hr .table__row--empty {
          padding: 20px;
          font-size: 18px;
          -webkit-box-pack: center;
          -ms-flex-pack: center;
          justify-content: center;
          color: #999999; }
        .crypto__table__body .table__row > .table__column--featured, .crypto__table__hr .table__row > .table__column--featured {
          border-top-left-radius: 4px;
          border-top-right-radius: 4px; }
          @media screen and (min-width: 768px) {
            .crypto__table__body .table__row > .table__column--featured, .crypto__table__hr .table__row > .table__column--featured {
              border-radius: 0; } }
        .crypto__table__body .table__row > .table__column--featured ~ .table__column--featured, .crypto__table__hr .table__row > .table__column--featured ~ .table__column--featured {
          border-top-left-radius: 0px;
          border-top-right-radius: 0px; }
        .crypto__table__body .table__row .table__column--featured:last-child, .crypto__table__hr .table__row .table__column--featured:last-child {
          border-bottom-left-radius: 4px;
          border-bottom-right-radius: 4px; }
          @media screen and (min-width: 768px) {
            .crypto__table__body .table__row .table__column--featured:last-child, .crypto__table__hr .table__row .table__column--featured:last-child {
              border-radius: 0; } }
    .crypto__table__hr {
      border: 0; }
  @media screen and (max-width: 1079px) {
    .crypto .tablet-hidden {
      display: none; } }

.generic__page {
  margin-top: 75px;
  padding: 0 20px;
  max-width: 1000px;
  width: 100%; }
  @media screen and (min-width: 768px) {
    .generic__page {
      padding: 0 40px; } }
  @media screen and (min-width: 1080px) {
    .generic__page {
      padding: 0px;
      margin: auto;
      margin-top: 120px; } }
  .generic__page h1 {
    font-family: "Museo Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
    font-size: 44px;
    font-weight: 500;
    line-height: 1.23;
    font-style: normal;
    font-stretch: normal;
    letter-spacing: -0.3px;
    color: #142533;
    margin-bottom: 75px;
    text-align: center;
    line-height: 1.18 !important; }
    @media screen and (max-width: 1079px) {
      .generic__page h1 {
        font-size: 34px;
        line-height: 1.59;
        letter-spacing: -0.2px; } }
    @media screen and (min-width: 768px) {
      .generic__page h1 {
        margin-bottom: 70px; } }
  .generic__page h2 {
    font-family: "Museo Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.23;
    line-height: 30px;
    clear: both;
    color: #142533;
    float: left;
    margin-top: 20px;
    margin-bottom: 15px;
    width: 100%; }
    @media screen and (min-width: 768px) {
      .generic__page h2 {
        font-size: 24px; } }
    @media screen and (min-width: 768px) {
      .generic__page h2 {
        line-height: 24px; } }
    .generic__page h2:first-of-type {
      margin-top: 0; }
  .generic__page h3, .generic__page h4 {
    text-transform: uppercase; }
  .generic__page h3 {
    font-family: "Museo Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.23;
    line-height: 25.5px;
    color: #142533;
    letter-spacing: -0.2px;
    margin-bottom: 30px; }
    @media screen and (min-width: 1080px) {
      .generic__page h3 {
        line-height: 25px;
        font-size: 18px; } }
  .generic__page h4 {
    font-family: "Museo Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.23;
    line-height: 21.5px;
    font-weight: 300;
    color: #41ccb4;
    margin-bottom: 5px; }
  .generic__page p {
    font-family: "Open Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.71;
    letter-spacing: normal;
    margin-bottom: 40px;
    line-height: 1.88; }
    @media screen and (min-width: 1080px) {
      .generic__page p {
        font-size: 16px;
        line-height: 1.88; } }
    @media screen and (min-width: 768px) {
      .generic__page p {
        font-size: 16px; } }
  .generic__page ul {
    list-style: initial;
    margin-top: 5px;
    margin-bottom: 40px;
    padding-left: 20px;
    margin-left: 20px; }
    .generic__page ul li {
      padding-left: 20px;
      font-family: "Open Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
      font-size: 14px;
      font-weight: normal;
      font-style: normal;
      font-stretch: normal;
      line-height: 1.71;
      letter-spacing: normal;
      line-height: 20px;
      color: #999999; }
      @media screen and (min-width: 1080px) {
        .generic__page ul li {
          font-size: 16px;
          line-height: 1.88; } }
      @media screen and (min-width: 768px) {
        .generic__page ul li {
          font-size: 16px;
          line-height: 22px; } }
  .generic__page ol {
    list-style: lower-latin;
    padding-left: 40px;
    margin-top: 5px;
    margin-bottom: 40px; }
    .generic__page ol li {
      font-family: "Open Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
      font-size: 14px;
      font-weight: normal;
      font-style: normal;
      font-stretch: normal;
      line-height: 1.71;
      letter-spacing: normal;
      line-height: 20px;
      margin-bottom: 10px;
      color: #999999; }
      @media screen and (min-width: 1080px) {
        .generic__page ol li {
          font-size: 16px;
          line-height: 1.88; } }
      @media screen and (min-width: 768px) {
        .generic__page ol li {
          line-height: 22px;
          font-size: 16px; } }
  .generic__page a {
    color: #41ccb4;
    font-weight: 600; }
  .generic__page strong {
    font-weight: 700; }
  .generic__page em {
    font-style: italic; }

html:root.flow-localized {
  padding-bottom: 0px !important; }

html:root .flow-checkout .footer {
  display: none !important; }

html:root .flow-checkout .checkout-layout {
  max-width: 100%;
  padding-top: 0; }
  html:root .flow-checkout .checkout-layout .section__title {
    font-family: "Museo Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
    font-size: 20px;
    font-weight: 500;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.33;
    letter-spacing: normal;
    text-align: left;
    text-transform: none; }
    @media screen and (min-width: 768px) {
      html:root .flow-checkout .checkout-layout .section__title {
        font-size: 24px; } }
  html:root .flow-checkout .checkout-layout__breadcrumb-container {
    display: none; }
    @media screen and (min-width: 1080px) {
      html:root .flow-checkout .checkout-layout__breadcrumb-container {
        display: block; } }
  html:root .flow-checkout .checkout-layout__checkout-content-order-summary {
    background: #f9f9f9;
    padding: 21px 40px 44px; }
    html:root .flow-checkout .checkout-layout__checkout-content-order-summary .section__title {
      font-family: "Museo Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
      font-size: 18px;
      line-height: 1.56;
      text-transform: uppercase;
      letter-spacing: -0.2px;
      text-align: center; }
    html:root .flow-checkout .checkout-layout__checkout-content-order-summary .section__header {
      margin-bottom: 45px; }
    html:root .flow-checkout .checkout-layout__checkout-content-order-summary .section__content {
      padding: 0; }
      html:root .flow-checkout .checkout-layout__checkout-content-order-summary .section__content .flow-grid {
        padding: 0; }
      html:root .flow-checkout .checkout-layout__checkout-content-order-summary .section__content .column {
        padding: 0; }
    html:root .flow-checkout .checkout-layout__checkout-content-order-summary .divider {
      display: none; }

html:root .flow-checkout .order-summary .row {
  margin: 0; }

html:root .flow-checkout .order-item {
  padding: 0;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  padding-bottom: 19px;
  border-bottom: 1px solid #d8d8d8;
  margin-bottom: 23px; }
  html:root .flow-checkout .order-item__quantity {
    padding: 0;
    font-family: "Open Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
    font-size: 12px; }
  html:root .flow-checkout .order-item__image {
    border: none;
    background-color: transparent;
    width: 50px;
    height: 50px; }
  html:root .flow-checkout .order-item__price {
    -ms-flex-item-align: end;
    align-self: flex-end;
    font-weight: normal;
    font-family: "Rubik", sans-serif;
    font-size: 14px; }
  html:root .flow-checkout .order-item__details {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between; }
  html:root .flow-checkout .order-item__name {
    font-family: "Open Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
    font-size: 14px; }

html:root .flow-checkout .order-prices {
  padding: 0;
  font-family: "Open Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-weight: normal;
  color: #666666;
  font-size: 14px; }
  html:root .flow-checkout .order-prices__label {
    padding: 0;
    font-size: 14px;
    line-height: 1.71;
    font-weight: normal; }
  html:root .flow-checkout .order-prices__value {
    padding: 0;
    font-size: 14px;
    line-height: 1.71;
    font-weight: normal;
    font-family: "Rubik", sans-serif; }

html:root .flow-checkout .order-total {
  padding: 10px 0 0;
  font-family: "Open Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.88;
  color: #666666; }
  html:root .flow-checkout .order-total__label {
    padding: 0;
    font-size: 16px;
    line-height: 1.88;
    font-weight: 600; }
  html:root .flow-checkout .order-total__value {
    padding: 0;
    font-family: "Rubik", sans-serif;
    font-size: 16px;
    line-height: 1.88;
    font-weight: 500; }

html:root .flow-checkout .order-confirmation-step__order-number {
  color: #41ccb4;
  font-family: "Museo Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 500; }

html:root .flow-checkout .order-confirmation-step__customer-name {
  font-family: "Museo Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: #1d2028; }

html:root .flow-checkout .order-confirmation-step__continue-shopping {
  background: #41ccb4;
  color: #ffffff; }

html:root .flow-checkout .coupon-form {
  display: none; }

html:root .flow-checkout .section__header {
  margin: 0;
  padding: 0; }
  html:root .flow-checkout .section__header--divided {
    border: none; }

html:root .flow-checkout .badge__content {
  display: none; }

html:root .flow-checkout .image__object {
  position: relative; }

html:root .flow-checkout .text-field {
  margin-bottom: 30px; }
  html:root .flow-checkout .text-field__label {
    font-family: "Open Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
    color: #999999;
    font-size: 10px; }
    html:root .flow-checkout .text-field__label--required span {
      position: relative; }
      html:root .flow-checkout .text-field__label--required span:after {
        content: '*';
        color: #41ccb4;
        position: absolute;
        top: 0;
        right: -10px;
        font-size: 12px; }
  html:root .flow-checkout .text-field__input {
    color: #666666;
    font-family: "Open Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
    font-size: 14px; }
    html:root .flow-checkout .text-field__input--empty:focus + .text-field__label {
      font-size: 10px; }
    html:root .flow-checkout .text-field__input--empty:not(:focus) + .text-field__label {
      font-size: 14px; }
    html:root .flow-checkout .text-field__input:focus {
      border-color: #41ccb4;
      color: #666666; }
    html:root .flow-checkout .text-field__input--invalid {
      color: #ea2e49;
      border-color: #ea2e49; }
      html:root .flow-checkout .text-field__input--invalid:focus {
        border-color: #ea2e49; }
  html:root .flow-checkout .text-field__error-text {
    color: #ea2e49;
    font-size: 12px;
    font-family: "Open Sans", "Helvetica Neue", Verdana, Arial, sans-serif; }
  html:root .flow-checkout .text-field__error-container {
    padding: 0;
    margin-top: 7px; }

html:root .flow-checkout .select-field {
  margin-bottom: 30px;
  font-family: "Open Sans", "Helvetica Neue", Verdana, Arial, sans-serif; }
  html:root .flow-checkout .select-field__label {
    color: #999999;
    font-size: 14px; }
  html:root .flow-checkout .select-field__input {
    color: #666666;
    font-size: 14px; }

html:root .flow-checkout .checkout-layout__checkout-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  max-width: 1040px;
  padding: 0 20px;
  margin: auto;
  padding-bottom: 20px; }
  @media screen and (min-width: 768px) {
    html:root .flow-checkout .checkout-layout__checkout-content {
      max-width: 768px;
      padding: 0 40px;
      margin: auto;
      padding-bottom: 50px; } }
  @media screen and (min-width: 1080px) {
    html:root .flow-checkout .checkout-layout__checkout-content {
      max-width: 1040px;
      padding: 0 20px;
      margin: auto;
      padding-bottom: 50px; } }
  html:root .flow-checkout .checkout-layout__checkout-content-container {
    position: static;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 100%;
    flex: 1 0 100%;
    max-width: 100%;
    padding: 0;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1; }
    @media screen and (min-width: 1080px) {
      html:root .flow-checkout .checkout-layout__checkout-content-container {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 486px;
        flex: 1 0 486px;
        max-width: 486px; } }
  html:root .flow-checkout .checkout-layout__checkout-content-order-summary {
    position: static;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 400px;
    flex: 1 0 400px;
    max-width: 400px;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    display: none; }
    @media screen and (min-width: 1080px) {
      html:root .flow-checkout .checkout-layout__checkout-content-order-summary {
        display: block; } }
  html:root .flow-checkout .checkout-layout__checkout-content:after {
    display: none; }

html:root .flow-checkout .customer-information-form .section__title {
  font-family: "Museo Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.23;
  color: #142533;
  text-transform: none;
  line-height: 1.33;
  font-size: 20px; }
  @media screen and (min-width: 768px) {
    html:root .flow-checkout .customer-information-form .section__title {
      font-size: 24px; } }

html:root .flow-checkout .customer-information-form .section__content {
  padding-top: 27px;
  padding-bottom: 13px; }

html:root .flow-checkout .customer-information-form .section:last-of-type .section__content {
  padding-bottom: 20px; }

html:root .flow-checkout .customer-information-form__continue-button {
  background: #41ccb4;
  color: #ffffff;
  max-width: 100%;
  width: 100%;
  font-size: 14px; }
  @media screen and (min-width: 768px) {
    html:root .flow-checkout .customer-information-form__continue-button {
      max-width: 232px; } }

html:root .flow-checkout .customer-information-form .cart-button {
  font-size: 14px;
  line-height: 18px;
  border: #999999 1px solid;
  color: #999999;
  width: 100%;
  padding: 15px;
  font-size: 14px;
  text-align: center;
  max-width: 100%; }
  @media screen and (min-width: 768px) {
    html:root .flow-checkout .customer-information-form .cart-button {
      max-width: 129px; } }

html:root .flow-checkout .customer-information-form .flow-grid {
  padding: 0; }

html:root .flow-checkout .customer-information-form .column {
  padding: 0 15px; }

html:root .flow-checkout .customer-information-form .row {
  margin: 0 -15px; }

html:root .flow-checkout .shipping-method-step .flow-grid, html:root .flow-checkout .shipping-method-step .column {
  padding: 0; }

html:root .flow-checkout .shipping-method-step .row {
  margin: 0; }

html:root .flow-checkout .shipping-address-summary__content {
  margin: 0; }

html:root .flow-checkout .shipping-address-summary__name {
  color: #142533; }

html:root .flow-checkout .shipping-address-summary__address {
  color: #999999; }

html:root .flow-checkout .shipping-address-summary__company {
  color: #666666; }

html:root .flow-checkout .shipping-address-summary__edit-link {
  color: #41ccb4;
  font-family: "Museo Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none; }

html:root .flow-checkout .shipping-method-form__return-button {
  font-size: 14px;
  line-height: 18px;
  border: #999999 1px solid;
  color: #999999;
  font-size: 14px;
  font-weight: 500;
  background: transparent;
  width: 100%;
  max-width: 100%; }
  @media screen and (min-width: 768px) {
    html:root .flow-checkout .shipping-method-form__return-button {
      max-width: 239px; } }

html:root .flow-checkout .shipping-method-form__continue-button {
  background: #41ccb4;
  color: #ffffff;
  font-size: 14px;
  width: 100%;
  max-width: 100%; }
  @media screen and (min-width: 768px) {
    html:root .flow-checkout .shipping-method-form__continue-button {
      max-width: 234px; } }

html:root .flow-checkout .landed-cost-settings {
  padding: 0; }
  html:root .flow-checkout .landed-cost-settings .button {
    color: #41ccb4;
    font-family: "Museo Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none; }
  html:root .flow-checkout .landed-cost-settings-settings__description {
    font-size: 14px;
    font-family: "Open Sans", "Helvetica Neue", Verdana, Arial, sans-serif; }

html:root .flow-checkout .order-delivery-options__option {
  width: 100%; }
  html:root .flow-checkout .order-delivery-options__option-primary-text {
    font-size: 14px;
    font-family: "Open Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
    color: #666666; }
  html:root .flow-checkout .order-delivery-options__option-secondary-text {
    display: none; }
  html:root .flow-checkout .order-delivery-options__option-price {
    font-family: "Rubik", sans-serif;
    font-size: 14px;
    line-height: normal;
    color: #142533; }

html:root .flow-checkout .radio-button-group--bordered {
  border: none; }
  html:root .flow-checkout .radio-button-group--bordered .radio-button:not(:last-child) {
    border: none; }

html:root .flow-checkout .radio-button__label {
  padding-left: 34px;
  line-height: normal;
  padding: 0 0 0 34px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 5px;
  font-family: "Open Sans", "Helvetica Neue", Verdana, Arial, sans-serif; }
  @media screen and (min-width: 768px) {
    html:root .flow-checkout .radio-button__label {
      font-size: 14px;
      height: 26px; } }
  html:root .flow-checkout .radio-button__label:after {
    width: 8px;
    height: 8px;
    background-color: #41ccb4;
    left: 4px;
    border: 0; }
  html:root .flow-checkout .radio-button__label:before {
    border: 1px solid #d8d8d8;
    left: 0px;
    width: 16px;
    height: 16px; }

html:root .flow-checkout .radio-panel__accessory .payment-icon-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  html:root .flow-checkout .radio-panel__accessory .payment-icon-list__item:nth-child(1), html:root .flow-checkout .radio-panel__accessory .payment-icon-list__item:nth-child(3) {
    display: none; }

html:root .flow-checkout .payment-form .button {
  margin-top: 0; }

html:root .flow-checkout .payment-form .paypal-button-label-checkout {
  margin-bottom: 15px; }

html:root .flow-checkout .payment-form__3ds-message-container {
  margin-bottom: 20px !important; }

html:root .flow-checkout .payment-form__return-button {
  font-size: 14px;
  line-height: 18px;
  border: #999999 1px solid;
  color: #999999;
  font-size: 14px;
  font-weight: 500;
  max-width: 100%;
  background: transparent;
  width: 100%; }
  @media screen and (min-width: 768px) {
    html:root .flow-checkout .payment-form__return-button {
      max-width: 214px; } }

html:root .flow-checkout .payment-form__continue-button {
  background: #41ccb4;
  color: #ffffff;
  width: 100%;
  font-size: 14px;
  max-width: 100%;
  margin-bottom: 15px; }
  @media screen and (min-width: 768px) {
    html:root .flow-checkout .payment-form__continue-button {
      max-width: 203px; } }

html:root .flow-checkout .payment-form .column {
  padding: 0 15px; }

html:root .flow-checkout .payment-form .flow-grid {
  padding: 0; }

html:root .flow-checkout .payment-form .row {
  margin: 0 -15px; }

html:root .flow-checkout .payment-form .panel {
  border: none; }
  html:root .flow-checkout .payment-form .panel__content {
    border: none;
    padding: 17px 0 0;
    background: #ffffff; }

html:root .flow-checkout .payment-form .section.payment-method {
  padding-bottom: 36px; }

html:root .flow-checkout .customer-info-summary {
  border: 1px solid #d8d8d8;
  padding: 24px 20px;
  border-radius: 5px; }
  html:root .flow-checkout .customer-info-summary__title {
    font-family: "Museo Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.86;
    color: #142533;
    margin: 0; }
  html:root .flow-checkout .customer-info-summary__content {
    border: none;
    padding: 0;
    margin-top: 20px; }
    html:root .flow-checkout .customer-info-summary__content .flow-grid, html:root .flow-checkout .customer-info-summary__content .column {
      padding: 0; }
    html:root .flow-checkout .customer-info-summary__content .row {
      margin: 0; }
      @media screen and (min-width: 481px) {
        html:root .flow-checkout .customer-info-summary__content .row div.column:nth-child(odd) {
          padding-right: 10px; }
        html:root .flow-checkout .customer-info-summary__content .row div.column:nth-child(even) {
          padding-left: 10px; } }
    html:root .flow-checkout .customer-info-summary__content .shipping-address-summary .section__title, html:root .flow-checkout .customer-info-summary__content .billing-address-summary .section__title {
      font-size: 14px;
      font-weight: 500;
      line-height: 1.86;
      color: #142533; }
    html:root .flow-checkout .customer-info-summary__content .shipping-address-summary .section__content, html:root .flow-checkout .customer-info-summary__content .billing-address-summary .section__content {
      font-family: "Open Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
      font-size: 14px;
      padding-top: 0;
      padding-bottom: 11px; }
    html:root .flow-checkout .customer-info-summary__content .shipping-address-summary__address, html:root .flow-checkout .customer-info-summary__content .billing-address-summary__address {
      line-height: 1.86;
      font-size: 14px;
      font-family: "Open Sans", "Helvetica Neue", Verdana, Arial, sans-serif; }
      html:root .flow-checkout .customer-info-summary__content .shipping-address-summary__address .postal-address__street, html:root .flow-checkout .customer-info-summary__content .shipping-address-summary__address .postal-address__locality, html:root .flow-checkout .customer-info-summary__content .shipping-address-summary__address .postal-address__region, html:root .flow-checkout .customer-info-summary__content .shipping-address-summary__address .postal-address__postal-code, html:root .flow-checkout .customer-info-summary__content .shipping-address-summary__address .postal-address__country, html:root .flow-checkout .customer-info-summary__content .billing-address-summary__address .postal-address__street, html:root .flow-checkout .customer-info-summary__content .billing-address-summary__address .postal-address__locality, html:root .flow-checkout .customer-info-summary__content .billing-address-summary__address .postal-address__region, html:root .flow-checkout .customer-info-summary__content .billing-address-summary__address .postal-address__postal-code, html:root .flow-checkout .customer-info-summary__content .billing-address-summary__address .postal-address__country {
        line-height: 1.86;
        font-size: 14px;
        font-family: "Open Sans", "Helvetica Neue", Verdana, Arial, sans-serif; }
    html:root .flow-checkout .customer-info-summary__content .shipping-address-summary .shipping-address-summary__name, html:root .flow-checkout .customer-info-summary__content .shipping-address-summary .shipping-address-summary__address, html:root .flow-checkout .customer-info-summary__content .shipping-address-summary .shipping-address-summary__company, html:root .flow-checkout .customer-info-summary__content .shipping-address-summary .billing-address-summary__name, html:root .flow-checkout .customer-info-summary__content .shipping-address-summary .billing-address-summary__address, html:root .flow-checkout .customer-info-summary__content .shipping-address-summary .billing-address-summary__company, html:root .flow-checkout .customer-info-summary__content .billing-address-summary .shipping-address-summary__name, html:root .flow-checkout .customer-info-summary__content .billing-address-summary .shipping-address-summary__address, html:root .flow-checkout .customer-info-summary__content .billing-address-summary .shipping-address-summary__company, html:root .flow-checkout .customer-info-summary__content .billing-address-summary .billing-address-summary__name, html:root .flow-checkout .customer-info-summary__content .billing-address-summary .billing-address-summary__address, html:root .flow-checkout .customer-info-summary__content .billing-address-summary .billing-address-summary__company {
      font-family: "Open Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
      font-size: 14px;
      font-weight: normal;
      line-height: 1.86;
      color: #666666;
      margin: 0; }
    html:root .flow-checkout .customer-info-summary__content .shipping-method-summary .section__title, html:root .flow-checkout .customer-info-summary__content .payment-method-summary .section__title {
      font-size: 14px;
      font-weight: 500;
      line-height: 1.86;
      color: #142533; }
    html:root .flow-checkout .customer-info-summary__content .shipping-method-summary .section__content, html:root .flow-checkout .customer-info-summary__content .payment-method-summary .section__content {
      font-family: "Open Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
      font-size: 14px;
      color: #666666;
      padding-top: 0;
      padding-bottom: 11px; }
    html:root .flow-checkout .customer-info-summary__content .shipping-method-summary .shipping-method-summary__list, html:root .flow-checkout .customer-info-summary__content .shipping-method-summary .shipping-method-summary__item, html:root .flow-checkout .customer-info-summary__content .payment-method-summary .shipping-method-summary__list, html:root .flow-checkout .customer-info-summary__content .payment-method-summary .shipping-method-summary__item {
      font-family: "Open Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
      font-size: 14px;
      color: #666666; }

html:root .flow-checkout .breadcrumb {
  max-width: 1040px;
  padding: 0 20px;
  margin: auto;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-bottom: 50px; }
  html:root .flow-checkout .breadcrumb__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    max-width: 100%; }
  html:root .flow-checkout .breadcrumb:before {
    display: none; }
  html:root .flow-checkout .breadcrumb .step {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    opacity: 0;
    visibility: hidden; }
    html:root .flow-checkout .breadcrumb .step__title {
      padding-top: 0px;
      color: #999999;
      font-family: "Open Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
      font-size: 13px;
      font-weight: normal;
      text-transform: none; }
      html:root .flow-checkout .breadcrumb .step__title:before {
        display: none; }
      html:root .flow-checkout .breadcrumb .step__title:hover {
        text-decoration: none; }
    html:root .flow-checkout .breadcrumb .step--completed .step__title {
      color: #41ccb4; }
    html:root .flow-checkout .breadcrumb .step--current .step__title {
      color: #142533; }
    html:root .flow-checkout .breadcrumb .step:after {
      content: '';
      display: inline-block;
      width: 11px;
      height: 12px;
      background-image: url("//cdn.shopify.com/s/files/1/2974/4858/t/17/assets/angle-down.svg?2514332202813309776");
      -webkit-transform: rotate(-90deg);
      transform: rotate(-90deg);
      background-position: center;
      background-repeat: no-repeat;
      -ms-flex-item-align: center;
      align-self: center;
      padding: 0 7px; }
  html:root .flow-checkout .breadcrumb li:last-child:after {
    display: none; }
  html:root .flow-checkout .breadcrumb--active .step {
    opacity: 1;
    visibility: visible; }

html:root .flow-checkout .mobile-order-summary {
  width: 100%;
  border-radius: 0;
  margin: 0;
  display: block;
  background: #f9f9f9;
  padding: 0;
  max-width: 100%;
  margin-bottom: 50px;
  opacity: 0;
  visibility: hidden; }
  html:root .flow-checkout .mobile-order-summary--active {
    opacity: 1;
    visibility: visible; }
  html:root .flow-checkout .mobile-order-summary__header {
    font-family: "Museo Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    width: auto; }
    html:root .flow-checkout .mobile-order-summary__header span:last-child {
      display: none; }
    html:root .flow-checkout .mobile-order-summary__header-container {
      max-width: 1040px;
      padding: 0 20px;
      margin: auto;
      padding-top: 10px;
      padding-bottom: 10px; }
      @media screen and (min-width: 768px) {
        html:root .flow-checkout .mobile-order-summary__header-container {
          max-width: 768px;
          padding: 0 40px;
          margin: auto;
          padding-top: 10px;
          padding-bottom: 10px; } }
      html:root .flow-checkout .mobile-order-summary__header-container .row {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between; }
        html:root .flow-checkout .mobile-order-summary__header-container .row:after {
          display: none; }
    html:root .flow-checkout .mobile-order-summary__header-action {
      width: auto; }
      html:root .flow-checkout .mobile-order-summary__header-action .button {
        width: 100%;
        height: 100%;
        display: block;
        border: none;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        cursor: pointer;
        background: transparent;
        position: relative;
        font-family: "Rubik", sans-serif;
        font-size: 14px;
        font-weight: 500;
        color: #666666;
        padding-right: 25px; }
        html:root .flow-checkout .mobile-order-summary__header-action .button:after {
          content: '';
          display: inline-block;
          width: 11px;
          height: 12px;
          background-image: url("//cdn.shopify.com/s/files/1/2974/4858/t/17/assets/angle-down.svg?2514332202813309776");
          background-position: center;
          background-repeat: no-repeat;
          -ms-flex-item-align: center;
          align-self: center;
          padding: 0 7px;
          position: absolute;
          right: 0;
          top: 0;
          bottom: 0;
          margin: auto; }
        html:root .flow-checkout .mobile-order-summary__header-action .button:focus, html:root .flow-checkout .mobile-order-summary__header-action .button:active {
          outline: 0;
          outline-offset: 0;
          background-image: none;
          -webkit-box-shadow: none;
          box-shadow: none; }
        html:root .flow-checkout .mobile-order-summary__header-action .button span {
          display: none; }
        html:root .flow-checkout .mobile-order-summary__header-action .button--active:after {
          -webkit-transform: rotate(180deg);
          transform: rotate(180deg); }
  html:root .flow-checkout .mobile-order-summary .order-delivery-items {
    border-top: 1px solid #d8d8d8;
    padding-top: 25px; }
  html:root .flow-checkout .mobile-order-summary .order-total {
    padding-bottom: 50px; }
  html:root .flow-checkout .mobile-order-summary .divider {
    display: none; }
  html:root .flow-checkout .mobile-order-summary .collapse {
    max-width: 1040px;
    padding: 0 20px;
    margin: auto; }
    @media screen and (min-width: 768px) {
      html:root .flow-checkout .mobile-order-summary .collapse {
        max-width: 768px;
        padding: 0 40px;
        margin: auto; } }
  @media screen and (min-width: 1080px) {
    html:root .flow-checkout .mobile-order-summary {
      display: none; } }

.checkout__live {
  display: none;
  background: #142533;
  text-align: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  color: #ffffff;
  padding: 46px 20px 0;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: hidden; }
  .checkout__live--active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
  @media screen and (min-width: 768px) {
    .checkout__live {
      padding: 40px 0 0 43px;
      text-align: left;
      -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
      min-height: 479px;
      -webkit-box-pack: start;
      -ms-flex-pack: start;
      justify-content: flex-start;
      overflow: hidden; } }
  @media screen and (min-width: 768px) {
    .checkout__live-container {
      -webkit-box-flex: 1;
      -ms-flex: 1 0 353px;
      flex: 1 0 353px;
      max-width: 353px; } }
  @media screen and (min-width: 1080px) {
    .checkout__live-container {
      margin-left: auto; } }
  .checkout__live__header {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 100%;
    flex: 1 0 100%;
    max-width: 100%;
    font-family: "Museo Sans", "Helvetica Neue", Verdana, Arial, sans-serif; }
    .checkout__live__header-heading {
      font-size: 24px;
      font-weight: 300;
      margin-bottom: 16px; }
      .checkout__live__header-heading span {
        font-weight: 500; }
    .checkout__live__header-caption {
      line-height: 1.5;
      letter-spacing: -0.1px;
      font-size: 16px;
      font-weight: 500;
      margin-bottom: 30px; }
  .checkout__live__image {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 100%;
    flex: 1 0 100%;
    max-width: 100%;
    min-height: 273px; }
    @media screen and (min-width: 1080px) {
      .checkout__live__image {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 687px;
        flex: 1 0 687px;
        max-width: 687px;
        margin-right: auto; } }
    .checkout__live__image-container {
      position: absolute;
      left: 20px;
      top: 0; }
      @media screen and (min-width: 1080px) {
        .checkout__live__image-container img {
          width: 100%; } }
  .checkout__live__feature {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap; }
    .checkout__live__feature__content {
      width: 280px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      text-align: left;
      margin-bottom: 12px;
      -webkit-box-align: start;
      -ms-flex-align: start;
      align-items: flex-start;
      -webkit-box-pack: start;
      -ms-flex-pack: start;
      justify-content: flex-start; }
    .checkout__live__feature__title {
      font-family: "Open Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
      font-size: 14px;
      line-height: 1.71;
      letter-spacing: -0.2px;
      color: #eeeeee; }
    .checkout__live__feature__icon {
      margin-right: 10px; }
      .checkout__live__feature__icon svg {
        width: 20px;
        height: 20px; }
      .checkout__live__feature__icon svg, .checkout__live__feature__icon path {
        fill: #6490f1; }
  .checkout__live__button-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 29px;
    margin-bottom: 41px; }

.payment-method .radio-button--fluid {
  display: inline-block;
  width: auto; }

.payment-method-summary__item {
  font-size: 14px;
  color: #666666; }

.payment-form__continue-button {
  padding-top: 0 !important;
  padding-bottom: 0 !important; }
  .payment-form__continue-button span {
    white-space: normal; }

.slick-dots li {
  width: 8px;
  height: 8px; }
  .slick-dots li button {
    width: 100%;
    height: 100%; }
    .slick-dots li button:before {
      content: '';
      opacity: 1;
      border-radius: 50%;
      width: 100%;
      height: 100%;
      background: #d8d8d8; }
  .slick-dots li.slick-active button:before {
    background: #6490f1;
    opacity: 1; }

.select__box {
  cursor: pointer;
  border: 1px solid #d8d8d8;
  color: #999999;
  font-family: "Open Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.71;
  letter-spacing: normal;
  font-size: 14px;
  border-radius: 4px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between; }
  @media screen and (min-width: 1080px) {
    .select__box {
      font-size: 16px;
      line-height: 1.88; } }
  .select__box--active .select__list {
    display: block; }

.select__checked {
  display: none;
  position: absolute;
  right: 15px;
  top: 0%;
  bottom: 0;
  margin: auto;
  height: 14px;
  width: 14px; }
  .select__checked svg,
  .select__checked path {
    vertical-align: top;
    height: 14px;
    width: 14px;
    fill: #27d0e2; }

.select__list {
  list-style: none;
  position: absolute;
  width: 100%;
  left: 0;
  border: 1px solid #d8d8d8;
  border-radius: 4px;
  -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
  display: none;
  z-index: 1;
  top: 100%;
  top: calc(100% + 5px); }
  .select__list-item {
    position: relative; }
    .select__list-item--selected {
      background-color: #f9f9f9; }
      .select__list-item--selected .select__checked {
        display: inline-block; }

.select__arrow {
  display: inline-block; }
  .select__arrow svg,
  .select__arrow path {
    fill: #999999; }
  .select__arrow svg {
    height: 18px;
    width: 18px;
    vertical-align: middle; }

.flow-hidden {
  display: none; }

.flow-consent-container {
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 99999; }

.flow-consent-message > p {
  display: inline-block;
  /* Displayed in client websites, used to avoid style conflicts */
  color: white !important; }

.flow-consent-message-container-notice {
  background-color: #999999;
  color: white;
  font-size: 12px;
  padding: 5px 0;
  text-align: center; }
  @media screen and (min-width: 768px) {
    .flow-consent-message-container-notice p {
      max-width: 768px;
      padding: 0 40px;
      margin: auto; } }
  @media screen and (min-width: 1080px) {
    .flow-consent-message-container-notice p {
      max-width: 1040px;
      padding: 0 20px;
      margin: auto; } }

.flow-consent-message-container-action {
  background-color: #5a7ee5;
  color: white;
  font-size: 12px;
  padding: 5px 0;
  text-align: center; }

.flow-consent-dismiss-btn {
  cursor: pointer;
  color: white;
  text-decoration: underline;
  display: block; }

.flow-consent-decision-positive {
  cursor: pointer;
  padding-left: 32px;
  text-decoration: underline; }

.flow-consent-decision-negative {
  cursor: pointer;
  padding-left: 16px;
  text-decoration: underline; }

.flow-consent-container {
  font-family: "Open Sans", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 12px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.5;
  letter-spacing: -0.2px;
  color: #999999; }

.flowio-localized-content-element a {
  color: #41ccb4; }

.only__mobile {
  display: none; }
  @media screen and (max-width: 767px) {
    .only__mobile {
      display: block; }
      .only__mobile--flex {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; }
      .only__mobile--inline-block {
        display: inline-block; }
      .only__mobile--inline {
        display: inline; } }

.only__tablet {
  display: none; }
  @media (min-width: 768px) and (max-width: 1079px) {
    .only__tablet {
      display: block; }
      .only__tablet--flex {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; }
      .only__tablet--inline-block {
        display: inline-block; }
      .only__tablet--inline {
        display: inline; } }

.only__touch {
  display: none; }
  @media screen and (max-width: 1079px) {
    .only__touch {
      display: block; }
      .only__touch--flex {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; }
      .only__touch--inline-block {
        display: inline-block; }
      .only__touch--inline {
        display: inline; } }

.only__largescreen {
  display: none; }
  @media screen and (min-width: 768px) {
    .only__largescreen {
      display: block; }
      .only__largescreen--flex {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; }
      .only__largescreen--inline-block {
        display: inline-block; }
      .only__largescreen--inline {
        display: inline; } }

.only__desk-mob {
  display: none; }
  @media (min-width: 0px) and (max-width: 767px) {
    .only__desk-mob {
      display: block; }
      .only__desk-mob--flex {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; }
      .only__desk-mob--inline-block {
        display: inline-block; }
      .only__desk-mob--inline {
        display: inline; } }
  @media screen and (min-width: 1080px) {
    .only__desk-mob {
      display: block; }
      .only__desk-mob--flex {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; }
      .only__desk-mob--inline-block {
        display: inline-block; }
      .only__desk-mob--inline {
        display: inline; } }

.only__desktop {
  display: none; }
  @media screen and (min-width: 1080px) {
    .only__desktop {
      display: block; }
      .only__desktop--flex {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; }
      .only__desktop--inline-block {
        display: inline-block; }
      .only__desktop--inline {
        display: inline; } }
