/* ==========================================================================
 * Font related functions
 * ========================================================================== */

/**
 *  Calculate line-height ratio from font-size and line-height in px value
 */

/**
 *  Mixin for setting font-size in REM through a Sass Map with all available sizes

    USAGE:

    .myClass {
        @include font-size(x-large);
    }

 */

/**
 *	A simple function for accessing the font families from our mapping

	USAGE:

	span {
		@include font-family(primary);
	}

 */

/**
 *  Font mixin for setting font-size, font-weight, and line-height

    USAGE:

    .myClass {
        @include font(x-large, 34, 500);
    }

    .myClass {
      @include font(medium, $weight: 300);
    }

 */

/* Media query mixin for writing Mobile First
 * ========================================== */

/** =====================================================================================
 *  Toolbox functions
 ===================================================================================== */

/**
 *  Maths helpers.
 *  Halve and double numbers, returning rounded integers.

    USAGE:

    .foo {
        padding: halve(30px);
    }

 */

/**
 *  Remove the unit of a length
 *  @param {Number} $number - Number to remove unit from
 *  @return {Number} - Unitless number
 */

/* Check if value is number */

/* Value to Em */

/* Value to Rem */

/**
 *	A simple function for accessing the colors from our mapping
 *	To access colors in our palette, we use a very simple custom Sass function

	USAGE:

	a {
		color: palette(primary);

		&:hover {
			color: palette(primary, 400);
		}
	}

 */

