@charset "UTF-8";

@font-face {
  font-family: Gilroy;
  font-display: swap;
  src: url("../fonts/Gilroy-Bold.woff2") format("woff2"), url("../fonts/Gilroy-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: Gilroy;
  font-display: swap;
  src: url("../fonts/Gilroy-SemiBold.woff2") format("woff2"), url("../fonts/Gilroy-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: Gilroy;
  font-display: swap;
  src: url("../fonts/Gilroy-Regular.woff2") format("woff2"), url("../fonts/Gilroy-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

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

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

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

body {
  color: #152521;
  line-height: 1;
  font-family: "Gilroy";
  font-size: 14px;
  -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: "Gilroy";
  font-size: inherit;
}

button {
  cursor: pointer;
  color: inherit;
  background-color: transparent;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

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

body {
  background: #F7F9F8;
}

.lock body {
  overflow: hidden;
  -ms-touch-action: none;
      touch-action: none;
  -ms-scroll-chaining: none;
      overscroll-behavior: 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;
}

@supports (overflow: clip) {
  .wrapper {
    overflow: clip;
  }
}

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

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

.page {
  padding-left: 352px;
}

[class*=__container] {
  padding: 0 40px;
}

/*
(i) Стилі будуть застосовуватись до
всіх класів, що містять *__container
Наприклад header__container, main__container і т.п.
Сніппет (HTML): cnt
*/

.button {
  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;
}

.button-green {
  background-color: #00A023;
  color: #fff;
  border-radius: 5px;
}

.button-nav {
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
  line-height: 1.2142857143;
  font-weight: 700;
  padding-top: 5px;
  padding-bottom: 5px;
}

.button-filter {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
  min-height: 40px;
  background: #E6EDEB;
  border: 1px solid #AAC1BC;
  border-radius: 4px;
  padding: 5px 12px;
  position: relative;
  font-size: 13px;
  line-height: 1.1538461538;
  font-weight: 600;
  width: 100%;
}

.button-filter::before {
  content: "";
  display: block;
  background: url("../img/font-icons/filter.svg") left no-repeat;
  min-width: 24px;
  height: 24px;
  background-size: 100%;
}

.button-filter::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url("../img/font-icons/menu-arrow.svg") right no-repeat;
  width: 6px;
  height: 7px;
  background-size: 100%;
}

input[type=text],
input[type=email],
input[type=tel],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.input {
  width: 100%;
  display: block;
  border: 1px solid #AAC1BC;
  color: #152521;
  border-radius: 5px;
  padding: 0 15px;
  outline: none;
  font-weight: 600;
}

.hidden {
  display: none;
}

.input[placeholder]:not([data-placeholder-nohiden])::-webkit-input-placeholder {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.input[placeholder]:not([data-placeholder-nohiden])::-moz-placeholder {
  -moz-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.input[placeholder]:not([data-placeholder-nohiden]):-ms-input-placeholder {
  -ms-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.input[placeholder]:not([data-placeholder-nohiden])::-ms-input-placeholder {
  -ms-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.input[placeholder]:not([data-placeholder-nohiden])::placeholder {
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.input[placeholder]:not([data-placeholder-nohiden]):focus::-webkit-input-placeholder {
  opacity: 0;
}

.input[placeholder]:not([data-placeholder-nohiden]):focus::-moz-placeholder {
  opacity: 0;
}

.input[placeholder]:not([data-placeholder-nohiden]):focus:-ms-input-placeholder {
  opacity: 0;
}

.input[placeholder]:not([data-placeholder-nohiden]):focus::-ms-input-placeholder {
  opacity: 0;
}

.input[placeholder]:not([data-placeholder-nohiden]):focus::placeholder {
  opacity: 0;
}

textarea {
  padding: 10px 15px !important;
  resize: vertical;
  min-height: 150px !important;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  /* display: none; <- Crashes Chrome on hover */
  -webkit-appearance: none;
  margin: 0;
  /* <-- Apparently some margin are still there even though it's hidden */
}

.checkbox {
  position: relative;
}

.checkbox:not(:last-child) {
  margin-bottom: 0.3125em;
}

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

.checkbox__input:focus-visible + .checkbox__label:before {
  -webkit-box-shadow: 0 0 5px #000;
          box-shadow: 0 0 5px #000;
}

.checkbox__input:checked + .checkbox__label:before {
  background: url("../img/font-icons/check.svg") left no-repeat;
  border: 1px solid rgba(170, 193, 188, 0);
}

.checkbox__label {
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  gap: 10px;
}

.checkbox__label:before {
  content: "";
  -ms-flex-item-align: start;
      align-self: flex-start;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16px;
          flex: 0 0 16px;
  width: 16px;
  height: 16px;
  border: 1px solid #AAC1BC;
  border-radius: 50%;
}

.checkbox__text {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  line-height: 1.2142857143;
}

body::after {
  content: "";
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: opacity 0.8s ease 0s;
  -o-transition: opacity 0.8s ease 0s;
  transition: opacity 0.8s ease 0s;
  pointer-events: none;
  z-index: 149;
}

.popup-show body::after {
  opacity: 1;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 30px 10px;
  -webkit-transition: visibility 0.8s ease 0s;
  -o-transition: visibility 0.8s ease 0s;
  transition: visibility 0.8s ease 0s;
  visibility: hidden;
  pointer-events: none;
}

.popup_show {
  z-index: 150;
  visibility: visible;
  overflow: auto;
  pointer-events: auto;
}

.popup_show .popup__content {
  visibility: visible;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.popup__wrapper {
  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;
  min-height: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  width: 100%;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  align-items: center;
}

.popup__content {
  visibility: hidden;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  -webkit-transition: -webkit-transform 0.3s ease 0s;
  transition: -webkit-transform 0.3s ease 0s;
  -o-transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
  width: 100%;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 286px 114px rgba(34, 27, 62, 0.01), 0px 161px 97px rgba(34, 27, 62, 0.05), 0px 72px 72px rgba(34, 27, 62, 0.09), 0px 18px 39px rgba(34, 27, 62, 0.1), 0px 0px 0px rgba(34, 27, 62, 0.1);
          box-shadow: 0px 286px 114px rgba(34, 27, 62, 0.01), 0px 161px 97px rgba(34, 27, 62, 0.05), 0px 72px 72px rgba(34, 27, 62, 0.09), 0px 18px 39px rgba(34, 27, 62, 0.1), 0px 0px 0px rgba(34, 27, 62, 0.1);
  border-radius: 5px;
  max-width: 524px;
  position: relative;
}

.lock .popup__content {
  visibility: visible;
}

.popup__close {
  position: absolute;
}

.popup__button {
  min-height: 49px;
  padding: 0 16px;
  font-weight: 700;
}

.privileges-popup__label {
  margin-bottom: 10px;
  line-height: 1.2142857143;
  font-weight: 700;
}

.privileges-popup__checkbox {
  position: relative;
}

.privileges-popup__checkbox:not(:last-child) {
  margin-bottom: 0.3125em;
}

.privileges-popup__checkbox-input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
}

.privileges-popup__checkbox-input:focus-visible + .privileges-popup__checkbox-label:before {
  -webkit-box-shadow: 0 0 5px #000;
          box-shadow: 0 0 5px #000;
}

.privileges-popup__checkbox-input:checked + .privileges-popup__checkbox-label:before {
  background: url("../img/font-icons/check-popup.svg") left no-repeat;
  border: 1px solid #00A023;
  background-size: 100%;
}

.privileges-popup__checkbox-input:checked + .privileges-popup__checkbox-label:after {
  opacity: 1;
  visibility: visible;
}

.privileges-popup__checkbox-label {
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  gap: 10px;
}

.privileges-popup__checkbox-label:before {
  content: "";
  -ms-flex-item-align: start;
      align-self: flex-start;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16px;
          flex: 0 0 16px;
  width: 16px;
  height: 16px;
  border: 1px solid #AAC1BC;
  border-radius: 4px;
  z-index: 10;
}

.privileges-popup__checkbox-text {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

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

.popup-title {
  line-height: 1.2083333333;
  font-weight: 700;
}

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

.item-privileges__label {
  font-weight: 700;
}

.item-privileges__line {
  height: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.return-popup__button {
  min-height: 49px;
  padding: 5px 16px;
  width: 100%;
  font-weight: 700;
}

.return-popup .select {
  min-width: 0;
  position: relative;
}

.return-popup .select__body {
  position: relative;
}

.return-popup .select__title {
  color: inherit;
  text-align: left;
  border: 1px solid #AAC1BC;
  cursor: pointer;
  width: 100%;
  border-radius: 5px;
}

.return-popup .select__value {
  color: #536460;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.2142857143;
  padding-left: 10px;
  padding-right: 15px;
  gap: 0.625rem;
}

.return-popup .select__value > * {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.return-popup .select__value:after {
  content: "";
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 10px;
          flex: 0 0 10px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  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;
  background: url("../img/font-icons/menu-arrow.svg") right no-repeat;
  background-size: 100%;
}

._select-open .return-popup .select__value:after {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.return-popup .select__value._select-pseudo-label::before {
  content: attr(data-pseudo-label);
  opacity: 0.5;
}

.return-popup .select__content {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  white-space: nowrap;
}

.return-popup .select__text {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  white-space: nowrap;
}

.return-popup .select__input {
  width: 100%;
  background-color: transparent;
  height: 100%;
}

.return-popup .select__options {
  color: #000;
  position: absolute;
  top: 110%;
  border-radius: 5px;
  min-width: 207px;
  width: 100%;
  left: 0;
  background-color: #fff;
  border-top: 0;
  border: 1px solid #AAC1BC;
  overflow: hidden;
}

.return-popup .select__scroll {
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 12.5rem;
}

.return-popup .select__option {
  width: 100%;
  text-align: left;
  cursor: pointer;
  padding: 16px 10px;
  line-height: 1.2142857143;
  font-weight: 600;
  color: #536460;
}

.return-popup .select__option._select-selected {
  background-color: #eee;
}

.return-popup .select__row {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.return-popup .select_show-top .select__options {
  top: auto;
  bottom: calc(100% - 0.0625rem);
  border: 1px solid #d9d9d9;
  border-bottom: 0;
  border-radius: 4px 4px 0 0;
  padding: 5px 0px 10px 0px;
}

/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

.select-merchants {
  position: relative;
  color: #536460;
  font-size: 14px;
  font-weight: 600;
}
.select-merchants__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 5px;
  border: 1px solid #AAC1BC;
  padding: 0 15px;
  min-height: 49px;
  background-color: #fff;
  cursor: pointer;
}
.select-merchants__head::after{

  background: url("../img/font-icons/menu-arrow.svg") right no-repeat;

}

.select-merchants__content {
  position: absolute;
  width: 100%;
  top: 110%;
  left: 0;
  border-radius: 5px;
  border: 1px solid #AAC1BC;
  background: #FFF;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(5%);
      -ms-transform: translateY(5%);
          transform: translateY(5%);
  -webkit-transition: all 0.2s ease 0s;
  -o-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}
.select-merchants__content._show{
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0%);
      -ms-transform: translateY(0%);
          transform: translateY(0%);
}
.select-merchants__content li{
  padding: 10px;
  min-height: 42px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 5px;
  cursor: pointer;
  -webkit-transition: all 0.2s ease 0s;
  -o-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}
.select-merchants__content li:hover{
  background-color: #E6EDEB;
}

.reload{
 
  margin: 0 auto;
  width: 100%;
  margin-bottom: 5px;
}

[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;
}

.breadcrumbs {
  color: #536460;
  margin-bottom: 30px;
}

.breadcrumbs ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 54px;
  padding-top: 5px;
  padding-bottom: 5px;
}

.breadcrumbs ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.breadcrumbs ul li:not(:last-child) {
  margin-right: 6px;
}

.breadcrumbs ul li:not(:last-child)::after {
  content: "/";
  display: block;
  margin-left: 6px;
}

.breadcrumbs ul li a {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.1666666667;
}

.breadcrumbs ul li a._active {
  font-weight: 400;
}

.main__container {
  margin-bottom: 130px;
}

.nav {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  min-height: 55px;
  padding: 6px 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[5];
  grid-template-columns: repeat(5, 1fr);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  background-color: #fff;
  z-index: 100;
}

.nav__item {
  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;
  text-align: center;
  row-gap: 5px;
}

.nav__item p {
  font-size: 7px;
  line-height: 1.2857142857;
  color: #004231;
  font-weight: 700;
}

.section-title {
  line-height: 0.8275862069;
  font-weight: 700;
}

[data-simplebar] {
  position: fixed !important;
}

.simplebar-scrollbar:before {
  background-color: #F2E9B6 !important;
  opacity: 1 !important;
  border-radius: 0px !important;
  width: 3px !important;
  left: auto !important;
}

.simplebar-track {
  background-color: rgba(0, 0, 0, 0.3) !important;
  width: 6px !important;
}

.header {
  background-color: #fff;
}

.header__container {
  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;
  min-height: 80px;
  padding-top: 5px;
  padding-bottom: 5px;
}

.header__title {
  line-height: 1.2083333333;
  font-weight: 700;
}

.user-header {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 48px auto;
  grid-template-columns: 48px auto;
  -webkit-column-gap: 11px;
     -moz-column-gap: 11px;
          column-gap: 11px;
  font-weight: 700;
}

.user-header__avatar {
  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: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  background-color: #F2E9B6;
  font-size: 16px;
  color: #004231;
  cursor: pointer;
}

.user-header__avatar img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.user-header__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 17px;
     -moz-column-gap: 17px;
          column-gap: 17px;
  color: #4D4B57;
  min-height: 40px;
}

.user-header__dropdown {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 5px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}




.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 352px;
  color: #fff;
  font-weight: 600;
  background-color: #004231;
  height: 100%;
  overflow-y: auto;
  padding-bottom: 30px;
}
.sidebar._admin{
  background-color: #152521;
}

.sidebar__logo {
  min-height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5px 44px;
  padding-left: 81px;
  border-bottom: 1px solid #2B6052;
}

.sidebar__status {
  min-height: 67px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 22px;
     -moz-column-gap: 22px;
          column-gap: 22px;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 44px;
  padding-right: 20px;
  border-bottom: 1px solid #2B6052;
}

.sidebar__status span {
  background: rgba(217, 217, 217, 0.3);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  position: relative;
}

.sidebar__status span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background: #09F43D;
  -webkit-box-shadow: 0px 0px 6px #09F43D;
          box-shadow: 0px 0px 6px #09F43D;
  z-index: 2;
  border-radius: 50%;
}

.sidebar__menu {
  border-bottom: 1px solid #2B6052;
}

.menu-sidebar__list li a {
  min-height: 54px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 22px;
     -moz-column-gap: 22px;
          column-gap: 22px;
  font-size: 16px;
  line-height: 1.1875;
  border-left: 5px solid rgba(242, 233, 182, 0);
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 39px;
  padding-right: 20px;
}
.menu-sidebar__list li a._active {
  background: #003B2C;
  border-left: 5px solid #ffffff;
}
.menu-sidebar__list._admin li a._active {
  background: #101E1A;
  border-left: 5px solid #ffffff;
}

.filter-info-panel {
  width: 100%;
  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;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.filter-info-panel__select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #E6EDEB;
  border: 1px solid #AAC1BC;
  border-radius: 5px;
}

.filter-info-panel__select-merchants {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: none !important;
  border: none !important;
  border-bottom: 1px solid #2B6052 !important;
  padding-left: 30px;
}

.filter-info-panel__select-calendar .select {
  min-width: 207px !important;
  position: relative;
}

.filter-info-panel__select-calendar .select__body {
  position: relative;
}

.filter-info-panel__select-calendar .select__title {
  color: inherit;
  text-align: left;
  cursor: pointer;
  width: 100%;
  border-radius: 4px;
}

.filter-info-panel__select-calendar .select__value {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: 20px !important;
}

.filter-info-panel__select-calendar .select__value::before {
  content: "";
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 21px;
          flex: 0 0 21px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  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;
  background: url("../img/font-icons/calendar.svg") right no-repeat;
}

.filter-info-panel__select-calendar .select__value:after {
  content: "";
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 10px;
          flex: 0 0 10px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  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;
  background: url("../img/font-icons/menu-arrow.svg") right no-repeat;
}

._select-open .filter-info-panel__select-calendar .select__value:after {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.filter-info-panel__select-calendar .select__value._select-pseudo-label::before {
  content: attr(data-pseudo-label);
  opacity: 0.5;
}

.filter-info-panel__select-calendar .select__content {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  white-space: nowrap;
}

.filter-info-panel__select-calendar .select__text {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  white-space: nowrap;
}

.filter-info-panel__select-calendar .select__input {
  width: 100%;
  background-color: transparent;
  height: 100%;
}

.filter-info-panel__select-calendar .select__options {
  border: 1px solid #AAC1BC !important;
  border-radius: 5px;
  color: #536460;
  position: absolute;
  top: 110%;
  min-width: 100%;
  left: 0;
  line-height: 1.2142857143;
  font-weight: 700;
  background: #FFFFFF;
}

.filter-info-panel__select-calendar .select__scroll {
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 15.75rem;
}

.filter-info-panel__select-calendar .select__option {
  width: 100%;
  text-align: left;
  cursor: pointer;
  padding: 14px 10px;
  font-weight: 700 !important;
  font-family: Gilroy;
}

.filter-info-panel__select-calendar .select__option._select-selected {
  background-color: #eee;
}

.filter-info-panel__select-calendar .select__row {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.filter-info-panel__select-calendar .select_show-top .select__options {
  top: auto;
  bottom: calc(100% - 0.0625rem);
  border: 1px solid #d9d9d9;
  border-bottom: 0;
  border-radius: 4px 4px 0 0;
  padding: 5px 0px 10px 0px;
}


.filter-info-panel__select-merchants .select {
  min-width: 207px !important;
  position: relative;
}

.filter-info-panel__select-merchants .select__body {
  position: relative;
}

.filter-info-panel__select-merchants .select__title {
  color: inherit;
  text-align: left;
  cursor: pointer;
  width: 100%;
  border-radius: 4px;
}

.filter-info-panel__select-merchants .select__value {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: 20px !important;
}

.filter-info-panel__select-merchants .select__value::before {
  content: "";
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 21px;
          flex: 0 0 21px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  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;
  background: url("../img/font-icons/stores.svg") right no-repeat;
}

.filter-info-panel__select-merchants .select__value:after {
  content: "";
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 10px;
          flex: 0 0 10px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  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;
  background: url("../img/font-icons/menu-arrow.svg") right no-repeat;
}

._select-open .filter-info-panel__select-merchants .select__value:after {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.filter-info-panel__select-merchants .select__value._select-pseudo-label::before {
  content: attr(data-pseudo-label);
  opacity: 0.5;
}

.filter-info-panel__select-merchants .select__content {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
 
}

.filter-info-panel__select-merchants .select__text {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  white-space: nowrap;
}

.filter-info-panel__select-merchants .select__input {
  width: 100%;
  background-color: transparent;
  height: 100%;
}

.filter-info-panel__select-merchants .select__options {
  border: 1px solid #AAC1BC !important;
  border-radius: 5px;
  
  position: absolute;
  top: 110%;
  min-width: 100%;
  left: 0;
  line-height: 1.2142857143;
  font-weight: 700;
  background: #0f4231;
}

.filter-info-panel__select-merchants .select__scroll {
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 15.75rem;
}

.filter-info-panel__select-merchants .select__option {
  width: 100%;
  text-align: left;
  cursor: pointer;
  padding: 14px 10px;
  font-weight: 700 !important;
  font-family: Gilroy;
}

.filter-info-panel__select-merchants .select__option._select-selected {
  background-color: #eee;
}

.filter-info-panel__select-merchants .select__row {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.filter-info-panel__select-merchants .select_show-top .select__options {
  top: auto;
  bottom: calc(100% - 0.0625rem);
  border: 1px solid #d9d9d9;
  border-bottom: 0;
  border-radius: 4px 4px 0 0;
  padding: 5px 0px 10px 0px;
}

.filter-info-panel .select {
  min-width: 139px;
  position: relative;
}

.filter-info-panel .select__body {
  position: relative;
}

.filter-info-panel .select__title {
  color: inherit;
  text-align: left;
  cursor: pointer;
  width: 100%;
  border-radius: 4px;
}

.filter-info-panel .select__value {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
  padding-right: 10px;
  gap: 0.75rem;
}

.filter-info-panel .select__value:after {
  content: "";
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 10px;
          flex: 0 0 10px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  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;
  background: url("../img/font-icons/select-arrow.svg") right no-repeat;
}

._select-open .filter-info-panel .select__value:after {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.filter-info-panel .select__value._select-pseudo-label::before {
  content: attr(data-pseudo-label);
  opacity: 0.5;
}

.filter-info-panel .select__content {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  white-space: nowrap;
}

.filter-info-panel .select__text {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  white-space: nowrap;
}

.filter-info-panel .select__input {
  width: 100%;
  background-color: transparent;
  height: 100%;
}

.filter-info-panel .select__options {
  border: 1px solid #AAC1BC;
  border-radius: 5px;
  color: #536460;
  position: absolute;
  top: calc(110% - 1px);
  min-width: 100%;
  left: 0;
  line-height: 1.2142857143;
  background: #FFFFFF;
}

.filter-info-panel .select__scroll {
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 15.75rem;
}

.filter-info-panel .select__option {
  width: 100%;
  text-align: left;
  cursor: pointer;
  padding: 14px 10px;
  font-weight: 700 !important;
  font-family: Gilroy;
}

.filter-info-panel .select__option._select-selected {
  background-color: #eee;
}

.filter-info-panel .select__row {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.filter-info-panel .select_show-top .select__options {
  top: auto;
  bottom: calc(100% - 0.0625rem);
  border: 1px solid #d9d9d9;
  border-bottom: 0;
  border-radius: 4px 4px 0 0;
  padding: 5px 0px 10px 0px;
}

.result-info-panel {
  background: #FFFFFF;
  border-radius: 5px;
}

.result-info-panel__grid {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.result-info-panel__item {
  border: 1px solid #AAC1BC;
  border-radius: 5px;
  text-align: center;
  font-size: 14px;
  line-height: 1.7142857143;
  font-weight: 600;
}

.result-info-panel__value {
  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: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
}

.result-info-panel__value span {
  color: #00A023;
  font-size: 10px;
}

.table-info-panel {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 66% auto;
  grid-template-columns: 66% auto;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.table-info-panel__column {
  background: #FFFFFF;
  border-radius: 5px;
  padding-top: 20px;
  padding-bottom: 29px;
  padding-left: 20px;
  padding-right: 20px;
}

.table-info-panel__head {
  line-height: 1.2142857143;
  font-weight: 600;
  color: #00A023;
  margin-bottom: 14px;
}

.table-info-panel__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: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  padding: 20px 0;
  border-top: 1px solid rgba(170, 193, 188, 0.3);
}

.table-info-panel__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 52px;
     -moz-column-gap: 52px;
          column-gap: 52px;
  row-gap: 10px;
}

.table-info-panel__row {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-grid-columns: 220px 45px 204px 95px 90px;
  grid-template-columns: 220px 45px 204px 95px 90px;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  row-gap: 10px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px 0;
  border-top: 1px solid rgba(170, 193, 188, 0.3);
}

.table-info-panel__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-column-gap: 3px;
     -moz-column-gap: 3px;
          column-gap: 3px;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 1.2142857143;
  font-weight: 600;
}

.table-info-panel__label-mail {
  max-width: 160px;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  white-space: nowrap;
}

.table-info-panel__label span {
  color: #00A023;
  font-size: 8px;
  margin-top: 2px;
}

.table-info-panel__status {
  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: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-column-gap: 6px;
     -moz-column-gap: 6px;
          column-gap: 6px;
  background: #F0F6F2;
  border-radius: 5px;
  padding: 0 7px;
  color: #536460;
  line-height: 1.2142857143;
  font-weight: 600;
  max-width: 55px;
  text-align: center;
}

.table-info-panel__status-sc {
  color: #00A023;
  max-width: 100px;
}

.table-info-panel__status-sc::before {
  content: "";
  display: block;
  background: url("../img/font-icons/check.svg") left no-repeat;
  background-size: 100%;
}

.mobile-info-panel__payment {
  margin-bottom: 24px;
}

.mobile-info-panel__block {
  background: #FFFFFF;
  border-radius: 4px;
  padding-top: 12px;
  padding-right: 8px;
  padding-left: 8px;
  padding-bottom: 8px;
}

.mobile-info-panel__block:not(:last-child) {
  margin-bottom: 8px;
}

.mobile-info-panel__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.mobile-info-panel__header._spoller-active .mobile-info-panel__cart {
  opacity: 0;
  margin-top: -20px;
  z-index: -1;
}

.mobile-info-panel__header._spoller-active .mobile-info-panel__sum {
  opacity: 0;
  visibility: hidden;
  z-index: -1;
}

.mobile-info-panel__code {
  font-size: 11px;
  line-height: 1.1818181818;
  font-weight: 600;
  margin-bottom: 2px;
  max-width: 150px;
  overflow: hidden;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}

.mobile-info-panel__cart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 6px;
     -moz-column-gap: 6px;
          column-gap: 6px;
  font-size: 11px;
  line-height: 1.1818181818;
  color: #536460;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.mobile-info-panel__cart img {
  width: 13px;
  height: 10px;
  max-width: 100%;
}

.mobile-info-panel__sum {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.mobile-info-panel__content {
  padding-top: 10px;
}

.mobile-info-panel__row {
  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;
  row-gap: 5px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 8px;
  padding-bottom: 8px;
  font-size: 11px;
  line-height: 1.1818181818;
  font-weight: 600;
}

.mobile-info-panel__row:not(:last-child) {
  border-bottom: 0.5px solid #E6EDEB;
}

.mobile-info-panel__label {
  color: #536460;
}

.merchants-mobile-info__block {
  background: #FFFFFF;
  border-radius: 4px;
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  padding: 12px 8px;
  row-gap: 5px;
}

.merchants-mobile-info__block:not(:last-child) {
  margin-bottom: 8px;
}

.merchants-mobile-info__content {
  font-size: 11px;
  line-height: 1.1818181818;
}

.merchants-mobile-info__code {
  margin-bottom: 6px;
  font-weight: 600;
}

.merchants-mobile-info__mail {
  color: #536460;
}

.merchants-mobile-info__status {
  font-size: 11px;
  line-height: 1.7272727273;
  font-weight: 600;
}

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

.list-merchants__button {
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
  background: #E6EDEB;
  border: 1px solid #AAC1BC;
  border-radius: 5px;
  padding: 5px 16px;
  line-height: 1.2142857143;
  font-weight: 700;
}

.list-merchants__list {
  background: #AAC1BC;
}

.list-merchants__add {
  background-color: #E6EDEB;
  
}

.list-merchants__block-f {
  background: #FFFFFF;
  border-radius: 5px;
  padding: 20px;
}

.list-merchants__search {
  margin-bottom: 30px;
}

.list-merchants__create {
  margin-bottom: 30px;
}

.list-merchants__next {
  min-height: 49px;
  line-height: 1.2142857143;
  font-weight: 700;
  padding: 5px 16px;
}

.search-merchants {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  row-gap: 10px;
}

.search-merchants__input input {
  color: #536460;
  font-weight: 600;
}

.search-merchants__input input::-webkit-input-placeholder {
  color: #536460;
  font-weight: 600;
}

.search-merchants__input input::-moz-placeholder {
  color: #536460;
  font-weight: 600;
}

.search-merchants__input input:-ms-input-placeholder {
  color: #536460;
  font-weight: 600;
}

.search-merchants__input input::-ms-input-placeholder {
  color: #536460;
  font-weight: 600;
}

.search-merchants__input input::placeholder {
  color: #536460;
  font-weight: 600;
}

.search-merchants__label {
  line-height: 1.2142857143;
  color: #AAC1BC;
  font-weight: 600;
}

.search-merchants__button {
  min-height: 51px;
  text-align: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  line-height: 1.2142857143;
  font-weight: 700;
  padding: 5px 15px;
}

.search-merchants__button::before {
  content: "";
  background: url("../img/font-icons/search.svg") left no-repeat;
  width: 20px;
  height: 20px;
  background-size: 100%;
}

.search-merchants .select {
  min-width: 0;
  position: relative;
}

.search-merchants .select__body {
  position: relative;
}

.search-merchants .select__title {
  color: inherit;
  text-align: left;
  border: 1px solid #AAC1BC;
  cursor: pointer;
  width: 100%;
  border-radius: 5px;
}

.search-merchants .select__value {
  color: #536460;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.2142857143;
  padding-left: 10px;
  padding-right: 15px;
  gap: 0.625rem;
}

.search-merchants .select__value > * {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.search-merchants .select__value:after {
  content: "";
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 10px;
          flex: 0 0 10px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  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;
  background: url("../img/font-icons/menu-arrow.svg") right no-repeat;
  background-size: 100%;
}

._select-open .search-merchants .select__value:after {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.search-merchants .select__value._select-pseudo-label::before {
  content: attr(data-pseudo-label);
  opacity: 0.5;
}

.search-merchants .select__content {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  white-space: nowrap;
}

.search-merchants .select__text {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  white-space: nowrap;
}

.search-merchants .select__input {
  width: 100%;
  background-color: transparent;
  height: 100%;
}

.search-merchants .select__options {
  color: #000;
  position: absolute;
  top: 110%;
  border-radius: 5px;
  min-width: 207px;
  width: 100%;
  left: 0;
  background-color: #fff;
  border-top: 0;
  border: 1px solid #AAC1BC;
  overflow: hidden;
}

.search-merchants .select__scroll {
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 12.5rem;
}

.search-merchants .select__option {
  width: 100%;
  text-align: left;
  cursor: pointer;
  padding: 16px 10px;
  line-height: 1.2142857143;
  font-weight: 600;
  color: #536460;
}

.search-merchants .select__option._select-selected {
  background-color: #eee;
}

.search-merchants .select__row {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.search-merchants .select_show-top .select__options {
  top: auto;
  bottom: calc(100% - 0.0625rem);
  border: 1px solid #d9d9d9;
  border-bottom: 0;
  border-radius: 4px 4px 0 0;
  padding: 5px 0px 10px 0px;
}

.results-merchants__row {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-grid-columns: 1fr 1fr 120px 150px 141px 196px;
  grid-template-columns: 1fr 1fr 120px 150px 141px 196px;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  row-gap: 10px;
}

.results-merchants__row:not(:last-child) {
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(170, 193, 188, 0.3);
  margin-bottom: 7px;
}

.results-merchants__label {
  line-height: 1.2142857143;
  font-weight: 600;
}

.results-merchants__settings {
  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;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  min-height: 40px;
  padding: 0 10px;
  border: 1px solid #AAC1BC;
  border-radius: 5px;
  font-weight: 600;
}

.results-merchants__settings::before {
  content: "";
  display: block;
  background: url("../img/font-icons/setings.svg") left no-repeat;
  width: 20px;
  height: 20px;
  background-size: 100%;
}

.create-merchants {
  max-width: 610px;
  background: #FFFFFF;
  border-radius: 5px;
  padding: 20px;
}

.create-merchants__head {
  line-height: 1.2222222222;
  font-weight: 700;
}

.create-merchants .select {
  min-width: 0;
  position: relative;
}

.create-merchants .select__body {
  position: relative;
}

.create-merchants .select__title {
  color: inherit;
  text-align: left;
  border: 1px solid #AAC1BC;
  cursor: pointer;
  width: 100%;
  border-radius: 5px;
}

.create-merchants .select__value {
  color: #536460;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.2142857143;
  padding-left: 10px;
  padding-right: 15px;
  gap: 0.625rem;
}

.create-merchants .select__value > * {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.create-merchants .select__value:after {
  content: "";
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 10px;
          flex: 0 0 10px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  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;
  background: url("../img/font-icons/menu-arrow.svg") right no-repeat;
  background-size: 100%;
}

._select-open .create-merchants .select__value:after {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.create-merchants .select__value._select-pseudo-label::before {
  content: attr(data-pseudo-label);
  opacity: 0.5;
}

.create-merchants .select__content {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  white-space: nowrap;
}

.create-merchants .select__text {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  white-space: nowrap;
}

.create-merchants .select__input {
  width: 100%;
  background-color: transparent;
  height: 100%;
}

.create-merchants .select__options {
  color: #000;
  position: absolute;
  top: 110%;
  border-radius: 5px;
  width: 100%;
  min-width: 207px;
  left: 0;
  background-color: #fff;
  border-top: 0;
  border: 1px solid #AAC1BC;
  overflow: hidden;
}

.create-merchants .select__scroll {
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 12.5rem;
}

.create-merchants .select__option {
  width: 100%;
  text-align: left;
  cursor: pointer;
  padding: 16px 10px;
  line-height: 1.2142857143;
  font-weight: 600;
  color: #536460;
}

.create-merchants .select__option._select-selected {
  background-color: #eee;
}

.create-merchants .select__row {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.create-merchants .select_show-top .select__options {
  top: auto;
  bottom: calc(100% - 0.0625rem);
  border: 1px solid #d9d9d9;
  border-bottom: 0;
  border-radius: 4px 4px 0 0;
  padding: 5px 0px 10px 0px;
}

.mobile-merchants {
  position: relative;
}

.mobile-merchants__filter {
  border: 1px solid #AAC1BC;
  border-radius: 4px;
  position: relative;
  width: 100%;
  background: #E6EDEB;
  min-height: 40px;
  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;
  text-align: left;
  padding: 8px 12px;
  font-size: 13px;
  line-height: 1.1538461538;
  font-weight: 600;
  margin-bottom: 16px;
  z-index: 3;
}

.mobile-merchants__filter::before {
  content: "";
  display: block;
  background: url("../img/font-icons/filter.svg") left no-repeat;
  width: 20px;
  height: 20px;
  background-size: 100%;
}

.mobile-merchants__filter::after {
  content: "";
  position: absolute;
  right: 17px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url("../img/font-icons/menu-arrow.svg") left no-repeat;
  width: 6px;
  height: 7px;
  background-size: 100%;
}

.mobile-merchants__block {
  background: #FFFFFF;
  border-radius: 4px;
  padding: 12px 8px;
  font-size: 11px;
  line-height: 1.1818181818;
  cursor: pointer;
}

.mobile-merchants__block:not(:last-child) {
  margin-bottom: 8px;
}

.mobile-merchants__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;
}

.mobile-merchants__header._spoller-active .mobile-merchants__mail {
  margin-top: -15px;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
}

.mobile-merchants__slogan {
  margin-bottom: 4px;
  font-weight: 600;
}

.mobile-merchants__mail {
  color: #536460;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.mobile-merchants__items {
  padding-top: 10px;
}

.mobile-merchants__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;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 5px;
  padding: 8px 0;
  font-weight: 600;
}

.mobile-merchants__item:not(:last-child) {
  border-bottom: 0.5px solid #E6EDEB;
}

.mobile-merchants__label {
  color: #536460;
}

.merchants-information {
  background: #FFFFFF;
  border-radius: 5px;
}

.merchants-information__head {
  line-height: 1.2083333333;
  font-weight: 700;
}

.merchants-information__caption {
  font-weight: 700;
  color: #00A023;
}

.merchants-information__form {
  max-width: 1220px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
}

.merchants-information__label {
  font-weight: 700;
  line-height: 1.2142857143;
}

.merchants-information__phone {
  border: 1px solid #AAC1BC;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.merchants-information__phone input {
  width: 100%;
  outline: none !important;
  padding: 0 20px;
  color: #536460;
  border-radius: 5px;
  font-weight: 600;
}

.merchants-information__phone input::-webkit-input-placeholder {
  color: #536460;
  font-weight: 600;
}

.merchants-information__phone input::-moz-placeholder {
  color: #536460;
  font-weight: 600;
}

.merchants-information__phone input:-ms-input-placeholder {
  color: #536460;
  font-weight: 600;
}

.merchants-information__phone input::-ms-input-placeholder {
  color: #536460;
  font-weight: 600;
}

.merchants-information__phone input::placeholder {
  color: #536460;
  font-weight: 600;
}

.merchants-information__country {
  position: relative;
}

.merchants-information__country::after {
  content: "";
  position: absolute;
  background-color: #536460;
  right: -2px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1px;
  height: 34px;
}

.merchants-information__country .select {
  min-width: 0;
  position: relative;
}

.merchants-information__country .select__body {
  position: relative;
}

.merchants-information__country .select__title {
  color: inherit;
  text-align: left;
  border: none !important;
  cursor: pointer;
  width: 100%;
  border-radius: 5px;
}

.merchants-information__country .select__value {
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.2142857143;
  padding-left: 15px !important;
  padding-right: 15px;
  gap: 0rem !important;
  min-width: 110px !important;
  color: #152521 !important;
}

.merchants-information__country .select__value > * {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.merchants-information__country .select__value:after {
  content: "";
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
  margin-left: 10px !important;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 10px;
          flex: 0 0 10px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  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;
  background: url("../img/font-icons/select.svg") right no-repeat !important;
  background-size: 100%;
}

._select-open .merchants-information__country .select__value:after {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.merchants-information__country .select__value._select-pseudo-label::before {
  content: attr(data-pseudo-label);
  opacity: 0.5;
}

.merchants-information__country .select__content {
  -webkit-box-flex: 0 !important;
      -ms-flex: none !important;
          flex: none !important;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  white-space: nowrap;
}

.merchants-information__country .select__text {
  -webkit-box-flex: 0 !important;
      -ms-flex: none !important;
          flex: none !important;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  white-space: nowrap;
}

.merchants-information__country .select__input {
  width: 100%;
  background-color: transparent;
  height: 100%;
}

.merchants-information__country .select__options {
  color: #000;
  position: absolute;
  top: 110%;
  border-radius: 5px;
  min-width: 207px;
  width: 100%;
  left: 0;
  background-color: #fff;
  border-top: 0;
  border: 1px solid #AAC1BC;
  overflow: hidden;
}

.merchants-information__country .select__scroll {
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 12.5rem;
}

.merchants-information__country .select__option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  text-align: left;
  cursor: pointer;
  padding: 16px 10px;
  line-height: 1.2142857143;
  font-weight: 600;
  color: #152521 !important;
}

.merchants-information__country .select__option._select-selected {
  background-color: #eee;
}

.merchants-information__country .select__row {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
}

.merchants-information__country .select_show-top .select__options {
  top: auto;
  bottom: 110%;
  border: 1px solid #d9d9d9;
  border-top: 1px solid #AAC1BC;
  border-radius: 4px 4px 0 0;
  padding: 5px 0px 10px 0px;
}

.merchants-information__button {
  min-height: 49px;
  padding: 5px 16px;
  font-weight: 700;
  line-height: 1.2142857143;
}

.merchants-information__checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  row-gap: 10px;
}

.merchants-information .select {
  min-width: 0;
  position: relative;
}

.merchants-information .select__body {
  position: relative;
}

.merchants-information .select__title {
  color: inherit;
  text-align: left;
  border: 1px solid #AAC1BC;
  cursor: pointer;
  width: 100%;
  border-radius: 5px;
}

.merchants-information .select__value {
  color: #536460;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.2142857143;
  padding-left: 10px;
  padding-right: 15px;
  gap: 0.625rem;
}

.merchants-information .select__value > * {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.merchants-information .select__value:after {
  content: "";
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 10px;
          flex: 0 0 10px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  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;
  background: url("../img/font-icons/menu-arrow.svg") right no-repeat;
  background-size: 100%;
}

._select-open .merchants-information .select__value:after {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.merchants-information .select__value._select-pseudo-label::before {
  content: attr(data-pseudo-label);
  opacity: 0.5;
}

.merchants-information .select__content {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  white-space: nowrap;
}

.merchants-information .select__text {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  white-space: nowrap;
}

.merchants-information .select__input {
  width: 100%;
  background-color: transparent;
  height: 100%;
}

.merchants-information .select__options {
  color: #000;
  position: absolute;
  top: 110%;
  border-radius: 5px;
  min-width: 207px;
  width: 100%;
  left: 0;
  background-color: #fff;
  border-top: 0;
  border: 1px solid #AAC1BC;
  overflow: hidden;
}

.merchants-information .select__scroll {
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 12.5rem;
}

.merchants-information .select__option {
  width: 100%;
  text-align: left;
  cursor: pointer;
  padding: 16px 10px;
  line-height: 1.2142857143;
  font-weight: 600;
  color: #536460;
}

.merchants-information .select__option._select-selected {
  background-color: #eee;
}

.merchants-information .select__row {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.merchants-information .select_show-top .select__options {
  top: auto;
  bottom: calc(100% - 0.0625rem);
  border: 1px solid #d9d9d9;
  border-bottom: 0;
  border-radius: 4px 4px 0 0;
  padding: 5px 0px 10px 0px;
}

.settings-merchants__nav {
  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;
}

.settings-merchants__button {
  border: 1px solid #AAC1BC;
  border-radius: 5px;
  padding: 5px 16px;
  line-height: 1.2142857143;
  font-weight: 700;
}

.settings-merchants__button._tab-active {
  background-color: #AAC1BC;
}

.settings-merchants__form {
  background: #FFFFFF;
  border-radius: 5px;
}

.form-settings-merchants__wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 20px;
  max-width: 1054px;
}

.form-settings-merchants__logo {
  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;
  border: 1px dashed #AAC1BC;
  border-radius: 4px;
  text-align: center;
  padding: 0 10px;
  position: relative;
}

.form-settings-merchants__logo input {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  left: 0;
  top: 0;
  cursor: pointer;
}

.form-settings-merchants__logo span {
  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;
  line-height: 1.2142857143;
  font-weight: 600;
}

button:disabled {

  background-color: #7b877e; /* Например, изменение цвета фона */
}

.form-settings-merchants__copy {
  position: relative;
  border: 1px solid #AAC1BC;
  border-radius: 4px;
  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;
  width: 100%;
  /* overflow: hidden; */
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}

.form-settings-merchants__copy p {
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  overflow: hidden;
  font-weight: 600;
  max-width: 200px;
  line-height: 1.2142857143;
}

.form-settings-merchants__copy img {
  cursor: pointer;
}
.form-settings-merchants__copy span{
  position: absolute;
  bottom: 120%;
  right: 0;
  background-color: rgb(167, 167, 167);
  color: #fff;
  font-weight: 600;
  padding: 5px 5px;
  border-radius: 10px;
  transform: translateY(10%);
  opacity: 0;
  transition: all 0.3s ease;
}
.form-settings-merchants__copy span::before{
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: rgb(167, 167, 167);
  transform: rotate(45deg) translate(14%,59%);
  left: 50%;
  bottom: 0;
}
.form-settings-merchants__copy span._show {
  opacity: 1;
  transform: translateY(0%);
}

.privilege-settings__actions {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 223px auto;
  grid-template-columns: 223px auto;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  row-gap: 16px;
}

.privilege-settings__actions input {
  border: 1px solid #AAC1BC;
  border-radius: 5px;
  background-color: transparent;
  font-weight: 600;
  outline: none;
}

.privilege-settings__actions input::-webkit-input-placeholder {
  font-weight: 600;
  color: #536460;
}

.privilege-settings__actions input::-moz-placeholder {
  font-weight: 600;
  color: #536460;
}

.privilege-settings__actions input:-ms-input-placeholder {
  font-weight: 600;
  color: #536460;
}

.privilege-settings__actions input::-ms-input-placeholder {
  font-weight: 600;
  color: #536460;
}

.privilege-settings__actions input::placeholder {
  font-weight: 600;
  color: #536460;
}

.privilege-settings__add {
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  padding: 5px 10px;
  text-align: center;
  background-color: #F2E9B6;
  border-radius: 5px;
  line-height: 1.2142857143;
  font-weight: 700;
  color: #004231;
}

.privilege-settings__user {
  background: #FFFFFF;
  border-radius: 5px;
  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;
}

.privilege-settings__icon {
  display: block;
}

.privilege-settings__mail {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  line-height: 1.2142857143;
  font-weight: 600;
  word-wrap: break-word;
}

.privilege-settings__view {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #536460;
  border-radius: 5px;
  min-height: 28px;
  font-weight: 600;
  color: #fff;
}

.privilege-settings__delete {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #536460;
  border-radius: 5px;
  min-height: 28px;
  font-weight: 600;
  color: #fff;
}

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

.payment__title {
  line-height: 1.2083333333;
  font-weight: 700;
}

.payment__cod {
  line-height: 1.2142857143;
  font-weight: 600;
  color: #536460;
}

.payment__status {
  min-height: 28px;
  background: #F0F6F2;
  border-radius: 5px;
  padding: 0 6px;
  line-height: 1.2142857143;
  color: #00A023;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 6px;
     -moz-column-gap: 6px;
          column-gap: 6px;
}

.payment__status::before {
  content: "";
  display: block;
  background: url("../img/font-icons/check.svg") left no-repeat;
  min-width: 16px;
  height: 16px;
  background-size: 100%;
}

.payment__where {
  color: #536460;
  line-height: 1.2142857143;
  font-weight: 600;
}

.payment__nav {
  width: 100%;
  overflow-x: auto;
  white-space: nowrap;
  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;
  padding-bottom: 10px;
}

.payment__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #E6EDEB;
  border: 1px solid #AAC1BC;
  border-radius: 5px;
}

.payment__body {
  width: 100%;
  background: #FFFFFF;
  border-radius: 5px;
}

.payment__head {
  line-height: 1.2083333333;
  font-weight: 700;
}

.payment__slogan {
  font-weight: 600;
  color: #00A023;
}

.payment__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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  row-gap: 8px;
}

.payment__item:not(:first-child) {
  border-top: 1px solid rgba(170, 193, 188, 0.3);
}

.payment__label {
  line-height: 1.2142857143;
  font-weight: 600;
}

.payment__value {
  line-height: 1.2142857143;
  font-weight: 600;
}

.return__caption {
  line-height: 1.2083333333;
  font-weight: 700;
}

.return__header {
  margin-bottom: 20px;
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-grid-columns: 1fr 1fr 1fr 95px;
  grid-template-columns: 1fr 1fr 1fr 95px;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.return__label {
  line-height: 1.2142857143;
  color: #AAC1BC;
  font-weight: 600;
}

.return__item {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-grid-columns: 1fr 1fr 1fr 95px;
  grid-template-columns: 1fr 1fr 1fr 95px;
  border-top: 1px solid rgba(170, 193, 188, 0.3);
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  padding-top: 19px;
  padding-bottom: 19px;
}

.return__value {
  line-height: 1.2142857143;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-column-gap: 3px;
     -moz-column-gap: 3px;
          column-gap: 3px;
  word-wrap: break-word;
}

.return__value span {
  color: #00A023;
  font-size: 8px;
}

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

.mobile-return__block {
  padding: 8px;
  background-color: #fff;
  border-radius: 4px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  row-gap: 2px;
}

.mobile-return__block:not(:last-child) {
  margin-bottom: 10px;
}

.mobile-return__cart {
  line-height: 1.2142857143;
  font-weight: 600;
}

.mobile-return__sum {
  text-align: right;
  font-size: 11px;
  line-height: 1.6363636364;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-column-gap: 3px;
     -moz-column-gap: 3px;
          column-gap: 3px;
  font-weight: 600;
}

.mobile-return__sum span {
  font-size: 8px;
  color: #00A023;
}

.mobile-return__date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 6px;
     -moz-column-gap: 6px;
          column-gap: 6px;
  font-size: 11px;
}

.mobile-return__date::before {
  content: "";
  display: block;
  background: url("../img/font-icons/clock.svg") left no-repeat;
  width: 13px;
  height: 13px;
  background-size: 100%;
}

.mobile-return__status {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-left: auto;
  max-width: 95px;
  text-align: right !important;
}

.invoices__block {
  background-color: #fff;
  border-radius: 4px;
}

.invoices__title {
  line-height: 2.0714285714;
  font-weight: 700;
}

.invoices__result {
  color: #EB5757;
  line-height: 1.2142857143;
  font-weight: 600;
}

.invoices .select {
  min-width: 0;
  position: relative;
}

.invoices .select__body {
  position: relative;
}

.invoices .select__title {
  color: inherit;
  text-align: left;
  border: 1px solid #AAC1BC;
  background-color: #fff;
  cursor: pointer;
  width: 100%;
  border-radius: 5px;
}

.invoices .select__value {
  color: #536460;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.2142857143;
  padding-left: 10px;
  padding-right: 15px;
  gap: 0.625rem;
}

.invoices .select__value > * {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.invoices .select__value:after {
  content: "";
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 10px;
          flex: 0 0 10px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  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;
  background: url("../img/font-icons/menu-arrow.svg") right no-repeat;
  background-size: 100%;
}

._select-open .invoices .select__value:after {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.invoices .select__value._select-pseudo-label::before {
  content: attr(data-pseudo-label);
  opacity: 0.5;
}

.invoices .select__content {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  white-space: nowrap;
}

.invoices .select__text {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  white-space: nowrap;
}

.invoices .select__input {
  width: 100%;
  background-color: transparent;
  height: 100%;
}

.invoices .select__options {
  color: #000;
  position: absolute;
  top: 110%;
  border-radius: 5px;
  min-width: 207px;
  width: 100%;
  left: 0;
  background-color: #fff;
  border-top: 0;
  border: 1px solid #AAC1BC;
  overflow: hidden;
}

.invoices .select__scroll {
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 12.5rem;
}

.invoices .select__option {
  width: 100%;
  text-align: left;
  cursor: pointer;
  padding: 16px 10px;
  line-height: 1.2142857143;
  font-weight: 600;
  color: #536460;
}

.invoices .select__option._select-selected {
  background-color: #eee;
}

.invoices .select__row {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.invoices .select_show-top .select__options {
  top: auto;
  bottom: calc(100% - 0.0625rem);
  border: 1px solid #d9d9d9;
  border-bottom: 0;
  border-radius: 4px 4px 0 0;
  padding: 5px 0px 10px 0px;
}

.search-invoices {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 50px;
  grid-template-columns: auto 50px;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  margin-bottom: 30px;
}

.search-invoices__inputs {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 29.5833333333% 1fr 1fr 1fr 1fr;
  grid-template-columns: 29.5833333333% 1fr 1fr 1fr 1fr;
}

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

.search-invoices__date-values {
  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;
  position: relative;
}

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

.search-invoices__label {
  line-height: 1.2142857143;
  color: #AAC1BC;
  font-weight: 600;
}

.search-invoices__button {
  background-color: #00A023;
  background: #00A023;
  border-radius: 5px;
  height: 49px;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  font-size: 13px;
  line-height: 1.2307692308;
  font-weight: 700;
  color: #fff;
}

.format_export{
    padding: 8px 14px;
    background: #E6EDEB;
    border: 1px solid #AAC1BC;
    border-radius: 5px;
    min-height: 3.0625rem;
    font-weight: 600;
}

.search-invoices .select {
  min-width: 0;
  position: relative;
}

.search-invoices .select__body {
  position: relative;
}

.search-invoices .select__title {
  color: inherit;
  text-align: left;
  border: 1px solid #AAC1BC;
  cursor: pointer;
  width: 100%;
  border-radius: 5px;
}

.search-invoices .select__value {
  color: #536460;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.2142857143;
  padding-left: 10px;
  padding-right: 15px;
  gap: 0.625rem;
}

.search-invoices .select__value > * {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.search-invoices .select__value:after {
  content: "";
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 10px;
          flex: 0 0 10px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  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;
  background: url("../img/font-icons/menu-arrow.svg") right no-repeat;
  background-size: 100%;
}

._select-open .search-invoices .select__value:after {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.search-invoices .select__value._select-pseudo-label::before {
  content: attr(data-pseudo-label);
  opacity: 0.5;
}

.search-invoices .select__content {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  white-space: nowrap;
}

.search-invoices .select__text {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  white-space: nowrap;
}

.search-invoices .select__input {
  width: 100%;
  background-color: transparent;
  height: 100%;
}

.search-invoices .select__options {
  color: #000;
  position: absolute;
  top: 110%;
  border-radius: 5px;
  min-width: 207px;
  width: 100%;
  left: 0;
  background-color: #fff;
  border-top: 0;
  border: 1px solid #AAC1BC;
  overflow: hidden;
}

.search-invoices .select__scroll {
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 12.5rem;
}

.search-invoices .select__option {
  width: 100%;
  text-align: left;
  cursor: pointer;
  padding: 16px 10px;
  line-height: 1.2142857143;
  font-weight: 600;
  color: #536460;
}

.search-invoices .select__option._select-selected {
  background-color: #eee;
}

.search-invoices .select__row {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.search-invoices .select_show-top .select__options {
  top: auto;
  bottom: calc(100% - 0.0625rem);
  border: 1px solid #d9d9d9;
  border-bottom: 0;
  border-radius: 4px 4px 0 0;
  padding: 5px 0px 10px 0px;
}

.filter-invoices {
  margin-bottom: 16px;
}

.filter-invoices__open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: left;
  font-size: 13px;
  line-height: 1.2307692308;
  font-weight: 600;
  width: 100%;
  padding: 0 12px;
  margin-bottom: 4px;
  background: #E6EDEB;
  border: 1px solid #AAC1BC;
  border-radius: 4px;
  height: 40px;
  position: relative;
}

.filter-invoices__open::before {
  content: "";
  display: block;
  background: url("../img/font-icons/filter.svg") right no-repeat;
  width: 24px;
  height: 24px;
  background-size: 100%;
  margin-right: 8px;
}

.filter-invoices__open::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url("../img/font-icons/menu-arrow.svg") right no-repeat;
  width: 6px;
  height: 7px;
  background-size: 100%;
  right: 17px;
}

.create-invoices__title {
  line-height: 1.2083333333;
  font-weight: 700;
}

.create-invoices__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
}

.create-invoices__date {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
}

.create-invoices__date-row .select {
  min-width: 52px;
  position: relative;
}

.create-invoices__date-row .select__body {
  position: relative;
}

.create-invoices__date-row .select__title {
  color: inherit;
  text-align: left;
  background: #E6EDEB;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  width: 100%;
}

.create-invoices__date-row .select__value {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 1.625rem;
  padding: 0 0.625rem;
  gap: 0rem;
}

.create-invoices__date-row .select__value > * {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.create-invoices__date-row .select__value:after {
  content: "";
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 5px;
          flex: 0 0 5px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  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;
  background: url("../img/font-icons/menu-arrow.svg") right no-repeat;
  background-size: 100%;
}

._select-open .create-invoices__date-row .select__value:after {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.create-invoices__date-row .select__value._select-pseudo-label::before {
  content: attr(data-pseudo-label);
  opacity: 0.5;
}

.create-invoices__date-row .select__content {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  white-space: nowrap;
}

.create-invoices__date-row .select__text {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  white-space: nowrap;
}

.create-invoices__date-row .select__input {
  width: 100%;
  background-color: transparent;
  height: 100%;
}

.create-invoices__date-row .select__options {
  color: #000;
  position: absolute;
  top: 115%;
  border-radius: 4px !important;
  min-width: 100%;
  left: 0;
  background: #E6EDEB;
  border: none;
}

.create-invoices__date-row .select__scroll {
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 12.5rem;
}

.create-invoices__date-row .select__option {
  width: 100%;
  text-align: left;
  cursor: pointer;
  padding: 5px 15px;
  color: inherit;
}

.create-invoices__date-row .select__option._select-selected {
  background-color: #eee;
}

.create-invoices__date-row .select__row {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.create-invoices__date-row .select_show-top .select__options {
  top: auto;
  bottom: calc(100% - 0.0625rem);
  border: 1px solid #d9d9d9;
  border-bottom: 0;
  border-radius: 4px 4px 0 0;
  padding: 5px 0px 10px 0px;
}

.create-invoices__meta {
  background: #E6EDEB;
  border-radius: 5px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  line-height: 1.2142857143;
  color: #536460;
}

.create-invoices__meta::before {
  content: "";
  display: block;
  background: url("../img/font-icons/more.svg") left no-repeat;
  background-size: 100%;
}

.create-invoices__meta strong {
  display: inline-block;
  color: #152521;
}

.create-invoices__line {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  -ms-grid-columns: 194px 30% auto;
  grid-template-columns: 194px 30% auto;
  gap: 20px;
}

.create-invoices__checkbox {
  margin-bottom: 13px;
}

.create-invoices__textarea {
  margin-bottom: 23px;
}

.create-invoices__button {
  min-height: 49px;
  padding: 5px 16px;
  font-weight: 700;
  text-align: center;
}

.create-invoices .textarea-purpose {
  margin-bottom: 15px;
}

.create-invoices-checkbox {
  position: relative;
}

.create-invoices-checkbox:not(:last-child) {
  margin-bottom: 0.3125em;
}

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

.create-invoices-checkbox__input:focus-visible + .create-invoices-checkbox__label:before {
  -webkit-box-shadow: 0 0 5px #000;
          box-shadow: 0 0 5px #000;
}

.create-invoices-checkbox__input:checked + .create-invoices-checkbox__label:after {
  opacity: 1;
  visibility: visible;
}

.create-invoices-checkbox__label {
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  gap: 10px;
}

.create-invoices-checkbox__label:before {
  content: "";
  -ms-flex-item-align: start;
      align-self: flex-start;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border: 1px solid #AAC1BC;
  border-radius: 3px;
}

.create-invoices-checkbox__label::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-color: #AAC1BC;
  border-radius: 3px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  opacity: 0;
  visibility: hidden;
}

.create-invoices-checkbox__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  font-weight: 700;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.create-invoices-checkbox__text::after {
  content: "";
  display: block;
  background: url("../img/font-icons/check-grey.svg") right no-repeat;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-size: cover;
}

.payments-list {
  position: relative;
}

.payments-list__title {
  line-height: 1.2083333333;
  font-weight: 700;
}

.payments-list__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 20px;
}

.payments-list__menu {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow-x: auto;
  white-space: nowrap;
  padding-bottom: 10px;
}

.actions-payments-list {
  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;
}

.actions-payments-list__export {
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
  background: #E6EDEB;
  border: 1px solid #AAC1BC;
  border-radius: 5px;
  padding: 5px 16px;
  line-height: 1.2142857143;
  font-weight: 700;
}

.actions-payments-list__export::before {
  content: "";
  display: block;
  background: url("../img/font-icons/export.svg") left no-repeat;
  min-width: 24px;
  height: 24px;
}

.actions-payments-list__settings {
  line-height: 1.2142857143;
  font-weight: 700;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
  padding: 5px 16px;
}

.actions-payments-list__settings::before {
  content: "";
  display: block;
  background: url("../img/font-icons/settings-white.svg") left no-repeat;
  min-width: 24px;
  height: 24px;
}

.filter-payments-list {
  width: 100%;
}

.filter-payments-list__button {
  margin-bottom: 4px;
}

.filter-payments-list__form {
  background: #FFFFFF;
  border: 1px solid #AAC1BC;
  border-radius: 4px;
  padding: 16px;
}

.payments-list__body {
  background: #FFFFFF;
  border-radius: 5px;
  padding: 20px 20px 60px 20px;
}

.payments-list__caption {
  margin-bottom: 30px;
  line-height: 1.2083333333;
  font-weight: 700;
}

.payments-list__item {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr 130px 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 130px 1fr 1fr;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  row-gap: 15px;
  padding-right: 48px;
  padding-top: 13px;
  padding-bottom: 13px;
  border-top: 1px solid rgba(170, 193, 188, 0.3);
}

.payments-list__item:last-child {
  border-bottom: 1px solid rgba(170, 193, 188, 0.3);
}

.payments-list__label {
  max-width: 100%;
  text-align: left;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  line-height: 1.2142857143;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 3px;
     -moz-column-gap: 3px;
          column-gap: 3px;
}

.payments-list__label span {
  font-size: 8px;
  color: #00A023;
}

.payments-list__status {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5px;
}

.payments-list__status-sc {
  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;
  /* background: #F0F6F2; */
  border-radius: 5px;
  color: #00A023;
  height: 38px;
  width: 118px;
}

.payments-list__status-unsc::before {
  content: "";
  display: block;
  background:url(../img/font-icons/error.svg) left no-repeat;
  min-width: 16px;
  height: 16px;
}

.payments-list__status-unsc {
  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;
  /* background-color: #fbc6c6; */
  border-radius: 5px;

    color: #db4040;
  height: 38px;
  
  width: 118px;
}

.payments-list__status-sc::before {
  content: "";
  display: block;
  background:url(../img/font-icons/check.svg) left no-repeat;
  min-width: 16px;
  height: 16px;
}

.payments-list__status-vz {
  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;
  /* background-color: #f1f2f5; */
  color: #4b5569;
  border-radius: 5px;
  font-weight: 600;
  height: 38px;
  
  width: 118px;
}

.payments-list__status-vz::before {
  content: "";
  display: block;
  background: url("../img/font-icons/refund.svg") left no-repeat;
  min-width: 16px;
  height: 16px;
}

.payments-list__status-load {
  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;
  /* background-color: #e7f6ff; */
  color: #2e7ad1;
  border-radius: 5px;
  font-weight: 600;
  height: 38px;
    width: 118px;
}

.payments-list__status-load::before {
  content: "";
  display: block;
  background: url("../img/font-icons/proccess.svg") left no-repeat;
  min-width: 16px;
  height: 16px;
  margin-left: 6px;
}

.search-payment-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 50px;
  grid-template-columns: auto 50px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-column-gap: 6px;
     -moz-column-gap: 6px;
          column-gap: 6px;
}

.search-payment-list__inputs {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr 130px 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 130px 1fr 1fr;
}

.search-payment-list__send {
  min-height: 50px;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
  font-weight: 600;
}

.search-payment-list__send::before {
  content: "";
  display: block;
  background: url("../img/font-icons/search.svg") left no-repeat;
  background-size: 100%;
}

.search-payment-list .select {
  min-width: 0;
  position: relative;
}

.search-payment-list .select__body {
  position: relative;
}

.search-payment-list .select__title {
  color: inherit;
  text-align: left;
  border: 1px solid #AAC1BC;
  cursor: pointer;
  width: 100%;
  border-radius: 5px;
}

.search-payment-list .select__value {
  color: #536460;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.2142857143;
  padding-left: 10px;
  padding-right: 15px;
  gap: 0.625rem;
}

.search-payment-list .select__value > * {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.search-payment-list .select__value:after {
  content: "";
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 10px;
          flex: 0 0 10px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  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;
  background: url("../img/font-icons/menu-arrow.svg") right no-repeat;
  background-size: 100%;
}

._select-open .search-payment-list .select__value:after {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.search-payment-list .select__value._select-pseudo-label::before {
  content: attr(data-pseudo-label);
  opacity: 0.5;
}

.search-payment-list .select__content {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  white-space: nowrap;
}

.search-payment-list .select__text {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  white-space: nowrap;
}

.search-payment-list .select__input {
  width: 100%;
  background-color: transparent;
  height: 100%;
}

.search-payment-list .select__options {
  color: #000;
  position: absolute;
  top: 110%;
  border-radius: 5px;
  min-width: 207px;
  width: 100%;
  left: 0;
  background-color: #fff;
  border-top: 0;
  border: 1px solid #AAC1BC;
  overflow: hidden;
}

.search-payment-list .select__scroll {
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 12.5rem;
}

.search-payment-list .select__option {
  width: 100%;
  text-align: left;
  cursor: pointer;
  padding: 16px 10px;
  line-height: 1.2142857143;
  font-weight: 600;
  color: #536460;
}

.search-payment-list .select__option._select-selected {
  background-color: #eee;
}

.search-payment-list .select__row {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.search-payment-list .select_show-top .select__options {
  top: auto;
  bottom: calc(100% - 0.0625rem);
  border: 1px solid #d9d9d9;
  border-bottom: 0;
  border-radius: 4px 4px 0 0;
  padding: 5px 0px 10px 0px;
}

.mobile-list-payment__block {
  background-color: #fff;
  border-radius: 4px;
  padding: 12px 8px 8px 8px;
}

.mobile-list-payment__block:not(:last-child) {
  margin-bottom: 10px;
}

.mobile-list-payment__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;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.mobile-list-payment__header._spoller-active .mobile-list-payment__code {
  color: #00A023;
  max-width: none;
}

.mobile-list-payment__header._spoller-active .mobile-list-payment__cart {
  margin-top: -15px;
  opacity: 0;
  z-index: -1;
}

.mobile-list-payment__header._spoller-active .mobile-list-payment__sum {
  opacity: 0;
  visibility: hidden;
}

.mobile-list-payment__code {
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 2px;
  max-width: 150px;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  -webkit-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  opacity: 1;
  visibility: visible;
}

.mobile-list-payment__cart {
  font-size: 11px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 4px;
     -moz-column-gap: 4px;
          column-gap: 4px;
  -webkit-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  opacity: 1;
  visibility: visible;
}

.mobile-list-payment__cart::before {
  content: "";
  display: block;
  background: url("../img/font-icons/cart.svg") left no-repeat;
  min-width: 16px;
  height: 16px;
}

.mobile-list-payment__sum {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-column-gap: 3px;
     -moz-column-gap: 3px;
          column-gap: 3px;
  font-size: 11px;
  font-weight: 600;
}

.mobile-list-payment__sum span {
  font-size: 8px;
  color: #00A023;
}

.mobile-list-payment__content {
  padding-top: 14px;
}

.mobile-list-payment__line {
  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;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 8px 0;
}

.mobile-list-payment__line:not(:last-child) {
  border-bottom: 0.5px solid #E6EDEB;
}

.mobile-list-payment__label {
  color: #536460;
  font-size: 11px;
  font-weight: 600;
}

.mobile-list-payment__value {
  font-size: 11px;
  font-weight: 600;
}

.mobile-list-payment__status {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 4px;
     -moz-column-gap: 4px;
          column-gap: 4px;
}

[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: black;
  border-radius: 7px;
  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 (min-width: 30em) {

  .create-invoices__date-row .select {
    display: none;
  }
}

@media (min-width: 600px) {
  .search-merchants {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }

  .mobile-merchants {
    display: none;
  }

  .mobile-info-panel {
    display: none;
  }

  .return__history {
    background: #FFFFFF;
    border-radius: 5px;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .mobile-return {
    display: none;
  }
}

@media (max-width: 650px) {
  .list-merchants__search{
    display: none;
  }
}

@media (min-width: 48em) {
  .nav {
    display: none;
  }

  .header {
    border-bottom: 1px solid #D9D9D9;
  }

  .invoices__result {
    border-top: 1px solid rgba(170, 193, 188, 0.3);
    padding-top: 19px;
  }

  .search-invoices__button {
    margin-top: 26px;
  }

  .search-invoices__button span {
    display: none;
  }

  .filter-invoices {
    display: none;
  }

  .filter-payments-list {
    display: none;
  }

  .payments-list__search {
    margin-bottom: 30px;
  }

  .search-payment-list__send span {
    display: none;
  }

  .mobile-list-payment {
    display: none;
  }
}

@media (min-width: 97em) {
  .button-nav {
    min-height: 3.0625rem;
  }

  .button-nav {
    font-size: 0.875rem;
  }

  .button-nav {
    padding-left: 1rem;
  }

  .button-nav {
    padding-right: 1rem;
  }

  .input {
    font-size: 0.875rem;
  }

  .input {
    min-height: 3.125rem;
  }

  .checkbox__text {
    font-size: 0.875rem;
  }

  .popup__close {
    top: 1rem;
  }

  .popup__close {
    right: 1rem;
  }

  .popup__close img {
    width: 1.5rem;
  }

  .popup__close img {
    height: 1.5rem;
  }

  .privileges-popup {
    padding-top: 1.25rem;
  }

  .privileges-popup {
    padding-bottom: 1.875rem;
  }

  .privileges-popup {
    padding-left: 1.875rem;
  }

  .privileges-popup {
    padding-right: 1.875rem;
  }

  .privileges-popup__input {
    margin-bottom: 1.875rem;
  }

  .privileges-popup__label {
    font-size: 0.875rem;
  }

  .privileges-popup__checkbox-text {
    font-size: 0.875rem;
  }

  .privileges-popup__items {
    margin-top: 1.75rem;
  }

  .privileges-popup__items {
    row-gap: 0.8125rem;
  }

  .privileges-popup__items {
    margin-bottom: 1.875rem;
  }

  .popup-title {
    margin-bottom: 1.25rem;
  }

  .popup-title {
    font-size: 1.5rem;
  }

  .item-privileges__label {
    font-size: 0.875rem;
  }

  .return-popup {
    padding-top: 1.25rem;
  }

  .return-popup {
    padding-bottom: 1.875rem;
  }

  .return-popup {
    padding-left: 1.875rem;
  }

  .return-popup {
    padding-right: 1.875rem;
  }

  .return-popup__input:not(:last-child) {
    margin-bottom: 1.25rem;
  }

  .return-popup .select__value {
    font-size: 0.875rem;
  }

  .return-popup .select__value {
    height: 3.0625rem;
  }

  .return-popup .select__option {
    font-size: 0.875rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .header__title {
    font-size: 1.5rem;
  }

  .info-panel__filter {
    margin-bottom: 1.875rem;
  }

  .info-panel__result {
    margin-bottom: 1.25rem;
  }

  .filter-info-panel__select-calendar .select__value {
    height: 3.0625rem;
  }

  .filter-info-panel__select-calendar .select__value {
    padding-left: 1rem;
  }

  .filter-info-panel__select-calendar .select__value {
    font-size: 0.875rem;
  }

  .filter-info-panel__select-calendar .select__value {
    gap: 0.75rem;
  }

  .filter-info-panel__select-calendar .select__options {
    font-size: 0.875rem;
  }
  
  .filter-info-panel__select-merchants .select__value {
    height: 3.0625rem;
  }

  .filter-info-panel__select-merchants .select__value {
    padding-left: 1rem;
  }

  .filter-info-panel__select-merchants .select__value {
    font-size: 0.875rem;
  }

  .filter-info-panel__select-merchants .select__value {
    gap: 0.75rem;
  }

  .filter-info-panel__select-merchants .select__options {
    font-size: 0.875rem;
  }

  .filter-info-panel .select__value {
    height: 3.0625rem;
  }

  .filter-info-panel .select__value {
    padding-left: 1rem;
  }

  .filter-info-panel .select__value {
    font-size: 0.875rem;
  }

  .filter-info-panel .select__options {
    font-size: 0.875rem;
  }

  .result-info-panel {
    padding: 1.25rem;
  }

  .result-info-panel__grid {
    gap: 1.25rem;
  }

  .result-info-panel__item {
    padding: 1rem;
  }

  .table-info-panel__status {
    min-height: 1.75rem;
  }

  .table-info-panel__status-sc::before {
    width: 1rem;
  }

  .table-info-panel__status-sc::before {
    height: 1rem;
  }

  .list-merchants__title {
    margin-bottom: 1.875rem;
  }

  .list-merchants__nav {
    margin-bottom: 1.875rem;
  }

  .list-merchants__nav {
    -webkit-column-gap: 0.625rem;
       -moz-column-gap: 0.625rem;
            column-gap: 0.625rem;
  }

  .list-merchants__button {
    min-height: 3.0625rem;
  }

  .list-merchants__button {
    font-size: 0.875rem;
  }

  .search-merchants__input input {
    font-size: 0.875rem;
  }

  .search-merchants__input input::-webkit-input-placeholder {
    font-size: 0.875rem;
  }

  .search-merchants__input input::-moz-placeholder {
    font-size: 0.875rem;
  }

  .search-merchants__input input:-ms-input-placeholder {
    font-size: 0.875rem;
  }

  .search-merchants__input input::-ms-input-placeholder {
    font-size: 0.875rem;
  }

  .search-merchants__input input::placeholder {
    font-size: 0.875rem;
  }

  .search-merchants__label {
    font-size: 0.875rem;
  }

  .search-merchants__label {
    margin-bottom: 0.75rem;
  }

  .search-merchants .select__value {
    font-size: 0.875rem;
  }

  .search-merchants .select__value {
    height: 3.0625rem;
  }

  .search-merchants .select__option {
    font-size: 0.875rem;
  }

  .create-merchants {
    padding-top: 1.25rem;
  }

  .create-merchants {
    padding-left: 1.25rem;
  }

  .create-merchants {
    padding-right: 1.25rem;
  }

  .create-merchants {
    padding-bottom: 1.25rem;
  }

  .create-merchants__head {
    margin-bottom: 1.25rem;
  }

  .create-merchants__head {
    font-size: 1.125rem;
  }

  .create-merchants .select__value {
    font-size: 0.875rem;
  }

  .create-merchants .select__value {
    height: 3.0625rem;
  }

  .create-merchants .select__option {
    font-size: 0.875rem;
  }

  .merchants-information {
    padding: 1.25rem;
  }

  .merchants-information__head {
    margin-bottom: 1.875rem;
  }

  .merchants-information__head {
    font-size: 1.5rem;
  }

  .merchants-information__section:not(:last-child) {
    margin-bottom: 1.875rem;
  }

  .merchants-information__caption {
    font-size: 1.125rem;
  }

  .merchants-information__caption {
    margin-bottom: 1.25rem;
  }

  .merchants-information__form {
    gap: 1.25rem;
  }

  .merchants-information__form {
    margin-bottom: 1.875rem;
  }

  .merchants-information__label {
    margin-bottom: 0.625rem;
  }

  .merchants-information__label {
    font-size: 0.875rem;
  }

  .merchants-information__phone input {
    height: 3.0625rem;
  }

  .merchants-information__phone input {
    font-size: 0.875rem;
  }

  .merchants-information__phone input::-webkit-input-placeholder {
    font-size: 0.875rem;
  }

  .merchants-information__phone input::-moz-placeholder {
    font-size: 0.875rem;
  }

  .merchants-information__phone input:-ms-input-placeholder {
    font-size: 0.875rem;
  }

  .merchants-information__phone input::-ms-input-placeholder {
    font-size: 0.875rem;
  }

  .merchants-information__phone input::placeholder {
    font-size: 0.875rem;
  }

  .merchants-information__country .select__value {
    font-size: 0.875rem;
  }

  .merchants-information__country .select__value {
    height: 3.0625rem;
  }

  .merchants-information__country .select__option {
    font-size: 0.875rem;
  }

  .merchants-information__checkbox {
    margin-bottom: 1.875rem;
  }

  .merchants-information .select__value {
    font-size: 0.875rem;
  }

  .merchants-information .select__value {
    height: 3.0625rem;
  }

  .merchants-information .select__option {
    font-size: 0.875rem;
  }

  .settings-merchants__nav {
    margin-bottom: 1.875rem;
  }

  .settings-merchants__button {
    min-height: 3.0625rem;
  }

  .settings-merchants__button {
    font-size: 0.875rem;
  }

  .settings-merchants__form {
    padding-left: 1.25rem;
  }

  .settings-merchants__form {
    padding-right: 1.25rem;
  }

  .settings-merchants__form {
    padding-top: 1.875rem;
  }

  .settings-merchants__form {
    padding-bottom: 1.875rem;
  }

  .form-settings-merchants__wrapper {
    gap: 1.25rem;
  }

  .form-settings-merchants__logo {
    min-height: 3.125rem;
  }

  .form-settings-merchants__logo img {
    width: 1.5rem;
  }

  .form-settings-merchants__logo img {
    height: 1.5rem;
  }

  .form-settings-merchants__logo span {
    font-size: 0.875rem;
  }

  .form-settings-merchants__copy {
    min-height: 3.125rem;
  }

  .form-settings-merchants__copy {
    padding-left: 0.9375rem;
  }

  .form-settings-merchants__copy {
    padding-right: 0.9375rem;
  }

  .form-settings-merchants__copy p {
    font-size: 0.875rem;
  }

  .privilege-settings__actions {
    margin-bottom: 1.875rem;
  }

  .privilege-settings__actions input {
    padding-left: 1rem;
  }

  .privilege-settings__actions input {
    padding-right: 1rem;
  }

  .privilege-settings__actions input {
    font-size: 0.875rem;
  }

  .privilege-settings__actions input {
    min-height: 3.0625rem;
  }

  .privilege-settings__actions input::-webkit-input-placeholder {
    font-size: 0.875rem;
  }

  .privilege-settings__actions input::-moz-placeholder {
    font-size: 0.875rem;
  }

  .privilege-settings__actions input:-ms-input-placeholder {
    font-size: 0.875rem;
  }

  .privilege-settings__actions input::-ms-input-placeholder {
    font-size: 0.875rem;
  }

  .privilege-settings__actions input::placeholder {
    font-size: 0.875rem;
  }

  .privilege-settings__add {
    min-height: 3.0625rem;
  }

  .privilege-settings__add {
    font-size: 0.875rem;
  }

  .privilege-settings__user {
    padding-left: 1rem;
  }

  .privilege-settings__user {
    padding-right: 1rem;
  }

  .privilege-settings__user {
    padding-top: 1rem;
  }

  .privilege-settings__user {
    padding-bottom: 1rem;
  }

  .privilege-settings__mail {
    font-size: 0.875rem;
  }

  .privilege-settings__view {
    padding-left: 0.5rem;
  }

  .privilege-settings__view {
    padding-right: 0.5rem;
  }

  .privilege-settings__delete {
    padding-left: 0.5rem;
  }

  .privilege-settings__delete {
    padding-right: 0.5rem;
  }

  .payment__header {
    margin-bottom: 1.875rem;
  }

  .payment__title {
    font-size: 1.5rem;
  }

  .payment__nav {
    margin-bottom: 1.25rem;
  }

  .payment__button img {
    width: 1.5rem;
  }

  .payment__button img {
    height: 1.5rem;
  }

  .payment__body {
    padding-top: 1.25rem;
  }

  .payment__body {
    padding-bottom: 1.25rem;
  }

  .payment__body {
    padding-left: 1.25rem;
  }

  .payment__body {
    padding-right: 1.25rem;
  }

  .payment__head {
    margin-bottom: 1.875rem;
  }

  .payment__head {
    font-size: 1.5rem;
  }

  .payment__slogan {
    margin-bottom: 1.25rem;
  }

  .payment__slogan {
    font-size: 0.875rem;
  }

  .payment__item {
    padding-top: 1.125rem;
  }

  .payment__item {
    padding-bottom: 1.125rem;
  }

  .payment__label {
    font-size: 0.875rem;
  }

  .payment__value {
    font-size: 0.875rem;
  }

  .return__nav {
    margin-bottom: 1.875rem;
  }

  .return__caption {
    margin-bottom: 1.875rem;
  }

  .return__caption {
    font-size: 1.5rem;
  }

  .invoices__add {
    min-height: 3.0625rem;
  }

  .invoices__block {
    padding: 1.25rem;
  }

  .invoices__title {
    margin-bottom: 1.875rem;
  }

  .invoices__title {
    font-size: 1.5rem;
  }

  .invoices .select__value {
    font-size: 0.875rem;
  }

  .invoices .select__value {
    height: 3.0625rem;
  }

  .invoices .select__option {
    font-size: 0.875rem;
  }

  .search-invoices__inputs {
    gap: 0.625rem;
  }

  .search-invoices__column {
    gap: 0.625rem;
  }

  .search-invoices__label {
    margin-bottom: 0.625rem;
  }

  .search-invoices .select__value {
    font-size: 0.875rem;
  }

  .search-invoices .select__value {
    height: 3.0625rem;
  }

  .search-invoices .select__option {
    font-size: 0.875rem;
  }

  .create-invoices__title {
    margin-bottom: 1.875rem;
  }

  .create-invoices__title {
    font-size: 1.5rem;
  }

  .create-invoices__grid {
    gap: 1.25rem;
  }

  .create-invoices__grid {
    margin-bottom: 1.5625rem;
  }

  .create-invoices__date {
    gap: 1.25rem;
  }

  .create-invoices__meta {
    font-size: 0.875rem;
  }

  .create-invoices__meta {
    padding: 1rem;
  }

  .create-invoices__meta::before {
    min-width: 1.375rem;
  }

  .create-invoices__meta::before {
    height: 1.375rem;
  }

  .create-invoices__line {
    margin-bottom: 1.25rem;
  }

  .create-invoices-checkbox__label:before {
    -ms-flex-preferred-size: 1.5rem;
        flex-basis: 1.5rem;
  }

  .create-invoices-checkbox__label:before {
    width: 1.5rem;
  }

  .create-invoices-checkbox__label:before {
    height: 1.5rem;
  }

  .create-invoices-checkbox__label::after {
    -ms-flex-preferred-size: 1.5rem;
        flex-basis: 1.5rem;
  }

  .create-invoices-checkbox__label::after {
    width: 1.5rem;
  }

  .create-invoices-checkbox__label::after {
    height: 1.5rem;
  }

  .create-invoices-checkbox__text {
    font-size: 0.875rem;
  }

  .create-invoices-checkbox__text::after {
    -ms-flex-preferred-size: 1.375rem;
        flex-basis: 1.375rem;
  }

  .create-invoices-checkbox__text::after {
    width: 1.375rem;
  }

  .create-invoices-checkbox__text::after {
    height: 1.375rem;
  }

  .payments-list__title {
    margin-bottom: 1.875rem;
  }

  .payments-list__title {
    font-size: 1.5rem;
  }

  .payments-list__menu {
    -webkit-column-gap: 0.625rem;
       -moz-column-gap: 0.625rem;
            column-gap: 0.625rem;
  }

  .actions-payments-list__export {
    min-height: 3.0625rem;
  }

  .actions-payments-list__settings {
    min-height: 3.0625rem;
  }

  .payments-list__caption {
    font-size: 1.5rem;
  }

  .payments-list__status-sc {
    padding: 0.375rem;
  }

  .payments-list__status-sc {
    font-size: 0.875rem;
  }

  .payments-list__status-unsc {
    padding: 0.375rem;
  }

  .payments-list__status-unsc {
    font-size: 0.875rem;
  }

  .payments-list__status-vz {
    font-size: 0.875rem;
  }

  .payments-list__status-load {
    font-size: 0.875rem;
  }

  .payments-list__status-vz {
    padding: 0.375rem;
  }

  .search-payment-list__inputs {
    gap: 0.625rem;
  }

  .search-payment-list__send {
    margin-top: 1.8125rem;
  }

  .search-payment-list__send::before {
    min-width: 1.5rem;
  }

  .search-payment-list__send::before {
    height: 1.5rem;
  }

  .search-payment-list .select__value {
    font-size: 0.875rem;
  }

  .search-payment-list .select__value {
    height: 3.0625rem;
  }

  .search-payment-list .select__option {
    font-size: 0.875rem;
  }
}

@media (min-width: 1660px) {
  .search-merchants {
    -ms-grid-columns: 1fr 1fr 120px 150px 141px 196px;
    grid-template-columns: 1fr 1fr 120px 150px 141px 196px;
  }
}

@media (max-width: 1750px) {
  .payments-list__item {
    -ms-grid-columns: (1fr)[5];
    grid-template-columns: repeat(5, 1fr);
  }

  .search-payment-list__inputs {
    -ms-grid-columns: (1fr)[5];
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (max-width: 1650px) {
  .table-info-panel {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .table-info-panel__items {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

@media (max-width: 1600px) {
  .results-merchants__row {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1440px) {
  .page {
    padding-left: 320px;
  }

  .sidebar {
    width: 320px;
  }
}

@media (max-width: 1360px) {
  .search-invoices__inputs {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1300px) {
  .form-settings-merchants__wrapper {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }

  .form-settings-merchants .input-clear {
    display: none;
  }
}

@media (max-width: 1250px) {
  .payments-list__item {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }

  .search-payment-list__inputs {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1200px) {
  .page {
    padding-left: 290px;
  }

  [class*=__container] {
    padding: 0 16px;
  }

  .header__container {
    min-height: 60px;
  }

  .sidebar {
    width: 290px;
  }

  .sidebar__logo {
    padding: 5px 25px;
  }

  .sidebar__status {
    padding-left: 25px;
  }

  .menu-sidebar__list li a._active {
    border-left: 3px solid #F2E9B6;
  }

  .menu-sidebar__list li a {
    padding-left: 20px;
    border-left: 3px solid rgba(242, 233, 182, 0);
  }

  .result-info-panel__grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .table-info-panel__row {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 70% auto !important;
    grid-template-columns: 70% auto !important;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
}

@media (max-width: 1024px) {
  .create-invoices__line {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .create-invoices__checkbox {
    margin-bottom: 0;
  }
}

@media (max-width: 62em) {
  .page {
    padding-left: 250px;
  }

  .sidebar {
    width: 250px;
  }

  .create-invoices__grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  }

  .payments-list__item {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }

  .search-payment-list__inputs {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .merchants-information__form {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .form-settings-merchants__wrapper {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 48em) {
  .page {
    padding-left: 0;
  }

  .breadcrumbs {
    display: none;
  }

  .header {
    margin-bottom: 24px;
  }

  .user-header {
    display: none;
  }

  .sidebar {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(100%);
        -ms-transform: translateY(100%);
            transform: translateY(100%);
    -webkit-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    width: 100%;
    z-index: 100;
    padding-bottom: 100px;
  }

  .menu-open .sidebar {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0%);
        -ms-transform: translateY(0%);
            transform: translateY(0%);
  }

  .list-merchants__next {
    width: 100%;
  }

  .create-merchants {
    max-width: none;
  }

  .create-merchants__select {
    margin-bottom: 16px;
  }

  .merchants-information__country .select__value {
    padding-left: 8px !important;
    padding-right: 0px !important;
    min-width: 95px !important;
  }

  .payment__cod {
    display: none;
  }

  .payment__status {
    display: none;
  }

  .payment__where {
    display: none;
  }

  .invoices__nav {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

 
  .invoices__add {
    width: 100%;
  }

  .invoices__block-f {
    background-color: transparent;
    border-radius: 0px;
    padding: 0;
  }

  .invoices__result {
    padding: 21px 8px;
    border-radius: 5px;
    background-color: #fff;
  }

  .search-invoices {
    display: none;
  }

  .search-invoices__inputs {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    background-color: #fff;
    border: 1px solid #AAC1BC;
    border-radius: 4px;
    padding: 16px;
  }

  .search-invoices__date {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .search-invoices__date-values {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    border: 1px solid #AAC1BC;
    border-radius: 5px;
  }

  .search-invoices__date-values::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    background-color: #AAC1BC;
    height: 25px;
    width: 1px;
  }

  .search-invoices__input .input-data {
    border: none !important;
  }

  .actions-payments-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    row-gap: 16px;
  }

  .actions-payments-list__export {
    width: 100%;
  }

  .actions-payments-list__settings {
    width: 100%;
  }

  .payments-list__body {
    display: none;
  }

  .payments-list__caption {
    display: none;
  }

  .search-payment-list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .search-payment-list__inputs {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .search-payment-list .select__value:after {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 6px;
            flex: 0 0 6px;
  }
}

@media (max-width: 650px) {
  .table-info-panel {
    display: none;
  }

  .table-info-panel__head {
    margin-bottom: 8px;
  }

  .table-info-panel__label {
    font-size: 11px;
    line-height: 1.7272727273;
  }
}

@media (max-width: 600px) {
  .list-merchants__block-f {
    padding: 0;
    background-color: transparent;
  }

  #pc-available-balance, #pc-caption, #pc-return-caption {
    display: none;
  }

  .search-merchants {
    width: 100%;
    background-color: #fff;
    -webkit-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    padding: 8px 16px;
    row-gap: 8px;
    border: 1px solid #AAC1BC;
    border-radius: 4px;
  }

  .search-merchants__input:not(:last-child) {
    margin-bottom: 8px;
  }

  .search-merchants__button {
    min-height: 43px;
    width: 100%;
  }

  .results-merchants {
    display: none;
  }

  .privilege-settings__actions {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .return__header {
    display: none;
  }

  .return__item {
    display: none;
  }
}

@media (max-width: 30em) {
  .input-date {
    background-color: transparent !important;
    border: none !important;
  }

  .popup__button {
    width: 100%;
  }

  .item-privileges {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .item-privileges__line {
    -ms-grid-columns: 40% auto;
    grid-template-columns: 40% auto;
  }

  .filter-info-panel {
    -webkit-column-gap: 8px;
       -moz-column-gap: 8px;
            column-gap: 8px;
  }

  .filter-info-panel__select-calendar .select {
    min-width: 175px !important;
    width: 100%;
    max-width: 175px !important;
  }

  .filter-info-panel__select-calendar .select__value {
    padding-right: 10px !important;
  }

  .filter-info-panel .select {
    min-width: 110px;
    width: 100%;
    max-width: 110px;
  }

  .list-merchants__nav {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 87px auto;
    grid-template-columns: 87px auto;
  }

  .merchants-information__button {
    width: 100%;
  }

  .settings-merchants__nav {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }

  .settings-merchants__button {
    padding: 5px 10px;
  }

  .privilege-settings__icon {
    display: none;
  }

  .privilege-settings__view span {
    display: none;
  }

  .privilege-settings__delete span {
    display: none;
  }

  .payment__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: stretch;
        -ms-flex-pack: stretch;
            justify-content: stretch;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }

  .payment__label {
    color: #AAC1BC;
  }

  .payment__value {
    color: #536460;
    max-width: 200px;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
  }

  .create-invoices__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .create-invoices__date {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .create-invoices__date-row {
    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;
    border: 1px solid #AAC1BC;
    border-radius: 4px;
    padding-right: 8px;
  }

  .create-invoices__meta::before {
    margin-top: 2px;
  }

  .create-invoices__meta {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }

  .create-invoices__button {
    width: 100%;
  }

  .create-invoices__currency {
    display: none;
  }

  .payments-list__menu {
    margin-bottom: 4px;
  }
}

@media (max-width: 20em) {
  .button-nav {
    min-height: 2.1875rem;
  }

  .button-nav {
    font-size: 0.6875rem;
  }

  .button-nav {
    padding-left: 0.5rem;
  }

  .button-nav {
    padding-right: 0.5rem;
  }

  .input {
    font-size: 0.6875rem;
  }

  .input {
    min-height: 2.5rem;
  }

  .checkbox__text {
    font-size: 0.6875rem;
  }

  .popup__close {
    top: 0.75rem;
  }

  .popup__close {
    right: 0.75rem;
  }

  .popup__close img {
    width: 1rem;
  }

  .popup__close img {
    height: 1rem;
  }

  .privileges-popup {
    padding-top: 1rem;
  }

  .privileges-popup {
    padding-bottom: 1rem;
  }

  .privileges-popup {
    padding-left: 1rem;
  }

  .privileges-popup {
    padding-right: 1rem;
  }

  .privileges-popup__input {
    margin-bottom: 1.5rem;
  }

  .privileges-popup__label {
    font-size: 0.6875rem;
  }

  .privileges-popup__checkbox-text {
    font-size: 0.6875rem;
  }

  .privileges-popup__items {
    margin-top: 1.5rem;
  }

  .privileges-popup__items {
    row-gap: 0.5rem;
  }

  .privileges-popup__items {
    margin-bottom: 1.5rem;
  }

  .popup-title {
    margin-bottom: 1.5rem;
  }

  .popup-title {
    font-size: 0.8125rem;
  }

  .item-privileges__label {
    font-size: 0.6875rem;
  }

  .return-popup {
    padding-top: 1rem;
  }

  .return-popup {
    padding-bottom: 1rem;
  }

  .return-popup {
    padding-left: 1rem;
  }

  .return-popup {
    padding-right: 1rem;
  }

  .return-popup__input:not(:last-child) {
    margin-bottom: 1rem;
  }

  .return-popup .select__value {
    font-size: 0.6875rem;
  }

  .return-popup .select__value {
    height: 2.8125rem;
  }

  .return-popup .select__option {
    font-size: 0.6875rem;
  }

  .section-title {
    font-size: 0.8125rem;
  }

  .header__title {
    font-size: 0.8125rem;
  }

  .info-panel__filter {
    margin-bottom: 0.9375rem;
  }

  .info-panel__result {
    margin-bottom: 1.5rem;
  }

  .filter-info-panel__select-calendar .select__value {
    height: 2.5rem;
  }

  .filter-info-panel__select-calendar .select__value {
    padding-left: 0.5rem;
  }

  .filter-info-panel__select-calendar .select__value {
    font-size: 0.6875rem;
  }

  .filter-info-panel__select-calendar .select__value {
    gap: 0.5rem;
  }

  .filter-info-panel__select-calendar .select__options {
    font-size: 0.6875rem;
  }

  .filter-info-panel .select__value {
    height: 2.5rem;
  }

  .filter-info-panel .select__value {
    padding-left: 0.5rem;
  }

  .filter-info-panel .select__value {
    font-size: 0.6875rem;
  }

  .filter-info-panel .select__options {
    font-size: 0.6875rem;
  }

  .result-info-panel {
    padding: 0.5rem;
  }

  .result-info-panel__grid {
    gap: 0.25rem;
  }

  .result-info-panel__item {
    padding: 0.5625rem;
  }

  .table-info-panel__status {
    min-height: 1.25rem;
  }

  .table-info-panel__status-sc::before {
    width: 0.625rem;
  }

  .table-info-panel__status-sc::before {
    height: 0.625rem;
  }

  .list-merchants__title {
    margin-bottom: 1rem;
  }

  .list-merchants__nav {
    margin-bottom: 1rem;
  }

  .list-merchants__nav {
    -webkit-column-gap: 0.5rem;
       -moz-column-gap: 0.5rem;
            column-gap: 0.5rem;
  }

  .list-merchants__button {
    min-height: 2.1875rem;
  }

  .list-merchants__button {
    font-size: 0.6875rem;
  }

  .search-merchants__input input {
    font-size: 0.6875rem;
  }

  .search-merchants__input input::-webkit-input-placeholder {
    font-size: 0.6875rem;
  }

  .search-merchants__input input::-moz-placeholder {
    font-size: 0.6875rem;
  }

  .search-merchants__input input:-ms-input-placeholder {
    font-size: 0.6875rem;
  }

  .search-merchants__input input::-ms-input-placeholder {
    font-size: 0.6875rem;
  }

  .search-merchants__input input::placeholder {
    font-size: 0.6875rem;
  }

  .search-merchants__label {
    font-size: 0.6875rem;
  }

  .search-merchants__label {
    margin-bottom: 0.25rem;
  }

  .search-merchants .select__value {
    font-size: 0.6875rem;
  }

  .search-merchants .select__value {
    height: 2.8125rem;
  }

  .search-merchants .select__option {
    font-size: 0.6875rem;
  }

  .create-merchants {
    padding-top: 0.5rem;
  }

  .create-merchants {
    padding-left: 0.5rem;
  }

  .create-merchants {
    padding-right: 0.5rem;
  }

  .create-merchants {
    padding-bottom: 1rem;
  }

  .create-merchants__head {
    margin-bottom: 1rem;
  }

  .create-merchants__head {
    font-size: 0.8125rem;
  }

  .create-merchants .select__value {
    font-size: 0.6875rem;
  }

  .create-merchants .select__value {
    height: 2.8125rem;
  }

  .create-merchants .select__option {
    font-size: 0.6875rem;
  }

  .merchants-information {
    padding: 0.5rem;
  }

  .merchants-information__head {
    margin-bottom: 1rem;
  }

  .merchants-information__head {
    font-size: 0.8125rem;
  }

  .merchants-information__section:not(:last-child) {
    margin-bottom: 1.5rem;
  }

  .merchants-information__caption {
    font-size: 0.8125rem;
  }

  .merchants-information__caption {
    margin-bottom: 1rem;
  }

  .merchants-information__form {
    gap: 0.5rem;
  }

  .merchants-information__form {
    margin-bottom: 1rem;
  }

  .merchants-information__label {
    margin-bottom: 0.25rem;
  }

  .merchants-information__label {
    font-size: 0.6875rem;
  }

  .merchants-information__phone input {
    height: 2.8125rem;
  }

  .merchants-information__phone input {
    font-size: 0.6875rem;
  }

  .merchants-information__phone input::-webkit-input-placeholder {
    font-size: 0.6875rem;
  }

  .merchants-information__phone input::-moz-placeholder {
    font-size: 0.6875rem;
  }

  .merchants-information__phone input:-ms-input-placeholder {
    font-size: 0.6875rem;
  }

  .merchants-information__phone input::-ms-input-placeholder {
    font-size: 0.6875rem;
  }

  .merchants-information__phone input::placeholder {
    font-size: 0.6875rem;
  }

  .merchants-information__country .select__value {
    font-size: 0.6875rem;
  }

  .merchants-information__country .select__value {
    height: 2.8125rem;
  }

  .merchants-information__country .select__option {
    font-size: 0.6875rem;
  }

  .merchants-information__checkbox {
    margin-bottom: 1.1875rem;
  }

  .merchants-information .select__value {
    font-size: 0.6875rem;
  }

  .merchants-information .select__value {
    height: 2.5rem;
  }

  .merchants-information .select__option {
    font-size: 0.6875rem;
  }

  .settings-merchants__nav {
    margin-bottom: 1.5rem;
  }

  .settings-merchants__button {
    min-height: 2.1875rem;
  }

  .settings-merchants__button {
    font-size: 0.6875rem;
  }

  .settings-merchants__form {
    padding-left: 0.5rem;
  }

  .settings-merchants__form {
    padding-right: 0.5rem;
  }

  .settings-merchants__form {
    padding-top: 0.5rem;
  }

  .settings-merchants__form {
    padding-bottom: 0.5rem;
  }

  .form-settings-merchants__wrapper {
    gap: 0.5rem;
  }

  .form-settings-merchants__logo {
    min-height: 2.625rem;
  }

  .form-settings-merchants__logo img {
    width: 1rem;
  }

  .form-settings-merchants__logo img {
    height: 1rem;
  }

  .form-settings-merchants__logo span {
    font-size: 0.6875rem;
  }

  .form-settings-merchants__copy {
    min-height: 2.625rem;
  }

  .form-settings-merchants__copy {
    padding-left: 0.625rem;
  }

  .form-settings-merchants__copy {
    padding-right: 0.625rem;
  }

  .form-settings-merchants__copy p {
    font-size: 0.6875rem;
  }

  .privilege-settings__actions {
    margin-bottom: 1rem;
  }

  .privilege-settings__actions input {
    padding-left: 0.5rem;
  }

  .privilege-settings__actions input {
    padding-right: 0.5rem;
  }

  .privilege-settings__actions input {
    font-size: 0.6875rem;
  }

  .privilege-settings__actions input {
    min-height: 2.1875rem;
  }

  .privilege-settings__actions input::-webkit-input-placeholder {
    font-size: 0.6875rem;
  }

  .privilege-settings__actions input::-moz-placeholder {
    font-size: 0.6875rem;
  }

  .privilege-settings__actions input:-ms-input-placeholder {
    font-size: 0.6875rem;
  }

  .privilege-settings__actions input::-ms-input-placeholder {
    font-size: 0.6875rem;
  }

  .privilege-settings__actions input::placeholder {
    font-size: 0.6875rem;
  }

  .privilege-settings__add {
    min-height: 2.1875rem;
  }

  .privilege-settings__add {
    font-size: 0.6875rem;
  }

  .privilege-settings__user {
    padding-left: 0.5rem;
  }

  .privilege-settings__user {
    padding-right: 0.5rem;
  }

  .privilege-settings__user {
    padding-top: 0.4375rem;
  }

  .privilege-settings__user {
    padding-bottom: 0.4375rem;
  }

  .privilege-settings__mail {
    font-size: 0.6875rem;
  }

  .privilege-settings__view {
    padding-left: 0.1875rem;
  }

  .privilege-settings__view {
    padding-right: 0.1875rem;
  }

  .privilege-settings__delete {
    padding-left: 0.1875rem;
  }

  .privilege-settings__delete {
    padding-right: 0.1875rem;
  }

  .payment__header {
    margin-bottom: 1.1875rem;
  }

  .payment__title {
    font-size: 0.8125rem;
  }

  .payment__nav {
    margin-bottom: 0.875rem;
  }

  .payment__button img {
    width: 1rem;
  }

  .payment__button img {
    height: 1rem;
  }

  .payment__body {
    padding-top: 0.75rem;
  }

  .payment__body {
    padding-bottom: 0.75rem;
  }

  .payment__body {
    padding-left: 0.5rem;
  }

  .payment__body {
    padding-right: 0.5rem;
  }

  .payment__head {
    margin-bottom: 0.5rem;
  }

  .payment__head {
    font-size: 0.6875rem;
  }

  .payment__slogan {
    margin-bottom: 0.5rem;
  }

  .payment__slogan {
    font-size: 0.6875rem;
  }

  .payment__item {
    padding-top: 0.75rem;
  }

  .payment__item {
    padding-bottom: 0.75rem;
  }

  .payment__label {
    font-size: 0.6875rem;
  }

  .payment__value {
    font-size: 0.6875rem;
  }

  .return__nav {
    margin-bottom: 1.5rem;
  }

  .return__caption {
    margin-bottom: 1.5rem;
  }

  .return__caption {
    font-size: 0.8125rem;
  }

  .invoices__add {
    min-height: 2.5rem;
  }

  .invoices__block {
    padding: 0.5rem;
  }

  .invoices__title {
    margin-bottom: 0.9375rem;
  }

  .invoices__title {
    font-size: 0.8125rem;
  }

  .invoices .select__value {
    font-size: 0.6875rem;
  }

  .invoices .select__value {
    height: 2.5rem;
  }

  .invoices .select__option {
    font-size: 0.6875rem;
  }

  .search-invoices__inputs {
    gap: 0.5rem;
  }

  .search-invoices__column {
    gap: 0.5rem;
  }

  .search-invoices__label {
    margin-bottom: 0.25rem;
  }

  .search-invoices .select__value {
    font-size: 0.6875rem;
  }

  .search-invoices .select__value {
    height: 2.5rem;
  }

  .search-invoices .select__option {
    font-size: 0.6875rem;
  }

  .create-invoices__title {
    margin-bottom: 1rem;
  }

  .create-invoices__title {
    font-size: 0.8125rem;
  }

  .create-invoices__grid {
    gap: 0.5rem;
  }

  .create-invoices__grid {
    margin-bottom: 0.5rem;
  }

  .create-invoices__date {
    gap: 0.5rem;
  }

  .create-invoices__meta {
    font-size: 0.6875rem;
  }

  .create-invoices__meta {
    padding: 0.5rem;
  }

  .create-invoices__meta::before {
    min-width: 0.875rem;
  }

  .create-invoices__meta::before {
    height: 0.875rem;
  }

  .create-invoices__line {
    margin-bottom: 0.75rem;
  }

  .create-invoices-checkbox__label:before {
    -ms-flex-preferred-size: 1rem;
        flex-basis: 1rem;
  }

  .create-invoices-checkbox__label:before {
    width: 1rem;
  }

  .create-invoices-checkbox__label:before {
    height: 1rem;
  }

  .create-invoices-checkbox__label::after {
    -ms-flex-preferred-size: 1rem;
        flex-basis: 1rem;
  }

  .create-invoices-checkbox__label::after {
    width: 1rem;
  }

  .create-invoices-checkbox__label::after {
    height: 1rem;
  }

  .create-invoices-checkbox__text {
    font-size: 0.6875rem;
  }

  .create-invoices-checkbox__text::after {
    -ms-flex-preferred-size: 0.8125rem;
        flex-basis: 0.8125rem;
  }

  .create-invoices-checkbox__text::after {
    width: 0.8125rem;
  }

  .create-invoices-checkbox__text::after {
    height: 0.8125rem;
  }

  .payments-list__title {
    margin-bottom: 1rem;
  }

  .payments-list__title {
    font-size: 0.8125rem;
  }

  .payments-list__menu {
    -webkit-column-gap: 0.25rem;
       -moz-column-gap: 0.25rem;
            column-gap: 0.25rem;
  }

  .actions-payments-list__export {
    min-height: 2.5rem;
  }

  .actions-payments-list__settings {
    min-height: 2.5rem;
  }

  .payments-list__caption {
    font-size: 0.8125rem;
  }

  .payments-list__status-sc {
    padding: 0.25rem;
  }

  .payments-list__status-sc {
    font-size: 0.6875rem;
  }

  .payments-list__status-unsc {
    padding: 0.25rem;
  }

  .payments-list__status-unsc {
    font-size: 0.6875rem;
  }

  .payments-list__status-vz {
    font-size: 0.6875rem;
  }

  .payments-list__status-load {
    font-size: 0.6875rem;
  }

  .payments-list__status-vz {
    padding: 0.25rem;
  }

  .search-payment-list__inputs {
    gap: 0.0000000625rem;
  }

  .search-payment-list__send {
    margin-top: 0.9375rem;
  }

  .search-payment-list__send::before {
    min-width: 1rem;
  }

  .search-payment-list__send::before {
    height: 1rem;
  }

  .search-payment-list .select__value {
    font-size: 0.6875rem;
  }

  .search-payment-list .select__value {
    height: 2.8125rem;
  }

  .search-payment-list .select__option {
    font-size: 0.6875rem;
  }
}

/* new code ======================================================================================================================================================== */

/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/



.header__profil {
}
.profil-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 17px;
     -moz-column-gap: 17px;
          column-gap: 17px;
}
.profil-header__langs {
}
.langs-header {
  position: relative;
}
.langs-header__selected {
  padding: 15px 11px;
  border-radius: 5px;
  background: #F0F6F2;
  color:#198D47;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: block;
}
.langs-header__list {
  min-width: 212px;
  padding-top: 16px;
  padding-bottom: 20px;
  position: absolute;
  top: 160%;
  right: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  z-index: 10;

  border-radius: 10px;
  background: #FFF;
  -webkit-box-shadow: 0px 0px 0px 0px rgba(34, 27, 62, 0.10), 0px 6px 14px 0px rgba(34, 27, 62, 0.10), 0px 26px 26px 0px rgba(34, 27, 62, 0.09), 0px 57px 34px 0px rgba(34, 27, 62, 0.05), 0px 102px 41px 0px rgba(34, 27, 62, 0.01), 0px 160px 45px 0px rgba(34, 27, 62, 0.00);
          box-shadow: 0px 0px 0px 0px rgba(34, 27, 62, 0.10), 0px 6px 14px 0px rgba(34, 27, 62, 0.10), 0px 26px 26px 0px rgba(34, 27, 62, 0.09), 0px 57px 34px 0px rgba(34, 27, 62, 0.05), 0px 102px 41px 0px rgba(34, 27, 62, 0.01), 0px 160px 45px 0px rgba(34, 27, 62, 0.00);
}
.langs-header__list-close{
  background: url('../img/font-icons/close.svg') no-repeat;
  width: 20px;
  height: 20px;
  background-size: contain;
  position: absolute;
  top: 8px;
  right: 8px;
  display: none;
}
.langs-header__list span{
  color:  #536460;
  font-size: 14px;
  font-weight: 400;
  padding: 0 24px;
}
.langs-header__lang {
  padding: 15px 24px;
  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;
  color: #152521;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.langs-header__lang:hover{
  background-color: #F0F6F2;
}
.langs-header__lang + ._active{
  background-color: #F0F6F2;
}
.langs-header__lang::before{
  content:'';
  display: block;
  width: 24px;
  height: 24px;
  background-size: contain;
}
._eng::before {
  background: url('../img/lang/eng.png') no-repeat;
}
._uk::before {
  background: url('../img/lang/uk.png') no-repeat;
}
._ch::before {
  background: url('../img/lang/ch.png') no-repeat;
}
._sl::before {
  background: url('../img/lang/sl.png') no-repeat;
}
._pl::before {
  background: url('../img/lang/pl.png') no-repeat;
}
._ru::before {
  background: url('../img/lang/ru.png') no-repeat;
}
.profil-header__avatar {
  position: relative;
  z-index: 10;
}
.profil-header__avatar:hover .profil-header__dropdown{
  opacity: 1;
  visibility: visible;
}
.profil-header__img {
  position: relative;
  cursor: pointer;
}
.profil-header__avatar:hover .profil-header__img svg path{
  fill: #00A023;
}
.profil-header__img img{
  width: 36px;
  height: 36px;
  max-width: 100%;
  border-radius: 50%;
  overflow: hidden;
}
.profil-header__dropdown {
  min-width: 282px;
  position: absolute;
  top: 165%;
  right: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;

  padding: 16px 24px;
  border-radius: 10px;
  background: #FFF;
  -webkit-box-shadow: 0px 0px 0px 0px rgba(34, 27, 62, 0.10), 0px 6px 14px 0px rgba(34, 27, 62, 0.10), 0px 26px 26px 0px rgba(34, 27, 62, 0.09), 0px 57px 34px 0px rgba(34, 27, 62, 0.05), 0px 102px 41px 0px rgba(34, 27, 62, 0.01), 0px 160px 45px 0px rgba(34, 27, 62, 0.00);
          box-shadow: 0px 0px 0px 0px rgba(34, 27, 62, 0.10), 0px 6px 14px 0px rgba(34, 27, 62, 0.10), 0px 26px 26px 0px rgba(34, 27, 62, 0.09), 0px 57px 34px 0px rgba(34, 27, 62, 0.05), 0px 102px 41px 0px rgba(34, 27, 62, 0.01), 0px 160px 45px 0px rgba(34, 27, 62, 0.00);
}
.profil-header__dropdown a{
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-grid-columns: 24px 20px auto;
  grid-template-columns: 24px auto;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;

  color: #152521;
  font-size: 16px;
  font-weight: 600;
  padding: 15px 0px;
}
@media (min-width:768px){
  .langs-header:hover .langs-header__list{
    opacity: 1;
    visibility: visible;
  }
}
@media (max-width:767px){
  .langs-header__list-close{
    display: block;
  }
  .profil-header__dropdown{
    min-width: 212px;
    padding: 8px 16px;
    top: 130%;
  }
  .profil-header__dropdown a{
    font-size: 12px;
    -webkit-column-gap: 8px;
       -moz-column-gap: 8px;
            column-gap: 8px;
    padding: 10px 0;
  }
  .langs-header__list span{
    color: #152521;
    font-size: 13px;
    font-weight: 700;
    padding: 0 16px;
    margin-bottom: 8px;
    display: block;
  }
  .langs-header__list{
    position: fixed;
    width: 100%;
    max-width: 212px;
    top: 12%;
    left: 73%;
    -webkit-transform: translate(-50%, -80%);
        -ms-transform: translate(-50%, -80%);
            transform: translate(-50%, -80%);
    margin-top: 10px;
    margin-bottom: 10px;
    overflow-y: auto;
  }
  .langs-header__list._active{
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
.profil-header__dropdown a:hover{
  color: #00A023;
}
.profil-header__dropdown-settings::before {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  background-size: contain;
  background: url('../img/font-icons/settings-white-2.svg') no-repeat;
}
.profil-header__dropdown-exit::before {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  background-size: contain;
  background: url('../img/font-icons/exit.svg') no-repeat;
}



/*  ============================================================ */

.personal {
}
.personal__head{
  display: none;
  color: #152521;
  font-size: 13px;
  font-weight: 700;
  line-height: 16px;
  margin-bottom: 15px;
}
.personal__content {
}
.personal__block {
  border-radius: 5px;
  background: #FFF;
  padding: 20px;
}
.personal__title {
  margin-bottom: 24px;

  color: #152521;
  font-size: 24px;
  font-weight: 700;
}
.personal__row {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 24px;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  row-gap: 8px;
}
.personal__inp{
  width: 100%;
  max-width: 333px;
}
.personal__inp input {
  border-radius: 5px;
  border: 1px solid #AAC1BC;
  height: 50px;
  width: 100%;
  display: block;
  max-width: 333px;
  padding: 0 20px;

  color:  #004231;
  font-size: 14px;
  font-weight: 600;
  outline: none;
}
.personal__inp input::-webkit-input-placeholder{
  color:  #004231;
  font-size: 14px;
  font-weight: 600;
}
.personal__inp input::-moz-placeholder{
  color:  #004231;
  font-size: 14px;
  font-weight: 600;
}
.personal__inp input:-ms-input-placeholder{
  color:  #004231;
  font-size: 14px;
  font-weight: 600;
}
.personal__inp input::-ms-input-placeholder{
  color:  #004231;
  font-size: 14px;
  font-weight: 600;
}
.personal__inp input::placeholder{
  color:  #004231;
  font-size: 14px;
  font-weight: 600;
}
.input-personal {
}
.input-personal__label{
  margin-bottom: 10px;
  color: #152521;
  font-size: 14px;
  font-weight: 700;
  display: block;
}
.personal__save {
  padding: 10px 45px;
  min-height: 50px;
  color: #FFF;
  font-size: 16px;
  font-weight: 600;
}
.personal__column{
  margin-bottom: 24px;
  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: 22px;
}

.personal__nav{
  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-bottom: 24px;
}

.personal__nav-button{
  padding: 16px;
  color: #004231;
  font-size: 14px;
  font-weight: 700;
  border-radius: 3px;
  border: 1px solid #AAC1BC;
}
.personal__nav-button._tab-active{
  background:  #AAC1BC;
}



.personal__checkbox {
  position: relative;
}
.personal__checkbox:not(:last-child) {
    margin-bottom: 35px;
}
.personal__checkbox-input {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
}
.personal__checkbox-input:checked + .personal__checkbox-label:before {
  background: url("../img/font-icons/check-green-2.svg") left no-repeat;
  border: 1px solid rgba(170, 193, 188, 0);
  background-size: contain;
}
.personal__checkbox-label {
    cursor: pointer;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    position: relative;
    gap: 16px;
}

.personal__checkbox-label:before {
    content: "";
    -ms-flex-item-align: start;
        align-self: flex-start;
    border: 1px solid #a7a9ac;
    width: 24px;
    height: 24px;
    border-radius: 3px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 24px;
            flex: 0 0 24px;
}

.personal__checkbox-text {
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    color:#152521;
    font-size: 14px;
    font-weight: 700;
}
.personal__checkbox-text button{
  margin-left: 4px;
  -webkit-transform: translateY(4px);
      -ms-transform: translateY(4px);
          transform: translateY(4px);
}


@media (max-width:767px){
  .personal__title{
    display: none;
  }
  .personal__head{
    display: block;
  }
  .input-personal__label{
    font-size: 11px;
    margin-bottom: 4px;
    font-weight: 600;
  }
  .personal__nav{
    margin-bottom: 16px;
  }
  .personal__nav-button{
    padding: 10px 8px;
    font-size: 11px;
  }
  .personal__block {
    padding: 16px;
  }
  .personal__save{
    width: 100%;
    padding: 10px 15px;
  }
  .personal__row{
    max-width: none;
    margin-bottom: 16px;
  }
  .personal__inp{
    max-width: none;
  }
  .personal__inp input{
    height: 40px;
    max-width: none;
    padding: 0 15px;
    font-size: 11px;
  }
  .personal__inp input::-webkit-input-placeholder{
    font-size: 11px;
  }
  .personal__inp input::-moz-placeholder{
    font-size: 11px;
  }
  .personal__inp input:-ms-input-placeholder{
    font-size: 11px;
  }
  .personal__inp input::-ms-input-placeholder{
    font-size: 11px;
  }
  .personal__inp input::placeholder{
    font-size: 11px;
  }
  .personal__column{
    row-gap: 8px;
  }
  .personal__checkbox-label{
    gap: 6px;
  }
  .personal__checkbox:not(:last-child) {
    margin-bottom: 25px;
  }
  .personal__checkbox-label:before{
    width: 20px;
    height: 20px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20px;
            flex: 0 0 20px;
  }
  .personal__checkbox-text {
    font-size: 11px;
    -webkit-transform: translateY(-3px);
        -ms-transform: translateY(-3px);
            transform: translateY(-3px);
  }
}

.popup__content {
}
.authentication-popup {
  border-radius: 5px;
  background: #FFF;
  -webkit-box-shadow: 0px 0px 0px 0px rgba(34, 27, 62, 0.10), 0px 18px 39px 0px rgba(34, 27, 62, 0.10), 0px 72px 72px 0px rgba(34, 27, 62, 0.09), 0px 161px 97px 0px rgba(34, 27, 62, 0.05), 0px 286px 114px 0px rgba(34, 27, 62, 0.01), 0px 447px 125px 0px rgba(34, 27, 62, 0.00);
          box-shadow: 0px 0px 0px 0px rgba(34, 27, 62, 0.10), 0px 18px 39px 0px rgba(34, 27, 62, 0.10), 0px 72px 72px 0px rgba(34, 27, 62, 0.09), 0px 161px 97px 0px rgba(34, 27, 62, 0.05), 0px 286px 114px 0px rgba(34, 27, 62, 0.01), 0px 447px 125px 0px rgba(34, 27, 62, 0.00);
  padding: 20px 30px 24px 30px;
}
.authentication-popup__close{
  top: 10px;
  right: 10px;
}
.authentication__title {
  margin-bottom: 24px;
  color: #152521;
  font-size: 24px;
  font-weight: 700;
  line-height: 130%;
}
.authentication__subtitle {
  margin-bottom: 8px;
  color: #152521;
  font-size: 16px;
  font-weight: 700;
  line-height: 130%;
}
.pauthentication__text {
  margin-bottom: 20px;
  color: #536460;
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
}
.authentication__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -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: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
  row-gap: 8px;
}
.authentication__link {
  display: block;
}
.ios {
  background: url('../img/font-icons/app-ios.svg') center no-repeat;
  background-size: contain;
  width: 224px;
  height: 40px;
}
.android {
  background: url('../img/font-icons/app-android.svg') center no-repeat;
  background-size: contain;
  width: 224px;
  height: 40px;
}
/* ==================== */


.qr-popup {
  border-radius: 5px;
  background: #FFF;
  -webkit-box-shadow: 0px 0px 0px 0px rgba(34, 27, 62, 0.10), 0px 18px 39px 0px rgba(34, 27, 62, 0.10), 0px 72px 72px 0px rgba(34, 27, 62, 0.09), 0px 161px 97px 0px rgba(34, 27, 62, 0.05), 0px 286px 114px 0px rgba(34, 27, 62, 0.01), 0px 447px 125px 0px rgba(34, 27, 62, 0.00);
          box-shadow: 0px 0px 0px 0px rgba(34, 27, 62, 0.10), 0px 18px 39px 0px rgba(34, 27, 62, 0.10), 0px 72px 72px 0px rgba(34, 27, 62, 0.09), 0px 161px 97px 0px rgba(34, 27, 62, 0.05), 0px 286px 114px 0px rgba(34, 27, 62, 0.01), 0px 447px 125px 0px rgba(34, 27, 62, 0.00);
  padding: 20px 30px 30px 30px;
  max-width: 420px;
}
.qr__title {
  margin-bottom: 24px;

  color: #152521;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
}
.qr__code {
  margin-bottom: 24px;
  background: url('../img/font-icons/qr.svg') center no-repeat;
  background-size: 100%;
  width: 330px;
  height: 330px;
  margin-left: auto;
  margin-right: auto;
}
.qr__text {
  margin-bottom: 10px;
  color: #536460;
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
}
.qr-popup input{
  margin-bottom: 20px;
  display: block;
  border-radius: 5px;
  border: 1px solid #AAC1BC;
  height: 50px;
  padding: 0 20px;
  width: 100%;

  color:  #004231;
  font-size: 14px;
  font-weight: 600;
  outline: none;
}
.qr__button {
  width: 100%;
  height: 50px;
  color: #FFF;
  font-size: 16px;
  font-weight: 600;
  margin-top: 10px;
}




@media (max-width:475px){
  .authentication-popup {
    padding: 16px;
  }
  .authentication__title{
    font-size: 13px;
  }
  .authentication__subtitle{
    font-size: 12px;
  }
  .pauthentication__text{
    font-size: 12px;
  }
  .ios {
    background: url('../img/font-icons/app-ios-mobile.svg') center no-repeat;
    background-size: contain;
    width: 100%;
    height: 40px;
  }
  .android {
    background: url('../img/font-icons/app-android-mpbile.svg') center no-repeat;
    background-size: contain;
    width: 100%;
    height: 40px;
  }
  .qr__title{
    margin-bottom: 16px;
  }
  .qr__code{
    margin-bottom: 16px;
    width: 195px;
    height: 195px;
  }
  .qr__text{
    margin-bottom: 2px;
  }
  .qr-popup input{
    height: 40px;
    margin-top: 14px;
  }
  .qr-popup{
    padding: 16px;
  }
  .qr__button{
    margin-top: 0px;
  }
}.example {
    display: -ms-grid;
    display: grid;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    background: -webkit-gradient(linear, left top, left bottom, from(white), to(black));
    background: -o-linear-gradient(top, white, black);
    background: linear-gradient(to bottom, white, black);
}


/* new code ============================================================ */
/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

.invoices-history__desktop {
}
.invoices-history__title {
  color: #152521;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
}
.invoices-history__head {
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(170, 193, 188, 0.3);
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: calc((200/1500)*100%) 10px calc((150/1500)*100%) 10px auto 10px calc((360/1500)*100%) 10px calc((180/1500)*100%) 10px 100px;
  grid-template-columns: calc((200/1500)*100%) calc((150/1500)*100%) auto calc((360/1500)*100%) calc((180/1500)*100%) 100px;
  gap: 10px;
}
.invoices-history__label {
  color: #AAC1BC;
  font-size: 14px;
  font-weight: 600;
}
.invoices-history__body {
}
.invoices-history__row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: calc((200/1500)*100%) 10px calc((150/1500)*100%) 10px auto 10px calc((360/1500)*100%) 10px calc((180/1500)*100%) 10px 100px;
  grid-template-columns: calc((200/1500)*100%) calc((150/1500)*100%) auto calc((360/1500)*100%) calc((180/1500)*100%) 100px;
  gap: 10px;
  padding: 20px 0;
}
.invoices-history__row:not(:last-child){
  border-bottom: 1px solid rgba(170, 193, 188, 0.3);
}
.invoices-history__emails{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4px;
}
.invoices-history__emails li{
  border-radius: 4px;
  border: 1px solid #AAC1BC;
  padding: 8px;

  color: #152521;
  font-size: 14px;
  font-weight: 600;
  word-wrap: break-word;
}
.invoices-history__value {
  color: #152521;
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.invoices-history__value span{
  color: #00A023;
  font-size: 9px;
  font-weight: 600;
  line-height: 24px;
  display: block;
  margin-left: 5px;
  margin-top: -5px;
}
.invoices-history__url {
  display: inline-block;
  word-wrap: break-word;
  color: #00A023;
  font-size: 14px;
  font-weight: 400;
}
.invoices-history__url a{
  text-decoration: underline;
}
.invoices-history__url a:hover{
  text-decoration: none;
}
.invoices-history__status span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 4px;
     -moz-column-gap: 4px;
          column-gap: 4px;
  font-size: 14px;
  font-weight: 600;
  max-height: 28px;

  border-radius: 3px;
  padding: 7px;
}
.invoices-history__status.-green span{
  background: #F0F6F2;
  color: #198D47;
}
.invoices-history__status.-yellow span{
  background: #F2E9B6;
  color: #152521;
}
.invoices-history__status.-green span::before{
  content: '';
  display: block;
  background: url('../img/font-icons/check.svg') left no-repeat;
  min-width: 15px;
  height: 15px;
  background-size: contain;
}
.invoices-history__status.-yellow span::before{
  content: '';
  display: block;
  background: url('../img/font-icons/time.svg') left no-repeat;
  min-width: 22px;
  height: 22px;
  background-size: 100%;
}
.invoices-history__mobile {
  display: none;
}

.mobile-history {
}
.mobile-history__block {
  border-radius: 4px;
  background: #FFF;
  margin-bottom: 8px;
}
.mobile-history__head {
  padding: 12px 8px 0;
}
.mobile-history__row {
  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: 15px; 
     -moz-column-gap: 15px; 
          column-gap: 15px;
  border-bottom: 1px solid #E6EDEB;
  padding: 8px 0;
}

.mobile-history__row-head{
  border-bottom: none;
}

.mobile-history__row-sum{
  border-bottom: none;
  margin-bottom: -11px;
}

.mobile-history__row-sum._active{
  margin-bottom: 0;
  border-bottom: 1px solid #E6EDEB;
}

.mobile-history__date {
  color: #152521;
    font-size: 11px;
    font-weight: 600;
    display: block;
}
.mobile-history__status {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-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: 11px;
  font-weight: 600;
  max-height: 25px;
  max-width: 85px;

  border-radius: 3px;
  padding: 5px 7px;
}
.mobile-history__status.-green{
  background: #F0F6F2;
  color: #198D47;
}
.mobile-history__status.-yellow{
  background: #F2E9B6;
  color: #152521;
}
.mobile-history__status.-green::before{
  content: '';
  display: block;
  background: url('../img/font-icons/check.svg');
  min-width: 15px;
  height: 15px;
  background-size: contain;
}
.mobile-history__status.-yellow::before{
  content: '';
  display: block;
  background: url('../img/font-icons/time.svg');
  min-width: 15px;
  height: 15px;
  background-size: contain;
}
.mobile-history__body {
  padding: 8px;
}
.mobile-history__row-last{
  border: none;
}
.mobile-history__row-emails{
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.mobile-history__label {
  color: #536460;
  font-size: 11px;
  font-weight: 600;
}
.mobile-history__item {
  color: #152521;
  text-align: right;
  font-size: 11px;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.mobile-history__item span{
  color: #00A023;
  font-size: 7px;
  font-weight: 600;
  display: block;
  margin-left: 5px;
}
.mobile-history__emails {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4px;
}
.mobile-history__emails li{
  color: #152521;
  text-align: right;
  font-size: 11px;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 2px;
     -moz-column-gap: 2px;
          column-gap: 2px;  
}
.mobile-history__emails li::before{
  content: '';
  display: block;
  background: url('../img/font-icons/user-email.svg') left no-repeat;
  min-width: 12px;
  height: 12px;

}

.mobile-history__link {
  color: #00A023;
  text-align: right;
  font-size: 11px;
  font-weight: 400;
  text-decoration: underline;
}
.mobile-history__more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 8px;

  color: #536460;
  font-size: 11px;
  font-weight: 400;
  border-top: 1px solid #E6EDEB;
}
.mobile-history__more::after{
  content: '';
  display: block;
  background: url('../img/font-icons/arrow-top.svg') right no-repeat;
  min-width: 12px;
  height: 12px;
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
}

.mobile-history__more._active::after {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.invoices-page__button{
  min-height: 45px;
  padding: 0px 16px;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  border-radius: 5px;

  color:#004231;
  font-size: 14px;
  font-weight: 700;
}
.invoices-page__button._list{
  background: #AAC1BC;
}
.invoices-page__button._add{
  background: #F2E9B6;
}


@media (max-width: 1360px){
  .invoices-history__head{
    -ms-grid-columns: 230px 230px auto;
    grid-template-columns: 230px 230px auto;
  }
  .invoices-history__row{
    -ms-grid-columns: 230px 230px auto;
    grid-template-columns: 230px 230px auto;
  }
}
@media (max-width: 1100px){
  .invoices-history__head{
    -ms-grid-columns: auto;
    grid-template-columns: auto;
  }
  .invoices-history__row{
    -ms-grid-columns: auto;
    grid-template-columns: auto;
  }
}
@media (max-width: 768px){
  .invoices-history__desktop{
    display: none;
  } 
  .invoices-history__mobile{
    display: block;
  }
  .invoices-history__title{
    font-size: 13px;
    margin-bottom: 16px;
  }
  .invoices-page__button{
    font-size: 11px !important;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    min-height: 35px;
  }
  .invoices-page__button._add{
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
}

















/* end ======================================================================================================================== */

@media (min-width: 20em) and (max-width: 97em) {
@supports (min-height: clamp( 2.1875rem , 1.9602272727rem  +  1.1363636364vw , 3.0625rem )) {
    .button-nav {
      min-height: clamp( 2.1875rem , 1.9602272727rem  +  1.1363636364vw , 3.0625rem );
    }
}

@supports not (min-height: clamp( 2.1875rem , 1.9602272727rem  +  1.1363636364vw , 3.0625rem )) {
    .button-nav {
      min-height: calc(2.1875rem + 0.875 * (100vw - 20rem) / 77);
    }
}

@supports (font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem )) {
    .button-nav {
      font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem );
    }
}

@supports not (font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem )) {
    .button-nav {
      font-size: calc(0.6875rem + 0.1875 * (100vw - 20rem) / 77);
    }
}

@supports (padding-left: clamp( 0.5rem , 0.3701298701rem  +  0.6493506494vw , 1rem )) {
    .button-nav {
      padding-left: clamp( 0.5rem , 0.3701298701rem  +  0.6493506494vw , 1rem );
    }
}

@supports not (padding-left: clamp( 0.5rem , 0.3701298701rem  +  0.6493506494vw , 1rem )) {
    .button-nav {
      padding-left: calc(0.5rem + 0.5 * (100vw - 20rem) / 77);
    }
}

@supports (padding-right: clamp( 0.5rem , 0.3701298701rem  +  0.6493506494vw , 1rem )) {
    .button-nav {
      padding-right: clamp( 0.5rem , 0.3701298701rem  +  0.6493506494vw , 1rem );
    }
}

@supports not (padding-right: clamp( 0.5rem , 0.3701298701rem  +  0.6493506494vw , 1rem )) {
    .button-nav {
      padding-right: calc(0.5rem + 0.5 * (100vw - 20rem) / 77);
    }
}

@supports (font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem )) {
    .input {
      font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem );
    }
}

@supports not (font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem )) {
    .input {
      font-size: calc(0.6875rem + 0.1875 * (100vw - 20rem) / 77);
    }
}

@supports (min-height: clamp( 2.5rem , 2.3376623377rem  +  0.8116883117vw , 3.125rem )) {
    .input {
      min-height: clamp( 2.5rem , 2.3376623377rem  +  0.8116883117vw , 3.125rem );
    }
}

@supports not (min-height: clamp( 2.5rem , 2.3376623377rem  +  0.8116883117vw , 3.125rem )) {
    .input {
      min-height: calc(2.5rem + 0.625 * (100vw - 20rem) / 77);
    }
}

@supports (font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem )) {
    .checkbox__text {
      font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem );
    }
}

@supports not (font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem )) {
    .checkbox__text {
      font-size: calc(0.6875rem + 0.1875 * (100vw - 20rem) / 77);
    }
}

@supports (top: clamp( 0.75rem , 0.6850649351rem  +  0.3246753247vw , 1rem )) {
    .popup__close {
      top: clamp( 0.75rem , 0.6850649351rem  +  0.3246753247vw , 1rem );
    }
}

@supports not (top: clamp( 0.75rem , 0.6850649351rem  +  0.3246753247vw , 1rem )) {
    .popup__close {
      top: calc(0.75rem + 0.25 * (100vw - 20rem) / 77);
    }
}

@supports (right: clamp( 0.75rem , 0.6850649351rem  +  0.3246753247vw , 1rem )) {
    .popup__close {
      right: clamp( 0.75rem , 0.6850649351rem  +  0.3246753247vw , 1rem );
    }
}

@supports not (right: clamp( 0.75rem , 0.6850649351rem  +  0.3246753247vw , 1rem )) {
    .popup__close {
      right: calc(0.75rem + 0.25 * (100vw - 20rem) / 77);
    }
}

@supports (width: clamp( 1rem , 0.8701298701rem  +  0.6493506494vw , 1.5rem )) {
    .popup__close img {
      width: clamp( 1rem , 0.8701298701rem  +  0.6493506494vw , 1.5rem );
    }
}

@supports not (width: clamp( 1rem , 0.8701298701rem  +  0.6493506494vw , 1.5rem )) {
    .popup__close img {
      width: calc(1rem + 0.5 * (100vw - 20rem) / 77);
    }
}

@supports (height: clamp( 1rem , 0.8701298701rem  +  0.6493506494vw , 1.5rem )) {
    .popup__close img {
      height: clamp( 1rem , 0.8701298701rem  +  0.6493506494vw , 1.5rem );
    }
}

@supports not (height: clamp( 1rem , 0.8701298701rem  +  0.6493506494vw , 1.5rem )) {
    .popup__close img {
      height: calc(1rem + 0.5 * (100vw - 20rem) / 77);
    }
}

@supports (padding-top: clamp( 1rem , 0.9350649351rem  +  0.3246753247vw , 1.25rem )) {
    .privileges-popup {
      padding-top: clamp( 1rem , 0.9350649351rem  +  0.3246753247vw , 1.25rem );
    }
}

@supports not (padding-top: clamp( 1rem , 0.9350649351rem  +  0.3246753247vw , 1.25rem )) {
    .privileges-popup {
      padding-top: calc(1rem + 0.25 * (100vw - 20rem) / 77);
    }
}

@supports (padding-bottom: clamp( 1rem , 0.7727272727rem  +  1.1363636364vw , 1.875rem )) {
    .privileges-popup {
      padding-bottom: clamp( 1rem , 0.7727272727rem  +  1.1363636364vw , 1.875rem );
    }
}

@supports not (padding-bottom: clamp( 1rem , 0.7727272727rem  +  1.1363636364vw , 1.875rem )) {
    .privileges-popup {
      padding-bottom: calc(1rem + 0.875 * (100vw - 20rem) / 77);
    }
}

@supports (padding-left: clamp( 1rem , 0.7727272727rem  +  1.1363636364vw , 1.875rem )) {
    .privileges-popup {
      padding-left: clamp( 1rem , 0.7727272727rem  +  1.1363636364vw , 1.875rem );
    }
}

@supports not (padding-left: clamp( 1rem , 0.7727272727rem  +  1.1363636364vw , 1.875rem )) {
    .privileges-popup {
      padding-left: calc(1rem + 0.875 * (100vw - 20rem) / 77);
    }
}

@supports (padding-right: clamp( 1rem , 0.7727272727rem  +  1.1363636364vw , 1.875rem )) {
    .privileges-popup {
      padding-right: clamp( 1rem , 0.7727272727rem  +  1.1363636364vw , 1.875rem );
    }
}

@supports not (padding-right: clamp( 1rem , 0.7727272727rem  +  1.1363636364vw , 1.875rem )) {
    .privileges-popup {
      padding-right: calc(1rem + 0.875 * (100vw - 20rem) / 77);
    }
}

@supports (margin-bottom: clamp( 1.5rem , 1.4025974026rem  +  0.487012987vw , 1.875rem )) {
    .privileges-popup__input {
      margin-bottom: clamp( 1.5rem , 1.4025974026rem  +  0.487012987vw , 1.875rem );
    }
}

@supports not (margin-bottom: clamp( 1.5rem , 1.4025974026rem  +  0.487012987vw , 1.875rem )) {
    .privileges-popup__input {
      margin-bottom: calc(1.5rem + 0.375 * (100vw - 20rem) / 77);
    }
}

@supports (font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem )) {
    .privileges-popup__label {
      font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem );
    }
}

@supports not (font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem )) {
    .privileges-popup__label {
      font-size: calc(0.6875rem + 0.1875 * (100vw - 20rem) / 77);
    }
}

@supports (font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem )) {
    .privileges-popup__checkbox-text {
      font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem );
    }
}

@supports not (font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem )) {
    .privileges-popup__checkbox-text {
      font-size: calc(0.6875rem + 0.1875 * (100vw - 20rem) / 77);
    }
}

@supports (margin-top: clamp( 1.5rem , 1.4350649351rem  +  0.3246753247vw , 1.75rem )) {
    .privileges-popup__items {
      margin-top: clamp( 1.5rem , 1.4350649351rem  +  0.3246753247vw , 1.75rem );
    }
}

@supports not (margin-top: clamp( 1.5rem , 1.4350649351rem  +  0.3246753247vw , 1.75rem )) {
    .privileges-popup__items {
      margin-top: calc(1.5rem + 0.25 * (100vw - 20rem) / 77);
    }
}

@supports (row-gap: clamp( 0.5rem , 0.4188311688rem  +  0.4058441558vw , 0.8125rem )) {
    .privileges-popup__items {
      row-gap: clamp( 0.5rem , 0.4188311688rem  +  0.4058441558vw , 0.8125rem );
    }
}

@supports not (row-gap: clamp( 0.5rem , 0.4188311688rem  +  0.4058441558vw , 0.8125rem )) {
    .privileges-popup__items {
      row-gap: calc(0.5rem + 0.3125 * (100vw - 20rem) / 77);
    }
}

@supports (margin-bottom: clamp( 1.5rem , 1.4025974026rem  +  0.487012987vw , 1.875rem )) {
    .privileges-popup__items {
      margin-bottom: clamp( 1.5rem , 1.4025974026rem  +  0.487012987vw , 1.875rem );
    }
}

@supports not (margin-bottom: clamp( 1.5rem , 1.4025974026rem  +  0.487012987vw , 1.875rem )) {
    .privileges-popup__items {
      margin-bottom: calc(1.5rem + 0.375 * (100vw - 20rem) / 77);
    }
}

@supports (margin-bottom: clamp( 1.25rem , 1.5649350649rem  +  -0.3246753247vw , 1.5rem )) {
    .popup-title {
      margin-bottom: clamp( 1.25rem , 1.5649350649rem  +  -0.3246753247vw , 1.5rem );
    }
}

@supports not (margin-bottom: clamp( 1.25rem , 1.5649350649rem  +  -0.3246753247vw , 1.5rem )) {
    .popup-title {
      margin-bottom: calc(1.5rem + -0.25 * (100vw - 20rem) / 77);
    }
}

@supports (font-size: clamp( 0.8125rem , 0.6339285714rem  +  0.8928571429vw , 1.5rem )) {
    .popup-title {
      font-size: clamp( 0.8125rem , 0.6339285714rem  +  0.8928571429vw , 1.5rem );
    }
}

@supports not (font-size: clamp( 0.8125rem , 0.6339285714rem  +  0.8928571429vw , 1.5rem )) {
    .popup-title {
      font-size: calc(0.8125rem + 0.6875 * (100vw - 20rem) / 77);
    }
}

@supports (font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem )) {
    .item-privileges__label {
      font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem );
    }
}

@supports not (font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem )) {
    .item-privileges__label {
      font-size: calc(0.6875rem + 0.1875 * (100vw - 20rem) / 77);
    }
}

@supports (padding-top: clamp( 1rem , 0.9350649351rem  +  0.3246753247vw , 1.25rem )) {
    .return-popup {
      padding-top: clamp( 1rem , 0.9350649351rem  +  0.3246753247vw , 1.25rem );
    }
}

@supports not (padding-top: clamp( 1rem , 0.9350649351rem  +  0.3246753247vw , 1.25rem )) {
    .return-popup {
      padding-top: calc(1rem + 0.25 * (100vw - 20rem) / 77);
    }
}

@supports (padding-bottom: clamp( 1rem , 0.7727272727rem  +  1.1363636364vw , 1.875rem )) {
    .return-popup {
      padding-bottom: clamp( 1rem , 0.7727272727rem  +  1.1363636364vw , 1.875rem );
    }
}

@supports not (padding-bottom: clamp( 1rem , 0.7727272727rem  +  1.1363636364vw , 1.875rem )) {
    .return-popup {
      padding-bottom: calc(1rem + 0.875 * (100vw - 20rem) / 77);
    }
}

@supports (padding-left: clamp( 1rem , 0.7727272727rem  +  1.1363636364vw , 1.875rem )) {
    .return-popup {
      padding-left: clamp( 1rem , 0.7727272727rem  +  1.1363636364vw , 1.875rem );
    }
}

@supports not (padding-left: clamp( 1rem , 0.7727272727rem  +  1.1363636364vw , 1.875rem )) {
    .return-popup {
      padding-left: calc(1rem + 0.875 * (100vw - 20rem) / 77);
    }
}

@supports (padding-right: clamp( 1rem , 0.7727272727rem  +  1.1363636364vw , 1.875rem )) {
    .return-popup {
      padding-right: clamp( 1rem , 0.7727272727rem  +  1.1363636364vw , 1.875rem );
    }
}

@supports not (padding-right: clamp( 1rem , 0.7727272727rem  +  1.1363636364vw , 1.875rem )) {
    .return-popup {
      padding-right: calc(1rem + 0.875 * (100vw - 20rem) / 77);
    }
}

@supports (margin-bottom: clamp( 1rem , 0.9350649351rem  +  0.3246753247vw , 1.25rem )) {
    .return-popup__input:not(:last-child) {
      margin-bottom: clamp( 1rem , 0.9350649351rem  +  0.3246753247vw , 1.25rem );
    }
}

@supports not (margin-bottom: clamp( 1rem , 0.9350649351rem  +  0.3246753247vw , 1.25rem )) {
    .return-popup__input:not(:last-child) {
      margin-bottom: calc(1rem + 0.25 * (100vw - 20rem) / 77);
    }
}

@supports (font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem )) {
    .return-popup .select__value {
      font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem );
    }
}

@supports not (font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem )) {
    .return-popup .select__value {
      font-size: calc(0.6875rem + 0.1875 * (100vw - 20rem) / 77);
    }
}

@supports (height: clamp( 2.8125rem , 2.7475649351rem  +  0.3246753247vw , 3.0625rem )) {
    .return-popup .select__value {
      height: clamp( 2.8125rem , 2.7475649351rem  +  0.3246753247vw , 3.0625rem );
    }
}

@supports not (height: clamp( 2.8125rem , 2.7475649351rem  +  0.3246753247vw , 3.0625rem )) {
    .return-popup .select__value {
      height: calc(2.8125rem + 0.25 * (100vw - 20rem) / 77);
    }
}

@supports (font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem )) {
    .return-popup .select__option {
      font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem );
    }
}

@supports not (font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem )) {
    .return-popup .select__option {
      font-size: calc(0.6875rem + 0.1875 * (100vw - 20rem) / 77);
    }
}

@supports (font-size: clamp( 0.8125rem , 0.6339285714rem  +  0.8928571429vw , 1.5rem )) {
    .section-title {
      font-size: clamp( 0.8125rem , 0.6339285714rem  +  0.8928571429vw , 1.5rem );
    }
}

@supports not (font-size: clamp( 0.8125rem , 0.6339285714rem  +  0.8928571429vw , 1.5rem )) {
    .section-title {
      font-size: calc(0.8125rem + 0.6875 * (100vw - 20rem) / 77);
    }
}

@supports (font-size: clamp( 0.8125rem , 0.6339285714rem  +  0.8928571429vw , 1.5rem )) {
    .header__title {
      font-size: clamp( 0.8125rem , 0.6339285714rem  +  0.8928571429vw , 1.5rem );
    }
}

@supports not (font-size: clamp( 0.8125rem , 0.6339285714rem  +  0.8928571429vw , 1.5rem )) {
    .header__title {
      font-size: calc(0.8125rem + 0.6875 * (100vw - 20rem) / 77);
    }
}

@supports (margin-bottom: clamp( 0.9375rem , 0.6939935065rem  +  1.2175324675vw , 1.875rem )) {
    .info-panel__filter {
      margin-bottom: clamp( 0.9375rem , 0.6939935065rem  +  1.2175324675vw , 1.875rem );
    }
}

@supports not (margin-bottom: clamp( 0.9375rem , 0.6939935065rem  +  1.2175324675vw , 1.875rem )) {
    .info-panel__filter {
      margin-bottom: calc(0.9375rem + 0.9375 * (100vw - 20rem) / 77);
    }
}

@supports (margin-bottom: clamp( 1.25rem , 1.5649350649rem  +  -0.3246753247vw , 1.5rem )) {
    .info-panel__result {
      margin-bottom: clamp( 1.25rem , 1.5649350649rem  +  -0.3246753247vw , 1.5rem );
    }
}

@supports not (margin-bottom: clamp( 1.25rem , 1.5649350649rem  +  -0.3246753247vw , 1.5rem )) {
    .info-panel__result {
      margin-bottom: calc(1.5rem + -0.25 * (100vw - 20rem) / 77);
    }
}

@supports (height: clamp( 2.5rem , 2.3538961039rem  +  0.7305194805vw , 3.0625rem )) {
    .filter-info-panel__select-calendar .select__value {
      height: clamp( 2.5rem , 2.3538961039rem  +  0.7305194805vw , 3.0625rem );
    }
}

@supports not (height: clamp( 2.5rem , 2.3538961039rem  +  0.7305194805vw , 3.0625rem )) {
    .filter-info-panel__select-calendar .select__value {
      height: calc(2.5rem + 0.5625 * (100vw - 20rem) / 77);
    }
}

@supports (padding-left: clamp( 0.5rem , 0.3701298701rem  +  0.6493506494vw , 1rem )) {
    .filter-info-panel__select-calendar .select__value {
      padding-left: clamp( 0.5rem , 0.3701298701rem  +  0.6493506494vw , 1rem );
    }
}

@supports not (padding-left: clamp( 0.5rem , 0.3701298701rem  +  0.6493506494vw , 1rem )) {
    .filter-info-panel__select-calendar .select__value {
      padding-left: calc(0.5rem + 0.5 * (100vw - 20rem) / 77);
    }
}

@supports (font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem )) {
    .filter-info-panel__select-calendar .select__value {
      font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem );
    }
}

@supports not (font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem )) {
    .filter-info-panel__select-calendar .select__value {
      font-size: calc(0.6875rem + 0.1875 * (100vw - 20rem) / 77);
    }
}

@supports (gap: clamp( 0.5rem , 0.4350649351rem  +  0.3246753247vw , 0.75rem )) {
    .filter-info-panel__select-calendar .select__value {
      gap: clamp( 0.5rem , 0.4350649351rem  +  0.3246753247vw , 0.75rem );
    }
}

@supports not (gap: clamp( 0.5rem , 0.4350649351rem  +  0.3246753247vw , 0.75rem )) {
    .filter-info-panel__select-calendar .select__value {
      gap: calc(0.5rem + 0.25 * (100vw - 20rem) / 77);
    }
}

@supports (font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem )) {
    .filter-info-panel__select-calendar .select__options {
      font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem );
    }
}

@supports not (font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem )) {
    .filter-info-panel__select-calendar .select__options {
      font-size: calc(0.6875rem + 0.1875 * (100vw - 20rem) / 77);
    }
}

@supports (height: clamp( 2.5rem , 2.3538961039rem  +  0.7305194805vw , 3.0625rem )) {
    .filter-info-panel .select__value {
      height: clamp( 2.5rem , 2.3538961039rem  +  0.7305194805vw , 3.0625rem );
    }
}

@supports not (height: clamp( 2.5rem , 2.3538961039rem  +  0.7305194805vw , 3.0625rem )) {
    .filter-info-panel .select__value {
      height: calc(2.5rem + 0.5625 * (100vw - 20rem) / 77);
    }
}

@supports (padding-left: clamp( 0.5rem , 0.3701298701rem  +  0.6493506494vw , 1rem )) {
    .filter-info-panel .select__value {
      padding-left: clamp( 0.5rem , 0.3701298701rem  +  0.6493506494vw , 1rem );
    }
}

@supports not (padding-left: clamp( 0.5rem , 0.3701298701rem  +  0.6493506494vw , 1rem )) {
    .filter-info-panel .select__value {
      padding-left: calc(0.5rem + 0.5 * (100vw - 20rem) / 77);
    }
}

@supports (font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem )) {
    .filter-info-panel .select__value {
      font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem );
    }
}

@supports not (font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem )) {
    .filter-info-panel .select__value {
      font-size: calc(0.6875rem + 0.1875 * (100vw - 20rem) / 77);
    }
}

@supports (font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem )) {
    .filter-info-panel .select__options {
      font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem );
    }
}

@supports not (font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem )) {
    .filter-info-panel .select__options {
      font-size: calc(0.6875rem + 0.1875 * (100vw - 20rem) / 77);
    }
}

@supports (padding: clamp( 0.5rem , 0.3051948052rem  +  0.974025974vw , 1.25rem )) {
    .result-info-panel {
      padding: clamp( 0.5rem , 0.3051948052rem  +  0.974025974vw , 1.25rem );
    }
}

@supports not (padding: clamp( 0.5rem , 0.3051948052rem  +  0.974025974vw , 1.25rem )) {
    .result-info-panel {
      padding: calc(0.5rem + 0.75 * (100vw - 20rem) / 77);
    }
}

@supports (gap: clamp( 0.25rem , -0.0097402597rem  +  1.2987012987vw , 1.25rem )) {
    .result-info-panel__grid {
      gap: clamp( 0.25rem , -0.0097402597rem  +  1.2987012987vw , 1.25rem );
    }
}

@supports not (gap: clamp( 0.25rem , -0.0097402597rem  +  1.2987012987vw , 1.25rem )) {
    .result-info-panel__grid {
      gap: calc(0.25rem + 1 * (100vw - 20rem) / 77);
    }
}

@supports (padding: clamp( 0.5625rem , 0.4488636364rem  +  0.5681818182vw , 1rem )) {
    .result-info-panel__item {
      padding: clamp( 0.5625rem , 0.4488636364rem  +  0.5681818182vw , 1rem );
    }
}

@supports not (padding: clamp( 0.5625rem , 0.4488636364rem  +  0.5681818182vw , 1rem )) {
    .result-info-panel__item {
      padding: calc(0.5625rem + 0.4375 * (100vw - 20rem) / 77);
    }
}

@supports (min-height: clamp( 1.25rem , 1.1201298701rem  +  0.6493506494vw , 1.75rem )) {
    .table-info-panel__status {
      min-height: clamp( 1.25rem , 1.1201298701rem  +  0.6493506494vw , 1.75rem );
    }
}

@supports not (min-height: clamp( 1.25rem , 1.1201298701rem  +  0.6493506494vw , 1.75rem )) {
    .table-info-panel__status {
      min-height: calc(1.25rem + 0.5 * (100vw - 20rem) / 77);
    }
}

@supports (width: clamp( 0.625rem , 0.5275974026rem  +  0.487012987vw , 1rem )) {
    .table-info-panel__status-sc::before {
      width: clamp( 0.625rem , 0.5275974026rem  +  0.487012987vw , 1rem );
    }
}

@supports not (width: clamp( 0.625rem , 0.5275974026rem  +  0.487012987vw , 1rem )) {
    .table-info-panel__status-sc::before {
      width: calc(0.625rem + 0.375 * (100vw - 20rem) / 77);
    }
}

@supports (height: clamp( 0.625rem , 0.5275974026rem  +  0.487012987vw , 1rem )) {
    .table-info-panel__status-sc::before {
      height: clamp( 0.625rem , 0.5275974026rem  +  0.487012987vw , 1rem );
    }
}

@supports not (height: clamp( 0.625rem , 0.5275974026rem  +  0.487012987vw , 1rem )) {
    .table-info-panel__status-sc::before {
      height: calc(0.625rem + 0.375 * (100vw - 20rem) / 77);
    }
}

@supports (margin-bottom: clamp( 1rem , 0.7727272727rem  +  1.1363636364vw , 1.875rem )) {
    .list-merchants__title {
      margin-bottom: clamp( 1rem , 0.7727272727rem  +  1.1363636364vw , 1.875rem );
    }
}

@supports not (margin-bottom: clamp( 1rem , 0.7727272727rem  +  1.1363636364vw , 1.875rem )) {
    .list-merchants__title {
      margin-bottom: calc(1rem + 0.875 * (100vw - 20rem) / 77);
    }
}

@supports (margin-bottom: clamp( 1rem , 0.7727272727rem  +  1.1363636364vw , 1.875rem )) {
    .list-merchants__nav {
      margin-bottom: clamp( 1rem , 0.7727272727rem  +  1.1363636364vw , 1.875rem );
    }
}

@supports not (margin-bottom: clamp( 1rem , 0.7727272727rem  +  1.1363636364vw , 1.875rem )) {
    .list-merchants__nav {
      margin-bottom: calc(1rem + 0.875 * (100vw - 20rem) / 77);
    }
}

@supports ((-moz-column-gap: clamp( 0.5rem , 0.4675324675rem  +  0.1623376623vw , 0.625rem )) or (column-gap: clamp( 0.5rem , 0.4675324675rem  +  0.1623376623vw , 0.625rem ))) {
    .list-merchants__nav {
      -webkit-column-gap: clamp( 0.5rem , 0.4675324675rem  +  0.1623376623vw , 0.625rem );
         -moz-column-gap: clamp( 0.5rem , 0.4675324675rem  +  0.1623376623vw , 0.625rem );
              column-gap: clamp( 0.5rem , 0.4675324675rem  +  0.1623376623vw , 0.625rem );
    }
}

@supports not ((-moz-column-gap: clamp( 0.5rem , 0.4675324675rem  +  0.1623376623vw , 0.625rem )) or (column-gap: clamp( 0.5rem , 0.4675324675rem  +  0.1623376623vw , 0.625rem ))) {
    .list-merchants__nav {
      -webkit-column-gap: calc(0.5rem + 0.125 * (100vw - 20rem) / 77);
         -moz-column-gap: calc(0.5rem + 0.125 * (100vw - 20rem) / 77);
              column-gap: calc(0.5rem + 0.125 * (100vw - 20rem) / 77);
    }
}

@supports (min-height: clamp( 2.1875rem , 1.9602272727rem  +  1.1363636364vw , 3.0625rem )) {
    .list-merchants__button {
      min-height: clamp( 2.1875rem , 1.9602272727rem  +  1.1363636364vw , 3.0625rem );
    }
}

@supports not (min-height: clamp( 2.1875rem , 1.9602272727rem  +  1.1363636364vw , 3.0625rem )) {
    .list-merchants__button {
      min-height: calc(2.1875rem + 0.875 * (100vw - 20rem) / 77);
    }
}

@supports (font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem )) {
    .list-merchants__button {
      font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem );
    }
}

@supports not (font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem )) {
    .list-merchants__button {
      font-size: calc(0.6875rem + 0.1875 * (100vw - 20rem) / 77);
    }
}

@supports (font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem )) {
    .search-merchants__input input {
      font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem );
    }
}

@supports not (font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem )) {
    .search-merchants__input input {
      font-size: calc(0.6875rem + 0.1875 * (100vw - 20rem) / 77);
    }
}

