@import url(https://fonts.googleapis.com/css?family=Onest:100,200,300,regular,500,600,700,800,900);

@import url(https://fonts.googleapis.com/css?family=Raleway:100,200,300,regular,500,600,700,800,900,100italic,200italic,300italic,italic,500italic,600italic,700italic,800italic,900italic);

@charset "UTF-8";

:root {
  --accent: #4896fe;
  --accent-2: #a45dff;
  --primary: #0d0c22;
  --secondary: #9e9ea7;
  --tertiary: rgba(72, 150, 254, 0.06);
  --white: #fff;
  --error: #f44a4a;
  --background: #f9fafb;
  --succes: #4dc57d;
  --information: #f29100;
  --color-1: #4d67ff;
  --color-2: #05c99b;
  --color-3: #ff8000;
  --color-4: #f73c65;
  --color-5: #e75fff;
  --font-family: "Onest", sans-serif;
  --second-family: "Raleway", sans-serif;
  --third-family: "SF Pro Display", sans-serif;
  --font3: "MTS Sans", sans-serif;
  --font4: "SF Pro Text", sans-serif;
  --font5: "Manrope", sans-serif;
  --font6: "Jost", sans-serif;
}

* {
  padding: 0px;
  margin: 0px;
  border: 0px;
}

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

:focus,
:active {
  outline: none;
}

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

html,
body {
  height: 100%;
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  color: var(--light-main-Color);
  line-height: 1;
  font-family: "Onest", sans-serif;
  font-size: 18px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

input,
button,
textarea {
  font-family: "Onest", sans-serif;
  font-size: inherit;
}

button {
  cursor: pointer;
  color: inherit;
  background-color: inherit;
  line-height: 1.5;
}

a {
  color: inherit;
  cursor: pointer;
}

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

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

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

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

input[type=number]:hover,
input[type=number]:focus {
  -moz-appearance: number-input;
}

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

body {
  background: #f8faff;
  font-weight: normal;
}

.lock body {
  overflow: hidden;
  -ms-touch-action: none;
      touch-action: none;
}

body.lock {
  overflow: hidden;
  -ms-touch-action: none;
      touch-action: none;
}

.wrapper {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
}

.wrapper > main {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.requests-page {
  margin-bottom: 10vh;
}

.wrapper > * {
  min-width: 0;
}

.wrapper_overflow-visible {
  overflow: visible;
}

[class$=__container] {
  max-width: 1600px;
  margin: 0 auto;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  padding: 0px 15px;
}

/*Формы*/

.checkbox {
  position: relative;
}

.checkbox__input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
}

.checkbox__label {
  cursor: pointer;
}

.checkbox__label:before {
  content: "";
  -ms-flex-item-align: start;
      align-self: flex-start;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
  width: 20px;
  height: 20px;
}

.checkbox__checkbox--triger {
  width: 36px;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.checkbox__checkbox--triger .checkbox__input:checked + .checkbox__label:before {
  background: orange;
}

.checkbox__checkbox--triger .checkbox__input:checked + .checkbox__label:after {
  left: 19px;
}

.checkbox__checkbox--triger .checkbox__label {
  width: 36px;
  height: 20px;
}

.checkbox__checkbox--triger .checkbox__label:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #ccc;
  border-radius: 12px;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.checkbox__checkbox--triger .checkbox__label::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 1px;
  top: 2px;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg width=%2716%27 height=%2716%27 viewBox=%270 0 16 16%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Ccircle cx=%278%27 cy=%278.00009%27 r=%277.64706%27 fill=%27white%27 /%3E%3C/svg%3E");
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.checkbox__checkbox--triger.decore .checkbox__input {
  position: absolute;
  width: 44px;
  height: 24px;
  opacity: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.checkbox__checkbox--triger.decore .checkbox__input:focus + .checkbox__label:before {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.checkbox__checkbox--triger.decore .checkbox__input:checked + .checkbox__label:before {
  background: #000;
}

.checkbox__checkbox--triger.decore .checkbox__input:checked + .checkbox__label:after {
  background-image: url("data:image/svg+xml,%3Csvg width=%2724%27 height=%2724%27 viewBox=%270 0 24 24%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Ccircle cx=%2712%27 cy=%2712%27 r=%2711.5%27 fill=%27white%27 stroke=%27%23CCCCCC%27 /%3E%3C/svg%3E");
  left: 20px;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.checkbox__checkbox--triger.decore .checkbox__label:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #cccccc;
  border-radius: 12px;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.checkbox__checkbox--triger.decore .checkbox__label::after {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg width=%2724%27 height=%2724%27 viewBox=%270 0 24 24%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Ccircle cx=%2712%27 cy=%2712%27 r=%2711.5%27 fill=%27white%27 stroke=%27%23CCCCCC%27 /%3E%3C/svg%3E");
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.checkbox__checkbox--checked .checkbox__input:focus + .checkbox__label:before {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.checkbox__checkbox--checked .checkbox__input:checked + .checkbox__label:before {
  content: "";
}

.checkbox__checkbox--checked .checkbox__input:checked + .checkbox__label::after {
  content: "";
  opacity: 1;
}

.checkbox__checkbox--checked .checkbox__label {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.checkbox__checkbox--checked .checkbox__label:before {
  content: "";
  -ms-flex-item-align: start;
      align-self: flex-start;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  border-radius: 6px;
  height: 24px;
  background: var(--accent);
  opacity: 0.1;
}

.checkbox__checkbox--checked .checkbox__label::after {
  opacity: 0;
  content: "";
  position: absolute;
  left: 4px;
  top: 7px;
  width: 16px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg width=%2716%27 height=%2712%27 viewBox=%270 0 16 12%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M2 5.42857L5.64028 9.2422C6.03422 9.6549 6.69305 9.6549 7.08699 9.2422L14 2%27 stroke=%27%234896FE%27 stroke-width=%273%27 stroke-linecap=%27round%27 /%3E%3C/svg%3E");
}

.checkbox__checkbox--checked .checkbox__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
  font-size: 16px;
  line-height: 1;
  color: #000;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.checkbox__checkbox--checked .checkbox__text span {
  display: block;
}

.popup__box {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  row-gap: 30px;
  margin: 0px 0px 30px 0px;
}

.popup__item {
  width: 100%;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

/* Контент модального окна */
.modal-content {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  max-width: 800px;
  width: 90%;
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.modal.open-modal {
  display: flex;
}

body.popup-show {
  overflow: hidden;
}

.request-modal-content {
  max-width: 420px;
}


.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover {
  color: black;
}

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

.add-contact {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
  height: auto;
  position: relative;
  border-radius: 32px;
  padding: 0px 24px;
  background: var(--white);
  padding-bottom: 24px;
  display: flex;
  flex-direction: column;  
  overflow: hidden;
}

.add-contact__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 24px 0px;'
  flex-shrink: 0;
}

.add-contact__text {
  font-weight: 600;
  font-size: 24px;
  color: #000;
}

.add-contact__body {
  flex: 1;
  padding-right: 20px;
  overflow: scroll;
}

.add-contact__sub-title {
  font-weight: 500;
  font-size: 18px;
  color: var(--primary);
  margin: 0px 0px 20px 0px;
}

.add-contact__inputs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
}

.add-contact__line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
}

.add-contact__box-input {
  width: 100%;
}

.add-contact__name {
  font-weight: 500;
  font-size: 16px;
  color: var(--secondary);
  margin: 0px 0px 8px 0px;
}

.add-contact__input {
  width: 100%;
  height: 100%;
  background-color: transparent;
  font-weight: 500;
  font-size: 16px;
  line-height: 132%;
  letter-spacing: 0.01em;
  color: var(--primary);
  border-radius: 20px;
  padding: 18px;
  height: 56px;
  background: var(--background);
}

.add-contact__input::-webkit-input-placeholder {
  font-weight: 500;
  font-size: 16px;
  line-height: 132%;
  letter-spacing: 0.01em;
  color: var(--secondary);
}

.add-contact__input::-moz-placeholder {
  font-weight: 500;
  font-size: 16px;
  line-height: 132%;
  letter-spacing: 0.01em;
  color: var(--secondary);
}

.add-contact__input:-ms-input-placeholder {
  font-weight: 500;
  font-size: 16px;
  line-height: 132%;
  letter-spacing: 0.01em;
  color: var(--secondary);
}

.add-contact__input::-ms-input-placeholder {
  font-weight: 500;
  font-size: 16px;
  line-height: 132%;
  letter-spacing: 0.01em;
  color: var(--secondary);
}

.add-contact__input::placeholder {
  font-weight: 500;
  font-size: 16px;
  line-height: 132%;
  letter-spacing: 0.01em;
  color: var(--secondary);
}

.add-contact__inputs-servis {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 8px;
}

.add-contact__input-inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.add-contact__input-inner .icon {
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translate(0%, -50%);
      -ms-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
}

.add-contact__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  margin-top: 24px;
  flex-direction: ;
}

.add-contact__footer .text {
  font-weight: 500;
  font-size: 14px;
  color: var(--secondary);
}

.add-contact__footer .button {
  border-radius: 20px;
  padding: 16px 18px;
  max-width: 308px;
  width: 100%;
  height: 52px;
  background: var(--accent);
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  color: var(--white);
}

.create-request {
  border-radius: 32px;
  padding: 24px;
  max-width: 420px;
  margin: 0 auto;
  width: 100%;
  background: var(--white);
}

.create-request__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.create-request__title {
  font-weight: 500;
  font-size: 20px;
  color: #000;
  margin: 0px 0px 24px 0px;
}

.create-request__inpurs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
  margin: 0px 0px 24px 0px;
  margin: 0px 0px 70px 0px;
}

.create-request__name {
  font-weight: 500;
  font-size: 16px;
  color: var(--secondary);
  margin: 0px 0px 8px 0px;
}

.create-request__input {
  border-radius: 20px;
  padding: 18px;
  width: 100%;
  height: 56px;
  background: var(--background);
  font-weight: 500;
  font-size: 16px;
  line-height: 132%;
  letter-spacing: 0.01em;
}

.create-request__input::-webkit-input-placeholder {
  font-weight: 500;
  font-size: 16px;
  line-height: 132%;
  letter-spacing: 0.01em;
  color: var(--secondary);
}

.create-request__input::-moz-placeholder {
  font-weight: 500;
  font-size: 16px;
  line-height: 132%;
  letter-spacing: 0.01em;
  color: var(--secondary);
}

.create-request__input:-ms-input-placeholder {
  font-weight: 500;
  font-size: 16px;
  line-height: 132%;
  letter-spacing: 0.01em;
  color: var(--secondary);
}

.create-request__input::-ms-input-placeholder {
  font-weight: 500;
  font-size: 16px;
  line-height: 132%;
  letter-spacing: 0.01em;
  color: var(--secondary);
}

.create-request__input::placeholder {
  font-weight: 500;
  font-size: 16px;
  line-height: 132%;
  letter-spacing: 0.01em;
  color: var(--secondary);
}

.create-request__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: var(--accent);
  border-radius: 20px;
  width: 100%;
  padding: 16px 18px;
  height: 52px;
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  color: var(--white);
}

.user-exit {
  border-radius: 32px;
  padding: 24px;
  max-width: 420px;
  width: 100%;
  height: 192px;
  margin: 0 auto;
  background: var(--white);
}

.user-exit__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.user-exit__title {
  font-weight: 500;
  font-size: 20px;
  color: #000;
  margin: 0px 0px 24px 0px;
}

.user-exit__text {
  font-weight: 500;
  font-size: 14px;
  color: var(--secondary);
}

.user-exit__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 24px 0px 0px 0px;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
}

.user-exit__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #dde7f5;
  border-radius: 20px;
  padding: 16px 18px;
  width: 100%;
  height: 52px;
  background: #f3f4f6;
}

.spollers__title {
  cursor: default;
  text-align: left;
}

.spollers__spollers--contact-database {
  position: relative;
}

.spollers__spollers--contact-database .spollers__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  cursor: default;
  font-weight: 500;
  border-radius: 16px;
  padding: 7px 12px 7px 16px;
  height: 43px;
  font-size: 16px;
  line-height: 130%;
  letter-spacing: 0.02em;
  color: #5b7795;
  background: var(--tertiary);
}

.spollers__spollers--contact-database .spollers__title .text .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: none;
}

.spollers__spollers--contact-database .spollers__title::after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg width=%2724%27 height=%2724%27 viewBox=%270 0 24 24%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M8.12459 8.99953L12.0046 12.8795L15.8846 8.99953C16.2746 8.60953 16.9046 8.60953 17.2946 8.99953C17.6846 9.38953 17.6846 10.0195 17.2946 10.4095L12.7046 14.9995C12.3146 15.3895 11.6846 15.3895 11.2946 14.9995L6.70459 10.4095C6.51734 10.2227 6.41211 9.96905 6.41211 9.70453C6.41211 9.44001 6.51734 9.18636 6.70459 8.99953C7.09459 8.61953 7.73459 8.60953 8.12459 8.99953Z%27 fill=%27%235B7795%27 /%3E%3C/svg%3E");
}

.spollers__spollers--contact-database .spollers__title._spoller-active {
  border-radius: 16px 16px 0px 0px;
}

.spollers__spollers--contact-database .spollers__title._spoller-active::after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg width=%2724%27 height=%2724%27 viewBox=%270 0 24 24%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M8.12459 8.99953L12.0046 12.8795L15.8846 8.99953C16.2746 8.60953 16.9046 8.60953 17.2946 8.99953C17.6846 9.38953 17.6846 10.0195 17.2946 10.4095L12.7046 14.9995C12.3146 15.3895 11.6846 15.3895 11.2946 14.9995L6.70459 10.4095C6.51734 10.2227 6.41211 9.96905 6.41211 9.70453C6.41211 9.44001 6.51734 9.18636 6.70459 8.99953C7.09459 8.61953 7.73459 8.60953 8.12459 8.99953Z%27 fill=%27%235B7795%27 /%3E%3C/svg%3E");
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.spollers__spollers--contact-database .spollers__list {
  position: absolute;
  width: 100%;
  left: 0px;
  top: 43px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 10px;
  border-radius: 0px 0px 16px 16px;
  padding: 7px 12px 7px 16px;
  background: var(--tertiary);
}

.spollers__spollers--contact-database .spollers__list a {
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  letter-spacing: 0.02em;
  color: #5b7795;
}

.tabs__navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.tabs__tabs--contact-database {
  min-height: 1200px;
}

.tabs__tabs--contact-database .tabs__navigation {
  overflow: auto;
  margin: 0px 0px 20px 0px;
}

.tabs__tabs--contact-database .tabs__content {
  position: absolute;
  width: 100%;
  left: 0px;
  top: 100px;
  background-color: #fff;
}

.tabs__tabs--contact-database .tabs__title {
  font-weight: 500;
  font-size: 16px;
  line-height: 132%;
  letter-spacing: 0.01em;
  padding: 12px 16px;
  width: 186px;
  height: 45px;
  color: var(--secondary);
}

.tabs__tabs--contact-database .tabs__title._tab-active {
  border-bottom: 2px solid var(--accent);
  color: var(--accent);
}

[class*=-ibg] {
  position: relative;
}

[class*=-ibg] img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

[class*=-ibg_contain] img {
  -o-object-fit: contain;
     object-fit: contain;
}

.tabs__tabs--contact-database .tabs__navigation::-webkit-scrollbar {
  display: none;
}

.hidden-element {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  position: absolute !important;
  pointer-events: none !important;
}

.header {
  position: relative;
  z-index: 100;
  padding: 15px 0px 16px 20px;
  background: #f8faff;
}

.header__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__box-left {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-left: auto;
  -webkit-column-gap: 32px;
     -moz-column-gap: 32px;
          column-gap: 32px;
}

.header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 40px;
  padd: 18px;
  width: 70px;
  height: 54px;
  background: var(--white);
  font-weight: 500;
  font-size: 14px;
  color: var(--primary);
}

