/*==========================================================================
Start styles
============================================================================*/
* {
  padding: 0;
  margin: 0;
  border: 0;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  -webkit-tap-highlight-color: transparent;
  scrollbar-color: rgba(0, 0, 0, 0.2) #f2f2f2;
  scrollbar-width: thin;
}
*::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.2);
}
*::-webkit-scrollbar-track {
  background-color: #f2f2f2;
}
*::-webkit-scrollbar-button {
  display: none;
  background-color: rgba(0, 0, 0, 0.2);
}
*::-webkit-scrollbar {
  width: 8px;
}

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

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

a,
button {
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  -webkit-tap-highlight-color: transparent;
  background: transparent;
  font-family: inherit;
  color: inherit;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
  max-width: 100%;
  height: auto;
}

input,
textarea {
  font-family: inherit;
  color: inherit;
  border-radius: 0;
  resize: none;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

input[type=number]::-ms-clear,
input[type=number]::-ms-expand {
  display: none;
}

@font-face {
  font-family: TildaSans;
  font-display: swap;
  src: url("../fonts/TildaSans-Medium.woff2") format("woff2"), url("../fonts/TildaSans-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: TildaSans;
  font-display: swap;
  src: url("../fonts/TildaSans-Regular.woff2") format("woff2"), url("../fonts/TildaSans-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: TildaSans;
  font-display: swap;
  src: url("../fonts/TildaSans-Bold.woff2") format("woff2"), url("../fonts/TildaSans-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
/*==========================================================================
Vars
============================================================================*/
:root {
  --color-main-bg: #fbfbfb;
  --color-text: #0b0b0b;
  --color-text-secondary: #5b6770;
  --color-primary: #37b994;
  --color-secondary: #93c9b7;
  --font-main: "TildaSans", TildaSans, sans-serif;
  --font-size-base: 16px;
  --font-line-height: 140%;
  --container-width: 1296px;
}

/*==========================================================================
Templates
============================================================================*/
/*==========================================================================
Settings
============================================================================*/
html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
  scroll-padding: 64px;
}

body {
  min-height: 100%;
  height: 100%;
  font-family: var(--font-main);
  color: var(--color-text);
  font-size: var(--font-size-base);
  background: var(--color-main-bg);
  position: relative;
}
body::after {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(74, 74, 74, 0.66);
  pointer-events: none;
  transition: all 0.5s ease;
  opacity: 0;
  z-index: 2;
}
body.no-scroll {
  overflow: hidden;
}
body.no-scroll::after {
  opacity: 1;
}

.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 1 auto;
}

.container {
  width: min(100% - 80px, var(--container-width));
  margin-inline: auto;
}
@media (width < 1000px) {
  .container {
    width: calc(100% - 40px);
  }
}
@media (width < 767px) {
  .container {
    width: calc(100% - 24px);
  }
}

/*==========================================================================
Components
============================================================================*/
/*==========================================================================
Titles
============================================================================*/
.page-title {
  font-size: 40px;
  line-height: 115%;
  font-weight: 700;
}
@media (width < 1000px) {
  .page-title {
    font-size: 34px;
  }
}
@media (width < 550px) {
  .page-title {
    font-size: 24px;
    line-height: 108.333333%;
  }
}

.section-title {
  font-size: 38px;
  font-weight: 700;
  line-height: 115.789474%;
}
@media (width < 1000px) {
  .section-title {
    font-size: 32px;
  }
}
@media (width < 550px) {
  .section-title {
    font-size: 22px;
    line-height: 109.090909%;
  }
}

.section-subtitle {
  font-size: 20px;
  line-height: 120%;
  color: var(--color-text-secondary);
  font-weight: 400;
}
.section-subtitle p:not(:last-child) {
  margin-bottom: 13px;
}
@media (width < 1000px) {
  .section-subtitle {
    font-size: 16px;
  }
  .section-subtitle p:not(:last-child) {
    margin-bottom: 10px;
  }
}
@media (width < 550px) {
  .section-subtitle {
    font-size: 14px;
    line-height: 128.571429%;
  }
  .section-subtitle p:not(:last-child) {
    margin-bottom: 8px;
  }
}

/*==========================================================================
Buttons
============================================================================*/
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 30px;
  border-radius: 40px;
  font-size: 15px;
  line-height: 120%;
  font-weight: 700;
  color: #fbfbfb;
  background: transparent;
  height: 48px;
  min-width: 249px;
  transition: all 0.2s ease-in-out;
  border: 2px solid transparent;
  position: relative;
  background: var(--color-primary);
  overflow: hidden;
  z-index: 2;
}
.btn::after {
  content: "";
  display: block;
  position: absolute;
  top: 2px;
  left: 2px;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  border-radius: 40px;
  background: var(--color-primary);
  z-index: -1;
  transition: all 0.2s ease-in-out;
  transform: scale(1.15);
}
.btn:active {
  background: var(--color-secondary);
}
.btn:active::after {
  background: var(--color-secondary);
}
@media (hover: hover) {
  .btn:hover {
    border-color: var(--color-primary);
    background: transparent;
  }
  .btn:hover::after {
    transform: scale(1);
  }
}
@media (width < 550px) {
  .btn {
    font-size: 14px;
  }
}

/*==========================================================================
Breadcrumbs
============================================================================*/
.breadcrumbs {
  margin: 50px 0 40px;
}
@media (width < 550px) {
  .breadcrumbs {
    margin: 26px 0 24px;
  }
}
.breadcrumbs__list {
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
}
.breadcrumbs__item {
  font-size: 15px;
  line-height: 126.666667%;
  color: var(--color-text);
}
.breadcrumbs__item:not(:last-child)::after {
  content: "/";
  color: inherit;
}
.breadcrumbs__item span {
  color: var(--color-text-secondary);
}
.breadcrumbs__item a {
  transition: all 0.2s ease-in-out;
}
@media (hover: hover) {
  .breadcrumbs__item a:hover {
    color: var(--color-primary);
  }
}
@media (width < 1000px) {
  .breadcrumbs__item {
    font-size: 14px;
  }
}
@media (width < 550px) {
  .breadcrumbs__item {
    font-size: 12px;
  }
}

/*==========================================================================
Form elements
============================================================================*/
.input {
  padding: 15px;
  display: flex;
  align-items: center;
  height: 54px;
  border-radius: 30px;
  border: 1px solid var(--color-text-secondary);
  font-size: 14px;
  background: transparent;
  width: 100%;
  color: var(--color-text);
  transition: all 0.2s ease-in-out;
}
.input.no-valid {
  border-color: #ff2d32;
}
.input::placeholder {
  color: var(--color-text-secondary);
}
@media (hover: hover) {
  .input:hover {
    border-color: var(--color-text);
  }
}
.input:focus {
  border-color: var(--color-text);
}
@media (width < 550px) {
  .input {
    height: 46px;
  }
}

.error-text {
  position: absolute;
  bottom: 0;
  left: 15px;
  font-size: 9px;
  line-height: 133.333333%;
  color: #ff2d32;
  background: #fbfbfb;
  transform: translateY(40%);
  padding-inline: 3px;
}

.no-valid {
  position: relative;
}
.no-valid input {
  border-color: #ff2d32;
}
.no-valid .error-text {
  display: block;
}

input[type=search]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  height: 20px;
  width: 20px;
  cursor: pointer;
  background: url(../img/icons/icon-close.svg) center/contain no-repeat;
  transition: all 0.3s ease;
}
@media (hover: hover) {
  input[type=search]::-webkit-search-cancel-button:hover {
    transform: rotate(-90deg);
  }
}

@media (width < 550px) {
  input[type=search]::-webkit-search-cancel-button {
    visibility: hidden;
    display: none;
  }
}
/*==========================================================================
Header
============================================================================*/
.header__body {
  padding: 20px 0;
  display: flex;
  align-items: center;
  gap: 74px;
  position: relative;
}
@media (width < 1000px) {
  .header__body {
    justify-content: space-between;
    padding: 15px 0 16px;
    gap: 20px;
  }
}
@media (width < 1000px) {
  .header__logo {
    max-width: 135px;
  }
}
.header__menu {
  flex: 1;
}
@media (width < 1000px) {
  .header__menu {
    position: absolute;
  }
}
.header__buttons {
  display: flex;
  gap: 20px;
}
@media (width < 1000px) {
  .header__buttons {
    flex: 0 0 60px;
    justify-content: flex-end;
    gap: 14px;
  }
}
.header__button {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  transition: all 0.2s ease-in-out;
}
.header__button svg {
  width: 32px;
  height: 32px;
  transition: all 0.2s ease-in-out;
}
@media (hover: hover) {
  .header__button:hover {
    color: #35cda2;
  }
}
@media (width < 1000px) {
  .header__button {
    width: 21px;
    height: 21px;
  }
}

/*==========================================================================
Menu
============================================================================*/
.menu__icon {
  display: none;
}
@media (width < 1000px) {
  .menu__icon {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex: 0 0 60px;
  }
  .menu__icon img {
    width: 20px;
    height: auto;
  }
}
@media (width < 1000px) {
  .menu__body {
    position: fixed;
    top: 0;
    left: 0;
    width: 288px;
    height: 100%;
    max-height: 100dvh;
    overflow-y: auto;
    z-index: 999;
    background: var(--color-main-bg);
    padding: 18px 16px;
    transform: translateX(-100%);
    transition: all 0.2s ease-in-out;
  }
  .menu__body.active {
    transform: translateX(0);
  }
}
.menu__body-logo {
  display: none;
}
@media (width < 1000px) {
  .menu__body-logo {
    display: block;
    margin-bottom: 42px;
  }
}
.menu__body-close {
  display: none;
}
@media (width < 1000px) {
  .menu__body-close {
    display: block;
    position: absolute;
    width: 21px;
    height: 21px;
    top: 25px;
    right: 22px;
  }
  .menu__body-close svg {
    width: 100%;
    height: 100%;
  }
}
.menu__list {
  display: flex;
  align-items: center;
  gap: 34px;
}
.menu__list a {
  font-size: 16px;
  font-weight: 500;
  line-height: 125%;
  position: relative;
}
.menu__list a::after {
  content: "";
  display: block;
  position: absolute;
  top: calc(100% + 3px);
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--color-text);
  transform-origin: right;
  transition: transform 0.2s ease-in-out;
  transform: scaleX(0);
}
@media (hover: hover) {
  .menu__list a:hover::after {
    transform-origin: left;
    transform: scaleX(1);
  }
}
@media (width < 1000px) {
  .menu__list {
    flex-direction: column;
    align-items: stretch;
  }
}
@media (width < 550px) {
  .menu__list {
    gap: 10px;
  }
  .menu__list a {
    font-size: 14px;
    line-height: 128.571429%;
  }
}