@supports (font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem )) {
    .search-merchants__input input::-webkit-input-placeholder {
      font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem );
    }
    .search-merchants__input input::-moz-placeholder {
      font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem );
    }
    .search-merchants__input input:-ms-input-placeholder {
      font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem );
    }
    .search-merchants__input input::-ms-input-placeholder {
      font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem );
    }
    .search-merchants__input input::placeholder {
      font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem );
    }
}

@supports not (font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem )) {
    .search-merchants__input input::-webkit-input-placeholder {
      font-size: calc(0.6875rem + 0.1875 * (100vw - 20rem) / 77);
    }
    .search-merchants__input input::-moz-placeholder {
      font-size: calc(0.6875rem + 0.1875 * (100vw - 20rem) / 77);
    }
    .search-merchants__input input:-ms-input-placeholder {
      font-size: calc(0.6875rem + 0.1875 * (100vw - 20rem) / 77);
    }
    .search-merchants__input input::-ms-input-placeholder {
      font-size: calc(0.6875rem + 0.1875 * (100vw - 20rem) / 77);
    }
    .search-merchants__input input::placeholder {
      font-size: calc(0.6875rem + 0.1875 * (100vw - 20rem) / 77);
    }
}

@supports (font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem )) {
    .search-merchants__label {
      font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem );
    }
}