.header__balance {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.header__balance-text {
  font-weight: 600;
  font-size: 12px;
  line-height: 130%;
  color: rgba(24, 32, 51, 0.4);
  text-align: center;
}

.header__balance-sum {
  font-weight: 500;
  font-size: 16px;
  line-height: 132%;
  letter-spacing: 0.01em;
  text-align: center;
  color: var(--primary);
}

.header__action {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
}

.header__user {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 9px;
     -moz-column-gap: 9px;
          column-gap: 9px;
}

.header__user-text {
  font-weight: 500;
  font-size: 14px;
  color: var(--primary);
}

.header-action__icon-2 {
  position: relative;
}

.header-action__icon-2._active::after {
  content: "";
  display: block;
}

.header-action__icon-2::after {
  display: none;
  position: absolute;
  right: 0px;
  top: 0px;
  content: "";
  width: 8px;
  height: 8px;
  background-image: url("data:image/svg+xml,%3Csvg width=%278%27 height=%278%27 viewBox=%270 0 8 8%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Ccircle cx=%273.83399%27 cy=%274%27 r=%273.5%27 fill=%27%23F29100%27 /%3E%3C/svg%3E");
}

.header-action__icon-3 {
  position: relative;
}

.header-action__icon-3._active::after {
  content: "";
  display: block;
}

.header-action__icon-3::after {
  display: none;
  position: absolute;
  right: 1px;
  top: 2px;
  content: "";
  width: 8px;
  height: 8px;
  background-image: url("data:image/svg+xml,%3Csvg width=%278%27 height=%278%27 viewBox=%270 0 8 8%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Ccircle cx=%273.83399%27 cy=%274%27 r=%273.5%27 fill=%27%23F29100%27 /%3E%3C/svg%3E");
}

.decor {
  border: 1px solid #e7e7e9;
  width: 37px;
  height: 0px;
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.decor-1 {
  border: 1px solid #e7e7e9;
  width: 37px;
  height: 0px;
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.header-enter__icon-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  background: var(--tertiary);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: none;
}

.contact-center-home {
  padding: 100px 0px;
  position: relative;
}

.contact-center-home__wrap._active {
  position: relative;
  top: -360px;
  -webkit-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.contact-center-home__decor-left {
  position: absolute;
  left: 0%;
  top: -10%;
  pointer-events: none;
}

.contact-center-home__decor-right {
  position: absolute;
  right: 0%;
  top: 0%;
  pointer-events: none;
}

.contact-center-home__title {
  font-weight: 600;
  font-size: 44px;
  text-align: center;
  color: #000;
  margin: 0px 0px 21px 0px;
}

.contact-center-home__text {
  font-weight: 500;
  font-size: 20px;
  text-align: center;
  color: var(--secondary);
  margin: 0px 0px 72px 0px;
}

.contact-center-home__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
}

.contact-center-item {
  position: relative;
  border: 1px solid #dde7f5;
  border-radius: 48px;
  padding: 24px;
  width: 100%;
  max-width: 320px;
  min-height: 288px;
  background: -webkit-gradient(linear, left top, left bottom, from(#f1f8fe), to(#f4f7ff));
  background: -o-linear-gradient(top, #f1f8fe 0%, #f4f7ff 100%);
  background: linear-gradient(180deg, #f1f8fe 0%, #f4f7ff 100%);
  opacity: 1;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.contact-center-item.opacity {
  opacity: 0;
}

.contact-center-item._active {
  position: absolute;
  width: 100%;
  z-index: 2;
  max-width: 1620px;
}

.contact-center-item__title {
  font-weight: 500;
  font-size: 22px;
  color: var(--primary);
}

.contact-center-item__decor {
  position: absolute;
  bottom: 0px;
  left: 0px;
}

.contact-center-item__link {
  position: absolute;
  right: 24px;
  bottom: 19px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50px;
  padding: 12px;
  width: 56px;
  height: 56px;
  -webkit-box-shadow: 0 13px 29px 0 rgba(129, 162, 197, 0.1), 0 53px 53px 0 rgba(129, 162, 197, 0.09), 0 120px 72px 0 rgba(129, 162, 197, 0.05), 0 213px 85px 0 rgba(129, 162, 197, 0.01), 0 333px 93px 0 rgba(129, 162, 197, 0);
          box-shadow: 0 13px 29px 0 rgba(129, 162, 197, 0.1), 0 53px 53px 0 rgba(129, 162, 197, 0.09), 0 120px 72px 0 rgba(129, 162, 197, 0.05), 0 213px 85px 0 rgba(129, 162, 197, 0.01), 0 333px 93px 0 rgba(129, 162, 197, 0);
  background: var(--accent);
}

.contact-center-item__search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #dde7f5;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
  border-radius: 20px;
  padding: 0px 17px;
  height: 56px;
  -webkit-box-shadow: 0 13px 29px 0 rgba(129, 162, 197, 0.1), 0 53px 53px 0 rgba(129, 162, 197, 0.09), 0 120px 72px 0 rgba(129, 162, 197, 0.05), 0 213px 85px 0 rgba(129, 162, 197, 0.01), 0 333px 93px 0 rgba(129, 162, 197, 0);
          box-shadow: 0 13px 29px 0 rgba(129, 162, 197, 0.1), 0 53px 53px 0 rgba(129, 162, 197, 0.09), 0 120px 72px 0 rgba(129, 162, 197, 0.05), 0 213px 85px 0 rgba(129, 162, 197, 0.01), 0 333px 93px 0 rgba(129, 162, 197, 0);
  background: var(--white);
  margin-top: 57px;
}

.contact-center-item__search-link {
  position: absolute;
  right: 24px;
  bottom: 19px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50px;
  padding: 12px;
  width: 56px;
  height: 56px;
  -webkit-box-shadow: 0 13px 29px 0 rgba(129, 162, 197, 0.1), 0 53px 53px 0 rgba(129, 162, 197, 0.09), 0 120px 72px 0 rgba(129, 162, 197, 0.05), 0 213px 85px 0 rgba(129, 162, 197, 0.01), 0 333px 93px 0 rgba(129, 162, 197, 0);
          box-shadow: 0 13px 29px 0 rgba(129, 162, 197, 0.1), 0 53px 53px 0 rgba(129, 162, 197, 0.09), 0 120px 72px 0 rgba(129, 162, 197, 0.05), 0 213px 85px 0 rgba(129, 162, 197, 0.01), 0 333px 93px 0 rgba(129, 162, 197, 0);
  background: var(--accent);
}

.contact-center-item__search-link svg:nth-child(2) {
  display: none;
}

.contact-center-item__search-link._active svg:nth-child(1) {
  display: none;
}

.contact-center-item__search-link._active svg:nth-child(2) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.contact-center-item__input {
  width: 100%;
  height: 100%;
  font-weight: 500;
  font-size: 16px;
}

.contact-center-item__input::-webkit-input-placeholder {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  color: rgba(24, 32, 51, 0.4);
}

.contact-center-item__input::-moz-placeholder {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  color: rgba(24, 32, 51, 0.4);
}

.contact-center-item__input:-ms-input-placeholder {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  color: rgba(24, 32, 51, 0.4);
}

.contact-center-item__input::-ms-input-placeholder {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  color: rgba(24, 32, 51, 0.4);
}

.contact-center-item__input::placeholder {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  color: rgba(24, 32, 51, 0.4);
}

.contact-center-home__result {
  display: none;
  position: absolute;
  overflow: auto;
  top: 165px;
  z-index: 5;
  border: 1px solid #dde7f5;
  border-radius: 20px;
  padding: 8px;
  max-width: 961px;
  width: 100%;
  height: 294px;
  -webkit-box-shadow: 0 13px 29px 0 rgba(129, 162, 197, 0.1), 0 53px 53px 0 rgba(129, 162, 197, 0.09), 0 120px 72px 0 rgba(129, 162, 197, 0.05), 0 213px 85px 0 rgba(129, 162, 197, 0.01), 0 333px 93px 0 rgba(129, 162, 197, 0);
          box-shadow: 0 13px 29px 0 rgba(129, 162, 197, 0.1), 0 53px 53px 0 rgba(129, 162, 197, 0.09), 0 120px 72px 0 rgba(129, 162, 197, 0.05), 0 213px 85px 0 rgba(129, 162, 197, 0.01), 0 333px 93px 0 rgba(129, 162, 197, 0);
  background: var(--white);
}

.contact-center-home__result._active {
  display: block;
}

.contact-center-home-result::-webkit-scrollbar {
  display: none;
}

.contact-center-home-result__title {
  font-weight: 500;
  font-size: 14px;
  color: #000;
  padding: 12px;
}

.contact-center-home-result__item {
  padding: 12px;
}

.contact-center-home-result__name {
  font-weight: 500;
  font-size: 14px;
  color: var(--primary);
  margin: 0px 0px 5px 0px;
}

.contact-center-home-result__name-company {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  font-weight: 500;
  font-size: 12px;
  color: var(--secondary);
}

.contact-center-home-create-request {
  display: none;
  position: absolute;
  top: 161px;
  border: 1px solid #dde7f5;
  border-radius: 20px;
  padding: 8px;
  max-width: 961px;
  width: 100%;
  min-height: 168px;
  -webkit-box-shadow: 0 13px 29px 0 rgba(129, 162, 197, 0.1), 0 53px 53px 0 rgba(129, 162, 197, 0.09), 0 120px 72px 0 rgba(129, 162, 197, 0.05), 0 213px 85px 0 rgba(129, 162, 197, 0.01), 0 333px 93px 0 rgba(129, 162, 197, 0);
          box-shadow: 0 13px 29px 0 rgba(129, 162, 197, 0.1), 0 53px 53px 0 rgba(129, 162, 197, 0.09), 0 120px 72px 0 rgba(129, 162, 197, 0.05), 0 213px 85px 0 rgba(129, 162, 197, 0.01), 0 333px 93px 0 rgba(129, 162, 197, 0);
  background: var(--white);
}

.contact-center-home-create-request__title {
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  color: var(--secondary);
  max-width: 539px;
  margin: 0 auto 16px auto;
}

.contact-center-home-create-request__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 200px;
  width: 100%;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  border: 1px solid #dde7f5;
  border-radius: 20px;
  padding: 16px 18px;
  margin: 0 auto;
  background-color: var(--white);
}

.contact-center-home-create-request__link .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: var(--secondary);
}

.contact-center-home-create-request__link .text {
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  color: var(--primary);
}

.notifications {
  position: absolute;
  display: none;
  right: 25%;
  top: 100px;
  border-radius: 24px;
  padding: 8px 8px 0px;
  max-width: 493px;
  width: 100%;
  min-height: 431px;
  -webkit-box-shadow: 0 13px 29px 0 rgba(129, 162, 197, 0.1), 0 53px 53px 0 rgba(129, 162, 197, 0.09), 0 120px 72px 0 rgba(129, 162, 197, 0.05), 0 213px 85px 0 rgba(129, 162, 197, 0.01), 0 333px 93px 0 rgba(129, 162, 197, 0);
          box-shadow: 0 13px 29px 0 rgba(129, 162, 197, 0.1), 0 53px 53px 0 rgba(129, 162, 197, 0.09), 0 120px 72px 0 rgba(129, 162, 197, 0.05), 0 213px 85px 0 rgba(129, 162, 197, 0.01), 0 333px 93px 0 rgba(129, 162, 197, 0);
  background: var(--white);
}

.notifications._active {
  display: block;
}

.notifications__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 13.5px 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid rgba(188, 195, 208, 0.3);
  margin: 0px 0px 12px 0px;
}

.notifications__name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  font-weight: 600;
  font-size: 16px;
  line-height: 130%;
  text-align: right;
  color: #000;
}

.notifications__name .icon {
  display: none;
}

.notifications__body {
  height: 430px;
}

.notifications-sorting {
  min-width: 150px;
  position: relative;
}

.notifications-sorting__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
}

.notifications-sorting__text {
  font-weight: 500;
  font-size: 12px;
  line-height: 130%;
  color: var(--secondary);
}

.notifications-sorting__body {
  display: none;
  position: absolute;
  top: 35px;
  left: 0px;
  border-radius: 8px;
  padding: 8px 4px;
  width: 139px;
  height: 132px;
  -webkit-box-shadow: 0 13px 29px 0 rgba(129, 162, 197, 0.1), 0 53px 53px 0 rgba(129, 162, 197, 0.09), 0 120px 72px 0 rgba(129, 162, 197, 0.05), 0 213px 85px 0 rgba(129, 162, 197, 0.01), 0 333px 93px 0 rgba(129, 162, 197, 0);
          box-shadow: 0 13px 29px 0 rgba(129, 162, 197, 0.1), 0 53px 53px 0 rgba(129, 162, 197, 0.09), 0 120px 72px 0 rgba(129, 162, 197, 0.05), 0 213px 85px 0 rgba(129, 162, 197, 0.01), 0 333px 93px 0 rgba(129, 162, 197, 0);
  background: var(--white);
  z-index: 100;
}

.notifications-sorting__body._active {
  display: block;
}

.notifications-sorting__link {
  font-weight: 500;
  font-size: 12px;
  line-height: 140%;
  padding: 6px 16px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  color: var(--secondary);
}

.notifications-sorting__link._active {
  color: var(--accent);
  background: #f8faff;
}

.notifications-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  padding: 12px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  cursor: pointer;
}

.notifications-item._active {
  background: #f8faff;
}

.notifications-item__decor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
  min-width: 60px;
}

.content-notifications {
  position: relative;
}

.content-notifications__close {
  position: absolute;
  right: 8px;
  top: 9px;
}

.content-notifications__delete {
  display: none;
  position: absolute;
  right: 0px;
  top: 0px;
  width: 90px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #f8faff;
  display: none;
}

.content-notifications__delete .text {
  font-weight: 500;
  font-size: 12px;
  line-height: 140%;
  color: var(--error);
}

.content-notifications__title {
  font-weight: 500;
  font-size: 14px;
  color: #1f1f1f;
  margin: 0px 0px 2px 0px;
}

.content-notifications__text {
  font-weight: 600;
  font-size: 12px;
  line-height: 130%;
  color: var(--secondary);
}

.content-notifications__link {
  text-decoration: underline !important;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  color: var(--accent);
}

.content-notifications__date {
  font-weight: 500;
  font-size: 11px;
  line-height: 130%;
  color: #adb0b3;
}

.content-notifications__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
  margin-top: 8px;
}

.content-notifications__button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #dde7f5;
  border-radius: 12px;
  padding: 7px 12px 8px;
  font-weight: 600;
  font-size: 12px;
  line-height: 130%;
  color: var(--primary);
}

.content-notifications__button.dark {
  background: #f3f4f6;
}

.content-notifications__button.light {
  background: var(--white);
}

.notifications-sorting-mob {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 20px 20px 0 0;
  padding: 16px 0px;
  width: 375px;
  height: auto;
  margin: 0 auto;
  -webkit-box-shadow: 0 -8px 24px 0 rgba(0, 0, 0, 0.1), 0 -2px 24px 0 rgba(0, 0, 0, 0.08);
          box-shadow: 0 -8px 24px 0 rgba(0, 0, 0, 0.1), 0 -2px 24px 0 rgba(0, 0, 0, 0.08);
  background: var(--white);
  bottom: 0px;
  left: 0px;
  z-index: 100;
}

.notifications-sorting-mob::before {
  position: absolute;
  left: 50%;
  top: 5px;
  -webkit-transform: translate(-50%, 0%);
      -ms-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
  content: "";
  width: 33px;
  height: 13px;
  background-image: url("data:image/svg+xml,%3Csvg width=%2733%27 height=%2713%27 viewBox=%270 0 33 13%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cg opacity=%270.35%27%3E%3Crect x=%270.5%27 y=%278.5%27 width=%2732%27 height=%274%27 rx=%272%27 fill=%27%233C3C43%27 fill-opacity=%270.3%27 /%3E%3C/g%3E%3C/svg%3E");
}

.notifications-sorting-mob__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-weight: 600;
  font-size: 14px;
  line-height: 130%;
  line-height: 140%;
  padding: 6px 16px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  color: var(--secondary);
}

