:root {
  --transition-1: all 0.3s ease-in-out;
  --transition-2: all 0.2s ease-in-out;
  --color-inspinia-blue: #2aaae0;
}

html {
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

body {
  margin: 0;
  padding: 0;
  background-color: #0e0f11;
  color: white;
}

.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;
}

h1 > a::selection {
  color: white;
}

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

h4::selection {
  color: #c8c8c8;
}

.mode {
  margin-top: 20px;
}

.toggle {
  display: flex;
  border: 1px solid #c8c8c8;
  height: 35px;
  width: 120px;
  border-radius: 50px;
  justify-content: flex-start;
  align-content: center;
  transition: var(--transition-2);
}

.strict {
  display: inline;
}

.selection {
  margin-top: 25px;
  color: #c8c8c8;
  transition: var(--transition-1);
}

@media only screen and (max-width: 600px) {
  .selection {
    margin-top: 5vh;
  }
}

.autoComplete_wrapper > ul {
  background-color: #212121;
  position: relative;
}

.autoComplete_wrapper > ul > p {
  max-width: 400px;
}

.autoComplete_wrapper > ul[hidden] {
  display: none;
}

.autoComplete_wrapper > ul > li {
  background: transparent;
  border: 0.5px solid white;
  color: white;
}

.autoComplete_wrapper > input {
  border: 1px solid white;
  background-color: transparent;
  background-image: url(/hvac-check-compatibility-tool/search-19ad792b341a20f26d91926798b572e8.svg);
  color: white;
  width: 500px;
  max-width: calc(100vw - 30px);
}

.autoComplete_wrapper > input:focus {
  border: 1px solid var(--color-inspinia-blue);
  color: white;
}

.autoComplete_wrapper > input::placeholder {
  color: #c8c8c8;
  opacity: 1; /* Firefox */
}

.autoComplete_wrapper > input::-ms-input-placeholder {
  /* Edge 12 -18 */
  color: #c8c8c8;
}

.autoComplete_wrapper > input:focus::placeholder {
  color: #c8c8c8;
}

.autoComplete_wrapper > input:hover::placeholder {
  color: #c8c8c8;
}

.autoComplete_wrapper > ul > li mark {
  color: var(--color-inspinia-blue);
}

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

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

.result-unit-type {
  text-transform: uppercase;
  font-weight: 200;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.449);
}

.search-result img {
  height: 200px;
}

.selection .tada {
  color: var(--color-inspinia-blue);
  margin-bottom: 10px;
}

.autoComplete_wrapper a {
  color: var(--color-inspinia-blue);
  cursor: pointer;
}
