@charset "UTF-8";
:root {
  --main-color: #212130;
  --main-color30: rgba(33, 33, 48, 0.3);
  --second-color: #161622;
  --third-color: #272A30;
  --accent: #0D49C1;
  --accent20: rgba(13, 73, 193, 0.2);
  --accent30: rgba(13, 73, 193, 0.3);
  --accent50: rgba(13, 73, 193, 0.5);
  --accent80: rgba(13, 73, 193, 0.8);
  --green: #26B56B;
  --yellow: #FBB93B;
  --red: #FF5E5E;
  --grey: #d9d9d9;
  --grey50: rgba(217, 217, 217, 0.5);
  --dark-grey: #6F7181;
  --white: #FDFDFD;
  --white20: rgba(253, 253, 253, 0.2);
  --white50: rgba(253, 253, 253, 0.5);
  --header-height: 60px;
  --sidebar-width: 225px;
  --padding-left: 60px;
  --padding-right: 20px;
}

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

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

:focus,
:active {
  outline: none;
}

a, a:visited {
  color: inherit;
  text-decoration: none;
  display: inline-block;
}

a:hover {
  color: inherit;
  text-decoration: none;
}

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

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

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

ul {
  list-style: none;
}

img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input, textarea, button, select {
  font-family: inherit;
  font-size: inherit;
}

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

button, input[type="submit"] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus, input:active,
button:focus, button:active {
  outline: none;
}

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

label {
  cursor: pointer;
}

legend {
  display: block;
}

html {
  width: 100vw;
  height: 100vh;
  scroll-behavior: smooth;
  overflow: hidden;
}

body {
  position: relative;
  width: 100vw;
  height: 100vh;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  background-color: var(--white);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: var(--main-color);
  font-size: 16px;
  line-height: normal;
  text-rendering: optimizeSpeed;
  -webkit-font-smoothing: antialiased;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body > * {
  flex-shrink: 0;
}

section {
  position: relative;
}

a, button {
  transition: 0.3s;
}

.none, .input-hidden {
  display: none;
}

.visually-hidden {
  opacity: 0;
  visibility: hidden;
  width: 0px;
  height: 0px;
  display: block;
  margin-left: -10000px;
  background: transparent;
  font-size: 0;
}

.footer {
  margin-top: auto;
}

.my-balance {
  font-weight: 600;
}

.section-title {
  margin-bottom: 30px;
  font-weight: 500;
  font-size: 30px;
  color: var(--main-color);
}

.accent-text {
  font-weight: 500;
  color: var(--accent);
}

.intro {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0 15px;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  background: linear-gradient(180deg, rgba(22, 22, 34, 0.9) 0%, rgba(37, 37, 94, 0.9) 48.96%, rgba(22, 22, 34, 0.9) 100%);
  background-image: url(./../img/intro-bg-05.jpg);
  background-size: cover;
  background-position: center;
}
.intro__fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(22, 22, 34, 0.5) 0%, rgba(37, 37, 94, 0.5) 48.96%, rgba(22, 22, 34, 0.5) 100%);
}

