@font-face {
  font-family: "SF Pro Display";
  src: url("/fonts/SFProDisplay-Black.woff2") format("woff2"), url("/fonts/SFProDisplay-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SF Pro Display";
  src: url("/fonts/SFProDisplay-Bold.woff2") format("woff2"), url("/fonts/SFProDisplay-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SF Pro Display";
  src: url("/fonts/SFProDisplay-RegularItalic.woff2") format("woff2"), url("/fonts/SFProDisplay-RegularItalic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "SF Pro Display";
  src: url("/fonts/SFProDisplay-Regular.woff2") format("woff2"), url("/fonts/SFProDisplay-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SF Pro Display";
  src: url("/fonts/SFProDisplay-Light.woff2") format("woff2"), url("/fonts/SFProDisplay-Light.woff") format("woff");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
.theme_change {
  position: absolute;
  right: 10px;
  border: none;
  background-color: transparent;
  outline: none;
}

body, html {
  background-color: #1B202A;
  color: #ffffff;
  font-family: "SF Pro Display";
  transition: all 0.3s ease-in-out;
}
body .apexcharts-legend-text, html .apexcharts-legend-text {
  color: #fff !important;
}
body.white, html.white {
  background-color: #f4f3ef;
  color: #1B202A;
}
body.white .apexcharts-legend-text, html.white .apexcharts-legend-text {
  color: #000 !important;
}
body.white .header__block, body.white .cr__content table tr, html.white .header__block, html.white .cr__content table tr {
  border-bottom: 1px #e3e3e3 solid;
}
body.white .app__sidebar, html.white .app__sidebar {
  background-color: #fff;
}
body.white .menu__item, html.white .menu__item {
  color: #1B202A !important;
}
body.white .cr, html.white .cr {
  color: #252B36;
  border-radius: 8px;
  padding: 12px 20px;
  margin: 0px 0px 30px 0px;
  background-color: #fff;
}

.auth__btn {
  background-color: rgba(57, 143, 229, 0.15);
  padding: 10px;
  width: 100%;
  outline: none !important;
  color: #fff;
  border: none;
  transition: all 0.3s ease-in-out;
}
.auth__btn:hover {
  background-color: rgba(57, 143, 229, 0.3);
}
.auth__block {
  min-height: 100vh;
  min-width: 100vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
}
.auth__logo {
  font-weight: 700;
}
.auth__header, .auth__content, .auth__footer {
  padding: 15px;
  text-align: center;
  width: 100%;
  max-width: 320px;
}
.auth__content-item {
  margin: 0px 0px 10px 0px;
}
.auth__content-input {
  border: none;
  border-radius: 0;
  padding: 10px 15px;
}
.auth__content-check {
  margin: 0px 10px 0px 0px;
}
.auth__content-check__block {
  display: flex;
  align-items: center;
  justify-content: center;
}

.app__mobile {
  display: none;
}
.app__wrapper {
  display: flex;
  flex-wrap: wrap;
  min-height: 100vh;
}
.app__sidebar {
  flex: 0 0 288px;
  max-width: 288px;
  background-color: #252B36;
}
.app__sidebar-logo {
  padding: 15px;
  font-size: 32px;
  font-weight: 700;
  position: relative;
}
.app__logout {
  padding: 5px 10px;
  color: #000;
  background-color: #FC7900;
  border-radius: 6px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
.app__logout a {
  text-decoration: none !important;
  color: #fff;
}
.app__user {
  padding: 15px;
}
.app__user-name {
  font-size: 18px;
  position: relative;
}
.app__user-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.app__user-block:hover .app__logout {
  opacity: 1;
  visibility: visible;
}
.app__content {
  flex: 0 0 calc(100% - 288px);
  max-width: calc(100% - 288px);
}

.container-fluid {
  padding: 0px 30px;
}

textarea {
  width: 100%;
  border-radius: 6px;
  border: none;
  height: 400px;
}

.cr {
  color: #fff;
  border-radius: 8px;
  padding: 12px 20px;
  margin: 0px 0px 30px 0px;
  background-color: #252B36;
}
.cr--click {
  cursor: pointer;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.cr--click:hover, .cr--click.active {
  background-color: #444f63;
}
.cr__header {
  font-size: 20px;
  font-weight: 700;
  color: #A2A8B4;
}
.cr__btn-block {
  display: flex;
  align-items: center;
  margin: 0px -15px 15px -15px;
}
.cr__btn-item {
  flex: 0 0 50%;
  padding: 0px 15px;
}
.cr__content {
  margin: 4px 0px;
}
.cr__content-title {
  font-size: 34px;
  font-weight: 900;
  margin: 0px 0px 4px 0px;
}
.cr__content-text {
  font-size: 13px;
  font-weight: 400;
}
.cr__content table {
  width: 100%;
}
.cr__content table tr {
  border-bottom: 1px #465065 solid;
}
.cr__content table tr:last-child {
  border: none;
}
.cr__content table tbody {
  border-top: 1px #465065 solid;
}
.cr__content table td, .cr__content table th {
  padding: 10px 0px;
}
.cr__footer {
  border-top: 1px #465065 solid;
}
.cr__form {
  margin: 0px 0px 30px 0px;
}
.cr__form:last-child {
  margin: 0px;
}
.cr__form-button {
  background-color: rgb(252, 121, 0);
  color: #fff !important;
  border: none;
  width: 100%;
  padding: 15px;
  border-radius: 6px;
  font-size: 18px;
  font-weight: 700;
  transition: all 0.3s ease-in-out;
}
.cr__form-button--outline {
  background: transparent;
  border: 3px #fb7901 solid;
}
.cr__form-button:hover {
  border-color: transparent;
  background-color: rgba(252, 121, 0, 0.7);
}
.cr__form-input {
  display: block;
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: none;
  outline: none !important;
}
.cr__form-label {
  font-weight: 700;
  display: block;
  margin: 0px 0px 5px 0px;
}

.warning {
  padding: 20px;
  border-radius: 6px;
  margin: 0px 0px 15px 0px;
  background-image: repeating-linear-gradient(45deg, rgb(0, 0, 0), rgb(0, 0, 0) 10px, rgb(251, 195, 46) 10px, rgb(251, 195, 46) 20px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.warning span {
  text-align: center;
  font-size: 23px;
  background-color: #000;
  color: #fff;
  padding: 5px;
}

.menu__block {
  list-style: none;
  margin: 0px;
  padding: 0px;
}
.menu__item {
  font-size: 18px;
  font-weight: 600;
  color: #fff !important;
  text-decoration: none !important;
  padding: 10px 15px;
  display: block;
  transition: all 0.3s ease-in-out;
}
.menu__item.active {
  background-color: rgba(252, 121, 0, 0.15);
  color: #FC7900 !important;
}
.menu__item:hover {
  background-color: rgba(252, 121, 0, 0.05);
  color: #FC7900 !important;
}

.apexcharts-text.apexcharts-yaxis-label,
.apexcharts-text.apexcharts-xaxis-label {
  fill: #A2A8B4;
}

.apexcharts-yaxis-title text {
  fill: #A2A8B4;
}

.apexcharts-grid-borders line, .apexcharts-gridlines-horizontal line {
  stroke: #343A46;
}

.bread-btn {
  border: none;
  background: #1b202a;
  padding: 5px 10px;
  margin: 0px 15px 0px 0px;
  color: #fff;
  border-radius: 6px;
  font-size: 16px;
  transition: all 0.3s ease-in-out;
}
.bread-btn:hover {
  background-color: black;
}
.bread-btn--last {
  background: transparent !important;
  cursor: default;
}

input {
  outline: none !important;
}

.lds-hourglass {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.lds-hourglass:after {
  content: " ";
  display: block;
  border-radius: 50%;
  width: 0;
  height: 0;
  margin: 8px;
  box-sizing: border-box;
  border: 32px solid #252b36;
  border-color: #252b36 transparent #252b36 transparent;
  animation: lds-hourglass 1.2s infinite;
}

@keyframes lds-hourglass {
  0% {
    transform: rotate(0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  50% {
    transform: rotate(900deg);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  100% {
    transform: rotate(1800deg);
  }
}
.f-control {
  font-weight: bold;
  line-height: 1.1;
  display: grid;
  grid-template-columns: 1em auto;
  gap: 0.5em;
}

input[type=checkbox] {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background-color: var(--form-background);
  margin: 0;
  width: 1.15em;
  height: 1.15em;
  color: currentColor;
  border: 1px #fff solid;
  border-radius: 0px;
  display: grid;
  place-content: center;
  transition: 0.3s all ease-in-out;
}

input[type=checkbox]::before {
  content: "";
  width: 0.65em;
  height: 0.65em;
  -webkit-clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
          clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
  transform: scale(0);
  transform-origin: bottom left;
  transition: 0.3s all ease-in-out;
  box-shadow: inset 1em 1em #fc7902;
  /* Windows High Contrast Mode */
  background-color: CanvasText;
}

input[type=checkbox]:checked {
  border-color: #fc7902;
}

input[type=checkbox]:checked::before {
  transform: scale(1);
}

input[type=checkbox]:focus {
  outline: max(2px, 0.15em) solid currentColor;
  outline-offset: max(2px, 0.15em);
}

input[type=checkbox]:disabled {
  --form-control-color: var(--form-control-disabled);
  color: var(--form-control-disabled);
  cursor: not-allowed;
}

@media screen and (max-width: 991px) {
  .menu__block {
    margin: 0px 15px;
  }
  .menu__item {
    margin: 0px 0px 10px 0px;
    border-radius: 8px;
  }
  .mobile__menu {
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 15px;
    line-height: 0px;
    right: 30px;
    cursor: pointer;
  }
  .mobile__menu svg {
    width: 30px;
    height: auto;
  }
  .mobile__menu svg path {
    fill: #fff;
  }
  .app__logout {
    opacity: 1;
    visibility: visible;
    margin: 0px 0px 0px 10px;
  }
  .app__user-block {
    margin: 0px 30px 10px 30px;
    border-bottom: 1px #465065 solid;
    padding: 0px 0px 10px 0px;
    justify-content: flex-start;
  }
  .app__wrapper {
    padding: 60px 0px 0px 0px;
  }
  .app__content {
    flex: 100%;
    max-width: 100%;
  }
  .app__mobile {
    position: fixed;
    display: block;
    background-color: #252B36;
    height: 60px;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
  }
  .app__mobile .app__sidebar-logo {
    padding: 15px 30px;
    font-size: 20px;
    font-weight: 700;
  }
  .app__mobile-menu {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 100;
    background-color: #252b36;
    width: 100vw;
    height: 100%;
    transform: translate(-100vw, 0px);
    transition: all 0.3s ease-in-out;
  }
  .app__mobile-menu.active {
    transform: translate(0, 0px);
  }
  .app__sidebar {
    display: none;
  }
  .cr__content table td, .cr__content table th {
    font-size: 14px;
    text-align: center;
  }
}
.cus-tooltip {
  display: flex;
  flex-wrap: wrap;
  max-width: 350px;
}
.cus-tooltip-item {
  flex: 0 0 50%;
  max-width: 50%;
  display: flex;
  align-items: center;
  padding: 5px 10px;
}
.cus-tooltip-item--full {
  flex: 0 0 100%;
  max-width: 100%;
}
.cus-tooltip-color {
  width: 10px;
  height: 10px;
  min-width: 10px;
  min-height: 10px;
  margin: 0px 5px 0px 0px;
  border-radius: 50%;
}
.cus-tooltip-series {
  margin: 0px 0px 0px 5px;
}

.is-loading {
  background: #eee;
  background: linear-gradient(110deg, #1a212a 8%, #252b36 18%, #1a212a 33%);
  border-radius: 5px;
  background-size: 200% 100%;
  animation: 1.5s shine linear infinite;
  height: 60px;
}

@keyframes shine {
  to {
    background-position-x: -200%;
  }
}
