@charset "UTF-8";
:root {
  --bg: #F3F4EF;
  --black: rgba(0, 0, 0, 0.85);
  --white: #FFFFFF;
  --secondary: rgba(0, 0, 0, 0.42);
  --tertiary: rgba(0, 0, 0, 0.24);
  --line: #D9D9D9;
  --transition: 0.3s;
}

@font-face {
  font-family: "Atlas Grotesk";
  src: local("Atlas Grotesk Regular");
  src: url("../fonts/AtlasGrotesk/AtlasGrotesk-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}
@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: sans-serif;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: var(--bg);
  -ms-scroll-chaining: none;
      overscroll-behavior: none;
}
body.scroll-lock {
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
}

.wrapper {
  width: 100%;
  max-width: 1920px;
  min-height: 100vh;
  min-height: 100dvh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
}
.wrapper.cart-bar-visible {
  padding-bottom: 57px;
}
.wrapper.cart-bar-visible .cart-bar {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.wrapper > .loading-screen {
  position: fixed;
  background-color: var(--white);
  opacity: 0.6;
}

.content {
  height: 100%;
}

.container {
  padding: 0 40px;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

img {
  vertical-align: top;
}

span {
  font-family: inherit;
}

@media (max-width: 767px) {
  .wrapper.cart-bar-visible {
    padding-bottom: 41px;
  }
  .container {
    padding: 0 24px;
  }
}
.cards {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, calc((100% - 200px) / 6));
  grid-gap: 40px;
  -webkit-transition: opacity var(--transition);
  transition: opacity var(--transition);
}
.cards.hidden {
  opacity: 0;
}

.card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: -webkit-transform 0.2s ease-in;
  transition: -webkit-transform 0.2s ease-in;
  transition: transform 0.2s ease-in;
  transition: transform 0.2s ease-in, -webkit-transform 0.2s ease-in;
}
.card--large {
  -ms-grid-column-span: 2;
  grid-column: span 2;
}
.card--large .card__image img {
  aspect-ratio: unset;
  height: calc((100vw - 280px) / 6 * 1.5);
  height: calc((100dvw - 280px) / 6 * 1.5);
  max-height: 410px;
}

.card__link {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.card__image {
  margin-bottom: 10px;
}
.card__image img {
  width: 100%;
  aspect-ratio: 1/1.5;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: 50% 100%;
     object-position: 50% 100%;
}

.card__iframe {
  display: none;
}
.card__iframe.showed {
  display: block;
}

.card__caption {
  -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;
  gap: 4px;
}

.card__name {
  font-family: "Atlas Grotesk", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.6px;
  -webkit-font-smoothing: antialiased;
  color: var(--black);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 767px) {
  .card__name {
    font-size: 14px;
    line-height: 19px;
    letter-spacing: 0;
  }
}

.card__author {
  font-family: "Atlas Grotesk", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  -webkit-font-smoothing: antialiased;
  color: var(--secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 767px) {
  .card__author {
    font-size: 12px;
    line-height: 15px;
  }
}

.link-back {
  font-family: "Atlas Grotesk", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.6px;
  -webkit-font-smoothing: antialiased;
  color: var(--black);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 8px;
  padding-top: 22px;
  padding-bottom: 26px;
}
@media (max-width: 767px) {
  .link-back {
    font-size: 14px;
    line-height: 19px;
    letter-spacing: 0;
  }
}
.link-back path {
  -webkit-transition: fill-opacity var(--transition);
  transition: fill-opacity var(--transition);
}
.link-back span {
  -webkit-transition: opacity var(--transition);
  transition: opacity var(--transition);
}

.card__selection,
.card__form {
  height: calc((100vw - 280px) / 6 * 1.5);
  height: calc((100dvw - 280px) / 6 * 1.5);
  max-height: 410px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.card__selection .card__content,
.card__form .card__content {
  width: 100%;
  height: -webkit-min-content;
  height: -moz-min-content;
  height: min-content;
  background-color: var(--white);
  padding: 16px 24px 24px;
}

.card__selection .cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 16px;
  margin-top: 2.7vw;
  margin-bottom: 18px;
}
.card__selection .card__content {
  overflow: hidden;
}
.card__selection .card__product {
  pointer-events: none;
  -webkit-box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1), 0px 1px 4px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1), 0px 1px 4px rgba(0, 0, 0, 0.05);
}

.card__title {
  font-family: "Atlas Grotesk", sans-serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 36px;
  letter-spacing: -1.12px;
  -webkit-font-smoothing: antialiased;
  color: var(--black);
}
@media (max-width: 767px) {
  .card__title {
    font-size: 18px;
    line-height: 23px;
    letter-spacing: -0.54px;
  }
}

.card__product {
  width: 5.57vw;
  max-width: 107px;
}
.card__product img {
  width: inherit;
  max-width: inherit;
}

.card__date {
  font-family: "Atlas Grotesk", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  -webkit-font-smoothing: antialiased;
  color: var(--black);
}
@media (max-width: 767px) {
  .card__date {
    font-size: 12px;
    line-height: 15px;
  }
}

.card__form .card__content {
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 3.8vw;
}

.card__account {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.card__watch,
.card__download {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  font-family: "Atlas Grotesk", sans-serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 36px;
  letter-spacing: -1.12px;
  -webkit-font-smoothing: antialiased;
  color: var(--black);
  margin-top: 6px;
}
@media (max-width: 767px) {
  .card__watch,
  .card__download {
    font-size: 18px;
    line-height: 23px;
    letter-spacing: -0.54px;
  }
}
.card__watch svg,
.card__download svg {
  margin-bottom: 1px;
}

.subscribe__title {
  font-family: "Atlas Grotesk", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.6px;
  -webkit-font-smoothing: antialiased;
  color: var(--black);
}
@media (max-width: 767px) {
  .subscribe__title {
    font-size: 14px;
    line-height: 19px;
    letter-spacing: 0;
  }
}

.subscribe__link {
  font-family: inherit;
  text-decoration: underline;
  color: var(--black);
  -webkit-transition: opacity var(--transition);
  transition: opacity var(--transition);
}

.subscribe__form .mc4wp-form-fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 8px;
}
.subscribe__form .mc4wp-response {
  margin-top: 16px;
}
.subscribe__form .mc4wp-response p {
  font-family: "Atlas Grotesk", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  -webkit-font-smoothing: antialiased;
  color: var(--black);
}
@media (max-width: 767px) {
  .subscribe__form .mc4wp-response p {
    font-size: 12px;
    line-height: 15px;
  }
}
.subscribe__form.mc4wp-form-submitted + .subscribe__caption {
  display: none;
}
.subscribe__form:not(.mc4wp-form-submitted) .mc4wp-response {
  display: none;
}

.subscribe__input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 100%;
  font-family: "Atlas Grotesk", sans-serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 36px;
  letter-spacing: -1.12px;
  -webkit-font-smoothing: antialiased;
  line-height: 38px;
  color: var(--black);
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
  padding: 10px 0;
  border-bottom: 1px solid var(--black);
}
@media (max-width: 767px) {
  .subscribe__input {
    font-size: 18px;
    line-height: 23px;
    letter-spacing: -0.54px;
  }
}
.subscribe__input::-webkit-input-placeholder {
  color: var(--tertiary);
}
.subscribe__input::-moz-placeholder {
  color: var(--tertiary);
}
.subscribe__input:-ms-input-placeholder {
  color: var(--tertiary);
}
.subscribe__input::-ms-input-placeholder {
  color: var(--tertiary);
}
.subscribe__input::placeholder {
  color: var(--tertiary);
}
.subscribe__input:valid + .subscribe__button path {
  fill: var(--black);
  fill-opacity: 1;
}