.intro__form {
  min-width: 290px;
  width: 410px;
  position: relative;
  z-index: 1;
  padding: 40px 55px 45px;
  background: linear-gradient(180deg, #161622 0%, #25255E 48.96%, #161622 100%);
  box-shadow: 5px 20px 50px #000;
  border-radius: 10px;
}

.intro__form-title {
  margin-bottom: 30px;
  font-weight: 500;
  font-size: 28px;
  text-align: center;
  color: var(--white);
}

.intro__form-input {
  display: block;
  width: 100%;
  margin-bottom: 10px;
  padding: 10px 16px;
  background-color: transparent;
  border: 2px solid rgba(253, 253, 253, 0.2);
  border-radius: 8px;
  outline: 2px solid transparent;
  color: var(--white);
}
.intro__form-input::-webkit-input-placeholder, .intro__form-input::-webkit-input-placeholder, .intro__form-input:-ms-input-placeholder, .intro__form-input::-ms-input-placeholder {
  color: var(--white50);
}
.intro__form-input::placeholder, .intro__form-input::-webkit-input-placeholder, .intro__form-input:-ms-input-placeholder, .intro__form-input::-ms-input-placeholder {
  color: var(--white50);
}
.intro__form-input:-moz-placeholder, .intro__form-input::-moz-placeholder {
  color: var(--white50);
  opacity: 1;
}

.intro__form-input:focus {
  border-color: transparent;
  outline: 2px solid var(--accent);
  box-shadow: 0px 0px 10px var(--accent50);
}

.intro__form-btn {
  display: block;
  width: 100%;
  border-radius: 8px;
  font-weight: 500;
  font-size: 16px;
  color: var(--white);
  text-align: center;
  padding: 12px 8px;
}
.intro__form-btn:not(:last-child) {
  margin-bottom: 15px;
}

.intro__form-btn--main, a.intro__form-btn--main {
  margin-top: 20px;
  background-color: var(--accent);
}
.intro__form-btn--main:hover, .intro__form-btn--main:focus, a.intro__form-btn--main:hover, a.intro__form-btn--main:focus {
  box-shadow: 0px 0px 20px var(--accent80);
}

.intro__form-btn--secondary, a.intro__form-btn--secondary {
  background-color: #17234D;
  color: var(--white50);
}
.intro__form-btn--secondary:hover, .intro__form-btn--secondary:focus, a.intro__form-btn--secondary:hover, a.intro__form-btn--secondary:focus {
  box-shadow: 0px 0px 20px var(--white20);
  color: var(--white);
}

a.intro__form-link {
  color: var(--white50);
}
a.intro__form-link:hover {
  color: var(--white);
}

.intro__form-text {
  margin-bottom: 20px;
  color: var(--white50);
  text-align: center;
}

.intro__select {
  margin-bottom: 20px;
}
.intro__select .select__btn {
  padding: 10px 42px 10px 16px;
  background-position: calc(100% - 10px) center;
}

.select {
  position: relative;
}

.select__btn {
  display: block;
  width: 100%;
  background-color: transparent;
  border: 2px solid var(--white20);
  border-radius: 8px;
  outline: 2px solid transparent;
  background-position: calc(100% - 10px) center;
  background-repeat: no-repeat;
  background-size: 18px;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='18' height='19' viewBox='0 0 18 19' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M3.35225 6.47725C3.55195 6.27755 3.86445 6.2594 4.08466 6.42279L4.14775 6.47725L9 11.3293L13.8523 6.47725C14.052 6.27755 14.3645 6.2594 14.5847 6.42279L14.6477 6.47725C14.8474 6.67695 14.8656 6.98945 14.7022 7.20966L14.6477 7.27275L9.39775 12.5227C9.19805 12.7224 8.88555 12.7406 8.66534 12.5772L8.60225 12.5227L3.35225 7.27275C3.13258 7.05308 3.13258 6.69692 3.35225 6.47725Z' fill='%23FDFDFD'/%3e%3c/svg%3e ");
  color: var(--white);
  text-align-last: left;
  cursor: pointer;
}

.select__btn:focus, .select__btn--active {
  border-color: transparent;
  outline: 2px solid var(--accent);
  box-shadow: 0px 0px 10px var(--accent50);
}

.select__list {
  display: none;
  position: absolute;
  top: 43px;
  width: 100%;
  z-index: 1;
  padding: 10px 0;
  background-color: var(--second-color);
  border: 2px solid var(--white20);
  border-radius: 8px;
  color: var(--white);
}

.select__list-item {
  padding: 10px 16px;
  white-space: nowrap;
  cursor: pointer;
  transition: 0.3s;
}
.select__list-item:hover {
  background-color: var(--white20);
}
.select__list-item--colored {
  background-color: var(--green);
}

.select__list--visible {
  display: block;
}

.header {
  width: 100vw;
  height: var(--header-height);
  padding: 0 30px 0 20px;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
          align-items: center;
  background-color: var(--second-color);
  color: var(--white);
}

.header__functions {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  gap: 20px;
}

.header__search {
  position: relative;
  max-width: 500px;
  padding: 6px 20px 6px 50px;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
          align-items: center;
  gap: 10px;
  border: 2px solid var(--white50);
  border-radius: 8px;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cmask id='mask0_2_4080' style='mask-type:luminance' maskUnits='userSpaceOnUse' x='1' y='1' width='17' height='17'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M1.66667 1.66669H17.8973V17.8975H1.66667V1.66669Z' fill='white'/%3e%3c/mask%3e%3cg mask='url(%23mask0_2_4080)'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M9.78232 2.91669C5.99649 2.91669 2.91649 5.99585 2.91649 9.78169C2.91649 13.5675 5.99649 16.6475 9.78232 16.6475C13.5673 16.6475 16.6473 13.5675 16.6473 9.78169C16.6473 5.99585 13.5673 2.91669 9.78232 2.91669M9.78232 17.8975C5.30732 17.8975 1.66649 14.2567 1.66649 9.78169C1.66649 5.30669 5.30732 1.66669 9.78232 1.66669C14.2573 1.66669 17.8973 5.30669 17.8973 9.78169C17.8973 14.2567 14.2573 17.8975 9.78232 17.8975' fill='%23FDFDFD'/%3e%3c/g%3e%3cmask id='mask1_2_4080' style='mask-type:luminance' maskUnits='userSpaceOnUse' x='14' y='14' width='5' height='5'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M14.3666 14.7558H18.5533V18.9348H14.3666V14.7558Z' fill='white'/%3e%3c/mask%3e%3cg mask='url(%23mask1_2_4080)'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M17.9285 18.9348C17.7693 18.9348 17.6093 18.8739 17.4868 18.7523L14.5502 15.8239C14.306 15.5798 14.3052 15.1839 14.5493 14.9398C14.7927 14.6939 15.1885 14.6956 15.4335 14.9381L18.3702 17.8673C18.6143 18.1114 18.6152 18.5064 18.371 18.7506C18.2493 18.8739 18.0885 18.9348 17.9285 18.9348' fill='%23FDFDFD'/%3e%3c/g%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: 20px center;
}

.header__search-input {
  width: 100%;
  height: 100%;
  display: inline-block;
  -webkit-box-flex: 1;
          flex-grow: 1;
  background-color: transparent;
  color: var(--white);
}
.header__search-input::-webkit-input-placeholder, .header__search-input::-webkit-input-placeholder, .header__search-input:-ms-input-placeholder, .header__search-input::-ms-input-placeholder {
  color: var(--white50);
}
.header__search-input::placeholder, .header__search-input::-webkit-input-placeholder, .header__search-input:-ms-input-placeholder, .header__search-input::-ms-input-placeholder {
  color: var(--white50);
}
.header__search-input:-moz-placeholder, .header__search-input::-moz-placeholder {
  color: var(--white50);
  opacity: 1;
}

.header__search-btn {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M8.40008 15.494H3.14925C2.80425 15.494 2.52425 15.214 2.52425 14.869C2.52425 14.524 2.80425 14.244 3.14925 14.244H8.40008C8.74508 14.244 9.02508 14.524 9.02508 14.869C9.02508 15.214 8.74508 15.494 8.40008 15.494' fill='%23FDFDFD'/%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M15.9924 7.41699H10.7424C10.3974 7.41699 10.1174 7.13699 10.1174 6.79199C10.1174 6.44699 10.3974 6.16699 10.7424 6.16699H15.9924C16.3374 6.16699 16.6174 6.44699 16.6174 6.79199C16.6174 7.13699 16.3374 7.41699 15.9924 7.41699' fill='%23FDFDFD'/%3e%3cmask id='mask0_2_4082' style='mask-type:luminance' maskUnits='userSpaceOnUse' x='2' y='4' width='6' height='6'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.5 4.16699H7.68817V9.32666H2.5V4.16699Z' fill='white'/%3e%3c/mask%3e%3cg mask='url(%23mask0_2_4082)'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.09398 5.41669C4.35315 5.41669 3.74982 6.01335 3.74982 6.74752C3.74982 7.48085 4.35315 8.07669 5.09398 8.07669C5.83565 8.07669 6.43815 7.48085 6.43815 6.74752C6.43815 6.01335 5.83565 5.41669 5.09398 5.41669M5.09398 9.32669C3.66398 9.32669 2.49982 8.17002 2.49982 6.74752C2.49982 5.32502 3.66398 4.16669 5.09398 4.16669C6.52482 4.16669 7.68815 5.32502 7.68815 6.74752C7.68815 8.17002 6.52482 9.32669 5.09398 9.32669' fill='%23FDFDFD'/%3e%3c/g%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M14.4897 13.5067C13.7481 13.5067 13.1447 14.1033 13.1447 14.8367C13.1447 15.5708 13.7481 16.1667 14.4897 16.1667C15.2306 16.1667 15.8331 15.5708 15.8331 14.8367C15.8331 14.1033 15.2306 13.5067 14.4897 13.5067M14.4897 17.4167C13.0589 17.4167 11.8947 16.2592 11.8947 14.8367C11.8947 13.4142 13.0589 12.2567 14.4897 12.2567C15.9197 12.2567 17.0831 13.4142 17.0831 14.8367C17.0831 16.2592 15.9197 17.4167 14.4897 17.4167' fill='%23FDFDFD'/%3e%3c/svg%3e");
  background-size: cover;
}

.header__login {
  min-width: 195px;
}
.header__login .select__btn {
  border: 2px solid var(--white50);
  padding: 7px 44px 7px 16px;
}
.header__login .select__list {
  top: 40px;
}

.main-content {
  position: relative;
  width: calc(100vw - var(--sidebar-width));
  height: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
}

.content {
  width: 100%;
  height: 100%;
  padding: 20px var(--padding-right) 10px var(--padding-left);
  overflow-y: auto;
}

.container {
  position: relative;
  height: calc(100vh - var(--header-height));
  width: calc(100vw - var(--sidebar-width));
  left: var(--sidebar-width);
  transition: left 0.4s ease-in-out;
}

.container.sidebar--close {
  width: 100%;
  left: 0;
}
.container.sidebar--close .main-content {
  width: 100%;
}

.sidebar {
  position: absolute;
  left: calc(0px - var(--sidebar-width));
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  width: var(--sidebar-width);
  height: 100%;
  padding: 30px 0;
  background: var(--main-color);
  z-index: 10;
}

.swipe-area {
  position: absolute;
  width: 40px;
  left: 0;
  top: 0;
  height: 100%;
  background: var(--main-color);
  z-index: 10;
}

.sidebar-toggle {
  background: var(--main-color);
  border: 1px solid var(--white50);
  border-radius: 3px;
  display: inline-block;
  position: absolute;
  top: 10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 24px;
  height: 24px;
  background-size: 14px;
  background-image: url(./../img/sidebar-close.svg);
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
}

.sidebar__nav {
  padding-left: 15px;
  overflow-y: auto;
}

.sidebar__info {
  margin-top: auto;
  padding-top: 30px;
  padding-left: 15px;
}

.sidebar__info-text {
  color: var(--white50);
}

.sidebar__info-login {
  color: var(--white);
}

.sidebar__list-wrapper:not(:last-child) {
  margin-bottom: 30px;
}

.sidebar__list-title {
  position: relative;
  display: inline-block;
  margin-bottom: 10px;
  padding-bottom: 2px;
  color: var(--white);
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
}
.sidebar__list-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: var(--accent);
}