@supports not (font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem )) {
    .search-merchants__label {
      font-size: calc(0.6875rem + 0.1875 * (100vw - 20rem) / 77);
    }
}

@supports (margin-bottom: clamp( 0.25rem , 0.1201298701rem  +  0.6493506494vw , 0.75rem )) {
    .search-merchants__label {
      margin-bottom: clamp( 0.25rem , 0.1201298701rem  +  0.6493506494vw , 0.75rem );
    }
}

@supports not (margin-bottom: clamp( 0.25rem , 0.1201298701rem  +  0.6493506494vw , 0.75rem )) {
    .search-merchants__label {
      margin-bottom: calc(0.25rem + 0.5 * (100vw - 20rem) / 77);
    }
}

@supports (font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem )) {
    .search-merchants .select__value {
      font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem );
    }
}

@supports not (font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem )) {
    .search-merchants .select__value {
      font-size: calc(0.6875rem + 0.1875 * (100vw - 20rem) / 77);
    }
}

@supports (height: clamp( 2.8125rem , 2.7475649351rem  +  0.3246753247vw , 3.0625rem )) {
    .search-merchants .select__value {
      height: clamp( 2.8125rem , 2.7475649351rem  +  0.3246753247vw , 3.0625rem );
    }
}

@supports not (height: clamp( 2.8125rem , 2.7475649351rem  +  0.3246753247vw , 3.0625rem )) {
    .search-merchants .select__value {
      height: calc(2.8125rem + 0.25 * (100vw - 20rem) / 77);
    }
}