.notifications-sorting-mob__link::after {
  content: "";
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg width=%2724%27 height=%2724%27 viewBox=%270 0 24 24%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M19.5018 6.44254C19.8096 6.71963 19.8346 7.19385 19.5575 7.50173L11.8199 16.0991C10.8454 17.1819 9.19549 17.3168 8.05793 16.4068L4.53151 13.5857C4.20806 13.3269 4.15562 12.8549 4.41438 12.5315C4.67313 12.208 5.1451 12.1556 5.46855 12.4144L8.99497 15.2355C9.51204 15.6492 10.262 15.5878 10.705 15.0956L18.4426 6.49828C18.7197 6.1904 19.1939 6.16544 19.5018 6.44254Z%27 fill=%27%234896FE%27 /%3E%3C/svg%3E");
  display: none;
}

.notifications-sorting-mob__link._active {
  color: var(--accent);
}

.notifications-sorting-mob__link._active::after {
  content: "";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.notifications-sorting-mob-blure {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  background: rgba(35, 42, 52, 0.45);
  z-index: 99;
}

.notifications-sorting-mob-box {
  display: none;
}

.notifications-sorting-mob-box._active {
  display: block;
}

.contact-database__arrow {
  position: absolute;
  left: 0px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  display: none;
}

.contact-database__wrap-title {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0px 0px 17px 0px;
}

.contact-database__title {
  font-weight: 600;
  font-size: 28px;
  line-height: 144%;
  letter-spacing: 0.01em;
  color: #2d2d2d;
}

.contact-database__body {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.contact-database-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
}

.contact-database-actions.mob {
  display: none;
}

.contact-database-search._active .contact-database-search__back {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: absolute;
  left: 20px;
  top: 10px;
}

.contact-database-search._active .contact-database-search__input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.contact-database-search._active .contact-database-search__box {
  position: absolute;
  width: 90%;
  height: 50px;
  right: 0px;
  top: 0px;
  background-color: #fff;
  z-index: 100;
}

.contact-database-search__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.contact-database-search__back {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: none;
}

.contact-database-search__box {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #dde7f5;
  border-radius: 16px;
  padding: 0px 12px;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
  height: 44px;
  background-color: #fff;
}

.contact-database-search__box .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.contact-database-search__input {
  width: 100%;
  height: 100%;
  font-weight: 500;
  font-size: 14px;
  line-height: 189%;
  color: var(--primary);
  background-color: transparent;
}

.contact-database-search__input::-webkit-input-placeholder {
  font-weight: 500;
  font-size: 14px;
  line-height: 189%;
  color: var(--secondary);
}

.contact-database-search__input::-moz-placeholder {
  font-weight: 500;
  font-size: 14px;
  line-height: 189%;
  color: var(--secondary);
}

.contact-database-search__input:-ms-input-placeholder {
  font-weight: 500;
  font-size: 14px;
  line-height: 189%;
  color: var(--secondary);
}

.contact-database-search__input::-ms-input-placeholder {
  font-weight: 500;
  font-size: 14px;
  line-height: 189%;
  color: var(--secondary);
}

.contact-database-search__input::placeholder {
  font-weight: 500;
  font-size: 14px;
  line-height: 189%;
  color: var(--secondary);
}

.contact-database-search__close {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: none;
}

.contact-database-download {
  max-width: 136px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
  border: 1px solid #dde7f5;
  border-radius: 20px;
  padding: 12px 14px 12px 12px;
  height: 48px;
  background: var(--white);
}

.contact-database-download__text {
  font-weight: 500;
  font-size: 14px;
  text-align: center;
  color: var(--primary);
}

.purchased-contacts-table.width-33 .purchased-contacts-table__title-name {
  padding: 19px 16px 19px 50px;
}

.purchased-contacts-table.width-33 .purchased-contacts-table__title-name:nth-child(1) {
  width: 560px;
}

.purchased-contacts-table.width-33 .purchased-contacts-table__title-name:nth-child(2) {
  width: 440px;
}

.purchased-contacts-table.width-33 .purchased-contacts-table__title-name:nth-child(3) {
  width: 572px;
}

.purchased-contacts-table.width-33 .purchased-contacts-table__item {
  padding: 19px 16px 19px 50px;
}

.purchased-contacts-table.width-33 .purchased-contacts-table__item:nth-child(1) {
  width: 560px;
}

.purchased-contacts-table.width-33 .purchased-contacts-table__item:nth-child(2) {
  width: 440px;
}

.purchased-contacts-table.width-33 .purchased-contacts-table__item:nth-child(3) {
  width: 572px;
}

.purchased-contacts-table__wrpa-title {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: rgba(72, 150, 254, 0.1);
  border-radius: 16px 16px 0px 0px;
}

.purchased-contacts-table__title-name {
  font-weight: 700;
  font-size: 12px;
  line-height: 146%;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #5b7795;
  padding: 14px 16px 18px;
  height: 56px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.purchased-contacts-table__title-name:nth-child(1) {
  width: 440px;
}

.purchased-contacts-table__title-name:nth-child(2) {
  width: 260px;
}

.purchased-contacts-table__title-name:nth-child(3) {
  width: 200px;
}

.purchased-contacts-table__title-name:nth-child(4) {
  width: 200px;
}

.purchased-contacts-table__title-name:nth-child(5) {
  width: 160px;
}

.purchased-contacts-table__title-name:nth-child(6) {
  width: 312px;
}

.purchased-contacts-table__wrap-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: var(--white);
}

.purchased-contacts-table__item-add {
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

.purchased-contacts-table__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  font-weight: 500;
  font-size: 16px;
  line-height: 132%;
  letter-spacing: 0.01em;
  color: #5b7795;
  padding: 19px 16px 19px 50px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  height: 56px;
  padding: 14px 16px 18px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.purchased-contacts-table__item:nth-child(1) {
  width: 440px;
}

.purchased-contacts-table__item:nth-child(2) {
  width: 260px;
}

.purchased-contacts-table__item:nth-child(3) {
  width: 200px;
}

.purchased-contacts-table__item:nth-child(4) {
  width: 200px;
}

.purchased-contacts-table__item:nth-child(5) {
  width: 160px;
}

.purchased-contacts-table__item:nth-child(6) {
  width: 312px;
}

.purchased-contacts-table__item.suggested::after {
  content: "Suggested";
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 500;
  font-size: 14px;
  color: var(--succes);
  background: rgba(77, 197, 125, 0.1);
  border-radius: 40px;
  padding: 4px 9px;
}

.purchased-contacts-table__item.rejected::after {
  content: "Rejected";
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 500;
  font-size: 14px;
  color: #ff3156;
  background: rgba(255, 49, 86, 0.1);
  border-radius: 40px;
  padding: 4px 9px;
}

.purchased-contacts-table__item.waiting::after {
  content: "Rejected";
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 500;
  font-size: 14px;
  color: var(--accent);
  background: rgba(255, 49, 86, 0.1);
  border-radius: 40px;
  padding: 4px 9px;
  background: rgba(72, 150, 254, 0.1);
}

.purchased-contacts-table__item .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  left: 16px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

.purchased-contacts-table__item a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #dde7f5;
  border-radius: 12px;
  padding: 7px 12px 8px;
  height: 33px;
  font-weight: 600;
  font-size: 12px;
  line-height: 130%;
  color: var(--primary);
}

.purchased-contacts-table__item a.dark {
  background: #f3f4f6;
}

.purchased-contacts-table__item a.light {
  background: var(--white);
}

.purchased-contacts-table__item-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.purchased-contacts-table__box {
  height: 728px;
}

.purchased-contacts-table__box .simplebar-track {
  right: 10px !important;
}

.purchased-contacts-table-mob {
  display: none;
}

.purchased-contacts-table-mob__box {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 8px;
}

.item-purchased-contacts-table {
  border: 1px solid #dde7f5;
  border-radius: 20px;
  padding: 18px 16px;
  width: 100%;
  min-height: 128px;
  position: relative;
}

.item-purchased-contacts-table__icon {
  position: absolute;
  right: 18px;
  top: 16px;
}

.item-purchased-contacts-table__icon.suggested::after {
  content: "Suggested";
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 500;
  font-size: 14px;
  color: var(--succes);
  background: rgba(77, 197, 125, 0.1);
  border-radius: 40px;
  padding: 4px 9px;
}

.item-purchased-contacts-table__icon.rejected::after {
  content: "Rejected";
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 500;
  font-size: 14px;
  color: #ff3156;
  background: rgba(255, 49, 86, 0.1);
  border-radius: 40px;
  padding: 4px 9px;
}

.item-purchased-contacts-table__icon.waiting::after {
  content: "Wwaiting";
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 500;
  font-size: 14px;
  color: var(--accent);
  background: rgba(255, 49, 86, 0.1);
  border-radius: 40px;
  padding: 4px 9px;
  background: rgba(72, 150, 254, 0.1);
}

.item-purchased-contacts-table__title {
  font-weight: 500;
  font-size: 14px;
  color: var(--primary);
  margin: 0px 0px 16px 0px;
  max-width: 300px;
  width: 100%;
}

.item-purchased-contacts-table__company-name .text {
  font-weight: 600;
  font-size: 12px;
  line-height: 130%;
  color: var(--secondary);
}

.item-purchased-contacts-table__company-name .text1 {
  font-weight: 600;
  font-size: 12px;
  line-height: 130%;
  color: var(--primary);
}

.item-purchased-contacts-table__availability-service .text {
  font-weight: 600;
  font-size: 12px;
  line-height: 130%;
  color: var(--secondary);
}

.item-purchased-contacts-table__availability-service .text1 {
  font-weight: 600;
  font-size: 12px;
  line-height: 130%;
  color: var(--primary);
}

.item-purchased-contacts-table__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.item-purchased-contacts-table__buttons a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #dde7f5;
  border-radius: 12px;
  padding: 7px 12px 8px;
  height: 33px;
  font-weight: 600;
  font-size: 12px;
  line-height: 130%;
  color: var(--primary);
}

.item-purchased-contacts-table__buttons a.dark {
  background: #f3f4f6;
}

.item-purchased-contacts-table__buttons a.light {
  background: var(--white);
}

.item-purchased-contacts-table__buttons a:nth-child(3) {
  margin-left: auto;
  margin-top: 16px;
}

.pagging {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px 32px;
  width: 100%;
  height: 56px;
  background: var(--white);
  border-radius: 0px 0px 16px 16px;
  margin: 0 auto;
}

.pagging__arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.pagging__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.pagging__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  padding: 0px 6px;
  width: 28px;
  height: 28px;
  font-weight: 600;
  font-size: 16px;
  line-height: 132%;
  letter-spacing: 0.01em;
  text-align: center;
  color: var(--secondary);
}

.pagging__item._active {
  background: var(--accent);
  color: #fff;
}

.contact-database-pages {
  position: absolute;
  right: 32px;
  bottom: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
}

.contact-database-pages__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.contact-database-pages__text {
  font-weight: 600;
  font-size: 13px;
  line-height: 132%;
  letter-spacing: 0.08em;
  text-align: center;
  color: #717679;
}

.no-contacts-purchased {
  padding: 40px 200px;
  width: 100%;
  height: 164px;
  -webkit-box-shadow: 0 13px 29px 0 rgba(129, 162, 197, 0.1), 0 53px 53px 0 rgba(129, 162, 197, 0.09), 0 120px 72px 0 rgba(129, 162, 197, 0.05), 0 213px 85px 0 rgba(129, 162, 197, 0.01), 0 333px 93px 0 rgba(129, 162, 197, 0);
          box-shadow: 0 13px 29px 0 rgba(129, 162, 197, 0.1), 0 53px 53px 0 rgba(129, 162, 197, 0.09), 0 120px 72px 0 rgba(129, 162, 197, 0.05), 0 213px 85px 0 rgba(129, 162, 197, 0.01), 0 333px 93px 0 rgba(129, 162, 197, 0);
  background: var(--white);
  border-radius: 20px;
}

.no-contacts-purchased__title {
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  color: var(--secondary);
  margin: 0px 0px 16px 0px;
}

.no-contacts-purchased__search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  max-width: 200px;
  width: 100%;
  border: 1px solid #dde7f5;
  border-radius: 20px;
  padding: 12px 14px 12px 12px;
  height: 48px;
  background: var(--white);
  margin: 0 auto;
  justify-content: center;
}

.no-contacts-purchased__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  padding: 12px 14px 12px 12px;
}

.no-contacts-purchased__input {
  width: 100%;
  height: 100%;
  background: transparent;
  font-weight: 500;
  font-size: 14px;
}

.no-contacts-purchased__input::-webkit-input-placeholder {
  color: var(--primary);
}

.no-contacts-purchased__input::-moz-placeholder {
  color: var(--primary);
}

.no-contacts-purchased__input:-ms-input-placeholder {
  color: var(--primary);
}

.no-contacts-purchased__input::-ms-input-placeholder {
  color: var(--primary);
}

.no-contacts-purchased__input::placeholder {
  color: var(--primary);
}

.registration {
  border-radius: 32px;
  padding: 24px;
  max-width: 802px;
  min-height: 768px;
  background: var(--white);
  margin: 0 auto;
}

.registration__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
  margin: 0px 0px 19px 0px;
}

.registration__title {
  font-weight: 500;
  font-size: 20px;
  color: #000;
}

.registration__text {
  font-weight: 500;
  font-size: 16px;
  color: #000;
  margin: 0px 0px 24px 0px;
}

.registration__link {
  color: var(--accent);
}

.registration__box-inputs {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
}

.registration__line {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
}

.registration__item-input {
  width: 100%;
  position: relative;
}

.registration__sub-title {
  font-weight: 500;
  font-size: 16px;
  color: var(--secondary);
  margin: 0px 0px 8px 0px;
}

.registration__input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 20px;
  padding: 18px;
  width: 100%;
  padding: 18px;
  background: var(--background);
}

.registration__icon {
  position: absolute;
  right: 20px;
  top: 42px;
}

.registration__button {
  width: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 20px;
  padding: 16px 18px;
  background: var(--accent);
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  color: var(--white);
}

.registration__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.registration__footer .checkbox {
  width: 50%;
}

.registration__footer .checkbox__text {
  display: block;
  font-weight: 500;
  font-size: 14px;
  color: var(--secondary);
}

.registration__footer .checkbox__text a {
  color: var(--accent);
}

.upload-avatar {
  position: relative;
  border: 1px dashed #dde7f5;
  border-radius: 20px;
  padding: 27px;
  width: 100%;
  min-height: 100px;
}

.upload-avatar__text {
  font-weight: 500;
  font-size: 14px;
  line-height: 140%;
  color: #000;
  text-align: center;
}

.upload-avatar__text span {
  font-weight: 600;
  color: var(--accent);
}

.upload-avatar__text1 {
  font-weight: 500;
  font-size: 14px;
  color: var(--secondary);
  text-align: center;
}

.upload-avatar__text2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-weight: 500;
  font-size: 14px;
  color: #000;
}

.upload-avatar__close {
  position: absolute;
  right: 12px;
  top: 12px;
}

.upload-avatar__avatar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.upload-avatar__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

.upload-avatar .color-light {
  font-weight: 500;
  font-size: 12px;
  color: #494a7d;
  opacity: 0.5;
}

.upload-avatar .color-red {
  font-weight: 500;
  font-size: 12px;
  color: var(--error);
}

.password {
  position: relative;
  border-radius: 32px;
  padding: 24px;
  max-width: 420px;
  width: 100%;
  height: 268px;
  margin: 0px auto 10px auto;
  -webkit-box-shadow: 0 13px 29px 0 rgba(129, 162, 197, 0.1), 0 53px 53px 0 rgba(129, 162, 197, 0.09), 0 120px 72px 0 rgba(129, 162, 197, 0.05), 0 213px 85px 0 rgba(129, 162, 197, 0.01), 0 333px 93px 0 rgba(129, 162, 197, 0);
          box-shadow: 0 13px 29px 0 rgba(129, 162, 197, 0.1), 0 53px 53px 0 rgba(129, 162, 197, 0.09), 0 120px 72px 0 rgba(129, 162, 197, 0.05), 0 213px 85px 0 rgba(129, 162, 197, 0.01), 0 333px 93px 0 rgba(129, 162, 197, 0);
  background: var(--white);
}

.password__header {
  margin: 0px 0px 24px 0px;
}

.password__title {
  font-weight: 500;
  font-size: 20px;
  color: #000;
}