.sidebar__list {
  color: var(--white50);
}

.sidebar__list-item + li {
  margin-top: 1px;
}

.sidebar__link {
  position: relative;
  display: block;
  padding: 7px 0;
  font-size: 16px;
  font-weight: 100;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}
.sidebar__link:hover {
  color: var(--white);
}

.sidebar__link.sidebar__link--active {
  color: var(--white);
  /*pointer-events: none;*/
}
.sidebar__link.sidebar__link--active::before {
  content: '';
  position: absolute;
  top: 0;
  left: -15px;
  width: 5px;
  height: 100%;
  background-color: var(--accent);
  border-radius: 0px 100px 100px 0px;
}

.admin {
  color: var(--dark-grey);
}

.admin__title {
  margin-bottom: 30px;
}

.admin__link {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 20px;
}
.admin__link:hover {
  color: var(--main-color);
}

.admin__link + .admin__link {
  margin-top: 20px;
}

.admin__svg {
  width: 24px;
  height: 24px;
}

/* таблица */
.service .section-title {
  margin-bottom: 10px;
}

.service .all__conrtols-select {
  margin-bottom: 10px;
}

.service__arrows {
  display: -webkit-box;
  display: flex;
  gap: 5px;
  margin-bottom: 10px;
}

.service__btn {
  margin-bottom: 30px;
  padding: 10px 20px;
  background: rgba(13, 73, 193, 0.2);
  border: 1px solid var(--accent);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 8px;
}
.service__btn:hover {
  box-shadow: 0px 0px 15px var(--accent50);
}

