body {
  display: flex;
  flex-direction: column;
  font-family: 'Involve', sans-serif;
  margin: 0;
  padding: 0;
  background-color: var(--grey-bg-1);
}

#app {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  position: relative;
  color: var(--white);
  min-height: 100vh;
}

#block-animate-page-transition {
  display: block;
  background-color: var(--grey-bg-1);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
  width: 100%;
  height: 100%;
  opacity: 1;
  transition: 0.25s ease;
}

button {
  padding: 0;
  margin: 0;
  border: none;
}

h1, h2, h3, h4, h5 {
  padding: 0;
  margin: 0;
}

input, textarea {
  font-family: 'Involve', sans-serif;;
}

.body-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 151px;
  padding-bottom: 120px;
}

.main-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background-color: var(--black-op-20);
  backdrop-filter: blur(50px);
  width: 1180px;
  padding: 16px;
  border-radius: 16px;
  position: fixed;
  top: 16px;
  z-index: 20;
}

.main-header .main-header__content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.main-header .main-header__content.main-header__content_mobile {
  display: none;
}

.main-header .logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.main-header .header-navigation {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.main-header .header-navigation .text {
  padding: 4px 8px;
  cursor: pointer;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  transition: 0.5s ease;
  border-radius: 16px;
  text-decoration: none;
}

.main-header .header-navigation a {
  text-decoration: none;
  color: var(--white);
}

.main-header .header-navigation .text:not(:first-child) {
  margin-left: 8px;
}

.main-header .header-navigation .text:not(:last-child) {
  margin-right: 8px;
}

.main-header .header-navigation .text:hover {
  color: var(--green-1);
}

.modal-notification {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 32px;
  background: rgba(0, 0, 0, 0.35);
}

.modal-notification.visible {
  opacity: 1;
  visibility: visible;
}

.modal-notification .modal {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--grey-2);
  color: var(--white);
  padding: 40px;
  border-radius: 32px;
  width: 480px;
}

.modal-notification .modal-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.modal-notification .modal-wrapper .modal-wrapper__header {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.modal-notification .modal-wrapper .modal-wrapper__header .text_title {
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%; /* 35.2px */
}

.modal-notification .modal-wrapper .modal-wrapper__header .text_title.text_subscribe_sliced {
  max-width: 300px;
}

.modal-notification .modal-wrapper .qr-image {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  border-radius: 16px;
  overflow: hidden;
  background-color: var(--white);
}

.modal-notification .modal-wrapper .qr-image img {
  width: 380px;
  height: auto;
}

.modal-notification .modal-wrapper .button_close {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  position: absolute;
  z-index: 2;
  right: 0;
  top: 0;
  background-color: transparent;
  transition: 0.5s ease;
}

.modal-notification .modal-wrapper .button_close svg {
  width: 28px;
  height: auto;
}

.modal-notification .modal-wrapper .button_close svg path {
  stroke: var(--grey-4);
}

.modal-notification .modal-wrapper .button_close:hover svg path {
  stroke: var(--white);
}

.modal-notification .modal-wrapper .button_close svg path {
  transition: 0.5s ease;
}

.modal-notification .modal-wrapper .modal-wrapper__content {
  margin-top: 16px;
}

.modal-notification .modal-wrapper .modal-wrapper__content .text_content {
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.modal-notification .modal-wrapper .modal-wrapper__content .text_content a {
  color: var(--green-1);
  text-decoration: none;
  cursor: pointer;
  transition: 0.5s ease;
}

.modal-notification .modal-wrapper .modal-wrapper__content .text_content a:hover {
  color: var(--green-2);
}

.modal-notification .modal-wrapper .modal-wrapper__management {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
  width: 100%;
}

.modal-notification .modal-wrapper .button_accept {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  border: 1px solid;
  height: 56px;
  width: 100%;
  border-radius: 16px;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  cursor: pointer;
  transition: 0.5s ease;
}

.modal-notification .modal-wrapper .button_accept_theme_green {
  background-color: var(--green-1);
  color: var(--grey-2);
  border-color: var(--green-1);
}

.modal-notification .modal-wrapper .button_accept_theme_green:hover {
  background-color: var(--green-2);
  border-color: var(--green-2);
}

.modal-notification .modal-wrapper .button_accept_theme_white {
  background-color: transparent;
  color: var(--green-1);
  border-color: var(--green-1);
}

.modal-notification .modal-wrapper .button_accept_theme_white:hover {
  background-color: var(--green-1);
  border-color: var(--green-1);
  color: var(--grey-2);
}

.default-modal {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  z-index: 30;
}

.body-content_docs {
  display: flex;
  flex-direction: column;
}

.body-content_docs .docs-content {
  display: flex;
  flex-direction: column;
  width: calc(880px - 68px * 2);
  border-radius: 32px;
  padding: 32px 68px;
  background-color: var(--white);
  color: var(--grey-2);
}

.body-content_docs .docs-content .docs-content__title {
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%; /* 35.2px */
}

.body-content_docs .docs-content .docs-content__text {
  margin-top: 16px;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%; /* 22.4px */
}

.body-content_docs .docs-content .docs-content__text a {
  cursor: pointer;
  color: var(--grey-2);
  transition: 0.5s ease;
  text-decoration: none;
}

.body-content_docs .docs-content .docs-content__text a:hover {
  text-decoration: underline;
  color: var(--green-2);
}

.footer {
  width: 100%;
}

.preset-slider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 120px;
}

.preset-slider .preset-slider__text-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.preset-slider .preset-slider__text-content .text_title {
  font-size: 64px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%; /* 70.4px */
}

.preset-slider .preset-slider__text-content .text_h5 {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 16px;
}

.preset-slider .swiper-preset-slider .swiper-slide {
  width: 140px;
  height: 80px;
  border-radius: 8px;
  transition: 0.5s ease;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin: 0 10px;
  opacity: 0.5;
}

.preset-slider .swiper-preset-slider .swiper-slide.swiper-slide-active {
  opacity: 1;
}

.preset-slider .slides-container__wrapper {
  width: calc(100% - 160px - 40px);
}

.preset-slider .slider {
  width: 1180px;
  display: flex;
  flex-direction: column;
  margin-top: 40px;
}

.preset-slider .slider .main-slide {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 250px 0px rgba(2, 228, 20, 0.20);
  width: 100%;
}

.preset-slider .slider .main-slide .slide {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid var(--white);
  box-sizing: border-box;
  border-radius: 16px;
  width: 100%;
  height: 664px;
  transition: 0.5s ease;
}

.preset-slider .slider .slides-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-top: 35px;
}