.subscribe__button {
  font-family: "Atlas Grotesk", sans-serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 36px;
  letter-spacing: -1.12px;
  -webkit-font-smoothing: antialiased;
  color: var(--tertiary);
  white-space: nowrap;
  -webkit-transition: color var(--transition);
  transition: color var(--transition);
}
@media (max-width: 767px) {
  .subscribe__button {
    font-size: 18px;
    line-height: 23px;
    letter-spacing: -0.54px;
  }
}
.subscribe__button svg {
  vertical-align: top;
}

.subscribe__caption {
  font-family: "Atlas Grotesk", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  -webkit-font-smoothing: antialiased;
  color: var(--tertiary);
  margin-top: 16px;
}
@media (max-width: 767px) {
  .subscribe__caption {
    font-size: 12px;
    line-height: 15px;
  }
}

.loading-screen {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
}
.loading-screen.showed {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  pointer-events: auto;
}

.loading-screen__spinner {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 5px solid rgba(0, 0, 0, 0.1);
  border-top: 5px solid var(--black);
  -webkit-animation: spin 1s linear infinite;
          animation: spin 1s linear infinite;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

.progressive-image {
  -webkit-filter: blur(5px);
          filter: blur(5px);
  -webkit-transition: -webkit-filter var(--transition) ease-in-out;
  transition: -webkit-filter var(--transition) ease-in-out;
  transition: filter var(--transition) ease-in-out;
  transition: filter var(--transition) ease-in-out, -webkit-filter var(--transition) ease-in-out;
}
.progressive-image.loaded {
  -webkit-filter: blur(0);
          filter: blur(0);
}

@media (max-width: 1500px) {
  .cards {
    grid-template-columns: repeat(auto-fit, calc((100% - 160px) / 5));
  }
  .card--large .card__image img {
    height: calc((100vw - 240px) / 5 * 1.5);
    height: calc((100dvw - 240px) / 5 * 1.5);
  }
  .card__selection,
  .card__form {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: auto;
  }
}
@media (min-width: 1024px) and (hover: hover) and (pointer: fine) {
  .card:not(.card__selection, .card__form, .card__account):hover {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  .link-back:hover path {
    fill-opacity: 1;
  }
  .link-back:hover span {
    opacity: 0.7;
  }
  .subscribe__link:hover {
    opacity: 0.7;
  }
  .subscribe__button:hover {
    color: var(--black);
  }
}
@media (max-width: 1024px) {
  .cards {
    grid-template-columns: repeat(auto-fit, calc((100% - 120px) / 4));
  }
  .card--large .card__image img {
    height: calc((100vw - 200px) / 4 * 1.5);
    height: calc((100dvw - 200px) / 4 * 1.5);
  }
  .card__selection .cards {
    margin-top: 4vw;
  }
  .card__product {
    width: 8.38vw;
  }
  .card__form {
    gap: 5.7vw;
  }
}
@media (max-width: 767px) {
  .cards {
    grid-template-columns: repeat(auto-fit, calc((100% - 48px) / 3));
    grid-gap: 24px;
  }
  .card--large .card__image img {
    height: calc((100vw - 96px) / 3 * 1.5);
    height: calc((100dvw - 96px) / 3 * 1.5);
  }
  .link-back {
    line-height: 21px;
    padding-top: 18px;
    padding-bottom: 22px;
  }
  .link-back svg {
    width: 24px;
    height: 24px;
    margin-top: 0;
    margin-bottom: 2px;
  }
  .card__selection .cards {
    margin-top: 6.4vw;
    margin-bottom: 20px;
  }
  .card__product {
    width: 26.7vw;
  }
  .card__form .card__content,
  .card__selection .card__content {
    padding-top: 20px;
    padding-bottom: 22px;
  }
  .card__form {
    gap: 6.4vw;
  }
  .card__watch,
  .card__download {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .card__watch svg,
  .card__download svg {
    margin-top: 2px;
    margin-bottom: 0;
  }
  .subscribe__input {
    line-height: 24px;
  }
  .subscribe__button svg {
    width: 24px;
    height: 24px;
  }
}
@media (max-width: 480px) {
  .cards {
    grid-template-columns: repeat(auto-fit, calc((100% - 24px) / 2));
  }
  .card--large .card__image img {
    height: auto;
  }
  .card__image {
    margin-bottom: 8px;
  }
  .card__watch,
  .card__download {
    margin-top: 4px;
  }
}
.header {
  padding-top: 20px;
  padding-bottom: 110px;
}
.header--small {
  padding-top: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.header--small .header__link {
  font-size: 32px;
  line-height: 36px;
  letter-spacing: -1.92px;
}
.header--small .header__link span svg {
  width: 40px;
}
.header--medium {
  padding-top: 16px;
  padding-bottom: 32px;
}
.header--medium .header__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 44px;
  line-height: 48px;
  letter-spacing: -1.76px;
}
.header--medium .header__link span svg {
  width: 55px;
}
.header .lowercase {
  text-transform: lowercase;
}

.header__link {
  font-family: "Atlas Grotesk", sans-serif;
  font-weight: 400;
  font-size: 108px;
  line-height: 92px;
  letter-spacing: -6.48px;
  color: var(--black);
  -webkit-transition: opacity var(--transition);
  transition: opacity var(--transition);
  cursor: default;
}

.header__close-cart svg {
  vertical-align: top;
}

@media (min-width: 1024px) and (hover: hover) and (pointer: fine) {
  .header:not(.header--medium) .header__link {
    cursor: pointer;
  }
  .header:not(.header--medium) .header__link:hover {
    opacity: 0.7;
  }
}
@media (max-width: 767px) {
  .header {
    padding-top: 12px;
    padding-bottom: 28px;
  }
  .header--small {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .header--small .header__link {
    font-size: 24px;
    letter-spacing: -1.44px;
  }
  .header--small .header__link span svg {
    width: 30px;
  }
  .header--small .header__caption {
    display: none;
  }
  .header--medium {
    padding-top: 18px;
    padding-bottom: 18px;
  }
  .header--medium .header__link {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    font-size: 26px;
    line-height: 28px;
    letter-spacing: -0.78px;
  }
  .header--medium .header__link span svg {
    width: 32px;
  }
  .header__link {
    font-size: 37px;
    line-height: 38px;
    letter-spacing: -1.85px;
  }
  .header__link span svg {
    width: 46px;
    overflow: visible;
  }
}
.navigation__top-part {
  border-bottom: 1px solid var(--line);
}
.navigation__top-part .navigation__item--login .navigation__form {
  display: none;
}
.navigation__top-part .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
}

.navigation__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
.navigation__items:last-child {
  width: 100%;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.navigation__item {
  padding: 20px 0;
  position: relative;
}
.navigation__item--login.entrance {
  width: 100%;
  max-width: 380px;
  padding: 8px 0;
}
.navigation__item--login.entrance .navigation__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.navigation__item--login.entrance .navigation__login {
  display: none;
}
.navigation__item--login.success .navigation__form {
  display: none;
}
.navigation__item--login.success .navigation__login {
  display: none;
}
.navigation__item--login.success .navigation__success {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}
.navigation__item--login.success .navigation__success-icon {
  display: block;
}
.navigation__item.disabled {
  pointer-events: none;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.navigation__item.disabled .navigation__link,
.navigation__item.disabled .navigation__tab {
  color: var(--secondary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2px;
}
.navigation__item.disabled .navigation__link sup,
.navigation__item.disabled .navigation__tab sup {
  font-family: inherit;
  font-size: 13px;
  line-height: 22px;
  margin-left: 2px;
}

.navigation__link,
.navigation__tab,
.navigation__login {
  font-family: "Atlas Grotesk", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.6px;
  -webkit-font-smoothing: antialiased;
  color: var(--black);
  -webkit-transition: opacity var(--transition);
  transition: opacity var(--transition);
}
@media (max-width: 767px) {
  .navigation__link,
  .navigation__tab,
  .navigation__login {
    font-size: 13px;
    line-height: 17px;
    letter-spacing: 0;
  }
}
.navigation__link.active::after,
.navigation__tab.active::after,
.navigation__login.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background-color: var(--black);
}

.navigation__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: white;
  padding: 3px 12px 8px;
}

.navigation__input {
  width: 100%;
  font-family: "Atlas Grotesk", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.6px;
  -webkit-font-smoothing: antialiased;
  color: var(--black);
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
}
@media (max-width: 767px) {
  .navigation__input {
    font-size: 14px;
    line-height: 19px;
    letter-spacing: 0;
  }
}
.navigation__input::-webkit-input-placeholder {
  color: var(--tertiary);
}
.navigation__input::-moz-placeholder {
  color: var(--tertiary);
}
.navigation__input:-ms-input-placeholder {
  color: var(--tertiary);
}
.navigation__input::-ms-input-placeholder {
  color: var(--tertiary);
}
.navigation__input::placeholder {
  color: var(--tertiary);
}
.navigation__input:valid + .navigation__button path {
  fill-opacity: 1;
}

.navigation__button svg {
  margin-top: 5px;
  vertical-align: top;
}

.navigation__success {
  display: none;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 8px 12px;
}

.navigation__success-icon {
  display: none;
}

.navigation__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
.navigation__wrapper svg {
  margin-top: 2px;
}

.navigation__notice {
  font-family: "Atlas Grotesk", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.6px;
  -webkit-font-smoothing: antialiased;
  color: var(--black);
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 767px) {
  .navigation__notice {
    font-size: 14px;
    line-height: 19px;
    letter-spacing: 0;
  }
}

.navigation__repeat {
  margin-top: 4px;
}
.navigation__repeat svg {
  vertical-align: top;
}
.navigation__repeat path {
  -webkit-transition: fill-opacity var(--transition);
  transition: fill-opacity var(--transition);
}

.navigation__bottom-part {
  display: none;
}
.navigation__bottom-part .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

@media (min-width: 1024px) and (hover: hover) and (pointer: fine) {
  .navigation__link:hover,
  .navigation__tab:hover,
  .navigation__login:hover {
    opacity: 0.7;
  }
  .navigation__repeat:hover path {
    fill-opacity: 1;
  }
}
@media (max-width: 1024px) {
  .navigation__bottom-part .navigation__item {
    padding-top: 40px;
    padding-bottom: 0;
  }
}
@media (max-width: 767px) {
  .navigation__items {
    gap: 14px;
  }
  .navigation__item {
    padding: 16px 0;
  }
  .navigation__item--login.entrance {
    max-width: unset;
  }
  .navigation__item--login.success {
    width: 100%;
  }
  .navigation__item.disabled .navigation__link sup,
  .navigation__item.disabled .navigation__tab sup {
    font-size: 9px;
    line-height: 12px;
    margin-left: 0;
  }
  .navigation__form {
    padding-top: 8px;
  }
  .navigation__input {
    padding-bottom: 3px;
  }
  .navigation__button svg {
    margin-top: 0;
  }
  .navigation__login svg {
    width: 16px;
  }
  .navigation__top-part .container {
    gap: 14px;
  }
  .navigation__bottom-part .navigation__item {
    padding-top: 24px;
  }
  .navigation__wrapper {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .navigation__wrapper svg {
    width: 24px;
    height: 24px;
    margin-top: 0;
  }
  .navigation__notice {
    margin-bottom: 2px;
  }
  .navigation__repeat {
    margin-top: 0;
  }
}
#catalog {
  height: -webkit-min-content;
  height: -moz-min-content;
  height: min-content;
}

.catalog {
  padding: 40px 0;
  position: relative;
}
.catalog .container {
  margin-bottom: 80px;
}

@media (max-width: 767px) {
  .catalog {
    padding: 24px 0;
  }
}
.cart-bar {
  width: 100%;
  background-color: #1F1F1F;
  padding: 12px 0;
  position: fixed;
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: -webkit-transform var(--transition) ease-out;
  transition: -webkit-transform var(--transition) ease-out;
  transition: transform var(--transition) ease-out;
  transition: transform var(--transition) ease-out, -webkit-transform var(--transition) ease-out;
}
.cart-bar .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.cart-bar__wrapper {
  font-family: "Atlas Grotesk", sans-serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 36px;
  letter-spacing: -1.12px;
  -webkit-font-smoothing: antialiased;
  line-height: 24px;
  color: var(--white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
@media (max-width: 767px) {
  .cart-bar__wrapper {
    font-size: 18px;
    line-height: 23px;
    letter-spacing: -0.54px;
  }
}
.cart-bar__wrapper svg {
  vertical-align: top;
}

.cart-bar__counter {
  font-family: "Atlas Grotesk", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.6px;
  -webkit-font-smoothing: antialiased;
  line-height: 27px;
  color: #1F1F1F;
  background-color: var(--white);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  padding: 0 5px;
}
@media (max-width: 767px) {
  .cart-bar__counter {
    font-size: 14px;
    line-height: 19px;
    letter-spacing: 0;
  }
}

.mini-cart {
  width: 520px;
  max-width: unset;
  height: 100%;
  max-height: unset;
  background-color: var(--bg);
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1;
  border: none;
  justify-self: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  overflow-y: auto;
  scroll-behavior: smooth;
}
.mini-cart > .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.mini-cart[open] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.mini-cart[open] + .overlay {
  display: block;
}
.mini-cart .header__link {
  cursor: pointer;
}

.mini-cart__wrapper {
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: none;
}

@media (max-width: 767px) {
  .cart-bar {
    padding: 8px 0;
  }
  .cart-bar__counter {
    width: 23px;
    height: 23px;
    line-height: 20px;
    padding: 0 4px;
  }
  .cart-bar__wrapper {
    line-height: 19px;
    gap: 8px;
  }
  .cart-bar__wrapper svg {
    width: 24px;
  }
  .mini-cart > .container {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}
.footer {
  border-top: 1px solid var(--line);
}

.footer__parts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6.7vw;
}

.footer__part {
  -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;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 80px;
  padding: 40px 0;
}

.footer__desc {
  font-family: "Atlas Grotesk", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.6px;
  -webkit-font-smoothing: antialiased;
  color: var(--black);
}
@media (max-width: 767px) {
  .footer__desc {
    font-size: 14px;
    line-height: 19px;
    letter-spacing: 0;
  }
}

.footer__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}

.footer__agreement,
.footer__contact,
.footer__name {
  font-family: "Atlas Grotesk", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  -webkit-font-smoothing: antialiased;
  color: var(--black);
}
@media (max-width: 767px) {
  .footer__agreement,
  .footer__contact,
  .footer__name {
    font-size: 12px;
    line-height: 15px;
  }
}

.footer__email {
  text-decoration: underline;
  color: var(--black);
}

.footer__agreement,
.footer__email {
  -webkit-transition: opacity var(--transition);
  transition: opacity var(--transition);
}

@media (min-width: 1024px) and (hover: hover) and (pointer: fine) {
  .footer__email:hover,
  .footer__agreement:hover {
    opacity: 0.7;
  }
}
@media (max-width: 767px) {
  .footer .container {
    padding: 0;
  }
  .footer__parts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
  }
  .footer__part {
    padding: 24px;
  }
  .footer__part:first-child {
    gap: 16px;
  }
  .footer__part:last-child {
    border-top: 1px solid var(--line);
  }
  .footer__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }
  .footer__name svg {
    width: 15px;
  }
}
.selections .selection:first-child {
  border-top: none;
}

.selection {
  border-top: 1px solid var(--line);
}
.selection .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 80px;
  padding-top: 40px;
  padding-bottom: 120px;
}

.selection__parts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6.7vw;
}

.selection__part {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.selection__title {
  margin-bottom: 16px;
}

.selection__link {
  font-family: "Atlas Grotesk", sans-serif;
  font-weight: 400;
  font-size: 44px;
  line-height: 48px;
  letter-spacing: -1.76px;
  -webkit-font-smoothing: antialiased;
  color: var(--black);
  -webkit-transition: opacity var(--transition);
  transition: opacity var(--transition);
}
@media (max-width: 767px) {
  .selection__link {
    font-size: 26px;
    line-height: 28px;
    letter-spacing: -0.78px;
  }
}

.selection__date {
  font-family: "Atlas Grotesk", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  -webkit-font-smoothing: antialiased;
  color: var(--secondary);
}
@media (max-width: 767px) {
  .selection__date {
    font-size: 12px;
    line-height: 15px;
  }
}

.selection__desc {
  font-family: "Atlas Grotesk", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.6px;
  -webkit-font-smoothing: antialiased;
  color: var(--black);
}
@media (max-width: 767px) {
  .selection__desc {
    font-size: 14px;
    line-height: 19px;
    letter-spacing: 0;
  }
}

@media (min-width: 1024px) and (hover: hover) and (pointer: fine) {
  .selection__link:hover {
    opacity: 0.7;
  }
}
@media (max-width: 767px) {
  .selection .container {
    gap: 24px;
    padding-top: 20px;
    padding-bottom: 80px;
  }
  .selection__parts {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
  }
  .selection__title {
    margin-bottom: 12px;
  }
  .selection__products .cards {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 0;
  }
  .selection__products .card {
    padding: 16px 0;
    border-top: 1px solid var(--line);
  }
  .selection__products .card--large {
    grid-column: unset;
  }
  .selection__products .card__link {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 16px;
  }
  .selection__products .card__image {
    width: 20vw;
    margin-bottom: 0;
  }
  .selection__products .card__name {
    display: inline;
    overflow: visible;
    text-overflow: clip;
    -webkit-line-clamp: unset;
    -webkit-box-orient: unset;
  }
  .selection__products .card__author {
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
  }
}
.product-page {
  margin-bottom: 80px;
}

.product-page__content {
  padding: 40px 0;
}
.product-page__content .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 40px;
}

#book .product-page__image {
  -webkit-box-flex: 0.285;
      -ms-flex: 0.285;
          flex: 0.285;
}