.arrow_btn {
  width: 30px;
  padding: 5px;
  border: 1px solid var(--dark-grey);
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  border-radius: 5px;
}
.arrow_btn:hover {
  background-color: var(--grey50);
}

.arrow_example {
  width: 12px;
  height: 12px;
}

.pagination_adm {
  margin-left: 15px;
  display: -webkit-box;
  display: flex;
  gap: 8px;
}

.pagination_page {
  padding: 5px 8px;
  border: 1px solid var(--dark-grey);
  border-radius: 5px;
  text-decoration: none;
}
.pagination_page:hover {
  background-color: var(--grey50);
}

.service-table {
  margin-bottom: 20px;
  border-collapse: collapse;
}

.service-table__th,
.service-table__td {
  padding: 8px 10px;
  width: 0;
  white-space: nowrap;
  border: 1px solid var(--dark-grey);
  text-align: left;
}

.service-table__th-wrap {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
          align-items: center;
  gap: 10px;
}

.desc .arrow_example {
  margin-top: 3px;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--main-color);
  border-right: 2px solid var(--main-color);
  display: inline-block;
  transition: 1s;
  -webkit-transform: translate(0, -4px) rotate(135deg);
          transform: translate(0, -4px) rotate(135deg);
}

.service-table__tr:nth-child(2n),
.service-table__tr:nth-child(2n) input {
  background-color: var(--grey50);
}

.checkbox-btn {
  display: inline-block;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  position: relative;
}

.checkbox-btn input[type="checkbox"] {
  position: absolute;
  z-index: -1;
  opacity: 0;
  display: block;
  width: 0;
  height: 0;
}

.checkbox-btn span {
  display: inline-block;
  cursor: pointer;
  padding: 5px 10px;
  border: 1px solid var(--dark-grey);
  border-radius: 4px;
  transition: 0.3s;
}
.checkbox-btn span:hover {
  background-color: var(--accent50);
}

.service-table__td input[type="text"] {
  padding: 5px 10px;
  border: 1px solid var(--main-color30);
  border-radius: 4px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.service-table__td input[type="text"]:focus {
  border: 1px solid var(--accent);
  box-shadow: 0 0 10px var(--accent50);
}

.profile {
  padding-bottom: 30px;
  border-bottom: 1px solid var(--main-color30);
}

.profile__title {
  margin-bottom: 10px;
}

.profile__text {
  margin-bottom: 20px;
}

.profile__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.profile__right {
  padding-left: 50px;
  border-left: 1px solid var(--main-color30);
}

.profile__info > * + * {
  margin-top: 10px;
}

.profile__form + .profile__form {
  margin-top: 30px;
}

.profile__form-title {
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 18px;
}

.profile__form-label {
  margin-bottom: 6px;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  width: fit-content;
}
.profile__form-label span {
  margin-bottom: 2px;
}

.profile__form-input {
  padding: 6px 16px;
  max-width: 200px;
  background-color: transparent;
  border: 2px solid var(--grey);
  border-radius: 8px;
}
.profile__form-input.profile__form-input--old {
  background-color: #FAF8DE;
}

.profile__form-btn {
  margin-top: 8px;
  width: 200px;
  display: inline-block;
  padding: 12px 8px;
  background-color: var(--accent);
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  font-weight: 500;
  color: var(--white);
}
.profile__form-btn:hover, .profile__form-btn:focus {
  box-shadow: 0px 0px 15px var(--accent80);
}
.profile__form-btn.profile__form-btn--disabled {
  cursor: not-allowed;
  background-color: var(--dark-grey);
}
.profile__form-btn.profile__form-btn--disabled:hover, .profile__form-btn.profile__form-btn--disabled:focus {
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.25);
}

