:root {
  --color-bg: #960030;
  --color-white: #ffffff;
  --color-black: #000000;
  --font-color-white: #ffffff;
  --color-primary: #81092d;
  --color-primary-light: #cb1047;
  --color-secondary: #242d39;
  --color-form-label: #555;
  --color-form-placeholder: #666;
  --color-form-outline: #555;
  --color-form-text: #555;
  --color-form-input-border: #999;
  --color-form-input-color: var(--color-secondary);
  --color-gray: #686f82;
  --color-light-gray: rgb(210, 210, 210);
  --color-text-dark: #000;
  --color-text-light: #f8f8f8;
  --color-logo-bg: #c90044;
  --color-error-dark: #f57395;
  --color-error-light: #fee5e9;
  --color-scrollbar-bg: #e1e1e1;
  --color-thumb-bg: #cb1047;
  --color-table-light: #999;
  --color-table-dark: #555;
  --color-purple: #8c8cd9;
  --color-purple-light: #c6c6ec;
  --color-green: #bad98c;
  --color-green-light: #ddecc6;
  --color-teal: #40bfbf;
  --color-teal-light: #79d2d2;
  --color-orange: #d29179;
  --color-orange-light: #e6c0b3;
  --color-red: red;
  --color-red-light: #df2020;
  --font-primary: "Roboto", sans-serif;
  --font-secondary: "Rancho", cursive;
  --unzommed-100vw: 100vw;
  --unzommed-100vh: 100vh; }

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-behavior: smooth;
  scrollbar-width: auto;
  scrollbar-color: var(--color-thumb-bg) var(--color-scrollbar-bg); }
  @media only screen and (min-width: 162em) {
    html {
      font-size: 90.75%; } }

html::-webkit-scrollbar,
html *::-webkit-scrollbar {
  width: auto; }

html::-webkit-scrollbar-track,
html *::-webkit-scrollbar-track {
  background: var(--color-scrollbar-bg); }

html::-webkit-scrollbar-thumb,
html *::-webkit-scrollbar-thumb {
  background-color: var(--color-thumb-bg);
  border: 1px solid var(--color-scrollbar-bg); }

body {
  box-sizing: border-box;
  background-color: var(--color-bg);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(200px, 1920px) minmax(0, 1fr);
  font: normal normal normal 1rem/1.6 var(--font-primary);
  color: var(--font-color-white); }

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit; }

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-secondary); }

/* ----- Reset default style*/
legend {
  padding: 0;
  display: table; }

fieldset {
  border: 0;
  padding: 0.01em 0 0 0;
  margin: 0;
  min-width: 0; }

button {
  background: transparent;
  box-shadow: 0px 0px 0px transparent;
  border: 0px solid transparent;
  text-shadow: 0px 0px 0px transparent;
  cursor: pointer; }

button:hover {
  box-shadow: 0px 0px 0px transparent;
  border: 0px solid transparent;
  text-shadow: 0px 0px 0px transparent; }

button:active {
  outline: var(--color-white);
  border: 0.1rem solid var(--color-primary); }