.preset-slider .slider .slides-container .slider-button {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--white);
  transition: 0.5s ease;
  width: 80px;
  height: 80px;
  cursor: pointer;
}

.preset-slider .slider .slides-container .slider-button svg {
  width: 24px;
  height: 24px;
}

.preset-slider .slider .slides-container .slider-button:hover {
  background-color: var(--green-1);
}

.preset-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 380px;
  height: 670px;
  border-radius: 16px;
  border: 1px solid var(--white);
  position: relative;
  padding: 24px;
  overflow: hidden;
}

.presets .preset-card.preset-card_disabled {
  opacity: 0.5;
}

.preset-card.preset-card_disabled .price {
  z-index: -1;
  opacity: 0;
}

.preset-card.preset-card_disabled {
  color: var(--grey-4);
}

.preset-card.preset-card_disabled .tags .tag {
  color: var(--grey-4);
}

.preset-card.preset-card_disabled .price .price__current {
  color: var(--grey-4);
}

.preset-card.preset-card_disabled .button_theme_buy {
  background-color: var(--grey-4);
  cursor: default;
}

.preset-card.preset-card_disabled .button_theme_buy:hover {
  background-color: var(--grey-4);
  cursor: default;
}

.preset-card .preset-card__tag {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background-color: var(--white);
  height: 37px;
  padding: 0 10px;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: var(--grey-2);
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 1;
}

.preset-card .preset-card__image {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.preset-card .preset-card__image .background-shadow {
  height: 200px;
  width: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 10%, rgba(0, 0, 0, 1) 27%);
}

.preset-card .preset-card__content {
  display: flex;
  flex-direction: column;
  z-index: 1;
}

.preset-card .text_title {
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%; /* 35.2px */
}

.preset-card .tags {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 10px;
}

.preset-card .tags .tag {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  border-radius: 16px;
  background-color: var(--grey-3);
  height: 33px;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: var(--white);
}

.preset-card .tags .tag:not(:first-child) {
  margin-left: 10px;
}

.preset-card .price {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 16px;
}

