:root {
  --font-family: "Roboto", sans-serif;
  --font-size: 18px;
  --line-height: 1.25;
  --box-shadow: rgb(33 35 38 / 10%) 0 10px 10px -10px;
  --transition: 0.4s ease-in-out;
  --border-radius: 10px;
  --border-radius-btn: 5px;
  --color-black: #000;
  --color-bg: #0A1530;
  --color-white: #fff;
  --color-light: #F5F5F5;
  --color-dark: #111;
  --color-primary: #00A0DF;
  --color-invert: rgba(0, 160, 223, 0.12);
  --color-secondary: #FFB401;
  --color-default: #7A7A7A;
  --color-neutral: #D1D1D1;
  --color-border: #E4E4E4;
  --color-input: #FAFAFA;
  --color-error: #ef4444;
  --z-index-header: 100;
  --z-index-menu: 200;
  --z-index-dropdown: 300;
  --z-index-modal: 1000;
}
@font-face {
  font-family: "Roboto";
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: local("Roboto-Regular"), url("../fonts/Roboto/Roboto-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Roboto";
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: local("Roboto-Medium"), url("../fonts/Roboto/Roboto-Medium.ttf") format("truetype");
}
@font-face {
  font-family: "Roboto";
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  src: local("Roboto-Bold"), url("../fonts/Roboto/Roboto-Bold.ttf") format("truetype");
}
*, html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

html,
body {
  height: 100%;
}

body.no_scroll {
  position: fixed;
  left: 0;
  right: 0;
}

body {
  scroll-behavior: smooth;
  min-width: 320px;
  min-height: 100vh;
  height: auto;
  margin: 0;
  padding: 0;
  font-family: var(--font-family);
  font-size: var(--font-size);
  font-weight: 400;
  line-height: var(--line-height);
  text-rendering: optimizespeed;
}

main {
  padding-top: 30px;
  padding-bottom: 70px;
}

strong {
  font-weight: 500;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  display: inline-block;
  text-decoration: none;
  color: #000;
}

button {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  background-color: transparent;
  border: none;
}

img,
iframe {
  display: block;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

input,
button,
textarea,
select {
  font: inherit;
}

hr:not([class]) {
  margin: 1.5rem 0;
  border-top: none;
  border-bottom: 1px solid var(--bs-body-color);
}

::-moz-selection {
  color: var(--color-white);
  background-color: var(--color-primary);
}

::selection {
  color: var(--color-white);
  background-color: var(--color-primary);
}

.link {
  position: relative;
  white-space: nowrap;
}
.link::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: var(--color-dark);
  top: 100%;
  left: 0;
  pointer-events: none;
  -webkit-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
  -webkit-transform: scale3d(0, 1, 1);
  transform: scale3d(0, 1, 1);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.link:hover:before {
  -webkit-transform-origin: 0% 50%;
  transform-origin: 0% 50%;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}

.container {
  max-width: 1250px;
  padding: 0 40px;
  margin: 0 auto;
}

.wrapper {
  padding: 30px 20px;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
}

.daterangepicker.show-calendar .drp-buttons {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2,
h3 {
  line-height: 1.25;
}

h1 {
  font-size: 48px;
  line-height: 1.25;
}

h2 {
  font-size: 18px;
  line-height: 1.2;
  margin: 0;
  font-weight: 500;
}

h3 {
  font-size: 1.25rem;
}

p {
  margin: 20px 0;
  font-size: 12px;
}

.header {
  padding: 20px 0;
  border-bottom: 2px solid var(--color-primary);
}
.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;
}
.header__logo {
  font-size: 32px;
  font-weight: 600;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 200px;
  color: var(--color-primary);
}
.header__logo span {
  color: var(--color-secondary);
}
.header__nav {
  width: 100%;
}
.header__nav-wrapper {
  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;
}
.header__nav-overlay {
  display: none;
}
.header__nav-list {
  max-width: 360px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 24px;
}
.header__nav-list .dropdown__list {
  min-width: 200px;
}
.header__enter {
  font-weight: 600;
  color: var(--color-primary);
  cursor: pointer;
}
.header__enter:hover {
  text-decoration: underline;
}
.header__burger {
  display: none;
}
.header__user {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header__user-name {
  font-weight: 600;
  margin-right: 5px;
}
.header__user-summ {
  color: var(--color-primary);
  font-weight: 600;
  margin-right: 5px;
}
.header__user-info {
  width: 16px;
  height: 16px;
}
.header__logout {
  margin-left: 40px;
  width: 24px;
  height: 24px;
  background: url("../images/svg/icon-logout.svg") center center/24px no-repeat;
  cursor: pointer;
}
.header__logout:hover {
  opacity: 0.7;
}

.dropdown {
  position: relative;
}
.dropdown__list {
  position: absolute;
}

.tooltip__btn {
  width: 16px;
  height: 16px;
  background: url("../images/svg/icon-info.svg") center center/16px no-repeat;
}

.breadcrumbs {
  margin-bottom: 30px;
}
.breadcrumbs__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-x: auto;
  width: 100%;
}
.breadcrumbs__list::-webkit-scrollbar {
  display: none;
}
.breadcrumbs__item {
  margin-right: 5px;
  padding-right: 12px;
  position: relative;
  white-space: nowrap;
}
.breadcrumbs__item a {
  color: #7A7A7A;
}
.breadcrumbs__item a:hover {
  text-decoration: underline;
}
.breadcrumbs__item::after {
  position: absolute;
  content: "/";
  top: 0;
  right: 0;
  color: #7A7A7A;
}
.breadcrumbs__item:last-of-type {
  margin: 0;
  padding: 0;
  pointer-events: none;
}
.breadcrumbs__item:last-of-type a {
  color: var(--color-dark);
}
.breadcrumbs__item:last-of-type::after {
  display: none;
}

.pagination__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.pagination__item {
  margin-right: 10px;
  width: 40px;
  height: 40px;
  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;
  font-weight: 600;
  font-size: 20px;
  line-height: 1;
  border: 1px solid var(--color-neutral);
  color: var(--color-neutral);
  border-radius: var(--border-radius-btn);
  margin: 0 2.5px;
  cursor: pointer;
}
.pagination__item.active {
  border-color: var(--color-primary);
  background-color: var(--color-invert);
  color: var(--color-dark);
}
.pagination__item:last-of-type {
  margin: 0 0 0 7.5px;
}
.pagination__item:first-of-type {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  margin: 0 7.5px 0 0;
}

.dropdown {
  position: relative;
}
.dropdown__list {
  width: 100%;
  position: absolute;
  left: 0;
  top: 55px;
  padding: 10px 0;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  z-index: 10;
  display: none;
}
.dropdown__list.active {
  display: block;
}
.dropdown__item {
  text-align: left;
  font-size: 16px;
  color: var(--color-black);
  padding: 5px 20px;
}
.dropdown__item:hover {
  background-color: var(--color-invert);
}
.dropdown__item:last-of-type {
  margin-bottom: 0;
}

.form__input {
  display: block;
  width: 100%;
  padding: 15px 20px;
  height: 50px;
  background: var(--color-white);
  font-size: 16px;
  border: none;
  outline: none;
  border-radius: var(--border-radius-btn);
  border: 1px solid var(--color-border);
}
.form__input:focus::-webkit-input-placeholder {
  opacity: 0;
  display: none;
}
.form__input:focus::-moz-placeholder {
  opacity: 0;
  display: none;
}
.form__input:focus:-ms-input-placeholder {
  opacity: 0;
  display: none;
}
.form__input:focus::-ms-input-placeholder {
  opacity: 0;
  display: none;
}
.form__input:focus::placeholder {
  opacity: 0;
  display: none;
}
.form__item {
  width: 100%;
}
.form__btn {
  width: 100%;
  background-color: var(--color-secondary);
  color: var(--color-white);
  text-align: center;
  font-size: 20px;
  line-height: 50px;
  font-weight: 500;
  padding: 0 15px;
  height: 50px;
  border-radius: var(--border-radius-btn);
}
.form__btn:hover {
  background-color: var(--color-primary);
}

input[name=dates] {
  max-width: 470px;
  width: 100%;
  display: block;
  padding: 15px 20px;
  border-radius: var(--border-radius);
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  color: var(--color-default);
  padding-right: 46px;
  outline: none;
  background: url("../images/svg/icon-calendar.svg") calc(100% - 20px) center/26px no-repeat;
}

.table {
  width: calc(100% + 40px);
  margin: 0 -20px;
  overflow-x: auto;
}
.table::-webkit-scrollbar {
  display: none;
}
.table__cell--color {
  color: var(--color-primary);
}
.table__cell-save .btn {
  padding: 10px;
  font-size: 16px;
  max-width: auto;
  width: auto;
  display: inline-block;
}
.table__cell-summ .form__input {
  max-width: 120px;
  padding: 10px;
  border: 1px solid var(--color-border);
  display: inline-block;
  width: auto;
  height: auto;
  text-align: center;
}
.table__cell:not(:first-of-type) {
  white-space: nowrap;
}
.table table {
  border-spacing: 0;
  min-width: 1000px;
  width: 100%;
  overflow: hidden;
}
.table tr {
  width: 100%;
  font-size: 16px;
  font-weight: 500;
}
.table th {
  border: none;
  padding: 15px;
  text-align: left;
  font-size: 16px;
  white-space: nowrap;
  position: relative;
  cursor: pointer;
}
.table th .table__cell-name {
  width: auto;
  display: inline-block;
  position: relative;
  padding-right: 13.5px;
}
.table .arrow-up,
.table .arrow-down {
  width: 10px;
  height: 16px;
  color: #E0E0E0;
}

.table .arrow-up::before {
  content: '';
  display: block;
  width: 10px;
  height: 16px;
  mask: url('../images/svg/arrow-up.svg') center center / contain no-repeat;
  -webkit-mask: url('../images/svg/arrow-up.svg') center center / contain no-repeat;
  background-color: currentColor;
}

.table .arrow-down::before {
  content: '';
  display: block;
  width: 10px;
  height: 16px;
  mask: url('../images/svg/arrow-down.svg') center center / contain no-repeat;
  -webkit-mask: url('../images/svg/arrow-down.svg') center center / contain no-repeat;
  background-color: currentColor;
}


.table th.sort-up .arrow-up::before {
  color: var(--color-secondary);
}
.table th.sort-down .arrow-down::before{
  color: var(--color-secondary);
}
.table th .arrow-up {
  position: absolute;
  right: 0;
  top: 0;
}
.table th .arrow-down {
  position: absolute;
  right: -9px;
  top: 0px;
}
.table td {
  padding: 15px;
  border-bottom: 1px solid var(--color-neutral);
  font-size: 14px;
  text-align: left;
  position: relative;
}
.table td::before {
  display: block;
  position: absolute;
  content: "";
  background-color: #F4F4F4;
  width: 100%;
  min-height: 1000vh;
  opacity: 0;
  top: -500vh;
  left: 0;
  right: 0;
  z-index: -1;
}
.table td:hover::before {
  opacity: 1;
}
.table__row:hover {
  background-color: #F4F4F4;
}
.table__row--final {
  background-color: #D4D4D4;
}

.filter {
  margin-bottom: 30px;
}
.filter__title {
  margin-bottom: 10px;
}

.authorization {
  width: 100%;
}
.authorization__box {
  max-width: 370px;
  width: 100%;
  padding: 20px 30px;
  background: var(--color-white);
  -webkit-box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.1);
  box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.1);
  border-radius: var(--border-radius);
  margin: 0 0 0 auto;
}
.authorization__title {
  margin-bottom: 30px;
  text-align: center;
  font-size: 24px;
  font-weight: 500;
}
.authorization__item {
  margin-bottom: 10px;
}
.authorization__input {
  display: block;
  width: 100%;
  padding: 15px 20px;
  height: 50px;
  background: var(--color-input);
  font-size: 16px;
  border: none;
  outline: none;
  border-radius: var(--border-radius-btn);
}
.authorization__input:focus::-webkit-input-placeholder {
  opacity: 0;
  display: none;
}
.authorization__input:focus::-moz-placeholder {
  opacity: 0;
  display: none;
}
.authorization__input:focus:-ms-input-placeholder {
  opacity: 0;
  display: none;
}
.authorization__input:focus::-ms-input-placeholder {
  opacity: 0;
  display: none;
}
.authorization__input:focus::placeholder {
  opacity: 0;
  display: none;
}
.authorization__btn {
  margin-top: 30px;
  width: 100%;
  background-color: var(--color-secondary);
  color: var(--color-white);
  text-align: center;
  font-size: 20px;
  line-height: 50px;
  font-weight: 500;
  padding: 0 15px;
  height: 50px;
  border-radius: var(--border-radius-btn);
}
.authorization__btn:hover {
  background-color: var(--color-primary);
}