/* ---- Font ----- */
@font-face {
  font-family: 'Rancho';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../../media/fonts/Rancho-Regular.ttf"); }

@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../../media/fonts/Roboto-Regular.ttf"); }

@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../../media/fonts/Roboto-Bold.ttf"); }

.alert {
  min-width: 25rem;
  font-size: 2em;
  padding: 4rem;
  border: 2px solid var(--color-black);
  border-radius: 0.5rem;
  position: fixed;
  z-index: 10000;
  top: 2rem;
  background-color: var(--color-white);
  color: var(--color-primary);
  left: 50%;
  transform: translate(-50%, 0);
  text-align: center; }
  .alert__close {
    position: absolute;
    top: 1.2rem;
    right: 2rem;
    font-size: 5rem;
    color: var(--color-primary);
    cursor: pointer;
    border: none;
    background: none;
    margin-top: -1.5rem;
    margin-right: -0.5rem; }

.background {
  position: absolute;
  width: 100vw;
  top: 0; }
  .background__container {
    position: relative; }
  .background__img {
    position: absolute;
    filter: brightness(0) saturate(100%) invert(10%) sepia(98%) saturate(4472%) hue-rotate(334deg) brightness(66%) contrast(97%);
    z-index: -1;
    position: absolute;
    width: auto; }
    .background__img--left {
      height: 100rem;
      top: -10rem;
      left: 10rem; }
      @media only screen and (max-width: 85.35em) {
        .background__img--left {
          height: 80rem;
          top: 0; } }
      @media only screen and (max-width: 78em) {
        .background__img--left {
          height: 69rem;
          top: 15rem;
          left: 0; } }
      @media only screen and (max-width: 53.125em) {
        .background__img--left {
          top: 3rem; } }
      @media only screen and (max-width: 47.875em) {
        .background__img--left {
          height: 90rem; } }
    .background__img--right {
      height: 70rem;
      top: 20rem;
      right: 5rem; }
      @media only screen and (max-width: 85.35em) {
        .background__img--right {
          height: 56rem;
          top: 25rem; } }
      @media only screen and (max-width: 78em) {
        .background__img--right {
          height: 47rem;
          top: 36rem;
          right: 0; } }
      @media only screen and (max-width: 53.125em) {
        .background__img--right {
          display: none; } }

.footer {
  position: fixed;
  width: 60px;
  left: calc(50vw - 30px);
  bottom: 15px;
  opacity: 0.7;
  font-size: 13px;
  align-items: center; }
  @media only screen and (max-width: 67.5em) {
    .footer {
      bottom: 5px; } }

.close-modal {
  position: absolute;
  top: 1.2rem;
  right: 2rem;
  font-size: 5rem;
  color: var(--color-primary);
  cursor: pointer;
  border: none;
  background: none; }

.hidden {
  display: none !important; }

.modal {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 25vw;
  min-width: 45rem;
  min-height: 50vh;
  background-color: var(--color-white);
  padding: 6rem;
  border-radius: 5px;
  box-shadow: 0 3rem 5rem rgba(0, 0, 0, 0.3);
  z-index: 10001; }
  @media only screen and (max-width: 30em) {
    .modal {
      min-width: unset;
      min-height: 80vh;
      width: 98vw;
      padding: 2rem; } }

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(3px);
  z-index: 10000; }

.header {
  position: absolute;
  z-index: 9999; }
  @media only screen and (min-width: 61.875em) {
    .header {
      margin-top: 4rem;
      right: 10rem; } }
  @media only screen and (min-width: 61.875em) {
    .header--product {
      right: auto;
      left: 7rem; } }
  @media only screen and (min-width: 95em) {
    .header--authorised {
      right: 15vw; } }
  @media only screen and (min-width: 95em) {
    .header--unauthorised {
      right: 10vw; } }

/* ----- Section header -----*/
.section__header {
  display: flex;
  justify-content: center;
  margin-bottom: 5rem; }
  @media only screen and (max-width: 53.125em) {
    .section__header {
      display: none; } }
  .section__header--mobile {
    display: none;
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    left: 50%;
    margin-bottom: 0;
    z-index: 10000; }
    @media only screen and (max-width: 53.125em) {
      .section__header--mobile {
        display: flex; } }
    @media only screen and (max-width: 18em) {
      .section__header--mobile {
        margin-left: 14.5rem;
        transform: none;
        left: 0; } }
  .section__header--product {
    display: none; }

.section__wave {
  user-select: none;
  height: 3rem;
  width: 7rem;
  align-self: center; }
  @media only screen and (max-width: 53.125em) {
    .section__wave {
      height: 2rem;
      width: 5rem; } }
  @media only screen and (max-width: 35.9em) {
    .section__wave {
      height: 1.5rem;
      width: 3.5rem; } }
  .section__wave--before {
    margin-right: 1.5rem; }
    @media only screen and (max-width: 30em) {
      .section__wave--before {
        display: none; } }
  .section__wave--after {
    margin-left: 1.5rem;
    transform: scaleX(-1); }
    @media only screen and (max-width: 30em) {
      .section__wave--after {
        display: none; } }

.section__title {
  user-select: none;
  font-size: 7em;
  font-weight: 400; }
  @media only screen and (max-width: 53.125em) {
    .section__title {
      font-size: 5em; } }
  @media only screen and (max-width: 35.9em) {
    .section__title {
      font-size: 4em; } }

.main {
  grid-column: 2/3;
  position: relative;
  overflow: hidden;
  min-height: 100vh; }
  @media only screen and (min-width: 112.5em) {
    .main {
      grid-column: 1/-1; } }
  .main--home-page {
    background-color: var(--color-primary);
    min-height: 100vh;
    display: block; }

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 0 10px;
  margin-top: 9rem; }

