@import './select.css';
@import './search.css';

@font-face {
  font-family: 'Onest';
  src: url('../fonts/Onest.woff2') format('woff2');
  font-display: swap;
}
:root {
    --color-main: #171A1C;
    --color-green: #2EB423;
    --color-grey: #747d90;
    --color-grey-light: #f2f3f6;
    --color-green-light: #E2F6E2;
    --color-blue-light: #E5F1FF;
    --color-orange: #FF5200;
    --color-red: #CF1129;
    --color-orange-light: #FFF2D8
}
.disabled {
  pointer-events: none;
}
*, *:before, *:after {
  box-sizing: border-box;
}
/* RESET*/
::-webkit-input-placeholder {
  color: #222;
  opacity: 1;
}
:-moz-placeholder,
::-moz-placeholder {
  color: #222;
  opacity: 1;
}
:-ms-input-placeholder {
  color: #222;
  opacity: 1;
}
article,
aside,
audio,
body,
canvas,
caption,
details,
div,
em,
figure,
footer,
form,
header,
html,
i,
iframe,
img,
label,
li,
menu,
nav,
object,
ol,
p,
section,
span,
summary,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
ul,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  font-weight: 400;
  vertical-align: baseline;
  background: 0 0;
}
b,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: 0 0;
}
article,
aside,
details,
figure,
footer,
header,
hr,
menu,
nav,
section {
  display: block;
}
ul {
  list-style: none;
}
a,
a:active,
a:visited {
  vertical-align: baseline;
  text-decoration: none;
  outline: 0;
}
b {
  font-weight: 700;
}
button,
input,
select,
textarea {
  outline: 0;
  border: 0;
}
input:not([type=checkbox]):not([type=radio]),
textarea, 
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
* {
  box-sizing: border-box
}
li {
  list-style: none
}
textarea {
  resize:none
}
a {
  text-decoration: none;
}
button {
  outline: none!important;
  background: none;
  padding: 0;
  font-size: 0;
}
body,html {
  font-size:16px;
  min-height:100vh;
  min-width:320px;
  overflow-x:hidden;
  font-family:Onest, arial;
  color: var(--color-main);
  position:relative;
  word-wrap:break-word;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  -ms-text-size-adjust:100%;
  -moz-text-size-adjust:100%;
  -webkit-text-size-adjust:100%;
  -webkit-tap-highlight-color:transparent;
  -ms-touch-action:manipulation;
  touch-action:manipulation;
}
body {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
html.frize {
  overflow: hidden !important;
}
.modal {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  background: rgba(0, 0, 0, 0.6);
  z-index: 10003;
  transition: visibility 0s 0.25s, opacity 0.25s;
}

.modal_active {
  opacity: 1 !important;
  visibility: visible;
  transition: visibility 0s 0s, opacity 0.25s;
}

.modal__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.modal__body {
  overflow-y: auto;
  position: relative;
  max-height: 100%;
  width: 100%;
  -ms-overflow-style: none;
  scrollbar-width: none;
  transition: opacity 0.1s ease;
}


.modal__body::-webkit-scrollbar {
  display: none;
}

.modal__inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 600px;
  height: 100%;
  justify-content: center;
  position: relative;
  background: #fff;
  padding: 32px;
  z-index: 1;
  margin-top: 24px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  border-radius: 24px;
  margin-left: auto;
  margin-right: auto;
}
.modal__cont {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
.modal__close {
  position: absolute;
  z-index: 1;
  background-image: url(../img/close.svg);
  background-repeat: no-repeat;
  background-position: center;
  width: 44px;
  height: 44px;
  top: 8px;
  right: 16px;
  cursor: pointer;
}
.container {
    max-width: 1310px;
    padding: 0 15px;
    margin-left: auto;
    margin-right: auto;
}
.button {
  display: flex;
  align-items: center;
  justify-content: center;
  font-variation-settings: "wght" 550;
  padding: 0 15px;
  gap: 16px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 12px;
  height: 44px;
  transition: all .3s ease;
  font-family: 'Onest';
}
.button--green {
  color: #fff;
  background-color: var(--color-green);
}
.button--green:hover {
  background-color: var(--color-orange);
}
.button--white {
  background-color: #fff;
  color: var(--color-main)
}
.button--white:hover {
  color: #fff;
  background-color: var(--color-green);
}
.button--white:hover svg path {
  fill: #fff
}
.button--grey {
  background-color: rgba(38, 55, 105, 0.06);
  color: var(--color-main)
}
.button--grey:hover {
  color: #fff;
  background-color: var(--color-green);
}
.button--grey:hover svg path {
  fill: #fff
}
.button--disabled {
  background-color: rgba(38, 55, 105, 0.06);
  color: rgba(1, 20, 60, 0.37);
}
.button--disabled:hover {
  background-color: rgba(38, 55, 105, 0.06);
  color: rgba(1, 20, 60, 0.37);
}

.header__row {
    display: flex;
    align-items: center;
    padding: 16px 0;
}
.header__logo {
    max-width: 300px;
}
.header__logo img {
    max-width: 100%;
    display: block;
}
.header__link {
    display: block;
    margin-left: auto;
    color: var(--color-main);
    font-size: 14px;
    font-variation-settings: "wght" 550;
    margin-right: 28px;
    transition: color .3s ease;
}
.header__link:hover {
    color: var(--color-green)
}
.header__login {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    font-size: 14px;
    height: 44px;
    font-variation-settings: "wght" 550;
    color: var(--color-main);
    background-color: var(--color-grey-light);
    border-radius: 10px;
    gap: 8px;
    transition: all .3s ease;
}
.partners-index .header__login {
  margin-left: auto;
}
.header__login:hover {
    color: #fff;
    background-color: var(--color-green);
}
.header__login:hover svg path {
    fill: #fff
}
.header__login svg path {
    transition: fill .3s ease;
}


.header__logout-button {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  font-size: 14px;
  font-variation-settings: "wght" 550;
  color: var(--color-main);
  background-color: var(--color-grey-light);
  border-radius: 10px;
  gap: 8px;
  transition: all .3s ease;
  height: 44px;
  cursor: pointer;
}
.partners-index .header__logout-button {
  margin-left: auto;
}
.header__logout-button.isLogged {
  display: flex;
}
.header__logout-button:hover {
  color: #fff;
  background-color: var(--color-green);
}
.header__logout-button:hover svg path {
  fill: #fff
}
.header__logout-button svg path {
  transition: fill .3s ease;
}

.header__logout-button-mobile {
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-variation-settings: "wght" 550;
  color: var(--color-main);
  border-radius: 10px;
  gap: 12px;
  transition: all .3s ease;
  cursor: pointer;
}
.header__logout-button-mobile.isLogged {
  display: flex;
}
.header__logout-button-mobile:hover {
  color: #fff;
  background-color: var(--color-green);
}
.header__logout-button-mobile:hover svg path {
  fill: #fff
}
.header__logout-button-mobile svg path {
  transition: fill .3s ease;
}

.catalog {
  padding-bottom: 48px;
}
.catalog__tabs {
  display: flex;
  width: fit-content;
  gap: 8px;
  
}
.catalog__tabs-wrap {
  overflow-x: auto;
  overflow-y: hidden;
  margin-left: -15px;
  margin-right: -15px;
  padding: 0 15px;
  margin-bottom: 24px;
  margin-top: 48px;
  position: relative;
}
.catalog__tab {
  display: flex;
  white-space: nowrap;
  gap: 6px;
  border-radius: 12px;
  background-color: var(--color-grey-light);
  height: 44px;
  padding: 0 12px;
  align-items: center;
  cursor: pointer;
  transition: all .3s ease;
}
.catalog__tab-icon-secondary {
  display: none;
}
.catalog__tab:hover .catalog__tab-icon-secondary, .catalog__tab.active .catalog__tab-icon-secondary {
  display: block;
}
.catalog__tab:hover .catalog__tab-icon, .catalog__tab.active .catalog__tab-icon {
  display: none;
}
.catalog__tab-icon, .catalog__tab-icon-secondary {
  max-width: 20px;
  max-height: 20px;
}
.catalog__tab-text {
  font-variation-settings: "wght" 450;
}
.catalog__tab-count {
  color: var(--color-grey);
  transition: color .3s ease;
}
.catalog__tab svg path {
  transition: fill .3s ease;
}
.catalog__tab:hover, .catalog__tab.active {
  background-color: var(--color-main);
  color: #fff;
}
.catalog__tab:hover .catalog__tab-count, .catalog__tab.active .catalog__tab-count {
  color: rgba(231, 238, 254, 0.78);
}
.sceleton {
  background: rgba(130, 130, 130, 0.2);
  background: -webkit-gradient(linear, left top, right top, color-stop(8%, rgba(130, 130, 130, 0.2)), color-stop(18%, rgba(130, 130, 130, 0.3)), color-stop(33%, rgba(130, 130, 130, 0.2)));
  background: linear-gradient(to right, rgba(130, 130, 130, 0.2) 8%, rgba(130, 130, 130, 0.3) 18%, rgba(130, 130, 130, 0.2) 33%);
  background-size: 800px 100px;
  animation: wave-lines 2s infinite ease-out;
}
.catalog__tab-placeholder {
  width: 180px;
  border-radius: 12px;
  height: 44px;
  
}
@keyframes wave-lines {
    0% {
        background-position: -468px 0;
    }
     100% {
        background-position: 468px 0;
    }
}
.catalog__title {
  font-size: 28px;
  font-variation-settings: "wght" 550;
  line-height: 1.14;
  margin-bottom: 24px;
}
.catalog__cards {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  transition: opacity .3s ease;
  min-height: 480px;
}
.loading {
  padding: 40px;
  font-size: 14px;
  text-align: center;
  color:var(--color-green);
  display: block;
  width: 100%;
}
.catalog__card {
  width: calc((100% - 48px) / 4);
  min-width: calc((100% - 48px) / 4);
  height: 438px;
  border-radius: 24px;
}
.catalog__card-header {
  padding: 16px;
  padding-bottom: 24px;
  background-color: var(--color-green-light);
  border-radius: 24px;
  width: 100%;
}
.catalog__card-header--blue {
  background-color: #E5F1FF;
}
.catalog__card-labels {
  display: flex;
  align-items: center;
  gap: 4px
}
.catalog__card-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-variation-settings: "wght" 550;
  color: #fff;
  height: 24px;
  min-width: 24px;
  padding: 0 4px;
  justify-content: center;
  border-radius: 10px;
  white-space: nowrap;
}
.catalog__card-label img {
  max-width: 15px;
  max-height: 15px;
  display: block;
}
.catalog__card-label--multiple {
  background-color: var(--color-main);
  gap: 4px;
  width: auto;
  min-width: auto;
  padding: 0 6px
}
.catalog__card-label svg {
  transform: scale(.75);
}
.catalog__card-label svg path {
  fill: #fff;
}
.catalog__card-label--green {
  background-color: var(--color-green)
}
.catalog__card-label--black {
  background-color: var(--color-main);
}
.catalog__card-label--orange {
  background-color: var(--color-orange);
}
.catalog__card-label--red {
  background-color: var(--color-red);
}
.catalog__card-label--purple {
  background-color: #9047D9;
}
.catalog__card-label-text {
  padding: 0 4px;
}
.catalog__card-logo {
  margin-top: 12px;
  gap: 12px;
  display: flex;
  align-items: center;
}
.catalog__card-logo-img {
  width: 72px;
  min-width: 72px;
  height: 72px;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background-color: #F5F7F9;
  border: 1px solid rgba(10, 28, 73, 0.11);
}
.catalog__card-logo-img img {
  min-width: 92%;
  position: absolute;
  max-width: 92%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}