.preset-card .price .price__current {
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%; /* 35.2px */
  color: var(--white);
}

.preset-card .price .price__old {
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 28.8px */
  text-decoration: line-through;
  margin-left: 8px;
  color: var(--grey-3);
}

.preset-card .button_theme_buy {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  background-color: var(--green-1);
  height: 56px;
  width: 100%;
  border-radius: 16px;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  transition: 0.5s ease;
  cursor: pointer;
}

.preset-card .button_theme_buy:hover {
  background-color: var(--green-2);
}

@media all and (max-width: 1440px) {
  .body-content {
    padding: 140px 0 100px 0;
  }

  .main-header {
    width: 980px;
    padding: 14px;
    border-radius: 14px;
  }

  .main-header .logo img {
    width: auto;
    height: 34px;
  }

  .main-header .header-navigation .text {
    padding: 2px 6px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 14px;
  }

  .main-header .header-navigation .text:not(:first-child) {
    margin-left: 6px;
  }

  .main-header .header-navigation .text:not(:last-child) {
    margin-right: 6px;
  }

  .modal-notification .modal {
    padding: 32px;
    border-radius: 28px;
    width: 400px;
  }

  .modal-notification .modal-wrapper .modal-wrapper__header .text_title {
    font-size: 26px;
  }

  .modal-notification .modal-wrapper .modal-wrapper__header .text_title.text_subscribe_sliced {
    max-width: 260px;
  }

  .modal-notification .modal-wrapper .qr-image {
    margin-top: 14px;
  }

  .modal-notification .modal-wrapper .qr-image img {
    width: 300px;
    height: auto;
  }

  .modal-notification .modal-wrapper .button_close {
    width: 32px;
    height: 32px;
  }

  .modal-notification .modal-wrapper .button_close svg {
    width: 26px;
    height: auto;
  }

  .modal-notification .modal-wrapper .modal-wrapper__content {
    margin-top: 14px;
  }

  .modal-notification .modal-wrapper .modal-wrapper__content .text_content {
    font-size: 18px;
  }

  .modal-notification .modal-wrapper .modal-wrapper__management {
    margin-top: 24px;
  }

  .modal-notification .modal-wrapper .button_accept {
    height: 52px;
    border-radius: 12px;
    font-size: 16px;
  }

  .body-content_docs .docs-content {
    width: 700px;
    border-radius: 28px;
    padding: 28px 52px;
  }

  .body-content_docs .docs-content .docs-content__title {
    font-size: 28px;
  }

  .body-content_docs .docs-content .docs-content__text {
    margin-top: 14px;
    font-size: 15px;
  }

  .preset-slider {
    margin-top: 100px;
  }

  .preset-slider .preset-slider__text-content .text_title {
    font-size: 52px;
  }

  .preset-slider .preset-slider__text-content .text_h5 {
    font-size: 16px;
    margin-top: 14px;
  }

  .preset-slider .swiper-preset-slider .swiper-slide {
    width: 130px;
    height: 74px;
    border-radius: 8px;
    margin: 0 10px;
  }

  .preset-slider .slides-container__wrapper {
    width: calc(100% - 160px - 40px);
  }

  .preset-slider .slider {
    width: 1000px;
    display: flex;
    flex-direction: column;
    margin-top: 36px;
  }

  .preset-slider .slider .main-slide {
    box-shadow: 0px 0px 220px 0px rgba(2, 228, 20, 0.20);
  }

  .preset-slider .slider .main-slide .slide {
    height: 640px;
    transition: 0.5s ease;
  }

  .preset-slider .slider .slides-container {
    margin-top: 32px;
  }

  .preset-slider .slider .slides-container .slider-button {
    width: 74px;
    height: 74px;
  }

  .preset-slider .slider .slides-container .slider-button svg {
    width: 24px;
    height: 24px;
  }

  .preset-card {
    width: 300px;
    height: 600px;
    margin: 0 16px;
  }

  .preset-card .preset-card__tag {
    border-radius: 14px;
    height: 34px;
    padding: 0 10px;
    font-size: 15px;
    top: 20px;
    left: 20px;
  }

  .preset-card .preset-card__image .background-shadow {
    height: 180px;
  }

  .preset-card .text_title {
    font-size: 28px;
  }

  .preset-card .tags .tag {
    padding: 0 8px;
    border-radius: 14px;
    height: 32px;
    font-size: 15px;
  }

  .preset-card .tags .tag:not(:first-child) {
    margin-left: 8px;
  }

  .preset-card .price {
    margin-top: 14px;
  }

  .preset-card .price .price__current {
    font-size: 28px;
  }

  .preset-card .price .price__old {
    font-size: 20px;
    margin-left: 8px;
  }

  .preset-card .button_theme_buy {
    margin-top: 8px;
    height: 52px;
    width: 100%;
    border-radius: 12px;
    font-size: 16px;
  }
}

