@import url("https://fonts.googleapis.com/css2?family=Varela+Round&display=swap");
@media (prefers-color-scheme: dark) {
  :root {
    --orange: #FF8214;
    --text-color: rgb(255, 253, 253);
    --text-color-sub: rgba(255, 253, 253, 0.7);
    --text-color-hover: rgb(255, 253, 253);
    --background-light: rgb(50, 50, 50);
    --background-darker: rgb(25, 25, 25);
    --background-darker-hover: rgb(42, 42, 42);
  }
  ::-webkit-scrollbar-thumb {
    background: rgb(120, 120, 120);
    border-radius: 100vw;
  }
  ::-webkit-scrollbar-thumb:hover {
    background: rgb(138, 138, 138);
  }
  @supports (scrollbar-color: rgb(145, 145, 145) var(--background-darker)) {
    * {
      scrollbar-color: rgb(145, 145, 145) var(--background-darker);
    }
  }
}
@media (prefers-color-scheme: light) {
  :root {
    --orange: #FF9614;
    --text-color: rgb(6, 3, 0);
    --text-color-sub: rgba(6, 3, 0, 0.7);
    --text-color-hover: rgb(6, 3, 0);
    --background-light: rgb(230, 230, 230);
    --background-darker: rgb(247, 247, 247);
    --background-darker-hover: rgb(235, 235, 235);
  }
  ::-webkit-scrollbar-thumb {
    background: rgb(196, 196, 196);
    border-radius: 100vw;
  }
  ::-webkit-scrollbar-thumb:hover {
    background: rgb(145, 145, 145);
  }
  @supports (scrollbar-color: rgb(145, 145, 145) var(--background-darker)) {
    * {
      scrollbar-color: rgb(145, 145, 145) var(--background-darker);
    }
  }
}
@keyframes pulse-orange {
  0% {
    color: var(--orange);
  }
  80% {
    color: var(--orange);
  }
  100% {
    color: inherit;
  }
}
* {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  font-family: "Inter Tight", sans-serif;
  color: var(--text-color);
  font-style: normal;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
  overflow: -moz-scrollbars-vertical;
  overflow-y: scroll;
}

body {
  background-color: var(--background-light);
  min-height: 100vh;
  position: relative;
}
body a {
  color: var(--orange);
}
body a:hover {
  color: var(--orange);
}

.number-font {
  font-family: "Anta", serif;
  font-style: normal;
}

h1 {
  margin-bottom: 10px;
  font-weight: 800;
}

h2 {
  margin: 0;
  font-weight: 700;
}

h3 {
  margin: 0;
  font-weight: 600;
}
h3.show-off {
  line-height: 3rem;
  opacity: 0.9;
  font-size: 2.6rem;
  font-weight: bold;
}

p {
  line-height: 1.3rem;
  font-size: 1.2rem;
  margin: 0;
}
p.bold {
  font-weight: bolder;
}
p.sub {
  font-size: 1rem;
  color: var(--text-color-sub);
}

ul {
  margin-top: 5px;
  margin-bottom: 10px;
}

li {
  margin-bottom: 2px;
  line-height: 1.3rem;
  font-size: 1.2rem;
}

input[type=text] {
  padding: 10px;
  background-color: var(--background-light);
  color: var(--text-color);
  border-color: var(--background-darker);
}
input[type=text]::-moz-placeholder {
  opacity: 0.5;
  color: var(--text-color);
  font-family: "Varela Round", sans-serif;
}
input[type=text]::placeholder {
  opacity: 0.5;
  color: var(--text-color);
  font-family: "Varela Round", sans-serif;
}
input[type=text]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.btn-warning.round {
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  height: 100%;
  width: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  padding: 3px;
  background-color: var(--background-light);
  border-color: var(--background-light);
  border-width: 2px;
  transition: transform 0.2s;
}
.btn-warning.round:focus {
  box-shadow: none;
}
.btn-warning.round svg {
  height: 70%;
  width: auto;
}
.btn-warning.round svg path {
  fill: var(--text-color);
}
.btn-warning.round.filters-changed {
  background-color: var(--orange);
}

