@font-face {
  font-family: "IBM Plex Mono";
  src: url("/static/fonts/main/IBM_Plex_Mono/IBMPlexMono-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: "IBM Plex Mono";
  src: url("/static/fonts/main/IBM_Plex_Mono/IBMPlexMono-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "IBM Plex Mono";
  src: url("/static/fonts/main/IBM_Plex_Mono/IBMPlexMono-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Segoe UI";
  src: url("/static/fonts/main/Segoe_UI/Segoe-UI.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Segoe UI";
  src: url("/static/fonts/main/Segoe_UI/Segoe-UI_Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Segoe UI";
  src: url("/static/fonts/main/Segoe_UI/Segoe-UI_Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  font-family: "IBM Plex Mono", monospace;
}

@media (min-width: 280px) {
  html {
    font-size: 16px;
  }
}
@media (min-width: 480px) {
  html {
    font-size: 16px;
  }
}
@media (min-width: 768px) {
  html {
    font-size: 17px;
  }
}
@media (min-width: 1024px) {
  html {
    font-size: 18px;
  }
}
@media (min-width: 1280px) {
  html {
    font-size: 19px;
  }
}
@media (min-width: 1536px) {
  html {
    font-size: 20px;
  }
}

html, body {
  height: 100%;
  display: flex;
  flex-direction: column;
  font-family: "IBM Plex Mono", monospace;
}

.main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
}
.main-content h1 {
  text-decoration: underline;
}

.main-footer {
  margin-top: auto;
}

html, body {
  background: #171a1f;
  color: #f6faf9;
}

.main-content {
  padding: 5.5rem 1.2rem 2.75rem;
  position: relative;
  z-index: 1;
}

.main-footer {
  width: 100%;
  padding: 1.2rem;
  background: rgba(0, 0, 0, 0.5);
  text-align: center;
}

.topnav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(23, 26, 31, 0.8);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 10px 0;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
}

.logo {
  margin-right: auto;
  display: flex;
}
.logo img {
  height: 50px;
}

.desktop-nav {
  display: none;
  list-style: none;
}
@media (min-width: 1024px) {
  .desktop-nav {
    display: flex;
  }
}
.desktop-nav li {
  position: relative;
  margin: 0 20px;
}
.desktop-nav li .sub_li {
  position: absolute;
  top: 100%;
  left: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  white-space: nowrap;
  padding: 1rem 0 0 0;
  border-radius: 0.5rem;
  z-index: 1000;
}
.desktop-nav li .sub_li a:hover::after {
  width: 100%;
}
.desktop-nav li:hover .sub_li {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.desktop-nav li:hover > a::after {
  width: 100%;
}
.desktop-nav a {
  color: #f6faf9;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -5px;
  left: 0;
  background-color: #f6faf9;
  transition: width 0.3s ease;
}

.menu-icon {
  display: block;
  cursor: pointer;
  margin-left: auto;
  z-index: 1001;
  width: 40px;
  height: 40px;
  position: relative;
}
@media (min-width: 1024px) {
  .menu-icon {
    display: none;
  }
}

.hamburger {
  width: 30px;
  height: 3px;
  background-color: #f6faf9;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}
.hamburger::before, .hamburger::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 3px;
  background-color: #f6faf9;
  transition: all 0.3s ease;
  left: 0;
}
.hamburger::before {
  top: -10px;
}
.hamburger::after {
  top: 10px;
}

.menu-icon.active .hamburger {
  background-color: transparent;
}
.menu-icon.active .hamburger::before {
  transform: rotate(45deg);
  top: 0;
}
.menu-icon.active .hamburger::after {
  transform: rotate(-45deg);
  top: 0;
}

.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(15px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: translateY(-100%);
  transition: transform 0.4s ease;
}
.mobile-nav.active {
  transform: translateY(0);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  list-style-type: none;
}
.mobile-nav-links li {
  margin: 0.75rem 0;
  text-align: center;
}
.mobile-nav-links li.expanded > a {
  color: #ffd700;
}
.mobile-nav-links li.expanded .sub_li {
  max-height: 600px;
  opacity: 1;
  border-radius: 0.25rem;
  border-top: 1px solid #ffd700;
  border-bottom: 1px solid #ffd700;
}
.mobile-nav-links a {
  color: #f6faf9;
  text-decoration: none;
  font-size: 1.25rem;
  transition: all 0.3s ease;
}
.mobile-nav-links .sub_li {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease;
}
.mobile-nav-links .sub_li a {
  font-size: 1rem;
  display: block;
  width: 100%;
  text-align: center;
  margin: 1rem 0;
}

form {
  padding: 1rem;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 0.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
form .form-unit {
  width: 100%;
  margin: 1rem 0;
}
form input::placeholder {
  opacity: 0.5;
}

input[type=text], input[type=password], input[type=email], input[type=number] {
  width: 100%;
  padding: 0.25rem 0.5rem;
  background: none;
  border: none;
  border-bottom: 1px solid #bb86fc;
  color: #bb86fc;
  text-align: center;
  font-size: 1.25rem;
}
input[type=text]:focus, input[type=password]:focus, input[type=email]:focus, input[type=number]:focus {
  border-bottom: 1px solid #ffd700;
  color: #ffd700;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

input[type=submit], input[type=button] {
  width: 100%;
  cursor: pointer;
  border: none;
  padding: 0.5rem;
  background: #018d6b;
  text-align: center;
  font-size: 1rem;
  color: #f6faf9;
  border-radius: 0.25rem;
}
input[type=submit]:hover, input[type=button]:hover {
  color: #ffd700;
}
input[type=submit]:disabled, input[type=button]:disabled {
  background: #333;
  cursor: default;
  color: #f6faf9;
}

button {
  width: 100%;
  cursor: pointer;
  border: none;
  padding: 0.5rem;
  text-align: center;
  font-size: 1rem;
  color: #f6faf9;
  border-radius: 0.25rem;
}
button.red_button {
  background: #ad3324;
}
button.green_button {
  background: #018d6b;
}

.validation-message {
  color: #fbc02d;
  font-weight: 100;
  margin-top: 0.5rem;
  font-size: 0.65rem;
  text-align: center;
}

.timeframe_select {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #bb86fc;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.timeframe_select:hover {
  border-bottom: 1px solid #ffd700;
}
.timeframe_select:hover input:checked + label {
  background-color: #ffd700;
}
.timeframe_select input {
  position: absolute !important;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  width: 1px;
  border: 0;
  overflow: hidden;
  opacity: 0;
}
.timeframe_select input:checked + label {
  background-color: #bb86fc;
  color: #171a1f;
}
.timeframe_select label {
  font-size: 1.25rem;
  color: #bb86fc;
  padding: 0.2rem 0.25rem;
  border: 1px solid transparent;
  border-radius: 0.2rem;
  cursor: pointer;
  transition: all 0.15s ease-in-out;
}
.timeframe_select label:hover {
  border: 1px solid #ffd700;
}

.datetime_picker input {
  border: none;
  font-size: 1.25rem;
  width: 100%;
  border-bottom: 1px solid #bb86fc;
  padding: 0.75rem;
  background: none;
  color: #bb86fc;
}

.autocomplete-wrapper, .chips-autocomplete-wrapper {
  position: relative;
}

.autocomplete_list {
  display: none;
  position: absolute;
  flex-direction: column;
  font-size: 0.75rem;
  width: 100%;
  margin-top: 0.25rem;
  max-height: 11.5rem;
  overflow: hidden;
  backdrop-filter: blur(0.5rem);
  border-radius: 0.25rem;
  border-top: 1px solid #ffd700;
  border-bottom: 1px solid #ffd700;
  background: rgba(25, 30, 40, 0.5);
}
.autocomplete_list div {
  border-radius: 0.25rem;
  height: 2rem;
  padding: 0.5rem;
  margin-top: 0.25rem;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}
.autocomplete_list div:hover {
  color: #ffd700;
}

.chips-container {
  display: flex;
  flex-wrap: wrap;
  margin-top: 0.5rem;
  gap: 0.25rem;
}

.chip {
  background-color: #333;
  border: 1px solid #ffd700;
  color: gold;
  padding: 0.25rem 0.5rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  font-size: 0.75rem;
}
.chip .remove-chip {
  margin-left: 0.4rem;
  cursor: pointer;
  font-weight: 600;
}

.modal_veil {
  display: none;
  opacity: 0;
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 9000;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100vw;
  backdrop-filter: blur(0.5rem);
  background: rgba(25, 30, 40, 0.5);
  transition: opacity 0.25s ease-in-out;
}
.modal_veil.visible {
  display: flex;
  opacity: 1;
}
.modal_veil .modal_window {
  position: relative;
  z-index: 9999;
  margin: 0 auto;
  max-height: 90%;
  max-width: 90%;
  border-radius: 0.5rem;
  backdrop-filter: blur(0.5rem);
  border-top: 1px solid #ffd700;
  border-bottom: 1px solid #ffd700;
  background: rgba(125, 155, 200, 0.15);
  transform: scale(0.5);
  transition: transform 0.25s ease-in-out;
}
.modal_veil .modal_window.dark {
  background: rgba(25, 30, 40, 0.5);
}
.modal_veil .modal_window.show {
  transform: scale(1);
}
.modal_veil .modal_window .modal_close {
  position: absolute;
  right: 0;
  top: -2rem;
  color: #ffd700;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}
.modal_veil .modal_window .modal_close:hover {
  text-decoration: line-through;
}
@media screen and (min-width: 1024px) {
  .modal_veil .modal_window .modal_close {
    font-size: 0.75rem;
    top: -1.25rem;
  }
}
.modal_veil .modal_window .modal_header {
  padding: 1rem;
}
.modal_veil .modal_window .modal_header h2 {
  color: #bb86fc;
}
.modal_veil .modal_window .modal_body {
  padding: 1rem;
  max-height: 60vh;
  overflow: auto;
}
.modal_veil .modal_window .modal_footer {
  padding: 1rem;
  background: rgba(0, 0, 0, 0.15);
}
.modal_veil .modal_window .modal_footer .button_block {
  display: flex;
  gap: 1rem;
}

.modal_details_table tr:nth-child(odd) {
  background: rgba(255, 255, 255, 0.05);
}
.modal_details_table tr:nth-child(even) {
  background: rgba(0, 0, 0, 0.05);
}
.modal_details_table td {
  padding: 0.5rem;
}
.modal_details_table td.has_many_elements {
  display: flex;
  flex-wrap: wrap;
}

.small_chip {
  background-color: #f6faf9;
  color: #171a1f;
  padding: 0.2rem 0.4rem;
  border-radius: 0.25rem;
  font-size: 0.5rem;
  margin: 0.2rem;
}

.see_all {
  cursor: pointer;
  text-decoration: underline;
  font-size: 0.65rem;
  opacity: 0.5;
  transition: opacity 0.25s ease-out;
}
.see_all:hover {
  opacity: 1;
}

.slice-table {
  display: none;
  width: 100%;
  text-align: center;
  font-family: "Segoe UI", sans-serif;
  font-size: 0.75rem;
  border-collapse: collapse;
}
.slice-table a {
  color: #f6faf9;
  text-decoration: underline;
}
.slice-table tr {
  border-bottom: 1px dotted #bb86fc;
}
.slice-table tr.js_status_error .js_slice_status {
  color: orangered;
}
.slice-table tr.js_status_finished .js_slice_status {
  color: deepskyblue;
}
.slice-table tr.js_status_success .js_slice_status, .slice-table tr.js_status_success .js_slice_matches {
  color: lawngreen;
}
.slice-table tr.js_status_deleted {
  opacity: 0.5;
  filter: blur(1px);
}
.slice-table tr.js_has_issues .js_slice_id {
  color: #ad3324;
}
.slice-table th, .slice-table td {
  padding: 0.15rem;
}
.slice-table th img, .slice-table td img {
  height: 1.25rem;
}

.slice-cards {
  display: block;
  width: 100%;
}

@media (min-width: 768px) {
  .slice-table {
    display: table;
  }
  .slice-cards {
    display: none;
  }
}
.slice-card {
  background: #11141a;
  border: 1px solid #333;
  margin-bottom: 1rem;
  border-radius: 0.5rem;
  color: #eee;
  font-size: 0.9rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.slice-card .sc_header {
  display: flex;
  justify-content: space-between;
  padding: 0.35rem 0.65rem;
  background: rgba(255, 255, 255, 0.15);
}
.slice-card .sc_header a {
  color: #f6faf9;
}
.slice-card .sc_header a.has_issues {
  color: #ad3324;
}
.slice-card .sc_header .matches {
  display: flex;
  gap: 0.2rem;
  align-items: center;
}
.slice-card.js_status_deleted {
  opacity: 0.5;
  filter: blur(1px);
}
.slice-card.st_error {
  border-left: 1px solid orangered;
}
.slice-card.st_error .sc_header {
  background: rgba(255, 20, 20, 0.2);
}
.slice-card.st_finished {
  border-left: 1px solid deepskyblue;
}
.slice-card.st_finished .sc_header {
  background: rgba(20, 80, 255, 0.2);
}
.slice-card.st_success {
  border-left: 1px solid lawngreen;
}
.slice-card.st_success .sc_header {
  background: rgba(20, 255, 80, 0.2);
}
.slice-card img {
  max-height: 1rem;
}
.slice-card .truth_symbol_tf, .slice-card .truth_lookback_lk {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 0.35rem;
}
.slice-card .truth_symbol_tf div, .slice-card .truth_lookback_lk div {
  width: 50%;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.slice-card .lkp_symbols {
  padding: 0.35rem;
  display: flex;
  gap: 0.35rem;
  align-items: center;
}
.slice-card .lkp_tfs_acts {
  display: flex;
  justify-content: space-between;
}
.slice-card .lkp_tfs_acts .lkp_tfs, .slice-card .lkp_tfs_acts .action_div {
  padding: 0.35rem;
  display: flex;
  gap: 0.35rem;
  align-items: center;
}

#toast_container {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.toast {
  padding: 0.75rem 1rem;
  border-radius: 5px;
  color: white;
  opacity: 0.95;
  animation: fadeInOut 4s ease forwards;
  font-size: 0.9rem;
}
.toast.info {
  background-color: #3498db;
}
.toast.success {
  background-color: #2ecc71;
}
.toast.error {
  background-color: #e74c3c;
}

@keyframes fadeInOut {
  0% {
    transform: translateY(10px);
    opacity: 0;
  }
  10% {
    transform: translateY(0);
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-10px);
    opacity: 0;
  }
}
.vanilla-tooltip {
  position: absolute;
  max-width: 280px;
  display: flex;
  flex-wrap: wrap;
  z-index: 9999;
  background: rgba(25, 30, 40, 0.5);
  backdrop-filter: blur(3px);
  border-left: 1px solid #ffd700;
  border-right: 1px solid #ffd700;
  color: #f6faf9;
  font-size: 0.6rem;
  padding: 10px 12px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: auto;
}

.vanilla-tooltip.visible {
  opacity: 1;
  transform: scale(1);
}

.vanilla-tooltip:not(.visible) {
  pointer-events: none;
}

.slice_infoblock {
  width: 100%;
  max-width: 40rem;
  margin: 0.8rem auto;
  padding: 1rem;
  border: 1px solid #333;
  border-radius: 0.5rem;
}

.plots_cont {
  display: flex;
  gap: 0.25rem;
  max-width: 40rem;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
}

.plots_cont img {
  display: block;
  max-height: 8rem;
  border-radius: 0.25rem;
}

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