#film .product-page__image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.product-page__image {
  width: 100%;
  overflow: hidden;
}
.product-page__image img {
  width: 100%;
}

.product-page__info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.product-page__director,
.product-page__author {
  font-family: "Atlas Grotesk", sans-serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 36px;
  letter-spacing: -1.12px;
  -webkit-font-smoothing: antialiased;
  color: var(--black);
  display: block;
  margin-bottom: 4px;
}
@media (max-width: 767px) {
  .product-page__director,
  .product-page__author {
    font-size: 18px;
    line-height: 23px;
    letter-spacing: -0.54px;
  }
}

.product-page__title {
  font-family: "Atlas Grotesk", sans-serif;
  font-weight: 400;
  font-size: 80px;
  line-height: 1;
  letter-spacing: -4.8px;
  -webkit-font-smoothing: antialiased;
  color: var(--black);
  text-indent: -4px;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .product-page__title {
    font-size: 28px;
    line-height: 32px;
    letter-spacing: -1.12px;
  }
}

.product-page__country,
.product-page__publisher {
  font-family: "Atlas Grotesk", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.6px;
  -webkit-font-smoothing: antialiased;
  color: var(--black);
  display: block;
  margin-bottom: 42px;
}
@media (max-width: 767px) {
  .product-page__country,
  .product-page__publisher {
    font-size: 14px;
    line-height: 19px;
    letter-spacing: 0;
  }
}