.custom-select {
  display: block;
  position: relative;
  width: 100%;
}
.custom-select select {
  width: 100%;
  margin-top: 5px;
  position: relative;
  overflow: visible;
  padding: 0.375rem 0.75rem;
  line-height: 1.5;
  -moz-appearance: none; /* Firefox */
  -webkit-appearance: none; /* Safari and Chrome */
  appearance: none;
  background-color: var(--background-light);
  border: none;
  color: var(--text-color);
}
.custom-select select:focus {
  background-color: var(--background-darker-hover);
  color: var(--text-color);
  outline: none;
  box-shadow: none;
}
.custom-select select:hover {
  background-color: var(--background-darker-hover);
}
.custom-select select option:hover {
  background-color: var(--orange);
}
.custom-select svg {
  width: 9px;
  height: auto;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-45%) rotate(90deg);
  pointer-events: none;
  transition: transform 0.2s;
}
.custom-select svg path {
  fill: var(--orange);
}
.custom-select svg.rotated {
  transform: translateY(-45%) rotate(270deg);
}

hr {
  margin: 5px 0;
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.hidden {
  display: none;
}

.btn:focus {
  box-shadow: none;
}

.form-control:focus {
  box-shadow: inset 0 -1px 0 #ddd;
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background-color: var(--background-darker);
}

#messages {
  width: 100%;
  display: flex;
  justify-content: center;
}
@keyframes pulse-green {
  0% {
    background-color: #2bb84c;
    border-color: #2bb84c;
  }
  100% {
    background-color: #218939;
    border-color: #218939;
  }
}
@keyframes pulse-red {
  0% {
    background-color: #b82b2b;
    border-color: #b82b2b;
  }
  100% {
    background-color: #892121;
    border-color: #892121;
  }
}
#messages span {
  margin-top: 20px;
  padding: 2vh 3%;
  color: var(--text-color);
  border-radius: 8px;
}
#messages span.success {
  background-color: #2bb84c;
  animation: pulse-green 2s infinite;
}
#messages span.failure, #messages span.error {
  background-color: #b82b2b;
  animation: pulse-red 2s infinite;
}
#messages span:hover {
  cursor: pointer;
}

#big-pic-hover {
  position: absolute;
  pointer-events: none;
  top: 0;
  left: 0;
  z-index: 3;
  height: 200px;
  width: 200px;
  aspect-ratio: 1;
  border: var(--background-darker-hover) 10px solid;
  background-color: var(--background-darker-hover);
  border-radius: 8px;
}
#big-pic-hover > img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

#cookies {
  padding: 15px;
  color: var(--text-color);
  position: fixed;
  bottom: 0;
  width: 100%;
  min-height: 8vh;
  background-color: var(--background-darker);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1vw;
  border-top: 2px solid var(--background-light);
}
#cookies.hidden {
  display: none;
}
#cookies > div {
  display: flex;
}
#cookies button {
  border: var(--orange) solid 2px;
  border-radius: 50%;
  padding: 10px;
  transition: all 0.15s ease-in-out;
}
#cookies button:hover {
  border-color: var(--orange);
}
#cookies path {
  fill: var(--text-color);
}
#cookies .yes {
  background-color: var(--orange);
  margin-right: 10px;
}
#cookies .yes path {
  fill: whitesmoke;
}
#cookies .yes:hover {
  transform: scale(1.1);
}
#cookies .no:hover {
  background-color: var(--orange);
}