@supports (font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem )) {
    .search-merchants .select__option {
      font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem );
    }
}

@supports not (font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem )) {
    .search-merchants .select__option {
      font-size: calc(0.6875rem + 0.1875 * (100vw - 20rem) / 77);
    }
}

@supports (padding-top: clamp( 0.5rem , 0.3051948052rem  +  0.974025974vw , 1.25rem )) {
    .create-merchants {
      padding-top: clamp( 0.5rem , 0.3051948052rem  +  0.974025974vw , 1.25rem );
    }
}

@supports not (padding-top: clamp( 0.5rem , 0.3051948052rem  +  0.974025974vw , 1.25rem )) {
    .create-merchants {
      padding-top: calc(0.5rem + 0.75 * (100vw - 20rem) / 77);
    }
}

@supports (padding-left: clamp( 0.5rem , 0.3051948052rem  +  0.974025974vw , 1.25rem )) {
    .create-merchants {
      padding-left: clamp( 0.5rem , 0.3051948052rem  +  0.974025974vw , 1.25rem );
    }
}

@supports not (padding-left: clamp( 0.5rem , 0.3051948052rem  +  0.974025974vw , 1.25rem )) {
    .create-merchants {
      padding-left: calc(0.5rem + 0.75 * (100vw - 20rem) / 77);
    }
}