.product-page__items {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  margin-bottom: 36px;
}
.product-page__items > .product-page__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.product-page__form {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.product-page__form .product-page__item {
  -webkit-transition: -webkit-transform var(--transition);
  transition: -webkit-transform var(--transition);
  transition: transform var(--transition);
  transition: transform var(--transition), -webkit-transform var(--transition);
}

.product-page__item {
  width: 280px;
  min-height: 180px;
  background-color: var(--white);
  padding: 8px 16px 16px;
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-align: left;
}
.product-page__item--crossed {
  background-image: url(../images/crossed-bg-desc.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  min-width: 242px;
}
.product-page__item.product-added {
  background-color: var(--black);
  pointer-events: none;
}
.product-page__item.product-added .product-page__item-title,
.product-page__item.product-added .product-page__action {
  color: rgba(255, 255, 255, 0.85);
}
.product-page__item.product-added .product-page__item-caption {
  color: rgba(255, 255, 255, 0.42);
}

button.product-page__item {
  -webkit-transition: color var(--transition);
  transition: color var(--transition);
}
button.product-page__item .product-page__item-title,
button.product-page__item .product-page__action,
button.product-page__item .product-page__item-caption {
  -webkit-transition: color var(--transition);
  transition: color var(--transition);
}

.product-page__item-title {
  font-family: "Atlas Grotesk", sans-serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 36px;
  letter-spacing: -1.12px;
  -webkit-font-smoothing: antialiased;
  color: var(--black);
  display: block;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .product-page__item-title {
    font-size: 18px;
    line-height: 23px;
    letter-spacing: -0.54px;
  }
}

.product-page__item-caption {
  font-family: "Atlas Grotesk", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  -webkit-font-smoothing: antialiased;
  color: var(--secondary);
  display: block;
  white-space: nowrap;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .product-page__item-caption {
    font-size: 12px;
    line-height: 15px;
  }
}
.product-page__item-caption span {
  text-transform: uppercase;
}

.product-page__action {
  font-family: "Atlas Grotesk", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.6px;
  -webkit-font-smoothing: antialiased;
  color: var(--black);
  line-height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 7px;
  -webkit-transition: opacity var(--transition);
  transition: opacity var(--transition);
}
@media (max-width: 767px) {
  .product-page__action {
    font-size: 14px;
    line-height: 19px;
    letter-spacing: 0;
  }
}

.product-page__unavailable {
  font-family: "Atlas Grotesk", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.6px;
  -webkit-font-smoothing: antialiased;
  color: var(--black);
}
@media (max-width: 767px) {
  .product-page__unavailable {
    font-size: 14px;
    line-height: 19px;
    letter-spacing: 0;
  }
}

.product-page__short-desc {
  font-family: "Atlas Grotesk", sans-serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 36px;
  letter-spacing: -1.12px;
  -webkit-font-smoothing: antialiased;
  color: var(--black);
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .product-page__short-desc {
    font-size: 18px;
    line-height: 23px;
    letter-spacing: -0.54px;
  }
}

.product-page__desc {
  font-family: "Atlas Grotesk", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.6px;
  -webkit-font-smoothing: antialiased;
  color: var(--black);
  max-width: 800px;
}
@media (max-width: 767px) {
  .product-page__desc {
    font-size: 14px;
    line-height: 19px;
    letter-spacing: 0;
  }
}
.product-page__desc:has(+ .product-page__caption) {
  margin-bottom: 24px;
}

.product-page__caption {
  font-family: "Atlas Grotesk", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.6px;
  -webkit-font-smoothing: antialiased;
  color: var(--secondary);
}
@media (max-width: 767px) {
  .product-page__caption {
    font-size: 14px;
    line-height: 19px;
    letter-spacing: 0;
  }
}

.product-page__more {
  padding: 40px 0;
}
.product-page__more .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 44px;
}

.product-page__more-title {
  font-family: "Atlas Grotesk", sans-serif;
  font-weight: 400;
  font-size: 44px;
  line-height: 48px;
  letter-spacing: -1.76px;
  -webkit-font-smoothing: antialiased;
  color: var(--black);
}
@media (max-width: 767px) {
  .product-page__more-title {
    font-size: 26px;
    line-height: 28px;
    letter-spacing: -0.78px;
  }
}

@media (min-width: 1024px) and (hover: hover) and (pointer: fine) {
  .product-page__item:first-child:hover {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  .product-page__item:hover .product-page__action {
    opacity: 0.7;
  }
}
@media (max-width: 1024px) {
  #book .product-page__image {
    -webkit-box-flex: 0.525;
        -ms-flex: 0.525;
            flex: 0.525;
  }
  #film .product-page__content {
    padding-top: 0;
  }
  #film .product-page__content .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0;
  }
  #film .product-page__info {
    padding: 0 40px;
  }
}
@media (max-width: 767px) {
  #book section .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #book .product-page__image {
    width: 61%;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  #film .product-page__info {
    padding: 0 24px;
  }
  .product-page__content {
    padding-top: 24px;
  }
  .product-page__content .container {
    gap: 24px;
  }
  .product-page__title {
    text-indent: -2px;
    margin-bottom: 30px;
  }
  .product-page__country,
  .product-page__publisher {
    margin-bottom: 26px;
  }
  .product-page__items {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8px;
    margin-bottom: 22px;
  }
  .product-page__item {
    width: 100%;
    min-height: unset;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .product-page__item--crossed {
    background-image: url(../images/crossed-bg-mob.png);
    min-width: initial;
  }
  .product-page__item-title {
    margin-bottom: 6px;
  }
  .product-page__item-caption {
    margin-bottom: 0;
  }
  .product-page__action {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 6px;
  }
  .product-page__action svg {
    margin-top: 2px;
  }
  .product-page__short-desc {
    margin-bottom: 16px;
  }
  .product-page__desc:has(+ .product-page__caption) {
    margin-bottom: 22px;
  }
  .product-page__more {
    padding-bottom: 24px;
  }
  .product-page__more .container {
    gap: 26px;
  }
}
.search {
  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;
}
.search .cards {
  display: none;
  padding: 40px 0;
}

