@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
  --eq-bg: #000;
  --eq-bg-image: none;
  --eq-text: #ffffff;
  --eq-muted: rgba(255, 255, 255, .65);
  --eq-panel: rgba(0, 0, 0, .60);
  --eq-panel-2: rgba(0, 0, 0, .72);
  --eq-stroke: rgba(255, 255, 255, .10);
  --eq-accent: #37c3f1;
  --eq-accent-2: #ffbd5a;
}

html[data-eqnx-theme="default"] {
  --eq-bg: #000;
  --eq-bg-image: none;
  --eq-text: #ffffff;
  --eq-panel: rgba(0, 0, 0, .60);
  --eq-panel-2: rgba(0, 0, 0, .72);
  --eq-stroke: rgba(255, 255, 255, .10);
}

html[data-eqnx-theme="dark"] {
  --eq-bg: #07080a;
  --eq-bg-image: none;
  --eq-text: #f5f7ff;
  --eq-panel: rgba(12, 14, 18, .72);
  --eq-panel-2: rgba(12, 14, 18, .82);
  --eq-stroke: rgba(255, 255, 255, .10);
}

html[data-eqnx-theme="white"] {
  --eq-bg: #f6f7fb;
  --eq-bg-image: none;
  --eq-text: #0a0b0f;
  --eq-panel: rgba(255, 255, 255, .70);
  --eq-panel-2: rgba(255, 255, 255, .82);
  --eq-stroke: rgba(0, 0, 0, .10);
}

html[data-eqnx-theme="ocean"] {
  --eq-bg: #06131b;
  --eq-bg-image: radial-gradient(1200px 600px at 30% 10%, rgba(55, 195, 241, .18), transparent 60%),
    radial-gradient(900px 500px at 80% 30%, rgba(0, 140, 255, .12), transparent 65%);
  --eq-text: #eaf7ff;
  --eq-panel: rgba(6, 16, 24, .70);
  --eq-panel-2: rgba(6, 16, 24, .82);
  --eq-stroke: rgba(255, 255, 255, .10);
}

html[data-eqnx-theme="desert"] {
  --eq-bg: #1a1208;
  --eq-bg-image: radial-gradient(1200px 600px at 25% 15%, rgba(255, 189, 90, .16), transparent 60%),
    radial-gradient(900px 500px at 80% 35%, rgba(255, 120, 80, .10), transparent 65%);
  --eq-text: #fff3e3;
  --eq-panel: rgba(22, 16, 8, .70);
  --eq-panel-2: rgba(22, 16, 8, .82);
  --eq-stroke: rgba(255, 255, 255, .10);
}

html,
body {
  display: flex;
  margin: 0;
  padding: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  flex-direction: column;
  width: 100%;
  align-items: center;
  background-color: var(--eq-bg);
  background-image: var(--eq-bg-image);
  color: var(--eq-text);
  height: 100%;
  font-family: "Poppins", sans-serif;
}

::-webkit-scrollbar {
  width: 6px;
  background-color: #000;
  border-radius: 5px
}

#eqnxToastRoot {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10050;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
  width: min(520px, calc(100vw - 24px));
}

.eqnxToast {
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(10, 12, 16, .92);
  backdrop-filter: blur(12px);
  color: rgba(255, 255, 255, .92);
  border-radius: 16px;
  padding: 12px 14px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .55);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  font-size: 13px;
  letter-spacing: .1px;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 140ms ease, transform 140ms ease;
}

.eqnxToast.show {
  opacity: 1;
  transform: translateY(0);
}

.tabbar.legacy-tabbar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.tablist {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  flex: 1 1 auto;
  min-width: 0;
}

.tabPill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .04);
  cursor: pointer;
  user-select: none;
  max-width: 100%;
}

.tabPill.active {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(55, 195, 241, .30);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .35);
}

.tabFavicon {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  flex: 0 0 auto;
  opacity: .95;
}

.tabTitle {
  font-weight: 900;
  font-size: 12px;
  color: rgba(255, 255, 255, .90);
  max-width: 160px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tabClose {
  margin-left: 2px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .04);
  color: rgba(255, 255, 255, .82);
  width: 24px;
  height: 24px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  cursor: pointer;
  flex: 0 0 auto;
}

.tabClose:hover {
  background: rgba(255, 255, 255, .07);
}

.tabNewBtn {
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .04);
  color: rgba(255, 255, 255, .90);
  border-radius: 14px;
  padding: 10px 12px;
  cursor: pointer;
  flex: 0 0 auto;
}

