@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/montserrat-v30-cyrillic_cyrillic-ext_latin_latin-ext-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/montserrat-v30-cyrillic_cyrillic-ext_latin_latin-ext-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/montserrat-v30-cyrillic_cyrillic-ext_latin_latin-ext-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/montserrat-v30-cyrillic_cyrillic-ext_latin_latin-ext-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/montserrat-v30-cyrillic_cyrillic-ext_latin_latin-ext-800.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/montserrat-v30-cyrillic_cyrillic-ext_latin_latin-ext-900.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Onest';
  src: url('../fonts/Onest-VariableFont_wght.ttf') format('truetype');
}

html {
  margin: 0;
  background-color: #0E0D10;
}

body {
  margin: 0;
  padding: 0;
  font-family: Montserrat;
}

a {
  text-decoration: none;
  color: #9E9DA2;
}

.skeleton {
  background-size: 200% 100%;
  border-radius: 16px;
  flex-direction: column;
  gap: 12px;
  position: relative;
  display: flex;
}

.skeleton-text {
  display: inline-block;
  height: 20px;
  background: linear-gradient(90deg, #17161b 25%, #222129 50%, #222129 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.2s infinite;
  border-radius: 16px;
  display: flex;
}

.skeleton::before {
  content: '';
  height: 140px;
  width: 100%;
  background: linear-gradient(90deg, #17161b 25%, #222129 50%, #222129 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.2s infinite;
  border-radius: 10px;
}

.skeleton::after {
  content: '';
  width: 100%;
  flex: 1;
  background: linear-gradient(90deg, #17161b 25%, #222129 50%, #222129 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.2s infinite;
  border-radius: 10px;
}



.dnone {
  display: flex;
}

.skeleton.progress {
  height: 30%;
  width: 80%;
}

.skeleton.diagram {
  width: 95%;
  height: 70%;
}

.skeleton.table {
  padding: 16px 4px;
  height: 200px;
  width: 98%;
  margin: 0 auto;
}

.skeleton.order {
  min-width: 250px;
  min-height: 346px;
}

.skeleton.offer {
  min-width: 250px;
  min-height: 400px;
}


.skeleton.achive {
  min-width: 240px;
}

.skeleton.inp {
  height: 6ch;
  width: 200px;
}

.skeleton-text.short-2char {
  width: 2ch;
  /* ширина на 2 символа, адаптивно к шрифту */
  height: 2ch;
}

.skeleton-text.short-4char {
  width: 4ch;
  /* ширина на 4 символа, адаптивно к шрифту */
  height: 2ch;
}

.skeleton-text.short-6char {
  width: 6ch;
  /* ширина на 10 символов, адаптивно к шрифту */
  height: 2ch;
}

.skeleton-text.short-10char {
  width: 10ch;
  /* ширина на 10 символов, адаптивно к шрифту */
  height: 2ch;
}

@keyframes skeleton-loading {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

.container {
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: row;
  transition: all .3s linear;
  position: relative;
  min-height: 100vh;
}

.modal_promo {
  z-index: 3;
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
}

.modal_promo p {
  margin: 0;
  padding: 0;
}

.block_promo {
  width: 390px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(25, 25, 30, 0.95);
  backdrop-filter: blur(8px);
  position: relative;
  color: #FFF;
  font-family: Onest;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  opacity: 0;
  transform: translateY(100%);

  transition:
    transform 0.35s cubic-bezier(.25, .46, .45, .94),
    opacity 0.25s ease-out;
}

.block_promo.modal_open {
  opacity: 1;
  transform: translateY(0%);
}

.modal_promo_close {
  position: absolute;
  top: 8px;
  right: 8px;
  cursor: pointer;
}

.promo_text {
  font-weight: 600;
  font-size: 21px;
}

.promo_input {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;

  label {
    color: #9E9DA2;
  }
}

.promo_in {
  display: flex;
  padding: 16px;
  align-items: center;
  border-radius: 16px;
  background: #212025;
  border: none;
  outline: none;
  color: #9E9DA2;
}

.promo_in::placeholder {
  color: #9E9DA2;
}

.promo_btn {
  display: flex;
  height: 44px;
  padding: 16px 24px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  align-self: stretch;
  box-sizing: border-box;
  border-radius: 16px;
  background: #F5F5F5;
  color: #000;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  border: none;
}

.promo_btn:hover {
  filter: brightness(0.9);
}

.promo_btn:active {
  filter: brightness(0.85);
}

.promo_stats {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;

  p {
    color: #9E9DA2;
  }

  span {
    color: #9E9DA2;
  }
}

.promo_stats_item {
  display: flex;
  height: 48px;
  padding: 0px 16px;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
  border-radius: 16px;
  background: #1A191F;
}

.block_dash {
  background-color: #17161B;
  display: flex;
  flex-direction: column;
  width: calc(100% - 309px);
}


.block_dash::-webkit-scrollbar {
  display: none;
}

.block_main {
  background-color: #0E0D10;
  border-top-left-radius: 32px;
  border-bottom-left-radius: 32px;
  min-height: 90%;
}

.block_menu {
  display: flex;
  flex-direction: column;
  transition: all .3s linear;
  overflow: hidden;
  width: 309px;
  background-color: #17161B;
}


.block_logo {
  padding-top: 24px;
  padding-left: 40px;
  margin-bottom: 20px;
  font-family: Montserrat;
  color: #FFF;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  -webkit-text-stroke-width: 1;
  -webkit-text-stroke-color: #000;
  font-family: Montserrat;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -1.12px;
  flex-shrink: 0;
  max-height: 39px;
  display: flex;
  align-items: center;
}

.menu {
  border-radius: 24px 24px 0px 0px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  flex: 1;
  overflow-y: auto;
  scrollbar-width: none;
}

.menu::-webkit-scrollbar {
  display: none;
}

.section_menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-self: stretch;
  padding: 0 24px;
  flex-shrink: 0;
  flex-grow: 1;
  flex: 1;
}

.el_menu {
  display: flex;
  width: 100%;
  box-sizing: border-box;
  padding: 16px;
  align-items: center;
  gap: 8px;
  color: #9E9DA2;
  font-family: Onest;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.16px;
  cursor: pointer;
  text-decoration: none;
}

.act {
  color: white;

  svg {
    path {
      fill: #fff;
    }
  }
}

.el_menu.mg {
  margin-top: 24px;
}

.el_menu {
  transition: color .25s ease;
}

.el_menu svg path {
  transition: fill .25s ease;
}

.el_menu:hover {
  color: #fff;
}

.el_menu:hover svg path {
  fill: #fff;
}

.el_menu.gt:hover svg {
  path{
    fill: none;
    stroke: #fff;
  }
}

.el_menu_svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.el_menus {
  display: flex;
  align-items: center;
  gap: 8px;
}

.offers,
.merch,
.gate_ad,
.offers_ad,
.monitor_ad {
  justify-content: space-between;
}

.active {
  display: flex;
  flex-direction: column;
}

.noneactive {
  display: none;
}

.radial_bg {
  padding: 16px;
  border-radius: 16px;
  background: radial-gradient(111.06% 248.84% at 0% 49.81%, #076AF3 0%, #04139F 50%, #076AF3 100%);
  margin-bottom: 0px;
  margin-top: 0px;
  width: 100%;
  box-sizing: border-box;
  color: #fff;

  .svg_gap {
    rotate: 90deg;
  }

  .svgcl {
    path {
      fill: #fff;
      stroke: #fff;
    }
  }

  svg {
    path {
      fill: #fff;
    }
  }
}

.gt.radial_bg{
  svg{
    path{
      fill: none;
      stroke: #fff;
    }
  }
}

.svgrt {
  rotate: 90deg;
}

.header {
  height: 40px;
  padding: 24px 40px 24px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  gap: 24px;
  background-color: #17161B;
}

.modal_notification {
  position: fixed;
  width: 300px;
  min-height: 50px;
  top: 20px;
  right: 20px;
  z-index: 3;
  color: #FFF;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  /* 142.857% */
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.block_notification {
  padding: 24px;
  min-height: 50px;
  border: none;
  border-radius: 16px;
  background: rgba(83, 87, 97, 0.30);
  backdrop-filter: blur(40px);
  display: flex;
  align-items: center;
  animation: slideDown 0.4s ease-out;
  transition: opacity 0.4s ease, transform 0.4s ease;
  opacity: 1;
}

.svg_notification_close {
  position: absolute;
  top: 8px;
  right: 8px;
}

@keyframes slideDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.block_notification.fade-out {
  opacity: 0;
  transform: translateY(-20px);
}

.quote_content {
  flex: 1;
}

.author {
  color: #63646A;
  font-family: Onest;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  display: flex;
  gap: 8px;
}

.quote {
  color: #FFF;
  font-family: Onest;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-left: 23px;
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(33, 32, 37, 1);
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: '';
  height: 40px;
  width: 40px;
  left: -3px;
  bottom: -3px;
  background-color: rgba(23, 22, 27, 1);
  background-image: url('../../image/MoonStars.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px 20px;
  -webkit-transition: .4s;
  transition: .4s;
  display: block;
}


input:checked+.slider {
  background-color: #E1E3E5;
}

input:focus+.slider {
  box-shadow: 0 0 1px;
}

input:checked+.slider:before {
  background-image: url('../../image/sun.svg');
  /* Новое изображение */
  transform: translateX(26px);
  background-color: #fff;
}

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.logo_profile {
  background-color: #0068F7;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  text-align: center;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.16px;
  text-transform: capitalize;
  margin-left: 24px;
  cursor: pointer;
  text-decoration: none;
}

.header_menu {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.info_profile {
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #fff;
}

.balance {
  a {
    color: #FFF;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
    text-decoration: none;
  }
}

.user_name {
  a {
    color: #79787D;
    font-family: Montserrat;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
    text-decoration: none;
  }
}

.out {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  background: #17161B;
  margin-left: 76px;
  text-decoration: none;
}

.out:hover {
  filter: brightness(0.8);
}



.header_text {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
}

.close_menu {
  cursor: pointer;
  display: none;
}

.open_menu {
  cursor: pointer;
  display: none;
}

.button_nav2 {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  gap: 8px;

  a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    border-radius: 16px;
    background: #17161B;
    cursor: pointer;
  }

  a:hover {
    filter: brightness(0.9);
  }

  a:active {
    filter: brightness(0.85);
  }
}

@media(max-width:1289px) {
  .el_menu {
    font-size: 12px;
  }

  .el_menu_svg {
    left: 210px;
  }
}

@media(max-width:1170px) {
  .quote {
    font-size: 16px;
  }

  .header {
    padding: 12px;
  }
}

@media(max-width:1130px) {
  .container {
    position: relative;
  }

  .block_menu {
    display: flex;
    flex-direction: column;
    position: absolute;
    z-index: 2;
    width: 0;
    transition: all .3s linear;
    margin: 0;
    background-color: #17161B;
    height: 100%;
    gap: 20px;
  }

  .el_menu {
    width: 220px;
  }

  .el_menu_svg {
    left: 253px;
  }

  .block_dash {
    width: 100%;
    background: #0E0D10;
  }

  .open_menu,
  .close_menu {
    display: flex;
  }

  .block_logo {
    background-color: #17161B;
    display: flex;
    justify-content: space-between;
    margin-right: 20px;
    padding-top: 40px;
  }

  input,
  select {
    font-size: 16px !important;
  }

  .block_main {
    border-top-left-radius: 0px;
  }
}

.tabNew{
  padding: 8px;
  background-color: #0068F7;
  box-sizing: border-box;
  height: 20px;
  margin-left: auto;
  color: #fff;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}

.radial_bg{
  .tabNew{
    border: 1px solid #FFF;
  }
}

@media(max-width:900px) {
  .quote {
    font-size: 10px;
  }

  .author_svg {
    width: 12px;
    height: 12px;
  }
}

@media (max-width:700px) {
  .author {
    font-size: 10px;
  }

  .quote_content {
    display: none;
  }
}

@media(max-width:600px) {
  .out {
    margin-left: 20px;
  }

  .modal_promo {
    align-items: end;
  }

  .block_promo {
    width: 100%;
    border-radius: 16px 16px 0 0;
  }
}

@media(max-width:444px) {
  .logo_profile {
    margin-left: 0;
  }

  .out {
    margin-left: 0;
  }
}