.message {
  border-radius: 0.5rem;
  font-weight: 600;
  background-color: var(--color-white);
  width: 70%;
  max-width: 60rem;
  margin-top: -4rem;
  display: flex;
  align-items: center; }
  .message--login {
    max-width: 20rem; }
  @media only screen and (max-width: 47.875em) {
    .message {
      padding: 1rem 2rem;
      width: 100%;
      position: absolute;
      left: 0;
      height: 15rem;
      bottom: -16rem;
      max-width: unset; } }
  .message--success {
    padding: 2rem;
    font-size: 1.6em;
    color: var(--color-primary); }
    @media only screen and (max-width: 53.125em) {
      .message--success {
        margin-top: 15rem;
        width: 80vw;
        left: 10vw;
        height: unset; } }
  .message--done {
    color: var(--color-form-label);
    justify-content: center;
    position: absolute;
    left: 50vw;
    top: 50vh;
    transform: translate(-50%, -60%);
    flex-direction: column;
    padding: 2.2rem;
    font-size: 1.6rem;
    max-width: 40rem; }
  .message--error {
    color: var(--color-primary-light); }
  .message--error > ul {
    list-style: none; }
  .message--passwordChange {
    margin-top: 0;
    display: block; }

.nav {
  position: fixed;
  height: 7rem;
  background-color: var(--color-bg);
  width: 100%; }
  @media only screen and (min-width: 61.875em) {
    .nav {
      background-color: transparent;
      height: unset;
      width: unset;
      position: unset; } }
  .nav--home {
    background-color: transparent; }
  .nav--product {
    z-index: 1; }
  .nav__nav {
    transform: translateX(-110%);
    transition: all 0.3s ease-in-out;
    margin-right: 1.6rem; }
    @media only screen and (min-width: 61.875em) {
      .nav__nav {
        transform: unset; } }
  .nav__container {
    width: 75vw;
    overflow: visible;
    min-width: calc(min(100vw, 39.6rem));
    gap: 1rem;
    min-height: 80vh;
    padding-top: 7rem;
    display: flex;
    height: 100%;
    align-items: stretch;
    list-style: none;
    flex-direction: column;
    background-color: var(--color-primary); }
    @media only screen and (min-width: 61.875em) {
      .nav__container {
        flex-direction: row;
        gap: 0;
        width: unset;
        min-height: unset;
        padding-top: unset;
        background-color: transparent; } }
  .nav__item {
    margin-left: 1rem; }
    @media only screen and (min-width: 61.875em) {
      .nav__item {
        margin-left: unset; } }
    .nav__item::after {
      content: "";
      display: block;
      width: 100%;
      height: 0.2rem;
      background-color: var(--color-white); }
      @media only screen and (min-width: 61.875em) {
        .nav__item::after {
          display: none; } }
  .nav__link {
    position: relative;
    text-decoration: none;
    font-size: 2.4em;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--font-color-white);
    transition: all 0.3s ease-in-out;
    display: block;
    padding: 1rem; }
    @media only screen and (min-width: 61.875em) {
      .nav__link {
        padding: 0.8rem 1.6rem;
        font-size: 1.6em; } }
    .nav__link:hover {
      transform: translateY(-5px); }
      @media only screen and (min-width: 61.875em) {
        .nav__link:hover {
          transform: scale(1.2) translateY(-5px); } }
    @media only screen and (min-width: 61.875em) {
      .nav__link--active::after {
        content: "";
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: 1rem;
        margin-top: -7px;
        background: url("/media/common/falka.svg");
        background-size: 100% 100%; } }
    .nav__link--social {
      height: 3rem;
      width: 3rem; }
      @media only screen and (min-width: 61.875em) {
        .nav__link--social {
          transform: translateY(-25%); } }
  .nav__checkbox {
    display: none; }
  .nav__btn {
    position: absolute;
    transition: all 0.3s ease-in-out;
    margin-left: 1rem;
    margin-top: 1.5rem;
    height: 5rem;
    width: 5rem;
    display: block;
    z-index: 2000;
    cursor: pointer;
    margin-left: 1.5rem; }
    @media only screen and (min-width: 61.875em) {
      .nav__btn {
        display: none; } }
    .nav__btn--product {
      left: 7rem; }
  .nav__logo {
    position: absolute;
    height: 5rem;
    width: 5rem;
    margin-top: 1rem;
    margin-left: 7rem;
    z-index: 999;
    transition: all 0.3s ease-in-out; }
    .nav__logo:hover {
      transform: scale(1.2); }
    .nav__logo-img {
      height: 100%;
      width: auto; }
    @media only screen and (min-width: 61.875em) {
      .nav__logo--home {
        display: none; } }
    @media only screen and (min-width: 61.875em) {
      .nav__logo--authorised {
        right: -5rem;
        top: -40%; } }
    @media only screen and (min-width: 61.875em) {
      .nav__logo--unauthorised {
        right: -5rem;
        top: -40%; } }
    .nav__logo--product {
      left: 7rem; }
      @media only screen and (max-width: 85.35em) {
        .nav__logo--product-desktop {
          display: none; } }
  .nav__background {
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 1;
    position: fixed;
    top: 0;
    transform: translateX(-100%);
    width: 100vw;
    height: 100vh;
    z-index: -1;
    transition: all 0.3s ease-in-out; }
    @media only screen and (min-width: 61.875em) {
      .nav__background {
        display: none; } }
  .nav__checkbox:checked ~ .nav__nav {
    opacity: 1;
    transform: translateX(0); }
  .nav__checkbox:checked + .nav__btn .nav__icon {
    background-color: transparent; }
  .nav__checkbox:checked + .nav__btn .nav__icon::after {
    top: 0;
    transform: rotate(135deg); }
  .nav__checkbox:checked + .nav__btn .nav__icon::before {
    top: 0;
    transform: rotate(-135deg); }
  .nav__checkbox:checked ~ .nav__background {
    transform: translateX(0); }
  .nav__icon {
    position: relative;
    top: 2rem; }
    .nav__icon, .nav__icon::before, .nav__icon::after {
      width: 3rem;
      height: 3px;
      background-color: var(--color-white);
      display: inline-block; }
    .nav__icon::before, .nav__icon::after {
      content: "";
      display: inline-block;
      position: absolute;
      left: 0;
      transition: all .2s; }
    .nav__icon::before {
      top: -0.8rem;
      transition: all .2s; }
    .nav__icon::after {
      top: 0.8rem;
      transition: all .2s; }
    @media only screen and (min-width: 61.875em) {
      .nav__icon {
        display: none; } }