.offers__item {
  padding: 20px;
  background: var(--color-white);
  border: 2px solid var(--color-border);
  border-radius: var(--border-radius);
  margin-bottom: 30px;
}
.offers__item-main {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 24px;
}
.offers__item-info {
  max-width: 281px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.offers__item-cell:first-of-type {
  margin-bottom: 20px;
}
.offers__item-action {
  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;
}
.offers__item-download {
  margin-right: 15px;
}

.postback-wrapper {
  padding: 30px 20px;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
}
.postback__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 30px;
}
.postback__info-head {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 40px;
  font-weight: 500;
  margin-bottom: 10px;
}
.postback__info-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 40px;
  margin-bottom: 10px;
  font-size: 16px;
}
.postback__info-show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--color-primary);
  font-weight: 500;
  -ms-flex-item-align: end;
  align-self: flex-end;
  cursor: pointer;
}
.postback__info-show::after {
  content: url("../images/svg/icon-arrow-color.svg");
  display: block;
  margin-left: 10px;
}
.postback__info-show.active::after {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.postback__info-show:hover {
  opacity: 0.7;
}
.postback__info-text {
  display: none;
}
.postback__head {
  display: grid;
  grid-template-columns: 1fr 0.3fr 0.2fr;
  gap: 30px;
  margin-bottom: 30px;
}
.postback__head-title {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 500;
}
.postback__item {
  display: grid;
  grid-template-columns: 1fr 0.3fr 0.2fr;
  gap: 30px;
  margin-bottom: 15px;
}
.postback__cell-title {
  display: none;
}
.postback__url {
  padding: 15px 20px;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  font-size: 16px;
  overflow: hidden;
  white-space: nowrap;
}
.postback__remove {
  padding: 15px 20px;
  padding: 15px 20px;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  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;
  font-size: 16px;
  cursor: pointer;
}
.postback__remove:hover {
  opacity: 0.7;
}
.postback__action {
  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;
  gap: 20px;
  margin-top: 60px;
}

.select {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  font-size: 16px;
  outline: none;
  cursor: pointer;
}
.select:hover {
  opacity: 0.7;
}

.partners-head {
  margin-bottom: 30px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.partners__list {
  margin-bottom: 303px;
}
.partners__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;
  padding: 11px 20px;
  gap: 32px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  margin-bottom: 20px;
}
.partners__item-action {
  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;
  gap: 10px;
  width: 100%;
}
.partners__item-name {
  max-width: 220px;
  width: 100%;
  font-size: 32px;
  line-height: 1.25;
  font-weight: 600;
}
.partners__item-btn {
  max-width: 180px;
}

.partner__info {
  position: relative;
  width: 100%;
  margin-bottom: 60px;
}
.partner__info-save {
  position: absolute;
  right: 0;
  top: 0;
}
.partner__info .form__label {
  font-weight: 700;
  font-size: 20px;
}
.partner__info .form__input {
  border: 1px solid var(--color-border);
  background-color: var(--color-white);
}
.partner__personal-title {
  margin-bottom: 30px;
}
.partner__personal .table__cell:first-of-type {
  width: 60%;
}
.partner__personal-title {
  margin-bottom: 20px;
}
.partner__title, .partner__phone, .partner__password {
  display: grid;
  grid-template-columns: 100px 250px 150px;
  gap: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.partner__title {
  margin-bottom: 15px;
}
.partner__phone {
  margin-bottom: 15px;
}
.partner__password-title {
  font-weight: 700;
  font-size: 20px;
}

.finance__info {
  max-width: 400px;
  width: 100%;
  margin-bottom: 64px;
}
.finance__info-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  margin-bottom: 15px;
  gap: 14px;
}
.finance__info-cell {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.15;
}

.payments__title {
  margin-bottom: 30px;
}
.payments__table {
  max-width: 300px;
}
.payments__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 20px;
}
.payments__cell {
  font-size: 14px;
}
.payments__head {
  margin-bottom: 25px;
}
.payments__head .payments__cell {
  font-weight: 600;
  font-size: 16px;
}
@media (max-width: 992px) {
  .container {
    padding: 0 20px;
  }
  .header__logo {
    margin-right: 60px;
  }
  .header__logout {
    margin-left: 24px;
  }
  .postback__head {
    display: none;
  }
  .postback__item {
    grid-template-columns: 1fr 130px;
    gap: 16px;
    margin-bottom: 30px;
  }
  .postback__cell-title {
    display: block;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
  }
  .postback__cell:first-of-type {
    grid-column: 1/3;
  }
  .postback__cell:last-of-type {
    width: 130px;
  }
  .select {
    max-width: 200px;
  }
  .partners__list {
    margin-bottom: 182px;
  }
}
@media (max-width: 767px) {
  .container {
    padding: 0 10px;
  }
  .wrapper {
    padding: 20px 10px;
  }
  .header {
    padding: 10px 0;
  }
  .header__logo {
    font-size: 24px;
  }
  .header__nav {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 10;
  }
  .header__nav.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header__nav-wrapper {
    background-color: var(--color-white);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    width: 200px;
    padding: 103px 10px 88px;
    position: absolute;
    z-index: 10;
    right: 0;
    top: 0;
    border-radius: 0 0 0 10px;
  }
  .header__nav-overlay {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    min-width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 8;
  }
  .header__nav-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    gap: 20px;
    margin-bottom: 30px;
  }
  .header__nav-list .dropdown {
    text-align: right;
  }
  .header__nav-list .dropdown__list {
    position: static;
    min-width: auto;
    padding: 0;
    border: none;
    text-align: right;
    margin-top: 20px;
  }
  .header__nav-list .dropdown__item {
    padding: 0;
    margin-bottom: 10px;
  }
  .header__burger {
    display: block;
  }
  .header__burger span {
    display: block;
    width: 20px;
    height: 2px;
    background-color: var(--color-black);
    margin-bottom: 5px;
  }
  .header__burger.active {
    z-index: 11;
  }
  .header__burger.active span {
    display: none;
  }
  .header__burger.active span:first-of-type {
    display: block;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    margin-top: 5px;
  }
  .header__burger.active span:last-of-type {
    display: block;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    margin-top: -7px;
  }
  .modal__close {
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
  }
  .modal__content {
    padding: 10px 10px 20px;
    width: calc(100% - 20px);
    border-radius: var(--border-radius);
  }
  .modal__head {
    width: calc(100% + 20px);
    margin: 0 -10px 20px;
    padding: 10px;
  }
  .modal__title {
    font-size: 24px;
  }
  .modal__form {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .modal__form .form__btn {
    grid-column: 1/2;
    margin-top: 20px;
  }
  .modal__link {
    margin-bottom: 40px;
  }
  .modal__link-btn {
    font-size: 14px;
  }
  .modal__link-title {
    font-size: 16px;
    margin-bottom: 15px;
    width: calc(100% - 140px);
  }
  .modal__link-value {
    font-size: 16px;
  }
  .breadcrumbs__item {
    font-size: 16px;
  }
  input[name=dates] {
    font-size: 16px;
    padding: 10px 15px;
  }
  .table {
    width: calc(100% + 20px);
    margin: 0 -10px;
  }
  .authorization__box {
    padding: 20px 23px;
  }
  .offers__item {
    padding: 10px 18px 20px;
    margin-bottom: 20px;
  }
  .offers__item-img {
    max-width: 240px;
  }
  .postback-wrapper {
    padding: 20px 10px;
  }
  .postback__url {
    padding: 15px 10px;
  }
  .postback__remove {
    padding: 15px 10px;
  }
  .postback__action {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
    margin-top: 30px;
  }
  .postback__action .btn {
    max-width: 100%;
  }
  .select {
    padding: 15px 10px;
  }
  .partners__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 20px 10px;
    margin-bottom: 20px;
    gap: 18px;
  }
  .partners__item-action {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .partner__info-save {
    position: static;
    margin-top: 20px;
    max-width: 100%;
  }
  .partner__info .form__label {
    font-size: 16px;
    width: 90px;
  }
  .partner__personal .table__cell:first-of-type {
    width: 40%;
  }
  .partner__personal table {
    min-width: 800px;
  }
  .partner__title, .partner__phone, .partner__password {
    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;
  }
  .partner__password-reset {
    max-width: 100%;
    padding: 10px;
    font-size: 16px;
  }
  .partner__password-title {
    font-size: 16px;
  }
  .finance__info-cell {
    font-size: 16px;
  }
}
@media screen and (max-width: 600px) {
  .offers__item-main {
    margin-bottom: 38px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .offers__item-info {
    max-width: 173px;
    gap: 12px;
  }
  .offers__item-cell {
    font-size: 16px;
  }
  .offers__item-action {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .offers__item-action .btn {
    max-width: 100%;
  }
  .offers__item-download {
    margin: 0 0 10px 0;
  }
}
@media (max-width: 576px) {
  .offers__item-img {
    max-width: 113px;
    margin-right: 32px;
  }
}
@media screen and (max-width: 560px) {
  .partners__add {
    max-width: 100%;
  }
  .partners__item-action {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .partners__item-btn {
    max-width: 100%;
  }
}

.main-authorization {
  padding: 0;
}

.authorization {
  height: calc(100vh - 82px);
  padding: 40px 0 80px;

  @media(max-width: 767.98px) {
    height: calc(100vh - 52px);
  }
}


.tooltip-custom {
  position: relative;
  padding-top: 10px;
  padding-right: 10px;
}

.tooltiptext {
  visibility: hidden;
  width: 170px;
  background-color: #ffffff;
  color: #000000;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: fixed; /* Измените на fixed */
  z-index: 9999; /* Достаточно высокое значение */
  white-space: normal;
  word-wrap: break-word;
  top: calc(50% - 20px); /* Используйте точное позиционирование по вертикали */
  left: calc(50% - 85px); /* Используйте точное позиционирование по горизонтали */
  opacity: 0;
  transition: opacity 0.3s;
  border:1px solid var(--color-primary);
  font-weight: normal;
}

.partners-tooltiptext {
  width: 400px;
}
.tooltip-custom:hover .tooltiptext:not(:empty) {
  visibility: visible;
  opacity: 1;
}
.end{float:right}
.d-inline-block{
  display: inline-block;
}

i.sort-up, i.sort-down{
  font-size: 16px;margin:0 -4px;
  opacity: 0.3;
}
th.sort-up i.sort-up{
  opacity: 1;
  color: var(--color-primary);
}
th.sort-down i.sort-down{
  opacity: 1;
  color: var(--color-primary);
}
.sub-menu{
  padding: 10px 0;
  position: absolute;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  background: #fff;
  right: -40px;
  top: 27px;
  display: none;
}
.sub-menu li a {
  padding: 7px 25px;
  font-size: 15px;
  cursor: pointer;
}
.parent-menu{
  position: relative;
}
.sub-menu a{
  padding: 2px 25px;
  width: 100%;
  text-align: center;
}
.sub-menu a:hover{
  background-color: #eee;
}
.parent-menu.active .sub-menu{
  display: unset;
}
code {
  width: 100%;
  display: inline-block;
  padding: 10px;
  background: #eee;
}
.docs p{
  font-size: 14px;
}
.group_buttons input {
  display: none;
}
.group_buttons .btn{
  margin: 0;
}
.group_buttons .btn {
  margin: 0;
  width: 100px;
  border-radius: 0;
  font-size: 12px;
}
.group_buttons .btn.active, .group_buttons .btn:hover {
  background-color: #00a0df;
}
.btn:hover{
  background-color: #00A0DF;
}.wrapper {
   font-size: 14px;
 }
.form-control:disabled, .form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}
#button-save-url.active{
  color: #fff;
  cursor:pointer;
  background-color: #00a0df;
}
.tooltip-custom::before {
  content: "\f333";
  font-family: bootstrap-icons !important;
  position: absolute;
  top: 0px;
  right: 0px;
  opacity: 0.3;
  color: black;
}

.tooltip-custom:has(#button-save-url)::before, #button-save-url~.tooltiptext{
  visibility: hidden !important;
}
.tooltip-custom:has(#button-save-url.active)::before{
  top: -7px;
  right: -7px;
  visibility: visible;
}
#button-save-url.active~.tooltiptext{
  visibility: visible !important;
}
label.setting_param_name{
  padding: 5px;
  background-color: #eee;
}
.postback-log code{
  max-width: 200px;
  text-wrap: auto;
}
.postback-log tr:hover{
  background-color: #fff;
}
.pagination{
  margin: 5px 0;
}