.search__form {
  border-bottom: 1px solid var(--line);
  padding-bottom: 15px;
}
.search__form .container {
  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;
  gap: 50px;
}

.search__input,
.search__cancel,
.search__nores {
  font-family: "Atlas Grotesk", sans-serif;
  font-weight: 400;
  font-size: 44px;
  line-height: 48px;
  letter-spacing: -1.76px;
  -webkit-font-smoothing: antialiased;
  color: var(--black);
}
@media (max-width: 767px) {
  .search__input,
  .search__cancel,
  .search__nores {
    font-size: 26px;
    line-height: 28px;
    letter-spacing: -0.78px;
  }
}

.search__cancel {
  -webkit-transition: opacity var(--transition);
  transition: opacity var(--transition);
}

.search__input {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.search__input::-webkit-input-placeholder {
  color: var(--tertiary);
}
.search__input::-moz-placeholder {
  color: var(--tertiary);
}
.search__input:-ms-input-placeholder {
  color: var(--tertiary);
}
.search__input::-ms-input-placeholder {
  color: var(--tertiary);
}
.search__input::placeholder {
  color: var(--tertiary);
}

.search__results {
  height: 100%;
  min-height: 150px;
  position: relative;
}

.search__nores {
  padding-top: 70px;
  padding-bottom: 12px;
}

input[type=search]::-webkit-search-cancel-button {
  display: none;
}

@media (min-width: 1024px) and (hover: hover) and (pointer: fine) {
  .search__cancel:hover {
    opacity: 0.7;
  }
}
@media (max-width: 767px) {
  .search {
    padding-top: 20px;
  }
  .search .cards {
    padding: 24px 0;
  }
  .search__form {
    padding-bottom: 10px;
  }
  .search__form .container {
    gap: 22px;
  }
  .search__nores {
    margin-top: 40px;
    padding-bottom: 6px;
  }
}
#cart > .woocommerce {
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
}