@supports (padding-right: clamp( 0.5rem , 0.3051948052rem  +  0.974025974vw , 1.25rem )) {
    .create-merchants {
      padding-right: clamp( 0.5rem , 0.3051948052rem  +  0.974025974vw , 1.25rem );
    }
}

@supports not (padding-right: clamp( 0.5rem , 0.3051948052rem  +  0.974025974vw , 1.25rem )) {
    .create-merchants {
      padding-right: calc(0.5rem + 0.75 * (100vw - 20rem) / 77);
    }
}

@supports (padding-bottom: clamp( 1rem , 0.9350649351rem  +  0.3246753247vw , 1.25rem )) {
    .create-merchants {
      padding-bottom: clamp( 1rem , 0.9350649351rem  +  0.3246753247vw , 1.25rem );
    }
}

@supports not (padding-bottom: clamp( 1rem , 0.9350649351rem  +  0.3246753247vw , 1.25rem )) {
    .create-merchants {
      padding-bottom: calc(1rem + 0.25 * (100vw - 20rem) / 77);
    }
}

@supports (margin-bottom: clamp( 1rem , 0.9350649351rem  +  0.3246753247vw , 1.25rem )) {
    .create-merchants__head {
      margin-bottom: clamp( 1rem , 0.9350649351rem  +  0.3246753247vw , 1.25rem );
    }
}