.password__close {
  position: absolute;
  right: 12px;
  top: 12px;
}

.password__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  margin: 0px 0px 24px 0px;
}

.password__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 15px;
  padding: 13px;
  width: 64px;
  height: 64px;
  background: var(--background);
  font-weight: 500;
  font-size: 12px;
  line-height: 132%;
  letter-spacing: 0.01em;
  color: var(--primary);
}

.password__item.valid {
  border: 1px solid var(--succes);
}

.password__time {
  font-weight: 500;
  font-size: 14px;
  text-align: center;
  color: var(--secondary);
  margin: 0px 0px 12px 0px;
}

.password__error {
  font-weight: 500;
  font-size: 14px;
  text-align: center;
  color: var(--error);
}

.password__button {
  font-weight: 500;
  font-size: 16px;
  border: 1px solid #dde7f5;
  border-radius: 20px;
  padding: 16px 18px;
  max-width: 372px;
  width: 100%;
  margin: 12px auto 12px auto;
  height: 52px;
}

.password__button.disabled {
  text-align: center;
  color: var(--primary);
  opacity: 0.3;
}

.grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[1];
  grid-template-columns: repeat(1, 1fr);
  gap: 30px;
}

.authorization {
  position: relative;
  border-radius: 32px;
  padding: 24px;
  max-width: 420px;
  width: 100%;
  margin: 0 auto;
  -webkit-box-shadow: 0 13px 29px 0 rgba(129, 162, 197, 0.1), 0 53px 53px 0 rgba(129, 162, 197, 0.09), 0 120px 72px 0 rgba(129, 162, 197, 0.05), 0 213px 85px 0 rgba(129, 162, 197, 0.01), 0 333px 93px 0 rgba(129, 162, 197, 0);
          box-shadow: 0 13px 29px 0 rgba(129, 162, 197, 0.1), 0 53px 53px 0 rgba(129, 162, 197, 0.09), 0 120px 72px 0 rgba(129, 162, 197, 0.05), 0 213px 85px 0 rgba(129, 162, 197, 0.01), 0 333px 93px 0 rgba(129, 162, 197, 0);
  background: var(--white);
}

.authorization__close {
  position: absolute;
  right: 16px;
  top: 16px;
}

.authorization__header {
  margin: 0px 0px 24px 0px;
}

.authorization__title {
  font-weight: 500;
  font-size: 20px;
  color: #000;
  margin: 0px 0px 16px 0px;
}

.authorization__text {
  font-weight: 500;
  font-size: 16px;
  color: var(--primary);
}

.authorization__text a {
  color: var(--accent);
}

.authorization__inputs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
  margin: 0px 0px 24px 0px;
}

.authorization__line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.authorization__line .checkbox__text a {
  font-weight: 500;
  font-size: 14px;
  color: var(--accent);
}

.authorization__item-input {
  width: 100%;
}

.authorization__sub-title {
  font-weight: 500;
  font-size: 16px;
  color: var(--secondary);
  margin: 0px 0px 8px 0px;
}

.authorization__input {
  width: 100%;
  height: 100%;
  background-color: transparent;
  font-weight: 500;
  font-size: 16px;
  line-height: 132%;
  letter-spacing: 0.01em;
  color: var(--primary);
}

.authorization__input::-webkit-input-placeholder {
  font-size: 16px;
  line-height: 132%;
  letter-spacing: 0.01em;
  color: var(--primary);
}

.authorization__input::-moz-placeholder {
  font-size: 16px;
  line-height: 132%;
  letter-spacing: 0.01em;
  color: var(--primary);
}

.authorization__input:-ms-input-placeholder {
  font-size: 16px;
  line-height: 132%;
  letter-spacing: 0.01em;
  color: var(--primary);
}

.authorization__input::-ms-input-placeholder {
  font-size: 16px;
  line-height: 132%;
  letter-spacing: 0.01em;
  color: var(--primary);
}

.authorization__input::placeholder {
  font-size: 16px;
  line-height: 132%;
  letter-spacing: 0.01em;
  color: var(--primary);
}

.authorization__box-input {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-radius: 20px;
  padding: 18px;
  width: 100%;
  height: 56px;
  background: var(--background);
}

.authorization__error {
  font-weight: 600;
  font-size: 12px;
  line-height: 130%;
  color: var(--error);
  margin: 4px 0px 0px 0px;
}

.authorization__link {
  font-weight: 500;
  font-size: 14px;
  color: var(--accent);
}

.authorization__button {
  border-radius: 20px;
  padding: 16px 18px;
  width: 100%;
  height: 52px;
  margin: 24px 0px 0px 0px;
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  color: var(--white);
  background: var(--accent);
}

.password-recovery {
  position: relative;
  border-radius: 32px;
  padding: 24px;
  max-width: 420px;
  width: 100%;
  margin: 0 auto;
  -webkit-box-shadow: 0 13px 29px 0 rgba(129, 162, 197, 0.1), 0 53px 53px 0 rgba(129, 162, 197, 0.09), 0 120px 72px 0 rgba(129, 162, 197, 0.05), 0 213px 85px 0 rgba(129, 162, 197, 0.01), 0 333px 93px 0 rgba(129, 162, 197, 0);
          box-shadow: 0 13px 29px 0 rgba(129, 162, 197, 0.1), 0 53px 53px 0 rgba(129, 162, 197, 0.09), 0 120px 72px 0 rgba(129, 162, 197, 0.05), 0 213px 85px 0 rgba(129, 162, 197, 0.01), 0 333px 93px 0 rgba(129, 162, 197, 0);
  background: var(--white);
}

.password-recovery__close {
  position: absolute;
  right: 16px;
  top: 16px;
}

.password-recovery__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  margin: 0px 0px 24px 0px;
}

.password-recovery__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.password-recovery__arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.password-recovery__title {
  font-weight: 500;
  font-size: 20px;
  color: #000;
}

.password-recovery__text {
  font-weight: 500;
  font-size: 16px;
  color: var(--secondary);
  margin: 0px 0px 24px 0px;
}

.password-recovery__inputs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 24px;
}

.password-recovery__line {
  width: 100%;
}

.password-recovery__item-input {
  width: 100%;
}

.password-recovery__input-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-radius: 20px;
  padding: 18px;
  width: 100%;
  height: 56px;
  background: var(--background);
}

.input-error input {
  border: 1px solid rgba(244, 74, 74, 0.6);
}

.input-error-alt .profile__input-box {
  border: 1px solid rgba(244, 74, 74, 0.6);
}

.password-recovery__sub-title {
  font-weight: 500;
  font-size: 16px;
  color: var(--secondary);
  margin: 0px 0px 8px 0px;
}

.password-recovery__input {
  width: 100%;
  height: 100%;
  font-weight: 500;
  font-size: 16px;
  line-height: 132%;
  letter-spacing: 0.01em;
  color: var(--primary);
  background-color: transparent;
}

.form-input__erorr {
  font-weight: 600;
  font-size: 12px;
  line-height: 130%;
  color: var(--error);
  display: none;
}

.input-error .form-input__erorr {
  display: block;
}

.input-error-alt .form-input__erorr {
  display: block;
  margin-top: 20px;
}

.password-recovery__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 20px;
  padding: 16px 18px;
  width: 100%;
  height: 52px;
  background: var(--accent);
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  color: var(--white);
  margin-top: 24px;
}

.profile {
  position: relative;
  border-radius: 20px;
  padding: 24px;
  max-width: 802px;
  width: 100%;
  -webkit-box-shadow: 0 13px 29px 0 rgba(129, 162, 197, 0.1), 0 53px 53px 0 rgba(129, 162, 197, 0.09), 0 120px 72px 0 rgba(129, 162, 197, 0.05), 0 213px 85px 0 rgba(129, 162, 197, 0.01), 0 333px 93px 0 rgba(129, 162, 197, 0);
          box-shadow: 0 13px 29px 0 rgba(129, 162, 197, 0.1), 0 53px 53px 0 rgba(129, 162, 197, 0.09), 0 120px 72px 0 rgba(129, 162, 197, 0.05), 0 213px 85px 0 rgba(129, 162, 197, 0.01), 0 333px 93px 0 rgba(129, 162, 197, 0);
  background: var(--white);
  margin: 0 auto;
}

.profile__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
  margin: 0px 0px 32px 0px;
}

.profile__close {
  position: absolute;
  right: 16px;
  top: 16px;
}

.profile__icon {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.profile__icon img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.profile__name {
  font-weight: 500;
  font-size: 20px;
  color: #1f1f1f;
  margin: 0px 0px 12px 0px;
}

.profile__upload {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #dde7f5;
  border-radius: 12px;
  padding: 7px 12px 8px;
  max-width: 117px;
  width: 100%;
  background: var(--white);
  font-weight: 600;
  font-size: 12px;
  line-height: 130%;
  color: var(--primary);
  margin: 0px 0px 6px 0px;
}

.profile__formats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
  font-weight: 500;
  font-size: 12px;
  text-align: center;
  color: var(--secondary);
}

.profile__inputs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
  margin: 0px 0px 32px 0px;
}

.profile__line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
}

.profile__input-item {
  width: 100%;
}

.profile__sub-title {
  font-weight: 500;
  font-size: 16px;
  color: var(--secondary);
  margin: 0px 0px 8px 0px;
}

.profile__input-box {
  border-radius: 20px;
  padding: 18px;
  width: 100%;
  height: 56px;
  background: var(--background);
}

.profile__input {
  width: 100%;
  height: 100%;
  background-color: transparent;
  font-weight: 500;
  font-size: 16px;
  line-height: 132%;
  letter-spacing: 0.01em;
  color: var(--primary);
}

.profile__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.profile__button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 20px;
  padding: 16px 18px;
  height: 52px;
  font-weight: 500;
  font-size: 16px;
  text-align: center;
}

.profile__button.color-white {
  border: 1px solid #dde7f5;
  background: var(--white);
}

.profile__button.color-blue {
  background: var(--accent);
  color: var(--white);
}

.unsaved-changes {
  position: relative;
  border-radius: 32px;
  padding: 24px;
  max-width: 420px;
  width: 100%;
  background: var(--white);
  margin: 0 auto;
}

.unsaved-changes__title {
  font-weight: 500;
  font-size: 20px;
  color: #000;
  margin: 0px 0px 24px 0px;
}

.unsaved-changes__close {
  position: absolute;
  right: 16px;
  top: 16px;
}

.unsaved-changes__text {
  font-weight: 500;
  font-size: 14px;
  color: var(--secondary);
}

.unsaved-changes__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
}

.unsaved-changes__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #dde7f5;
  border-radius: 20px;
  padding: 16px 18px;
  max-width: 178px;
  width: 100%;
  height: 52px;
  margin: 24px auto 0px auto;
}

.unsaved-changes__button.dark {
  border: 1px solid #dde7f5;
  background: #f3f4f6;
}

.unsaved-changes__button.light {
  background: var(--white);
}

.profile-form {
  border-radius: 32px;
  padding: 24px;
  max-width: 656px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  -webkit-box-shadow: 0 13px 29px 0 rgba(129, 162, 197, 0.1), 0 53px 53px 0 rgba(129, 162, 197, 0.09), 0 120px 72px 0 rgba(129, 162, 197, 0.05), 0 213px 85px 0 rgba(129, 162, 197, 0.01), 0 333px 93px 0 rgba(129, 162, 197, 0);
          box-shadow: 0 13px 29px 0 rgba(129, 162, 197, 0.1), 0 53px 53px 0 rgba(129, 162, 197, 0.09), 0 120px 72px 0 rgba(129, 162, 197, 0.05), 0 213px 85px 0 rgba(129, 162, 197, 0.01), 0 333px 93px 0 rgba(129, 162, 197, 0);
  background: var(--white);
}

.profile-form__wrap-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  margin: 0px 0px 32px 0px;
}

.profile-form__arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.profile-form__name {
  font-weight: 600;
  font-size: 24px;
  color: #000;
}

.profile-user-data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
  margin: 0px 0px 32px 0px;
}

.profile-user-data__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.profile-user-data__text {
  font-weight: 500;
  font-size: 16px;
  color: var(--secondary);
}

.profile-user-data__purchase {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
  border-radius: 20px;
  padding: 10px 16px 10px 20px;
  max-width: 276px;
  width: 100%;
  height: 40px;
  background: rgba(209, 223, 251, 0.6);
}

.profile-user-data__purchase .text {
  font-weight: 600;
  font-size: 12px;
  line-height: 130%;
  color: var(--primary);
}

.profile-user-data__name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
  border-radius: 20px;
  padding: 10px 16px 10px 20px;
  font-weight: 500;
  font-size: 16px;
  color: var(--primary);
  max-width: 276px;
  width: 100%;
}

.profile-user-data__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 16px;
  padding: 16px 18px;
  max-width: 141px;
  width: 100%;
  height: 48px;
  background: var(--accent);
  font-weight: 500;
  font-size: 14px;
  text-align: center;
  color: var(--white);
}

.profile-user-data__btn.disabled {
  opacity: 0.4;
}

.profile-user-data__btn.request {
  background: #f3f4f6;
  color: var(--primary);
}

.profile-services {
  margin: 0px 0px 20px 0px;
}

.profile-services__wrap-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
  margin: 0px 0px 20px 0px;
}

.profile-services__title {
  font-weight: 600;
  font-size: 20px;
  color: var(--primary);
}

.profile-services__text {
  font-weight: 500;
  font-size: 14px;
  color: var(--secondary);
}

.profile-services .services-card {
  border-radius: 20px;
  padding: 16px;
  width: 100%;
  height: auto;
  background: #f8faff;
}

.profile-services .card-title,
.profile-services .service-price {
  font-weight: 600;
  font-size: 16px;
  color: var(--secondary);
}

.profile-form-footer__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
  font-weight: 500;
  font-size: 14px;
  color: var(--secondary);
  margin: 0px 0px 20px 0px;
}

.profile-form-footer__text .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* Основной блок */

.contact-database {
  position: relative;
  font-family: var(--font-family);
}

/* Заголовки */

.contact-database__header {
  margin-bottom: 20px;
}

.contact-database__title-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}

.contact-database__title {
  font-weight: 600;
  font-size: 28px;
  line-height: 144%;
  letter-spacing: 0.01em;
  color: var(--primary);
  margin: 0;
}

.contact-database__back-arrow {
  display: none;
}

/* Мобильный заголовок */

.contact-database__mobile-header {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
}

.contact-database__mobile-back {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 32px;
  height: 32px;
  cursor: pointer;
}

.contact-database__mobile-title {
  font-weight: 600;
  font-size: 20px;
  line-height: 144%;
  letter-spacing: 0.01em;
  color: var(--primary);
  margin: 0;
}