.catalog__card-logo-title {
  font-size: 20px;
  font-variation-settings: "wght" 550;
  line-height: 1.2;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.catalog__card-logo-text {
  color: var(--color-grey);
  font-size: 14px;
  font-variation-settings: "wght" 350;
  line-height: 1.2;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.catalog__card-body {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(10, 28, 73, 0.11);
  border-radius: 24px;
  padding: 24px 16px;
  width: 100%;
  height: 290px;
}
.catalog__card-text {
  font-size: 14px;
  font-variation-settings: "wght" 350;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.catalog__card-li {
  font-size: 14px;
  font-variation-settings: "wght" 350;
  line-height: 1.4;
  position: relative;
  padding-left: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.catalog__card-li:not(:last-child) {
  margin-bottom: 8px;
}
.catalog__card .button span {
  color: rgba(231, 238, 254, 0.78);
  display: inline-block;
  position: relative;
  left: -8px;
}
.catalog__card-li:before {
  content: '·';
  padding-left: 8px;
  position: absolute;
  top: 0;
  left: 0;
  font-variation-settings: "wght" 750;
}
.catalog__card-footer {
  margin-top: auto;
}
.catalog__card-sign {
  overflow: hidden;
  font-size: 12px;
  font-variation-settings: "wght" 350;
  line-height: 1;
  color:var(--color-grey);
  text-align: center;
  margin-top: 8px;
  display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.catalog__card-sign--expand {
  display: block;
  line-height: 1.1;
}
.catalog__card-sign-delimeter {
  padding: 0 4px;
  display: inline-block;
}
.catalog__card-promocode {
  position: relative;
  background-color: var(--color-grey-light);
  border: 1px dashed rgba(8, 31, 73, 0.17);
  height: 56px;
  display: flex;
  justify-content: center;
  padding-left: 16px;
  padding-right: 40px;
  cursor: pointer;
  border-radius: 16px;
  margin-bottom: 8px;
  flex-wrap: wrap;
  text-align: center;
  flex-direction: column;
}
.catalog__card-promocode.noticed .catalog__card-promocode-code {
  display: none;
}
.catalog__card-promocode.noticed .catalog__card-promocode-trigger {
  display: none;
}
.catalog__card-promocode.noticed .catalog__card-promocode-copy {
  display: none;
}
.catalog__card-promocode.noticed {
  background-color: #FFF2D8;
  padding-right: 16px;
  pointer-events: none;
}
.catalog__card-promocode.copied {
  border-color: #9047D9;
  pointer-events: none;
}
.catalog__card-promocode.copied .catalog__card-promocode-copy {
  background-image: url(../img/label-copy-copied.svg);
}
.catalog__card-promocode-note {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  color: var(--color-green);
  background-color: var(--color-green-light);
  padding: 10px;
  text-align: center;
  border-radius: 12px;
  transform: translateY(-100%);
  font-size: 12px;
  opacity: 0;
  transition: all .3s ease;
}
.catalog__card-promocode-copy {
  background-image: url(../img/label-copy.svg);
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  right: 16px;
  top: 50%;
  margin-top: -10px;
}
.catalog__card-promocode-trigger {
  background-image: url(../img/label-eye.svg);
  width: 18px;
  height: 12px;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  right: 16px;
  top: 50%;
  margin-top: -6px;
}
.catalog__card-promocode-title {
  font-size: 12px;
  line-height: 1.3;
  width: 100%;
}
.catalog__card-promocode-code {
  font-size: 20px;
  font-variation-settings: "wght" 550;
  line-height: 1.2;
}
.card-modal__note:has(.card-modal__desc-text:empty) {
  display: none;
}
.catalog__btn-more-wrap {
  display: flex;
  justify-content: center;
}
.catalog__btn-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  border-radius: 12px;
  background-color:var(--color-grey-light);
  padding: 0 20px;
  font-weight: 500;
  color: var(--color-main);
  margin-top: 48px;
}


.footer {
  padding: 48px 0;
  margin-top: auto;
}
.footer__row {
  display: flex;
  padding: 32px;
  border-radius: 32px;
  background-color: var(--color-grey-light);
  align-items: center;
  justify-content: space-between;
}
.footer__logo {
  width: 168px;
}
.footer__logo img {
  max-width: 100%;
  display: block;
}
.footer__text {
  font-size: 12px;
  font-variation-settings: "wght" 350;
  line-height: 1.33;
  color: var(--color-grey);
  gap: 6px;
  display: flex;
  flex-direction: column;
}
.footer__link {
  color: var(--color-grey);
  display: inline-block;
  text-decoration: underline;
  transition: all .3s ease;
}
.footer__links {
  display: flex;
  align-items: center;
}
.footer__delimeter {
  padding: 0 8px;
}
.footer__link:hover {
  color: var(--color-green)
}
.footer__support {
  display: flex;
  align-items: center;
  font-variation-settings: "wght" 550;
  color: var(--color-main);
  padding: 0 10px;
  padding-right: 18px;
  gap: 8px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 36px 12px 0 rgba(2, 3, 6, 0.01), 0 24px 8px 0 rgba(2, 3, 6, 0.01), 0 6px 8px 0 rgba(2, 3, 6, 0.03), 0 4px 6px 0 rgba(2, 3, 6, 0.04), 0 1px 3px 0 rgba(2, 3, 6, 0.07);
  height: 44px;
  transition: all .3s ease;
}
.footer__support svg path {
  transition: fill .3s ease;
}
.footer__support:hover {
  color: #fff;
  background-color: var(--color-green);
}
.footer__support:hover svg path {
  fill: #fff
}

.card-modal .catalog__card-logo-img {
  margin-left: auto;
  margin-right: auto;
  height: 120px;
  width: 120px;
  min-width: 120px;
}
.card-modal .catalog__card-labels {
  justify-content: center;
  margin-top: 32px;
}
.card-modal__title {
  text-align: center;
  font-size: 28px;
  font-variation-settings: "wght" 550;
  line-height: 1.14;
  margin-top: 8px;
}
.card-modal__text {
  line-height: 1.5;
  margin-top: 8px;
  margin-bottom: 24px;
}
.card-modal__desc {
  padding: 24px;
  border-radius: 24px;
  background-color: #FAFAFB;
  margin-bottom: 8px;
}
.card-modal__desc:has(.card-modal__ul:empty), .card-modal__desc:has(.card-modal__desc-rules-wrap:empty) {
  display: none;
}
.card-modal__desc-title {
  font-size: 18px;
  font-variation-settings: "wght" 550;
  line-height: 1.33;
  margin-bottom: 16px;
}
.card-modal__desc-text {
  font-size: 14px;
  color: rgba(0, 10, 32, 0.75);
  line-height: 1.4;
}
.card-modal__desc-scroll {
  height: 122px;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 15px;
}
.card-modal__desc-scroll::-webkit-scrollbar {
  width: 8px;               /* ширина scrollbar */
}
.card-modal__desc-scroll::-webkit-scrollbar-track {
  background: var(--color-grey-light);        /* цвет дорожки */
}
.card-modal__desc-scroll::-webkit-scrollbar-thumb {
  background-color: rgba(3, 25, 68, 0.23);    /* цвет плашки */
  border-radius: 12px;       /* закругления плашки */
  border: none;  /* padding вокруг плашки */
}
.card-modal ul li {
  font-size: 14px;
  line-height: 1.4;
  color: rgba(0, 10, 32, 0.75);
  padding-left: 36px;
  position: relative;
  min-height: 24px;
}
.card-modal ul li:not(:last-child) {
  margin-bottom: 8px;
}
.card-modal ul li:before {
  content: '';
  position: absolute;
  left: 0;
  top: -3px;
  width: 24px;
  height: 24px;
  border-radius: 10px;
  background-color: var(--color-green);
  background-image: url(../img/check.svg);
  background-repeat: no-repeat;
  background-position: center;
}
.card-modal__desc a {
  color: var(--color-green);
}
.card-modal p {
  font-size: 14px;
  line-height: 1.4;
  color: rgba(0, 10, 32, 0.75);
}
.card-modal p:not(:last-child) {
  margin-bottom: 8px;
}
.card-modal__desc-subtitle {
  font-size: 14px;
  font-variation-settings: "wght" 550;
  line-height: 1.4;
  margin-bottom: 8px;
  margin-top: 16px;
}
.card-modal__note {
  background-color: var(--color-orange-light);
  padding: 12px 16px;
  padding-left: 48px;
  border-radius: 16px;
  position: relative;
}
.card-modal__note:before {
  content: '';
  background-image: url(../img/note.svg);
  background-repeat: no-repeat;
  top: 15px;
  left: 16px;
  position: absolute;
  display: block;
  width: 16px;
  height: 16px;
}
.card-modal__note .card-modal__desc-title {
  margin-bottom: 4px;
}
.card-modal__btn {
  width: 100%;
  margin-top: 42px;
}
.card-modal__sign {
  font-size: 12px;
  color: var(--color-grey);
  line-height: 1.33;
  margin-top: 8px;
  text-align: center;
}
.header__menu {
  display: none;
}
.header__menu-block {
  display: none;
}
.catalog__empty {
  display: none;
  line-height: 1.6;
  font-size: 18px;
}
.card-modal .catalog__card {
  height: auto;
  width: 100%;
  min-width: 100%;
  border-radius: 24px;
  background-color: #FAFAFB;
  padding: 24px;
  margin-bottom: 8px;
}
.card-modal .catalog__card .catalog__card-labels {
  justify-content: flex-start;
  margin-top: 0;
}
.card-modal .catalog__card-text {
  margin-top: 16px;
  margin-bottom: 16px;
  color: var(--color-grey)
}
.card-modal__step2 .card-modal__title {
  margin-top: 32px;
}
.card-modal__step2 .card-modal__text {
  margin-bottom: 32px;
}
.card-modal .card-modal__text {
  text-align: center;
}
.modal__back {
  position: absolute;
  top: 10px;
  left: 22px;
  color: var(--color-grey);
  font-size: 14px;
  display: none;
  align-items: center;
  cursor: pointer;
  padding: 10px;
  gap: 10px
}
.modal__back svg {
  transform: rotate(180deg);
}


.first__block {
  background-color: #248341;
  border-radius: 32px;
  padding: 48px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.first__label {
  display: inline-flex;
  align-items: center;
  background-color: var(--color-green);
  border-radius: 10px;
  height: 24px;
  padding-left: 4px;
  padding-right: 10px;
  gap: 4px;
  font-size: 14px;
  font-variation-settings: "wght" 550;
}
.first__title {
  font-size: 32px;
  font-variation-settings: "wght" 550;
  line-height: 1.12;
  margin-top: 16px;
}
.first__text {
  line-height: 1.25;
  margin-top: 16px;
  margin-bottom: 48px;
  font-variation-settings: "wght" 350;
}
.first__img {
  position: absolute;
  bottom: -180px;
  right: -60px;
}
.first .button {
  display: inline-flex;
}
.pluses__card {
  border-radius: 32px;
  padding: 32px;
  padding-right: 145px;
  background: #FAFAFB;
  position: relative;
  overflow: hidden;
  width: calc((100% - 34px) / 3);
  min-width: calc((100% - 34px) / 3);
  height: 267px;
}
.pluses__card-title {
  font-size: 20px;
  font-variation-settings: "wght" 550;
  line-height: 1.2;
}
.pluses__card-text {
  font-size: 14px;
  line-height: 1.4;
  margin-top: 4px;
}
.pluses__card:nth-child(2) .pluses__card-img {
  right: -90px;
}
.pluses__card-img {
  position: absolute;
  max-height: 100%;
  bottom: 20px;
  right: -20px;
}
.pluses {
  padding: 48px 0;
}
.pluses .swiper-wrapper {
  display: flex;
  gap: 17px
}
.services__title {
  font-size: 28px;
  font-variation-settings: "wght" 550;
  line-height: 1.14;
}
.services__text {
  line-height: 1.25;
  margin-top: 8px;
  margin-bottom: 24px;
}
.services {
  padding: 48px 0;
}
.services__row {
  gap: 16px;
  display: flex;
}
.services__labels {
  display: flex;
  gap: 6px
}
.services__title {
  font-size: 28px;
  font-variation-settings: "wght" 550;
  line-height: 1.2;
  margin-top: 24px;
}
.services__card-title {
  font-variation-settings: "wght" 550;
  font-size: 20px;
  line-height: 1.2;
  margin-top: 24px;
}
.services__card-text {
  line-height: 1.25;
  margin-top: 4px;
  color: var(--color-grey)
}
.services__card-list {
  font-size: 14px;
  margin-bottom: 24px;
  margin-top: 24px;
  color: var(--color-grey)
}
.services__card {
  width: calc((100% - 32px) / 3);
  min-width: calc((100% - 32px) / 3);
  border-radius: 32px;
  border: 1px solid var(--border-primary, rgba(10, 28, 73, 0.11));
  padding: 32px;
}
.services__card .button {
  display: inline-flex;
}
.services__card-list-item {
  line-height: 1.3;
  margin-bottom: 8px;
}
.services__card--mod {
  background-color: var(--color-green-light);
  border: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.services__card--mod .services__title {
  margin-top: 0;
}
.services__card--mod .button {
  margin-top: auto;
}
.pluses .swiper-pagination {
  display: none;
}


.authorization__title {
  font-size: 20px;
  font-variation-settings: "wght" 550;
  line-height: 1.2;
}
.authorization__text {
  line-height: 1.25;
  margin-top: 12px;
  margin-bottom: 24px;
  color: rgba(0, 10, 32, 0.75)
}
.authorization__logo {
  width: 48px;
  margin-bottom: 24px;
}
.authorization__tel {
  height: 56px;
  border-radius: 12px;
  background: var(--color-grey-light);
  padding: 0 20px;
  border: 1px solid var(--color-grey-light);
  font-size: 16px;
  color: var(--color-main);
  display: block;
  width: 100%;
  padding-right: 40px;
}
.authorization__tel:focus {
  border: 2px solid var(--color-main);
  background-color: #fff;
}
::-webkit-input-placeholder {
  color: rgba(1, 17, 51, 0.52);
  font-size: 16px;
  opacity: 1;
}
:-moz-placeholder,
::-moz-placeholder {
  color: rgba(1, 17, 51, 0.52);
  font-size: 16px;
  opacity: 1;
}
:-ms-input-placeholder {
  color: rgba(1, 17, 51, 0.52);
  font-size: 16px;
  opacity: 1;
}
.authorization__logo img {
  display: block;
  max-width: 100%;
}
.authorization__label {
  margin-bottom: 16px;
  display: block;
  position: relative;
}
.authorization .button {
  height: 56px;
  width: 100%;
  margin-bottom: 16px;
  font-size: 16px;
}
.modal[data-modal="authorization"] .modal__inner {
  max-width: 420px;
  padding: 24px;
}
.authorization__sign {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 12px;
  line-height: 1.33;
  color: rgba(1, 17, 51, 0.52)
}
.authorization__sign a {
  display: inline-block;
  color: rgba(1, 17, 51, 0.52);
  position: relative;
}
.authorization__sign a:after {
  content: '';
  position: absolute;
  height: 1px;
  left: 0;
  right: 0;
  bottom: 2px;
  background: rgba(1, 17, 51, 0.52);
  opacity: 0.5;
}
.authorization__clear {
  cursor: pointer;
  background-image: url(../img/clear-input.svg);
  width: 24px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 28px;
  transform: translateY(-50%);
  right: 15px;
  display: none;
}
form .icon-check.complete {
  display: none;
}
.authorization__error {
  display: none;
  color: #E33D42;
  font-size: 12px;
  margin-top: 3px;
}
.authorization__label--error .authorization__tel {
  background-color: #FFEEEC;
  border-color: #E33D42
}
.authorization__label--error .authorization__error {
  display: block;
}
.authorization__label:has(.authorization__tel:focus) .authorization__clear {
  display: block;
}
.authorization__change-phone {
  font-size: 14px;
  font-variation-settings: "wght" 550;
  line-height: 1;
  cursor: pointer;
  border-bottom: 1px solid rgba(5, 25, 65, 0.30);
  display: inline-block;
  margin-bottom: 32px;
  color:var(--color-main);
  transition: all .3s ease;
}
.authorization__change-phone:hover {
  color: var(--color-green);
  border-color: var(--color-green)
}
.authorization__code {
  display: flex;
  gap: 10px;
  justify-content: center;
}
.authorization__code-error {
  display: none;
  color: #E33D42;
  font-size: 12px;
  margin-top: 3px;
  text-align: center;
}
.authorization__code-error--visible {
  display: block;
}
.authorization__code-loader {
  width: 100%;
  display: none;
  align-items: center;
  justify-content: center;
}
.authorization__code-loader.active {
  display: flex;
}
.authorization__code-loader img {
  height: 90px;
}
.authorization__code-symbol {
  height: 56px;
  border-radius: 12px;
  background: var(--color-grey-light);
  text-align: center;
  border: 2px solid var(--color-grey-light);
  font-size: 18px;
  color: var(--color-main);
  display: block;
  width: 44px;
  min-width: 44px;
  padding: 0;
}
.authorization__code-symbol:focus {
  border-color: var(--color-main)
}
.authorization__repeat-wrap {
  display: flex;
  justify-content: center;
  margin: 16px 0;
}
.authorization__repeat {
  color: rgba(0, 10, 32, 0.75);
  line-height: 1;
  border-bottom: 1px solid rgba(5, 25, 65, 0.30);
  cursor: pointer;
  transition: all .3s ease;
  font-size: 14px;
}
.authorization__repeat-timer {
  color: rgba(0, 10, 32, 0.75);
  line-height: 1;
  transition: all .3s ease;
  font-size: 14px;
}
.authorization__repeat:hover {
  color: var(--color-orange);
  border-color: var(--color-orange)
}
.authorization__legal-phone {
  font-size: 14px;
  display: inline-block;
}
.authorization--step2 .authorization__text {
  margin-bottom: 0;
}

.authorization-captcha {
  margin: 12px 0 16px;
  display: none;
  flex-direction: column;
}
.authorization-captcha.active-captcha {
  display: flex;
}
.authorization-captcha__canvas-wrapper {
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  max-height: 60px;
}
.authorization-captcha__refresh {
  margin-left: 24px;
  width: 24px;
  height: 24px;
  cursor: pointer;
  transition: color 0.3s ease-in;
}
.authorization-captcha__label {
  margin-bottom: 16px;
  display: block;
  position: relative;
}
.authorization-captcha__input {
  height: 56px;
  border-radius: 12px;
  background: var(--color-grey-light);
  padding: 0 20px;
  border: 1px solid var(--color-grey-light);
  font-size: 16px;
  color: var(--color-main);
  display: block;
  width: 100%;
  padding-right: 40px;
}
.authorization-captcha__input:focus {
  border: 2px solid var(--color-main);
  background-color: #fff;
}
::-webkit-input-placeholder {
  color: rgba(1, 17, 51, 0.52);
  font-size: 16px;
  opacity: 1;
}
:-moz-placeholder,
::-moz-placeholder {
  color: rgba(1, 17, 51, 0.52);
  font-size: 16px;
  opacity: 1;
}
:-ms-input-placeholder {
  color: rgba(1, 17, 51, 0.52);
  font-size: 16px;
  opacity: 1;
}
.authorization-captcha__input-error {
  display: none;
  color: #E33D42;
  font-size: 12px;
  margin-top: 3px;
}
.authorization-captcha__label--error .authorization-captcha__input {
  background-color: #FFEEEC;
  border-color: #E33D42
}
.authorization-captcha__label--error .authorization-captcha__input-error {
  display: block;
}

[data-modal="beta"] .modal__inner {
  max-width: 440px;
}
.beta-modal__title {
  font-variation-settings: "wght" 550;
  line-height: 1.2;
  font-size: 20px;
  margin-top: 24px;
}
.beta-modal__text {
  line-height: 1.25;
  margin-top: 12px;
}
.beta-modal__logo img {
  display: block;
}


.cookie {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 11;
  padding: 24px;
  border-radius: 24px;
  background-color: #fff;
  box-shadow: 0 4px 24px 0 rgba(38, 55, 105, 0.06), 0 1px 3px 0 rgba(38, 55, 105, 0.06);
  width: 640px;
  display: flex;
  gap: 16px
}
.cookie p {
  line-height: 1.25;
}
.cookie p:not(:last-child) {
  margin-bottom: 20px;
}
.cookie p a {
  color: var(--color-green);
  text-decoration: underline;
}
.cookie__text {
  width: calc(100% - 16px - 90px);
}
.cookie__btn-wrap {
  flex-grow: 1;
  align-self: flex-end;
}
.catalog__select-row {
    display: flex;
    gap: 10px;
    margin-bottom: 24px;
}


@media only screen and (max-width: 1260px) {
  .modal__inner {
    padding: 40px;
  }
  .modal__inner {
    border-radius: 12px 12px 0 0;
  }
  [data-modal="beta"] .modal__inner {
    border-radius: 12px;
  }
}

@media only screen and (max-width: 1199px) {
  .catalog__card {
    width: calc((100% - 32px) / 3);
    min-width: calc((100% - 32px) / 3);
  }
}

@media only screen and (max-width: 1040px) {
  .services__row {
    flex-wrap: wrap
  }
  .services__card {
    width: calc((100% - 16px) / 2);
    min-width: calc((100% - 16px) / 2);
  }
  .services__card--mod {
    width: 100%;
  }
  .pluses__card {
    width: auto;
    min-width: auto;
    text-align: center;
    padding: 16px 32px;
    height: auto;
  }
  .pluses .swiper-wrapper {
    gap: 0
  }
  .pluses__card-img {
    position: static;
    display: block;
    margin-left: auto;
    margin-right: auto;
    height: 174px;
    margin-bottom: 20px;
  }
  .pluses .swiper-pagination {
    display: flex;
    position: static;
    width: 100%;
    justify-content: center;
    margin-top: 20px;
    gap: 8px
  }
  .pluses .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    border-radius: 4px;
    background-color: var(--color-grey-light);
    position: relative;
    margin: 0!important;
    opacity: 1;
  }
  .pluses .swiper-pagination-bullet-active {
    width: 24px;
  }
  .pluses .swiper-pagination-bullet-active:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 15px;
    background-color: var(--color-green);
    border-radius: 4px;
    height: 6px;
  }
}

@media only screen and (max-width: 991px) {
  .cookie {
    width: calc(100% - 30px);
    left: 15px;
    right: 15px;
    bottom: 15px;
    background: rgb(2 7 18 / 90%);
    color: #fff
  }
  .cookie__btn-wrap .button {
    background-color: #fff;
    color: var(--color-grey)
  }
  .catalog__tab {
    height: 32px;
    font-size: 14px;
    padding-left: 8px;
    padding-right: 12px;
    border-radius: 10px;
  }
  .catalog__tab svg {
    transform: scale(.9);
  }
  .catalog__card {
    width: calc((100% - 16px) / 2);
    min-width: calc((100% - 16px) / 2);
  }
  .footer__row {
    display: block;
  }
  .footer__text {
    margin-top: 24px;
    margin-bottom: 24px;
  }
  .footer__support {
    display: inline-flex;
  }
  .footer {
    padding-top: 0;
  }
  .first__img {
    width: 300px;
    bottom: -110px;
    right: -30px;
  }
}

@media only screen and (max-width: 750px) {
  .catalog__tabs-wrap {
    margin-top: 20px;
  }
  .catalog__select-row {
    flex-wrap :wrap;
    flex-direction: column;
    align-items: flex-start;
  }
  .modal__close {
    top: 20px;
    right: 20px;
  }
  .modal__body {
    margin: 0;
  }
  .modal__inner {
    padding: 20px;
  }
  .modal__title {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .first__block {
    padding: 24px;
    padding-bottom: 225px;
  }
  .first__img {
    max-width: 327px;
    width: 100%;
    margin-left: -163px;
    right: auto;
    left: 50%;
    bottom: -145px;
  }
  .first .button {
    margin-top: auto;
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    z-index: 1;
  }
  .first__text {
    margin-bottom: 0;
  }
}

@media only screen and (max-width: 640px) {
  .header__row {
    padding-bottom: 68px;
    position: relative;
  }
  .partners-index .header__row {
    padding-bottom: 16px;
  }
  .header__logo {
    width: 170px;
  }
  .header__login {
    margin-left: auto;
  }
  .cookie__text {
    width: 100%;
  }
  .cookie {
    flex-direction: column;
  }
  .cookie__btn-wrap {
    width: 100%;
  }
  .catalog__card {
    width: 100%;
    min-width: 100%;
    height: auto;
  }
  .catalog__card-body {
    height: auto;
  }
  .catalog__card-footer {
    margin-top: 12px;
  }
  .services__card {
    width: 100%;
    padding: 15px;
    border-radius: 24px;
  }
  .services__card-title {
    font-size: 16px;
  }
  .services__card-list {
    margin-bottom: 16px;
    margin-top: 16px;
  }
  .services__card-text {
    margin-bottom: 16px;
  }
  .services__card .button {
    width: 100%;
  }
  .header__row {
    position: relative;
  }
}

@media only screen and (max-width: 575px) {
  [data-modal="beta"] .modal__inner {
    max-width: 100%;
    border-radius: 12px 12px 0 0;
  }
  [data-modal="beta"] .modal__wrapper {
    align-items: flex-end;
  }
  .modal[data-modal="authorization"] .modal__inner {
    padding-left: 15px;
    padding-right: 15px;
  }
  .modal__back {
    top: 16px;
  }
  .card-modal .catalog__card {
    padding: 15px;
  }
  .services__card-title {
    margin-top: 16px;
  }
  .services__title {
    font-size: 24px;
  }
  .services {
    background-color: #fff;
    border-radius: 32px;
    padding: 0;
    padding-bottom: 15px;
  }
  .pluses {
    background-color: #fff;
    padding: 0;
    margin: 24px 0;
    border-radius: 32px;
  }
  .pluses__card {
    padding-bottom: 40px;
    background-color: transparent;
  }
  .pluses .swiper-pagination {
    position: absolute;
    bottom: 20px;
  }
  .first {
    padding-top: 8px;
  }
  .first__label {
    display: none;
  }
  .first__title {
    margin-top: 0;
  }
  .card-modal__btn {
    margin-top: 33px;
  }
  .card-modal__desc {
    background-color: #fff;
    border: 1px solid rgba(10, 28, 73, 0.11);
    border-radius: 24px;
    padding: 16px;
  }
  .card-modal__text {
    text-align: center;
    font-size: 14px;
    margin-bottom: 0;
  }
  .card-modal__title {
    font-size: 16px;
    margin-top: 16px;
  }
  .card-modal .catalog__card-labels {
    margin-top: 16px;
  }
  .card-modal .catalog__card-logo-img {
    width: 72px;
    min-width: 72px;
    height: 72px;
  }
  .card-modal__header {
    background-color: var(--color-green-light);
    padding: 16px;
    border-radius: 16px;
    margin-top: 48px;
    margin-bottom: 16px;
  }
  .modal__close {
    width: 32px;
    height: 32px;
    background-color: var(--color-grey-light);
    border-radius: 10px;
  }
  .footer__support {
    width: 100%;
    justify-content: center;
  }
  .footer__links {
    display: block;
  }
  .footer__link {
    width: 100%;
    display: block;
    margin-top: 8px;
  }
  .footer__delimeter {
    display: none;
  }
  .footer__row {
    padding: 24px 0;
  }
  .footer {
    padding-bottom: 24px;
  }
  header {
    background-color: #fff;
  }
  body {
    background-color: var(--color-grey-light);
    padding-top: 0;
  }
  .header__link {
    display: none;
  }
  .header__menu {
    display: block;
    width: 24px;
    height: 24px;
    background-image: url(../img/menu.svg);
    background-repeat: no-repeat;
    background-position: center right;
    margin-left: auto;
  }
  .catalog {
    padding: 24px 0;
    padding-top: 0;
  }
  .header__menu-block {
    position: absolute;
    top: -300px;
    width: 100%;
    right: 0;
    transition: opacity .3s ease;
    background-color: #fff;
    border-radius: 24px;
    padding: 16px;
    display: block;
    opacity: 0;
    z-index: 1;
  }
  .header.opened .header__menu-block {
    opacity: 1;
    top: 65px;
  }
  .header.opened .header__menu {
    background-image: url(../img/close.svg);
  }
  .header__menu-block-link {
    display: flex;
    align-items: center;
    color :var(--color-main);
    font-size: 14px;
    line-height: 1.4;
    gap: 12px;
    padding: 8px 0;
  }
  .header__menu-block-link-icon {
    display: flex;
    width: 20px;
    min-width: 20px;
    align-items: center;
    justify-content: center;
  }
  .catalog__tabs-wrap {
    background-color: #fff;
    margin-bottom: 24px;
    margin-top: 0;
    padding-bottom: 15px;
    padding-top: 4px;
  }
  .catalog__tabs {
    margin-bottom: 0;
  }
  .catalog__card {
    background-color: #fff;
    border: 1px solid rgba(10, 28, 73, 0.11);
    padding: 15px;
  }
  .catalog__cards {
    margin-left: -15px;
    margin-right: -15px;
    gap: 8px
  }
  .catalog__card-body {
    border: none;
    border-radius: 0 0 24px 24px;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
  }
  .catalog__tabs-wrap:after {
    display: none;
  }
}

@media only screen and (max-width: 400px) {
  .first__title {
    font-size: 26px;
  }
  .first__block {
    padding: 15px;
    padding-bottom: 225px;
  }
  .first__img {
    bottom: -140px;
  }
}