.tooltip-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-content: center;
  border-radius: 50%;
  border: 2px solid var(--background-light);
  height: 100%;
  width: 3ch;
  aspect-ratio: 1;
}
.tooltip-container .question-mark {
  aspect-ratio: 1;
  height: 100%;
  width: auto;
  border-radius: 50%;
  text-align: center;
}
.tooltip-container .question-mark svg {
  padding: 0.1rem;
  margin-bottom: 5px;
  width: 100%;
  height: auto;
}
.tooltip-container .question-mark svg path {
  fill: var(--background-light);
}
.tooltip-container.active {
  border-color: var(--orange);
}
.tooltip-container.active svg path {
  fill: var(--orange);
}
.tooltip-container .tooltip {
  display: block;
  position: absolute;
  text-align: left;
  width: 250px;
  min-height: 50px;
  background-color: var(--background-darker-hover);
  padding: 10px;
  top: 3.5ch;
  border-radius: 8px;
  z-index: 5;
  opacity: 1;
}
.tooltip-container .tooltip p {
  font-size: 1rem;
  color: var(--text-color-sub);
}
.tooltip-container .flex {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  margin-top: 5px;
}
.tooltip-container .fullnes-circle {
  line-height: 0.3;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 25px;
  width: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 2.5px solid var(--text-color);
}
.tooltip-container .fullnes-circle.not-full {
  border-style: dashed;
}

.h2-with-tooltip {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 10px;
}