@font-face {
  font-family: 'Maison Neue';
  src: url("../fonts/maisonneue/MaisonNeue-Bold.woff2") format("woff2"), url("../fonts/maisonneue/MaisonNeue-Bold.woff") format("woff"), url("../fonts/maisonneue/MaisonNeue-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Maison Neue';
  src: url("../fonts/maisonneue/MaisonNeue-Medium.woff2") format("woff2"), url("../fonts/maisonneue/MaisonNeue-Medium.woff") format("woff"), url("../fonts/maisonneue/MaisonNeue-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Maison Neue';
  src: url("../fonts/maisonneue/MaisonNeue-Black.woff2") format("woff2"), url("../fonts/maisonneue/MaisonNeue-Black.woff") format("woff"), url("../fonts/maisonneue/MaisonNeue-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --grey-1: rgb(250, 251, 252);
  --grey-3: rgb(237, 242, 245);
  --grey-5: rgb(231, 238, 242);
  --grey-10: rgb(221, 230, 237);
  --grey-20: rgb(210, 213, 221);
  --grey-40: rgb(150, 157, 175);
  --grey-50: rgb(242, 250, 255);
  --grey-60: rgb(105, 115, 140);
  --grey-70: rgb(100, 129, 142);
  --grey-80: rgb(51, 70, 96);
  --grey-90: rgb(0, 24, 56);
  --primary-light: rgb(50, 192, 240);
  --primary-dark: rgb(42, 178, 214);
  --primary-lime: rgb(230, 255, 0);
  --primary-lime-light: rgb(243, 255, 139);
  --primary-red: rgb(235, 43, 43);
  --primary-pink: rgb(227, 0, 113);
  --primary-pink-light: rgb(255, 0, 131);
  --primary-pink-bg: rgb(243, 232, 236);
  --primary-blue: #063779;
  --primary-blue-light: #AFEEFF;
  --secondary-blue: #4971A6;
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */

main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

/* Grouping content
   ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  -webkit-box-sizing: content-box;
     -moz-box-sizing: content-box;
          box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

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

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
  background-color: transparent;
  text-decoration: none;
  color: #000;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
     -moz-text-decoration: underline dotted;
          text-decoration: underline dotted;
  /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */

img {
  border-style: none;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

legend {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */

[type="checkbox"],
[type="radio"] {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Misc
   ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */

template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */

[hidden] {
  display: none;
}

.container {
  width: 100%;
  margin: 0 auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.container[data-container="full"] {
  max-width: 100% !important;
}

.row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-left: -0.625rem;
  margin-right: -0.625rem;
  row-gap: 1.25rem;
}

.row.justify-flex-start {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
     -moz-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.row.items-flex-start {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.row.justify-flex-end {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
     -moz-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.row.items-flex-end {
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
     -moz-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.row.justify-center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.row.items-center {
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.row.justify-space-between {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.row.items-space-between {
  -webkit-box-align: space-between;
  -webkit-align-items: space-between;
     -moz-box-align: space-between;
      -ms-flex-align: space-between;
          align-items: space-between;
}

.row.justify-space-around {
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
}

.row.items-space-around {
  -webkit-box-align: space-around;
  -webkit-align-items: space-around;
     -moz-box-align: space-around;
      -ms-flex-align: space-around;
          align-items: space-around;
}

.row.justify-stretch {
  -webkit-box-pack: stretch;
  -webkit-justify-content: stretch;
     -moz-box-pack: stretch;
      -ms-flex-pack: stretch;
          justify-content: stretch;
}

.row.items-stretch {
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
     -moz-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.col-0 {
  width: calc(100% / 12 * 0);
}

.offset-0 {
  -webkit-margin-start: calc(100% / 12 * 0);
     -moz-margin-start: calc(100% / 12 * 0);
          margin-inline-start: calc(100% / 12 * 0);
}

.order-0 {
  -webkit-box-ordinal-group: 1;
  -webkit-order: 0;
     -moz-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
}

.col-1 {
  width: calc(100% / 12 * 1);
}

.offset-1 {
  -webkit-margin-start: calc(100% / 12 * 1);
     -moz-margin-start: calc(100% / 12 * 1);
          margin-inline-start: calc(100% / 12 * 1);
}

.order-1 {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
     -moz-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.col-2 {
  width: calc(100% / 12 * 2);
}

.offset-2 {
  -webkit-margin-start: calc(100% / 12 * 2);
     -moz-margin-start: calc(100% / 12 * 2);
          margin-inline-start: calc(100% / 12 * 2);
}

.order-2 {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
     -moz-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.col-3 {
  width: calc(100% / 12 * 3);
}

.offset-3 {
  -webkit-margin-start: calc(100% / 12 * 3);
     -moz-margin-start: calc(100% / 12 * 3);
          margin-inline-start: calc(100% / 12 * 3);
}

.order-3 {
  -webkit-box-ordinal-group: 4;
  -webkit-order: 3;
     -moz-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}

.col-4 {
  width: calc(100% / 12 * 4);
}

.offset-4 {
  -webkit-margin-start: calc(100% / 12 * 4);
     -moz-margin-start: calc(100% / 12 * 4);
          margin-inline-start: calc(100% / 12 * 4);
}

.order-4 {
  -webkit-box-ordinal-group: 5;
  -webkit-order: 4;
     -moz-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
}

.col-5 {
  width: calc(100% / 12 * 5);
}

.offset-5 {
  -webkit-margin-start: calc(100% / 12 * 5);
     -moz-margin-start: calc(100% / 12 * 5);
          margin-inline-start: calc(100% / 12 * 5);
}

.order-5 {
  -webkit-box-ordinal-group: 6;
  -webkit-order: 5;
     -moz-box-ordinal-group: 6;
      -ms-flex-order: 5;
          order: 5;
}

.col-6 {
  width: calc(100% / 12 * 6);
}

.offset-6 {
  -webkit-margin-start: calc(100% / 12 * 6);
     -moz-margin-start: calc(100% / 12 * 6);
          margin-inline-start: calc(100% / 12 * 6);
}

.order-6 {
  -webkit-box-ordinal-group: 7;
  -webkit-order: 6;
     -moz-box-ordinal-group: 7;
      -ms-flex-order: 6;
          order: 6;
}

.col-7 {
  width: calc(100% / 12 * 7);
}

.offset-7 {
  -webkit-margin-start: calc(100% / 12 * 7);
     -moz-margin-start: calc(100% / 12 * 7);
          margin-inline-start: calc(100% / 12 * 7);
}

.order-7 {
  -webkit-box-ordinal-group: 8;
  -webkit-order: 7;
     -moz-box-ordinal-group: 8;
      -ms-flex-order: 7;
          order: 7;
}

.col-8 {
  width: calc(100% / 12 * 8);
}

.offset-8 {
  -webkit-margin-start: calc(100% / 12 * 8);
     -moz-margin-start: calc(100% / 12 * 8);
          margin-inline-start: calc(100% / 12 * 8);
}

.order-8 {
  -webkit-box-ordinal-group: 9;
  -webkit-order: 8;
     -moz-box-ordinal-group: 9;
      -ms-flex-order: 8;
          order: 8;
}

.col-9 {
  width: calc(100% / 12 * 9);
}

.offset-9 {
  -webkit-margin-start: calc(100% / 12 * 9);
     -moz-margin-start: calc(100% / 12 * 9);
          margin-inline-start: calc(100% / 12 * 9);
}

.order-9 {
  -webkit-box-ordinal-group: 10;
  -webkit-order: 9;
     -moz-box-ordinal-group: 10;
      -ms-flex-order: 9;
          order: 9;
}

.col-10 {
  width: calc(100% / 12 * 10);
}

.offset-10 {
  -webkit-margin-start: calc(100% / 12 * 10);
     -moz-margin-start: calc(100% / 12 * 10);
          margin-inline-start: calc(100% / 12 * 10);
}

.order-10 {
  -webkit-box-ordinal-group: 11;
  -webkit-order: 10;
     -moz-box-ordinal-group: 11;
      -ms-flex-order: 10;
          order: 10;
}

.col-11 {
  width: calc(100% / 12 * 11);
}

.offset-11 {
  -webkit-margin-start: calc(100% / 12 * 11);
     -moz-margin-start: calc(100% / 12 * 11);
          margin-inline-start: calc(100% / 12 * 11);
}

.order-11 {
  -webkit-box-ordinal-group: 12;
  -webkit-order: 11;
     -moz-box-ordinal-group: 12;
      -ms-flex-order: 11;
          order: 11;
}

.col-12 {
  width: calc(100% / 12 * 12);
}

.offset-12 {
  -webkit-margin-start: calc(100% / 12 * 12);
     -moz-margin-start: calc(100% / 12 * 12);
          margin-inline-start: calc(100% / 12 * 12);
}

.order-12 {
  -webkit-box-ordinal-group: 13;
  -webkit-order: 12;
     -moz-box-ordinal-group: 13;
      -ms-flex-order: 12;
          order: 12;
}

[class*="col-"] {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
     -moz-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  max-width: 100%;
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}

.d-block {
  display: block !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-flex {
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -moz-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.d-none {
  display: none !important;
}

.justify-flex-start {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
     -moz-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.items-flex-start {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.justify-flex-end {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
     -moz-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.items-flex-end {
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
     -moz-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.justify-center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.items-center {
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.justify-space-between {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.items-space-between {
  -webkit-box-align: space-between;
  -webkit-align-items: space-between;
     -moz-box-align: space-between;
      -ms-flex-align: space-between;
          align-items: space-between;
}

.justify-space-around {
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
}

.items-space-around {
  -webkit-box-align: space-around;
  -webkit-align-items: space-around;
     -moz-box-align: space-around;
      -ms-flex-align: space-around;
          align-items: space-around;
}

.justify-stretch {
  -webkit-box-pack: stretch;
  -webkit-justify-content: stretch;
     -moz-box-pack: stretch;
      -ms-flex-pack: stretch;
          justify-content: stretch;
}

.items-stretch {
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
     -moz-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

body {
  font-family: 'Maison Neue';
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  color: var(--grey-90);
}

h1,
h2,
h3,
h4,
h5,
h6,
hgroup,
ul,
ol,
dd,
figure,
pre,
table,
fieldset,
hr,
p {
  margin-top: 0;
  margin-bottom: 0;
}

.main-wrap button.button,
.main-wrap a.button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  border: none;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
  padding: 14px 40px 13px;
  font-weight: 900;
  font-style: italic;
  font-size: 14px;
  line-height: 23px;
  letter-spacing: 0.28px;
  text-align: center;
  min-width: 252px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  color: #fff;
  border-radius: 100px;
  text-transform: uppercase;
}

.main-wrap button.button:disabled,
.main-wrap a.button:disabled {
  cursor: not-allowed;
  background-color: var(--grey-60);
  gap: 12px;
  padding: 14px 40px 13px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  border: none;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.main-wrap button.button--primary,
.main-wrap a.button--primary {
  background-color: var(--primary-light);
}

.main-wrap button.button--primary:hover,
.main-wrap a.button--primary:hover {
  background-color: var(--primary-dark);
}

.main-wrap button.button--secondary,
.main-wrap a.button--secondary {
  background-color: var(--grey-90);
}

.main-wrap button.button--secondary:hover,
.main-wrap a.button--secondary:hover {
  background-color: var(--grey-80);
}

.main-wrap button.button--tertiary,
.main-wrap a.button--tertiary {
  background-color: var(--primary-lime);
  color: var(--grey-90);
}

.main-wrap button.button--tertiary:hover,
.main-wrap a.button--tertiary:hover {
  background-color: var(--primary-lime-light);
}

.main-wrap button.button .button__icon,
.main-wrap a.button .button__icon {
  width: 16px;
  height: 16px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  margin-bottom: 4px;
}

.main-wrap button.button .button__icon img,
.main-wrap a.button .button__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.main-wrap .badge {
  font-weight: 700;
  font-size: 10px;
  line-height: 18px;
  letter-spacing: .02em;
  color: #fff;
  padding: 0px 10px;
  border-radius: 2px;
  text-align: center;
}

.main-wrap .badge--red {
  background-color: var(--primary-red);
}

.main-wrap .badge--lime {
  background-color: var(--primary-lime);
  color: var(--grey-90);
}

.main-wrap .badge--grey {
  background-color: var(--grey-5);
  color: var(--grey-90);
}

.main-wrap[data-theme-color="pink"] button.button--primary,
.main-wrap[data-theme-color="pink"] a.button--primary {
  background-color: var(--primary-pink-light);
}

.main-wrap[data-theme-color="pink"] button.button--primary:hover,
.main-wrap[data-theme-color="pink"] a.button--primary:hover {
  background-color: var(--primary-pink);
}

.main-wrap[data-theme-color="pink"] .content .content__item .calc__text--link {
  color: var(--primary-pink);
}

.main-wrap[data-theme-color="pink"] .content .content__item .choose-plan__item-save {
  background-color: #FFF500;
}

.overflow-hidden {
  overflow: hidden;
}

.main-wrap .footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  -webkit-box-shadow: 0px 1px 11px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 1px 11px 0px rgba(0, 0, 0, 0.25);
  z-index: 10;
  padding: 15px 0 25px;
}

.main-wrap .footer__container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.main-wrap .footer__container .js-checkout.loading {
  pointer-events: none;
  opacity: 0.5;
}

.main-wrap .footer__container .button--primary {
  min-width: inherit;
  width: auto !important;
}

.main-wrap .footer__total-text {
  font-weight: 500;
  font-size: 11px;
  line-height: 20px;
}

.main-wrap .footer__total-price {
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
}

.main-wrap .footer__total-price__wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.main-wrap .footer__total-price--disc {
  color: var(--primary-red);
  text-decoration: line-through;
  font-weight: 500;
}

.main-wrap .footer__total .js-total {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.main-wrap .header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0px 20px;
  background-color: var(--grey-90);
  color: var(--grey-10);
  z-index: 10;
}

.main-wrap .header__back {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  cursor: pointer;
  border: none;
  background-color: transparent;
}

.main-wrap .header__back-icon {
  width: 10px;
  height: 10px;
}

.main-wrap .header__back img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.main-wrap .header__logo {
  height: 24px;
}

.main-wrap .header__logo-wrap {
  display: none;
}

.main-wrap .header__logo img {
  height: 100%;
  width: auto;
}

.main-wrap .header__steps {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.main-wrap .header__steps-wrap {
  padding: 14px 0 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}

.main-wrap .header__steps-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 15px;
  font-weight: 500;
  line-height: 21px;
  letter-spacing: 0.3px;
  color: var(--grey-10);
}

.main-wrap .header__steps-track {
  height: 6px;
  background-color: var(--grey-80);
  border-radius: 4px;
}

.main-wrap .header__steps-thumb {
  width: 0;
  height: 6px;
  background-color: var(--grey-10);
  border-radius: 4px;
  -webkit-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
}

.main-wrap .header__steps-back {
  width: 10px;
  height: 10px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  margin-bottom: 3px;
}

.main-wrap .header__steps-back img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.main-wrap .header__steps-number {
  color: var(--grey-10);
  margin-left: auto;
  font-size: 15px;
  line-height: 21px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.main-wrap {
  position: relative;
}

.main-wrap .content {
  overflow: hidden;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: calc(100dvh - 81px);
  font-family: 'Maison Neue';
}

.main-wrap .content h1,
.main-wrap .content h2,
.main-wrap .content h3,
.main-wrap .content h4,
.main-wrap .content h5,
.main-wrap .content h6,
.main-wrap .content hgroup,
.main-wrap .content ul,
.main-wrap .content ol,
.main-wrap .content dd,
.main-wrap .content figure,
.main-wrap .content pre,
.main-wrap .content table,
.main-wrap .content fieldset,
.main-wrap .content hr,
.main-wrap .content p {
  font-family: 'Maison Neue';
}

.main-wrap .content__item {
  height: 100%;
  overflow-y: auto;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
     -moz-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 4;
  width: 100%;
  padding-bottom: 91px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  opacity: 0;
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
  pointer-events: none;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.main-wrap .content__item > * {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
     -moz-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.main-wrap .content__item.active {
  pointer-events: all;
  opacity: 1;
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}

.main-wrap .content__item.prev {
  -webkit-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
          transform: translateX(-100%);
}

.main-wrap .content__title {
  font-weight: 700;
  font-size: 16px;
  line-height: 18px;
}

.main-wrap .content__product_name {
  font-size: 14px;
  line-height: 18px;
  font-weight: 700;
  border-bottom: 1px solid var(--grey-10);
  margin-bottom: 10px;
  padding-bottom: 10px;
}

.main-wrap .content__accessories {
  font-weight: 700;
  font-size: 20px;
  line-height: 18px;
  border-bottom: 1px solid var(--grey-10);
  padding-bottom: 10px;
  margin-top: 60px;
}

.main-wrap .content__text {
  font-size: 14px;
  line-height: 18px;
}

.content .content__item .choose-item {
  padding: 18px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.content .content__item .choose-item__gallery {
  background-color: #FAFBFC;
}

.content .content__item .choose-item__gallery .swiper {
  width: 100%;
  height: 100%;
}

.content .content__item .choose-item__gallery .swiper .swiper-slide {
  width: 100%;
  height: 100%;
}

.content .content__item .choose-item__gallery-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
}

.content .content__item .choose-item__gallery-item img {
  max-width: 100%;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.content .content__item .choose-item__gallery-button {
  display: none;
}

.content .content__item .choose-item__gallery-button.swiper-button-next {
  right: 0;
}

.content .content__item .choose-item__gallery-button.swiper-button-next:hover::after {
  -webkit-transform: translateX(5px);
      -ms-transform: translateX(5px);
          transform: translateX(5px);
}

.content .content__item .choose-item__gallery-button.swiper-button-prev {
  left: 0;
}

.content .content__item .choose-item__gallery-button.swiper-button-prev:hover::after {
  -webkit-transform: translateX(-5px);
      -ms-transform: translateX(-5px);
          transform: translateX(-5px);
}

.content .content__item .choose-item__gallery-wrap {
  position: relative;
}

.content .content__item .choose-item__info {
  padding-bottom: 100px;
}

.content .content__item .choose-item__heading {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}

.content .content__item .choose-item__size {
  padding-top: 18px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  gap: 26px;
  -webkit-box-align: sretch;
  -webkit-align-items: sretch;
     -moz-box-align: sretch;
      -ms-flex-align: sretch;
          align-items: sretch;
  margin-bottom: 37px;
}

.content .content__item .choose-item__size-wrap {
  padding-top: 30px;
  border-top: 1px solid var(--grey-10);
}

.content .content__item .choose-item__size-item {
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 0px;
     -moz-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0px;
}

.content .content__item .choose-item__size-item::after {
  position: absolute;
  content: '';
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: calc(100% + 8px);
  height: calc(100% + 8px);
  border-radius: 6px;
  background-color: var(--grey-90);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  z-index: -1;
}

.content .content__item .choose-item__size-item:has(:checked) {
  border-color: transparent;
}

.content .content__item .choose-item__size-item:has(:checked)::after {
  opacity: 1;
}

.content .content__item .choose-item__size-label {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 4px;
  border: 1px solid var(--grey-20);
  -webkit-box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.05);
  background-color: #fff;
  cursor: pointer;
  height: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.content .content__item .choose-item__size-label:hover,
.content .content__item .choose-item__size-label:has(:checked),
.content .content__item .choose-item__size-label.hover {
  background-color: var(--grey-50);
}

[data-theme-color="pink"] .content .content__item .choose-item__size-label:hover,
[data-theme-color="pink"] .content .content__item .choose-item__size-label:has(:checked),
[data-theme-color="pink"] .content .content__item .choose-item__size-label.hover {
  background-color: var(--primary-pink-bg);
}

.content .content__item .choose-item__size-label:has(:checked) {
  border-color: transparent;
}

.content .content__item .choose-item__size-input {
  display: none;
}

.content .content__item .choose-item__size-text {
  font-weight: 900;
  font-size: 16px;
  line-height: 18px;
}

.content .content__item .choose-item__size-info {
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
}

.content .content__item .choose-item__disc {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  font-size: 12px;
  line-height: 18px;
}

.content .content__item .choose-item__disc-icon {
  width: 16px;
  height: 16px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}

.content .content__item .choose-item__disc-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.content .content__item .choose-plan {
  padding-top: 18px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.content .content__item .choose-plan > *:last-child {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
     -moz-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  background-color: var(--grey-1);
}

.content .content__item .choose-plan .faq .content__title {
  border-top: 1px solid #DDE6ED;
  padding-top: 30px;
}

.content .content__item .choose-plan__plans {
  padding: 18px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  -webkit-box-align: sretch;
  -webkit-align-items: sretch;
     -moz-box-align: sretch;
      -ms-flex-align: sretch;
          align-items: sretch;
}

.content .content__item .choose-plan__item {
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 0px;
     -moz-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0px;
}

.content .content__item .choose-plan__item::after {
  position: absolute;
  content: '';
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: calc(100% + 8px);
  height: calc(100% + 8px);
  border-radius: 6px;
  background-color: var(--grey-90);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  z-index: -1;
}

.content .content__item .choose-plan__item:has(:checked) {
  border-color: transparent;
}

.content .content__item .choose-plan__item:has(:checked)::after {
  opacity: 1;
}

.content .content__item .choose-plan__item-label {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px;
  padding: 20px 16px;
  border-radius: 4px;
  border: 1px solid var(--grey-20);
  -webkit-box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.05);
  background-color: #fff;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.content .content__item .choose-plan__item-label:hover,
.content .content__item .choose-plan__item-label:has(:checked) {
  background-color: var(--grey-50);
}

[data-theme-color="pink"] .content .content__item .choose-plan__item-label:hover,
[data-theme-color="pink"] .content .content__item .choose-plan__item-label:has(:checked) {
  background-color: var(--primary-pink-bg);
}

.content .content__item .choose-plan__item-label:has(:checked) {
  border-color: transparent;
}

.content .content__item .choose-plan__item-input {
  display: none;
}

.content .content__item .choose-plan__item-head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
}

.content .content__item .choose-plan__item-title {
  font-weight: 900;
  font-size: 22px;
  line-height: 22px;
}

.content .content__item .choose-plan__item-price {
  font-weight: 700;
  font-size: 16px;
  line-height: 16px;
  text-align: right;
}

.content .content__item .choose-plan__item-price__wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
     -moz-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 6px;
}

.content .content__item .choose-plan__item-price__old,
.content .content__item .choose-plan__item-price__sale {
  font-weight: 400;
  color: var(--grey-40);
  text-decoration: line-through;
  margin-right: 4px;
}

.content .content__item .choose-plan__item-price__sale {
  color: var(--primary-red);
}

.content .content__item .choose-plan__item-footer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: auto;
}

.content .content__item .choose-plan__item-footer__text > * {
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 2%;
}

.content .content__item .choose-plan__item-footer__text > * strong {
  font-weight: 700;
}

.content .content__item .choose-plan__item-footer__text > *.lite {
  font-weight: 400;
}

.content .content__item .choose-plan__item-link {
  background-color: transparent;
  border: none;
  padding: 0;
  display: inline-block;
  cursor: pointer;
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  color: var(--primary-light);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.content .content__item .choose-plan__item-link:hover {
  color: var(--primary-dark);
}

[data-theme-color="pink"] .content .content__item .choose-plan__item-link {
  color: var(--primary-pink);
}

[data-theme-color="pink"] .content .content__item .choose-plan__item-link:hover {
  color: var(--primary-pink-light);
}

.content .content__item .choose-plan__item-save {
  position: absolute;
  top: 0;
  left: 16px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  padding: 3px 16px 2px;
  border-radius: 2px;
  font-weight: 700;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 2%;
  text-transform: uppercase;
  background-color: var(--primary-lime);
  z-index: 3;
}

.content .content__item .features {
  background-color: var(--grey-1);
}

.content .content__item .features .container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 18px;
  gap: 21px;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.content .content__item .features__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: stretch;
  -webkit-justify-content: stretch;
     -moz-box-pack: stretch;
      -ms-flex-pack: stretch;
          justify-content: stretch;
}

.content .content__item .features__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2px;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 0px;
     -moz-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0px;
}

.content .content__item .features__item-icon {
  width: 50px;
  height: 50px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}

.content .content__item .features__item-icon img {
  width: 100%;
  height: 100%;
}

.content .content__item .features__item-title {
  font-size: 12px;
  line-height: 13px;
  text-align: center;
  color: var(--grey-60);
  font-weight: 500;
}

.content .content__item .features__text {
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  text-align: center;
  color: var(--grey-60);
}

.content .content__item .includes {
  padding: 50px 0 0;
}

.content .content__item .includes .container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px;
}

.content .content__item .includes__list {
  display: grid;
  gap: 9px;
  grid-template-columns: repeat(1, 1fr);
}

.content .content__item .includes__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}

.content .content__item .includes__item-icon {
  width: 18px;
  height: 18px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}

.content .content__item .includes__item-icon img {
  width: 100%;
  height: 100%;
}

.content .content__item .includes__item-title {
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
}

.content .content__item .faq {
  padding: 28px 0 40px;
}

.content .content__item .faq .container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px;
}

.content .content__item .faq__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 28px;
}

.content .content__item .faq__item-head {
  position: relative;
  padding-left: 32px;
  cursor: pointer;
}

.content .content__item .faq__item-title {
  font-weight: 700;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: 4%;
}

.content .content__item .faq__item-icon {
  position: absolute;
  left: 0;
  top: 1px;
  width: 16px;
  height: 16px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.open .content .content__item .faq__item-icon {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.content .content__item .faq__item-icon img {
  width: 100%;
  height: 100%;
}

.content .content__item .faq__item-text {
  display: none;
  padding-top: 8px;
  font-weight: 400;
  font-size: 14px;
  line-height: 23px;
  padding-left: 32px;
}

.content .content__item .summary {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.content .content__item .summary__cover {
  position: relative;
}

.content .content__item .summary__cover-img {
  position: absolute;
  content: '';
  width: 50vw;
  right: 0;
  top: 0;
  height: 100%;
}

.content .content__item .summary__cover-img img {
  max-width: none;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left;
     object-position: left;
}

.content .content__item .summary__info {
  padding-top: 30px;
}

.content .content__item .summary__info-title {
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
}

.content .content__item .calc__main {
  padding-top: 0;
  display: grid;
  gap: 12px;
}

.content .content__item .calc__head {
  padding-bottom: 10px;
  border-bottom: 1px solid var(--grey-10);
  margin-bottom: 10px;
}

.content .content__item .calc__head-title {
  font-weight: 700;
  font-size: 20px;
  line-height: 18px;
}

.content .content__item .calc__item-wrap {
  padding: 21px 0;
  border-bottom: 1px solid var(--grey-10);
}

.content .content__item .calc__item-wrap.disabled {
  cursor: not-allowed;
}

.content .content__item .calc__item-wrap.disabled .calc__item {
  pointer-events: none;
  opacity: 0.5;
}

.content .content__item .calc__item-heading {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
}

.content .content__item .calc__item-icon {
  width: 52px;
  height: 48px;
  border-radius: 2px;
  background-color: #F4F6F8;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}

.content .content__item .calc__item-price {
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
}

.content .content__item .calc__item-price__old,
.content .content__item .calc__item-price__sale {
  font-weight: 400;
  color: var(--grey-40);
  text-decoration: line-through;
  margin-right: 4px;
}

.content .content__item .calc__item-price__sale {
  color: var(--primary-red);
}

.content .content__item .calc__item-price .badge {
  margin-top: 2px;
}

.content .content__item .calc__item-counter {
  padding-left: 62px;
  gap: 22px;
}

.content .content__item .calc__item-counter .badge {
  min-width: 118px;
}

.content .content__item .calc__item-counter .badge---grey {
  font-weight: 400;
}

.content .content__item .calc__item-detailes {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 20px;
  gap: 16px;
}

.content .content__item .calc__item-detailes__wrap {
  display: none;
}

.content .content__item .calc__item-detailes__title {
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
}

.content .content__item .calc__title {
  font-weight: 700;
  font-size: 16px;
  line-height: 14px;
}

.content .content__item .calc__title-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}

.content .content__item .calc__text {
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
}

.content .content__item .calc__text--link {
  color: #008CFF;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  cursor: pointer;
}

.content .content__item .calc__text--link-icon {
  margin-top: -4px;
  height: 6px;
  width: auto;
}

.content .content__item .calc__count {
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  color: var(--grey-60);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--grey-10);
}

.content .content__item .calc__delete {
  width: 24px;
  height: 24px;
  padding: 4px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  border-radius: 2px;
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-self: center;
      -ms-flex-item-align: center;
          align-self: center;
  background-color: transparent;
  border: none;
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.content .content__item .calc__delete:hover {
  background-color: var(--grey-3);
}

.content .content__item .calc__delete img {
  -o-object-fit: contain;
     object-fit: contain;
}

.content .content__item .calc__delete:disabled {
  cursor: not-allowed;
  opacity: 0.2;
}

.content .content__item .calc__number {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
     -moz-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: stretch;
  -webkit-justify-content: stretch;
     -moz-box-pack: stretch;
      -ms-flex-pack: stretch;
          justify-content: stretch;
  height: 30px;
  width: 100px;
  border-radius: 40px;
  border: 1px solid var(--grey-60);
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.content .content__item .calc__number-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
}

.content .content__item .calc__number:hover {
  background-color: var(--grey-3);
}

.content .content__item .calc__number > * {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 33px;
     -moz-box-flex: 1;
      -ms-flex: 1 1 33px;
          flex: 1 1 33px;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.content .content__item .calc__number-button {
  font-weight: 400;
  font-size: 18px;
  line-height: 18px;
  padding: 0;
  padding-top: 2px;
  border: none;
  background-color: transparent;
  cursor: pointer;
}

.content .content__item .calc__number-button:disabled {
  cursor: not-allowed;
  color: #D2D5DD;
}

.content .content__item .calc__number-input {
  padding: 0;
  min-width: 0;
  display: block;
  font-weight: 700;
  font-size: 18px;
  line-height: 16px;
  background-color: transparent;
  border: none;
  text-align: center;
  -moz-appearance: textfield;
  pointer-events: none;
}

.content .content__item .calc__number-input::-webkit-outer-spin-button,
.content .content__item .calc__number-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.content .content__item .calc__number-input:focus {
  outline: none;
}

.content .content__item .calc__number--add {
  padding: 0 24px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
}

.content .content__item .calc__number--add > * {
  -webkit-box-flex: unset;
  -webkit-flex: unset;
     -moz-box-flex: unset;
      -ms-flex: unset;
          flex: unset;
}

.calc__item-wrap.js-add-items:last-of-type,
.calc__item-wrap.js-add-items:nth-last-of-type(2):not(:has(+ .js-add-items)) {
  border: none;
}

.promobar {
  background: #F5FBF0;
  border: 1px solid #449602;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 12px;
  padding: 10px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #449602;
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  border-radius: 6px;
  margin: 30px 0;
}

.promobar img {
  width: 28px;
}

.main-wrap .sidebar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.65);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-transition-delay: 0.3s;
       -o-transition-delay: 0.3s;
          transition-delay: 0.3s;
  overflow: hidden;
}

.main-wrap .sidebar.open {
  opacity: 1;
  pointer-events: all;
  -webkit-transition-delay: 0s;
       -o-transition-delay: 0s;
          transition-delay: 0s;
}

.main-wrap .sidebar__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  background-color: #fff;
  padding: 76px 20px 40px;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-transition-delay: 0.2s;
       -o-transition-delay: 0.2s;
          transition-delay: 0.2s;
  height: 100%;
  -webkit-box-shadow: 0px 6px 20px 0px rgba(0, 0, 0, 0.08);
          box-shadow: 0px 6px 20px 0px rgba(0, 0, 0, 0.08);
  border-radius: 15px 15px 0px 0px;
  position: relative;
}

.main-wrap .sidebar__content::after {
  position: absolute;
  content: '';
  width: 50px;
  height: 5px;
  border-radius: 10px;
  background-color: var(--grey-10);
  left: 50%;
  top: 15px;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

.main-wrap .sidebar__content-close {
  position: absolute;
  top: 26px;
  left: 16px;
  padding: 4px;
  width: 24px;
  height: 24px;
  border: none;
  background-color: transparent;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-radius: 2px;
}

.main-wrap .sidebar__content-close:hover {
  background-color: var(--grey-10);
}

.main-wrap .sidebar__content-heading {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}

.main-wrap .sidebar__content-title {
  font-weight: 700;
  font-size: 24px;
  line-height: 18px;
}

.main-wrap .sidebar__content-text {
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
}

.main-wrap .sidebar__content .button {
  margin-top: auto;
}

.main-wrap .sidebar__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  padding: 20px 0;
}

.main-wrap .sidebar__item:first-child {
  padding-top: 0;
}

.main-wrap .sidebar__item:last-child {
  padding-bottom: 0;
}

.main-wrap .sidebar__item + .main-wrap .sidebar__item {
  border-top: 1px solid var(--grey-10);
}

.main-wrap .sidebar__item-info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  gap: 45px;
  -webkit-box-pack: stretch;
  -webkit-justify-content: stretch;
     -moz-box-pack: stretch;
      -ms-flex-pack: stretch;
          justify-content: stretch;
}

.main-wrap .sidebar__item-size {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 0px;
     -moz-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}

.main-wrap .sidebar__item-size-title {
  font-weight: 900;
  font-size: 18px;
  line-height: 18px;
}

.main-wrap .sidebar__item-size-text {
  font-weight: 400;
  font-size: 18px;
  line-height: 20px;
}

.main-wrap .sidebar__item-title {
  font-weight: 900;
  font-size: 36px;
  line-height: 36px;
}

.colors {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  padding-top: 13px;
  padding-bottom: 36px;
}

.colors__item {
  width: 42px;
  height: 42px;
  border-radius: 100%;
  position: relative;
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.colors__item::after {
  position: absolute;
  content: '';
  width: calc(100% + 12px);
  height: calc(100% + 12px);
  border-radius: 100%;
  border: 3px solid var(--grey-90);
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: -1;
}

.colors__item-input {
  display: none;
}

.colors__item-icon {
  width: 16px;
  height: 16px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.colors__item-icon img {
  max-width: none;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.colors__item:has(:checked)::after {
  opacity: 1;
}

.colors__item:has(:checked) .colors__item-icon {
  opacity: 1;
}

.colors__item.disabled {
  cursor: not-allowed;
}

.colors__item.disabled::after {
  opacity: 0;
}

.colors__item.disabled::before {
  position: absolute;
  content: '';
  width: calc(100% + 8px);
  height: 1px;
  background-color: var(--grey-90);
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
      -ms-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
  z-index: 1;
}

.colors__item.disabled-icon {
  opacity: 0;
}

.colors__item--included {
  cursor: not-allowed;
  pointer-events: none;
}

.colors__item--white {
  border: 1px solid var(--grey-20);
}

.colors__item--white .colors__item-icon {
  -webkit-filter: invert(1);
          filter: invert(1);
}

.colors__separate {
  width: 1px;
  height: 42px;
  background-color: var(--grey-10);
}

.details-popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 16px;
  background-color: rgba(0, 0, 0, 0.65);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  overflow: hidden;
}

.details-popup.open {
  opacity: 1;
  pointer-events: all;
}

.details-popup.open .details-popup__modal-wrapper {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

.details-popup__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 24px;
  height: 24px;
  cursor: pointer;
  padding: 0;
  border: none;
  background: transparent;
  z-index: 3;
}

.details-popup__close img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.details-popup__modal-wrapper {
  position: relative;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-transform: translateY(-30px);
      -ms-transform: translateY(-30px);
          transform: translateY(-30px);
  max-height: 80dvh;
  max-width: 600px;
  overflow-y: scroll;
  border-radius: 16px;
  -webkit-box-shadow: 0px 6px 20px 0px rgba(0, 0, 0, 0.08);
          box-shadow: 0px 6px 20px 0px rgba(0, 0, 0, 0.08);
}

.details-popup__modal {
  position: relative;
  background-color: var(--primary-blue);
  padding: 24px;
  overflow: hidden;
}

.details-popup__modal-vector {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
  pointer-events: none;
}

.details-popup__modal-content {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.details-popup__modal-title {
  font-size: 26px;
  line-height: 1.3;
  font-weight: 900;
  color: var(--grey-1);
  text-transform: uppercase;
}

.details-popup__modal-title .highlight {
  color: var(--primary-lime);
}

.details-popup__modal-info__item {
  padding-left: 36px;
  padding-bottom: 20px;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}

.details-popup__modal-info__item:after {
  position: absolute;
  content: '';
  top: 5px;
  left: 12px;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background-color: var(--grey-1);
  z-index: 1;
}

.details-popup__modal-info__item:last-child::after {
  background-color: var(--secondary-blue);
  height: calc(100% - 5px);
}

.details-popup__modal-info__item:last-child::before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 2px;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 20px;
  height: 20px;
  border-bottom: 4px solid var(--secondary-blue);
  border-right: 4px solid var(--secondary-blue);
}

.details-popup__modal-info__dot {
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  border-radius: 100%;
  border: 5px solid var(--grey-1);
  background-color: var(--primary-blue);
  pointer-events: none;
  z-index: 2;
}

.details-popup__modal-subtitle {
  font-size: 18px;
  line-height: 1.3;
  font-weight: 700;
  color: var(--grey-1);
}

.details-popup__modal-list {
  padding: 0;
}

.details-popup__modal-list li {
  font-size: 12px;
  line-height: 1.3;
  font-weight: 300;
  color: var(--grey-20);
  list-style: none;
  position: relative;
  padding-left: 10px;
}

.details-popup__modal-list li:before {
  position: absolute;
  content: '';
  top: 7px;
  left: 0;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 4px;
  height: 4px;
  border-radius: 100%;
  background-color: var(--grey-1);
}

.details-popup__modal-list li + li {
  margin-top: 6px;
}

.details-popup__modal-warn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.details-popup__modal-warn p {
  font-size: 13px;
  line-height: 1.3;
  font-weight: 400;
  color: var(--primary-blue-light);
}

.details-popup__modal-warn i {
  width: 24px;
  height: 24px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}

@media screen and (min-width: 768px) {
  .col-md-0 {
    width: calc(100% / 12 * 0);
  }

  .offset-md-0 {
    -webkit-margin-start: calc(100% / 12 * 0);
       -moz-margin-start: calc(100% / 12 * 0);
            margin-inline-start: calc(100% / 12 * 0);
  }

  .order-md-0 {
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
       -moz-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }

  .col-md-1 {
    width: calc(100% / 12 * 1);
  }

  .offset-md-1 {
    -webkit-margin-start: calc(100% / 12 * 1);
       -moz-margin-start: calc(100% / 12 * 1);
            margin-inline-start: calc(100% / 12 * 1);
  }

  .order-md-1 {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
       -moz-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }

  .col-md-2 {
    width: calc(100% / 12 * 2);
  }

  .offset-md-2 {
    -webkit-margin-start: calc(100% / 12 * 2);
       -moz-margin-start: calc(100% / 12 * 2);
            margin-inline-start: calc(100% / 12 * 2);
  }

  .order-md-2 {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
       -moz-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }

  .col-md-3 {
    width: calc(100% / 12 * 3);
  }

  .offset-md-3 {
    -webkit-margin-start: calc(100% / 12 * 3);
       -moz-margin-start: calc(100% / 12 * 3);
            margin-inline-start: calc(100% / 12 * 3);
  }

  .order-md-3 {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
       -moz-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }

  .col-md-4 {
    width: calc(100% / 12 * 4);
  }

  .offset-md-4 {
    -webkit-margin-start: calc(100% / 12 * 4);
       -moz-margin-start: calc(100% / 12 * 4);
            margin-inline-start: calc(100% / 12 * 4);
  }

  .order-md-4 {
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
       -moz-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }

  .col-md-5 {
    width: calc(100% / 12 * 5);
  }

  .offset-md-5 {
    -webkit-margin-start: calc(100% / 12 * 5);
       -moz-margin-start: calc(100% / 12 * 5);
            margin-inline-start: calc(100% / 12 * 5);
  }

  .order-md-5 {
    -webkit-box-ordinal-group: 6;
    -webkit-order: 5;
       -moz-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }

  .col-md-6 {
    width: calc(100% / 12 * 6);
  }

  .offset-md-6 {
    -webkit-margin-start: calc(100% / 12 * 6);
       -moz-margin-start: calc(100% / 12 * 6);
            margin-inline-start: calc(100% / 12 * 6);
  }

  .order-md-6 {
    -webkit-box-ordinal-group: 7;
    -webkit-order: 6;
       -moz-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }

  .col-md-7 {
    width: calc(100% / 12 * 7);
  }

  .offset-md-7 {
    -webkit-margin-start: calc(100% / 12 * 7);
       -moz-margin-start: calc(100% / 12 * 7);
            margin-inline-start: calc(100% / 12 * 7);
  }

  .order-md-7 {
    -webkit-box-ordinal-group: 8;
    -webkit-order: 7;
       -moz-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }

  .col-md-8 {
    width: calc(100% / 12 * 8);
  }

  .offset-md-8 {
    -webkit-margin-start: calc(100% / 12 * 8);
       -moz-margin-start: calc(100% / 12 * 8);
            margin-inline-start: calc(100% / 12 * 8);
  }

  .order-md-8 {
    -webkit-box-ordinal-group: 9;
    -webkit-order: 8;
       -moz-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }

  .col-md-9 {
    width: calc(100% / 12 * 9);
  }

  .offset-md-9 {
    -webkit-margin-start: calc(100% / 12 * 9);
       -moz-margin-start: calc(100% / 12 * 9);
            margin-inline-start: calc(100% / 12 * 9);
  }

  .order-md-9 {
    -webkit-box-ordinal-group: 10;
    -webkit-order: 9;
       -moz-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }

  .col-md-10 {
    width: calc(100% / 12 * 10);
  }

  .offset-md-10 {
    -webkit-margin-start: calc(100% / 12 * 10);
       -moz-margin-start: calc(100% / 12 * 10);
            margin-inline-start: calc(100% / 12 * 10);
  }

  .order-md-10 {
    -webkit-box-ordinal-group: 11;
    -webkit-order: 10;
       -moz-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }

  .col-md-11 {
    width: calc(100% / 12 * 11);
  }

  .offset-md-11 {
    -webkit-margin-start: calc(100% / 12 * 11);
       -moz-margin-start: calc(100% / 12 * 11);
            margin-inline-start: calc(100% / 12 * 11);
  }

  .order-md-11 {
    -webkit-box-ordinal-group: 12;
    -webkit-order: 11;
       -moz-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }

  .col-md-12 {
    width: calc(100% / 12 * 12);
  }

  .offset-md-12 {
    -webkit-margin-start: calc(100% / 12 * 12);
       -moz-margin-start: calc(100% / 12 * 12);
            margin-inline-start: calc(100% / 12 * 12);
  }

  .order-md-12 {
    -webkit-box-ordinal-group: 13;
    -webkit-order: 12;
       -moz-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }

  .d-md-block {
    display: block !important;
  }

  .d-md-inline-block {
    display: inline-block !important;
  }

  .d-md-flex {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -moz-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-md-none {
    display: none !important;
  }

  .main-wrap .footer {
    padding: 20px 0 20px;
  }

  .main-wrap .footer .button {
    margin-left: auto;
  }

  .main-wrap .footer__container .button--primary {
    min-width: 198px;
    width: 100%;
  }

  .main-wrap .footer__container {
    padding-left: 54px;
  }

  .main-wrap .footer__total-text {
    font-size: 14px;
  }

  .main-wrap .footer__total-price {
    font-size: 20px;
    line-height: 20px;
  }

  .main-wrap .footer__total .js-total {
    -webkit-box-flex: 0;
    -webkit-flex: 0;
       -moz-box-flex: 0;
        -ms-flex: 0;
            flex: 0;
  }

  .main-wrap .header {
    padding: 0px 32px;
    -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.05);
            box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.05);
    background-color: #fff;
    color: var(--grey-90);
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .main-wrap .header__logo-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 32px;
    -webkit-flex-basis: calc(100% / 4);
        -ms-flex-preferred-size: calc(100% / 4);
            flex-basis: calc(100% / 4);
  }

  .main-wrap .header__steps-wrap {
    -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
            flex-basis: 50%;
    padding: 27px 0 23px;
  }

  .main-wrap .header__steps {
    gap: 0;
    -webkit-box-pack: stretch;
    -webkit-justify-content: stretch;
       -moz-box-pack: stretch;
        -ms-flex-pack: stretch;
            justify-content: stretch;
  }

  .main-wrap .header__steps-item {
    cursor: pointer;
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 0px;
       -moz-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0px;
    text-align: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 14px;
    color: var(--grey-90);
    -webkit-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
  }

  .main-wrap .header__steps-item:hover {
    color: var(--grey-80);
  }

  .main-wrap .header__steps-track {
    background-color: var(--grey-10);
    overflow: hidden;
  }

  .main-wrap .header__steps-thumb {
    background-color: var(--grey-90);
  }

  .main-wrap .header__steps-back {
    display: none;
  }

  .main-wrap .header__steps-number {
    display: none;
  }

  .main-wrap .content__title {
    font-size: 20px;
    line-height: 18px;
  }

  .main-wrap .content__text {
    font-size: 18px;
  }

  .content .content__item .choose-item {
    padding: 0;
  }

  .content .content__item .choose-item .container {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
       -moz-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
       -moz-box-orient: horizontal;
       -moz-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }

  .content .content__item .choose-item .row {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
       -moz-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
       -moz-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }

  .content .content__item .choose-item__gallery {
    position: absolute;
    width: 50vw;
    right: 0;
    top: 0;
    height: 100%;
  }

  .content .content__item .choose-item__gallery-button {
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    top: 0;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
    padding: 24px;
    color: var(--grey-90);
  }

  .content .content__item .choose-item__gallery-button::after {
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    font-size: 32px;
  }

  .content .content__item .choose-item__info {
    padding-top: 64px;
    padding-left: 54px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .content .content__item .choose-item__size {
    padding-top: 31px;
    margin-bottom: 33px;
    gap: 32px;
  }

  .content .content__item .choose-item__size-label {
    padding: 18px 20px;
  }

  .content .content__item .choose-item__size-text {
    font-size: 18px;
  }

  .content .content__item .choose-plan .faq .content__title {
    border: 0;
    padding-top: 0;
  }

  .content .content__item .choose-plan {
    padding-top: 64px;
  }

  .content .content__item .choose-plan__item-label {
    padding: 30px 25px 25px;
    gap: 50px;
    height: 100%;
  }

  .content .content__item .choose-plan__item-title {
    font-size: 20px;
    line-height: 26px;
  }

  .content .content__item .choose-plan__item-price {
    font-size: 20px;
    line-height: 22px;
  }

  .content .content__item .choose-plan__item-footer__text > * {
    font-size: 16px;
    line-height: 19px;
  }

  .content .content__item .choose-plan__item-save {
    left: 24px;
    padding: 3px 20px 2px;
  }

  .content .content__item .features {
    padding: 32px 0 32px;
  }

  .content .content__item .features .container {
    border-bottom: 1px solid #DDE6ED;
    padding-bottom: 42px;
  }

  .content .content__item .features__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
       -moz-box-orient: horizontal;
       -moz-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 8px;
  }

  .content .content__item .features__item-title {
    font-size: 14px;
    line-height: 15px;
    text-align: left;
  }

  .content .content__item .includes {
    padding: 50px 0 65px;
  }

  .content .content__item .includes .container {
    gap: 20px;
  }

  .content .content__item .includes__list[data-grid-count="3"] {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .content .content__item .includes__list {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .content .content__item .includes__item-icon {
    width: 34px;
    height: 34px;
  }

  .content .content__item .faq {
    padding: 25px 0 60px;
    background-color: var(--grey-1);
  }

  .content .content__item .faq .container {
    gap: 20px;
  }

  .content .content__item .faq__item-head {
    padding-left: 34px;
  }

  .content .content__item .faq__item-text {
    padding-left: 34px;
  }

  .content .content__item .faq__item-text {
    padding-top: 12px;
    font-size: 16px;
    line-height: 27px;
  }

  .content .content__item .summary {
    height: calc(100dvh - 81px - 90px);
  }

  .content .content__item .summary .container {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
       -moz-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
       -moz-box-orient: horizontal;
       -moz-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }

  .content .content__item .summary .row {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
       -moz-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
       -moz-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }

  .content .content__item .summary__info {
    padding-top: 40px;
    padding-left: 54px;
    height: calc(100dvh - 90px - 81px);
    overflow-y: scroll;
    padding-right: 20px;
    margin-right: -20px;
  }

  .content .content__item .summary__info-title {
    margin-bottom: 24px;
  }

  .main-wrap .sidebar.open .sidebar__content {
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
    -webkit-transition-delay: 0.2s;
         -o-transition-delay: 0.2s;
            transition-delay: 0.2s;
  }

  .main-wrap .sidebar__content::after {
    display: none;
  }

  .main-wrap .sidebar__content {
    width: 375px;
    margin-left: auto;
    border-radius: 0;
    -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
            transform: translateX(100%);
  }

  .open .main-wrap .sidebar__content {
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
    -webkit-transition-delay: 0.2s;
         -o-transition-delay: 0.2s;
            transition-delay: 0.2s;
  }

  .colors {
    padding-top: 42px;
    padding-bottom: 32px;
  }

  .colors__item {
    width: 50px;
    height: 50px;
  }

  .colors__item.disabled::before {
    width: calc(100% + 14px);
  }

  .colors__separate {
    height: 50px;
  }

  .details-popup__modal {
    padding: 32px 40px;
  }

  .details-popup__modal-title {
    font-size: 48px;
  }

  .details-popup__modal-warn {
    padding-left: 36px;
  }
}

@media screen and (min-width: 1024px) {
  .container {
    max-width: 992px;
  }

  .col-lg-0 {
    width: calc(100% / 12 * 0);
  }

  .offset-lg-0 {
    -webkit-margin-start: calc(100% / 12 * 0);
       -moz-margin-start: calc(100% / 12 * 0);
            margin-inline-start: calc(100% / 12 * 0);
  }

  .order-lg-0 {
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
       -moz-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }

  .col-lg-1 {
    width: calc(100% / 12 * 1);
  }

  .offset-lg-1 {
    -webkit-margin-start: calc(100% / 12 * 1);
       -moz-margin-start: calc(100% / 12 * 1);
            margin-inline-start: calc(100% / 12 * 1);
  }

  .order-lg-1 {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
       -moz-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }

  .col-lg-2 {
    width: calc(100% / 12 * 2);
  }

  .offset-lg-2 {
    -webkit-margin-start: calc(100% / 12 * 2);
       -moz-margin-start: calc(100% / 12 * 2);
            margin-inline-start: calc(100% / 12 * 2);
  }

  .order-lg-2 {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
       -moz-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }

  .col-lg-3 {
    width: calc(100% / 12 * 3);
  }

  .offset-lg-3 {
    -webkit-margin-start: calc(100% / 12 * 3);
       -moz-margin-start: calc(100% / 12 * 3);
            margin-inline-start: calc(100% / 12 * 3);
  }

  .order-lg-3 {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
       -moz-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }

  .col-lg-4 {
    width: calc(100% / 12 * 4);
  }

  .offset-lg-4 {
    -webkit-margin-start: calc(100% / 12 * 4);
       -moz-margin-start: calc(100% / 12 * 4);
            margin-inline-start: calc(100% / 12 * 4);
  }

  .order-lg-4 {
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
       -moz-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }

  .col-lg-5 {
    width: calc(100% / 12 * 5);
  }

  .offset-lg-5 {
    -webkit-margin-start: calc(100% / 12 * 5);
       -moz-margin-start: calc(100% / 12 * 5);
            margin-inline-start: calc(100% / 12 * 5);
  }

  .order-lg-5 {
    -webkit-box-ordinal-group: 6;
    -webkit-order: 5;
       -moz-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }

  .col-lg-6 {
    width: calc(100% / 12 * 6);
  }

  .offset-lg-6 {
    -webkit-margin-start: calc(100% / 12 * 6);
       -moz-margin-start: calc(100% / 12 * 6);
            margin-inline-start: calc(100% / 12 * 6);
  }

  .order-lg-6 {
    -webkit-box-ordinal-group: 7;
    -webkit-order: 6;
       -moz-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }

  .col-lg-7 {
    width: calc(100% / 12 * 7);
  }

  .offset-lg-7 {
    -webkit-margin-start: calc(100% / 12 * 7);
       -moz-margin-start: calc(100% / 12 * 7);
            margin-inline-start: calc(100% / 12 * 7);
  }

  .order-lg-7 {
    -webkit-box-ordinal-group: 8;
    -webkit-order: 7;
       -moz-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }

  .col-lg-8 {
    width: calc(100% / 12 * 8);
  }

  .offset-lg-8 {
    -webkit-margin-start: calc(100% / 12 * 8);
       -moz-margin-start: calc(100% / 12 * 8);
            margin-inline-start: calc(100% / 12 * 8);
  }

  .order-lg-8 {
    -webkit-box-ordinal-group: 9;
    -webkit-order: 8;
       -moz-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }

  .col-lg-9 {
    width: calc(100% / 12 * 9);
  }

  .offset-lg-9 {
    -webkit-margin-start: calc(100% / 12 * 9);
       -moz-margin-start: calc(100% / 12 * 9);
            margin-inline-start: calc(100% / 12 * 9);
  }

  .order-lg-9 {
    -webkit-box-ordinal-group: 10;
    -webkit-order: 9;
       -moz-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }

  .col-lg-10 {
    width: calc(100% / 12 * 10);
  }

  .offset-lg-10 {
    -webkit-margin-start: calc(100% / 12 * 10);
       -moz-margin-start: calc(100% / 12 * 10);
            margin-inline-start: calc(100% / 12 * 10);
  }

  .order-lg-10 {
    -webkit-box-ordinal-group: 11;
    -webkit-order: 10;
       -moz-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }

  .col-lg-11 {
    width: calc(100% / 12 * 11);
  }

  .offset-lg-11 {
    -webkit-margin-start: calc(100% / 12 * 11);
       -moz-margin-start: calc(100% / 12 * 11);
            margin-inline-start: calc(100% / 12 * 11);
  }

  .order-lg-11 {
    -webkit-box-ordinal-group: 12;
    -webkit-order: 11;
       -moz-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }

  .col-lg-12 {
    width: calc(100% / 12 * 12);
  }

  .offset-lg-12 {
    -webkit-margin-start: calc(100% / 12 * 12);
       -moz-margin-start: calc(100% / 12 * 12);
            margin-inline-start: calc(100% / 12 * 12);
  }

  .order-lg-12 {
    -webkit-box-ordinal-group: 13;
    -webkit-order: 12;
       -moz-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }

  .d-lg-block {
    display: block !important;
  }

  .d-lg-inline-block {
    display: inline-block !important;
  }

  .d-lg-flex {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -moz-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-lg-none {
    display: none !important;
  }

  .content .content__item .choose-plan__plans {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
       -moz-box-orient: horizontal;
       -moz-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 32px 0;
    gap: 34px;
  }

  .content .content__item .features__list {
    gap: 40px;
    max-width: calc(100% / 12 * 7);
  }

  .content .content__item .features__text {
    max-width: 50%;
  }
}

@media screen and (min-width: 1280px) {
  .container {
    max-width: 1224px;
  }

  .col-xl-0 {
    width: calc(100% / 12 * 0);
  }

  .offset-xl-0 {
    -webkit-margin-start: calc(100% / 12 * 0);
       -moz-margin-start: calc(100% / 12 * 0);
            margin-inline-start: calc(100% / 12 * 0);
  }

  .order-xl-0 {
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
       -moz-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }

  .col-xl-1 {
    width: calc(100% / 12 * 1);
  }

  .offset-xl-1 {
    -webkit-margin-start: calc(100% / 12 * 1);
       -moz-margin-start: calc(100% / 12 * 1);
            margin-inline-start: calc(100% / 12 * 1);
  }

  .order-xl-1 {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
       -moz-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }

  .col-xl-2 {
    width: calc(100% / 12 * 2);
  }

  .offset-xl-2 {
    -webkit-margin-start: calc(100% / 12 * 2);
       -moz-margin-start: calc(100% / 12 * 2);
            margin-inline-start: calc(100% / 12 * 2);
  }

  .order-xl-2 {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
       -moz-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }

  .col-xl-3 {
    width: calc(100% / 12 * 3);
  }

  .offset-xl-3 {
    -webkit-margin-start: calc(100% / 12 * 3);
       -moz-margin-start: calc(100% / 12 * 3);
            margin-inline-start: calc(100% / 12 * 3);
  }

  .order-xl-3 {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
       -moz-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }

  .col-xl-4 {
    width: calc(100% / 12 * 4);
  }

  .offset-xl-4 {
    -webkit-margin-start: calc(100% / 12 * 4);
       -moz-margin-start: calc(100% / 12 * 4);
            margin-inline-start: calc(100% / 12 * 4);
  }

  .order-xl-4 {
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
       -moz-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }

  .col-xl-5 {
    width: calc(100% / 12 * 5);
  }

  .offset-xl-5 {
    -webkit-margin-start: calc(100% / 12 * 5);
       -moz-margin-start: calc(100% / 12 * 5);
            margin-inline-start: calc(100% / 12 * 5);
  }

  .order-xl-5 {
    -webkit-box-ordinal-group: 6;
    -webkit-order: 5;
       -moz-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }

  .col-xl-6 {
    width: calc(100% / 12 * 6);
  }

  .offset-xl-6 {
    -webkit-margin-start: calc(100% / 12 * 6);
       -moz-margin-start: calc(100% / 12 * 6);
            margin-inline-start: calc(100% / 12 * 6);
  }

  .order-xl-6 {
    -webkit-box-ordinal-group: 7;
    -webkit-order: 6;
       -moz-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }

  .col-xl-7 {
    width: calc(100% / 12 * 7);
  }

  .offset-xl-7 {
    -webkit-margin-start: calc(100% / 12 * 7);
       -moz-margin-start: calc(100% / 12 * 7);
            margin-inline-start: calc(100% / 12 * 7);
  }

  .order-xl-7 {
    -webkit-box-ordinal-group: 8;
    -webkit-order: 7;
       -moz-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }

  .col-xl-8 {
    width: calc(100% / 12 * 8);
  }

  .offset-xl-8 {
    -webkit-margin-start: calc(100% / 12 * 8);
       -moz-margin-start: calc(100% / 12 * 8);
            margin-inline-start: calc(100% / 12 * 8);
  }

  .order-xl-8 {
    -webkit-box-ordinal-group: 9;
    -webkit-order: 8;
       -moz-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }

  .col-xl-9 {
    width: calc(100% / 12 * 9);
  }

  .offset-xl-9 {
    -webkit-margin-start: calc(100% / 12 * 9);
       -moz-margin-start: calc(100% / 12 * 9);
            margin-inline-start: calc(100% / 12 * 9);
  }

  .order-xl-9 {
    -webkit-box-ordinal-group: 10;
    -webkit-order: 9;
       -moz-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }

  .col-xl-10 {
    width: calc(100% / 12 * 10);
  }

  .offset-xl-10 {
    -webkit-margin-start: calc(100% / 12 * 10);
       -moz-margin-start: calc(100% / 12 * 10);
            margin-inline-start: calc(100% / 12 * 10);
  }

  .order-xl-10 {
    -webkit-box-ordinal-group: 11;
    -webkit-order: 10;
       -moz-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }

  .col-xl-11 {
    width: calc(100% / 12 * 11);
  }

  .offset-xl-11 {
    -webkit-margin-start: calc(100% / 12 * 11);
       -moz-margin-start: calc(100% / 12 * 11);
            margin-inline-start: calc(100% / 12 * 11);
  }

  .order-xl-11 {
    -webkit-box-ordinal-group: 12;
    -webkit-order: 11;
       -moz-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }

  .col-xl-12 {
    width: calc(100% / 12 * 12);
  }

  .offset-xl-12 {
    -webkit-margin-start: calc(100% / 12 * 12);
       -moz-margin-start: calc(100% / 12 * 12);
            margin-inline-start: calc(100% / 12 * 12);
  }

  .order-xl-12 {
    -webkit-box-ordinal-group: 13;
    -webkit-order: 12;
       -moz-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }

  .d-xl-block {
    display: block !important;
  }

  .d-xl-inline-block {
    display: inline-block !important;
  }

  .d-xl-flex {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -moz-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-xl-none {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .main-wrap[data-sale-badge="true"] .footer {
    bottom: 42px;
    padding: 15px;
  }

  .main-wrap[data-sale-badge="true"] .pdp_sale_badge {
    position: fixed;
    bottom: 0;
    z-index: 15;
  }
}

@media screen and (max-width: 767px) {
  .main-wrap button.button:disabled,
  .main-wrap a.button:disabled {
    pointer-events: none;
  }

  .main-wrap .footer .button {
    width: 100%;
  }

  .main-wrap .header__steps-item {
    display: none;
  }

  .main-wrap .header__steps-item.active {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
  }

  .content .content__item .choose-item__gallery {
    aspect-ratio: 1/1;
    border-radius: 6px;
    overflow: hidden;
    background-color: #EDF2F5;
  }

  .content .content__item .includes__list {
    padding-bottom: 24px;
  }

  .main-wrap .sidebar.open .sidebar__content {
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
    -webkit-transition-delay: 0.2s;
         -o-transition-delay: 0.2s;
            transition-delay: 0.2s;
  }

  .main-wrap .sidebar {
    padding-top: 130px;
  }

  .main-wrap .sidebar__content {
    -webkit-transform: translateY(100%);
        -ms-transform: translateY(100%);
            transform: translateY(100%);
    overflow-y: scroll;
  }

  .open .main-wrap .sidebar__content {
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
    -webkit-transition-delay: 0.2s;
         -o-transition-delay: 0.2s;
            transition-delay: 0.2s;
  }

  .details-popup__modal .button {
    width: 100%;
  }
}