*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}
.clearfix {
  zoom: 1;
}
.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
}
@-webkit-keyframes spin_reverse {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
}
@keyframes spin_reverse {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.form__row {
  padding: 0 0 1.33rem 0;
}
.form__row:last-child {
  padding-bottom: 0;
}
.form__row--center {
  text-align: center;
}
.form__columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.form__columns__item {
  padding: 0 0.56rem 0 0;
}
.form__columns__item:last-child {
  padding-right: 0;
}
.form__error {
  display: none;
  padding: 0 0 1em 0;
  color: red;
  font-size: 1rem;
  font-weight: 700;
}
.input {
  width: 100%;
  color: #e36116;
}
.input.error {
  color: red;
}
.input {
  margin: 1em 0;
}
.input__error-message {
  font-size: 0.88888889em !important;
  padding-bottom: 0;
  text-align: left;
  color: red;
  margin: 0.25em 0 0 !important;
  font-weight: 700;
  max-width: unset !important;
}
.input--text {
  position: relative;
}
.input--text label {
  color: #1a0d0d;
  font-weight: 400;
  font-family: 'Smelly Peach', Helvetica, Arial, sans-serif;
  display: block;
  text-transform: uppercase;
  margin-bottom: 0.5em;
  text-align: left;
}
.input--text label span {
  color: #e36116;
}
.input--text input,
.input--text textarea {
  width: 100%;
  font-family: 'Smelly Peach', Helvetica, Arial, sans-serif;
  font-weight: 400;
  line-height: 1;
  font-size: 1.5em;
  letter-spacing: 0.05em;
  display: block;
  padding: 0.25em 1em 0.25em;
  border-radius: 0.4em;
  background-color: #fff;
  border: 3px solid #000;
  -webkit-box-shadow: inset 5px 5px 13px 0 rgba(0, 0, 0, 0.2);
          box-shadow: inset 5px 5px 13px 0 rgba(0, 0, 0, 0.2);
  color: #e36116;
  -webkit-transition: border 0.3s ease;
  transition: border 0.3s ease;
}
@media (max-width : 650px) {
  .input--text input,
  .input--text textarea {
    font-size: 1.25em;
  }
}
.input--text input:focus,
.input--text textarea:focus,
.input--text input:active,
.input--text textarea:active {
  border-color: #e36116;
  outline: 0;
}
.input--text textarea {
  line-height: 18/16;
  display: block;
  padding-top: 1.375em;
  padding-bottom: 0.75em;
  max-width: 100%;
  min-width: 100%;
  resize: none;
}
.input--text.is-error label {
  color: #FF0000;
}
.input--text.is-error input,
.input--text.is-error textarea {
  border-color: #FF0000 !important;
}
.input--checkbox {
  line-height: 1.2;
  color: #1a0d0d;
  text-transform: none;
}
.input--checkbox input {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  display: none;
  visibility: hidden;
  opacity: 0;
}
.input--checkbox input:checked ~ .input--checkbox__label::after {
  opacity: 1;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}
.input--checkbox label {
  display: block;
  position: relative;
  text-align: left;
  padding-left: 40/18em;
}
.input--checkbox__label {
  display: inline-block;
  min-height: 26/18em;
}
.input--checkbox__label span {
  font-size: 1em;
  cursor: pointer;
}
.input--checkbox__label a {
  color: inherit;
  text-decoration: underline;
}
.input--checkbox__label a:hover {
  text-decoration: none;
}
.input--checkbox__label::after,
.input--checkbox__label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.input--checkbox__label::before {
  width: 26/18em;
  height: 26/18em;
  border-radius: 0.4em;
  background-color: #fff;
  border: 3px solid #000;
  -webkit-box-shadow: inset 5px 5px 13px 0 rgba(0, 0, 0, 0.2);
          box-shadow: inset 5px 5px 13px 0 rgba(0, 0, 0, 0.2);
}
.input--checkbox__label::after {
  width: 26/18em;
  height: 26/18em;
  background: url(../images/tick.png) no-repeat 50% 50%;
  background-size: 50%;
  opacity: 1;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
}
.input--checkbox.is-error .input--checkbox__label::before {
  -webkit-box-shadow: inset 0 0 0 1px #FF0000;
          box-shadow: inset 0 0 0 1px #FF0000;
}
.checkbox-wrapper {
  margin: 30/18rem 0;
}
@font-face {
  font-family: 'icons';
  src: url('../fonts/icons.eot?1');
  src: url('../fonts/icons.eot?1#iefix') format('embedded-opentype'), url('../fonts/icons.woff2?1') format('woff2'), url('../fonts/icons.woff?1') format('woff'), url('../fonts/icons.ttf?1') format('truetype'), url('../fonts/icons.svg?1#icons') format('svg');
  font-weight: normal;
  font-style: normal;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  @font-face {
    font-family: 'icons';
    src: url('../fonts/icons.svg?1') format('svg');
  }
}
[class^="icon-"]:before,
[class*=" icon-"]:before {
  font-family: "icons";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: 0.2em;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  line-height: 1em;
  margin-left: 0.2em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.icon-move-down:before {
  content: '\e800';
}
/* '' */
.icon-up-open:before {
  content: '\e801';
}
/* '' */
.icon-down-open:before {
  content: '\e802';
}
/* '' */
.icon-move-up:before {
  content: '\e803';
}
/* '' */
.icon-remove:before {
  content: '\e804';
}
/* '' */
.icon-flip:before {
  content: '\e806';
}
/* '' */
.icon-rotate:before {
  content: '\e807';
}
/* '' */
.icon-back:before {
  content: '\e808';
}
/* '' */
.icon-next:before {
  content: '\e809';
}
/* '' */
.icon-ok:before {
  content: '\e80b';
}
/* '' */
.icon-left-open-big:before {
  content: '\e810';
}
/* '' */
.icon-right-open-big:before {
  content: '\e811';
}
/* '' */
.icon-first:before {
  content: '\f100';
}
/* '' */
.icon-last:before {
  content: '\f101';
}
/* '' */
.icon-left:before {
  content: '\f104';
}
/* '' */
.icon-right:before {
  content: '\f105';
}
/* '' */
.icon-doc-text-inv:before {
  content: '\f15c';
}
/* '' */
h1,
h2,
h3,
h4,
h5 {
  font-family: 'Barlow Condensed', Helvetica, Arial, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
}
h1 {
  font-size: 4.61538462rem;
  line-height: 1;
}
h2 {
  font-size: 2.76923077rem;
  line-height: 1.11;
}
h3 {
  font-size: 1.66666667rem;
  line-height: 1.11;
}
.primary-color {
  color: #e36116;
}
@media only screen and (max-width: 960px) {
  h1 {
    font-size: 4rem;
  }
}
@media only screen and (max-width : 800px) {
  h1 {
    font-size: 3.6rem;
  }
}
@media (max-width : 650px) {
  h1 {
    font-size: 3rem;
  }
}
h3 {
  font-size: 1.66666667rem;
  line-height: 1.2;
}
@media (max-width : 650px) {
  h3 {
    font-size: 1.4rem;
  }
}
h4 {
  font-size: 1.4rem;
  font-weight: 400;
}
.next-wrapper {
  text-align: center;
}
.btn {
  font-weight: 400;
  font-family: 'Smelly Peach', Helvetica, Arial, sans-serif;
  line-height: 1;
  font-size: 1.2rem;
  text-decoration: none !important;
  text-align: center;
  text-transform: uppercase;
  min-width: 7.5em;
  min-height: 2.75em;
  outline: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 0.5em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  padding: 0.25em 1.5em 0.3em 1em;
  background: transparent;
  color: #000;
  text-shadow: 0.07em 0.07em 0 #fff;
  cursor: pointer;
  border: 0;
  border-radius: 0;
  letter-spacing: 0.04em;
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}
@media (max-width : 650px) {
  .btn {
    min-height: 2.25em;
    padding-left: 0.75em;
    padding-right: 1em;
  }
}
.btn::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: url(../images/btn.svg);
  background-size: 100% 100%;
}
.btn--third::before {
  background-image: url(../images/btn-third.svg);
}
.btn--second {
  font-size: 1rem;
  color: #1a0d0d;
  min-height: 2em;
  min-width: 6em;
  padding-right: 1em;
}
.btn--second::before {
  background-image: url(../images/btn-second.svg);
}
.btn img {
  position: relative;
  max-width: 1em !important;
}
.btn span {
  position: relative;
  z-index: 1;
}
.can-hover .btn {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}
.can-hover .btn:hover {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
.btn--lg {
  min-height: 2.2em;
  padding-top: 0.15em;
  padding-bottom: 0.15em;
  font-size: 1.7em;
}
.btn.is-loading {
  pointer-events: none;
}
.btn.is-loading img,
.btn.is-loading span {
  opacity: 0;
}
.btn.is-loading::after {
  content: "";
  width: 1em;
  height: 1em;
  border: 3px solid #fff;
  border-left-color: transparent;
  border-right-color: transparent;
  position: absolute;
  border-radius: 50%;
  -webkit-animation: 1s infinite spin;
          animation: 1s infinite spin;
  left: 50%;
  top: 50%;
  margin: -0.5em 0 0 -0.5em;
}
.btn[disabled] {
  opacity: 0.5;
  pointer-events: none;
}
.btn-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5em;
}
.btn-link {
  background: transparent;
  border: 0;
  padding: 0.2em;
  color: #e36116;
  font-family: 'Smelly Peach', Helvetica, Arial, sans-serif;
  text-decoration: underline;
  text-transform: uppercase;
  font-size: 1rem;
  outline: 0;
  cursor: pointer;
}
.btn-link:hover {
  text-decoration: none;
}
.responsive-video__inner {
  padding-bottom: 56.25%;
  position: relative;
}
.responsive-video video,
.responsive-video embed,
.responsive-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.highlight {
  position: relative;
  white-space: nowrap;
}
.highlight::before {
  content: "";
  position: absolute;
  top: 0;
  right: -0.75em;
  bottom: 0;
  left: -0.1em;
  z-index: -1;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.highlight--1::before {
  background-image: url(../images/highlight1.png);
}
.highlight--2::before {
  background-image: url(../images/highlight2.png);
}
.splide__container {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}
.splide__list {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}
.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}
.splide__pagination {
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  margin: 0;
  pointer-events: none;
}
.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  pointer-events: auto;
}
.splide:not(.is-overflow) .splide__pagination {
  display: none;
}
.splide__progress__bar {
  width: 0;
}
.splide {
  position: relative;
  visibility: hidden;
}
.splide.is-initialized,
.splide.is-rendered {
  visibility: visible;
}
.splide__slide {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}
.splide__slide img {
  vertical-align: bottom;
}
.splide__spinner {
  -webkit-animation: splide-loading 1s linear infinite;
          animation: splide-loading 1s linear infinite;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}