.loading {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  margin-top: 10px;
  height: 15px;
}
.loading img {
  position: absolute;
  height: 15px;
  width: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.loading.left {
  justify-content: left;
}

.part {
  display: block;
  color: var(--text-color);
  background-color: var(--background-light);
  animation: fade-in 0.5s 1 forwards;
  padding: 8px 12px;
  padding-top: 8px;
  border-radius: 8px;
  margin-top: 10px;
  width: 100%;
}
.part p {
  display: inline;
}
@keyframes pulse-orange {
  0% {
    color: var(--orange);
  }
  80% {
    color: var(--orange);
  }
  100% {
    color: inherit;
  }
}
.part.highlight .name a {
  animation: pulse-orange 2s ease-out 1;
}
.part img {
  align-self: center;
  justify-self: center;
  grid-area: image;
  height: clamp(35px, 9.5vw, 50px);
  aspect-ratio: 1;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 8px;
  margin-right: clamp(5px, 1.5vw, 12px);
}
.part .main {
  display: grid;
  grid-template-columns: auto 1fr clamp(35px, 10%, 50px);
  grid-template-rows: repeat(2, auto);
  grid-template-areas: "image name plus" "image sellers plus";
}
.part .name {
  grid-area: name;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.part .name a {
  color: var(--text-color);
  text-decoration: none;
}
.part .name a:hover {
  text-decoration: underline;
}
.part .name a.highlight {
  color: var(--orange);
}
.part .name.full {
  white-space: inherit;
  overflow: visible;
}
.part .add {
  max-height: 50px;
  min-width: 40px;
  grid-area: plus;
  display: flex;
}
.part .add span {
  justify-self: center;
  align-self: center;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  padding: 5%;
}
.part .btn-warning {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  padding: 3px;
  background-color: var(--orange);
  border-color: var(--orange);
  border-width: 2px;
  transition: transform 0.2s;
}
.part .btn-warning:hover {
  background-color: var(--orange);
  border-color: var(--orange);
}
.part .btn-warning:hover:not(.sold-out) {
  transform: scale(1.1);
}
.part .btn-warning.sold-out:not(.delete) {
  background-color: var(--background-light);
  border: none;
}
.part .btn-warning.sold-out:not(.delete).searching {
  border: 2px solid var(--orange);
}
.part .btn-warning.sold-out:not(.delete):hover:not(.searching) {
  background-color: var(--background-light);
  transform: none;
  cursor: default;
}
.part .btn-warning.sold-out:not(.delete):hover {
  background-color: var(--orange);
}
.part .btn-warning .spiral {
  width: 100%;
}
.part .btn-warning img {
  position: absolute;
}
.part .btn-warning svg {
  width: 80%;
  height: auto;
}
.part .btn-warning svg path {
  fill: var(--text-color);
}
.part .btn-warning.delete {
  background-color: rgb(255, 86, 86);
  border-color: rgb(255, 86, 86);
}
.part .btn-warning.delete path {
  fill: rgb(19, 19, 19);
}
.part .btn-warning.delete svg {
  transform: rotate(45deg);
}
.part .btn-warning.delete:hover {
  background-color: rgb(255, 86, 86);
  border-color: rgb(255, 86, 86);
  transform: scale(1.1);
  cursor: pointer;
}
.part .btn-warning .link path, .part .btn-warning .spiral path {
  stroke: var(--text-color);
  fill: var(--text-color);
  stroke-miterlimit: 10;
  stroke-width: 20px;
  fill-rule: evenodd;
}
.part .sellers {
  height: auto;
  grid-area: sellers;
  display: grid;
  align-items: center;
  grid-template-columns: clamp(10px, 2.5vw, 15px) 1fr max-content;
  grid-template-rows: auto;
  grid-template-areas: ". . .";
}
.part .sellers svg {
  width: 60%;
  height: auto;
  transition: transform 0.2s;
  justify-self: center;
  align-self: center;
  cursor: pointer;
}
.part .sellers svg path {
  fill: var(--orange);
}
.part .sellers .rotated {
  transform: rotate(90deg);
}
.part .lowestPriceName {
  margin-left: calc(2px + clamp(0px, 1vw, 5px));
}
.part .price {
  white-space: nowrap;
  margin-right: clamp(2px, 1.5vh, 10px);
  text-align: center;
}
@media (max-width: 350px) {
  .part .price {
    margin-right: 6px;
  }
}
.part .extra {
  display: block;
  width: 100%;
}
.part .extra.hidden {
  display: none;
}
.part .extra > div {
  width: 100%;
  margin-top: 2px;
  display: grid;
  align-items: center;
  grid-template-rows: 100%;
  grid-template-columns: 1fr max-content clamp(35px, 10%, 50px);
  grid-template-areas: "seller price btn";
}
.part .extra.none {
  margin-top: 3px;
}
.part .extra .seller {
  grid-area: seller;
}
.part .extra .price {
  overflow: visible;
  grid-area: price;
}
.part .extra-url {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 20px;
  padding: 0 3px;
  background-color: var(--orange);
  border-color: var(--orange);
  border-radius: 8px;
}
.part .extra-url svg {
  width: 90%;
}
.part .extra-url svg path {
  fill: var(--text-color);
}
.part .extra-url.sold-out {
  background-color: var(--background-light);
  border-color: var(--background-light);
  cursor: default;
}
.part .extra-url.sold-out:hover {
  transform: none;
}
.part .extra-url:hover {
  transform: scale(1.1);
}
.part img[alt=X] {
  width: clamp(20px, 4vw, 50px);
  transform: rotate(45deg) scale(1.5);
  opacity: 0;
}

#error-page {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--background-darker);
}
#error-page h1 {
  margin: 0;
  font-weight: bold;
  font-size: 20vw;
  color: var(--orange);
}
#error-page h2 {
  color: var(--text-color);
  font-weight: bolder;
}
#error-page p {
  color: var(--text-color);
}

.normal-nav-item {
  cursor: pointer;
}
.normal-nav-item:hover {
  background-color: var(--background-darker-hover);
  color: var(--text-color-hover);
}
.normal-nav-item:focus {
  outline: 0;
}

.active-nav-item {
  border-right: 6px solid var(--orange);
  background-color: var(--background-darker-hover);
  color: var(--text-color-hover);
}
.active-nav-item:focus {
  outline: 0;
}

