:root {
  --black: #0e0f11;
  --light-grey: #91969a;
  --white: white;
  --yellow: var(--inspinia-blue);
  --grey: #1e2023;
  --black-lite: #111215;
  --dark-gray: #2f2f2f;
  --dark-grey: #1d1e21;
  --inspinia-blue: #00b4df;
  --blue: steelblue;
  --inspinia-danger: #d13120;
  --inspinia-warning: #efd33d;
  --inspinia-success: #3bc123;
  --bg-page: #1a1a1a;
  --text-color: #f3f3f3;
  --card-bg: #202020;
  --icon-bg: #45423c;
  --range: 0%;
}

* {
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  user-select: none;
  transition: all 200ms ease;
}
*:focus {
  outline: none;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--black);
  color: white;
  overflow: hidden;
}

.body {
  max-width: 960px;
  margin: 0 auto;
}

.header {
  text-align: center;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -webkit-touch-callout: none;
  margin-bottom: 40px;
}

.container {
  overflow: hidden;
}

.no_result {
  margin: 0.3rem;
  padding: 0.3rem 0.5rem;
  list-style: none;
  text-align: left;
  font-size: 1rem;
  color: #212121;
  transition: all 0.1s ease-in-out;
  border-radius: 0.35rem;
  background-color: rgba(255, 255, 255, 1);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.2s ease;
  outline: none;
}

h1 {
  color: white;
  transition: var(--transition-1);
}

h1 > a {
  text-decoration: none;
  color: white;
}

h4 {
  margin-bottom: 5px;
  color: #c8c8c8;
}

.filter-wrapper input,
.filter-wrapper select {
  border: none;
  border-bottom: 1px solid white;
  background-color: var(--black);
  color: white;
  padding: 0 10px;
  height: 100%;
}

.filter-wrapper button {
  background: transparent;
  border: none;
}

span.product {
  display: flex;
  align-items: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.449);
}

.result-wrapper {
  display: flex;
  flex-direction: column;
}

.filter-wrapper a {
  color: var(--color-inspinia-blue);
}

.filter-wrapper {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.filter-wrapper > div {
  height: 45px;
  display: flex;
  align-items: center;
}

#result-table {
  margin: 30px auto;
  max-width: 100vw;
  width: 100%;
}

#result-table tr td {
  color: var(--light-grey);
}

#result-table tr th {
  padding: 5px 10px;
  text-align: left;
  border-bottom: 1px solid var(--dark-gray);
}

#result-table tr td {
  padding: 10px;
  text-align: left;
  font-size: 14px;
  border-bottom: 1px solid var(--dark-gray);
}

.certificate-download {
  position: absolute;
  right: 0;
  top: -2px;
  cursor: pointer;
}

#result-container,
#no-result {
  padding: 0 20px;
}

#no-result {
  max-width: 720px;
  margin: 50px auto;
  text-align: center;
}

#no-result a {
  color: var(--inspinia-blue);
  cursor: pointer;
}

.hide {
  display: none;
  visibility: hidden;
  height: 0;
}

.pagination-wrapper {
  display: flex;
  justify-content: center;
}

.pagination\:container {
  display: flex;
  align-items: center;
}

.pagination\:number {
  --size: 32px;
  --margin: 6px;
  margin: 0 var(--margin);
  border-radius: 6px;
  background: #202020;
  max-width: auto;
  min-width: var(--size);
  height: var(--size);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0 6px;
}

.pagination.text {
  font-size: 1rem;
  color: var(--light-grey);
  padding: 0 20px;
}

@media (hover: hover) {
  .pagination\:number:hover {
    background: #282828;
  }
}

.pagination\:number:active {
  background: #282828;
}

.pagination\:active {
  background: #282828;
  position: relative;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 10px;
  font-family: inherit;
  font-size: 16px;
  color: #000;
  border-radius: 0;
}

select:focus {
  outline: none; /* Remove default focus outline */
  border-color: #007bff; /* Add a custom focus color */
}

.select-wrapper {
  position: relative;
}

.select-wrapper::after {
  content: '▼';
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 10px;
}

#submit-button {
  background: var(--inspinia-blue);
  color: white;
  border-radius: 20px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  height: 40px;
  gap: 5px;
  cursor: pointer;
}

#submit-button svg {
  width: 20px;
  height: 20px;
}


@media only screen and (max-width: 600px) {
  .hide-on-mobile {
    display: none;
  }

  #result-table {
    width: 100%;
  }

  #result-container,
  #no-result {
    padding: 0 5px;
  }

  #submit-button {
    width: 100%;
    justify-content: center;
  }
}

@media only screen and (max-width: 990px) {
  .filter-wrapper {
    width: 100%;
    flex-direction: row;
  }

  .filter-wrapper > div {
    width: 40%;
    align-items: flex-end;
  }

  .filter-wrapper input,
  .filter-wrapper select {
    width: 100%;
  }
}

@media only screen and (min-width: 600px) {
  .hide-on-desktop {
    display: none;
  }
}