@media all and (max-width: 1160px) {
  .body-content {
    padding: 120px 0 100px 0;
  }

  .main-header {
    width: 860px;
    padding: 14px;
  }

  .preset-slider .slider {
    width: 900px;
  }

  .preset-card {
    width: 240px;
    height: 500px;
    margin: 0 10px;
    padding: 14px;
  }

  .preset-card .preset-card__tag {
    border-radius: 12px;
    height: 32px;
    padding: 0 10px;
    font-size: 14px;
    top: 14px;
    left: 14px;
  }

  .preset-card .preset-card__image .background-shadow {
    height: 170px;
  }

  .preset-card .text_title {
    font-size: 24px;
  }

  .preset-card .tags {
    margin-top: 8px;
  }

  .preset-card .tags .tag {
    padding: 0 8px;
    border-radius: 10px;
    height: 30px;
    font-size: 14px;
  }

  .preset-card .price {
    margin-top: 14px;
  }

  .preset-card .price .price__current {
    font-size: 24px;
  }

  .preset-card .price .price__old {
    font-size: 18px;
    margin-left: 8px;
  }

  .preset-card .button_theme_buy {
    margin-top: 8px;
    height: 48px;
    width: 100%;
    border-radius: 12px;
    font-size: 15px;
  }

  .preset-slider .slider .main-slide .slide {
    height: 580px;
  }
}

@media all and (max-width: 960px) {
  .main-header {
    width: 680px;
  }

  .body-content_docs .docs-content {
    width: calc(700px - 64px);
    border-radius: 28px;
    padding: 28px 32px;
  }

  .preset-slider .slider {
    width: 700px;
  }

  .preset-slider .slider .main-slide .slide {
    height: 400px;
  }

  .preset-card {
    width: 220px;
    height: 480px;
    margin: 0 8px;
    padding: 12px;
  }

  .preset-card .preset-card__tag {
    border-radius: 10px;
    height: 30px;
    padding: 0 8px;
    font-size: 12px;
    top: 12px;
    left: 12px;
  }

  .preset-card .tags .tag {
    padding: 0 7px;
    border-radius: 10px;
    height: 28px;
    font-size: 12px;
  }
}