.profile__sites-list {
  margin-bottom: 30px;
}
.profile__sites-list > * + * {
  margin-top: 15px;
}
.profile__sites-list .profile__sites-item {
  padding-left: 21px;
  background-image: url("./../img/check.svg");
  background-size: 16px;
  background-position: left center;
  background-repeat: no-repeat;
}

.sites-form {
  max-width: 430px;
  width: 100%;
}

.sites-form__textarea {
  display: inline-block;
  resize: vertical;
  width: 100%;
  margin-top: 10px;
  padding: 8px 16px;
  border: 2px solid var(--grey);
  border-radius: 8px;
}

.user-leads {
  padding: 40px 0 50px;
}

.user-leads__title {
  margin-bottom: 30px;
}

.user-leads__wrap {
  display: grid;
 /* grid-template-columns: repeat(auto-fill, minmax(290px, 32%));*/
  gap: 30px 20px;
}

.user-leads__wrap.hidden_leads {
  margin-top: 0;
}

.user-leads__wrap.my_leads {
  margin-top: 40px;
}

.user-lead {
  padding: 20px;
  width: 100%;
  background-color: #FFFFFF;
  box-shadow: 0px 0px 10px var(--main-color30);
  border-radius: 10px;
}

.user-lead__list > * + * {
  margin-top: 8px;
}

.user-lead__item.user-lead__item--btn {
  margin-top: 20px;
}

.user-lead__item {
  color: var(--dark-grey);
}
.user-lead__item span {
  font-weight: 500;
  color: var(--main-color);
}

.user-lead__quality {
  padding: 5px 10px;
  border: 1px solid rgba(39, 42, 48, 0.5);
  border-radius: 8px;
  background-color: transparent;
  font-size: 14px;
}

.user-lead__btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--accent20);
  border: 1px solid #0D49C1;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  color: var(--main-color);
}
.user-lead__btn:hover, .user-lead__btn:focus {
  box-shadow: 0px 0px 15px var(--accent50);
}

.user-leads__show-btn {
  display: inline-block;
  padding: 12px 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  background-color: var(--accent);
  color: var(--white);
  transition: 0.3s;
  cursor: pointer;
}
.user-leads__show-btn:hover, .user-leads__show-btn:focus {
  box-shadow: 0px 0px 15px var(--accent50);
}

.my_leads.hidden_leads {
  display: none;
}

.leads-table {
  width: 100%;
  border-collapse: collapse;
}

.leads-table__thead, .leads-table__tfoot {
  border-top: 1px solid var(--main-color30);
  border-bottom: 1px solid var(--main-color30);
}

.leads-table__th {
  padding: 10px 5px;
  text-align: left;
  font-weight: 600;
  font-size: 16px;
}

.leads-table__tbody {
  color: var(--main-color);
}

.leads-table__td {
  padding: 10px 5px;
}