@supports not (margin-bottom: clamp( 1rem , 0.9350649351rem  +  0.3246753247vw , 1.25rem )) {
    .create-merchants__head {
      margin-bottom: calc(1rem + 0.25 * (100vw - 20rem) / 77);
    }
}

@supports (font-size: clamp( 0.8125rem , 0.7313311688rem  +  0.4058441558vw , 1.125rem )) {
    .create-merchants__head {
      font-size: clamp( 0.8125rem , 0.7313311688rem  +  0.4058441558vw , 1.125rem );
    }
}

@supports not (font-size: clamp( 0.8125rem , 0.7313311688rem  +  0.4058441558vw , 1.125rem )) {
    .create-merchants__head {
      font-size: calc(0.8125rem + 0.3125 * (100vw - 20rem) / 77);
    }
}

@supports (font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem )) {
    .create-merchants .select__value {
      font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem );
    }
}

@supports not (font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem )) {
    .create-merchants .select__value {
      font-size: calc(0.6875rem + 0.1875 * (100vw - 20rem) / 77);
    }
}

@supports (height: clamp( 2.8125rem , 2.7475649351rem  +  0.3246753247vw , 3.0625rem )) {
    .create-merchants .select__value {
      height: clamp( 2.8125rem , 2.7475649351rem  +  0.3246753247vw , 3.0625rem );
    }
}

@supports not (height: clamp( 2.8125rem , 2.7475649351rem  +  0.3246753247vw , 3.0625rem )) {
    .create-merchants .select__value {
      height: calc(2.8125rem + 0.25 * (100vw - 20rem) / 77);
    }
}

@supports (font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem )) {
    .create-merchants .select__option {
      font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem );
    }
}

@supports not (font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem )) {
    .create-merchants .select__option {
      font-size: calc(0.6875rem + 0.1875 * (100vw - 20rem) / 77);
    }
}

@supports (padding: clamp( 0.5rem , 0.3051948052rem  +  0.974025974vw , 1.25rem )) {
    .merchants-information {
      padding: clamp( 0.5rem , 0.3051948052rem  +  0.974025974vw , 1.25rem );
    }
}

@supports not (padding: clamp( 0.5rem , 0.3051948052rem  +  0.974025974vw , 1.25rem )) {
    .merchants-information {
      padding: calc(0.5rem + 0.75 * (100vw - 20rem) / 77);
    }
}

@supports (margin-bottom: clamp( 1rem , 0.7727272727rem  +  1.1363636364vw , 1.875rem )) {
    .merchants-information__head {
      margin-bottom: clamp( 1rem , 0.7727272727rem  +  1.1363636364vw , 1.875rem );
    }
}

@supports not (margin-bottom: clamp( 1rem , 0.7727272727rem  +  1.1363636364vw , 1.875rem )) {
    .merchants-information__head {
      margin-bottom: calc(1rem + 0.875 * (100vw - 20rem) / 77);
    }
}

@supports (font-size: clamp( 0.8125rem , 0.6339285714rem  +  0.8928571429vw , 1.5rem )) {
    .merchants-information__head {
      font-size: clamp( 0.8125rem , 0.6339285714rem  +  0.8928571429vw , 1.5rem );
    }
}

@supports not (font-size: clamp( 0.8125rem , 0.6339285714rem  +  0.8928571429vw , 1.5rem )) {
    .merchants-information__head {
      font-size: calc(0.8125rem + 0.6875 * (100vw - 20rem) / 77);
    }
}

@supports (margin-bottom: clamp( 1.5rem , 1.4025974026rem  +  0.487012987vw , 1.875rem )) {
    .merchants-information__section:not(:last-child) {
      margin-bottom: clamp( 1.5rem , 1.4025974026rem  +  0.487012987vw , 1.875rem );
    }
}

@supports not (margin-bottom: clamp( 1.5rem , 1.4025974026rem  +  0.487012987vw , 1.875rem )) {
    .merchants-information__section:not(:last-child) {
      margin-bottom: calc(1.5rem + 0.375 * (100vw - 20rem) / 77);
    }
}

@supports (font-size: clamp( 0.8125rem , 0.7313311688rem  +  0.4058441558vw , 1.125rem )) {
    .merchants-information__caption {
      font-size: clamp( 0.8125rem , 0.7313311688rem  +  0.4058441558vw , 1.125rem );
    }
}

@supports not (font-size: clamp( 0.8125rem , 0.7313311688rem  +  0.4058441558vw , 1.125rem )) {
    .merchants-information__caption {
      font-size: calc(0.8125rem + 0.3125 * (100vw - 20rem) / 77);
    }
}

@supports (margin-bottom: clamp( 1rem , 0.9350649351rem  +  0.3246753247vw , 1.25rem )) {
    .merchants-information__caption {
      margin-bottom: clamp( 1rem , 0.9350649351rem  +  0.3246753247vw , 1.25rem );
    }
}

@supports not (margin-bottom: clamp( 1rem , 0.9350649351rem  +  0.3246753247vw , 1.25rem )) {
    .merchants-information__caption {
      margin-bottom: calc(1rem + 0.25 * (100vw - 20rem) / 77);
    }
}

@supports (gap: clamp( 0.5rem , 0.3051948052rem  +  0.974025974vw , 1.25rem )) {
    .merchants-information__form {
      gap: clamp( 0.5rem , 0.3051948052rem  +  0.974025974vw , 1.25rem );
    }
}

@supports not (gap: clamp( 0.5rem , 0.3051948052rem  +  0.974025974vw , 1.25rem )) {
    .merchants-information__form {
      gap: calc(0.5rem + 0.75 * (100vw - 20rem) / 77);
    }
}

@supports (margin-bottom: clamp( 1rem , 0.7727272727rem  +  1.1363636364vw , 1.875rem )) {
    .merchants-information__form {
      margin-bottom: clamp( 1rem , 0.7727272727rem  +  1.1363636364vw , 1.875rem );
    }
}

@supports not (margin-bottom: clamp( 1rem , 0.7727272727rem  +  1.1363636364vw , 1.875rem )) {
    .merchants-information__form {
      margin-bottom: calc(1rem + 0.875 * (100vw - 20rem) / 77);
    }
}

@supports (margin-bottom: clamp( 0.25rem , 0.1525974026rem  +  0.487012987vw , 0.625rem )) {
    .merchants-information__label {
      margin-bottom: clamp( 0.25rem , 0.1525974026rem  +  0.487012987vw , 0.625rem );
    }
}

@supports not (margin-bottom: clamp( 0.25rem , 0.1525974026rem  +  0.487012987vw , 0.625rem )) {
    .merchants-information__label {
      margin-bottom: calc(0.25rem + 0.375 * (100vw - 20rem) / 77);
    }
}

@supports (font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem )) {
    .merchants-information__label {
      font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem );
    }
}

@supports not (font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem )) {
    .merchants-information__label {
      font-size: calc(0.6875rem + 0.1875 * (100vw - 20rem) / 77);
    }
}

@supports (height: clamp( 2.8125rem , 2.7475649351rem  +  0.3246753247vw , 3.0625rem )) {
    .merchants-information__phone input {
      height: clamp( 2.8125rem , 2.7475649351rem  +  0.3246753247vw , 3.0625rem );
    }
}

@supports not (height: clamp( 2.8125rem , 2.7475649351rem  +  0.3246753247vw , 3.0625rem )) {
    .merchants-information__phone input {
      height: calc(2.8125rem + 0.25 * (100vw - 20rem) / 77);
    }
}

@supports (font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem )) {
    .merchants-information__phone input {
      font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem );
    }
}

@supports not (font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem )) {
    .merchants-information__phone input {
      font-size: calc(0.6875rem + 0.1875 * (100vw - 20rem) / 77);
    }
}

@supports (font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem )) {
    .merchants-information__phone input::-webkit-input-placeholder {
      font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem );
    }
    .merchants-information__phone input::-moz-placeholder {
      font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem );
    }
    .merchants-information__phone input:-ms-input-placeholder {
      font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem );
    }
    .merchants-information__phone input::-ms-input-placeholder {
      font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem );
    }
    .merchants-information__phone input::placeholder {
      font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem );
    }
}

@supports not (font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem )) {
    .merchants-information__phone input::-webkit-input-placeholder {
      font-size: calc(0.6875rem + 0.1875 * (100vw - 20rem) / 77);
    }
    .merchants-information__phone input::-moz-placeholder {
      font-size: calc(0.6875rem + 0.1875 * (100vw - 20rem) / 77);
    }
    .merchants-information__phone input:-ms-input-placeholder {
      font-size: calc(0.6875rem + 0.1875 * (100vw - 20rem) / 77);
    }
    .merchants-information__phone input::-ms-input-placeholder {
      font-size: calc(0.6875rem + 0.1875 * (100vw - 20rem) / 77);
    }
    .merchants-information__phone input::placeholder {
      font-size: calc(0.6875rem + 0.1875 * (100vw - 20rem) / 77);
    }
}

@supports (font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem )) {
    .merchants-information__country .select__value {
      font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem );
    }
}

@supports not (font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem )) {
    .merchants-information__country .select__value {
      font-size: calc(0.6875rem + 0.1875 * (100vw - 20rem) / 77);
    }
}

@supports (height: clamp( 2.8125rem , 2.7475649351rem  +  0.3246753247vw , 3.0625rem )) {
    .merchants-information__country .select__value {
      height: clamp( 2.8125rem , 2.7475649351rem  +  0.3246753247vw , 3.0625rem );
    }
}

@supports not (height: clamp( 2.8125rem , 2.7475649351rem  +  0.3246753247vw , 3.0625rem )) {
    .merchants-information__country .select__value {
      height: calc(2.8125rem + 0.25 * (100vw - 20rem) / 77);
    }
}

@supports (font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem )) {
    .merchants-information__country .select__option {
      font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem );
    }
}

@supports not (font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem )) {
    .merchants-information__country .select__option {
      font-size: calc(0.6875rem + 0.1875 * (100vw - 20rem) / 77);
    }
}

@supports (margin-bottom: clamp( 1.1875rem , 1.0089285714rem  +  0.8928571429vw , 1.875rem )) {
    .merchants-information__checkbox {
      margin-bottom: clamp( 1.1875rem , 1.0089285714rem  +  0.8928571429vw , 1.875rem );
    }
}

@supports not (margin-bottom: clamp( 1.1875rem , 1.0089285714rem  +  0.8928571429vw , 1.875rem )) {
    .merchants-information__checkbox {
      margin-bottom: calc(1.1875rem + 0.6875 * (100vw - 20rem) / 77);
    }
}

@supports (font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem )) {
    .merchants-information .select__value {
      font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem );
    }
}

@supports not (font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem )) {
    .merchants-information .select__value {
      font-size: calc(0.6875rem + 0.1875 * (100vw - 20rem) / 77);
    }
}

@supports (height: clamp( 2.5rem , 2.3538961039rem  +  0.7305194805vw , 3.0625rem )) {
    .merchants-information .select__value {
      height: clamp( 2.5rem , 2.3538961039rem  +  0.7305194805vw , 3.0625rem );
    }
}

@supports not (height: clamp( 2.5rem , 2.3538961039rem  +  0.7305194805vw , 3.0625rem )) {
    .merchants-information .select__value {
      height: calc(2.5rem + 0.5625 * (100vw - 20rem) / 77);
    }
}

@supports (font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem )) {
    .merchants-information .select__option {
      font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem );
    }
}

@supports not (font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem )) {
    .merchants-information .select__option {
      font-size: calc(0.6875rem + 0.1875 * (100vw - 20rem) / 77);
    }
}

@supports (margin-bottom: clamp( 1.5rem , 1.4025974026rem  +  0.487012987vw , 1.875rem )) {
    .settings-merchants__nav {
      margin-bottom: clamp( 1.5rem , 1.4025974026rem  +  0.487012987vw , 1.875rem );
    }
}

@supports not (margin-bottom: clamp( 1.5rem , 1.4025974026rem  +  0.487012987vw , 1.875rem )) {
    .settings-merchants__nav {
      margin-bottom: calc(1.5rem + 0.375 * (100vw - 20rem) / 77);
    }
}

@supports (min-height: clamp( 2.1875rem , 1.9602272727rem  +  1.1363636364vw , 3.0625rem )) {
    .settings-merchants__button {
      min-height: clamp( 2.1875rem , 1.9602272727rem  +  1.1363636364vw , 3.0625rem );
    }
}

@supports not (min-height: clamp( 2.1875rem , 1.9602272727rem  +  1.1363636364vw , 3.0625rem )) {
    .settings-merchants__button {
      min-height: calc(2.1875rem + 0.875 * (100vw - 20rem) / 77);
    }
}

@supports (font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem )) {
    .settings-merchants__button {
      font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem );
    }
}

@supports not (font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem )) {
    .settings-merchants__button {
      font-size: calc(0.6875rem + 0.1875 * (100vw - 20rem) / 77);
    }
}

@supports (padding-left: clamp( 0.5rem , 0.3051948052rem  +  0.974025974vw , 1.25rem )) {
    .settings-merchants__form {
      padding-left: clamp( 0.5rem , 0.3051948052rem  +  0.974025974vw , 1.25rem );
    }
}

@supports not (padding-left: clamp( 0.5rem , 0.3051948052rem  +  0.974025974vw , 1.25rem )) {
    .settings-merchants__form {
      padding-left: calc(0.5rem + 0.75 * (100vw - 20rem) / 77);
    }
}

@supports (padding-right: clamp( 0.5rem , 0.3051948052rem  +  0.974025974vw , 1.25rem )) {
    .settings-merchants__form {
      padding-right: clamp( 0.5rem , 0.3051948052rem  +  0.974025974vw , 1.25rem );
    }
}

@supports not (padding-right: clamp( 0.5rem , 0.3051948052rem  +  0.974025974vw , 1.25rem )) {
    .settings-merchants__form {
      padding-right: calc(0.5rem + 0.75 * (100vw - 20rem) / 77);
    }
}

@supports (padding-top: clamp( 0.5rem , 0.1428571429rem  +  1.7857142857vw , 1.875rem )) {
    .settings-merchants__form {
      padding-top: clamp( 0.5rem , 0.1428571429rem  +  1.7857142857vw , 1.875rem );
    }
}

@supports not (padding-top: clamp( 0.5rem , 0.1428571429rem  +  1.7857142857vw , 1.875rem )) {
    .settings-merchants__form {
      padding-top: calc(0.5rem + 1.375 * (100vw - 20rem) / 77);
    }
}

@supports (padding-bottom: clamp( 0.5rem , 0.1428571429rem  +  1.7857142857vw , 1.875rem )) {
    .settings-merchants__form {
      padding-bottom: clamp( 0.5rem , 0.1428571429rem  +  1.7857142857vw , 1.875rem );
    }
}

@supports not (padding-bottom: clamp( 0.5rem , 0.1428571429rem  +  1.7857142857vw , 1.875rem )) {
    .settings-merchants__form {
      padding-bottom: calc(0.5rem + 1.375 * (100vw - 20rem) / 77);
    }
}

@supports (gap: clamp( 0.5rem , 0.3051948052rem  +  0.974025974vw , 1.25rem )) {
    .form-settings-merchants__wrapper {
      gap: clamp( 0.5rem , 0.3051948052rem  +  0.974025974vw , 1.25rem );
    }
}

@supports not (gap: clamp( 0.5rem , 0.3051948052rem  +  0.974025974vw , 1.25rem )) {
    .form-settings-merchants__wrapper {
      gap: calc(0.5rem + 0.75 * (100vw - 20rem) / 77);
    }
}

@supports (min-height: clamp( 2.625rem , 2.4951298701rem  +  0.6493506494vw , 3.125rem )) {
    .form-settings-merchants__logo {
      min-height: clamp( 2.625rem , 2.4951298701rem  +  0.6493506494vw , 3.125rem );
    }
}

@supports not (min-height: clamp( 2.625rem , 2.4951298701rem  +  0.6493506494vw , 3.125rem )) {
    .form-settings-merchants__logo {
      min-height: calc(2.625rem + 0.5 * (100vw - 20rem) / 77);
    }
}

@supports (width: clamp( 1rem , 0.8701298701rem  +  0.6493506494vw , 1.5rem )) {
    .form-settings-merchants__logo img {
      width: clamp( 1rem , 0.8701298701rem  +  0.6493506494vw , 1.5rem );
    }
}

@supports not (width: clamp( 1rem , 0.8701298701rem  +  0.6493506494vw , 1.5rem )) {
    .form-settings-merchants__logo img {
      width: calc(1rem + 0.5 * (100vw - 20rem) / 77);
    }
}

@supports (height: clamp( 1rem , 0.8701298701rem  +  0.6493506494vw , 1.5rem )) {
    .form-settings-merchants__logo img {
      height: clamp( 1rem , 0.8701298701rem  +  0.6493506494vw , 1.5rem );
    }
}

@supports not (height: clamp( 1rem , 0.8701298701rem  +  0.6493506494vw , 1.5rem )) {
    .form-settings-merchants__logo img {
      height: calc(1rem + 0.5 * (100vw - 20rem) / 77);
    }
}

@supports (font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem )) {
    .form-settings-merchants__logo span {
      font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem );
    }
}

@supports not (font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem )) {
    .form-settings-merchants__logo span {
      font-size: calc(0.6875rem + 0.1875 * (100vw - 20rem) / 77);
    }
}

@supports (min-height: clamp( 2.625rem , 2.4951298701rem  +  0.6493506494vw , 3.125rem )) {
    .form-settings-merchants__copy {
      min-height: clamp( 2.625rem , 2.4951298701rem  +  0.6493506494vw , 3.125rem );
    }
}

@supports not (min-height: clamp( 2.625rem , 2.4951298701rem  +  0.6493506494vw , 3.125rem )) {
    .form-settings-merchants__copy {
      min-height: calc(2.625rem + 0.5 * (100vw - 20rem) / 77);
    }
}

@supports (padding-left: clamp( 0.625rem , 0.5438311688rem  +  0.4058441558vw , 0.9375rem )) {
    .form-settings-merchants__copy {
      padding-left: clamp( 0.625rem , 0.5438311688rem  +  0.4058441558vw , 0.9375rem );
    }
}

@supports not (padding-left: clamp( 0.625rem , 0.5438311688rem  +  0.4058441558vw , 0.9375rem )) {
    .form-settings-merchants__copy {
      padding-left: calc(0.625rem + 0.3125 * (100vw - 20rem) / 77);
    }
}

@supports (padding-right: clamp( 0.625rem , 0.5438311688rem  +  0.4058441558vw , 0.9375rem )) {
    .form-settings-merchants__copy {
      padding-right: clamp( 0.625rem , 0.5438311688rem  +  0.4058441558vw , 0.9375rem );
    }
}

@supports not (padding-right: clamp( 0.625rem , 0.5438311688rem  +  0.4058441558vw , 0.9375rem )) {
    .form-settings-merchants__copy {
      padding-right: calc(0.625rem + 0.3125 * (100vw - 20rem) / 77);
    }
}

@supports (font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem )) {
    .form-settings-merchants__copy p {
      font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem );
    }
}

@supports not (font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem )) {
    .form-settings-merchants__copy p {
      font-size: calc(0.6875rem + 0.1875 * (100vw - 20rem) / 77);
    }
}

@supports (margin-bottom: clamp( 1rem , 0.7727272727rem  +  1.1363636364vw , 1.875rem )) {
    .privilege-settings__actions {
      margin-bottom: clamp( 1rem , 0.7727272727rem  +  1.1363636364vw , 1.875rem );
    }
}

@supports not (margin-bottom: clamp( 1rem , 0.7727272727rem  +  1.1363636364vw , 1.875rem )) {
    .privilege-settings__actions {
      margin-bottom: calc(1rem + 0.875 * (100vw - 20rem) / 77);
    }
}

@supports (padding-left: clamp( 0.5rem , 0.3701298701rem  +  0.6493506494vw , 1rem )) {
    .privilege-settings__actions input {
      padding-left: clamp( 0.5rem , 0.3701298701rem  +  0.6493506494vw , 1rem );
    }
}

@supports not (padding-left: clamp( 0.5rem , 0.3701298701rem  +  0.6493506494vw , 1rem )) {
    .privilege-settings__actions input {
      padding-left: calc(0.5rem + 0.5 * (100vw - 20rem) / 77);
    }
}

@supports (padding-right: clamp( 0.5rem , 0.3701298701rem  +  0.6493506494vw , 1rem )) {
    .privilege-settings__actions input {
      padding-right: clamp( 0.5rem , 0.3701298701rem  +  0.6493506494vw , 1rem );
    }
}

@supports not (padding-right: clamp( 0.5rem , 0.3701298701rem  +  0.6493506494vw , 1rem )) {
    .privilege-settings__actions input {
      padding-right: calc(0.5rem + 0.5 * (100vw - 20rem) / 77);
    }
}

@supports (font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem )) {
    .privilege-settings__actions input {
      font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem );
    }
}

@supports not (font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem )) {
    .privilege-settings__actions input {
      font-size: calc(0.6875rem + 0.1875 * (100vw - 20rem) / 77);
    }
}

@supports (min-height: clamp( 2.1875rem , 1.9602272727rem  +  1.1363636364vw , 3.0625rem )) {
    .privilege-settings__actions input {
      min-height: clamp( 2.1875rem , 1.9602272727rem  +  1.1363636364vw , 3.0625rem );
    }
}

@supports not (min-height: clamp( 2.1875rem , 1.9602272727rem  +  1.1363636364vw , 3.0625rem )) {
    .privilege-settings__actions input {
      min-height: calc(2.1875rem + 0.875 * (100vw - 20rem) / 77);
    }
}

@supports (font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem )) {
    .privilege-settings__actions input::-webkit-input-placeholder {
      font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem );
    }
    .privilege-settings__actions input::-moz-placeholder {
      font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem );
    }
    .privilege-settings__actions input:-ms-input-placeholder {
      font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem );
    }
    .privilege-settings__actions input::-ms-input-placeholder {
      font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem );
    }
    .privilege-settings__actions input::placeholder {
      font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem );
    }
}

@supports not (font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem )) {
    .privilege-settings__actions input::-webkit-input-placeholder {
      font-size: calc(0.6875rem + 0.1875 * (100vw - 20rem) / 77);
    }
    .privilege-settings__actions input::-moz-placeholder {
      font-size: calc(0.6875rem + 0.1875 * (100vw - 20rem) / 77);
    }
    .privilege-settings__actions input:-ms-input-placeholder {
      font-size: calc(0.6875rem + 0.1875 * (100vw - 20rem) / 77);
    }
    .privilege-settings__actions input::-ms-input-placeholder {
      font-size: calc(0.6875rem + 0.1875 * (100vw - 20rem) / 77);
    }
    .privilege-settings__actions input::placeholder {
      font-size: calc(0.6875rem + 0.1875 * (100vw - 20rem) / 77);
    }
}

@supports (min-height: clamp( 2.1875rem , 1.9602272727rem  +  1.1363636364vw , 3.0625rem )) {
    .privilege-settings__add {
      min-height: clamp( 2.1875rem , 1.9602272727rem  +  1.1363636364vw , 3.0625rem );
    }
}

@supports not (min-height: clamp( 2.1875rem , 1.9602272727rem  +  1.1363636364vw , 3.0625rem )) {
    .privilege-settings__add {
      min-height: calc(2.1875rem + 0.875 * (100vw - 20rem) / 77);
    }
}

@supports (font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem )) {
    .privilege-settings__add {
      font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem );
    }
}

@supports not (font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem )) {
    .privilege-settings__add {
      font-size: calc(0.6875rem + 0.1875 * (100vw - 20rem) / 77);
    }
}

@supports (padding-left: clamp( 0.5rem , 0.3701298701rem  +  0.6493506494vw , 1rem )) {
    .privilege-settings__user {
      padding-left: clamp( 0.5rem , 0.3701298701rem  +  0.6493506494vw , 1rem );
    }
}

@supports not (padding-left: clamp( 0.5rem , 0.3701298701rem  +  0.6493506494vw , 1rem )) {
    .privilege-settings__user {
      padding-left: calc(0.5rem + 0.5 * (100vw - 20rem) / 77);
    }
}

@supports (padding-right: clamp( 0.5rem , 0.3701298701rem  +  0.6493506494vw , 1rem )) {
    .privilege-settings__user {
      padding-right: clamp( 0.5rem , 0.3701298701rem  +  0.6493506494vw , 1rem );
    }
}

@supports not (padding-right: clamp( 0.5rem , 0.3701298701rem  +  0.6493506494vw , 1rem )) {
    .privilege-settings__user {
      padding-right: calc(0.5rem + 0.5 * (100vw - 20rem) / 77);
    }
}

@supports (padding-top: clamp( 0.4375rem , 0.2913961039rem  +  0.7305194805vw , 1rem )) {
    .privilege-settings__user {
      padding-top: clamp( 0.4375rem , 0.2913961039rem  +  0.7305194805vw , 1rem );
    }
}

@supports not (padding-top: clamp( 0.4375rem , 0.2913961039rem  +  0.7305194805vw , 1rem )) {
    .privilege-settings__user {
      padding-top: calc(0.4375rem + 0.5625 * (100vw - 20rem) / 77);
    }
}

@supports (padding-bottom: clamp( 0.4375rem , 0.2913961039rem  +  0.7305194805vw , 1rem )) {
    .privilege-settings__user {
      padding-bottom: clamp( 0.4375rem , 0.2913961039rem  +  0.7305194805vw , 1rem );
    }
}

@supports not (padding-bottom: clamp( 0.4375rem , 0.2913961039rem  +  0.7305194805vw , 1rem )) {
    .privilege-settings__user {
      padding-bottom: calc(0.4375rem + 0.5625 * (100vw - 20rem) / 77);
    }
}

@supports (font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem )) {
    .privilege-settings__mail {
      font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem );
    }
}

@supports not (font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem )) {
    .privilege-settings__mail {
      font-size: calc(0.6875rem + 0.1875 * (100vw - 20rem) / 77);
    }
}

@supports (padding-left: clamp( 0.1875rem , 0.1063311688rem  +  0.4058441558vw , 0.5rem )) {
    .privilege-settings__view {
      padding-left: clamp( 0.1875rem , 0.1063311688rem  +  0.4058441558vw , 0.5rem );
    }
}

@supports not (padding-left: clamp( 0.1875rem , 0.1063311688rem  +  0.4058441558vw , 0.5rem )) {
    .privilege-settings__view {
      padding-left: calc(0.1875rem + 0.3125 * (100vw - 20rem) / 77);
    }
}

@supports (padding-right: clamp( 0.1875rem , 0.1063311688rem  +  0.4058441558vw , 0.5rem )) {
    .privilege-settings__view {
      padding-right: clamp( 0.1875rem , 0.1063311688rem  +  0.4058441558vw , 0.5rem );
    }
}

@supports not (padding-right: clamp( 0.1875rem , 0.1063311688rem  +  0.4058441558vw , 0.5rem )) {
    .privilege-settings__view {
      padding-right: calc(0.1875rem + 0.3125 * (100vw - 20rem) / 77);
    }
}

@supports (padding-left: clamp( 0.1875rem , 0.1063311688rem  +  0.4058441558vw , 0.5rem )) {
  .privilege-settings__delete {
    padding-left: clamp( 0.1875rem , 0.1063311688rem  +  0.4058441558vw , 0.5rem );
  }
}

@supports not (padding-left: clamp( 0.1875rem , 0.1063311688rem  +  0.4058441558vw , 0.5rem )) {
  .privilege-settings__delete {
    padding-left: calc(0.1875rem + 0.3125 * (100vw - 20rem) / 77);
  }
}

