/* find better way to do this */
@import
url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.0/css/all.min.css);

:root {
  /* dark */
  --color-bg: #090909;
  --color-bg-light: #121212;
  /* light */
  /* --color-bg: #F5F5F5;
  --color-bg-light: #FFFFFF;
  --color-border: #BEC0C4; */

  --color-bg-new: #121113;
  --color-bg-light-new: #111011;
  --color-bg-dark: #0e0d0e;
  --color-bg-blue: #151920;
  --color-purple: #A77CE4;
  --color-purple-2: #A978F2;
  --color-quiver-green: #57d7ba;
  --color-green-5: #37EDD2;
  --color-green-6: #00B49C;
  --color-green-7: #007E69;

  /* excel colors */
  --color-green-1: #33c481;
  --color-green-2: #21a366;
  --color-green-3: #107c41;
  --color-green-4: #185c37;

  /* custom */
  --volt-gray: #192831;
  --volt-gray-2: #1e303b;
  --volt-gray-3: #2F4858;
  --volt-gray-4: #456a81;
  --color-error-red: #fe5555;

  --color-bg-white: #FFFFFF;
  --old-pricing-red: #ff1d58;
  --old-pricing-red-hover: #ff5c87;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

main {
  margin: 0 auto;
  min-height: 100vh;
}

body {
  font-family: "Rubik", sans-serif;
}

h1, h2, h3, h4, h5, h6,
strong, th {
  font-weight: 400;
}

input {
  background-color: transparent;
  border: none;
  font-size: inherit;
  outline: none;
  font-family: inherit;
}

.qo-logo-outer {
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 0;
  margin-right: 2rem;
}

.qo-logo-outer img {
  width: 34px;
}

.qo-logo-outer strong {
  font-family: "Figtree", sans-serif;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: .4px;
  color: white;
}

footer .qo-logo-outer img {
  width: 38px;
}
footer .qo-logo-outer strong {
  font-size: 19px;
}

.qo-logo-outer strong span {
  margin-left: .2rem;
  color: #57d7ba;
}

.table-outer .table-inner {
  overflow-y: auto;
  max-height: 450px;
}

.table-outer table {
  table-layout: fixed;
  min-width: 100%;
  border-spacing: 0px;
}

.table-outer thead th {
  border: 1px solid black;
  border-right: 0;
  min-width: 100px;
} 

.table-outer table tr.sticky-table-headers-details > th,
.table-outer table tr.sticky-table-headers-columns > th {
  position: sticky;
  z-index: 2;
}

.table-outer table thead tr.sticky-table-headers-details > th {
  top: 0;
  z-index: 2;
  font-size: 15px;
}

.table-outer table thead tr.sticky-table-headers-columns > th {
  top: 50px;
  z-index: 2;
}


.table-outer th {
  font-size: 12px;
  padding: .5rem 1rem;
  background-color: var(--color-green);
  color: white;
}

.table-outer td {
  font-size: 12px;
  font-weight: 400;
  padding: .5rem 1rem;
}

::-webkit-scrollbar {
  width: 5px; 
  height: 7px;
}

::-webkit-scrollbar-track {
  background-color: #121212;
}

::-webkit-scrollbar-thumb {
  background-color: #26262a;
  border-radius: 50px;
}

footer {
  background-color: var(--color-bg-dark);
}

.footer-links {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem;
  max-width: 850px;
  margin: 0 auto;
}

.footer-links-right {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 .5rem;
}

.footer-links-right ul {
  padding-right: 1.25rem;
  min-width: 150px;
  padding-top: 2rem;
}

.footer-links-right li {
  margin-bottom: 1.25rem;
  font-size: 14px;
  font-size: clamp(14px, 2vw, 15px);
}

.footer-links-right li a {
  color: rgb(200, 200, 200);
  text-decoration: none;
  font-size: 13px;
  font-size: clamp(13px, 1.5vw, 14px);
}

.footer-links-right li a:hover {
  color: var(--color-quiver-green);
}

/* .footer-social ul {
  display: flex;
  align-items: center;
  padding-top: 1rem;
}

.footer-social li {
  width: 30px;
  height: 30px;
  margin-right: .75rem;
  background-color: var(--color-green-1);
  border-radius: 50%;
} */

@media screen and (max-width: 1023px) {
  .footer-links {
    padding: 3rem 1rem;
  }
  .footer-links-right {
    justify-content: flex-start;
  }
}