.leads-table__td--btns {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.leads-table__btn {
  display: block;
  padding: 5px 20px;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  font-weight: 600;
  font-size: 12px;
  color: var(--white);
}

.leads-table__btn--buy {
  background-color: var(--green);
}
.leads-table__btn--buy:hover, .leads-table__btn--buy:focus {
  box-shadow: 0px 0px 8px var(--green);
}

.leads-table__btn--fav {
  background-color: var(--accent50);
}
.leads-table__btn--fav:hover, .leads-table__btn--fav:focus {
  box-shadow: 0px 0px 8px var(--green);
}

.leads-table__btn--del {
  background-color: var(--yellow);
}
.leads-table__btn--del:hover, .leads-table__btn--del:focus {
  box-shadow: 0px 0px 8px var(--yellow);
}

.leads-table__btn--hide {
  background-color: var(--red);
}
.leads-table__btn--hide:hover, .leads-table__btn--hide:focus {
  box-shadow: 0px 0px 8px var(--red);
}

.favorites__title {
  margin-bottom: 30px;
}

.favorites__table .leads-table__th:last-child {
  width: 275px;
}

.favorites__table .leads-table__td:last-child {
  width: 275px;
}

.all__title span {
  font-weight: 400;
  font-size: 20px;
}

.all__controls, .all__conrtols-select {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
}

.all__controls {
  margin-bottom: 40px;
  gap: 30px;
}

.all__conrtols-select {
  gap: 10px;
}

.all__select {
  padding: 5px 12px 6px;
  border: 2px solid var(--grey);
  border-radius: 8px;
  background-color: transparent;
  font-size: 14px;
  cursor: pointer;
}

.all__search {
  position: relative;
  max-width: 400px;
  padding: 5px 20px 5px 48px;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
          align-items: center;
  gap: 10px;
  border: 2px solid var(--grey);
  border-radius: 8px;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg viewBox='0 0 18 19' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cmask id='mask0_19_8142' style='mask-type:luminance' maskUnits='userSpaceOnUse' x='1' y='2' width='16' height='15'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M1.5 2H16.1076V16.6077H1.5V2Z' fill='white'/%3e%3c/mask%3e%3cg mask='url(%23mask0_19_8142)'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M8.80413 3.125C5.39688 3.125 2.62488 5.89625 2.62488 9.3035C2.62488 12.7108 5.39688 15.4827 8.80413 15.4827C12.2106 15.4827 14.9826 12.7108 14.9826 9.3035C14.9826 5.89625 12.2106 3.125 8.80413 3.125M8.80413 16.6077C4.77663 16.6077 1.49988 13.331 1.49988 9.3035C1.49988 5.276 4.77663 2 8.80413 2C12.8316 2 16.1076 5.276 16.1076 9.3035C16.1076 13.331 12.8316 16.6077 8.80413 16.6077' fill='%23212130'/%3e%3c/g%3e%3cmask id='mask1_19_8142' style='mask-type:luminance' maskUnits='userSpaceOnUse' x='12' y='13' width='5' height='5'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M12.9299 13.7802H16.698V17.5413H12.9299V13.7802Z' fill='white'/%3e%3c/mask%3e%3cg mask='url(%23mask1_19_8142)'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M16.1356 17.5413C15.9924 17.5413 15.8484 17.4865 15.7381 17.377L13.0951 14.7415C12.8754 14.5218 12.8746 14.1655 13.0944 13.9458C13.3134 13.7245 13.6696 13.726 13.8901 13.9443L16.5331 16.5805C16.7529 16.8003 16.7536 17.1558 16.5339 17.3755C16.4244 17.4865 16.2796 17.5413 16.1356 17.5413' fill='%23212130'/%3e%3c/g%3e%3c/svg%3e ");
  background-size: 18px;
  background-repeat: no-repeat;
  background-position: 20px center;
}

.all__search-input {
  width: 100%;
  height: 100%;
  display: inline-block;
  -webkit-box-flex: 1;
          flex-grow: 1;
  background-color: transparent;
  color: var(--main-color);
}
.all__search-input::-webkit-input-placeholder, .all__search-input::-webkit-input-placeholder, .all__search-input:-ms-input-placeholder, .all__search-input::-ms-input-placeholder {
  color: var(--white50);
}
.all__search-input::placeholder, .all__search-input::-webkit-input-placeholder, .all__search-input:-ms-input-placeholder, .all__search-input::-ms-input-placeholder {
  color: var(--white50);
}
.all__search-input:-moz-placeholder, .all__search-input::-moz-placeholder {
  color: var(--white50);
  opacity: 1;
}

.all__search-btn {
  display: inline-block;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='18' height='19' viewBox='0 0 18 19' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M7.5601 14.4446H2.83435C2.52385 14.4446 2.27185 14.1926 2.27185 13.8821C2.27185 13.5716 2.52385 13.3196 2.83435 13.3196H7.5601C7.8706 13.3196 8.1226 13.5716 8.1226 13.8821C8.1226 14.1926 7.8706 14.4446 7.5601 14.4446' fill='%23212130'/%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M14.3932 7.17529H9.66821C9.35771 7.17529 9.10571 6.92329 9.10571 6.61279C9.10571 6.30229 9.35771 6.05029 9.66821 6.05029H14.3932C14.7037 6.05029 14.9557 6.30229 14.9557 6.61279C14.9557 6.92329 14.7037 7.17529 14.3932 7.17529' fill='%23212130'/%3e%3cmask id='mask0_19_8144' style='mask-type:luminance' maskUnits='userSpaceOnUse' x='2' y='4' width='5' height='5'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.25 4.25031H6.91935V8.894H2.25V4.25031Z' fill='white'/%3e%3c/mask%3e%3cg mask='url(%23mask0_19_8144)'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M4.58463 5.375C3.91788 5.375 3.37488 5.912 3.37488 6.57275C3.37488 7.23275 3.91788 7.769 4.58463 7.769C5.25213 7.769 5.79438 7.23275 5.79438 6.57275C5.79438 5.912 5.25213 5.375 4.58463 5.375M4.58463 8.894C3.29763 8.894 2.24988 7.853 2.24988 6.57275C2.24988 5.2925 3.29763 4.25 4.58463 4.25C5.87238 4.25 6.91938 5.2925 6.91938 6.57275C6.91938 7.853 5.87238 8.894 4.58463 8.894' fill='%23212130'/%3e%3c/g%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M13.0408 12.656C12.3733 12.656 11.8303 13.193 11.8303 13.853C11.8303 14.5138 12.3733 15.05 13.0408 15.05C13.7076 15.05 14.2498 14.5138 14.2498 13.853C14.2498 13.193 13.7076 12.656 13.0408 12.656M13.0408 16.175C11.7531 16.175 10.7053 15.1333 10.7053 13.853C10.7053 12.5728 11.7531 11.531 13.0408 11.531C14.3278 11.531 15.3748 12.5728 15.3748 13.853C15.3748 15.1333 14.3278 16.175 13.0408 16.175' fill='%23212130'/%3e%3c/svg%3e ");
  background-size: cover;
}

.all__table .leads-table__tbody .leads-table__tr {
  transition: 0.3s;
}
.all__table .leads-table__tbody .leads-table__tr.aqua {
  background-color: var(--accent20);
}

.all__table .leads-table__tbody .leads-table__tr:hover.aqua {
  background-color: var(--accent30);
}

.all__table .leads-table__tbody .leads-table__tr:hover {
  background-color: var(--grey50);
}
/*
.all__table .leads-table__th:not(:last-child) {
  cursor: pointer;
}
*/
.all__table .leads-table__th:not(:last-child),
.all__table .leads-table__td:not(:last-child) {
  border-right: 1px solid var(--main-color30);
}

.all__table .leads-table__th,
.all__table .leads-table__td {
  position: relative;
  padding-left: 10px;
  padding-right: 20px;
}
.all__table .leads-table__th:first-child,
.all__table .leads-table__td:first-child {
  padding-left: 5px;
}
.all__table .leads-table__th:last-child,
.all__table .leads-table__td:last-child {
  padding-right: 5px;
  max-width: 385px;
  min-width: 180px;
}

.all__table.all__table--web .leads-table__th:last-child,
.all__table.all__table--web .leads-table__td:last-child {
  min-width: 120px;
}

.data-sorter .leads-table__th:not(:last-child)::before {
  top: 10%;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M1.86234 6.67928C1.97329 6.79023 2.1469 6.80031 2.26923 6.70954L2.30428 6.67928L4.99998 3.98373L7.69568 6.67928C7.80662 6.79023 7.98023 6.80031 8.10257 6.70954L8.13762 6.67928C8.24856 6.56834 8.25865 6.39473 8.16788 6.27239L8.13762 6.23734L5.22095 3.32068C5.11001 3.20973 4.9364 3.19965 4.81406 3.29042L4.77901 3.32068L1.86234 6.23734C1.7403 6.35938 1.7403 6.55725 1.86234 6.67928Z' fill='%23212130' /%3e%3c/svg%3e ");
}

.data-sorter .leads-table__th:not(:last-child)::after {
  bottom: 10%;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M1.86234 3.32072C1.97329 3.20977 2.1469 3.19969 2.26923 3.29046L2.30428 3.32072L4.99998 6.01627L7.69568 3.32072C7.80662 3.20977 7.98023 3.19969 8.10257 3.29046L8.13762 3.32072C8.24856 3.43166 8.25865 3.60527 8.16788 3.72761L8.13762 3.76266L5.22095 6.67932C5.11001 6.79027 4.9364 6.80035 4.81406 6.70958L4.77901 6.67932L1.86234 3.76266C1.7403 3.64062 1.7403 3.44275 1.86234 3.32072Z' fill='%23212130' /%3e%3c/svg%3e ");
}
/*
.data-sorter .leads-table__th:not(:last-child)::before,
.data-sorter .leads-table__th:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 6px;
  width: 14px;
  height: 14px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
*/
.all .table_bottom {
  margin: 30px 0 20px;
  font-weight: 500;
  font-size: 18px;
}
.all .table_bottom .accent-text {
  font-size: 20px;
}

.all .pagination {
  display: -webkit-box;
  display: flex;
  gap: 5px;
}
.all .pagination .data-page {
  display: block;
  padding: 5px 10px;
  background-color: transparent;
  color: var(--dark-grey);
  cursor: pointer;
  transition: background-color 0.5s;
}
.all .pagination .data-page:hover {
  background-color: var(--grey);
}
.all .pagination .data-page.paged_active {
  background-color: var(--accent80);
  color: var(--white);
}

.footer {
  margin-top: auto;
  padding: 8px var(--padding-right) 8px var(--padding-left);
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
          align-items: center;
  background: #D9D9D9;
  border-top: 1px solid var(--dark-grey);
  font-size: 12px;
  color: var(--dark-grey);
}

.footer__nav {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
}

.footer__link:hover {
  color: var(--main-color);
}

.footer__link-separator {
  margin: 0 10px;
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--dark-grey);
}