@supports (padding-right: clamp( 0.1875rem , 0.1063311688rem  +  0.4058441558vw , 0.5rem )) {
  .privilege-settings__delete {
    padding-right: clamp( 0.1875rem , 0.1063311688rem  +  0.4058441558vw , 0.5rem );
  }
}

@supports not (padding-right: clamp( 0.1875rem , 0.1063311688rem  +  0.4058441558vw , 0.5rem )) {
  .privilege-settings__delete {
    padding-right: calc(0.1875rem + 0.3125 * (100vw - 20rem) / 77);
  }
}

@supports (margin-bottom: clamp( 1.1875rem , 1.0089285714rem  +  0.8928571429vw , 1.875rem )) {
    .payment__header {
      margin-bottom: clamp( 1.1875rem , 1.0089285714rem  +  0.8928571429vw , 1.875rem );
    }
}

@supports not (margin-bottom: clamp( 1.1875rem , 1.0089285714rem  +  0.8928571429vw , 1.875rem )) {
    .payment__header {
      margin-bottom: calc(1.1875rem + 0.6875 * (100vw - 20rem) / 77);
    }
}

@supports (font-size: clamp( 0.8125rem , 0.6339285714rem  +  0.8928571429vw , 1.5rem )) {
    .payment__title {
      font-size: clamp( 0.8125rem , 0.6339285714rem  +  0.8928571429vw , 1.5rem );
    }
}

@supports not (font-size: clamp( 0.8125rem , 0.6339285714rem  +  0.8928571429vw , 1.5rem )) {
    .payment__title {
      font-size: calc(0.8125rem + 0.6875 * (100vw - 20rem) / 77);
    }
}

@supports (margin-bottom: clamp( 0.875rem , 0.7775974026rem  +  0.487012987vw , 1.25rem )) {
    .payment__nav {
      margin-bottom: clamp( 0.875rem , 0.7775974026rem  +  0.487012987vw , 1.25rem );
    }
}

@supports not (margin-bottom: clamp( 0.875rem , 0.7775974026rem  +  0.487012987vw , 1.25rem )) {
    .payment__nav {
      margin-bottom: calc(0.875rem + 0.375 * (100vw - 20rem) / 77);
    }
}

@supports (width: clamp( 1rem , 0.8701298701rem  +  0.6493506494vw , 1.5rem )) {
    .payment__button img {
      width: clamp( 1rem , 0.8701298701rem  +  0.6493506494vw , 1.5rem );
    }
}

@supports not (width: clamp( 1rem , 0.8701298701rem  +  0.6493506494vw , 1.5rem )) {
    .payment__button img {
      width: calc(1rem + 0.5 * (100vw - 20rem) / 77);
    }
}

@supports (height: clamp( 1rem , 0.8701298701rem  +  0.6493506494vw , 1.5rem )) {
    .payment__button img {
      height: clamp( 1rem , 0.8701298701rem  +  0.6493506494vw , 1.5rem );
    }
}

@supports not (height: clamp( 1rem , 0.8701298701rem  +  0.6493506494vw , 1.5rem )) {
    .payment__button img {
      height: calc(1rem + 0.5 * (100vw - 20rem) / 77);
    }
}

@supports (padding-top: clamp( 0.75rem , 0.6201298701rem  +  0.6493506494vw , 1.25rem )) {
    .payment__body {
      padding-top: clamp( 0.75rem , 0.6201298701rem  +  0.6493506494vw , 1.25rem );
    }
}

@supports not (padding-top: clamp( 0.75rem , 0.6201298701rem  +  0.6493506494vw , 1.25rem )) {
    .payment__body {
      padding-top: calc(0.75rem + 0.5 * (100vw - 20rem) / 77);
    }
}

@supports (padding-bottom: clamp( 0.75rem , 0.6201298701rem  +  0.6493506494vw , 1.25rem )) {
    .payment__body {
      padding-bottom: clamp( 0.75rem , 0.6201298701rem  +  0.6493506494vw , 1.25rem );
    }
}

@supports not (padding-bottom: clamp( 0.75rem , 0.6201298701rem  +  0.6493506494vw , 1.25rem )) {
    .payment__body {
      padding-bottom: calc(0.75rem + 0.5 * (100vw - 20rem) / 77);
    }
}

@supports (padding-left: clamp( 0.5rem , 0.3051948052rem  +  0.974025974vw , 1.25rem )) {
    .payment__body {
      padding-left: clamp( 0.5rem , 0.3051948052rem  +  0.974025974vw , 1.25rem );
    }
}

@supports not (padding-left: clamp( 0.5rem , 0.3051948052rem  +  0.974025974vw , 1.25rem )) {
    .payment__body {
      padding-left: calc(0.5rem + 0.75 * (100vw - 20rem) / 77);
    }
}

@supports (padding-right: clamp( 0.5rem , 0.3051948052rem  +  0.974025974vw , 1.25rem )) {
    .payment__body {
      padding-right: clamp( 0.5rem , 0.3051948052rem  +  0.974025974vw , 1.25rem );
    }
}

@supports not (padding-right: clamp( 0.5rem , 0.3051948052rem  +  0.974025974vw , 1.25rem )) {
    .payment__body {
      padding-right: calc(0.5rem + 0.75 * (100vw - 20rem) / 77);
    }
}

@supports (margin-bottom: clamp( 0.5rem , 0.1428571429rem  +  1.7857142857vw , 1.875rem )) {
    .payment__head {
      margin-bottom: clamp( 0.5rem , 0.1428571429rem  +  1.7857142857vw , 1.875rem );
    }
}

@supports not (margin-bottom: clamp( 0.5rem , 0.1428571429rem  +  1.7857142857vw , 1.875rem )) {
    .payment__head {
      margin-bottom: calc(0.5rem + 1.375 * (100vw - 20rem) / 77);
    }
}

@supports (font-size: clamp( 0.6875rem , 0.476461039rem  +  1.0551948052vw , 1.5rem )) {
    .payment__head {
      font-size: clamp( 0.6875rem , 0.476461039rem  +  1.0551948052vw , 1.5rem );
    }
}

@supports not (font-size: clamp( 0.6875rem , 0.476461039rem  +  1.0551948052vw , 1.5rem )) {
    .payment__head {
      font-size: calc(0.6875rem + 0.8125 * (100vw - 20rem) / 77);
    }
}

@supports (margin-bottom: clamp( 0.5rem , 0.3051948052rem  +  0.974025974vw , 1.25rem )) {
    .payment__slogan {
      margin-bottom: clamp( 0.5rem , 0.3051948052rem  +  0.974025974vw , 1.25rem );
    }
}

@supports not (margin-bottom: clamp( 0.5rem , 0.3051948052rem  +  0.974025974vw , 1.25rem )) {
    .payment__slogan {
      margin-bottom: calc(0.5rem + 0.75 * (100vw - 20rem) / 77);
    }
}

@supports (font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem )) {
    .payment__slogan {
      font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem );
    }
}

@supports not (font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem )) {
    .payment__slogan {
      font-size: calc(0.6875rem + 0.1875 * (100vw - 20rem) / 77);
    }
}

@supports (padding-top: clamp( 0.75rem , 0.6525974026rem  +  0.487012987vw , 1.125rem )) {
    .payment__item {
      padding-top: clamp( 0.75rem , 0.6525974026rem  +  0.487012987vw , 1.125rem );
    }
}

@supports not (padding-top: clamp( 0.75rem , 0.6525974026rem  +  0.487012987vw , 1.125rem )) {
    .payment__item {
      padding-top: calc(0.75rem + 0.375 * (100vw - 20rem) / 77);
    }
}

@supports (padding-bottom: clamp( 0.75rem , 0.6525974026rem  +  0.487012987vw , 1.125rem )) {
    .payment__item {
      padding-bottom: clamp( 0.75rem , 0.6525974026rem  +  0.487012987vw , 1.125rem );
    }
}

@supports not (padding-bottom: clamp( 0.75rem , 0.6525974026rem  +  0.487012987vw , 1.125rem )) {
    .payment__item {
      padding-bottom: calc(0.75rem + 0.375 * (100vw - 20rem) / 77);
    }
}

@supports (font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem )) {
    .payment__label {
      font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem );
    }
}

@supports not (font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem )) {
    .payment__label {
      font-size: calc(0.6875rem + 0.1875 * (100vw - 20rem) / 77);
    }
}

@supports (font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem )) {
    .payment__value {
      font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem );
    }
}

@supports not (font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem )) {
    .payment__value {
      font-size: calc(0.6875rem + 0.1875 * (100vw - 20rem) / 77);
    }
}

@supports (margin-bottom: clamp( 1.5rem , 1.4025974026rem  +  0.487012987vw , 1.875rem )) {
    .return__nav {
      margin-bottom: clamp( 1.5rem , 1.4025974026rem  +  0.487012987vw , 1.875rem );
    }
}

@supports not (margin-bottom: clamp( 1.5rem , 1.4025974026rem  +  0.487012987vw , 1.875rem )) {
    .return__nav {
      margin-bottom: calc(1.5rem + 0.375 * (100vw - 20rem) / 77);
    }
}

@supports (margin-bottom: clamp( 1.5rem , 1.4025974026rem  +  0.487012987vw , 1.875rem )) {
    .return__caption {
      margin-bottom: clamp( 1.5rem , 1.4025974026rem  +  0.487012987vw , 1.875rem );
    }
}

@supports not (margin-bottom: clamp( 1.5rem , 1.4025974026rem  +  0.487012987vw , 1.875rem )) {
    .return__caption {
      margin-bottom: calc(1.5rem + 0.375 * (100vw - 20rem) / 77);
    }
}

@supports (font-size: clamp( 0.8125rem , 0.6339285714rem  +  0.8928571429vw , 1.5rem )) {
    .return__caption {
      font-size: clamp( 0.8125rem , 0.6339285714rem  +  0.8928571429vw , 1.5rem );
    }
}

@supports not (font-size: clamp( 0.8125rem , 0.6339285714rem  +  0.8928571429vw , 1.5rem )) {
    .return__caption {
      font-size: calc(0.8125rem + 0.6875 * (100vw - 20rem) / 77);
    }
}

@supports (min-height: clamp( 2.5rem , 2.3538961039rem  +  0.7305194805vw , 3.0625rem )) {
    .invoices__add {
      min-height: clamp( 2.5rem , 2.3538961039rem  +  0.7305194805vw , 3.0625rem );
    }
}

@supports not (min-height: clamp( 2.5rem , 2.3538961039rem  +  0.7305194805vw , 3.0625rem )) {
    .invoices__add {
      min-height: calc(2.5rem + 0.5625 * (100vw - 20rem) / 77);
    }
}

@supports (padding: clamp( 0.5rem , 0.3051948052rem  +  0.974025974vw , 1.25rem )) {
    .invoices__block {
      padding: clamp( 0.5rem , 0.3051948052rem  +  0.974025974vw , 1.25rem );
    }
}

@supports not (padding: clamp( 0.5rem , 0.3051948052rem  +  0.974025974vw , 1.25rem )) {
    .invoices__block {
      padding: calc(0.5rem + 0.75 * (100vw - 20rem) / 77);
    }
}

@supports (margin-bottom: clamp( 0.9375rem , 0.6939935065rem  +  1.2175324675vw , 1.875rem )) {
    .invoices__title {
      margin-bottom: clamp( 0.9375rem , 0.6939935065rem  +  1.2175324675vw , 1.875rem );
    }
}

@supports not (margin-bottom: clamp( 0.9375rem , 0.6939935065rem  +  1.2175324675vw , 1.875rem )) {
    .invoices__title {
      margin-bottom: calc(0.9375rem + 0.9375 * (100vw - 20rem) / 77);
    }
}

@supports (font-size: clamp( 0.8125rem , 0.6339285714rem  +  0.8928571429vw , 1.5rem )) {
    .invoices__title {
      font-size: clamp( 0.8125rem , 0.6339285714rem  +  0.8928571429vw , 1.5rem );
    }
}

@supports not (font-size: clamp( 0.8125rem , 0.6339285714rem  +  0.8928571429vw , 1.5rem )) {
    .invoices__title {
      font-size: calc(0.8125rem + 0.6875 * (100vw - 20rem) / 77);
    }
}

@supports (font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem )) {
    .invoices .select__value {
      font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem );
    }
}

@supports not (font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem )) {
    .invoices .select__value {
      font-size: calc(0.6875rem + 0.1875 * (100vw - 20rem) / 77);
    }
}

@supports (height: clamp( 2.5rem , 2.3538961039rem  +  0.7305194805vw , 3.0625rem )) {
    .invoices .select__value {
      height: clamp( 2.5rem , 2.3538961039rem  +  0.7305194805vw , 3.0625rem );
    }
}

@supports not (height: clamp( 2.5rem , 2.3538961039rem  +  0.7305194805vw , 3.0625rem )) {
    .invoices .select__value {
      height: calc(2.5rem + 0.5625 * (100vw - 20rem) / 77);
    }
}

@supports (font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem )) {
    .invoices .select__option {
      font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem );
    }
}

@supports not (font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem )) {
    .invoices .select__option {
      font-size: calc(0.6875rem + 0.1875 * (100vw - 20rem) / 77);
    }
}

@supports (gap: clamp( 0.5rem , 0.4675324675rem  +  0.1623376623vw , 0.625rem )) {
    .search-invoices__inputs {
      gap: clamp( 0.5rem , 0.4675324675rem  +  0.1623376623vw , 0.625rem );
    }
}

@supports not (gap: clamp( 0.5rem , 0.4675324675rem  +  0.1623376623vw , 0.625rem )) {
    .search-invoices__inputs {
      gap: calc(0.5rem + 0.125 * (100vw - 20rem) / 77);
    }
}

@supports (gap: clamp( 0.5rem , 0.4675324675rem  +  0.1623376623vw , 0.625rem )) {
    .search-invoices__column {
      gap: clamp( 0.5rem , 0.4675324675rem  +  0.1623376623vw , 0.625rem );
    }
}

@supports not (gap: clamp( 0.5rem , 0.4675324675rem  +  0.1623376623vw , 0.625rem )) {
    .search-invoices__column {
      gap: calc(0.5rem + 0.125 * (100vw - 20rem) / 77);
    }
}

@supports (margin-bottom: clamp( 0.25rem , 0.1525974026rem  +  0.487012987vw , 0.625rem )) {
    .search-invoices__label {
      margin-bottom: clamp( 0.25rem , 0.1525974026rem  +  0.487012987vw , 0.625rem );
    }
}

@supports not (margin-bottom: clamp( 0.25rem , 0.1525974026rem  +  0.487012987vw , 0.625rem )) {
    .search-invoices__label {
      margin-bottom: calc(0.25rem + 0.375 * (100vw - 20rem) / 77);
    }
}

@supports (font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem )) {
    .search-invoices .select__value {
      font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem );
    }
}

@supports not (font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem )) {
    .search-invoices .select__value {
      font-size: calc(0.6875rem + 0.1875 * (100vw - 20rem) / 77);
    }
}

@supports (height: clamp( 2.5rem , 2.3538961039rem  +  0.7305194805vw , 3.0625rem )) {
    .search-invoices .select__value {
      height: clamp( 2.5rem , 2.3538961039rem  +  0.7305194805vw , 3.0625rem );
    }
}

@supports not (height: clamp( 2.5rem , 2.3538961039rem  +  0.7305194805vw , 3.0625rem )) {
    .search-invoices .select__value {
      height: calc(2.5rem + 0.5625 * (100vw - 20rem) / 77);
    }
}

@supports (font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem )) {
    .search-invoices .select__option {
      font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem );
    }
}

@supports not (font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem )) {
    .search-invoices .select__option {
      font-size: calc(0.6875rem + 0.1875 * (100vw - 20rem) / 77);
    }
}

@supports (margin-bottom: clamp( 1rem , 0.7727272727rem  +  1.1363636364vw , 1.875rem )) {
    .create-invoices__title {
      margin-bottom: clamp( 1rem , 0.7727272727rem  +  1.1363636364vw , 1.875rem );
    }
}

@supports not (margin-bottom: clamp( 1rem , 0.7727272727rem  +  1.1363636364vw , 1.875rem )) {
    .create-invoices__title {
      margin-bottom: calc(1rem + 0.875 * (100vw - 20rem) / 77);
    }
}

@supports (font-size: clamp( 0.8125rem , 0.6339285714rem  +  0.8928571429vw , 1.5rem )) {
    .create-invoices__title {
      font-size: clamp( 0.8125rem , 0.6339285714rem  +  0.8928571429vw , 1.5rem );
    }
}

@supports not (font-size: clamp( 0.8125rem , 0.6339285714rem  +  0.8928571429vw , 1.5rem )) {
    .create-invoices__title {
      font-size: calc(0.8125rem + 0.6875 * (100vw - 20rem) / 77);
    }
}

@supports (gap: clamp( 0.5rem , 0.3051948052rem  +  0.974025974vw , 1.25rem )) {
    .create-invoices__grid {
      gap: clamp( 0.5rem , 0.3051948052rem  +  0.974025974vw , 1.25rem );
    }
}

@supports not (gap: clamp( 0.5rem , 0.3051948052rem  +  0.974025974vw , 1.25rem )) {
    .create-invoices__grid {
      gap: calc(0.5rem + 0.75 * (100vw - 20rem) / 77);
    }
}

@supports (margin-bottom: clamp( 0.5rem , 0.224025974rem  +  1.3798701299vw , 1.5625rem )) {
    .create-invoices__grid {
      margin-bottom: clamp( 0.5rem , 0.224025974rem  +  1.3798701299vw , 1.5625rem );
    }
}

@supports not (margin-bottom: clamp( 0.5rem , 0.224025974rem  +  1.3798701299vw , 1.5625rem )) {
    .create-invoices__grid {
      margin-bottom: calc(0.5rem + 1.0625 * (100vw - 20rem) / 77);
    }
}

@supports (gap: clamp( 0.5rem , 0.3051948052rem  +  0.974025974vw , 1.25rem )) {
    .create-invoices__date {
      gap: clamp( 0.5rem , 0.3051948052rem  +  0.974025974vw , 1.25rem );
    }
}

@supports not (gap: clamp( 0.5rem , 0.3051948052rem  +  0.974025974vw , 1.25rem )) {
    .create-invoices__date {
      gap: calc(0.5rem + 0.75 * (100vw - 20rem) / 77);
    }
}

@supports (font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem )) {
    .create-invoices__meta {
      font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem );
    }
}

@supports not (font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem )) {
    .create-invoices__meta {
      font-size: calc(0.6875rem + 0.1875 * (100vw - 20rem) / 77);
    }
}

@supports (padding: clamp( 0.5rem , 0.3701298701rem  +  0.6493506494vw , 1rem )) {
    .create-invoices__meta {
      padding: clamp( 0.5rem , 0.3701298701rem  +  0.6493506494vw , 1rem );
    }
}

@supports not (padding: clamp( 0.5rem , 0.3701298701rem  +  0.6493506494vw , 1rem )) {
    .create-invoices__meta {
      padding: calc(0.5rem + 0.5 * (100vw - 20rem) / 77);
    }
}

@supports (min-width: clamp( 0.875rem , 0.7451298701rem  +  0.6493506494vw , 1.375rem )) {
    .create-invoices__meta::before {
      min-width: clamp( 0.875rem , 0.7451298701rem  +  0.6493506494vw , 1.375rem );
    }
}

@supports not (min-width: clamp( 0.875rem , 0.7451298701rem  +  0.6493506494vw , 1.375rem )) {
    .create-invoices__meta::before {
      min-width: calc(0.875rem + 0.5 * (100vw - 20rem) / 77);
    }
}

@supports (height: clamp( 0.875rem , 0.7451298701rem  +  0.6493506494vw , 1.375rem )) {
    .create-invoices__meta::before {
      height: clamp( 0.875rem , 0.7451298701rem  +  0.6493506494vw , 1.375rem );
    }
}

@supports not (height: clamp( 0.875rem , 0.7451298701rem  +  0.6493506494vw , 1.375rem )) {
    .create-invoices__meta::before {
      height: calc(0.875rem + 0.5 * (100vw - 20rem) / 77);
    }
}

@supports (margin-bottom: clamp( 0.75rem , 0.6201298701rem  +  0.6493506494vw , 1.25rem )) {
    .create-invoices__line {
      margin-bottom: clamp( 0.75rem , 0.6201298701rem  +  0.6493506494vw , 1.25rem );
    }
}

@supports not (margin-bottom: clamp( 0.75rem , 0.6201298701rem  +  0.6493506494vw , 1.25rem )) {
    .create-invoices__line {
      margin-bottom: calc(0.75rem + 0.5 * (100vw - 20rem) / 77);
    }
}

@supports (flex-basis: clamp( 1rem , 0.8701298701rem  +  0.6493506494vw , 1.5rem )) {
    .create-invoices-checkbox__label:before {
      -ms-flex-preferred-size: clamp( 1rem , 0.8701298701rem  +  0.6493506494vw , 1.5rem );
          flex-basis: clamp( 1rem , 0.8701298701rem  +  0.6493506494vw , 1.5rem );
    }
}

@supports not (flex-basis: clamp( 1rem , 0.8701298701rem  +  0.6493506494vw , 1.5rem )) {
    .create-invoices-checkbox__label:before {
      -ms-flex-preferred-size: calc(1rem + 0.5 * (100vw - 20rem) / 77);
          flex-basis: calc(1rem + 0.5 * (100vw - 20rem) / 77);
    }
}

@supports (width: clamp( 1rem , 0.8701298701rem  +  0.6493506494vw , 1.5rem )) {
    .create-invoices-checkbox__label:before {
      width: clamp( 1rem , 0.8701298701rem  +  0.6493506494vw , 1.5rem );
    }
}

@supports not (width: clamp( 1rem , 0.8701298701rem  +  0.6493506494vw , 1.5rem )) {
    .create-invoices-checkbox__label:before {
      width: calc(1rem + 0.5 * (100vw - 20rem) / 77);
    }
}

@supports (height: clamp( 1rem , 0.8701298701rem  +  0.6493506494vw , 1.5rem )) {
    .create-invoices-checkbox__label:before {
      height: clamp( 1rem , 0.8701298701rem  +  0.6493506494vw , 1.5rem );
    }
}

@supports not (height: clamp( 1rem , 0.8701298701rem  +  0.6493506494vw , 1.5rem )) {
    .create-invoices-checkbox__label:before {
      height: calc(1rem + 0.5 * (100vw - 20rem) / 77);
    }
}

@supports (flex-basis: clamp( 1rem , 0.8701298701rem  +  0.6493506494vw , 1.5rem )) {
    .create-invoices-checkbox__label::after {
      -ms-flex-preferred-size: clamp( 1rem , 0.8701298701rem  +  0.6493506494vw , 1.5rem );
          flex-basis: clamp( 1rem , 0.8701298701rem  +  0.6493506494vw , 1.5rem );
    }
}

@supports not (flex-basis: clamp( 1rem , 0.8701298701rem  +  0.6493506494vw , 1.5rem )) {
    .create-invoices-checkbox__label::after {
      -ms-flex-preferred-size: calc(1rem + 0.5 * (100vw - 20rem) / 77);
          flex-basis: calc(1rem + 0.5 * (100vw - 20rem) / 77);
    }
}

@supports (width: clamp( 1rem , 0.8701298701rem  +  0.6493506494vw , 1.5rem )) {
    .create-invoices-checkbox__label::after {
      width: clamp( 1rem , 0.8701298701rem  +  0.6493506494vw , 1.5rem );
    }
}

@supports not (width: clamp( 1rem , 0.8701298701rem  +  0.6493506494vw , 1.5rem )) {
    .create-invoices-checkbox__label::after {
      width: calc(1rem + 0.5 * (100vw - 20rem) / 77);
    }
}

@supports (height: clamp( 1rem , 0.8701298701rem  +  0.6493506494vw , 1.5rem )) {
    .create-invoices-checkbox__label::after {
      height: clamp( 1rem , 0.8701298701rem  +  0.6493506494vw , 1.5rem );
    }
}

@supports not (height: clamp( 1rem , 0.8701298701rem  +  0.6493506494vw , 1.5rem )) {
    .create-invoices-checkbox__label::after {
      height: calc(1rem + 0.5 * (100vw - 20rem) / 77);
    }
}

@supports (font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem )) {
    .create-invoices-checkbox__text {
      font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem );
    }
}

@supports not (font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem )) {
    .create-invoices-checkbox__text {
      font-size: calc(0.6875rem + 0.1875 * (100vw - 20rem) / 77);
    }
}

@supports (flex-basis: clamp( 0.8125rem , 0.6663961039rem  +  0.7305194805vw , 1.375rem )) {
    .create-invoices-checkbox__text::after {
      -ms-flex-preferred-size: clamp( 0.8125rem , 0.6663961039rem  +  0.7305194805vw , 1.375rem );
          flex-basis: clamp( 0.8125rem , 0.6663961039rem  +  0.7305194805vw , 1.375rem );
    }
}

@supports not (flex-basis: clamp( 0.8125rem , 0.6663961039rem  +  0.7305194805vw , 1.375rem )) {
    .create-invoices-checkbox__text::after {
      -ms-flex-preferred-size: calc(0.8125rem + 0.5625 * (100vw - 20rem) / 77);
          flex-basis: calc(0.8125rem + 0.5625 * (100vw - 20rem) / 77);
    }
}

@supports (width: clamp( 0.8125rem , 0.6663961039rem  +  0.7305194805vw , 1.375rem )) {
    .create-invoices-checkbox__text::after {
      width: clamp( 0.8125rem , 0.6663961039rem  +  0.7305194805vw , 1.375rem );
    }
}

@supports not (width: clamp( 0.8125rem , 0.6663961039rem  +  0.7305194805vw , 1.375rem )) {
    .create-invoices-checkbox__text::after {
      width: calc(0.8125rem + 0.5625 * (100vw - 20rem) / 77);
    }
}

@supports (height: clamp( 0.8125rem , 0.6663961039rem  +  0.7305194805vw , 1.375rem )) {
    .create-invoices-checkbox__text::after {
      height: clamp( 0.8125rem , 0.6663961039rem  +  0.7305194805vw , 1.375rem );
    }
}

@supports not (height: clamp( 0.8125rem , 0.6663961039rem  +  0.7305194805vw , 1.375rem )) {
    .create-invoices-checkbox__text::after {
      height: calc(0.8125rem + 0.5625 * (100vw - 20rem) / 77);
    }
}

@supports (margin-bottom: clamp( 1rem , 0.7727272727rem  +  1.1363636364vw , 1.875rem )) {
    .payments-list__title {
      margin-bottom: clamp( 1rem , 0.7727272727rem  +  1.1363636364vw , 1.875rem );
    }
}

@supports not (margin-bottom: clamp( 1rem , 0.7727272727rem  +  1.1363636364vw , 1.875rem )) {
    .payments-list__title {
      margin-bottom: calc(1rem + 0.875 * (100vw - 20rem) / 77);
    }
}

@supports (font-size: clamp( 0.8125rem , 0.6339285714rem  +  0.8928571429vw , 1.5rem )) {
    .payments-list__title {
      font-size: clamp( 0.8125rem , 0.6339285714rem  +  0.8928571429vw , 1.5rem );
    }
}

@supports not (font-size: clamp( 0.8125rem , 0.6339285714rem  +  0.8928571429vw , 1.5rem )) {
    .payments-list__title {
      font-size: calc(0.8125rem + 0.6875 * (100vw - 20rem) / 77);
    }
}

@supports ((-moz-column-gap: clamp( 0.25rem , 0.1525974026rem  +  0.487012987vw , 0.625rem )) or (column-gap: clamp( 0.25rem , 0.1525974026rem  +  0.487012987vw , 0.625rem ))) {
    .payments-list__menu {
      -webkit-column-gap: clamp( 0.25rem , 0.1525974026rem  +  0.487012987vw , 0.625rem );
         -moz-column-gap: clamp( 0.25rem , 0.1525974026rem  +  0.487012987vw , 0.625rem );
              column-gap: clamp( 0.25rem , 0.1525974026rem  +  0.487012987vw , 0.625rem );
    }
}

@supports not ((-moz-column-gap: clamp( 0.25rem , 0.1525974026rem  +  0.487012987vw , 0.625rem )) or (column-gap: clamp( 0.25rem , 0.1525974026rem  +  0.487012987vw , 0.625rem ))) {
    .payments-list__menu {
      -webkit-column-gap: calc(0.25rem + 0.375 * (100vw - 20rem) / 77);
         -moz-column-gap: calc(0.25rem + 0.375 * (100vw - 20rem) / 77);
              column-gap: calc(0.25rem + 0.375 * (100vw - 20rem) / 77);
    }
}

@supports (min-height: clamp( 2.5rem , 2.3538961039rem  +  0.7305194805vw , 3.0625rem )) {
    .actions-payments-list__export {
      min-height: clamp( 2.5rem , 2.3538961039rem  +  0.7305194805vw , 3.0625rem );
    }
}

@supports not (min-height: clamp( 2.5rem , 2.3538961039rem  +  0.7305194805vw , 3.0625rem )) {
    .actions-payments-list__export {
      min-height: calc(2.5rem + 0.5625 * (100vw - 20rem) / 77);
    }
}

@supports (min-height: clamp( 2.5rem , 2.3538961039rem  +  0.7305194805vw , 3.0625rem )) {
    .actions-payments-list__settings {
      min-height: clamp( 2.5rem , 2.3538961039rem  +  0.7305194805vw , 3.0625rem );
    }
}

@supports not (min-height: clamp( 2.5rem , 2.3538961039rem  +  0.7305194805vw , 3.0625rem )) {
    .actions-payments-list__settings {
      min-height: calc(2.5rem + 0.5625 * (100vw - 20rem) / 77);
    }
}

@supports (font-size: clamp( 0.8125rem , 0.6339285714rem  +  0.8928571429vw , 1.5rem )) {
    .payments-list__caption {
      font-size: clamp( 0.8125rem , 0.6339285714rem  +  0.8928571429vw , 1.5rem );
    }
}

@supports not (font-size: clamp( 0.8125rem , 0.6339285714rem  +  0.8928571429vw , 1.5rem )) {
    .payments-list__caption {
      font-size: calc(0.8125rem + 0.6875 * (100vw - 20rem) / 77);
    }
}

@supports (padding: clamp( 0.25rem , 0.2175324675rem  +  0.1623376623vw , 0.375rem )) {
    .payments-list__status-sc {
      padding: clamp( 0.25rem , 0.2175324675rem  +  0.1623376623vw , 0.375rem );
    }
}

@supports not (padding: clamp( 0.25rem , 0.2175324675rem  +  0.1623376623vw , 0.375rem )) {
    .payments-list__status-sc {
      padding: calc(0.25rem + 0.125 * (100vw - 20rem) / 77);
    }
}

@supports (font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem )) {
    .payments-list__status-sc {
      font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem );
    }
}

@supports not (font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem )) {
    .payments-list__status-sc {
      font-size: calc(0.6875rem + 0.1875 * (100vw - 20rem) / 77);
    }
}

@supports (padding: clamp( 0.25rem , 0.2175324675rem  +  0.1623376623vw , 0.375rem )) {
  .payments-list__status-unsc {
    padding: clamp( 0.25rem , 0.2175324675rem  +  0.1623376623vw , 0.375rem );
  }
}