.tabNewBtn:hover {
  background: rgba(255, 255, 255, .07);
}

.tabbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  width: 99%;
  z-index: 200;
  background: #000000eb;
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: blur(8px);
  transition: width .3s ease
}

.tabbar div {
  flex: 1;
  margin: 0 6px 6px;
}

.tab {
  border-radius: 5px;
  outline: none;
  font-size: 15px;
  background-color: transparent;
  color: #bbbbbb;
  border: none;
  cursor: pointer;
  transition: .5s;
  align-items: center;
  display: flex;
  flex: 1;
  flex-direction: row
}

#tabbox:hover {
  background-color: #161616;
  transition: background-color 0.3s ease, border-radius 0.3s ease;
}

#tabbox {
  background: none;
  padding: 0 17px;
  height: 45px;
  z-index: 200;
  box-shadow: 0 1px 3px #00000080;
  background-color: #0a0a0a;
  border: 1px solid #3128283b;
  color: var(--text-color);
  border-radius: 3px;
  outline: none;
  width: 600px;
  margin-top: 5px;
  border-radius: 12px;
  color: #fff;
  transition: border-radius .1s;
  display: flex;
  align-items: center;
}

.tabbar a:hover {
  background-color: #1f1f1f;
  border-radius: 5px;
}

.left-buttons,
.right-section {
  display: flex
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  width: 99%;
  z-index: 200;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  transition: width .3s ease
}

.topbar form {
  flex: 1;
  margin: 0 20px 6px
}

.topbar a,
.left-buttons a {
  color: #e0e0e0;
  padding: 8px;
  font-size: 13px;
  text-decoration: none;
  font-weight: 400;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
  transition: all .5s ease;
}

.topbar a:hover {
  background-color: #1f1f1f;
  border-radius: 5px;
}

.left-buttons,
.right-section {
  display: flex
}

.left-buttons a {
  margin-right: 10px
}

.search {
  border-radius: 5px;
  outline: none;
  font-size: 15px;
  height: 100%;
  width: 100%;
  background-color: transparent;
  color: #d7d7d7;
  border: none;
  transition: .5s;
  align-items: center;
  display: flex;
  flex: 1;
  flex-direction: column
}

.nav-btn {
  position: relative;
  border: none;
  border-radius: 3px;
  padding: 10px 20px;
  background-color: transparent;
  color: #fff;
  cursor: pointer;
  text-decoration: none
}

.nav-btn:hover {
  background-color: #302f2f
}

#form {
  padding-bottom: 20px;
  padding-left: 10px;
  background: none;
  height: 32px;
  z-index: 200;
  color: var(--text-color);
  border-radius: 3px;
  outline: none;
  width: 600px;
  border-radius: 12px;
  color: #7c7c7c;
  transition: border-radius .1s;
  display: flex;
  align-items: center;
}

.topbar form {
  flex: 1;
  margin: 0 20px 6px
}

.submit-button {
  background: transparent;
  color: transparent;
  border: none !important
}

#align {
  display: none;
  z-index: 100000;
  flex-direction: row;
  width: 100%;
  height: 100%
}

#ifr {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  border-color: transparent;
  z-index: 1
}

.loading-screen {
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000e;
  justify-content: center;
  flex-direction: column;
  backdrop-filter: blur(20px);
  align-items: center;
  z-index: 9999
}

.loading-image {
  height: 150px;
  border-radius: 8px
}

.loading-progress {
  appearance: none;
  height: 10px;
  width: 40%;
  margin-top: 10px;
  border: none;
  border-radius: 8px
}

.loading-progress::-webkit-progress-bar {
  background-color: #333;
  border-radius: 5px
}

.loading-progress::-webkit-progress-value {
  background-color: #ccc;
  border-radius: 5px
}

.loading-text {
  color: #fff;
  font-size: 24px;
  margin-top: 20px;
  margin-bottom: 15px
}

footer {
  margin-top: auto;
  align-self: center;
  height: 80px;
  display: grid;
  grid-auto-flow: column;
  grid-column-gap: 30px;
  display: flex;
  justify-content: left;
  align-items: center;
  z-index: 1
}

footer a,
footer span {
  margin: auto;
  text-decoration: none;
  color: #c4c1c1;
  font-size: 15px;
  font-family: 'Montserrat', sans-serif
}

footer a {
  cursor: pointer
}

footer a:hover {
  text-decoration: underline
}