.contact-database__mobile-spacer {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

/* Панель управления */

.contact-database__controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

/* Вкладки */

.contact-database__tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.contact-database__tabs::-webkit-scrollbar {
  display: none;
}

.contact-database__tab {
  padding: 12px 16px;
  min-width: 155px;
  height: 45px;
  font-weight: 500;
  font-size: 16px;
  line-height: 132%;
  letter-spacing: 0.01em;
  text-align: center;
  color: var(--secondary);
  background: transparent;
  border: none;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  white-space: nowrap;
}

.contact-database__tab--active {
  color: var(--accent);
  border-bottom: 2px solid var(--accent);
}

.contact-database__tab:hover {
  color: var(--accent);
}

/* Действия */

.contact-database__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

/* Поиск */

.contact-database__search {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-width: 200px;
}

.contact-database__search-input {
  border: 1px solid #dde7f5;
  border-radius: 16px;
  padding: 0 12px 0 40px;
  width: 100%;
  min-width: 200px;
  height: 44px;
  font-weight: 500;
  font-size: 14px;
  line-height: 189%;
  color: var(--primary);
  background: var(--background);
  outline: none;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.contact-database__search-input::-webkit-input-placeholder {
  color: var(--secondary);
}

.contact-database__search-input::-moz-placeholder {
  color: var(--secondary);
}

.contact-database__search-input:-ms-input-placeholder {
  color: var(--secondary);
}

.contact-database__search-input::-ms-input-placeholder {
  color: var(--secondary);
}

.contact-database__search-input::placeholder {
  color: var(--secondary);
}

.contact-database__search-input:focus {
  border-color: var(--accent);
}

.contact-database__search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
  cursor: pointer;
}

.contact-database__search-toggle {
  display: none;
  border: 1.32px solid #dde7f5;
  border-radius: 16px;
  padding: 0px 12px;
  width: 48px;
  height: 44px;
  background: var(--background);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.contact-database__search-toggle:hover {
  border-color: var(--accent);
}

/* Расширенный поиск */

.contact-database__search-expanded {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  background: var(--white);
  padding: 10px;
  border-radius: 12px;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  -webkit-animation: expandSearch 0.3s ease-out;
          animation: expandSearch 0.3s ease-out;
}

.contact-database__search-expanded--active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@-webkit-keyframes expandSearch {
  from {
    opacity: 0;
    -webkit-transform: translateX(20px) scale(0.9);
            transform: translateX(20px) scale(0.9);
  }

  to {
    opacity: 1;
    -webkit-transform: translateX(0) scale(1);
            transform: translateX(0) scale(1);
  }
}

@keyframes expandSearch {
  from {
    opacity: 0;
    -webkit-transform: translateX(20px) scale(0.9);
            transform: translateX(20px) scale(0.9);
  }

  to {
    opacity: 1;
    -webkit-transform: translateX(0) scale(1);
            transform: translateX(0) scale(1);
  }
}

.contact-database__search-expanded-container {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border: 1.32px solid #dde7f5;
  border-radius: 16px;
  padding: 0px 12px;
  height: 44px;
  background: var(--white);
  -webkit-transition: all 0.5s ease-in-out 0.1s;
  -o-transition: all 0.5s ease-in-out 0.1s;
  transition: all 0.5s ease-in-out 0.1s;
  opacity: 0;
  -webkit-transform: translateX(-10px);
      -ms-transform: translateX(-10px);
          transform: translateX(-10px);
}

.contact-database__search-expanded--active .contact-database__search-expanded-container {
  opacity: 1;
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}

.contact-database__search-expanded-input {
  border: none;
  border-radius: 16px;
  padding: 0 12px 0 40px;
  width: 100%;
  height: 100%;
  font-weight: 500;
  font-size: 14px;
  color: var(--primary);
  background: var(--background);
  outline: none;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.contact-database__search-expanded-input:focus {
  border-color: var(--accent);
}

.contact-database__search-back {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 24px;
  height: 24px;
  cursor: pointer;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 8px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
  -webkit-transform: translateX(-10px);
      -ms-transform: translateX(-10px);
          transform: translateX(-10px);
  -webkit-transition: all 0.5s ease-in-out 0.2s;
  -o-transition: all 0.5s ease-in-out 0.2s;
  transition: all 0.5s ease-in-out 0.2s;
}

.contact-database__search-expanded--active .contact-database__search-back {
  opacity: 1;
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}

.contact-database__search-back:hover {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}

.contact-database__search-close {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 24px;
  height: 24px;
  cursor: pointer;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.contact-database__search-close:hover {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}

/* Выпадающий список */

.contact-database__dropdown {
  position: relative;
  border-radius: 16px;
  padding: 7px 12px 7px 16px;
  min-width: 180px;
  height: 43px;
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  letter-spacing: 0.02em;
  color: #5b7795;
  background-color: var(--tertiary);
  border: 1px solid #dde7f5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 999;
}

.contact-database__dropdown:hover {
  border-color: var(--accent);
}

.contact-database__dropdown-text {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.contact-database__dropdown-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.contact-database__dropdown-toggle {
  display: none;
  border-radius: 16px;
  padding: 7px 12px;
  width: 48px;
  height: 44px;
  background-color: var(--tertiary);
  border: 1px solid #dde7f5;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.contact-database__dropdown-toggle:hover {
  border-color: var(--accent);
}

.contact-database__dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: var(--white);
  border: 1px solid #dde7f5;
  border-radius: 8px;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-top: 1px;
  z-index: 100;
}

.contact-database__dropdown-link {
  display: block;
  padding: 12px 16px;
  text-decoration: none;
  color: var(--primary);
  font-size: 14px;
  -webkit-transition: background-color 0.2s;
  -o-transition: background-color 0.2s;
  transition: background-color 0.2s;
}

.contact-database__dropdown-link:hover {
  background-color: var(--tertiary);
}

.contact-database__dropdown:hover .contact-database__dropdown-content {
  display: block;
}

/* Кнопка экспорта */

.contact-database__export {
  border: 1px solid #dde7f5;
  border-radius: 20px;
  padding: 12px 14px 12px 12px;
  height: 48px;
  font-weight: 500;
  font-size: 14px;
  text-align: center;
  color: var(--primary);
  background-color: var(--white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-decoration: none;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.contact-database__export:hover {
  background-color: #f5f5f5;
  border-color: var(--accent);
}

.contact-database__export-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.contact-database__export-text {
  font-weight: 500;
  font-size: 14px;
  color: var(--primary);
}

.contact-database__export--compact {
  display: none;
  border: 1px solid #dde7f5;
  border-radius: 16px;
  padding: 12px;
  width: 48px;
  height: 44px;
  background-color: var(--white);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-decoration: none;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.contact-database__export--compact:hover {
  border-color: var(--accent);
}

/* Контент */

.contact-database__content {
  display: none;
}

.contact-database__content--active {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.contact-database__placeholder {
  padding: 20px;
  text-align: center;
  color: var(--secondary);
}

/* Таблица */

.contact-database__table {
  background: var(--white);
  border-radius: 12px;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
          box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Скролл для таблиц на десктопе и планшетах */

.contact-database__table-wrapper {
  border-radius: 12px;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
          box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  overflow: auto;
  max-height: 760px;
}

.contact-database__table-wrapper .simplebar-track.simplebar-vertical {
  right: 10px !important;
  top: 10px !important;
  bottom: 10px !important;
}

.contact-database__table-wrapper .simplebar-track.simplebar-horizontal {
  right: 10px !important;
  top: auto !important;
  bottom: 10px !important;
}

.contact-database__table {
  min-width: 999px;
  width: 100%;
}

.contact-database__table-header {
  padding: 19px 16px 19px 50px;
  background: #ecf4ff;
  height: 56px;
  font-weight: 500;
  font-size: 14px;
  color: var(--primary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-width: 1024px;
  position: sticky;
  top: 0;
  z-index: 99;
}

.contact-database__table-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 16px 16px 16px 50px;
  border-bottom: 1px solid #e0e0e0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 60px;
  -webkit-transition: background-color 0.2s;
  -o-transition: background-color 0.2s;
  transition: background-color 0.2s;
  position: relative;
  min-width: 1024px;
}

.contact-database__table-item:hover {
  background-color: rgba(72, 150, 254, 0.05);
}

.contact-database__table-item:last-child {
  border-bottom: none;
}

.contact-database__table-cell {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-weight: 500;
  font-size: 16px;
  line-height: 132%;
  letter-spacing: 0.01em;
  color: #5b7795;
  min-width: 150px;
}

.contact-database__table-cell--title {
  font-weight: 700;
  font-size: 12px;
  line-height: 146%;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #5b7795;
}

.contact-database__table-icon {
  position: absolute;
  width: 20px;
  height: 20px;
  left: 10px;
  top: 20px;
}

/* Модификаторы для таблицы Requests */

/* Модификаторы для таблицы Requests с действиями */

/* Кнопки статуса */

.contact-database__status-button {
  border-radius: 40px;
  padding: 4px 9px;
  width: 90px;
  height: 26px;
  font-weight: 500;
  font-size: 12px;
  line-height: 130%;
  text-align: center;
  border: none;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.contact-database__status-button--success {
  color: var(--succes);
  background: rgba(77, 197, 125, 0.1);
}

.contact-database__status-button--danger {
  background: rgba(255, 49, 86, 0.1);
  color: #ff3156;
}

.contact-database__status-button--accent {
  color: var(--accent);
  background: rgba(72, 150, 254, 0.1);
}

/* Кнопки действий */

.contact-database__actions-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contact-database__action-button {
  border: 1px solid #dde7f5;
  border-radius: 12px;
  padding: 7px 12px 8px;
  height: 33px;
  font-weight: 600;
  font-size: 12px;
  line-height: 130%;
  color: var(--primary);
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}

.contact-database__action-button svg {
  margin-right: 20px;
}

.contact-database__action-button--accept {
  width: 74px;
  background: #f3f4f6;
}

.contact-database__action-button--reject {
  width: 87px;
  background: var(--white);
}

.contact-database__action-button--icon {
  background: var(--white);
  border: none;
  padding: 0;
  width: 100%;
}

.contact-database__action-button:hover {
  border-color: var(--accent);
  -webkit-transform: translateY(-1px);
      -ms-transform: translateY(-1px);
          transform: translateY(-1px);
}

.contact-database__action-button--accept:hover {
  background: #e5e7eb;
}

.contact-database__action-button--reject:hover,
.contact-database__action-button--icon:hover {
  background: #f9fafb;
}

/* Мобильное меню */

.contact-database__mobile-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(35, 42, 52, 0.45);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  z-index: 1000;
}

.contact-database__mobile-overlay--active {
  display: block;
}

.contact-database__mobile-menu {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 20px 20px 0 0;
  padding: 16px 0px 32px 0px;
  width: 100%;
  height: 200px;
  -webkit-box-shadow: 0 -8px 24px 0 rgba(0, 0, 0, 0.1), 0 -2px 24px 0 rgba(0, 0, 0, 0.08);
          box-shadow: 0 -8px 24px 0 rgba(0, 0, 0, 0.1), 0 -2px 24px 0 rgba(0, 0, 0, 0.08);
  background: var(--white);
  z-index: 1001;
  -webkit-transform: translateY(100%);
      -ms-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.contact-database__mobile-menu--active {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

.contact-database__mobile-menu-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 16px 16px 16px;
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 8px;
}

.contact-database__mobile-menu-title {
  font-weight: 600;
  font-size: 16px;
  color: var(--primary);
}

.contact-database__mobile-menu-close {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 24px;
  height: 24px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.contact-database__mobile-menu-close:hover {
  opacity: 0.7;
}

.contact-database__mobile-menu-item {
  padding: 12px 16px;
  max-width: 100%;
  height: 48px;
  font-weight: 600;
  font-size: 14px;
  line-height: 130%;
  color: var(--accent);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  cursor: pointer;
  -webkit-transition: background-color 0.2s;
  -o-transition: background-color 0.2s;
  transition: background-color 0.2s;
}

.contact-database__mobile-menu-item--inactive {
  color: var(--secondary);
}

.contact-database__mobile-menu-item:hover {
  background-color: var(--tertiary);
}

/* Адаптивность */

/* Блок чата */

.page-title {
  margin: 0px 0px 20px 0px;
}

.chat {
  border-radius: 32px;
  min-width: 684px;
  height: 664px;
  -webkit-box-shadow: 0 12px 40px 0 rgba(79, 79, 79, 0.05), 0 2px 8px 0 rgba(79, 79, 79, 0.1);
  box-shadow: 0 12px 40px 0 rgba(79, 79, 79, 0.05), 0 2px 8px 0 rgba(79, 79, 79, 0.1);
  background: var(--white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
}

/* Элемент заголовка чата */

.chat__header {
  border-bottom: 1px solid rgba(188, 195, 208, 0.3);
  padding: 14px;
  background: var(--white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
}

/* Элемент контента чата */

.chat__content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 24px 24px 24px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
}

/* Блок информации о пользователе */

.user-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.user-info__arrow {
  display: none;
}

/* Элемент аватара пользователя */

.user-info__avatar {
  margin-right: 16px;
}

/* Элемент деталей пользователя */

.user-info__details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

/* Элемент имени пользователя */

.user-info__name {
  font-weight: 500;
  font-size: 18px;
  color: var(--primary);
  margin: 0 0 4px 0;
}

/* Элемент ссылки контакта */

.user-info__contact-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 500;
  font-size: 16px;
  line-height: 132%;
  letter-spacing: 0.01em;
  color: var(--accent);
  text-decoration: none;
  gap: 8px;
}

/* Блок кнопки "Назад" */

.chat__back-button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-right: 16px;
  display: none;
}

.chat__back-button span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

/* Блок кнопки меню */

.chat__menu-button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.chat__menu-button span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

/* Блок "Подробнее" для мобильной версии */

.more-details {
  display: none;
  padding: 12px 24px;
  border-bottom: 1px solid rgba(188, 195, 208, 0.3);
}

.more-details__button {
  width: 100%;
  padding: 12px;
  background: rgba(72, 150, 254, 0.1);
  border: none;
  border-radius: 12px;
  color: var(--accent);
  font-weight: 500;
  cursor: pointer;
}

/* Блок сообщений */

.messages {
  margin-bottom: 16px;
  overflow-y: auto;
}

.messages-wrapper {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.messages .simplebar-scrollbar:before {
  top: 20px;
  bottom: 20px;
  left: 0px;
  right: 0px;
}

.messages .simplebar-track {
  width: 8px !important;
  right: 0px !important;
}

/* Блок пустого состояния */

.empty-state {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 16px;
  padding: 40px 20px;
}

.empty-state__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.empty-state__text {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  color: var(--secondary);
}

/* Элемент разделителя даты */

.messages__date-divider {
  text-align: center;
  font-size: 14px;
  color: var(--secondary);
  position: relative;
  margin: 0px 0px 10px 0px;
}

.messages__date-divider::before,
.messages__date-divider::after {
  display: none;
  content: "";
  position: absolute;
  top: 50%;
  width: 40%;
  height: 1px;
  background: rgba(188, 195, 208, 0.3);
}

.messages__date-divider::before {
  left: 0;
}

.messages__date-divider::after {
  right: 0;
}

/* Блок сообщения */

.message {
  max-width: 340px;
  position: relative;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: var(--primary);
}

/* Модификатор сообщения - исходящее */

.message--outgoing {
  -ms-flex-item-align: start;
  align-self: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 12px;
  margin-right: 40px;
}

/* Модификатор сообщения - входящее */

.message--incoming {
  -ms-flex-item-align: end;
  align-self: flex-end;
  border-radius: 16px 16px 4px 16px;
  background: #f5f7fa;
  padding: 10px;
  margin: 20px 10px 20px auto;
}

/* Элемент аватара сообщения */

.message__avatar {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.message__avatar span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

/* Элемент контента сообщения */

.message__content {
  background: rgba(72, 150, 254, 0.1);
  border-radius: 16px 16px 16px 4px;
  padding: 10px;
  max-width: 340px;
}

/* Элемент времени сообщения */

.message__time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  font-weight: 600;
  font-size: 12px;
  line-height: 139%;
  color: var(--secondary);
  margin-top: 8px;
}

/* Модификатор времени с галочкой */

.message__time--checkmark {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
}

.message__time--checkmark span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

/* Блок контейнера файлов */

.files-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

/* Блок сообщения с файлом */

.file-message {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  width: 248px;
  height: auto;
}

/* Элемент изображения файла */

.file-message__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/* Элемент информации о файле */

.file-message__info {
  font-weight: 500;
  font-size: 12px;
  line-height: 130%;
  text-align: right;
  color: var(--white);
  border-radius: 30px;
  padding: 2px 6px;
  width: 80px;
  height: 30px;
  position: absolute;
  bottom: 10px;
  right: 25px;
  background: rgba(0, 0, 0, 0.6);
  padding: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/* Элемент времени файла */

.file-message__time {
  font-weight: 600;
  font-size: 12px;
  color: var(--white);
}

.file-message__info span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

/* Блок информации */

.info-block {
  margin-top: 24px;
  padding: 16px;
  background: transparent;
  border-radius: 12px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

/* Элемент контента информации */

.info-block__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.info-block__content span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

/* Элемент текста информации */

.info-block__text {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.01em;
  color: var(--secondary);
  line-height: 1.4;
}

/* Элемент кнопок действий */

.info-block__action-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px;
}

/* Блок кнопки действия */

.action-button {
  border-radius: 16px;
  padding: 16px 18px;
  height: 48px;
  background: var(--white);
  border: 1px solid rgba(188, 195, 208, 0.5);
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 8px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.action-button:hover {
  background: #f5f7fa;
}

/* Модификатор кнопки действия - принятие */

.action-button--accept {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

.action-button--accept:hover {
  background: #3a7bd5;
}

/* Модификатор кнопки действия - возврат */

.action-button--return {
  color: var(--secondary);
}

.action-button span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

/* Блок ввода сообщения */

.message-input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

/* Элемент поля ввода */

.message-input__field {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  border: 1px solid #dde7f5;
  border-radius: 16px;
  padding: 17px 16px;
  height: 52px;
  background: var(--background);
  font-family: var(--font-family);
  font-size: 14px;
  color: var(--primary);
}

.message-input__field::-webkit-input-placeholder {
  color: var(--secondary);
}

.message-input__field::-moz-placeholder {
  color: var(--secondary);
}

.message-input__field:-ms-input-placeholder {
  color: var(--secondary);
}

.message-input__field::-ms-input-placeholder {
  color: var(--secondary);
}

.message-input__field::placeholder {
  color: var(--secondary);
}

/* Блок списка чатов */

.chats-section-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  row-gap: 20px;
}

.chats-list {
  border-radius: 32px;
  padding: 12px 20px 12px 12px;
  width: 100%;
  max-width: 400px;
  height: 664px;
  -webkit-box-shadow: 0 12px 40px 0 rgba(79, 79, 79, 0.05), 0 2px 8px 0 rgba(79, 79, 79, 0.1);
          box-shadow: 0 12px 40px 0 rgba(79, 79, 79, 0.05), 0 2px 8px 0 rgba(79, 79, 79, 0.1);
  background: var(--white);
  overflow-y: auto;
}

.chats-list .simplebar-scrollbar:before {
  top: 20px;
  bottom: 20px;
  left: 0px;
  right: 0px;
}

.chats-list .simplebar-track {
  width: 8px !important;
  right: 7px !important;
}

/* Элемент чата */

.chat-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 12px 12px 12px 25px;
  border-radius: 16px;
  margin-bottom: 8px;
  cursor: pointer;
  -webkit-transition: background-color 0.2s;
  -o-transition: background-color 0.2s;
  transition: background-color 0.2s;
  position: relative;
}

.chat-item:hover,
.chat-item.active {
  background: #f8faff;
}

/* Индикатор для десктопной версии */

.status-indicator.desktop-indicator {
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  z-index: 1;
}

/* Индикатор для мобильной версии - скрыт по умолчанию */

.status-indicator.mobile-indicator {
  display: none;
}

.avatar-container {
  position: relative;
  margin-right: 12px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.chat-item.variant0 {
  --avatar-color: #E75FFF;
}

.chat-item.variant1 {
  --avatar-color: #4d67ff;
}

.chat-item.variant2 {
  --avatar-color: #05c99b;
}

.chat-item.variant3 {
  --avatar-color: #f73c65;
}

.chat-item.variant4 {
  --avatar-color: #ff8000;
}

.chat-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}

.chat-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 4px;
}

.user-name {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  color: var(--primary);
  background: var(--white);
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 200px;
}

.chat-item:hover .user-name,
.chat-item.active .user-name {
  background: #f8faff;
}

.timestamp {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 12px;
  line-height: 130%;
  text-align: right;
  color: var(--secondary);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: 8px;
}

.message-preview {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  color: var(--secondary);
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  white-space: nowrap;
}

/* Мобильная версия */

/* Стилизация скроллбара */

.chats-list::-webkit-scrollbar {
  width: 6px;
}

.chats-list::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 100px;
}

.chats-list::-webkit-scrollbar-thumb {
  border-radius: 100px;
  width: 6px;
  height: 96px;
  background: var(--secondary);
}

.chats-list::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* Для Firefox */

.chats-list {
  scrollbar-width: thin;
  scrollbar-color: var(--secondary) transparent;
}

.services-card {
  border-radius: 20px;
  padding: 20px 16px;
  max-width: 380px;
  width: 100%;
  height: auto;
  -webkit-box-shadow: 0 13px 29px 0 rgba(129, 162, 197, 0.1), 0 53px 53px 0 rgba(129, 162, 197, 0.09), 0 120px 72px 0 rgba(129, 162, 197, 0.05), 0 213px 85px 0 rgba(129, 162, 197, 0.01), 0 333px 93px 0 rgba(129, 162, 197, 0);
          box-shadow: 0 13px 29px 0 rgba(129, 162, 197, 0.1), 0 53px 53px 0 rgba(129, 162, 197, 0.09), 0 120px 72px 0 rgba(129, 162, 197, 0.05), 0 213px 85px 0 rgba(129, 162, 197, 0.01), 0 333px 93px 0 rgba(129, 162, 197, 0);
  background: var(--white);
}

.card-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 20px;
}

.header-left {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.card-title {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: var(--primary);
  margin: 0 0 8px 0;
}

.card-date {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 12px;
  color: var(--secondary);
  margin: 0;
}

.edit-button {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  color: var(--accent);
  background: none;
  border: none;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 0;
}

.edit-button svg {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.divider {
  height: 1px;
  background: rgba(188, 195, 208, 0.3);
  margin-bottom: 20px;
}

.services-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.service-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}

.checkbox-container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.service-checkbox {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.custom-checkbox {
  border: 1px solid #ebecef;
  border-radius: 6px;
  width: 24px;
  height: 24px;
  background: var(--white);
  display: inline-block;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  position: relative;
}

.service-checkbox:checked + .custom-checkbox {
  border: 1px solid transparent;
  background: transparent;
}

.service-checkbox:checked + .custom-checkbox::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg width=%2724%27 height=%2724%27 viewBox=%270 0 24 24%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Crect opacity=%270.1%27 width=%2724%27 height=%2724%27 rx=%276%27 fill=%27%234896FE%27/%3E%3Cpath d=%27M6 11.4286L9.64028 15.2422C10.0342 15.6549 10.6931 15.6549 11.087 15.2422L18 8%27 stroke=%27%234896FE%27 stroke-width=%273%27 stroke-linecap=%27round%27/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 6px;
}

.service-name {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 132%;
  letter-spacing: 0.01em;
  color: var(--secondary);
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  cursor: pointer;
  margin: 0;
}

.service-price {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 132%;
  letter-spacing: 0.01em;
  color: var(--primary);
}

.total-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 16px;
  border-top: 1px solid #eee;
}

.total-text {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 132%;
  letter-spacing: 0.01em;
  color: var(--secondary);
}

.total-amount {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 20px;
  color: var(--primary);
}

/* Контейнер для элементов управления */

.controls {
  position: relative;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.controls__dropdowns {
  gap: 8px;
  width: 100%;
  max-width: 450px;
  width: 100%;
}

/* Блок выпадающего списка */

.controls-dropdown {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  position: relative;
  border-radius: 16px;
  padding: 7px 12px 7px 16px;
  width: 100%;
  height: 44px;
  background: var(--tertiary);
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  color: var(--secondary);
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.controls-dropdown:hover {
  background: #eef2ff;
}

.controls-dropdown__content {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: var(--white);
  border-radius: 16px;
  padding: 8px;
  z-index: 1;
  margin-top: 0px;
  -webkit-box-shadow: 0 13px 29px 0 rgba(129, 162, 197, 0.1), 0 53px 53px 0 rgba(129, 162, 197, 0.09), 0 120px 72px 0 rgba(129, 162, 197, 0.05), 0 213px 85px 0 rgba(129, 162, 197, 0.01), 0 333px 93px 0 rgba(129, 162, 197, 0);
          box-shadow: 0 13px 29px 0 rgba(129, 162, 197, 0.1), 0 53px 53px 0 rgba(129, 162, 197, 0.09), 0 120px 72px 0 rgba(129, 162, 197, 0.05), 0 213px 85px 0 rgba(129, 162, 197, 0.01), 0 333px 93px 0 rgba(129, 162, 197, 0);
}

.controls-dropdown__link {
  display: block;
  font-weight: 500;
  font-size: 14px;
  color: var(--secondary);
  border-radius: 4px;
  padding: 9px 12px;
  width: 100%;
  height: 36px;
  text-decoration: none;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.controls-dropdown__link:hover,
.controls-dropdown__link--active {
  background: #f8faff;
  color: var(--accent);
}

.controls-dropdown--active .controls-dropdown__content {
  display: block;
}

.controls-dropdown__text {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.controls-dropdown__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.controls-dropdown__icon--arrow {
  /* Стрелка для десктопа */
}

.controls-dropdown__icon--sorting {
  /* Иконка сортировки для мобильной версии */
  display: none;
}

/* Блок поиска */

.search {
  position: relative;
  border: 1px solid #dde7f5;
  border-radius: 16px;
  padding: 0px 12px;
  max-width: 320px;
  width: 100%;
  height: 44px;
  background: var(--background);
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 189%;
  color: var(--secondary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.search:focus-within {
  border-color: var(--accent);
  -webkit-box-shadow: 0 0 0 2px rgba(45, 110, 253, 0.1);
          box-shadow: 0 0 0 2px rgba(45, 110, 253, 0.1);
}

.search__input {
  border: none;
  outline: none;
  background: transparent;
  width: 100%;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  color: var(--secondary);
  padding-left: 32px;
}

.search__input::-webkit-input-placeholder {
  color: var(--secondary);
}

.search__input::-moz-placeholder {
  color: var(--secondary);
}

.search__input:-ms-input-placeholder {
  color: var(--secondary);
}

.search__input::-ms-input-placeholder {
  color: var(--secondary);
}

.search__input::placeholder {
  color: var(--secondary);
}

.search__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  left: 12px;
}

/* Контейнер для дропдаунов на десктопе */

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

/* Блюр-оверлей при открытом мобильном меню */

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  background: rgba(35, 42, 52, 0.45);
  z-index: 999;
}

.mobile-overlay--active {
  display: block;
}

/* Мобильное меню */

.mobile-menu {
  position: fixed;
  bottom: 130px;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(100%);
      -ms-transform: translateX(-50%) translateY(100%);
          transform: translateX(-50%) translateY(100%);
  width: 375px;
  height: 130px;
  border-radius: 20px 20px 0 0;
  padding: 16px;
  -webkit-box-shadow: 0 -8px 24px 0 rgba(0, 0, 0, 0.1), 0 -2px 24px 0 rgba(0, 0, 0, 0.08);
          box-shadow: 0 -8px 24px 0 rgba(0, 0, 0, 0.1), 0 -2px 24px 0 rgba(0, 0, 0, 0.08);
  background: var(--white);
  z-index: 1000;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.order-status-list.mobile-menu {
  height: 220px;
  bottom: 220px;
}

.mobile-menu--active {
  display: block;
  -webkit-transform: translateX(-50%) translateY(0);
      -ms-transform: translateX(-50%) translateY(0);
          transform: translateX(-50%) translateY(0);
}

.mobile-menu__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 12px 16px;
  font-weight: 600;
  font-size: 14px;
  line-height: 130%;
  color: var(--secondary);
  text-decoration: none;
  -webkit-transition: color 0.2s ease;
  -o-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.mobile-menu__link--active {
  color: var(--accent);
}

.mobile-menu__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 24px;
  height: 24px;
}

/* Мобильная версия */

.information {
  position: relative;
  border-radius: 32px;
  padding: 24px;
  max-width: 802px;
  width: 100%;
  -webkit-box-shadow: 0 13px 29px 0 rgba(129, 162, 197, 0.1), 0 53px 53px 0 rgba(129, 162, 197, 0.09), 0 120px 72px 0 rgba(129, 162, 197, 0.05), 0 213px 85px 0 rgba(129, 162, 197, 0.01), 0 333px 93px 0 rgba(129, 162, 197, 0);
          box-shadow: 0 13px 29px 0 rgba(129, 162, 197, 0.1), 0 53px 53px 0 rgba(129, 162, 197, 0.09), 0 120px 72px 0 rgba(129, 162, 197, 0.05), 0 213px 85px 0 rgba(129, 162, 197, 0.01), 0 333px 93px 0 rgba(129, 162, 197, 0);
  background: var(--white);
  margin: 0 auto;
}

.information__close {
  position: absolute;
  right: 16px;
  top: 16px;
}

.information__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 18px;
     -moz-column-gap: 18px;
          column-gap: 18px;
  margin: 0px 0px 24px 0px;
}

.information__wrap-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 18px;
     -moz-column-gap: 18px;
          column-gap: 18px;
}

.information__title {
  font-weight: 600;
  font-size: 24px;
  color: #000;
}

.inputs-information__title {
  margin: 0px 0px 20px 0px;
}

.inputs-information__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  row-gap: 24px;
}

.inputs-information__line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
}

.inputs-information__input-item {
  width: 100%;
}

.inputs-information__sub-title {
  font-weight: 500;
  font-size: 16px;
  color: var(--secondary);
  margin: 0px 0px 8px 0px;
}

.inputs-information__box-input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-radius: 20px;
  padding: 18px;
  width: 100%;
  height: 56px;
  background: var(--background);
}

.inputs-information__box-input:not(:last-child) {
  margin-bottom: 10px;
}

.inputs-information__box-input.information-covered {
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  background: rgba(209, 223, 251, 0.6);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.inputs-information__box-input.information-covered .inputs-information__input::-webkit-input-placeholder {
  color: var(--primary);
}

.inputs-information__box-input.information-covered .inputs-information__input::-moz-placeholder {
  color: var(--primary);
}

.inputs-information__box-input.information-covered .inputs-information__input:-ms-input-placeholder {
  color: var(--primary);
}

.inputs-information__box-input.information-covered .inputs-information__input::-ms-input-placeholder {
  color: var(--primary);
}

.inputs-information__box-input.information-covered .inputs-information__input::placeholder {
  color: var(--primary);
}

.inputs-information__input {
  font-weight: 500;
  font-size: 16px;
  line-height: 132%;
  letter-spacing: 0.01em;
  background-color: transparent;
  width: 100%;
}

.inputs-information__input::-webkit-input-placeholder {
  color: var(--secondary);
}

.inputs-information__input::-moz-placeholder {
  color: var(--secondary);
}

.inputs-information__input:-ms-input-placeholder {
  color: var(--secondary);
}

.inputs-information__input::-ms-input-placeholder {
  color: var(--secondary);
}

.inputs-information__input::placeholder {
  color: var(--secondary);
}

.inputs-information__footer {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}

.inputs-information__footer.flex-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
}

.inputs-information__footer.flex-between .inputs-information__button {
  max-width: 100%;
  width: 100%;
}

.inputs-information__footer.text-left {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}

.inputs-information__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 20px;
  padding: 16px 18px;
  max-width: 156px;
  width: 100%;
  height: 52px;
  background: var(--accent);
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  color: var(--white);
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.inputs-information__button.disabled {
  opacity: 0.4;
}

.inputs-information__button.light {
  border: 1px solid #dde7f5;
  background: var(--white);
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  color: var(--primary);
}

.inputs-information__button .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.inputs-information__button.light-dark {
  background: #f3f4f6;
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  color: var(--primary);
  border: 1px solid #dde7f5;
}

.inputs-information__tippy {
  position: absolute;
  right: 160px;
  bottom: -20px;
  border-radius: 8px;
  padding: 6px 14px;
  max-width: 268px;
  width: 100%;
  height: 32px;
  background: #8a95a5;
  font-weight: 500;
  font-size: 16px;
  color: var(--white);
}

.inputs-information__tippy::after {
  content: "";
  display: block;
  position: absolute;
  right: 120px;
  top: -10px;
  width: 26px;
  height: 17px;
  background-image: url("data:image/svg+xml,%3Csvg width=%2726%27 height=%2717%27 viewBox=%270 0 26 17%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M11.4519 0.892767C12.2521 -0.0855978 13.7479 -0.0855979 14.5481 0.892767L25.0509 13.7338C26.1191 15.0397 25.1899 17 23.5028 17H2.49717C0.810069 17 -0.11907 15.0397 0.949057 13.7338L11.4519 0.892767Z%27 fill=%27%238A95A5%27 /%3E%3C/svg%3E");
}

.contact-purchased {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
  margin-left: auto;
}

.contact-purchased__text {
  font-weight: 500;
  font-size: 14px;
  color: var(--secondary);
}

.contact-purchased__tippy {
  position: absolute;
  left: -50%;
  bottom: -40px;
  border-radius: 8px;
  padding: 6px 14px;
  background: #8a95a5;
  font-weight: 500;
  font-size: 16px;
  color: var(--white);
}

.contact-purchased__tippy::after {
  content: "";
  position: absolute;
  width: 26px;
  height: 17px;
  top: -10px;
  left: 76px;
  background-image: url("data:image/svg+xml,%3Csvg width=%2726%27 height=%2717%27 viewBox=%270 0 26 17%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M11.4519 0.892767C12.2521 -0.0855978 13.7479 -0.0855979 14.5481 0.892767L25.0509 13.7338C26.1191 15.0397 25.1899 17 23.5028 17H2.49717C0.810069 17 -0.11907 15.0397 0.949057 13.7338L11.4519 0.892767Z%27 fill=%27%238A95A5%27 /%3E%3C/svg%3E");
}

.confirm-purchase {
  border-radius: 32px;
  padding: 24px;
  max-width: 420px;
  width: 100%;
  height: 150px;
  margin: 0 auto;
  background: var(--white);
}

.confirm-purchase__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0px 0px 24px 0px;
}

.confirm-purchase__text {
  font-weight: 500;
  font-size: 20px;
  color: #000;
}

.confirm-purchase__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.confirm-purchase__button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-line-pack: inherit;
      align-content: inherit;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #dde7f5;
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  color: var(--primary);
  border-radius: 20px;
  padding: 16px 18px;
  max-width: 178px;
  width: 100%;
}

.confirm-purchase__button.light-dark {
  background: #f3f4f6;
}

.confirm-purchase__button.white {
  background: var(--white);
}

.confirm-purchase__button.delete {
  border: 1px solid var(--error);
  color: var(--error);
}

.wallet {
  border-radius: 32px;
  padding: 24px;
  max-width: 656px;
  width: 100%;
  -webkit-box-shadow: 0 13px 29px 0 rgba(129, 162, 197, 0.1), 0 53px 53px 0 rgba(129, 162, 197, 0.09), 0 120px 72px 0 rgba(129, 162, 197, 0.05), 0 213px 85px 0 rgba(129, 162, 197, 0.01), 0 333px 93px 0 rgba(129, 162, 197, 0);
          box-shadow: 0 13px 29px 0 rgba(129, 162, 197, 0.1), 0 53px 53px 0 rgba(129, 162, 197, 0.09), 0 120px 72px 0 rgba(129, 162, 197, 0.05), 0 213px 85px 0 rgba(129, 162, 197, 0.01), 0 333px 93px 0 rgba(129, 162, 197, 0);
  background: var(--white);
  margin: 0 auto;
}

.wallet__header {
  margin: 0px 0px 24px 0px;
}

.wallet__wrap-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.wallet__arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.wallet__text {
  font-weight: 600;
  font-size: 24px;
  color: var(--primary);
}

.wallet__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.wallet__balance {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 10px;
}

.wallet__balance-text {
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  color: var(--secondary);
}

.wallet__sum {
  font-weight: 600;
  font-size: 27px;
  line-height: 110%;
  color: var(--primary);
}

.wallet__button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: var(--accent);
  border-radius: 20px;
  padding: 16px 18px;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.wallet__button .text {
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  color: var(--white);
}

.wallet__button .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.transaction-history {
  position: relative;
  border-radius: 32px;
  padding: 24px 12px;
  max-width: 656px;
  width: 100%;
  -webkit-box-shadow: 0 13px 29px 0 rgba(129, 162, 197, 0.1), 0 53px 53px 0 rgba(129, 162, 197, 0.09), 0 120px 72px 0 rgba(129, 162, 197, 0.05), 0 213px 85px 0 rgba(129, 162, 197, 0.01), 0 333px 93px 0 rgba(129, 162, 197, 0);
          box-shadow: 0 13px 29px 0 rgba(129, 162, 197, 0.1), 0 53px 53px 0 rgba(129, 162, 197, 0.09), 0 120px 72px 0 rgba(129, 162, 197, 0.05), 0 213px 85px 0 rgba(129, 162, 197, 0.01), 0 333px 93px 0 rgba(129, 162, 197, 0);
  background: var(--white);
  margin: 0 auto;
}

.transaction-history__title {
  font-weight: 600;
  font-size: 27px;
  color: #000;
  margin: 0px 0px 24px 0px;
  padding: 0px 12px 0px 12px;
}

.transaction-history__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.transaction-history__empty {
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  color: var(--secondary);
}

.transaction-history__close {
  position: absolute;
  right: 16px;
  top: 16px;
}

.transaction-history.empty {
  min-height: 174px;
}

.transaction-history-item {
  border-radius: 12px;
  padding: 12px;
  background-color: #fff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.transaction-history-item._active {
  background: #f8faff;
}

.transaction-history-item__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.transaction-history-item__name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 5px;
}

.transaction-history-item__title {
  font-weight: 500;
  font-size: 14px;
  color: #1f1f1f;
}

.transaction-history-item__text {
  font-weight: 600;
  font-size: 12px;
  line-height: 130%;
  color: var(--secondary);
}

.transaction-history-item__done {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 5px;
}

.transaction-history-item__sum {
  font-weight: 500;
  font-size: 16px;
  line-height: 132%;
  letter-spacing: 0.01em;
  color: var(--primary);
}

.transaction-history-item__sum.color-green {
  color: var(--succes);
}

.transaction-history-item__time {
  font-weight: 600;
  font-size: 12px;
  line-height: 130%;
  text-align: right;
  color: var(--secondary);
}

.request-board__wrap-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 16px;
  margin: 0px 0px 40px 0px;
}

.request-board__title {
  font-weight: 600;
  font-size: 28px;
  line-height: 144%;
  letter-spacing: 0.01em;
  color: #2d2d2d;
}

.request-board__text {
  font-weight: 500;
  font-size: 20px;
  color: var(--secondary);
}

.request-board__text1 {
  font-weight: 500;
  font-size: 16px;
  line-height: 132%;
  color: var(--secondary);
}

.request-board-search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
  border-radius: 20px;
  padding: 12px;
  min-height: 68px;
  background: var(--white);
  row-gap: 12px;
  margin: 0px 0px 24px 0px;
}

.request-board-search__wrap-input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
  border: 1px solid #dde7f5;
  border-radius: 16px;
  padding: 0px 12px;
  width: 100%;
  height: 44px;
}

.request-board-search__wrap-input:nth-child(2) {
  width: 50%;
}

.request-board-search__wrap-input:nth-child(3) {
  width: 50%;
}

.request-board-search__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.request-board-search__input {
  width: 100%;
  height: 100%;
  font-weight: 500;
  font-size: 14px;
  line-height: 189%;
}

.request-board-search__input::-webkit-input-placeholder {
  color: var(--secondary);
}

.request-board-search__input::-moz-placeholder {
  color: var(--secondary);
}

.request-board-search__input:-ms-input-placeholder {
  color: var(--secondary);
}

.request-board-search__input::-ms-input-placeholder {
  color: var(--secondary);
}

.request-board-search__input::placeholder {
  color: var(--secondary);
}

.request-board-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.request-board-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: auto;
  border: 1px solid #dde7f5;
  border-radius: 20px;
  padding: 24px 18px;
  max-width: 504px;
  width: 100%;
  min-height: 320px;
  background: var(--white);
}

.request-board-item__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  margin: 0px 0px 16px 0px;
}