.splide__sr {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.splide__toggle.is-active .splide__toggle__play,
.splide__toggle__pause {
  display: none;
}
.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}
.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}
@-webkit-keyframes splide-loading {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(1turn);
            transform: rotate(1turn);
  }
}
@keyframes splide-loading {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(1turn);
            transform: rotate(1turn);
  }
}
.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -moz-user-select: none;
       user-select: none;
}
.splide__track--fade > .splide__list > .splide__slide {
  margin: 0 !important;
  opacity: 0;
  z-index: 0;
}
.splide__track--fade > .splide__list > .splide__slide.is-active {
  opacity: 1;
  z-index: 1;
}
.splide--rtl {
  direction: rtl;
}
.splide__track--ttb > .splide__list {
  display: block;
}
.splide__arrow {
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  border: 0;
  cursor: pointer;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  height: 1em;
  background: transparent;
  font-size: 4.5rem;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  opacity: 1;
  padding: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1em;
  z-index: 1;
}
.splide__arrow svg {
  fill: #231f20;
  height: 1em;
  width: 1em;
}
.splide__arrow:hover:not(:disabled) svg {
  fill: #e36116;
}
.splide__arrow:disabled {
  opacity: 0.3;
}
.splide__arrow:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}
.splide__arrow--prev {
  left: 1em;
}
.splide__arrow--prev svg {
  -webkit-transform: scaleX(-1);
      -ms-transform: scaleX(-1);
          transform: scaleX(-1);
}
.splide__arrow--next {
  right: 1em;
}
@media (max-width: 960px) {
  .splide__arrow {
    font-size: 2.5rem;
  }
  .splide__arrow--prev {
    left: -0.3em;
  }
  .splide__arrow--next {
    right: -0.3em;
  }
}
.splide.is-focus-in .splide__arrow:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}
.splide__pagination {
  bottom: 0.5em;
  left: 0;
  padding: 0 1em;
  position: absolute;
  right: 0;
  z-index: 1;
}
.splide__pagination__page {
  background: #ccc;
  border: 0;
  border-radius: 50%;
  display: inline-block;
  height: 8px;
  margin: 3px;
  opacity: 0.7;
  padding: 0;
  position: relative;
  -webkit-transition: -webkit-transform 0.2s linear;
  transition: -webkit-transform 0.2s linear;
  transition: transform 0.2s linear;
  transition: transform 0.2s linear, -webkit-transform 0.2s linear;
  width: 8px;
}
.splide__pagination__page.is-active {
  background: #fff;
  -webkit-transform: scale(1.4);
      -ms-transform: scale(1.4);
          transform: scale(1.4);
  z-index: 1;
}
.splide__pagination__page:hover {
  cursor: pointer;
  opacity: 0.9;
}
.splide__pagination__page:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}
.splide.is-focus-in .splide__pagination__page:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}
.splide__progress__bar {
  background: #ccc;
  height: 3px;
}
.splide__slide {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.splide__slide:focus {
  outline: 0;
}
@supports (outline-offset:-3px) {
  .splide__slide:focus-visible {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide__slide:focus-visible {
    border: 3px solid #0bf;
  }
}
@supports (outline-offset:-3px) {
  .splide.is-focus-in .splide__slide:focus {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide.is-focus-in .splide__slide:focus {
    border: 3px solid #0bf;
  }
  .splide.is-focus-in .splide__track > .splide__list > .splide__slide:focus {
    border-color: #0bf;
  }
}
.splide__toggle {
  cursor: pointer;
}
.splide__toggle:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}
.splide.is-focus-in .splide__toggle:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}
.splide__track--nav > .splide__list > .splide__slide {
  border: 3px solid transparent;
  cursor: pointer;
}
.splide__track--nav > .splide__list > .splide__slide.is-active {
  border: 3px solid #000;
}
.splide__arrows--rtl .splide__arrow--prev {
  left: auto;
  right: 1em;
}
.splide__arrows--rtl .splide__arrow--prev svg {
  -webkit-transform: scaleX(1);
      -ms-transform: scaleX(1);
          transform: scaleX(1);
}
.splide__arrows--rtl .splide__arrow--next {
  left: 1em;
  right: auto;
}
.splide__arrows--rtl .splide__arrow--next svg {
  -webkit-transform: scaleX(-1);
      -ms-transform: scaleX(-1);
          transform: scaleX(-1);
}
.splide__arrows--ttb .splide__arrow {
  left: 50%;
  -webkit-transform: translate(-50%);
      -ms-transform: translate(-50%);
          transform: translate(-50%);
}
.splide__arrows--ttb .splide__arrow--prev {
  top: 1em;
}
.splide__arrows--ttb .splide__arrow--prev svg {
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.splide__arrows--ttb .splide__arrow--next {
  bottom: 1em;
  top: auto;
}
.splide__arrows--ttb .splide__arrow--next svg {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}
.splide__pagination--ttb {
  bottom: 0;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  left: auto;
  padding: 1em 0;
  right: 0.5em;
  top: 0;
}
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 100%;
  font-size: 18px;
}
@media (max-width: 700px) {
  html {
    font-size: 16px;
  }
}
body {
  margin: 0;
  font-family: 'Barlow Condensed', Helvetica, Arial, sans-serif;
  height: 100%;
  background: #ffc120 url(../images/bg.png) 50% 0%;
}
@media (max-width: 960px) {
  body {
    background: #ffc120;
  }
}
h4 {
  font-size: 1.77777778rem;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 0.25em;
  line-height: 40/36;
}
h5 {
  font-size: 1rem;
  font-weight: 400;
  margin: 0.5em 0;
}
button {
  font-family: inherit;
  cursor: pointer;
  font-size: 1em;
}
@-webkit-keyframes error-blink {
  0% {
    -webkit-box-shadow: 0 0 3px 1px rgba(234, 37, 37, 0);
            box-shadow: 0 0 3px 1px rgba(234, 37, 37, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 3px 1px #ea2525;
            box-shadow: 0 0 3px 1px #ea2525;
  }
}
@keyframes error-blink {
  0% {
    -webkit-box-shadow: 0 0 3px 1px rgba(234, 37, 37, 0);
            box-shadow: 0 0 3px 1px rgba(234, 37, 37, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 3px 1px #ea2525;
            box-shadow: 0 0 3px 1px #ea2525;
  }
}
#app,
.app {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 60px;
}
.submit-error {
  text-align: center;
}
img {
  max-width: 100%;
}
.bg {
  background: url(../images/bg2.png) no-repeat 50% 50% / cover;
  height: 100%;
  width: 100%;
  position: relative;
}
.app-wrapper {
  position: relative;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  height: 100%;
  font-size: 16px;
}
@media (min-width: 960px) {
  .app-wrapper {
    min-height: 780px;
  }
}
.app-wrapper__header {
  width: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 70px;
          flex: 0 0 70px;
  height: 70px;
  position: relative;
}
.app-wrapper__header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: 1em;
  padding-left: 1em;
  background: #fff;
  position: relative;
  z-index: 1;
}
.app-wrapper__header::before {
  content: "";
  position: absolute;
  left: 50%;
  height: 100%;
  width: 100vw;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #fff;
  -webkit-box-shadow: 0 10px 10px 0 #a14c0e;
          box-shadow: 0 10px 10px 0 #a14c0e;
}
@media (max-width: 960px) {
  .app-wrapper__header::before {
    -webkit-box-shadow: 0 10px 10px 0 rgba(161, 76, 14, 0.3);
            box-shadow: 0 10px 10px 0 rgba(161, 76, 14, 0.3);
  }
}
.app-wrapper__header::after {
  position: absolute;
  top: 100%;
  left: 50%;
  height: 15px;
  width: 100vw;
  margin-top: -1px;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(../images/header-shape.png) 50% 0 repeat-x;
  background-size: auto 15px;
}
@media (min-width: 960px) {
  .app-wrapper__header::after {
    content: "";
  }
}
.app-wrapper__header .hamburger {
  margin: 0;
  z-index: 10;
}
.app-wrapper__header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
.app-wrapper__header__logo .logo {
  display: block;
  max-width: 180px;
  margin-bottom: -60px;
  z-index: 2;
}
@media (max-width: 960px) {
  .app-wrapper__header {
    position: absolute;
    z-index: 2;
    height: 3em;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .app-wrapper__header__logo {
    max-width: 120px;
  }
  .app-wrapper__header__logo .logo {
    margin-left: -14px;
    margin-bottom: -33px;
    max-width: 100px;
  }
  .app-wrapper__header__logo h2 {
    display: none;
  }
}
.app-wrapper__header__nav {
  list-style: none;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  font-size: 22px;
  text-transform: uppercase;
}
.app-wrapper__header__nav a {
  text-decoration: none;
  color: #000;
}
@media (max-width: 960px) {
  .app-wrapper__header__nav {
    gap: 20px;
    font-size: 16px;
    margin-top: 0.5em;
    margin-bottom: 0;
  }
}
.save-mobile {
  position: absolute;
  bottom: 100%;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 2px;
}
@media (min-width: 960px) {
  .save-mobile {
    display: none;
  }
}
.editor {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 0;
  pointer-events: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-height: 50rem;
  margin: auto 0;
}
.editor.is-active {
  opacity: 1;
  pointer-events: auto;
}
.editor__mobile-save {
  display: none;
  position: absolute;
  top: 0.2em;
  right: 0.2em;
  z-index: 3;
}
@media (max-width: 960px) {
  .editor__mobile-save {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.editor__wrapper {
  width: 66%;
  max-width: 680px;
  padding-bottom: 4vh;
  position: relative;
}
.editor__canvas {
  margin-left: auto;
  padding-left: 7.6875em;
  padding-right: 2.25em;
  max-width: 47.5em;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
}
@media (min-width: 960px) and (min-height: 650px) and (max-width: 1300px) {
  .editor__canvas {
    padding-right: 4vw;
    max-width: calc(40em + 4vw);
  }
}
.editor__canvas.is-preview-mode::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.editor__elements {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.editor__elements__inner {
  padding: 0;
  margin-bottom: 1.11111111rem;
}
.editor__elements__submit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.editor__elements__submit .btn span {
  font-size: 1.3em;
}
@media (min-width: 961px) {
  .editor__elements {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 0 1em 4vh 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    max-width: 42rem;
    max-height: 50rem;
  }
  .editor__elements__inner {
    position: relative;
  }
}
.editor__elements__step .layout-header-desktop {
  display: block;
}
.editor__elements__step .layout-header-mobile {
  display: none;
}
.editor__elements__step--form .elements-box--success p {
  line-height: 1.4;
  max-width: 21em;
}
@media (min-width: 961px) {
  .editor__elements__step--form {
    max-width: 31em;
  }
  .editor__elements__step--design {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .editor__elements__step--design .editor__elements__inner {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .editor__elements__step--design .elements-box {
    height: 100%;
  }
  .editor__elements__step--design .elements-box__grid {
    height: 100%;
  }
  .editor__elements__step--layout {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .editor__elements__step--layout .editor__elements__inner {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .editor__elements__step--layout .elements-box {
    height: 100%;
  }
  .editor__elements__step .elements-box__layout-wrapper {
    max-height: 80px;
  }
  .editor__elements__step .elements-box__layout-sizer {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: auto;
  }
}
@media (min-width: 961px) and (max-height: 720px) {
  .editor__elements__step--form .editor__elements__step__nb {
    padding-top: 0;
  }
  .editor__elements__step--design .editor__elements__step__nb {
    padding-top: 0;
  }
  .editor__elements__step--design .elements-box__tabs button img {
    width: 7.25vh;
    height: 7.25vh;
  }
}
.editor__elements__step__nb {
  color: rgba(155, 77, 32, 0.4);
  font-weight: 400;
  font-family: 'Smelly Peach', Helvetica, Arial, sans-serif;
  margin: 0;
  padding: 0.5em 1.11111111rem;
  font-size: 1.22222222rem;
  text-transform: uppercase;
}
.editor__elements__step__nb b {
  font-weight: 400;
  color: #1a0d0d;
  font-size: 28/22em;
}
.editor__elements__popup {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #f3f3ea;
  z-index: 2;
  padding: 2.375em 1.25em 1.25em 2.5em;
  color: #e36116;
}
.editor__elements__popup h2 {
  color: #fec980;
  line-height: 1.125;
  font-size: 3.125em;
  max-width: 430px;
}
.editor__elements__popup h3 {
  color: #e36116;
  font-size: 1.1875em;
  margin-top: -0.75em;
  margin-bottom: 2em;
  max-width: 430px;
}
.editor__elements__popup p {
  line-height: 1.33333333;
  font-size: 1.125em;
  max-width: 330px;
}
.editor__elements__popup__form {
  max-width: 420em;
  padding-right: 1.25em;
}
.editor__elements__popup__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100%;
}
.editor__elements__popup__content {
  margin-top: auto;
  margin-bottom: auto;
}
.editor__obj-tool {
  position: absolute;
  top: 50%;
  right: 100%;
  width: 5.55555556em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  list-style: none;
  gap: 0.44444444em;
  padding: 0 0 0.5em;
  margin-right: 1rem;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: opacity 0.2s ease 0s;
  transition: opacity 0.2s ease 0s;
  z-index: 1;
  font-family: 'Smelly Peach', Helvetica, Arial, sans-serif;
  opacity: 0;
}
.is-loaded .editor__obj-tool {
  opacity: 1;
}
.is-preview-mode .editor__obj-tool {
  opacity: 0 !important;
}
.editor__obj-tool li {
  display: block;
  text-align: center;
  position: relative;
  opacity: 1;
  padding-bottom: 100%;
}
.editor__obj-tool li.is-disabled {
  opacity: 0.5;
}
.editor__obj-tool li.is-disabled::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.editor__obj-tool button {
  position: absolute;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5em;
  padding: 0 0.5em 0 0;
  border: 0;
  background: url(../images/tool-ico-bg.png) no-repeat 50% 50% / contain;
  background-size: 100% 100%;
  outline: 0;
  color: #1a0d0d;
  font-size: 1em;
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
  text-transform: uppercase;
  font-weight: 700;
}
.editor__obj-tool button img {
  max-width: 2.5em;
}
.editor__obj-tool button img,
.editor__obj-tool button i,
.editor__obj-tool button span {
  position: relative;
}
body.nont-ouch .editor__obj-tool button:hover i {
  color: #000;
}
.editor__obj-tool button i {
  display: block;
  margin: 0 auto 0.2em;
  font-size: 1.75em;
  color: #000;
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}
.editor__obj-tool button i::before {
  margin: 0;
}
.canvas-decor {
  position: relative;
}
@media (min-width: 961px) {
  .canvas-decor::after {
    background: url(../images/decor-bird2.png) no-repeat 50% 50% / contain;
    width: 145px;
    height: 146px;
    position: absolute;
    pointer-events: none;
    right: 0;
    bottom: 0;
    -webkit-transform: translate(80%, 20%);
        -ms-transform: translate(80%, 20%);
            transform: translate(80%, 20%);
  }
  .is-loaded .canvas-decor::after {
    content: "";
  }
}
.canvas-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  margin-left: auto;
}
@media (min-width: 961px) {
  .canvas-wrapper::before,
  .canvas-wrapper::after {
    position: absolute;
    background: url(../images/tape.png) no-repeat 50% 50% / contain;
    width: 79px;
    height: 84px;
    z-index: 2;
    pointer-events: none;
  }
  .canvas-wrapper.is-loaded::before,
  .canvas-wrapper.is-loaded::after {
    content: "";
  }
  .canvas-wrapper::before {
    right: 0;
    top: 0;
    -webkit-transform: translate(30%, -30%);
        -ms-transform: translate(30%, -30%);
            transform: translate(30%, -30%);
  }
  .canvas-wrapper::after {
    left: 0;
    bottom: 0;
    -webkit-transform: translate(-30%, 30%) rotate(180deg);
        -ms-transform: translate(-30%, 30%) rotate(180deg);
            transform: translate(-30%, 30%) rotate(180deg);
  }
}
.canvas-container {
  border-radius: 10px;
  overflow: hidden;
  -webkit-box-shadow: 0 3px 10px 0px #d59e1d;
          box-shadow: 0 3px 10px 0px #d59e1d;
}
.elements-box {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.elements-box__title {
  line-height: 1.55;
}
.elements-box__title-tab {
  padding: 10px 1em;
  text-align: center;
}
.elements-box__title-tab__mobile-btn {
  display: none;
}
.elements-box__title-tab h2 {
  font-size: 30px;
  text-transform: uppercase;
  margin-top: 0;
  position: relative;
  z-index: 2;
}
.elements-box__title-tab h2 + p {
  text-transform: uppercase;
  font-size: 1rem;
}
.elements-box__title-tab__inputs {
  max-width: 28.125em;
  margin: 2.5em auto;
}
@media (max-width: 960px) {
  .elements-box__title-tab {
    padding: 0 0 10px;
  }
  .elements-box__title-tab > .elements-box__title-tab__mobile-btn {
    text-align: left;
  }
  .elements-box__title-tab__mobile-btn {
    display: block;
  }
  .elements-box__title-tab__mobile-btn .btn--second {
    font-size: 1.2em;
    min-height: 3em;
  }
  .elements-box__title-tab__content {
    display: none;
  }
  .elements-box__title-tab__content.is-title-popup {
    position: fixed;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 10;
    padding: 2em;
  }
  .elements-box__title-tab__color {
    overflow: auto;
    margin-right: -2em;
    margin-left: -2em;
    padding-left: 2em;
    margin-bottom: 1.5em;
  }
  .elements-box__title-tab__inputs {
    margin: 1em auto;
  }
}
.elements-box__name {
  color: #fec980;
  padding-bottom: 1.75em;
}
@media (min-width: 961px) {
  .elements-box--scrollable {
    overflow: auto;
    max-height: calc(100vh - 10rem);
  }
}
.elements-box__name-mobile {
  display: none;
}
.elements-box__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.elements-box__tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  list-style: none;
  gap: 3px;
  padding: 0 0 1.2em;
  margin: 0;
  width: 4.66666667rem;
}
.elements-box__tabs button {
  display: block;
  width: 100%;
  padding: 0.25em 0.25em 0.75em 0.75em;
  border: 0;
  color: #1a0d0d;
  background: transparent;
  font-size: 1em;
  outline: 0;
  text-transform: uppercase;
  font-weight: 700;
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
  position: relative;
}
.elements-box__tabs button[disabled] {
  opacity: 0.5;
  cursor: default;
  pointer-events: none;
}
.elements-box__tabs button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url(../images/tab-bg.png) no-repeat;
  background-size: 100% 100%;
  opacity: 0.5;
  -webkit-transition: opacity 0.2s ease 0s;
  transition: opacity 0.2s ease 0s;
}
.elements-box__tabs button i,
.elements-box__tabs button span,
.elements-box__tabs button img {
  position: relative;
}
.elements-box__tabs button img {
  width: 3rem;
  height: 3rem;
  display: block;
  margin: 0 auto;
}
body.non-touch .elements-box__tabs button:hover::before {
  opacity: 1;
}
.elements-box__tabs button.is-active::before {
  opacity: 1;
}
.elements-box__tabs button i {
  display: block;
  margin: 0 auto 0.2em;
  font-size: 1.75em;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.2);
}
.elements-box__tabs button i::before {
  margin: 0;
}
.elements-box__nav {
  height: 90px;
  margin-top: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.elements-box__nav .btn span {
  min-width: 0;
  padding-left: 1.25em;
  padding-right: 1.25em;
}
@media (max-width : 650px) {
  .elements-box__nav .btn::before,
  .elements-box__nav .btn::after {
    min-height: 2.1em;
  }
  .elements-box__nav .btn span {
    min-height: 2.1em;
    padding-left: 1em;
    padding-right: 1em;
  }
  .elements-box__nav .btn--back span {
    padding-left: 0.5em;
    padding-right: 0.5em;
  }
}
.elements-box__label {
  margin: 0;
  font-size: 1em;
}
.elements-box__inputs {
  padding: 0 0.75em;
  max-width: 25em;
  margin-bottom: 1.25em;
}
.elements-box__inputs__error {
  color: red;
  margin-top: 0.3125em;
  font-weight: 300;
}
.elements-box__team-name__btn {
  display: none;
}
.elements-box__input {
  margin: 0.3125em 0;
}
.elements-box__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-height: 100%;
  height: 100%;
  background: #fff;
  padding: 10px 5px;
  border-radius: 0 1em 1em 1em;
  -webkit-box-shadow: 3px 3px 0 2px #f1b528;
          box-shadow: 3px 3px 0 2px #f1b528;
}
.elements-box__scroll {
  overflow: auto;
}
.elements-box__obj {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 5px;
  gap: 0.2em;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.__vuescroll .elements-box__obj {
  padding-right: 15px;
}
.elements-box__obj__item {
  position: relative;
}
.elements-box__obj button {
  width: 4rem;
  height: 4rem;
  padding: 0.27777778rem;
  background: transparent;
  border: 0;
  cursor: pointer;
  outline: 0;
  border-radius: 0.5em;
}
.elements-box__obj button img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  margin-left: auto;
  margin-right: auto;
}
.elements-box__obj button:hover {
  -webkit-box-shadow: inset 0 0 0 2px #e36116;
          box-shadow: inset 0 0 0 2px #e36116;
}
.elements-box__obj button.is-selected {
  -webkit-box-shadow: inset 0 0 0 1px #e36116;
          box-shadow: inset 0 0 0 1px #e36116;
}
.elements-box__obj--round {
  gap: 5px;
}
.elements-box__obj--round .elements-box__obj__item button {
  border-radius: 5em;
  border: 2px solid #000;
  padding: 2px;
  overflow: hidden;
  -webkit-box-shadow: inset 0 0 0 2px #fff;
          box-shadow: inset 0 0 0 2px #fff;
}
@media (min-width: 960px) {
  .elements-box__obj--round .elements-box__obj__item button {
    width: 74px;
    height: 74px;
  }
}
.elements-box__obj--round .elements-box__obj__item button img {
  border-radius: 5em;
  overflow: hidden;
}
.elements-box__obj--round .elements-box__obj__item button:hover {
  border-color: #e36116;
}
.elements-box__obj--round .elements-box__obj__item button.is-selected {
  border-color: #e36116;
}
.elements-box__color__mobile {
  display: none;
}
.elements-box__layout-sizer {
  margin: 1.11111111rem 0 0;
  position: relative;
}
.elements-box__layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
}
.elements-box__layout__item {
  padding: 4px;
}
.elements-box__layout__item button {
  width: 5.77777778em;
  height: 6.77777778em;
  background: #fff;
  border: 1px solid #e7e7e7;
  cursor: pointer;
  outline: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.elements-box__layout__item button img {
  display: block;
  max-width: 100%;
  max-height: 100%;
}
.elements-box__layout__item button.is-selected {
  border-color: #e36116;
}
.modal-bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(4, 26, 62, 0.6);
  z-index: 12;
}
.arrow-info-mobile {
  margin-right: 1em;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.875em;
  text-transform: uppercase;
  color: #b6b6b6;
}
.arrow-info-mobile i {
  font-size: 0.7em;
}
.arrow-info-mobile i::before {
  margin-right: 0;
  margin-left: 0.75em;
}
.arrow-info {
  margin-right: 1em;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
  color: #b6b6b6;
}
@media (max-width : 650px) {
  .arrow-info {
    display: none;
  }
}
.arrow-info i {
  font-size: 0.7em;
}
.arrow-info i::before {
  margin-right: 0;
  margin-left: 0.75em;
}
.modal {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 98%;
  background: #fff;
  border-radius: 10px;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-box-shadow: 0 5px 2px 0 rgba(172, 172, 172, 0.18);
          box-shadow: 0 5px 2px 0 rgba(172, 172, 172, 0.18);
}
.modal__content {
  overflow: auto;
  max-height: 70vh;
  padding: 1em;
}
.modal__content a {
  color: #e36116;
  text-decoration: none;
}
.modal__content a::before {
  margin-right: 0.5em;
  margin-left: 0;
}
.modal__content a:hover {
  text-decoration: underline;
}
.modal h2,
.modal h3,
.modal h4 {
  font-family: 'Smelly Peach', Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  font-weight: 400;
}
.modal h3 {
  color: #e36116;
  font-size: 1em;
  margin: 0;
}
.modal h2 {
  color: #e36116;
  font-size: 3.22222222rem;
  margin: 0;
}
.modal p {
  font-size: 1.94444444rem;
  text-transform: uppercase;
}
.modal h4 {
  color: #e36116;
  font-size: 1.375em;
  max-width: 17em;
  margin-bottom: 0.5em;
}
@media (max-width : 650px) {
  .modal h4 {
    font-size: 1.125em;
  }
}
.modal__header__right {
  margin-left: auto;
}
.modal__header__right a {
  color: #e36116;
  text-decoration: none;
}
.modal__header__right a::before {
  margin-right: 0.5em;
  margin-left: 0;
}
.modal__header__right a:hover {
  text-decoration: underline;
}
.modal__header__tabs {
  -ms-flex-item-align: end;
      align-self: flex-end;
  margin-bottom: -1.5em;
}
.modal__header__tab {
  padding: 1em 1.5em;
  background: transparent;
  border: 0;
  color: #e36116;
  font-weight: 700;
  outline: 0;
}
.modal__header__tab.is-active {
  background: #fff;
}
@media (max-width : 650px) {
  .modal__header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: left;
  }
  .modal__header > div {
    width: 100%;
  }
  .modal__header__right {
    margin-top: 1em;
  }
  .modal__header h2 {
    text-align: left;
    font-size: 1.65em;
  }
  .modal__header__tab {
    padding: 0.75em 1em;
  }
  .modal__header__tabs {
    margin-bottom: -1em;
  }
}
.modal__footer {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.modal__footer__center {
  width: 100%;
  text-align: center;
}
.modal__footer__center a {
  margin-top: 0.4em;
  margin-bottom: 0.4em;
}
.modal__footer__left {
  margin-right: auto;
}
@media (max-width : 650px) {
  .modal__footer__left .btn,
  .modal__footer__right .btn {
    min-width: 5em;
    font-size: 1rem;
  }
}
.modal__footer__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.modal img {
  max-width: 100%;
}
.modal__full {
  padding: 1.5em 2em;
}
@media (max-width : 650px) {
  .modal__full {
    padding: 1em;
  }
}
.modal__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #000;
}
.modal__text__left,
.modal__text__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 50%;
  padding: 1.5em 2em;
}
.modal__text__left {
  background: #f3f3f3;
  position: relative;
}
.modal__text__left--image {
  padding: 0;
}
@media (max-width : 650px) {
  .modal__text {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .modal__text__left,
  .modal__text__right {
    width: 100%;
    padding: 1em;
  }
  .modal__text__left--image {
    padding: 0;
  }
}
.modal p {
  font-size: 1.125em;
  margin: 1em 0;
}
@media (max-width: 960px) {
  .modal p {
    font-size: 1em;
  }
}
.instruction-modal {
  max-width: 54.44444444rem;
  color: #1a0d0d;
  text-align: center;
  width: 90%;
  background: url(../images/decor-start-dino.png) no-repeat 0% 50%, url(../images/decor-start-bird.png) no-repeat 95% 10% #fff;
  background-size: 20%, 18%;
}
@media (min-width: 960px) {
  .instruction-modal .modal__content {
    max-height: 90vh;
  }
}
.instruction-modal .logo {
  max-width: 15.55555556rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.instruction-modal p {
  max-width: 23.33333333em;
  margin-left: auto;
  margin-right: auto;
  font-size: 1rem;
  text-transform: none;
}
.instruction-modal h2 {
  margin: 0.25em auto 0.5em;
  max-width: 8.69565217em;
  font-size: 2.66666667em;
}
.instruction-modal__btn {
  margin-top: 1.7em;
  margin-bottom: 1em;
}
@media (max-width : 650px) {
  .instruction-modal h2 {
    font-size: 2rem;
  }
  .instruction-modal .modal__content {
    max-height: 85vh;
  }
}
.shirt-alert {
  color: red;
  text-align: center;
}
.thanks-modal {
  max-width: 40.75em;
}
.thanks-modal .modal__content {
  background: #fff url(../images/thanks.jpg) no-repeat 50% 0;
  background-size: 100%;
  max-height: none;
  overflow: unset;
  text-align: center;
  padding: 0 1.5em 1.5em;
}
.thanks-modal__header {
  text-align: center;
  max-width: 27.5em;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1em;
}
.thanks-modal__header h3 {
  margin-top: 0.25em;
}
.thanks-modal p {
  max-width: 27.5em;
  margin-left: auto;
  margin-right: auto;
}
.thanks-modal__badge {
  width: 50%;
  margin: 0 auto 1em;
  max-width: 220px;
}
.thanks-modal__badge img {
  margin-top: -3em;
}
.custom-text-mobile {
  display: none;
}
@media (min-width: 960px) and (max-height: 650px) {
  .app-wrapper {
    font-size: 2.5vh;
  }
}
@media (max-width: 960px) {
  .editor {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .editor__obj-tool {
    top: auto;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
    margin: 0;
    margin-bottom: 0.25em;
    width: 3.7em;
  }
  .editor__obj-tool button {
    padding-top: 0.75em;
    padding-bottom: 0.75em;
    font-size: 0.6em;
    width: 100%;
    border: 0;
  }
  .editor__obj-tool button i {
    font-size: 1.75em;
  }
  .editor__wrapper {
    width: 100%;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding-bottom: 144px;
  }
  .editor__wrapper::before,
  .editor__wrapper::after {
    display: none;
  }
  .editor__canvas {
    padding: 98px 10px 4px 64px;
  }
  .editor__elements {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 84px;
    max-height: 84px;
  }
  .editor__elements__inner {
    padding: 0;
    margin-bottom: 0;
  }
  .editor__elements__step {
    height: 100%;
  }
  .editor__elements__step--layout .layout-header-desktop {
    display: none;
  }
  .editor__elements__step--layout .layout-header-mobile {
    display: block;
  }
  .editor__elements__step--layout .elements-box__title {
    background: #f3f3f3;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 100%;
    height: 3em;
    padding: 0 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .editor__elements__step--layout h5 {
    display: none;
  }
  .editor__elements__step--layout h4 {
    font-size: min(5vw, 25px);
    margin-bottom: 0;
  }
  .editor__elements__step--layout h4 br {
    display: none;
  }
  .editor__elements__step--layout .editor__elements__submit {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: absolute;
    right: 0;
    bottom: 100%;
    height: 3em;
  }
  .editor__elements__step--layout .editor__elements__submit .btn {
    min-height: 2.25em;
  }
  .editor__elements__step--layout .elements-box__layout-size {
    margin-top: -1em;
    height: 5em;
  }
  .editor__elements__step--layout .elements-box__layout {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 0 !important;
    padding-bottom: 10px;
    height: calc(5em + 10px);
  }
  .editor__elements__step--layout .elements-box__layout__item {
    width: auto;
  }
  .editor__elements__step--layout .elements-box__layout__item button {
    width: 5em;
    height: 4.5em;
  }
  .editor__elements__step--layout .elements-box__layout__item button img {
    -o-object-fit: cover;
       object-fit: cover;
  }
  .two-lines .editor__elements__step--layout .elements-box__layout-size {
    height: 9em;
  }
  .two-lines .editor__elements__step--layout .elements-box__layout {
    margin-top: 0;
    height: calc(8.5em + 10px);
  }
  .two-lines .editor__elements__step--layout .elements-box__layout__item button {
    width: 7em;
    height: 8em;
  }
  .editor__elements__step--design h4 {
    display: none;
  }
  .editor__elements__step--design .editor__elements__inner {
    background: #fff;
    height: 100%;
  }
  .editor__elements__step--form {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #FFF;
    z-index: 12;
    padding: 1rem;
    max-height: 100vh;
    overflow: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .editor__elements__step--form .editor__elements__submit {
    display: block;
  }
  .editor__elements__step--form .elements-box {
    padding: 0;
  }
  .editor__elements__name,
  .editor__elements__submit {
    display: none;
  }
  .editor__elements.two-lines {
    height: 156px;
    max-height: 156px;
  }
  .editor__elements__popup {
    position: fixed;
    padding: 2.375em 1.25em 3em 1.25em;
    overflow: auto;
  }
  .editor__elements__popup h2 {
    font-size: 1.75em;
  }
  .editor__elements__popup h3 {
    margin-bottom: 0.5em;
  }
  .editor__elements__popup p {
    font-size: 1em;
  }
  .editor__elements__popup__inner {
    min-height: 100%;
  }
  .editor__elements__popup .elements-box__nav {
    background: #f3f3ea;
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
  }
  .elements-box {
    padding: 10px 0 0 10px;
    max-height: inherit !important;
    height: inherit;
  }
  .elements-box__grid {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
  .elements-box__content {
    padding: 0;
    border-radius: unset;
    -webkit-box-shadow: unset;
            box-shadow: unset;
  }
  .elements-box__layout {
    margin-top: 0;
    padding-top: 0;
  }
  .elements-box__layout::before {
    display: none;
  }
  .elements-box__nav {
    position: absolute;
    bottom: 100%;
    right: 0;
    left: 0;
    height: min(15vw, 66px);
  }
  .elements-box__name {
    display: none;
  }
  .elements-box__obj {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 0 !important;
    padding-bottom: 10px;
    height: calc(4em + 10px);
  }
  .two-lines .elements-box__obj {
    height: 146px;
    -ms-flex-line-pack: start;
        align-content: flex-start;
  }
  .elements-box__obj button {
    width: 4em;
    height: 4em;
    padding: 0.5em;
    border-bottom: 0;
  }
  .elements-box__tabs {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: auto;
    right: 0;
    top: auto;
    left: 0;
    bottom: 100%;
    padding-bottom: 0;
    position: absolute;
    font-size: min(4.4vw, 19px);
  }
  .elements-box__tabs li {
    width: 16.66666667%;
  }
  .elements-box__tabs li:last-child {
    border-right: 0;
  }
  .elements-box__tabs button {
    padding: 0em 0.25em 0.25em;
  }
  .elements-box__tabs button i {
    margin: 0;
  }
  .elements-box__tabs button::before {
    background: none;
  }
  .elements-box__tabs button span {
    font-size: 0.75em;
    margin-top: -0.5em;
    display: block;
  }
  .elements-box__tabs button img {
    width: 12vw;
    max-width: 70px;
  }
  .elements-box__tabs button.is-active::before {
    border-radius: 4px 4px 0 0;
    background: #fff;
  }
  .canvas-wrapper {
    margin-left: auto;
    margin-right: auto;
  }
  .custom-text__btn {
    display: block;
  }
  .select-color li {
    padding: 4px;
  }
  .select-color__btn {
    width: min(2em, 7vw);
    height: min(2em, 7vw);
  }
}
.name-alert {
  text-align: center;
  max-width: 40em;
  padding: 2.5em 1em;
  background: #fff;
}
.show-more {
  text-decoration: underline;
  color: #e36116;
  cursor: pointer;
}
.show-more:hover {
  text-decoration: none;
}
.editor-header-style {
  margin: 0 0 2em;
  color: #1a0d0d;
  font-family: 'Smelly Peach', Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  font-size: 1em;
  font-weight: 400;
}
.editor-header-style span {
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.editor-header-style strong {
  font-weight: 400;
  display: block;
  font-size: 2.5em;
  margin-top: 0.15em;
  line-height: 1;
}
.close-alert {
  text-align: center;
  max-width: 40em;
  padding: 2.5em 1em;
}
.close-alert .editor-header-style {
  margin-left: auto;
  margin-right: auto;
  max-width: 36em;
}
.close-alert .btn {
  margin-top: 0.2em;
  margin-bottom: 0.5em;
}
@media (max-width : 650px) {
  .close-alert .editor-header-style strong {
    font-size: 1.5em;
  }
  .close-alert .btn-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.loader {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  max-width: 21.875em;
  padding: 0.5em;
  background: #fff;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.loader__header {
  text-align: center;
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  font-size: 1.25em;
  margin-bottom: 0.5em;
  color: #e36116;
}
.progress-bar {
  overflow: hidden;
  background: rgba(0, 0, 0, 0.05);
}
.progress-bar__inner {
  width: 100%;
  height: 1em;
  -webkit-transform: translate3d(-100%, 0, 0);
          transform: translate3d(-100%, 0, 0);
  background: #e36116;
  -webkit-transition: tranform 0.1s linear;
  transition: tranform 0.1s linear;
}
.preview {
  display: -ms-grid;
  display: grid;
  position: relative;
}
@media (min-width: 651px) {
  .preview {
    -ms-grid-columns: 45% 1fr;
    grid-template-columns: 45% 1fr;
  }
}
.preview__more {
  margin-top: 1.5em;
}
.preview__more p {
  margin: 0.5em auto !important;
}
.preview h2 {
  font-family: 'Smelly Peach', Helvetica, Arial, sans-serif;
  color: #e36116;
  font-size: 2.66666667rem;
  margin: 0;
}
@media (max-width: 960px) {
  .preview h2 {
    font-size: 2rem;
  }
}
.preview__logo {
  max-width: 10.55555556rem;
  margin: -4.5rem auto 1rem;
}
@media (max-width: 960px) {
  .preview__logo {
    display: none;
  }
}
.preview__col {
  padding: 1em;
  position: relative;
  z-index: 2;
}
.preview__col--poster {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 960px) {
  .preview__col--poster {
    padding: 2.4em;
  }
}
.preview__poster {
  position: relative;
}
.preview__poster::before,
.preview__poster::after {
  content: "";
  position: absolute;
  background: url(../images/tape.png) no-repeat 50% 50% / contain;
  width: 79px;
  height: 84px;
}
@media (max-width: 960px) {
  .preview__poster::before,
  .preview__poster::after {
    width: 45px;
    height: 55px;
  }
}
.preview__poster::before {
  right: 0;
  top: 0;
  -webkit-transform: translate(30%, -30%);
      -ms-transform: translate(30%, -30%);
          transform: translate(30%, -30%);
}
.preview__poster::after {
  left: 0;
  bottom: 0;
  -webkit-transform: translate(-30%, 30%);
      -ms-transform: translate(-30%, 30%);
          transform: translate(-30%, 30%);
  z-index: 4;
}
.preview__poster img {
  display: block;
  max-height: 75vh;
  max-width: min(100%, 550px);
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid #000;
  -webkit-box-shadow: 0px 3px 9px 0px rgba(55, 47, 40, 0.38);
          box-shadow: 0px 3px 9px 0px rgba(55, 47, 40, 0.38);
}
.preview__poster-info {
  padding: 1em;
  font-size: 1.11111111rem;
  position: relative;
}
.preview__poster-info span {
  display: block;
  color: #e36116;
  font-family: 'Smelly Peach', Helvetica, Arial, sans-serif;
  font-weight: 400;
}
.preview__poster-info__title {
  font-size: 36/20em;
}
.preview__poster-info::before,
.preview__poster-info::after {
  content: "";
  position: absolute;
  max-width: 273px;
  width: 80%;
  height: 3px;
  background: url(../images/line-1.png) no-repeat 50% 50%;
  background-size: 100% 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
.preview__poster-info::before {
  top: 0;
}
.preview__poster-info::after {
  bottom: 0;
  -webkit-transform: translateX(-50%) scale(-1, -1);
      -ms-transform: translateX(-50%) scale(-1, -1);
          transform: translateX(-50%) scale(-1, -1);
}
@media (max-width : 650px) {
  .preview {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .preview__col p:first-child {
    display: none;
  }
  .preview__poster img {
    max-height: 40vh;
  }
  .preview__poster-info {
    display: none;
  }
}
.preview p:first-child {
  margin-top: 0;
}
.preview__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1em;
  margin: 1em 0;
}
.tracking-iframe {
  display: none;
}
.intro {
  max-width: 54.44444444rem;
  width: 90%;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 10px;
  text-align: center;
  margin: auto;
  -webkit-box-shadow: 0px 7px 13px 0px rgba(55, 47, 40, 0.38);
          box-shadow: 0px 7px 13px 0px rgba(55, 47, 40, 0.38);
  position: relative;
}
@media (max-width: 960px) {
  .intro {
    margin-top: 4rem;
  }
}
.intro h3 {
  margin-top: 0;
  margin-bottom: 0.25em;
}
.intro a:not([class]) {
  color: inherit;
  text-decoration: underline;
}
.intro a:not([class]):hover {
  text-decoration: none;
}
.intro h1:first-child {
  margin-top: 0;
}
.intro .decor-bird {
  position: absolute;
  background: url(../images/decor-bird.png) no-repeat 50% 50% / contain;
  width: 108px;
  height: 119px;
  right: -74px;
  bottom: -22px;
  pointer-events: none;
}
@media (max-width: 960px) {
  .intro .decor-bird {
    display: none;
  }
}
.intro .decor-rocket {
  position: absolute;
  background: url(../images/decor-rocket.png) no-repeat 50% 50% / contain;
  width: 381px;
  height: 440px;
  top: 40%;
  left: 0;
  -webkit-transform: translate(-45%, -50%);
      -ms-transform: translate(-45%, -50%);
          transform: translate(-45%, -50%);
  z-index: 2;
  pointer-events: none;
}
@media (max-width: 960px) {
  .intro .decor-rocket {
    width: 145px;
    height: 170px;
    top: 20%;
  }
}
.intro p {
  margin: 1.5em auto;
  max-width: 26em;
}
.intro .decor-moon {
  position: absolute;
  background: url(../images/decor-moon.png) no-repeat 50% 50% / contain;
  width: 258px;
  height: 364px;
  top: 50%;
  right: 0;
  -webkit-transform: translate(70%, -50%);
      -ms-transform: translate(70%, -50%);
          transform: translate(70%, -50%);
  z-index: 2;
  pointer-events: none;
}
@media (max-width: 960px) {
  .intro .decor-moon {
    display: none;
  }
}
.intro .input {
  font-size: 1rem;
  max-width: 33.33333333em;
  margin-left: auto;
  margin-right: auto;
}
.intro__step {
  padding: 1em;
}
.intro__step h1 {
  font-size: 54/30em;
  color: #e36116;
  font-family: 'Smelly Peach', Helvetica, Arial, sans-serif;
  font-weight: 400;
  max-width: 620/54em;
  margin-left: auto;
  margin-right: auto;
}
.intro__step h1 strong {
  font-weight: 400;
  color: #1a0d0d;
}
@media (max-width: 960px) {
  .intro__step br {
    display: none;
  }
}
.intro__step p {
  margin-left: auto;
  margin-right: auto;
}
.intro__step--1 {
  position: relative;
  z-index: 2;
}
.intro__step--1 p {
  max-width: 730/30em;
}
@media (max-width: 960px) {
  .intro__step--1 p {
    max-width: 17em;
  }
}
.intro__step--2 {
  position: relative;
  z-index: 2;
}
.intro__step--2 p {
  max-width: 500/30em;
}
.intro__step--3 {
  position: relative;
  z-index: 2;
}
.intro__step--3 p {
  max-width: 560/30em;
}
.intro__step--thanks {
  position: relative;
  z-index: 2;
}
.intro__taste {
  margin-bottom: 1.5em;
}
.intro__taste__item {
  max-width: 38.88888889rem;
  margin: 0 auto;
}
.intro__taste__item img {
  max-height: 26vh;
  max-width: 90%;
}
.intro__taste__item span {
  margin-top: -0.75em;
  display: block;
  font-size: 1rem;
  color: #AEA39E;
}
@media (max-width: 960px) {
  .intro__taste__item span {
    max-width: 15em;
    margin: -0.5em auto 0;
  }
}