@media all and (max-width: 720px) {
  .main-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: calc(100% - 32px);
    border-radius: 0 0 14px 14px;
    padding: 16px 16px 0 16px;
    top: 0;
  }

  .main-header .logo img {
    width: auto;
    height: 32px;
  }

  .main-header .header-navigation .text {
    padding: 0;
    font-size: 18px;
  }

  .main-header .header-navigation .text:hover {
    background-color: transparent;
  }

  .main-header .main-header__content_full {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
  }

  .main-header.opened .main-header__content_full {
    max-height: 250px;
  }

  .main-header .main-header__content_mobile {
    margin-bottom: 16px;
  }

  .main-header .buttons-management {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-right: -16px;
  }

  .main-header .buttons-management .button__theme_menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    cursor: pointer;
    border-radius: 8px;
    position: relative;
  }

  .main-header .buttons-management .svg-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: 0.5s ease;
    position: absolute;
    left: 0;
    top: 0;
  }

  .main-header .buttons-management .svg-wrapper svg path {
    stroke: var(--white);
  }

  .main-header .buttons-management .button__theme_menu .svg-wrapper {
    opacity: 0;
  }

  .main-header .buttons-management .button__theme_menu .svg-wrapper.svg-wrapper_open {
    opacity: 1;
  }

  .main-header.opened .buttons-management .button__theme_menu .svg-wrapper.svg-wrapper_open {
    opacity: 0;
  }

  .main-header.opened .buttons-management .button__theme_menu .svg-wrapper.svg-wrapper_close {
    opacity: 1;
  }

  .main-header .main-header__content.main-header__content_mobile {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .main-header .main-header__content.main-header__content_full .logo {
    display: none;
  }

  .main-header .main-header__content {
    justify-content: flex-end;
  }

  .main-header .header-navigation {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin: 8px 0 40px 0;
  }

  .main-header .header-navigation .text:not(:first-child) {
    margin-left: 0;
    margin-top: 24px;
  }

  .main-header .header-navigation .text:not(:last-child) {
    margin-right: 0;
  }

  .body-content {
    padding: 116px 16px 40px 16px;
    width: calc(100% - 32px);
  }

  .modal-notification .modal {
    padding: 24px 16px 16px 16px;
    border-radius: 24px;
    width: calc(100vw - 32px - 32px);
  }

  .modal-notification .modal-wrapper .modal-wrapper__header .text_title.text_subscribe_sliced {
    max-width: 100%;
  }

  .modal-notification .modal-wrapper .modal-wrapper__header .text_title {
    font-size: 18px;
    font-weight: 600;
    margin-right: 40px;
  }

  .modal-notification .modal-wrapper .modal-wrapper__content {
    margin-top: 10px;
  }

  .modal-notification .modal-wrapper .modal-wrapper__content .text_content {
    font-size: 15px;
  }

  .modal-notification .modal-wrapper .button_close {
    width: 28px;
    height: 28px;
  }

  .modal-notification .modal-wrapper .button_close:hover {
    background-color: transparent;
  }

  .modal-notification .modal-wrapper .button_close svg {
    width: 24px;
    height: auto;
  }

  .modal-notification .modal-wrapper .modal-wrapper__management {
    margin-top: 16px;
  }

  .modal-notification .modal-wrapper .button_accept {
    height: 39px;
    border-radius: 8px;
    font-size: 14px;
  }

  .modal-notification .modal-wrapper .qr-image {
    margin-top: 16px;
  }

  .modal-notification .modal-wrapper .qr-image img {
    width: calc(100% - 32px);
    height: auto;
  }

  .body-content_docs .docs-content {
    width: calc(100% - 64px);
    border-radius: 24px;
    padding: 40px 16px;
  }

  .body-content_docs .docs-content .docs-content__title {
    font-size: 18px;
  }

  .body-content_docs .docs-content .docs-content__text {
    margin-top: 16px;
    font-size: 15px;
  }

  .preset-slider {
    margin-top: 40px;
    width: 100%;
  }

  .preset-slider .preset-slider__text-content .text_title {
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 110%; /* 35.2px */
    text-align: center;
  }

  .preset-slider .preset-slider__text-content .text_h5 {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%; /* 22.4px */
    text-align: center;
    width: 300px;
  }

  .preset-slider .slider {
    width: 100%;
    margin-top: 32px;
  }

  .preset-slider .slider .main-slide {
    box-shadow: 0px 0px 250px 0px rgba(2, 228, 20, 0.20);
    border-radius: 16px;
  }

  .preset-slider .slider .main-slide .slide {
    width: 100%;
    height: 60vw;
  }

  .preset-slider .slides-container__wrapper {
    width: calc(100% - 84px - 32px);
  }

  .preset-slider .slider .slides-container {
    margin-top: 16px;
  }

  .preset-slider .slider .slides-container .slider-button {
    width: 42px;
    height: 42px;
  }

  .preset-slider .slider .slides-container .slider-button svg {
    width: 18px;
    height: 18px;
  }

  .preset-slider .swiper-preset-slider .swiper-slide {
    width: 76px;
    height: 42px;
    border-radius: 4px;
    margin: 0 5px;
  }

  .preset-card {
    width: 212px;
    height: 430px;
    margin: 0 5px;
    border-radius: 12px;
    padding: 16px;
  }

  .preset-card .preset-card__tag {
    border-radius: 10px;
    height: 26px;
    padding: 0 8px;
    font-size: 10px;
    top: 16px;
    left: 16px;
  }

  .preset-card .tags .tag {
    padding: 0 8px;
    border-radius: 10px;
    height: 22px;
    font-size: 10px;
  }

  .preset-card .tags .tag:not(:first-child) {
    margin-left: 6px;
  }

  .preset-card .price {
    margin-top: 12px;
  }

  .preset-card .button_theme_buy {
    margin-top: 8px;
    height: 43px;
    border-radius: 12px;
    font-size: 14px;
  }
}