.popup-fade {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.popup-fade.popup-fade::before {
  content: '';
  background: #000;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.7;
  z-index: 9999;
}


.popup_style {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  padding: 40px 20px;
  width: 290px;
  background-color: var(--white);
  border: 2px solid var(--main-color);
  border-radius: 10px;
  box-shadow: 0 0 50px #000;
  z-index: 99999;
  opacity: 1;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  text-align: center;
  -webkit-box-align: center;
          align-items: center;
}

.popup-title {
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 20px;
}

.popup-price {
  margin-bottom: 20px;
}

.l_price {
  font-weight: 600;
}

.flex_text {
  display: -webkit-box;
  display: flex;
  gap: 20px;
}

.confirm_style {
  display: block;
  width: 90px;
  padding: 10px 30px;
  border-radius: 8px;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
}

.confirm_yes, .confirm_del, .confirm_del_lead {
  background-color: var(--green);
}

.confirm_no, .confirm_no_del {
  background-color: var(--red);
}

input[type=text]::-ms-clear {  display: none; width : 0; height: 0; }
input[type=text]::-ms-reveal {  display: none; width : 0; height: 0; }
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration { display: none; }

/*# sourceMappingURL=main.css.map */

.activepage{
  background: #cdd9f2;
}

/* Checked */
.checkbox-btn input[type=checkbox]:checked + span {
	background: #cdd9f2;
}
 
/* Focus */
.focused span {
	box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
}
 
/* Active */
.checkbox-btn input[type=checkbox]:active:not(:disabled) + span {
	background: #e5eaf3;
	color: #000;
}

.inp {
	display: flex;
	align-items: center;
	gap: 10px;
}
.inp label {
	white-space: nowrap;
}
.inp .all__search {
	background-image: none;
	padding-left: 10px;
	flex-grow: 1;
}
.select_region .all__select,
.select_city .all__select {
	scrollbar-width: thin;
	max-width: 350px;
	width: 100%;
}
.select_city, .select_region{
	display: flex;
	
	gap: 5px;
	align-items: flex-start;
	width: 100%;
}
.hidden_region{
	display: none;
}
.select_wrap {
	width: 100%;
	display: flex;
	gap: 30px;
}
.all__controls.all__controls--wrap {
	flex-direction: column;
	align-items: flex-start;
	gap: 20px;
}
.user-lead__btn.user-lead__btn--comment {
	margin-top: 10px;
	background-color: #fff;
}

#avtopart_form_settings{
  display: none;
}