.request-board-item__name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.request-board-item__name.icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.request-board-item__name.text {
  font-weight: 500;
  font-size: 20px;
  color: #2d2d2d;
}

.request-board-item__request {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid rgba(129, 162, 197, 0.1);
  border-radius: 100px;
  padding: 8px 20px;
  font-weight: 500;
  font-size: 14px;
  color: #2d2d2d;
}

.request-board-item__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
  margin: 0px 0px 12px 0px;
}

.request-board-item__sum {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
}

.request-board-item__sum.icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.request-board-item__sum.text {
  font-weight: 500;
  font-size: 16px;
  line-height: 132%;
  letter-spacing: 0.01em;
  text-align: center;
  color: #2d2d2d;
}

.request-board-item__data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
}

.request-board-item__data.icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.request-board-item__data.text {
  font-weight: 500;
  font-size: 16px;
  line-height: 132%;
  letter-spacing: 0.01em;
  text-align: center;
  color: #2d2d2d;
}

.request-board-item__user {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
  margin: 0px 0px 25px 0px;
}

.request-board-item__user.icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.request-board-item__user.text {
  font-weight: 500;
  font-size: 16px;
  line-height: 132%;
  letter-spacing: 0.01em;
  text-align: center;
  color: #2d2d2d;
}