@supports not (padding: clamp( 0.25rem , 0.2175324675rem  +  0.1623376623vw , 0.375rem )) {
  .payments-list__status-unsc {
    padding: calc(0.25rem + 0.125 * (100vw - 20rem) / 77);
  }
}

@supports (font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem )) {
  .payments-list__status-unsc {
    font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem );
  }
}

@supports not (font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem )) {
  .payments-list__status-unsc {
    font-size: calc(0.6875rem + 0.1875 * (100vw - 20rem) / 77);
  }
}

@supports (font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem )) {
    .payments-list__status-vz {
      font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem );
    }
}

@supports not (font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem )) {
    .payments-list__status-vz {
      font-size: calc(0.6875rem + 0.1875 * (100vw - 20rem) / 77);
    }
}

@supports (padding: clamp( 0.25rem , 0.2175324675rem  +  0.1623376623vw , 0.375rem )) {
    .payments-list__status-vz {
      padding: clamp( 0.25rem , 0.2175324675rem  +  0.1623376623vw , 0.375rem );
    }
}

@supports not (padding: clamp( 0.25rem , 0.2175324675rem  +  0.1623376623vw , 0.375rem )) {
    .payments-list__status-vz {
      padding: calc(0.25rem + 0.125 * (100vw - 20rem) / 77);
    }
}

@supports (font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem )) {
  .payments-list__status-load {
    font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem );
  }
}

@supports not (font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem )) {
  .payments-list__status-load {
    font-size: calc(0.6875rem + 0.1875 * (100vw - 20rem) / 77);
  }
}

@supports (padding: clamp( 0.25rem , 0.2175324675rem  +  0.1623376623vw , 0.375rem )) {
  .payments-list__status-load {
    padding: clamp( 0.25rem , 0.2175324675rem  +  0.1623376623vw , 0.375rem );
  }
}

@supports not (padding: clamp( 0.25rem , 0.2175324675rem  +  0.1623376623vw , 0.375rem )) {
  .payments-list__status-load {
    padding: calc(0.25rem + 0.125 * (100vw - 20rem) / 77);
  }
}

@supports (gap: clamp( 0.0000000625rem , -0.1623375836rem  +  0.8116882305vw , 0.625rem )) {
    .search-payment-list__inputs {
      gap: clamp( 0.0000000625rem , -0.1623375836rem  +  0.8116882305vw , 0.625rem );
    }
}

@supports not (gap: clamp( 0.0000000625rem , -0.1623375836rem  +  0.8116882305vw , 0.625rem )) {
    .search-payment-list__inputs {
      gap: calc(0.0000000625rem + 0.6249999375 * (100vw - 20rem) / 77);
    }
}

@supports (margin-top: clamp( 0.9375rem , 0.7102272727rem  +  1.1363636364vw , 1.8125rem )) {
    .search-payment-list__send {
      margin-top: clamp( 0.9375rem , 0.7102272727rem  +  1.1363636364vw , 1.8125rem );
    }
}

@supports not (margin-top: clamp( 0.9375rem , 0.7102272727rem  +  1.1363636364vw , 1.8125rem )) {
    .search-payment-list__send {
      margin-top: calc(0.9375rem + 0.875 * (100vw - 20rem) / 77);
    }
}

@supports (min-width: clamp( 1rem , 0.8701298701rem  +  0.6493506494vw , 1.5rem )) {
    .search-payment-list__send::before {
      min-width: clamp( 1rem , 0.8701298701rem  +  0.6493506494vw , 1.5rem );
    }
}

@supports not (min-width: clamp( 1rem , 0.8701298701rem  +  0.6493506494vw , 1.5rem )) {
    .search-payment-list__send::before {
      min-width: calc(1rem + 0.5 * (100vw - 20rem) / 77);
    }
}

@supports (height: clamp( 1rem , 0.8701298701rem  +  0.6493506494vw , 1.5rem )) {
    .search-payment-list__send::before {
      height: clamp( 1rem , 0.8701298701rem  +  0.6493506494vw , 1.5rem );
    }
}

@supports not (height: clamp( 1rem , 0.8701298701rem  +  0.6493506494vw , 1.5rem )) {
    .search-payment-list__send::before {
      height: calc(1rem + 0.5 * (100vw - 20rem) / 77);
    }
}

@supports (font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem )) {
    .search-payment-list .select__value {
      font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem );
    }
}

@supports not (font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem )) {
    .search-payment-list .select__value {
      font-size: calc(0.6875rem + 0.1875 * (100vw - 20rem) / 77);
    }
}

@supports (height: clamp( 2.8125rem , 2.7475649351rem  +  0.3246753247vw , 3.0625rem )) {
    .search-payment-list .select__value {
      height: clamp( 2.8125rem , 2.7475649351rem  +  0.3246753247vw , 3.0625rem );
    }
}

@supports not (height: clamp( 2.8125rem , 2.7475649351rem  +  0.3246753247vw , 3.0625rem )) {
    .search-payment-list .select__value {
      height: calc(2.8125rem + 0.25 * (100vw - 20rem) / 77);
    }
}

@supports (font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem )) {
    .search-payment-list .select__option {
      font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem );
    }
}

@supports not (font-size: clamp( 0.6875rem , 0.6387987013rem  +  0.2435064935vw , 0.875rem )) {
    .search-payment-list .select__option {
      font-size: calc(0.6875rem + 0.1875 * (100vw - 20rem) / 77);
    }
}
}

@media (any-hover: hover) {
  .button-green:hover {
    background-color: #006816;
  }

  .return-popup .select__option:hover {
    background: #E6EDEB;
  }

  .breadcrumbs ul li a:hover {
    text-decoration: underline;
  }

  .menu-sidebar__list li a:hover {
    background: #003B2C;
    border-left: 5px solid #fffff;
  }
  .menu-sidebar__list._admin li a:hover {
    background: #101E1A;
    border-left: 5px solid #F2E9B6;
  }

  .filter-info-panel__select-calendar .select__option:hover {
    background: #E6EDEB;
  }

  .filter-info-panel .select__option:hover {
    background: #E6EDEB;
  }

  .list-merchants__list:hover {
    background: #8e9e9b;
  }

  .list-merchants__add:hover {
    background: #d7dedc;
  }

  .search-merchants .select__option:hover {
    background: #E6EDEB;
  }

  .results-merchants__settings:hover {
    background-color: #AAC1BC;
  }

  .create-merchants .select__option:hover {
    background: #E6EDEB;
  }

  .merchants-information__country .select__option:hover {
    background: #E6EDEB;
  }

  .merchants-information .select__option:hover {
    background: #E6EDEB;
  }

  .settings-merchants__button:hover {
    background-color: #AAC1BC;
  }

  .privilege-settings__add:hover {
    background-color: #d7cb86;
  }

  .payment__button:hover {
    background: #c6cbc9;
  }

  .invoices .select__option:hover {
    background: #E6EDEB;
  }

  .search-invoices .select__option:hover {
    background: #E6EDEB;
  }

  .create-invoices__date-row .select__option:hover {
    background: #d9d9d9;
  }

  .actions-payments-list__export:hover {
    background: #d7dedc;
  }

  .search-payment-list .select__option:hover {
    background: #E6EDEB;
  }
}

.mobile-list-payment__inner{
  margin-bottom: 10px;
}


._desctop{
  min-width: 1200px;
}

/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/


/* //////////////////////////////////////// */
.add-merchant {
  border-radius: 5px;
  background: #FFF;
  padding: 30px 20px;
}
.add-merchant__inputs {
  width: 100%;
  max-width: 1160px;
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}
.add-merchant__button {
  padding: 5px 16px;
  min-height: 49px;
  color: #FFF;
  font-size: 14px;
  font-weight: 700;
}
.add-merchant .select {
  min-width: 0;
  position: relative;
}
.add-merchant .select__body {
  position: relative;
}
.add-merchant .select__title {
  color: inherit;
  text-align: left;
  border: 1px solid #AAC1BC;
  cursor: pointer;
  width: 100%;
  border-radius: 5px;
}
.add-merchant .select__value {
  color: #536460;
  font-weight: 600;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 100%;
  padding-left: 10px;
  padding-right: 15px;
  gap: 0.625rem;
  color: #152521;
  font-size: 14px;
}
.add-merchant .select__value > * {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.add-merchant .select__value:after {
  content: "";
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 10px;
          flex: 0 0 10px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  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;
  background: url("../img/font-icons/menu-arrow.svg") right no-repeat;
  background-size: 100%;
}
._select-open .add-merchant .select__value:after {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.add-merchant .select__value._select-pseudo-label::before {
  content: attr(data-pseudo-label);
  opacity: 0.5;
}
.add-merchant .select__asset{
  width: 24px;
  height: 24px;
  border-radius: 50%;
  overflow: hidden;
  max-width: 100%;
}
.add-merchant .select__row{
  border-radius: 4px;
  background: #E6EDEB;
  padding: 4px;
  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;
}
.add-merchant .select__row::after{
  content: '';
  display: block;
  background: url('../img/font-icons/close-gray.svg')right no-repeat;
  width: 15px;
  height: 15px;
  background-size: cover;
}
.add-merchant .select__options .select__row{
  background-color: transparent;
}
.add-merchant .select__options .select__row::before{
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 5px;
  border: 1px solid #AAC1BC;
}
.select__option._select-selected .select__row::before{
  border: 1px solid #00A023;
  background: url('../img/font-icons/check-green.svg') left no-repeat;
  background-size: cover;
}
.add-merchant .select__options .select__row::after{
  display: none;
}
.add-merchant .select__content {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  white-space: nowrap;

  display: flex;
  align-items: center;
  column-gap: 10px;
}
.add-merchant .select__text {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  white-space: nowrap;
}
.add-merchant .select__input {
  width: 100%;
  background-color: transparent;
  height: 100%;
}
.add-merchant .select__options {
  color: #000;
  position: absolute;
  top: 110%;
  border-radius: 5px;
  width: 100%;
  min-width: 207px;
  left: 0;
  background-color: #fff;
  border-top: 0;
  border: 1px solid #AAC1BC;
  overflow: hidden;
}
.add-merchant .select__scroll {
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 12.5rem;
}
.add-merchant .select__option {
  width: 100%;
  text-align: left;
  cursor: pointer;
  padding: 6px 10px;
  line-height: 1.2142857143;
  font-weight: 600;
  color: #536460;
}
/* .add-merchant .select__option._select-selected {
  background-color: #eee;
} */
.add-merchant .select__row {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.add-merchant .select_show-top .select__options {
  top: auto;
  bottom: 130% !important;
  border-top: 1px solid #AAC1BC !important;
  border: 1px solid #d9d9d9;
  border-radius: 4px 4px 0 0;
  padding: 5px 0px 10px 0px;
}
/* ////////////////////////////////////////////// */

.applications-merchans {
  border-radius: 5px;
  background: #FFF;
  padding: 30px 42px 30px 20px;
  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: 150px;
     -moz-column-gap: 150px;
          column-gap: 150px;
}
.applications-merchans__inputs {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr;
  grid-template-columns: repeat(2,1fr);
  gap: 20px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.applications-merchans__actions {
  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-top: 20px;
}
.applications-merchans__button {
  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;
  min-height: 71px;
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 10px;
  padding-bottom: 10px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-align: center;
}
._yellow {
  background-color: #F2E9B6;
  color: #004231;
}
._green {
  background-color: #00A023;
}
._red {
  background-color: #EB5757;
}
._yellow:hover{
  background-color: #e3dbaa;
}
._green:hover {
  background-color: #01881e;
}
._red:hover {
  background-color: #bc3b3b;
}
/* ////////////////////////////////////////////// */
.requests-merchans {
}
.requests-merchans__header{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  row-gap: 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 29px;
}
.requests-merchans__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;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.requests-merchans__search input{
  background-color: transparent;
  max-width: 550px;
}
.requests-merchans__button {
  width: 48px;
  height: 48px;
  border-radius: 5px;
  background: #00A023;
  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;
}
.requests-merchans__button:hover{
  background: #00871d;
}
.requests-merchans__content {
  border-radius: 5px;
  background: #FFF;
  padding: 20px;
}
.requests-merchans__head {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-grid-columns: 94px 15px 110px 15px 120px 15px 100px 15px 250px 15px 240px;
  grid-template-columns: 94px 110px 120px 100px 250px 240px;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  row-gap: 10px;
  padding-bottom: 20px;
}
.requests-merchans__head-2{
  -ms-grid-columns: 94px calc((130/1460)*100%) 110px calc((130/1460)*100%) 120px calc((130/1460)*100%) 100px calc((130/1460)*100%) auto;
  grid-template-columns: 94px 110px 120px 100px auto;
  -webkit-column-gap: calc((130/1460)*100%);
     -moz-column-gap: calc((130/1460)*100%);
          column-gap: calc((130/1460)*100%);
  -webkit-box-pack: stretch;
      -ms-flex-pack: stretch;
          justify-content: stretch;
}
.requests-merchans__label {
  color: #AAC1BC;
  font-size: 14px;
  font-weight: 600;
}
.requests-merchans__label-last{
  text-align: right;
}
.requests-merchans__items {
  display: -ms-grid;
  display: grid;
  -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: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  -ms-grid-columns: 94px 15px 110px 15px 120px 15px 100px 15px 250px 15px 240px;
  grid-template-columns: 94px 110px 120px 100px 250px 240px;
  border-top: 1px solid rgba(170, 193, 188, 0.3);
}
.requests-merchans__items-2{
  -ms-grid-columns: 94px calc((130/1460)*100%) 110px calc((130/1460)*100%) 120px calc((130/1460)*100%) 100px calc((130/1460)*100%) auto;
  grid-template-columns: 94px 110px 120px 100px auto;
  -webkit-column-gap: calc((130/1460)*100%);
     -moz-column-gap: calc((130/1460)*100%);
          column-gap: calc((130/1460)*100%);
  -webkit-box-pack: stretch;
      -ms-flex-pack: stretch;
          justify-content: stretch;
}
.requests-merchans__items:not(:last-child){
  padding-bottom: 20px;
}
.requests-merchans__item {
  padding-top: 20px;
  color: #152521;
  font-size: 14px;
  font-weight: 600;
}
.requests-merchans__suma{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start !important;
      -ms-flex-align: start !important;
          align-items: start !important;
  -webkit-column-gap: 3px !important;
     -moz-column-gap: 3px !important;
          column-gap: 3px !important;
}
.requests-merchans__suma span{
  color: green;
  font-size: 8px;
}
.requests-merchans__copy{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.cop{
  position: absolute;
  right: 0;
  bottom: 110%;
  background-color: rgb(134, 134, 134);
  padding: 3px;
  color: #fff;
  border-radius: 3px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(0%);
      -ms-transform: translateY(0%);
          transform: translateY(0%);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.cop._show{
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(-10%);
      -ms-transform: translateY(-10%);
          transform: translateY(-10%);
}
.cop::after{
  content: '';
  position: absolute;
  bottom: -3px;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(45deg);
      -ms-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
  width: 6px;
  height: 6px;
  background-color: rgb(134, 134, 134);
}
.requests-merchans__item p{
  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;
}
.requests-merchans__item p button{
  position: relative;
}
.requests-merchans__item p:not(:last-child){
  margin-bottom: 10px;
}
.requests-merchans__item-last{
  text-align: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.requests-merchans__action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 5px;
  border: 1px solid #F6BDBD;
  background: #FFF3F3;
  min-height: 28px;
  padding-left: 6px;
  padding-right: 6px;
  color: #EB5757;
  font-size: 14px;
  font-weight: 600;
}
.requests-merchans__action:hover{
  background: #f5dcdc;
}
.requests-merchans__action::before{
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  background: url('../img/font-icons/ion_close-circle.svg') left no-repeat;
  background-size: cover;
}
._approve::before {
  width: 15px;
  height: 15px;
  background: url('../img/font-icons/check.svg') left no-repeat;
  background-size: cover;
}
._approve{
  border-radius: 5px;
  border: 1px solid #AFD2B7;
  background: #F0F6F2;
  color: green;
  -webkit-column-gap: 4px;
     -moz-column-gap: 4px;
          column-gap: 4px;
}
._approve:hover{
  background: #dee6e1;
}
.requests-merchans__btn{
  min-height: 29px;
  padding-left: 4px;
  padding-right: 4px;
  border-radius: 5px;
  border: 1px solid #AAC1BC;

  color: #536460;
  font-size: 11px;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 4px;
     -moz-column-gap: 4px;
          column-gap: 4px;
}
.requests-merchans__btn::before{
  content: '';
  display: block;
  width: 16px;
  height: 16px;
}
._statistic::before{
  background: url('../img/font-icons/stat.svg')left no-repeat;
  background-size: cover;
}
._edit::before{
  background: url('../img/font-icons/edit.svg')left no-repeat;
  background-size: cover;
}
._stop{
  -webkit-column-gap: 0px;
     -moz-column-gap: 0px;
          column-gap: 0px;
  border-radius: 5px;
  border: 1px solid #F6BDBD;
  background: #FFF3F3;
  color: #EB5757;
}
._stop::before{
  width: 24px;
  height: 24px;
  background: url('../img/font-icons/stop.svg')left no-repeat;
  background-size: cover;
}
/* ////////////////////////////////////////////// */

.edit-merchans {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -ms-grid-columns: auto 20px 318px;
  grid-template-columns: auto 318px;
  gap: 20px;
}
.edit-merchans__form {
  border-radius: 5px;
  background: #FFF;
  padding: 30px 20px 30px 20px;
}
.edit-merchans__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr;
  grid-template-columns: repeat(2,1fr);
  gap: 20px;
  margin-bottom: 30px;
}
.edit-merchans__save {
  min-height: 50px;
  padding-left: 38px;
  padding-right: 38px;
  font-weight: 700;
}
.edit-merchans__actions {
  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;
}
.edit-merchans__button {
  min-height: 50px;
  border-radius: 5px;
  font-weight: 600;
  padding: 5px 15px;
}
.edit-merchans__button-dock {
  background: #F2E9B6;
  color: #004231;
}
.edit-merchans__button-stop {
  color: #EB5757;
  border: 1px solid #F6BDBD;
  background: #FFF3F3;
}
.edit-merchans__button-block {
  background-color: #EB5757;
  color: #fff;
}
.edit-merchans__button-dock:hover{
  background: #e5dcac;
}
.edit-merchans__button-stop:hover{
  background: #f8dede;
}
.edit-merchans__button-block:hover{
  background: #cd4141;
}
.edit-merchans__button-stop::before{
  content: '';
  background: url('../img/font-icons/stop.svg') left no-repeat;
  min-width: 24px;
  height: 24px;
  background-size: cover;
}
.edit-merchans__button-block::before{
  content: '';
  background: url('../img/font-icons/block.svg') left no-repeat;
  min-width: 24px;
  height: 24px;
  background-size: cover;
}
.edit-merchans .select {
  min-width: 0;
  position: relative;
}
.edit-merchans .select__body {
  position: relative;
}
.edit-merchans .select__title {
  color: inherit;
  text-align: left;
  border: 1px solid #AAC1BC;
  cursor: pointer;
  width: 100%;
  border-radius: 5px;
}
.edit-merchans .select__value {
  color: #536460;
  font-weight: 600;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 100%;
  padding-left: 10px;
  padding-right: 15px;
  gap: 0.625rem;
  color: #152521;
  font-size: 14px;
}
.edit-merchans .select__value > * {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.edit-merchans .select__value:after {
  content: "";
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 10px;
          flex: 0 0 10px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  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;
  background: url("../img/font-icons/menu-arrow.svg") right no-repeat;
  background-size: 100%;
}
._select-open .edit-merchans .select__value:after {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.edit-merchans .select__value._select-pseudo-label::before {
  content: attr(data-pseudo-label);
  opacity: 0.5;
}
.edit-merchans .select__asset{
  width: 24px;
  height: 24px;
  border-radius: 50%;
  overflow: hidden;
  max-width: 100%;
}
.edit-merchans .select__row{
  border-radius: 4px;
  background: #E6EDEB;
  padding: 4px;
  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;
}
.edit-merchans .select__row::after{
  content: '';
  display: block;
  background: url('../img/font-icons/close-gray.svg')right no-repeat;
  width: 15px;
  height: 15px;
  background-size: cover;
}
.edit-merchans .select__options .select__row{
  background-color: transparent;
}
.edit-merchans .select__options .select__row::before{
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 5px;
  border: 1px solid #AAC1BC;
}
.select__option._select-selected .select__row::before{
  border: 1px solid #00A023;
  background: url('../img/font-icons/check-green.svg') left no-repeat;
  background-size: cover;
}
.edit-merchans .select__options .select__row::after{
  display: none;
}
.edit-merchans .select__content {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  white-space: nowrap;

  display: flex;
  align-items: center;
  column-gap: 10px;
}
.edit-merchans .select__text {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  white-space: nowrap;
}
.edit-merchans .select__input {
  width: 100%;
  background-color: transparent;
  height: 100%;
}
.edit-merchans .select__options {
  color: #000;
  position: absolute;
  top: 110%;
  border-radius: 5px;
  width: 100%;
  min-width: 207px;
  left: 0;
  background-color: #fff;
  border-top: 0;
  border: 1px solid #AAC1BC;
  overflow: hidden;
}
.edit-merchans .select__scroll {
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 12.5rem;
}
.edit-merchans .select__option {
  width: 100%;
  text-align: left;
  cursor: pointer;
  padding: 6px 10px;
  line-height: 1.2142857143;
  font-weight: 600;
  color: #536460;
}
/* .add-merchant .select__option._select-selected {
  background-color: #eee;
} */
.edit-merchans .select__row {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.edit-merchans .select_show-top .select__options {
  top: auto;
  bottom: 130% !important;
  border-top: 1px solid #AAC1BC !important;
  border: 1px solid #d9d9d9;
  border-radius: 4px 4px 0 0;
  padding: 5px 0px 10px 0px;
}
/* ////////////////////////////////////////////// */

.statistics-merchans {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-column-gap: 300px;
     -moz-column-gap: 300px;
          column-gap: 300px;
  row-gap: 15px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.statistics-merchans__body {
  width: 100%;
}

/* START ======================================================================================================================================================== */
.start {
}
.start__actions {
  border-radius: 5px;
  background: #FFF;
  padding: 15px 25px;
  margin-bottom: 24px;
}
.actions-start {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  row-gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.actions-start__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 160px;
          flex: 0 0 160px;
  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;
  row-gap: 10px;
  text-align: center;
  cursor: pointer;
}
.actions-start__line{
  background: url('../img/start/line.svg') center;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  height: 2px;
  max-width: 120px;
}
.actions-start__item span{
  color: #AAC1BC;
  font-size: 14px;
  font-weight: 600;
  line-height: 18px;
  max-width: 110px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.actions-start__item svg{
  width: 80px;
  height: 80px;
}
.actions-start__item svg path{
  stroke: #AAC1BC;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.actions-start__item:hover span{
  color: #536460;
}
.actions-start__item:hover svg path{
  stroke: #00A023;
}
/* ======================================================================================================================================================== */
.start__items {
}
.start__block {
  border-radius: 5px;
  background: #FFF;
  padding: 24px;
}
.start__block:not(:last-child){
  margin-bottom: 24px;
}
.block-start {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 80px 24px auto;
  grid-template-columns: 80px auto;
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
}
.block-start__icon svg {
  width: 80px;
  height: 80px;
}
.block-start__content {
  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: 140px;
     -moz-column-gap: 140px;
          column-gap: 140px;
}
.block-start__text span{
  color: #536460;
  font-size: 14px;
  font-weight: 600;
  line-height: 21px;
}
.block-start__title {
  margin-bottom: 8px;
  color: #152521;
  font-size: 24px;
  font-weight: 700;
}
.block-start__lead {
  color: #536460;
  font-size: 14px;
  font-weight: 600;
  line-height: 21px;
}
.block-start__button {
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  padding: 5px 16px;
  text-align: left;
  color: #FFF;
  font-size: 14px;
  font-weight: 700;
  width: 100%;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
}
.block-start__button svg{
  min-width: 24px;
}


/* MEDIA //////////////////////////////////////// */
@media(max-width: 1700px){
  .requests-merchans__head-2{
    -webkit-column-gap: 50px;
       -moz-column-gap: 50px;
            column-gap: 50px;
    /* grid-template-columns: repeat(2,1fr); */
  }
  .requests-merchans__items-2{
    -webkit-column-gap: 50px;
       -moz-column-gap: 50px;
            column-gap: 50px;
    /* grid-template-columns: repeat(2,1fr); */
  }
  .statistics-merchans{
    -webkit-column-gap: 50px;
       -moz-column-gap: 50px;
            column-gap: 50px;
  }
}
@media(max-width: 1600px){
  .applications-merchans{
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
  }
  .start__actions{
    padding: 15px 10px;
  }
  .actions-start{
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }
  .actions-start__item{
    -webkit-box-flex: 0;
        -ms-flex: 0 0 120px;
            flex: 0 0 120px;
  }
  .block-start__content{
    -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: 15px;
  }
}
@media(max-width: 1500px){
  .requests-merchans__head{
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3,1fr);
  }
  .requests-merchans__items{
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3,1fr);
  }
  .requests-merchans__item-last{
    text-align: left;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .requests-merchans__label-last{
    text-align: left;
  }
}
@media(max-width: 1450px){
  .edit-merchans {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .edit-merchans__actions{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 10px 1fr 10px 1fr;
    grid-template-columns: repeat(3,1fr);
    gap: 10px;
  }
  .statistics-merchans{
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
@media(max-width: 1360px){
  .applications-merchans__inputs{
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .applications-merchans{
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
  }
}
@media(max-width: 1200px){
  .actions-start__item{
    -webkit-box-flex: 0;
        -ms-flex: 0 1 25%;
            flex: 0 1 25%;
  }
  .actions-start{
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;  
    -webkit-box-pack: center;  
        -ms-flex-pack: center;  
            justify-content: center;
  }
  .actions-start__line-3{
    display: none;
  }
}
@media(max-width: 992px){
  .applications-merchans__inputs{
    width: 100%;
  }
  .applications-merchans{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 30px;
  }
  .applications-merchans__actions {
    margin-top: 0;
    width: 100%;
    display: -ms-grid;
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
}
@media(max-width: 850px){
  .block-start{
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    row-gap: 10px;
  }
}
@media(max-width: 600px){
  .actions-start__item{
    -webkit-box-flex: 0;
        -ms-flex: 0 1 33.333%;
            flex: 0 1 33.333%;
  }
  .actions-start__item svg{
    width: 50px;
    height: 50px;
  }
  .actions-start__item span{
    font-size: 12px;
    line-height: 15px;
  }
  .actions-start__line-2{
    display: none;
  }
  .actions-start__line-3{
    display: block;
  }
  .actions-start__line-4{
    display: none;
  }
  .block-start__icon svg{
    width: 60px;
    height: 60px;
  }
  .block-start__title{
    font-size: 20px;
  }
  .start__block{
    padding: 15px;
  }
}
@media(max-width: 500px){
  .add-merchant{
    padding: 20px 10px;
  }
  .add-merchant__inputs{
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 20px;
  }
  .add-merchant__button{
    width: 100%;
  }
  .applications-merchans{
    padding: 15px;
  }
  .applications-merchans__inputs {
    gap: 10px;
  }
  .applications-merchans__actions{
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .applications-merchans__button{
    min-height: 45px;
  }
  .block-start__button{
    width: 100%;
    max-width: none;
  }
}

.popup__content {
}
.support-popup{
  max-width: 484px;
  padding: 30px 40px;
}
.support-popup textarea{
  outline: none;
  width: 100%;
  border-radius: 5px;
  border: 1px solid #AAC1BC;
  min-height: 50px;
  padding-left: 15px;
  padding-right: 15px;
  resize: vertical;
  min-height: 100px;
}
.popup__close {
}
.popup-title {
}
.support-popup__title {
  text-align: center;
  margin-bottom: 30px;
  color: #152521;
  font-size: 18px;
  font-weight: 700;
}
.support-popup__input input{
  outline: none;
  width: 100%;
  border-radius: 5px;
  border: 1px solid #AAC1BC;
  min-height: 50px;
  padding-left: 15px;
  padding-right: 15px;
}
.support-popup__input:not(:last-child) {
  margin-bottom: 10px;
}
.support-popup__label {
  margin-bottom: 10px;
  color: #121312;
  font-size: 14px;
  font-weight: 700;
}
.support-popup__button {
  border-radius: 5px;
  background: #004231;
  width: 100%;
  color: #FFF;
  font-size: 16px;
  font-weight: 600;
  min-height: 50px;
  padding: 5px 15px;
}

@media(max-width: 475px){
  .support-popup{
    padding: 20px 15px;
  }
}

.actions-start__item span{
  color: #536460;
}
.actions-start__item svg path{
  stroke: #00A023;
}
      .alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
}

.alert h4 {
  margin-top: 0;
  color: inherit;
}

.alert .alert-link {
  font-weight: bold;
}

.alert > p,
.alert > ul {
  margin-bottom: 0;
}

.alert > p + p {
  margin-top: 5px;
}

.alert-dismissable,
.alert-dismissible {
  padding-right: 35px;
}

.alert-dismissable .close,
.alert-dismissible .close {
  position: relative;
  top: -2px;
  right: -21px;
  color: inherit;
}

.alert-success {
  background-color: #dff0d8;
  border-color: #d6e9c6;
  color: #3c763d;
}

.alert-success hr {
  border-top-color: #c9e2b3;
}

.alert-success .alert-link {
  color: #2b542c;
}

.alert-info {
  background-color: #d9edf7;
  border-color: #bce8f1;
  color: #31708f;
}

.alert-info hr {
  border-top-color: #a6e1ec;
}

.alert-info .alert-link {
  color: #245269;
}

.alert-warning {
  background-color: #fcf8e3;
  border-color: #faebcc;
  color: #8a6d3b;
}

.alert-warning hr {
  border-top-color: #f7e1b5;
}

.alert-warning .alert-link {
  color: #66512c;
}

.alert-danger {
  background-color: #f2dede;
  border-color: #ebccd1;
  color: #a94442;
}

.alert-danger hr {
  border-top-color: #e4b9c0;
}

.alert-danger .alert-link {
  color: #843534;
}

.pagination {
  list-style: none;
  display: inline-block;
  padding: 0;
  margin-top: 10px;
}
.pagination li {
  display: inline;
  text-align: center;
}
.pagination a {
  float: left;
  display: block;
  font-size: 14px;
  text-decoration: none;
  padding: 5px 12px;
  color: #fff;
  margin-left: -1px;
  border: 1px solid transparent;
  line-height: 1.5;
}
.pagination a.active {
  cursor: default;
}
.pagination a:active {
  outline: none;
}

.modal-1 li:first-child a {
  -moz-border-radius: 6px 0 0 6px;
  -webkit-border-radius: 6px;
  border-radius: 6px 0 0 6px;
}
.modal-1 li:last-child a {
  -moz-border-radius: 0 6px 6px 0;
  -webkit-border-radius: 0;
  border-radius: 0 6px 6px 0;
}
.modal-1 a {
  border-color: #ddd;
  color: #328d44;
  background: #fff;
}
.modal-1 a:hover {
  background: #eee;
}
.modal-1 a.active, .modal-1 a:active {
  border-color: #328d44;
    background: #328d44;
  color: #fff;
}