.cart__product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.cart__left-part {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}

.cart__product-image {
  min-width: 80px;
  max-width: 80px;
  height: 80px;
}
.cart__product-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.cart__caption {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
  font-family: "Atlas Grotesk", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  -webkit-font-smoothing: antialiased;
  color: var(--secondary);
}
@media (max-width: 767px) {
  .cart__caption {
    font-size: 12px;
    line-height: 15px;
  }
}

.cart__product-name {
  font-family: "Atlas Grotesk", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.6px;
  -webkit-font-smoothing: antialiased;
  color: var(--black);
  padding-top: 5px;
}
@media (max-width: 767px) {
  .cart__product-name {
    font-size: 14px;
    line-height: 19px;
    letter-spacing: 0;
  }
}

.cart__right-part {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 3px;
}

.cart__price {
  font-family: "Atlas Grotesk", sans-serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 36px;
  letter-spacing: -1.12px;
  -webkit-font-smoothing: antialiased;
  color: var(--black);
}
@media (max-width: 767px) {
  .cart__price {
    font-size: 18px;
    line-height: 23px;
    letter-spacing: -0.54px;
  }
}

.cart__remove-product {
  font-family: "Atlas Grotesk", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  -webkit-font-smoothing: antialiased;
  color: var(--secondary);
}
@media (max-width: 767px) {
  .cart__remove-product {
    font-size: 12px;
    line-height: 15px;
  }
}

.cart__empty {
  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;
  height: 100%;
}

.cart__empty-caption {
  font-family: "Atlas Grotesk", sans-serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 36px;
  letter-spacing: -1.12px;
  -webkit-font-smoothing: antialiased;
  color: var(--secondary);
}
@media (max-width: 767px) {
  .cart__empty-caption {
    font-size: 18px;
    line-height: 23px;
    letter-spacing: -0.54px;
  }
}

.wc-ppcp-cart-payments__container,
.wc-ppcp-minicart-ppcp {
  display: none;
}

#wc-ppcp-cart-button-container .paypal-buttons:nth-child(n+2),
.wc-ppcp-cart-payment-method.or {
  display: none !important;
}

.wc-ppcp-minicart-ppcp .paypal-buttons:last-child {
  display: none !important;
}

.wc-ppcp-cart-payments__container.below .wc-ppcp-cart-payment__methods,
.wc-ppcp-minicart-ppcp .paypal-buttons:first-child {
  margin-top: 8px !important;
}

.woocommerce-cart-form .blockUI.blockOverlay {
  opacity: 0.5 !important;
}

.blockUI.blockMsg.blockElement {
  border: none !important;
}

@media (max-width: 767px) {
  .cart__product {
    padding: 12px 0;
  }
  .cart__product-image {
    min-width: 70px;
    max-width: 70px;
    height: 70px;
  }
  .cart__product-name {
    padding-top: 3px;
  }
  .cart__right-part {
    gap: 4px;
  }
}
.checkout {
  padding-top: 24px;
  padding-bottom: 24px;
  background-color: var(--white);
}