.request-board-item__button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  border-radius: 20px;
  padding: 12px 14px 12px 12px;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
  background: var(--accent);
  margin-top: auto;
}

.request-board-item__button .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.request-board-item__button .text {
  font-weight: 500;
  font-size: 14px;
  text-align: center;
  color: var(--white);
}

[data-simplebar] {
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.simplebar-wrapper {
  overflow: hidden;
  width: inherit;
  height: inherit;
  max-width: inherit;
  max-height: inherit;
}

.simplebar-mask {
  direction: inherit;
  position: absolute;
  overflow: hidden;
  padding: 0;
  margin: 0;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: auto !important;
  height: auto !important;
  z-index: 0;
}

.simplebar-offset {
  direction: inherit !important;
  -webkit-box-sizing: inherit !important;
          box-sizing: inherit !important;
  resize: none !important;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 0;
  margin: 0;
  -webkit-overflow-scrolling: touch;
}

.simplebar-content-wrapper {
  direction: inherit;
  -webkit-box-sizing: border-box !important;
          box-sizing: border-box !important;
  position: relative;
  display: block;
  height: 100%;
  /* Required for horizontal native scrollbar to not appear if parent is taller than natural height */
  width: auto;
  max-width: 100%;
  /* Not required for horizontal scroll to trigger */
  max-height: 100%;
  /* Needed for vertical scroll to trigger */
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.simplebar-content-wrapper::-webkit-scrollbar,
.simplebar-hide-scrollbar::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.simplebar-content:before,
.simplebar-content:after {
  content: " ";
  display: table;
}

.simplebar-placeholder {
  max-height: 100%;
  max-width: 100%;
  width: 100%;
  pointer-events: none;
}

.simplebar-height-auto-observer-wrapper {
  -webkit-box-sizing: inherit !important;
          box-sizing: inherit !important;
  height: 100%;
  width: 100%;
  max-width: 1px;
  position: relative;
  float: left;
  max-height: 1px;
  overflow: hidden;
  z-index: -1;
  padding: 0;
  margin: 0;
  pointer-events: none;
  -webkit-box-flex: inherit;
      -ms-flex-positive: inherit;
          flex-grow: inherit;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
}

.simplebar-height-auto-observer {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
  display: block;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 1000%;
  width: 1000%;
  min-height: 1px;
  min-width: 1px;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}

.simplebar-track {
  z-index: 1;
  position: absolute;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

[data-simplebar].simplebar-dragging {
  pointer-events: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

[data-simplebar].simplebar-dragging .simplebar-content {
  pointer-events: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

[data-simplebar].simplebar-dragging .simplebar-track {
  pointer-events: all;
}

.simplebar-scrollbar {
  position: absolute;
  left: 0;
  right: 0;
  min-height: 10px;
}

.simplebar-scrollbar:before {
  position: absolute;
  content: "";
  background: #8f959c;
  border-radius: 100px;
  left: 2px;
  right: 2px;
  opacity: 0;
  -webkit-transition: opacity 0.2s 0.5s linear;
  -o-transition: opacity 0.2s 0.5s linear;
  transition: opacity 0.2s 0.5s linear;
}

.simplebar-scrollbar.simplebar-visible:before {
  opacity: 0.5;
  -webkit-transition-delay: 0s;
       -o-transition-delay: 0s;
          transition-delay: 0s;
  -webkit-transition-duration: 0s;
       -o-transition-duration: 0s;
          transition-duration: 0s;
}

.simplebar-track.simplebar-vertical {
  top: 0;
  width: 11px;
}

.simplebar-scrollbar:before {
  top: 2px;
  bottom: 2px;
  left: 2px;
  right: 2px;
}

.simplebar-track.simplebar-horizontal {
  left: 0;
  height: 11px;
}

.simplebar-track.simplebar-horizontal .simplebar-scrollbar {
  right: auto;
  left: 0;
  top: 0;
  bottom: 0;
  min-height: 0;
  min-width: 10px;
  width: auto;
}

/* Rtl support */

[data-simplebar-direction=rtl] .simplebar-track.simplebar-vertical {
  right: auto;
  left: 0;
}

.simplebar-dummy-scrollbar-size {
  direction: rtl;
  position: fixed;
  opacity: 0;
  visibility: hidden;
  height: 500px;
  width: 500px;
  overflow-y: hidden;
  overflow-x: scroll;
  -ms-overflow-style: scrollbar !important;
}

.simplebar-dummy-scrollbar-size > div {
  width: 200%;
  height: 200%;
  margin: 10px 0;
}

.simplebar-hide-scrollbar {
  position: fixed;
  left: 0;
  visibility: hidden;
  overflow-y: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

@media (max-width: 1630px) {
  .chat {
    min-width: 600px;
    height: 624px;
  }

  .chats-list {
    width: 100%;
    max-width: 100%;
    height: 624px;
  }

  .services-card {
    width: 100%;
  }
}

@media (max-width: 1200) {
  .chats-section-body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 20px;
  }
}

@media (max-width: 1199px) {
  .chat {
    width: 100%;
  }

  .user-info__arrow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .chats-list {
    width: 100%;
    height: 500px;
    max-width: none;
    border-radius: 16px;
    padding: 20px;
    position: absolute !important;
    width: 100% !important;
    height: 100% !important;
    left: -100%;
    background: #fff;
    z-index: 100;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }

  .chats-list._active {
    left: 0%;
  }

  .user-name {
    max-width: 150px;
    font-size: 14px;
  }

  .message-preview {
    font-size: 12px;
  }

  /* Переключаем индикаторы для мобильной версии */

  .status-indicator.desktop-indicator {
    display: none;
  }

  .status-indicator.mobile-indicator {
    display: block;
    margin-left: 8px;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }

  .chat-item {
    padding: 12px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .avatar-container {
    margin-right: 12px;
  }

  .chat-content {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }

  .services-card {
    display: none;
  }
}

@media (max-width: 1024px) {
  .contact-database__controls {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 15px;
  }

  .contact-database__tabs {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    overflow-x: auto;
  }

  .contact-database__actions {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    width: 100%;
  }

  .contact-database__search-input {
    min-width: 180px;
  }
}

@media (max-width: 999.98px) {
  [class$=__container] {
    padding: 0px 10px;
  }

  .spollers__spollers--contact-database {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-top: 10px;
  }

  .tabs__tabs--contact-database .tabs__content {
    top: 120px;
  }

  .header__box-left {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }

  .header__balance-text {
    text-align: left;
  }

  .header__action {
    -webkit-column-gap: 12px;
       -moz-column-gap: 12px;
            column-gap: 12px;
  }

  .contact-center-home__decor-left {
    left: -20%;
    top: -22%;
  }

  .contact-center-home__decor-right {
    -webkit-transform: rotate(40deg);
        -ms-transform: rotate(40deg);
            transform: rotate(40deg);
    right: -30%;
    top: 13%;
  }

  .contact-center-home__box {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    gap: 20px;
  }

  .contact-center-item {
    min-height: 200px;
  }

  .contact-center-item__title {
    font-size: 18px;
  }

  .contact-center-item__decor svg {
    width: 168px;
    height: 112px;
  }

  .contact-center-item__decor img {
    width: 116px;
    height: 106px;
  }

  .contact-center-item__search {
    margin-top: 18px;
    height: 40px;
  }

  .contact-center-item__input {
    font-size: 12px;
  }

  .contact-center-item__input::-webkit-input-placeholder {
    font-size: 12px;
  }

  .contact-center-item__input::-moz-placeholder {
    font-size: 12px;
  }

  .contact-center-item__input:-ms-input-placeholder {
    font-size: 12px;
  }

  .contact-center-item__input::-ms-input-placeholder {
    font-size: 12px;
  }

  .contact-center-item__input::placeholder {
    font-size: 12px;
  }

  .contact-center-home-result {
    width: 94.5%;
    top: 105px;
  }

  .contact-center-home-create-request {
    width: 94.5%;
    top: 105px;
  }

  .notifications {
    right: 15%;
  }

  .contact-database-actions {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .contact-database-search__input {
    display: none;
  }

  .contact-database-download {
    width: auto;
  }

  .contact-database-download__text {
    display: none;
  }

  .purchased-contacts-table__wrpa-title {
    background: transparent;
  }

  .purchased-contacts-table__title-name {
    background: rgba(72, 150, 254, 0.1);
  }

  .purchased-contacts-table__title-name {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    max-width: 560px;
    width: 100%;
  }

  .purchased-contacts-table__item-add {
    display: none;
  }

  .purchased-contacts-table__item {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    max-width: 460px;
    width: 100%;
  }

  .chat {
    height: 70vh;
    min-width: auto;
  }

  .controls__dropdowns {
    max-width: 100%;
  }

  .request-board-search {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .request-board-search__wrap-input:nth-child(2) {
    width: 48%;
  }

  .request-board-search__wrap-input:nth-child(3) {
    width: 48%;
  }

  .request-board-grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }

  .request-board-item {
    max-width: 100%;
    min-height: 300px;
  }
}

@media (max-width: 768px) {
  .controls {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 12px;
  }

  .controls__dropdowns {
    gap: 8px;
    width: 100%;
  }

  .controls-dropdown {
    max-width: 100%;
    width: auto;
    height: 24px;
    padding: 0 8px;
    background: transparent;
    font-weight: 500;
    font-size: 12px;
    line-height: 130%;
    color: var(--secondary);
    /* Убраны бордер и скругления у дропдаунов */
    border: none;
    border-radius: 0;
  }

  .controls-dropdown__icon--arrow {
    display: none;
  }

  .controls-dropdown__icon--sorting {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .search {
    width: 100%;
    height: 40px;
    /* Сохраняем скругления у поиска */
    border-radius: 16px;
  }

  /* Скрываем десктопное меню на мобильной */

  .controls-dropdown__content {
    display: none !important;
  }
}

@media (max-width: 767.98px) {
  .add-contact {
    border-radius: 0px;
  }

  .add-contact__body {
    height: 400px;
  }

  .add-contact__line {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 24px;
  }

  .add-contact__footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 10px;
  }

  .add-contact__footer .button {
    height: 48px;
    font-size: 14px;
    max-width: 100%;
  }

  .create-request {
    height: 100%;
    border-radius: 20px 20px 0 0;
  }

  .spollers__spollers--contact-database .spollers__title {
    background-color: transparent;
    padding: 0px;
  }

  .spollers__spollers--contact-database .spollers__title .text {
    display: none;
  }

  .spollers__spollers--contact-database .spollers__title .text .icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .spollers__spollers--contact-database .spollers__title::after {
    display: none;
  }

  .tabs__tabs--contact-database {
    width: 100%;
  }

  .tabs__tabs--contact-database .tabs__content {
    position: static;
  }

  .tabs__tabs--contact-database .tabs__title {
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }

  .header {
    padding: 10px 0px;
  }

  .header__box-left {
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }

  .header__logo {
    border-radius: 40px;
    padd: 18px;
    width: 71px;
    height: 48px;
  }

  .header__balance-text {
    text-align: right;
    font-size: 12px;
    line-height: 130%;
  }

  .header__action {
    display: none;
  }

  .header__user-text {
    display: none;
  }

  .decor {
    display: none;
  }

  .header-enter__icon-1 {
    display: none;
  }

  .header-enter__icon-2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .contact-center-home {
    padding: 16px 0px;
  }

  .contact-center-home__wrap {
    position: relative;
    top: 0px;
    -webkit-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
  }

  .contact-center-home__decor-left {
    display: none;
  }

  .contact-center-home__decor-right {
    display: none;
  }

  .contact-center-home__title {
    font-size: 24px;
    margin: 0px 0px 16px 0px;
  }

  .contact-center-home__text {
    margin: 0px 0px 18px 0px;
  }

  .contact-center-home__text {
    font-size: 14px;
  }

  .contact-center-home__box {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
    row-gap: 10px;
  }

  .contact-center-item {
    border: 0.67px solid #dde7f5;
    border-radius: 32px;
    padding: 16px;
    min-height: 120px;
    max-width: 100%;
  }

  .contact-center-item._active {
    position: relative;
  }

  .contact-center-item__title {
    font-size: 16px;
  }

  .contact-center-item__decor img {
    width: 88px;
    height: 78px;
  }

  .contact-center-item__decor.browse img {
    width: 98px !important;
    height: 72px !important;
  }

  .contact-center-item__search {
    width: 77%;
  }

  .contact-center-home-result__title {
    padding: 6px;
  }

  .contact-center-home-result__item {
    padding: 6px;
  }

  .notifications {
    border-radius: 0px;
    right: 0%;
    top: 70px;
    display: none;
  }

  .notifications__name .icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .notifications-sorting {
    min-width: auto;
  }

  .notifications-sorting__body {
    display: none;
  }

  .notifications-sorting__body._active {
    display: none;
  }

  .contact-database {
    background-color: #fff;
    padding: 17px 0px;
  }

  .contact-database__arrow {
    display: block;
  }

  .contact-database__title {
    font-weight: 500;
    font-size: 16px;
    line-height: 130%;
    text-align: center;
    color: var(--primary);
    width: 100%;
    padding-left: 15px;
  }

  .contact-database__body {
    width: 100%;
  }

  .contact-database-actions {
    display: none;
    -webkit-column-gap: 6px;
       -moz-column-gap: 6px;
            column-gap: 6px;
  }

  .contact-database-actions.mob {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }

  .contact-database-search {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }

  .contact-database-search__box {
    border: none;
  }

  .contact-database-download {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    border: none;
  }

  .purchased-contacts-table {
    display: none;
  }

  .purchased-contacts-table-mob {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .pagging {
    display: none;
  }

  .contact-database-pages {
    display: none;
  }

  .no-contacts-purchased {
    padding: 20px;
  }

  .no-contacts-purchased__search {
    max-width: 100%;
  }

  .registration {
    border-radius: 0px;
    padding: 0px;
  }

  .registration__line {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 12px;
  }

  .registration__button {
    width: 100%;
  }

  .registration__footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 12px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }

  .registration__footer .checkbox {
    width: 100%;
  }

  .upload-avatar {
    padding: 10px;
  }

  .upload-avatar__text {
    max-width: 300px;
    margin: 0 auto;
  }

  .authorization {
    border-radius: 0px;
    padding: 20px 16px;
  }

  .authorization__header {
    max-width: 300px;
  }

  .password-recovery {
    padding: 20px 16px;
    border-radius: 0px;
  }

  .profile {
    padding: 20px 16px;
    border-radius: 0px;
  }

  .profile__icon {
    width: 64px;
    height: 64px;
  }

  .profile__name {
    font-weight: 600;
    font-size: 14px;
    line-height: 110%;
  }

  .profile__formats {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    row-gap: 6px;
  }

  .profile__line {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 20px;
  }

  .profile-form__name {
    font-size: 18px;
  }

  .profile-user-data__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 20px;
  }

  .profile-user-data__btn {
    max-width: 100%;
    width: 100%;
  }

  .contact-database__table-wrapper {
    max-height: 100%;
  }

  .contact-database__table-icon {
    left: auto;
    top: 20px;
    right: 20px;
  }

  .user-info__name {
    font-size: 14px;
  }

  .user-info__contact-link {
    font-size: 12px;
  }

  .message--incoming {
    font-size: 14px;
  }

  .message__content {
    font-size: 14px;
  }

  .files-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 15px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .info-block {
    display: none;
  }

  .info-block__action-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 15px;
  }

  .card-title {
    font-size: 14px;
  }

  .service-name {
    font-size: 12px;
  }

  .service-price {
    font-size: 12px;
  }

  .controls__dropdowns {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .search {
    max-width: 100%;
  }

  .information {
    padding: 10px;
    border-radius: 0px;
  }

  .inputs-information__line {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 24px;
  }

  .wallet__footer {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
  }

  .wallet__sum {
    font-size: 23px;
  }

  .wallet__button {
    border-radius: 12px;
    padding: 9px 14px;
  }

  .wallet__button .text {
    font-size: 12px;
    line-height: 130%;
  }

  .wallet__button .icon svg {
    width: 12px;
    height: 12px;
  }

  .transaction-history {
    border-radius: 20px;
  }

  .transaction-history__title {
    font-size: 20px;
  }

  .request-board__text {
    font-size: 18px;
  }

  .request-board__text1 {
    font-size: 14px;
  }

  .request-board-search__wrap-input:nth-child(2) {
    width: 47%;
  }

  .request-board-search__wrap-input:nth-child(3) {
    width: 47%;
  }

  .request-board-grid {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 767px) {
  .contact-database__table {
    min-width: auto;
  }

  .contact-database__header {
    display: none;
  }

  .contact-database__mobile-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .contact-database__controls {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 15px;
  }

  .contact-database__tabs {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-right: 0;
  }

  .contact-database__actions {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }

  .contact-database__search {
    display: none;
  }

  .contact-database__search-toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .contact-database__export {
    display: none;
  }

  .contact-database__export--compact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .contact-database__dropdown {
    display: none;
  }

  .contact-database__dropdown-toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .contact-database__table-header {
    display: none;
  }

  .contact-database__table-item {
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 8px;
    padding: 16px;
    border: 1px solid #dde7f5;
    border-radius: 20px;
    padding: 18px 16px;
    width: 100%;
    min-height: 128px;
    -webkit-box-shadow: 0 13px 29px 0 rgba(129, 162, 197, 0.1), 0 53px 53px 0 rgba(129, 162, 197, 0.09), 0 120px 72px 0 rgba(129, 162, 197, 0.05), 0 213px 85px 0 rgba(129, 162, 197, 0.01), 0 333px 93px 0 rgba(129, 162, 197, 0);
            box-shadow: 0 13px 29px 0 rgba(129, 162, 197, 0.1), 0 53px 53px 0 rgba(129, 162, 197, 0.09), 0 120px 72px 0 rgba(129, 162, 197, 0.05), 0 213px 85px 0 rgba(129, 162, 197, 0.01), 0 333px 93px 0 rgba(129, 162, 197, 0);
    background: var(--white);
    min-width: auto;
  }

  .contact-database__table-item:not(:last-child) {
    margin-bottom: 8px;
  }

  .contact-database__table-cell {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 100%;
    min-width: auto;
  }

  .contact-database__table-cell:nth-child(2)::before {
    content: "Company: ";
    font-weight: 600;
    font-size: 12px;
    line-height: 130%;
    color: var(--secondary);
  }

  .contact-database__table-cell:nth-child(3)::before {
    content: "Availability: ";
    font-weight: 600;
    font-size: 12px;
    line-height: 130%;
    color: var(--secondary);
  }

  .contact-database__table-cell:first-child {
    font-weight: 500;
    font-size: 14px;
    color: var(--primary);
    max-width: 200px;
    margin: 0px 0px 16px 0px;
  }

  .contact-database__table-cell:nth-child(2),
  .contact-database__table-cell:nth-child(3) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 5px;
       -moz-column-gap: 5px;
            column-gap: 5px;
    font-weight: 600;
    font-size: 12px;
    line-height: 130%;
    color: var(--primary);
  }

  .contact-database__table-icon {
    display: block;
  }

  /* Обновленные стили для мобильных кнопок */

  .contact-database__search-toggle,
  .contact-database__dropdown-toggle,
  .contact-database__export--compact {
    border: none !important;
    background: transparent !important;
    width: 22px !important;
    height: 22px !important;
    padding: 0 !important;
    margin: 0 4px;
  }

  .contact-database__search-toggle svg,
  .contact-database__dropdown-toggle svg,
  .contact-database__export--compact svg {
    width: 22px;
    height: 22px;
  }

  .contact-database__search-toggle:hover,
  .contact-database__dropdown-toggle:hover,
  .contact-database__export--compact:hover {
    background: transparent !important;
    border: none !important;
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
  }

  /* Обновляем actions-container для новых размеров */

  .contact-database__actions {
    gap: 8px;
  }

  /* Адаптация таблицы Requests для мобильных */

  .contact-database__table--requests .contact-database__table-item,
  .contact-database__table--requests-actions .contact-database__table-item {
    padding-right: 16px;
    min-width: auto;
  }

  .contact-database__table-cell:nth-child(4)::before {
    content: "Request price: ";
    font-weight: 600;
    font-size: 12px;
    line-height: 130%;
    color: var(--secondary);
  }

  .contact-database__table-cell:nth-child(5)::before {
    content: "Status: ";
    font-weight: 600;
    font-size: 12px;
    line-height: 130%;
    color: var(--secondary);
  }

  .contact-database__table-cell:nth-child(6)::before {
    content: "Actions: ";
    font-weight: 600;
    font-size: 12px;
    line-height: 130%;
    color: var(--secondary);
  }

  /* Адаптация кнопок действий для мобильных */

  .contact-database__actions-group {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 6px;
  }

  .contact-database__action-button {
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

@media (max-width: 480px) {
  .contact-database__controls {
    gap: 10px;
  }

  .contact-database__tab {
    padding: 10px 12px;
    font-size: 14px;
    min-width: 140px;
  }

  .contact-database__search-input {
    height: 40px;
    font-size: 13px;
  }

  .contact-database__dropdown {
    height: 40px;
    font-size: 14px;
  }

  .contact-database__export {
    height: 44px;
    font-size: 13px;
  }

  .contact-database__table-item {
    padding: 18px;
    font-size: 14px;
  }

  .contact-database__search-toggle,
  .contact-database__export--compact,
  .contact-database__dropdown-toggle {
    height: 40px;
    width: 44px;
  }

  .contact-database__search-expanded-input {
    height: 40px;
  }

  .contact-database__mobile-title {
    font-size: 16px;
  }
}

@media (any-hover: hover) {
  .notifications-sorting__link:hover {
    color: var(--accent);
    background: #f8faff;
  }

  .notifications-item:hover {
    background: #f8faff;
  }

  .purchased-contacts-table__wrap-item:hover {
    background: #f8faff;
  }

  .transaction-history-item:hover {
    background: #f8faff;
  }
}

.login-button {
  /* Auto layout */
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  padding: 12px;
  gap: 8px;
  /* Accent */
  background: #4896FE;
  border-radius: 20px;
  color: var(--white);
}

.login-button .header__user-text {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  color: #FFFFFF;
}

.upload-avatar__input {
  display: none;
}

.upload-avatar__icon img {
  border-radius: 50%;
}

.status-message {
  max-width: 600px;
  width: 100%;
  margin: 20px auto;
}

.status-message .__container {
  display: flex;
  gap: 20px;
  border: 1px solid var(--accent);
  border-radius: 20px;
  padding: 10px 20px;
  align-items: center;
  font-size: 14px;
  margin: 0 10px;
}

.registration__subtitle {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  color: var(--secondary);
  margin-bottom: 16px;
}

.info-message__block {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-message__block h1 {
  font-weight: 600;
  font-size: 24px;
  line-height: 150%;
}

.info-message__block p {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: var(--primary);
}

.info-message__block a {
  border-radius: 20px;
  padding: 16px 18px;
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  color: var(--white);
  background: var(--accent);
  display: inline;
}

.profile-title__header {
  max-width: 802px;
  width: 100%;
  margin: 20px auto;
}

.profile-title__title-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}

.profile-title__title {
  font-weight: 600;
  font-size: 28px;
  line-height: 144%;
  letter-spacing: 0.01em;
  color: var(--primary);
  margin: 0;
}

.header-icon img {
  height: 36px;
  width: 36px;
  object-fit: contain;
  border-radius: 50%;
}

.contact-database__container-inner {
  display: flex;
  flex-direction: column;
  height: calc(100vh - 95px);
}