@media (min-width: 1200px) {
  nav {
    margin: 20px 20px 0 20px;
    border-radius: 8px;
  }
}
.logo {
  box-sizing: border-box;
  padding: 15px 10px 10px 15px;
  width: auto;
  height: 80px;
}
.logo:focus {
  outline: 0;
}
.logo path {
  fill: var(--orange);
}
.logo circle {
  fill: var(--orange);
}

body::after {
  content: "";
  display: block;
  height: 100px;
  /* Set same as footer's height */
}

footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  min-height: 80px;
  background-color: var(--background-darker);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  gap: 20px;
}
footer > div {
  display: flex;
  align-items: center;
}
footer > div a {
  color: var(--text-color);
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer > div:first-child {
  display: flex;
  align-items: center;
}
footer > div:first-child p {
  width: -moz-max-content;
  width: max-content;
}
footer .links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: clamp(5px, 2vw, 30px);
  text-align: right;
  row-gap: 5px;
}
footer .links a {
  display: inline-block;
  white-space: nowrap;
}
footer svg {
  margin-left: 15px;
  width: 42px;
  height: auto;
  aspect-ratio: 1;
  cursor: pointer;
  flex-shrink: 0;
}
footer svg path {
  fill: var(--background-light);
}
footer svg:hover path {
  fill: var(--orange);
}

nav {
  background-color: var(--background-darker);
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
nav #horizontal-nav {
  padding-right: 20px;
  display: none;
  align-items: stretch;
  justify-content: space-between;
  text-align: center;
}
nav #horizontal-nav a {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 8px 0 8px;
  text-align: center;
  color: var(--text-color);
  text-decoration: none;
}
nav #horizontal-nav > div {
  display: flex;
  padding: 0;
  align-items: center;
}
nav #mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2vw;
  height: 80px;
  width: auto;
}
nav #mobile-menu-toggle svg {
  width: 9vw;
  height: auto;
}
nav #mobile-menu-toggle path {
  fill: var(--text-color);
}
@media (max-width: 567px) {
  nav #mobile-menu-toggle img {
    width: 11vw;
  }
}
nav #mobile-menu {
  position: fixed;
  z-index: 5;
  width: clamp(200px, 30vw, 300px);
  height: 100vh;
  left: 0;
  top: 0;
  background-color: var(--background-darker);
  border-right: 1px solid var(--background-light);
}
nav #mobile-menu .clickOverlay {
  width: 100vw;
  height: 100vh;
  position: relative;
  z-index: 4;
  margin: 0;
  background-color: rgba(0, 0, 0, 0.3);
}
nav #mobile-menu div {
  width: clamp(200px, 30vw, 300px);
  margin-top: 10px;
}
nav #mobile-menu div a {
  display: block;
  color: var(--text-color);
  padding: 10px 0 10px 10px;
  text-decoration: none;
}
nav #mobile-menu hr {
  margin: 0;
}
nav #mobile-menu .lang-button {
  margin-left: 5px;
  margin-top: 5px;
}
nav .lang-button {
  height: 50px;
  aspect-ratio: 1;
  border-radius: 25%;
  color: var(--text-color);
  background-color: var(--background-light);
}
nav .lang-button:hover {
  background-color: var(--background-darker-hover);
  color: var(--text-color);
}

@media (min-width: 567px) {
  .logo {
    width: auto;
    height: 90px;
  }
  nav div img {
    width: 25vw;
    height: auto;
  }
  #mobile-menu {
    padding: 0;
    width: 50vw;
  }
  #mobile-menu div {
    padding: 0;
  }
}
@media (min-width: 769px) {
  .active-nav-item {
    border-bottom: 6px solid var(--orange);
    border-right: none;
  }
  .logo {
    width: auto;
    height: 100px;
  }
  nav {
    justify-content: flex-start;
  }
  nav #horizontal-nav {
    display: flex;
    width: 100%;
  }
  nav #mobile-menu-toggle {
    display: none;
  }
  nav #mobile-menu {
    display: none;
  }
}/*# sourceMappingURL=layout.css.map */