/***************
GLOBAL
****************/
body {
  background-image: url("img/etch-pattern.webp");
  background-size: cover;
}
/***************
WATCH FINDER
****************/
.watch-finder-wrap .row {
  height: 100vh;
  align-items: center;
}
.watch-finder {
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande", "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  background: #fff;
  padding: 35px;
  border-radius: 15px;
  min-height: 605px;
  box-shadow: 0px 4px 6px #242424;
}
h2 {
  font-size: 22px;
  font-weight: 500;
}
select,
input {
  width: 100%;
  padding: 12px;
  margin-top: 10px;
  border: 2px solid #ddd;
  border-radius: 8px;
  box-sizing: border-box;
}

#results {
  border: 1px solid #ddd;
  border-top: none;
  max-height: 260px;
  overflow-y: auto;
  display: none;
}

.item {
  padding: 6px 10px;
  cursor: pointer;
  border-bottom: 1px solid #eee;
}

.item:hover {
  background: #000;
  color: #fff;
}

#output {
  margin-top: 20px;
  background: #313c3e;
  padding: 20px;
  border-radius: 8px;
  display: none;
}

.item div {
  font-size: 15px;
}
.brand-label {
  font-size: 11px !important;
  opacity: 0.6;
  margin-bottom: 2px;
}
mark {
  background: yellow;
  padding: 0 0px;
  border-radius: 2px;
}
.logo {
  max-width: 120px;
  margin: 0 auto;
  margin-bottom: 15px;
  display: block;
}
#model,
#output p {
  color: #fff;
}
#model {
  opacity: 0.7;
}
#output p {
  margin-bottom: 0px;
}