.avtopart_form_settings_open{
  display: block!important;
}

#avtopart_form_settings_css{
  border: 1px solid rgb(99, 99, 99);
  padding: 8px;
  border-radius: 12px;
}

.textarea{
  padding: 10px;
  border: 1px solid #000;
  border-radius: 12px;
}

.save_css{
  border-radius: 8px;
  padding: 5px 10px;
  background-color: rgb(77, 77, 77);
  color: white;
  margin: 10px 0 35px 0;
}

.save_css:hover{
  opacity: .8;
  transition: .15 ease-in;
}

#copyText{
  color: #0D49C1;
  text-decoration: underline;
  cursor: pointer;
}

.copied{
  display: none;
  position: fixed;
  bottom: 60px;
  right: 60px;
  z-index: 888;
  color: #000;
  padding: 15px 25px;
  border: 3px solid #000;
  border-radius: 12px;
}

#copyText:hover{
  color: #5783dc;
  transition: .15 ease-in;
}

.highlight{
  text-decoration: underline;
  cursor: pointer;
}

.highlight:hover{
  opacity: .75;
  text-decoration: underline;
}

.open_form_settings{
  margin: 25px 0;
}

.popup_del_open:hover{
  color: red;
  cursor: pointer;
}

.grafiki{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.canvas_wrap{
  width: 49%;
}


.delete_fav::after, .add_fav::after {
  display: block;
  content: "";
  width: 24px;
  height: 24px;
  background-size: cover;
  cursor: pointer;
}

.delete_fav::after{
  background-image: url(./../img/delete_fav.svg);
}

.add_fav::after {
  background-image: url(./../img/add_fav.svg);
}

.leads-table__th_span{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.filter_btn{
  cursor: pointer;
  width: 20px;
  height: 20px;
}

.sortPanel{
  top: 110px;
}

.not_exclusive{
  background-color: #c0e6ff;
}

.unique_bought{
  background-color: #c8ffda;
}

.dataTable-table{
  position: relative;
}

.sortPanel {
  padding: 10px;
  background-color: white;
  border: 2px solid var(--main-color30);
  display: none;
  flex-direction: column;
  position: absolute;
  z-index: 99;
max-height: 400px;
  overflow: hidden auto;
}
.sortPanel > * + * {
margin-top: 20px;
}
.sortAZ > * + *,
.sortExcel > * + *,
.checkAll-wrap > * + * {
margin-top: 10px;
}
.sortExcel {
  display: flex;
  flex-direction: column;
}
.sortExcelCheckbox input {
margin-right: 10px;
}
.searchSortInp.profile__form-input {
max-width: 100%;
padding: 5px 10px;
}
.checkAll, .offCheckAll {
max-width: 120px;
width: 100%;
}
.sortAZ_button, .sortAZ_button {
cursor: pointer;
transition: 0.3s;
}
.sortAZ_button:hover, .sortAZ_button:hover {
color: var(--accent);
}
.sortAZ_active {
  font-weight: 700;
  color: var(--accent);
}

.sortPanel::-webkit-scrollbar {
  width: 11px;
}
.sortPanel {
  scrollbar-width: thin;
  scrollbar-color: var(--accent30) var(--grey);
}
.sortPanel::-webkit-scrollbar-track {
  background: #D9D9D9;
}
.sortPanel::-webkit-scrollbar-thumb {
  background-color: var(--accent30);
  border-radius: 6px;
  border: 3px solid #D9D9D9;
}

.red_lead_btn{
  background-color: rgb(210 24 84 / 20%);
  border: 1px solid #c10d76;
}

.admin_ul{
  margin-bottom: 10px;
  padding: 3px;
  border: 1px solid var(--main-color30);
  border-radius: 6px;
}

.admin_ul li{
  white-space: pre-wrap;
}