.checkout__total {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 7px;
  margin-bottom: 8px;
}

.checkout__total-label,
.checkout__total-value {
  font-family: "Atlas Grotesk", sans-serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 36px;
  letter-spacing: -1.12px;
  -webkit-font-smoothing: antialiased;
  color: var(--black);
}
@media (max-width: 767px) {
  .checkout__total-label,
  .checkout__total-value {
    font-size: 18px;
    line-height: 23px;
    letter-spacing: -0.54px;
  }
}

.checkout__total-value {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 5px;
}

.checkout__old-total {
  font-family: "Atlas Grotesk", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.6px;
  -webkit-font-smoothing: antialiased;
  color: var(--black);
  text-decoration: line-through;
}
@media (max-width: 767px) {
  .checkout__old-total {
    font-size: 14px;
    line-height: 19px;
    letter-spacing: 0;
  }
}

.checkout__text {
  font-family: "Atlas Grotesk", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  -webkit-font-smoothing: antialiased;
  color: var(--black);
  margin-bottom: 32px;
}
@media (max-width: 767px) {
  .checkout__text {
    font-size: 12px;
    line-height: 15px;
  }
}

.woocommerce-form-coupon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid var(--black);
}

.checkout__input {
  width: 100%;
  font-family: "Atlas Grotesk", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.6px;
  -webkit-font-smoothing: antialiased;
  color: var(--black);
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
  padding: 10px 0;
}
@media (max-width: 767px) {
  .checkout__input {
    font-size: 14px;
    line-height: 19px;
    letter-spacing: 0;
  }
}
.checkout__input:not(.checkout__input--coupon) {
  border-bottom: 1px solid var(--black);
  margin-top: 2px;
}
.checkout__input::-webkit-input-placeholder {
  color: var(--tertiary);
}
.checkout__input::-moz-placeholder {
  color: var(--tertiary);
}
.checkout__input:-ms-input-placeholder {
  color: var(--tertiary);
}
.checkout__input::-ms-input-placeholder {
  color: var(--tertiary);
}
.checkout__input::placeholder {
  color: var(--tertiary);
}
.checkout__input--coupon:valid + .checkout__coupon-btn .checkout__arrow path {
  fill: var(--black);
  fill-opacity: 1;
}

.checkout__coupon-btn svg {
  display: none;
}
.checkout__coupon-btn svg.visible {
  display: block;
}

.checkout__loader {
  -webkit-animation: spin 1s linear infinite;
          animation: spin 1s linear infinite;
}

.checkout__caption {
  font-family: "Atlas Grotesk", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  -webkit-font-smoothing: antialiased;
  color: var(--tertiary);
  margin-top: 16px;
}
@media (max-width: 767px) {
  .checkout__caption {
    font-size: 12px;
    line-height: 15px;
  }
}

.checkout__payment {
  max-width: 450px;
}

.checkout__button {
  font-family: "Atlas Grotesk", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  -webkit-font-smoothing: antialiased;
  color: var(--white);
  background-color: #2C2E2F;
  width: 100%;
  height: 40px;
  border-radius: 4px;
  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;
  padding-bottom: 5px;
  margin-top: 40px;
}
@media (max-width: 767px) {
  .checkout__button {
    font-size: 12px;
    line-height: 15px;
  }
}
.checkout__button:hover {
  -webkit-filter: brightness(1.2);
          filter: brightness(1.2);
}

@media (max-width: 767px) {
  .checkout__total-label,
  .checkout__total-value {
    font-size: 28px;
    line-height: 36px;
    letter-spacing: -1.12px;
  }
  .checkout__old-total {
    font-size: 20px;
    line-height: 30px;
    letter-spacing: -0.6px;
  }
  .checkout__input:not(.checkout__input--coupon) {
    margin-top: 10px;
  }
  .checkout__payment {
    width: 100%;
  }
  .checkout__button {
    font-size: 16px;
    line-height: 22px;
  }
  .checkout__button svg {
    width: 32px;
    height: 32px;
    margin-top: 6px;
  }
}
#checkout > .woocommerce {
  height: 100%;
}

.order {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}

.order__message {
  padding-top: 18px;
  padding-bottom: 30px;
  border-right: 1px solid var(--line);
}
.order__message .container {
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.order__title {
  font-family: "Atlas Grotesk", sans-serif;
  font-weight: 400;
  font-size: 80px;
  line-height: 1;
  letter-spacing: -4.8px;
  -webkit-font-smoothing: antialiased;
  color: var(--black);
}
@media (max-width: 767px) {
  .order__title {
    font-size: 28px;
    line-height: 32px;
    letter-spacing: -1.12px;
  }
}

.order__cart-link {
  font-family: inherit;
  color: var(--black);
  -webkit-transition: opacity var(--transition);
  transition: opacity var(--transition);
}
.order__cart-link svg {
  width: 55px;
}

.order__help {
  font-family: "Atlas Grotesk", sans-serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 36px;
  letter-spacing: -1.12px;
  -webkit-font-smoothing: antialiased;
  color: var(--black);
  margin-top: 24px;
}
@media (max-width: 767px) {
  .order__help {
    font-size: 18px;
    line-height: 23px;
    letter-spacing: -0.54px;
  }
}

.order__email {
  color: var(--black);
  text-decoration: underline;
  -webkit-transition: opacity var(--transition);
  transition: opacity var(--transition);
}

.order__link {
  font-family: "Atlas Grotesk", sans-serif;
  font-weight: 400;
  font-size: 80px;
  line-height: 1;
  letter-spacing: -4.8px;
  -webkit-font-smoothing: antialiased;
  color: var(--secondary);
  -webkit-transition: color var(--transition);
  transition: color var(--transition);
}
@media (max-width: 767px) {
  .order__link {
    font-size: 28px;
    line-height: 32px;
    letter-spacing: -1.12px;
  }
}

.order__your-order {
  min-width: 30%;
}
.order__your-order .container {
  padding: 0 24px;
}
.order__subtitle {
  font-family: "Atlas Grotesk", sans-serif;
  font-weight: 400;
  font-size: 44px;
  line-height: 48px;
  letter-spacing: -1.76px;
  -webkit-font-smoothing: antialiased;
  color: var(--black);
  padding: 24px 0;
}
@media (max-width: 767px) {
  .order__subtitle {
    font-size: 26px;
    line-height: 28px;
    letter-spacing: -0.78px;
  }
}

@media (min-width: 1024px) and (hover: hover) and (pointer: fine) {
  .order__email:hover,
  .order__cart-link:hover {
    opacity: 0.7;
  }
  .order__link:hover {
    color: var(--black);
  }
}
@media (max-width: 1024px) {
  .order {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 150px;
  }
  .order__message {
    padding-bottom: 0;
    border-right: none;
  }
  .order__message .container {
    gap: 80px;
    padding: 0 24px;
  }
  .order__cart-link svg {
    width: 32px;
  }
  .order__your-order {
    min-width: unset;
  }
}
@media (max-width: 767px) {
  .order {
    gap: 80px;
  }
  .order__help {
    margin-top: 16px;
  }
  .order__message {
    padding-top: 22px;
  }
  .order__message .container {
    gap: 40px;
  }
  .order__subtitle {
    padding: 16px 0;
  }
}
.account {
  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;
}

#account .woocommerce {
  height: 100%;
}