.button {
  border-radius: 0.5rem;
  padding: 1rem 2rem;
  color: var(--font-color-white);
  border: none;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  cursor: pointer;
  margin-top: 1.6rem;
  text-align: center; }
  .button__primary {
    background-color: var(--color-primary); }
    .button__primary--passwordChange {
      position: absolute;
      right: 1rem;
      bottom: 1rem; }
    .button__primary:hover {
      background-color: var(--color-primary-light); }
  .button__cart {
    width: 20rem;
    font-size: 1.6em; }
    .button__cart:not(:last-child) {
      margin-right: 1rem; }
  .button__remove {
    font-size: 0.9em;
    padding: 0.5rem 0.7rem;
    width: 8rem; }
  .button__code {
    font-size: 1.6rem; }
  .button__purple {
    background-color: var(--color-purple); }
    .button__purple:hover {
      background-color: var(--color-purple-light); }
  .button__green {
    background-color: var(--color-green); }
    .button__green:hover {
      background-color: var(--color-green-light); }
  .button__teal {
    background-color: var(--color-teal); }
    .button__teal:hover {
      background-color: var(--color-teal-light); }
  .button__orange {
    background-color: var(--color-orange); }
    .button__orange:hover {
      background-color: var(--color-orange-light); }
  .button__red {
    background-color: var(--color-red-light); }
    .button__red:hover {
      background-color: var(--color-red); }
  .button__gray {
    background-color: #555; }
    .button__gray:hover {
      background-color: #999; }
  .button__gray--light {
    background-color: #999; }
    .button__gray--light:hover {
      background-color: #555; }
  .button__store {
    width: 8rem;
    height: 8rem;
    padding: 1rem;
    margin: 4rem auto 0 auto; }
  .button > a {
    text-decoration: none;
    color: var(--font-color-white); }

.alertBtn1 {
  width: 27%;
  display: block;
  margin: 3rem auto 0; }

.alertBtn2 {
  display: block;
  width: 27%;
  float: left; }
  .alertBtn2:nth-child(2) {
    margin-left: 21%;
    margin-right: 4%; }

.alertBtn3 {
  width: 27%; }
  .alertBtn3:nth-child(2), .alertBtn3:nth-child(3) {
    margin-right: 9.5%; }

.cookies {
  background-color: #81092d;
  color: #ccc;
  z-index: 10000;
  font-size: 1.5rem;
  text-align: center; }
  .cookies-link {
    text-decoration: underline;
    color: #fff;
    font-weight: 700; }
    .cookies-link:hover {
      color: #333; }
  .cookies__policy {
    background-color: #81092d;
    color: #fff;
    border-radius: 1rem;
    padding: 4rem;
    position: fixed;
    line-height: 1.5rem;
    z-index: 10000;
    bottom: 0; }
    @media only screen and (max-width: 30em) {
      .cookies__policy {
        padding: 2rem;
        line-height: 3rem;
        width: 100vw; } }

.d-none {
  display: none; }