/*==========================================================================
Footer
============================================================================*/
.footer {
  background: var(--color-main-bg);
}
.footer__main {
  padding: 42px 0 55px;
  display: flex;
  gap: 48px;
  justify-content: space-between;
}
@media (width < 1200px) {
  .footer__main {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
@media (width < 767px) {
  .footer__main {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media (width < 550px) {
  .footer__main {
    padding: 70px 0 80px;
  }
}
.footer__logo {
  max-width: 277px;
}
@media (width < 1200px) {
  .footer__logo {
    grid-column: 1/-1;
  }
}
@media (width < 550px) {
  .footer__logo {
    max-width: 218px;
  }
}
.footer__support {
  flex: 1;
}
.footer__label {
  font-size: 16px;
  font-weight: 700;
  line-height: 125%;
  margin-bottom: 18px;
}
@media (width < 550px) {
  .footer__label {
    font-size: 14px;
  }
}
@media (width < 550px) {
  .footer__label {
    margin-bottom: 14px;
  }
}
.footer__support-text {
  margin-top: 22px;
  max-width: 413px;
  font-size: 16px;
  line-height: 125%;
  font-weight: 500;
  margin-bottom: 9px;
}
@media (width < 550px) {
  .footer__support-text {
    font-size: 14px;
    margin-top: 18px;
    margin-bottom: 14px;
  }
}
.footer__support-link {
  display: block;
  width: 32px;
  height: 32px;
  transition: all 0.2s ease-in-out;
}
.footer__support-link svg {
  width: 100%;
  height: 100%;
}
@media (hover: hover) {
  .footer__support-link:hover {
    color: var(--color-primary);
  }
}
.footer__menu {
  display: flex;
  gap: 68px;
}
@media (width < 550px) {
  .footer__menu {
    gap: 30px;
  }
}
.footer__menu-list li:not(:last-child) {
  margin-bottom: 8px;
}
.footer__menu-list a {
  font-size: 16px;
  line-height: 125%;
  font-weight: 500;
  position: relative;
  white-space: nowrap;
}
.footer__menu-list a::after {
  content: "";
  display: block;
  position: absolute;
  top: calc(100% + 3px);
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--color-text);
  transform-origin: right;
  transition: transform 0.2s ease-in-out;
  transform: scaleX(0);
}
@media (hover: hover) {
  .footer__menu-list a:hover::after {
    transform-origin: left;
    transform: scaleX(1);
  }
}
@media (width < 550px) {
  .footer__menu-list li:not(:last-child) {
    margin-bottom: 6px;
  }
  .footer__menu-list a {
    white-space: unset;
    font-size: 14px;
  }
}
.footer__copyright {
  padding-bottom: 33px;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  line-height: 125%;
}
@media (width < 550px) {
  .footer__copyright {
    padding-bottom: 16px;
    font-size: 12px;
  }
}

/*==========================================================================
Popups general
============================================================================*/
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  padding: 5rem 1.5rem;
  z-index: 99;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  max-height: 100vh;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.5s ease;
}
.popup.show {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.popup__body {
  width: 100%;
  max-width: 1280px;
  margin: auto;
  position: relative;
}

/*==========================================================================
Home
============================================================================*/
.help__body {
  padding-bottom: 50px;
}
@media (width < 550px) {
  .help__body {
    padding-bottom: 0;
  }
}
.help__head {
  display: flex;
  gap: 30px;
  justify-content: space-between;
}
@media (width < 1000px) {
  .help__head {
    flex-direction: column;
  }
}
.help__titles {
  max-width: 584px;
}
.help__title {
  margin-bottom: 20px;
}
.help__subtitle {
  margin-bottom: 14px;
}
@media (width < 550px) {
  .help__subtitle {
    margin-bottom: 8px;
  }
}
.help__links {
  display: flex;
  gap: 10px;
}
.help__link {
  display: block;
  width: 33px;
  height: 33px;
  transition: all 0.2s ease-in-out;
}
.help__link svg {
  width: 100%;
  height: 100%;
}
@media (hover: hover) {
  .help__link:hover {
    color: var(--color-primary);
  }
}
@media (width < 550px) {
  .help__link {
    width: 26px;
    height: 26px;
  }
}

.search {
  width: 526px;
}
@media (width < 600px) {
  .search {
    width: 100%;
    max-width: 241px;
  }
}
.search__form-area {
  position: relative;
  margin-bottom: 22px;
}
@media (width < 550px) {
  .search__form-area {
    margin-bottom: 20px;
  }
}
.search__input {
  width: 100%;
  height: 53px;
  font-size: 16px;
  line-height: 125%;
  padding: 16px 50px 16px 21px;
  border-radius: 15px;
  border: 1px solid var(--color-text-secondary);
  background: transparent;
}
.search__input::placeholder {
  color: var(--color-text-secondary);
}
@media (hover: hover) {
  .search__input:hover {
    border-color: var(--color-text);
  }
}
.search__input:focus {
  border-color: var(--color-text);
}
@media (width < 550px) {
  .search__input {
    height: 40px;
    font-size: 12px;
    padding: 12px 40px 12px 16px;
  }
}
.search__submit {
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  color: var(--color-text-secondary);
  transition: all 0.2s ease-in-out;
}
.search__submit svg {
  width: 100%;
  height: 100%;
}
@media (hover: hover) {
  .search__submit:hover {
    color: var(--color-text);
  }
}
@media (width < 550px) {
  .search__submit {
    width: 18px;
    height: 18px;
  }
}
.search__results {
  padding: 33px 36px;
  background: #f4f4f4;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.search__results a {
  font-size: 17px;
  line-height: 123.529412%;
  font-weight: 700;
  transition: all 0.2s ease-in-out;
}
@media (hover: hover) {
  .search__results a:hover {
    color: var(--color-primary);
  }
}
@media (width < 550px) {
  .search__results {
    padding: 12px;
    gap: 8px;
  }
  .search__results a {
    font-size: 12px;
    line-height: 133.333333%;
  }
}

/*==========================================================================
Download
============================================================================*/
.download {
  overflow: hidden;
}
.download__body {
  padding-bottom: 70px;
  display: flex;
  justify-content: space-between;
}
@media (width < 1000px) {
  .download__body {
    flex-direction: column;
    align-items: center;
    gap: 44px;
    padding-bottom: 0;
  }
}
.download__image {
  flex: 0 1 50%;
}
.download__info {
  flex: 0 0 426px;
  width: 426px;
  height: 414px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 40px 20px;
  position: relative;
  justify-self: center;
  transform: translateX(76px);
}
@media (width < 1500px) {
  .download__info {
    transform: translateX(0);
  }
}
@media (width < 767px) {
  .download__info {
    flex: 0 1 267px;
    width: 416px;
    height: 267px;
    position: relative;
    gap: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 66px;
  }
}
.download__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 176px;
  height: 176px;
  border-radius: 50%;
  background: var(--color-text-secondary);
  color: #fff;
  position: relative;
  transition: all 0.2s ease-in-out;
}
@media (hover: hover) {
  .download__button:hover {
    background: var(--color-primary);
  }
  .download__button:hover .download__button-icon {
    transform: translate(-50%, -50%) scale(0.9);
  }
}
@media (width < 767px) {
  .download__button {
    width: 112px;
    height: 112px;
  }
}
.download__button-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 63px;
  height: 63px;
  transform: translate(-50%, -50%);
  z-index: 2;
  transition: all 0.2s ease-in-out;
}
@media (width < 767px) {
  .download__button-icon {
    width: 40px;
    height: 40px;
  }
}
.download__button-text {
  width: 100%;
  height: 100%;
  transform: rotate(0deg);
  animation: rotate 10s linear infinite;
}
.download__button-text text {
  font-size: 21px;
  fill: #fff;
}
.download__text {
  grid-row: 2/3;
  position: relative;
  z-index: 2;
  max-width: 161px;
  text-align: center;
  margin: auto;
  font-size: 15px;
  line-height: 126.666667%;
  transform: translate(-10px, 5px);
}
@media (width < 767px) {
  .download__text {
    font-size: 10px;
    max-width: 103px;
    margin: 0;
    margin-inline: auto;
    position: absolute;
    bottom: 22px;
    left: calc(50% - 3px);
    transform: translateX(-50%);
  }
}
.download__figure {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.download__figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/*==========================================================================
Install
============================================================================*/
.install {
  overflow: hidden;
}
.install__body {
  padding: 70px 0;
}
.install__title {
  margin-bottom: 14px;
}
@media (width < 550px) {
  .install__title {
    margin-bottom: 16px;
  }
}
.install__subtitle {
  margin-bottom: 50px;
}
@media (width < 550px) {
  .install__subtitle {
    margin-bottom: 10px;
  }
}
.install__content {
  display: flex;
}
@media (width < 1000px) {
  .install__content {
    flex-direction: column;
    gap: 10px;
  }
}
.install__graphic {
  flex: 0 1 50%;
  position: relative;
}
@media (width < 1000px) {
  .install__graphic {
    max-width: 480px;
    margin-inline: auto;
  }
}
.install__bg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (width < 767px) {
  .install__bg {
    transform: translateX(7%);
  }
}
.install__image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (width < 767px) {
  .install__image img {
    max-width: 100px;
  }
}
.install__hand {
  transform-origin: 70% 20%;
  animation: handMove 8s ease-in-out infinite;
}
.install__steps {
  flex: 0 1 50%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.install__step {
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.07);
  background: #f4f4f4;
}
.install__step .btn {
  width: 100%;
  margin-top: 20px;
}
.install__step:nth-child(odd) {
  background: url(../img/icons/figure.svg) 99% 13px/124px 125px no-repeat, #f4f4f4;
}
@media (width < 550px) {
  .install__step:nth-child(odd) {
    background: url(../img/icons/figure.svg) 98% 7px/88px 88px no-repeat, #f4f4f4;
  }
}
.install__step-head {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
@media (width < 550px) {
  .install__step-head {
    gap: 14px;
  }
}
.install__step-num {
  font-family: Arial, sans-serif;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #d0eadf;
  font-size: 24.6px;
  color: var(--color-primary);
  font-weight: 900;
  line-height: 1;
}
@media (width < 550px) {
  .install__step-num {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    font-size: 22px;
  }
}
.install__step-name {
  font-size: 20px;
  line-height: 120%;
  font-weight: 700;
}
@media (width < 550px) {
  .install__step-name {
    font-size: 16px;
  }
}
.install__step-text {
  font-size: 16px;
  line-height: 125%;
  font-weight: 500;
  color: var(--color-text-secondary);
  padding-left: 15px;
  border-left: 1px solid var(--color-text-secondary);
}
@media (width < 550px) {
  .install__step-text {
    font-size: 12px;
    line-height: 133.333333%;
    padding-left: 5px;
  }
}

@keyframes handMove {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(-10vw, -20px) rotate(-10deg);
  }
  50% {
    transform: translate(-5vw, -40px) rotate(5deg);
  }
  75% {
    transform: translate(-15vw, -10px) rotate(-5deg);
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}
/*==========================================================================
Activation
============================================================================*/
.activation {
  position: relative;
  margin-bottom: 60px;
}
.activation__wrapper {
  background: #f4f4f4;
  border-radius: 180px 180px 180px 0;
  padding: 50px 64px;
  position: relative;
  overflow: hidden;
  margin-left: 38px;
}
@media (width < 1000px) {
  .activation__wrapper {
    margin-inline: 12px;
    padding: 60px 12px;
    border-radius: 140px;
  }
}
@media (width < 550px) {
  .activation__wrapper {
    border-radius: 100px 100px 100px 0;
  }
}
.activation__body {
  position: relative;
  z-index: 2;
}
.activation__row {
  display: flex;
  align-items: center;
  gap: 37px;
  max-width: 1172px;
  margin-inline: auto;
}
.activation__row:nth-child(even) {
  flex-direction: row-reverse;
}
.activation__row:not(:last-child) {
  margin-bottom: 47px;
}
@media (width < 1000px) {
  .activation__row {
    flex-direction: column;
    gap: 14px;
  }
  .activation__row:nth-child(even) {
    flex-direction: column;
  }
}
.activation__titles {
  flex: 1;
}
@media (width < 1000px) {
  .activation__titles {
    display: contents;
  }
}
.activation__title {
  margin-bottom: 14px;
}
@media (width < 1000px) {
  .activation__title {
    order: 1;
  }
}
@media (width < 550px) {
  .activation__title {
    margin-bottom: 16px;
  }
}
.activation__subtitle ul {
  padding-left: 20px;
}
.activation__subtitle ul li {
  list-style-type: disc;
}
.activation__subtitle ul li::marker {
  font-size: 12px;
}
@media (width < 1000px) {
  .activation__subtitle {
    order: 3;
  }
}
.activation__screen {
  flex: 0 0 39%;
}
.activation__screen img {
  transition: all 0.2s ease-in-out;
}
@media (hover: hover) {
  .activation__screen:hover img {
    transform: scale(1.05);
  }
}
@media (width < 1000px) {
  .activation__screen {
    order: 2;
  }
}
.activation__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 44%;
  aspect-ratio: 1/1;
  max-width: 588px;
}
.activation__bg svg {
  width: 100%;
  height: 100%;
  color: #e8e8e8;
}
@media (width < 550px) {
  .activation__bg {
    width: 80%;
  }
}
.activation__corner {
  position: absolute;
  top: 320px;
  left: 0;
  width: 854px;
  height: 912px;
  transform: translateX(-50%);
  z-index: -1;
}
@media (width < 1430px) {
  .activation__corner {
    display: none;
  }
}
@media (width < 550px) {
  .activation__corner {
    display: block;
    height: 363px;
    width: 461px;
    top: unset;
    bottom: 0;
    transform: translateX(-50%) translateY(50%);
  }
}

/*==========================================================================
Instruction
============================================================================*/
.instruction__body {
  padding: 70px 0;
}
@media (width < 550px) {
  .instruction__body {
    padding: 30px 0 0;
  }
}
.instruction__title {
  margin-bottom: 14px;
}
.instruction__subtitle {
  max-width: 677px;
}
.instruction__group {
  padding: 70px 0;
}
.instruction__group:first-child {
  padding-top: 50px;
}
@media (width < 1000px) {
  .instruction__group {
    padding: 50px 0;
  }
}
@media (width < 550px) {
  .instruction__group {
    padding: 20px 0;
  }
}
.instruction__group-title {
  font-size: 26px;
  font-weight: 700;
  line-height: 115.384615%;
  margin-bottom: 30px;
}
@media (width < 1000px) {
  .instruction__group-title {
    font-size: 22px;
  }
}
@media (width < 550px) {
  .instruction__group-title {
    font-size: 20px;
    margin-bottom: 24px;
  }
}
.instruction__group-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (width < 1000px) {
  .instruction__group-content {
    grid-template-columns: 1fr;
  }
}
@media (width < 550px) {
  .instruction__group-content {
    gap: 12px;
  }
}
.instruction__card {
  max-width: 856px;
  margin-inline: auto;
  width: 100%;
  border-radius: 20px;
  background: #f4f4f4;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.08);
  padding: 22px 22px 28px;
  position: relative;
  min-height: 458px;
  transition: all 0.2s ease-in-out;
  will-change: transform;
}
.instruction__card:nth-child(3), .instruction__card:nth-child(6) {
  grid-column: 1/-1;
}
@media (width < 1000px) {
  .instruction__card {
    max-width: 100%;
  }
}
@media (width < 550px) {
  .instruction__card {
    padding: 12px 12px 30px 12px;
    min-height: 298px;
  }
}
@media (hover: hover) {
  .instruction__card:hover {
    transform: scale(1.03);
  }
}
.instruction__card-num {
  position: absolute;
  top: 38px;
  left: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background: #fbfbfb;
  font-size: 24.6px;
  line-height: 1;
  color: var(--color-text-secondary);
  font-family: Arial, sans-serif;
  font-weight: 900;
  z-index: 5;
}
@media (width < 550px) {
  .instruction__card-num {
    top: 28px;
    left: 28px;
    width: 40px;
    height: 40px;
    font-size: 22px;
  }
}
.instruction__card-image {
  width: 100%;
  height: 254px;
  overflow: hidden;
  margin-bottom: 24px;
  border-radius: 20px;
  overflow: hidden;
}
.instruction__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (width < 550px) {
  .instruction__card-image {
    height: 188px;
    margin-bottom: 12px;
  }
}
.instruction__card-name {
  font-size: 20px;
  line-height: 120%;
  margin-bottom: 8px;
  font-weight: 700;
}
@media (width < 550px) {
  .instruction__card-name {
    font-size: 16px;
    margin-bottom: 6px;
  }
}
.instruction__card-text {
  color: var(--color-text-secondary);
  line-height: 125%;
}
.instruction__card-text img {
  width: 1.4cap;
  height: 1.4cap;
  vertical-align: middle;
}
@media (width < 550px) {
  .instruction__card-text {
    font-size: 12px;
    line-height: 133.333333%;
  }
}

/*==========================================================================
Requirements
============================================================================*/
.requirements__body {
  padding: 70px 0;
}
@media (width < 550px) {
  .requirements__body {
    padding-top: 0;
  }
}
.requirements__title {
  text-align: center;
  margin-bottom: 58px;
}
@media (width < 550px) {
  .requirements__title {
    margin-bottom: 44px;
  }
}
.requirements__cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px 1px;
  max-width: 971px;
  margin-inline: auto;
}
@media (width < 767px) {
  .requirements__cards {
    grid-template-columns: 1fr;
  }
}
.requirements__card {
  text-align: center;
}
.requirements__card-icon {
  margin-bottom: 22px;
}
@media (width < 550px) {
  .requirements__card-icon img {
    width: 40px;
    height: 40px;
  }
}
.requirements__card-text {
  font-size: 22px;
  line-height: 113.636364%;
  font-weight: 700;
  text-wrap: balance;
}
@media (width < 1000px) {
  .requirements__card-text {
    font-size: 20px;
  }
}
@media (width < 550px) {
  .requirements__card-text {
    font-size: 16px;
    line-height: 125%;
  }
}

@media (width > 1000px) {
  .requirements + .activation .activation__corner {
    top: 200px;
    width: 854px;
    height: 689px;
  }
}
@media (width > 1430px) {
  .requirements + .activation .activation__wrapper {
    padding: 116px;
  }
}
@media (width < 550px) {
  .requirements + .activation .activation__subtitle {
    width: 100%;
  }
  .requirements + .activation .activation__bg {
    transform: scaleX(-1);
  }
}

/*==========================================================================
Changelog
============================================================================*/
.changelog__body {
  padding: 40px 0 70px;
}
@media (width < 767px) {
  .changelog__body {
    padding: 10px 0 0;
  }
}
.changelog__title {
  margin-bottom: 50px;
}
@media (width < 767px) {
  .changelog__title {
    margin-bottom: 40px;
  }
}
.changelog__item {
  border-radius: 20px;
  background: #f4f4f4;
  padding: 30px 45px;
  display: flex;
  justify-content: space-between;
  gap: 162px;
}
.changelog__item:not(:last-child) {
  margin-bottom: 10px;
}
@media (width < 1200px) {
  .changelog__item {
    gap: 100px;
  }
}
@media (width < 767px) {
  .changelog__item {
    gap: 28px;
    padding: 20px 18px;
  }
}
.changelog__item-ver {
  font-size: 20px;
  line-height: 120%;
  font-weight: 700;
}
@media (width < 767px) {
  .changelog__item-ver {
    font-size: 16px;
  }
}
.changelog__item-descr {
  max-width: 496px;
  font-size: 18px;
  line-height: 122.222222%;
  color: var(--color-text-secondary);
}
@media (width < 1000px) {
  .changelog__item-descr {
    font-size: 16px;
  }
}
@media (width < 767px) {
  .changelog__item-descr {
    font-size: 12px;
    line-height: 133.333333%;
  }
}
.changelog__item-status {
  font-size: 18px;
  line-height: 122.222222%;
  color: var(--color-text-secondary);
  font-weight: 500;
}
@media (width < 1000px) {
  .changelog__item-status {
    font-size: 16px;
  }
}
@media (width < 767px) {
  .changelog__item-status {
    font-size: 12px;
  }
}

/*==========================================================================
price
============================================================================*/
.price__body {
  padding-bottom: 70px;
}
.price__title {
  max-width: 522px;
  margin-inline: auto;
  text-align: center;
  margin-bottom: 16px;
}
@media (width < 550px) {
  .price__title {
    margin-bottom: 14px;
  }
}
.price__subtitle {
  max-width: 551px;
  margin-inline: auto;
  text-align: center;
  margin-bottom: 50px;
}
@media (width < 550px) {
  .price__subtitle {
    margin-bottom: 40px;
  }
}
.price__cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
@media (width < 1200px) {
  .price__cards {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (width < 767px) {
  .price__cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
.price__card {
  border-radius: 20px;
  background: #f4f4f4;
  padding: 30px 28px 35px;
  height: auto;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.08);
}
.price__card.--popular {
  background: var(--color-primary);
  color: #fbfbfb;
}
.price__card.--popular .price__card-descr {
  color: #fbfbfb;
}
.price__card.--popular .btn {
  border-color: #fff;
  color: var(--color-primary);
  background: #fff;
}
.price__card.--popular .btn::after {
  background: #fff;
}
@media (hover: hover) {
  .price__card.--popular .btn:hover {
    background: var(--color-primary);
  }
}
@media (hover: hover) {
  .price__card:hover {
    transform: translateY(-6px);
  }
}
@media (width < 1200px) {
  .price__card.--popular {
    grid-column: span 2;
  }
}
@media (width < 767px) {
  .price__card.--popular {
    grid-column: span 1;
  }
}
@media (width < 550px) {
  .price__card {
    padding: 25px 20px 30px;
  }
}
.price__card-head {
  margin-bottom: 40px;
}
@media (width < 550px) {
  .price__card-head {
    margin-bottom: 30px;
  }
}
.price__card-days {
  font-size: 18px;
  line-height: 122.222222%;
  font-weight: 500;
  margin-bottom: 15px;
}
@media (width < 550px) {
  .price__card-days {
    font-size: 14px;
    margin-bottom: 10px;
  }
}
.price__card-price {
  font-size: 32px;
  line-height: 112.5%;
  font-weight: 700;
  margin-bottom: 15px;
  white-space: nowrap;
}
@media (width < 550px) {
  .price__card-price {
    font-size: 30px;
    margin-bottom: 10px;
  }
}
.price__card-button .btn {
  width: 100%;
  min-width: unset;
}
.price__card-descr {
  font-size: 14px;
  line-height: 128.571429%;
  color: var(--color-text-secondary);
}
@media (width < 550px) {
  .price__card-descr {
    min-height: 99px;
  }
}
.price__card-label {
  position: absolute;
  right: 10px;
  top: 0;
  background: #fff;
  padding: 4px 10px;
  border-radius: 10px;
  transform: translateY(-50%);
  font-size: 14px;
  line-height: 1;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--color-text);
  animation: jumping 3s linear infinite;
}
@media (width < 550px) {
  .price__card-label {
    top: 10px;
  }
}

@keyframes jumping {
  0%, 100% {
    transform: translateY(-50%);
  }
  50% {
    transform: translateY(-80%);
  }
}
/*==========================================================================
How to buy
============================================================================*/
.how__body {
  padding: 70px 0;
}
@media (width < 767px) {
  .how__body {
    padding: 0;
  }
}
.how__title {
  margin-bottom: 50px;
}
@media (width < 550px) {
  .how__title {
    margin-bottom: 20px;
  }
}
.how__content {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
@media (width < 1000px) {
  .how__content {
    flex-direction: column;
    gap: 60px;
  }
}
.how__steps {
  flex: 0 1 653px;
}
@media (width < 1000px) {
  .how__steps {
    flex: 1 1 auto;
  }
}
.how__step {
  border-radius: 20px;
  background: #f4f4f4;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.07);
  transition: all 0.2s ease-in-out;
}
.how__step:not(:last-child) {
  margin-bottom: 10px;
}
.how__step:nth-child(odd) {
  background-image: url(../img/icons/figure.svg);
  background-size: 56px 56px;
  background-position: 99% 8px;
  background-repeat: no-repeat;
}
@media (hover: hover) {
  .how__step:hover {
    transform: translateX(6px);
  }
}
@media (width < 550px) {
  .how__step {
    gap: 14px;
  }
  .how__step:not(:last-child) {
    margin-bottom: 15px;
  }
}
.how__step-num {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #d0eadf;
  color: var(--color-primary);
  font-size: 24.6px;
  line-height: 1;
  font-weight: 900;
  font-family: Arial, Helvetica, sans-serif;
}
@media (width < 550px) {
  .how__step-num {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    font-size: 22px;
  }
}
.how__step-text {
  font-size: 20px;
  line-height: 120%;
  font-weight: 700;
  text-wrap: balance;
}
@media (width < 550px) {
  .how__step-text {
    font-size: 16px;
    line-height: 112.5%;
  }
}
.how__info {
  flex: 0 1 552px;
}
@media (width < 1000px) {
  .how__info {
    flex: 1 1 auto;
  }
}
.how__info-title {
  font-size: 26px;
  line-height: 115.384615%;
  font-weight: 700;
  margin-bottom: 11px;
}
@media (width < 1000px) {
  .how__info-title {
    font-size: 22px;
  }
}
@media (width < 550px) {
  .how__info-title {
    font-size: 20px;
  }
}
.how__methods {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}
@media (width < 550px) {
  .how__methods {
    gap: 10px;
    margin-bottom: 30px;
  }
}
.how__method {
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}
@media (hover: hover) {
  .how__method:hover {
    transform: translateY(-3px);
  }
}
.how__button .btn {
  width: 100%;
}

/*==========================================================================
Faq
============================================================================*/
.faq__body {
  padding: 70px 0;
}
.faq__title {
  text-align: center;
  margin-bottom: 50px;
}
@media (width < 550px) {
  .faq__title {
    margin-bottom: 40px;
  }
}
.faq__items {
  max-width: 858px;
  margin-inline: auto;
}
.faq__item {
  border-radius: 10px;
  background: #f4f4f4;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.08);
  transition: all 0.2s ease-in-out;
}
.faq__item:not(:last-child) {
  margin-bottom: 10px;
}
.faq__item.active .faq__icon svg {
  transform: rotate(-45deg);
}
@media (hover: hover) {
  .faq__item:hover {
    box-shadow: 0 6px 6px rgba(0, 0, 0, 0.08);
  }
}
.faq__question {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
}
.faq__question-text {
  flex: 1;
  font-size: 18px;
  line-height: 122.222222%;
  font-weight: 500;
}
@media (width < 550px) {
  .faq__question-text {
    font-size: 14px;
    line-height: 128.571429%;
  }
}
.faq__icon {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: #fbfbfb;
  border-radius: 10px;
}
.faq__icon svg {
  width: 19px;
  height: 19px;
  transition: all 0.2s ease-in-out;
}
@media (width < 550px) {
  .faq__icon {
    flex: 0 0 26px;
    width: 26px;
    height: 26px;
    border-radius: 6.5px;
  }
  .faq__icon svg {
    width: 13px;
    height: 13px;
  }
}
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.2s ease-in-out;
}
.faq__answer-text {
  padding: 0 20px 20px 20px;
  font-size: 16px;
  line-height: 125%;
  color: var(--color-text-secondary);
  max-width: 90%;
}
@media (width < 550px) {
  .faq__answer-text {
    font-size: 14px;
  }
}

/*==========================================================================
Support
============================================================================*/
.support__body {
  padding: 50px 0;
}
@media (width < 767px) {
  .support__body {
    padding: 0;
  }
}
.support__wrapper {
  background: var(--color-primary);
  color: #fbfbfb;
  border-radius: 30px;
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
}
@media (width < 767px) {
  .support__wrapper {
    flex-direction: column;
    gap: 75px;
  }
}
.support__decore {
  flex: 0 0 294px;
}
@media (width < 1200px) {
  .support__decore {
    flex: 1 1 auto;
  }
  .support__decore img {
    height: 100%;
    width: auto;
  }
  .support__decore:nth-child(3) {
    text-align: right;
  }
}
@media (width < 767px) {
  .support__decore img {
    width: 100%;
    height: auto;
  }
}
.support__main {
  text-align: center;
}
@media (width < 1200px) {
  .support__main {
    transform: translateX(15%);
  }
}
@media (width < 767px) {
  .support__main {
    transform: none;
  }
}
.support__logo {
  max-width: 125px;
  margin-inline: auto;
  margin-bottom: 70px;
  opacity: 0.75;
}
@media (width < 767px) {
  .support__logo {
    display: none;
  }
}
.support__title {
  margin-bottom: 13px;
}
@media (width < 550px) {
  .support__title {
    margin-bottom: 6px;
  }
}
.support__subtitle {
  max-width: 370px;
  margin-inline: auto;
  margin-bottom: 50px;
  color: #f4f4f4;
}
@media (width < 550px) {
  .support__subtitle {
    margin-bottom: 38px;
    text-wrap: balance;
  }
}
.support__button .btn {
  border-color: #fff;
  color: var(--color-primary);
  background: #fff;
  width: 653px;
}
.support__button .btn::after {
  background: #fff;
}
@media (hover: hover) {
  .support__button .btn:hover {
    background: var(--color-primary);
  }
}
@media (width < 1600px) {
  .support__button .btn {
    width: 550px;
  }
}
@media (width < 1400px) {
  .support__button .btn {
    width: 100%;
  }
}

/*==========================================================================
Cart
============================================================================*/
.cart__title {
  margin-bottom: 50px;
}
@media (width < 550px) {
  .cart__title {
    margin-bottom: 30px;
  }
}
.cart__content {
  display: flex;
  gap: 134px;
}
@media (width < 1200px) {
  .cart__content {
    gap: 60px;
  }
}
@media (width < 1000px) {
  .cart__content {
    flex-direction: column;
  }
}
.cart__main {
  flex: 1;
  max-width: 636px;
}
@media (width < 1000px) {
  .cart__main {
    max-width: 100%;
  }
}
.cart__products {
  margin-bottom: 50px;
}
@media (width < 550px) {
  .cart__products {
    margin-bottom: 30px;
  }
}
.cart__product {
  background: #ebebeb;
  border-radius: 20px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.08);
  padding: 20px;
  display: flex;
  align-items: center;
  position: relative;
}
.cart__product:not(:last-child) {
  margin-bottom: 10px;
}
.cart__product-info {
  flex: 1;
}
.cart__product-name {
  font-size: 20px;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 9px;
}
@media (width < 550px) {
  .cart__product-name {
    font-size: 16px;
    text-wrap: balance;
  }
}
.cart__product-price {
  font-size: 18px;
  font-weight: 500;
  line-height: 122.222222%;
  color: var(--color-text-secondary);
}
@media (width < 550px) {
  .cart__product-price {
    font-size: 14px;
  }
}
.cart__product-actions {
  padding-right: 30px;
}
.cart__product-remove {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 20px;
  height: 20px;
  transition: all 0.2s ease-in-out;
}
.cart__product-remove svg {
  width: 100%;
  height: 100%;
}
@media (hover: hover) {
  .cart__product-remove:hover {
    color: var(--color-primary);
  }
}
.cart__renewal {
  margin-bottom: 50px;
  border-radius: 20px;
  background: #ebebeb;
  padding: 20px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.08);
}
@media (width < 550px) {
  .cart__renewal {
    margin-bottom: 30px;
  }
}
.cart__renewal-title {
  font-size: 20px;
  line-height: 120%;
  font-weight: 700;
  margin-bottom: 20px;
}
@media (width < 550px) {
  .cart__renewal-title {
    font-size: 16px;
    margin-bottom: 18px;
  }
}
.cart__renewal-radios {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (width < 550px) {
  .cart__renewal-radios {
    gap: 12px;
  }
}
.cart__renewal-radio {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.cart__renewal-radio input {
  position: absolute;
  opacity: 0;
}
.cart__renewal-radio:has(input:checked) .cart__renewal-radio-box::after {
  opacity: 1;
  transform: scale(1);
}
@media (hover: hover) {
  .cart__renewal-radio:hover {
    color: var(--color-text-secondary);
  }
}
@media (width < 550px) {
  .cart__renewal-radio {
    gap: 6px;
  }
}
.cart__renewal-radio-box {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: transparent;
  position: relative;
  border: 1px solid var(--color-text);
}
.cart__renewal-radio-box::after {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 7.5px);
  left: calc(50% - 7.5px);
  width: 15px;
  height: 15px;
  background: var(--color-primary);
  border-radius: 50%;
  transform: scale(0.8);
  opacity: 0;
  transition: all 0.2s ease-in-out;
  will-change: transform;
}
@media (width < 550px) {
  .cart__renewal-radio-box {
    flex: 0 0 16px;
    width: 16px;
    height: 16px;
  }
  .cart__renewal-radio-box::after {
    top: calc(50% - 5.5px);
    left: calc(50% - 5.5px);
    width: 11px;
    height: 11px;
  }
}
.cart__renewal-radio-text {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  width: 100%;
  font-size: 18px;
  font-weight: 500;
  line-height: 122.222222%;
}
.cart__renewal-radio-text span {
  color: var(--color-text-secondary);
}
@media (width < 550px) {
  .cart__renewal-radio-text {
    font-size: 14px;
  }
}
.cart__promocode {
  margin-bottom: 40px;
}
@media (width < 550px) {
  .cart__promocode {
    margin-bottom: 30px;
  }
}
.cart__total {
  margin-bottom: 50px;
  font-size: 26px;
  line-height: 115.384615%;
  font-weight: 700;
  display: flex;
  align-items: baseline;
  gap: 18px;
}
.cart__total span {
  font-size: 20px;
  line-height: 120%;
  font-weight: 400;
}
@media (width < 550px) {
  .cart__total {
    font-size: 20px;
    gap: 6px;
    margin-bottom: 36px;
  }
  .cart__total span {
    font-size: 16px;
  }
}
.cart__checkout .btn {
  width: 100%;
  height: 61px;
}
@media (width < 550px) {
  .cart__checkout .btn {
    height: 48px;
  }
}
.cart__request {
  max-width: 416px;
}
.cart__request-title {
  font-size: 20px;
  line-height: 120%;
  font-weight: 700;
  margin-bottom: 30px;
}
@media (width < 550px) {
  .cart__request-title {
    font-size: 16px;
  }
}
.cart__request-subtitle {
  font-size: 16px;
  font-weight: 700;
  line-height: 125%;
  margin-bottom: 8px;
}
@media (width < 550px) {
  .cart__request-subtitle {
    font-size: 14px;
  }
}
.cart__request-area {
  position: relative;
}
.cart__request-submit {
  margin-top: 24px;
  margin-bottom: 10px;
}
.cart__request-submit .btn {
  width: 100%;
  height: 54px;
}
@media (width < 550px) {
  .cart__request-submit {
    margin-top: 22px;
  }
  .cart__request-submit .btn {
    height: 46px;
  }
}
.cart__empty {
  padding: 10px 0 100px;
  width: 100%;
  max-width: 490px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media (width < 550px) {
  .cart__empty {
    padding: 54px 0 128px;
  }
}
.cart__empty-icon {
  margin-bottom: 20px;
}
@media (width < 550px) {
  .cart__empty-icon {
    max-width: 72px;
    margin-inline: auto;
    margin-bottom: 16px;
  }
}
.cart__empty-titles {
  width: 100%;
}
.cart__empty-title {
  margin-bottom: 5px;
}
.cart__empty-subtitle {
  margin-bottom: 40px;
}
@media (width < 550px) {
  .cart__empty-subtitle {
    margin-bottom: 30px;
  }
}
.cart__empty-button .btn {
  width: 100%;
  height: 61px;
}
@media (width < 550px) {
  .cart__empty-button .btn {
    height: 48px;
  }
}

.quantity {
  display: flex;
  align-items: center;
}
.quantity__input input {
  font-size: 18px;
  font-weight: 700;
  width: 36px;
  height: 36px;
  text-align: center;
  background: transparent;
}
@media (width < 550px) {
  .quantity__input input {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
}
.quantity__minus, .quantity__plus {
  width: 36px;
  height: 36px;
  background: #f4f4f4;
  border-radius: 10px;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
  transition: all 0.2s ease-in-out;
}
.quantity__minus svg, .quantity__plus svg {
  width: 12px;
  height: 12px;
}
@media (hover: hover) {
  .quantity__minus:hover, .quantity__plus:hover {
    background: #fff;
  }
}
@media (width < 550px) {
  .quantity__minus, .quantity__plus {
    width: 30px;
    height: 30px;
    border-radius: 6px;
  }
}

.promocode__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 125%;
  margin-bottom: 8px;
}
@media (width < 550px) {
  .promocode__title {
    font-size: 14px;
  }
}
.promocode__form {
  display: flex;
  gap: 10px;
}
@media (width < 550px) {
  .promocode__form {
    gap: 5px;
  }
}
.promocode__form-area {
  flex: 1;
  position: relative;
}
.promocode__form-submit .btn {
  min-width: 211px;
  height: 54px;
}
@media (width < 550px) {
  .promocode__form-submit .btn {
    min-width: 125px;
    height: 46px;
  }
}

.agreement {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}
.agreement input {
  position: absolute;
  opacity: 0;
}
.agreement:has(input:checked) .agreement__box::after {
  opacity: 1;
}
.agreement__box {
  flex: 0 0 17px;
  width: 17px;
  height: 17px;
  border: 1px solid #0b0b0b;
  position: relative;
}
.agreement__box::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../img/icons/icon-check.svg);
  background-size: 80% 80%;
  background-position: 100% 30%;
  background-repeat: no-repeat;
  opacity: 0;
}
.agreement__text {
  font-size: 14px;
  line-height: 128.571429%;
}
.agreement__text a {
  position: relative;
  text-decoration: underline;
  text-decoration-thickness: from-font;
  transition: all 0.2s ease-in-out;
}
@media (hover: hover) {
  .agreement__text a:hover {
    color: var(--color-primary);
  }
}
@media (width < 550px) {
  .agreement__text {
    font-size: 10px;
    line-height: 130%;
    max-width: 254px;
  }
}

[name="update_cart"] {
    position: absolute !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

.woocommerce .cart-collaterals .cart_totals, .woocommerce-page .cart-collaterals .cart_totals {
  width: 100% !important;
}

.woocommerce ul.order_details {
  opacity: 0;
  visibility: hidden;
  position: absolute;
}