.account__top-bar {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.account__top-bar .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.account__subtitle,
.account__exit,
.account__login {
  font-family: "Atlas Grotesk", sans-serif;
  font-weight: 400;
  font-size: 44px;
  line-height: 48px;
  letter-spacing: -1.76px;
  -webkit-font-smoothing: antialiased;
  color: var(--black);
}
@media (max-width: 767px) {
  .account__subtitle,
  .account__exit,
  .account__login {
    font-size: 26px;
    line-height: 28px;
    letter-spacing: -0.78px;
  }
}

.account__user {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}

.account__login {
  color: var(--tertiary);
}

.account__purchases {
  padding: 40px 0;
  margin-bottom: 80px;
}

.account__purchases-empty {
  height: 100%;
  min-height: 350px;
}
.account__purchases-empty .container {
  height: 100%;
  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;
}

.account__text {
  font-family: "Atlas Grotesk", sans-serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 36px;
  letter-spacing: -1.12px;
  -webkit-font-smoothing: antialiased;
  color: var(--secondary);
  text-align: center;
}
@media (max-width: 767px) {
  .account__text {
    font-size: 18px;
    line-height: 23px;
    letter-spacing: -0.54px;
  }
}

@media (max-width: 1024px) {
  .account__subtitle,
  .account__exit,
  .account__login {
    font-size: 28px;
    line-height: 36px;
    letter-spacing: -1.12px;
  }
}
@media (max-width: 767px) {
  .account__top-bar {
    padding-top: 16px;
    padding-bottom: 12px;
  }
  .account__subtitle,
  .account__exit,
  .account__login {
    font-size: 13px;
    line-height: 17px;
    letter-spacing: 0;
  }
  .account__user {
    gap: 15px;
  }
  .account__purchases {
    padding: 24px 0;
  }
  .account__purchases-empty {
    min-height: 250px;
  }
}
@media (max-width: 480px) {
  .account__purchases-empty {
    min-height: unset;
    aspect-ratio: 1/1;
  }
}
.error-404 {
  height: 100%;
}
.error-404 .container {
  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;
  gap: 8px;
  height: 100%;
}

.error-404__title {
  font-family: "Atlas Grotesk", sans-serif;
  font-weight: 400;
  font-size: 80px;
  line-height: 1;
  letter-spacing: -4.8px;
  -webkit-font-smoothing: antialiased;
  color: var(--black);
}
@media (max-width: 767px) {
  .error-404__title {
    font-size: 28px;
    line-height: 32px;
    letter-spacing: -1.12px;
  }
}

.error-404__link {
  font-family: "Atlas Grotesk", sans-serif;
  font-weight: 400;
  font-size: 80px;
  line-height: 1;
  letter-spacing: -4.8px;
  -webkit-font-smoothing: antialiased;
  color: var(--secondary);
}
@media (max-width: 767px) {
  .error-404__link {
    font-size: 28px;
    line-height: 32px;
    letter-spacing: -1.12px;
  }
}

.privacy-policy {
  padding-bottom: 80px;
}

.privacy-policy__title {
  font-family: "Atlas Grotesk", sans-serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 36px;
  letter-spacing: -1.12px;
  -webkit-font-smoothing: antialiased;
  color: var(--black);
  font-weight: bold;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .privacy-policy__title {
    font-size: 18px;
    line-height: 23px;
    letter-spacing: -0.54px;
  }
}

.privacy-policy__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}

.privacy-policy__item-title,
.privacy-policy__text,
.privacy-policy__list {
  font-family: "Atlas Grotesk", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.6px;
  -webkit-font-smoothing: antialiased;
  color: var(--black);
}
@media (max-width: 767px) {
  .privacy-policy__item-title,
  .privacy-policy__text,
  .privacy-policy__list {
    font-size: 14px;
    line-height: 19px;
    letter-spacing: 0;
  }
}

.privacy-policy__item-title {
  font-weight: bold;
  margin-bottom: 16px;
}

.privacy-policy__text:not(:last-child) {
  margin-bottom: 8px;
}
.privacy-policy__text a {
  color: var(--black);
}
.privacy-policy__text:has(+ .privacy-policy__list) {
  margin-bottom: 4px;
}

.privacy-policy__list {
  list-style-type: none;
  padding-left: 22px;
  margin-bottom: 8px;
}
.privacy-policy__list li:before {
  content: "•";
  color: var(--black);
  display: inline-block;
  margin-right: 10px;
}

@media (min-width: 1024px) and (hover: hover) and (pointer: fine) {
  .privacy-policy__text a:hover {
    opacity: 0.7;
  }
}
@media (max-width: 767px) {
  .privacy-policy {
    padding-top: 10px;
  }
  .privacy-policy__title {
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 24px;
  }
  .privacy-policy__item-title,
  .privacy-policy__text,
  .privacy-policy__list {
    font-size: 16px;
    line-height: 22px;
  }
  .privacy-policy__items {
    gap: 24px;
  }
  .privacy-policy__item-title {
    margin-bottom: 12px;
  }
  .privacy-policy__text:has(+ .privacy-policy__list) {
    margin-bottom: 3px;
  }
  .privacy-policy__list {
    padding-left: 16px;
  }
}