#search-canvas {
  position: relative;
  background-color: green;
  height: 0px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0);
  transition: background 0.25s;
  text-align: center;
  z-index: 200;
}

#search-canvas.active {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  height: auto;
  background: rgba(0, 0, 0, 0.5);
}

#vvikcom-search-form {
  padding: 5px 10px;
  position: fixed;
  text-align: center;
  width: 100%;
  z-index: 300;
  top: -100%;
  opacity: 0;
  transition: top 0.25s, opacity 0.15s;
  box-sizing: border-box;
}

#vvikcom-search-form input {
  width: 100%;
  max-width: 800px;
  box-sizing: border-box;
  text-align: center;
  z-index: 11;
  padding: 10px;
  border: 10px solid #fff;
  font-size: 24px;
}

#vvikcom-search-form input:focus {
  outline: none;
}

#vvikcom-search-form.active {
  top: 20vh;
  opacity: 1;
  transition: top 0.25s, opacity 0.15s 0.1s;
}

#vvikcom-search-form.loading input {
  background: #ebebeb;
}

#vvikcom-search-form ul#search-results {
  width: 100%;
  padding: 5px 0px;
  max-width: 800px;
  margin: auto;
  border-top: 0px;
  z-index: 310;
  max-height: 70vh;
  overflow-y: scroll;
}

#vvikcom-search-form ul#search-results.populating li {
  margin-bottom: -15px;
  opacity: 0;
}

#vvikcom-search-form ul#search-results li {
  background-color: #fff;
  margin-bottom: 5px;
  transition: margin 0.25s, opacity 0.2s 0.05s;
  opacity: 1;
}

#vvikcom-search-form ul#search-results li:last-child {
  border-bottom: none;
}

#vvikcom-search-form ul#search-results li:hover {
  background-color: #ebebeb;
}

#vvikcom-search-form ul#search-results li.selected {
  background: #2d2d2d;
}

#vvikcom-search-form ul#search-results li.selected a {
  color: #fff;
}

#vvikcom-search-form ul#search-results li a {
  padding: 10px 10px;
  display: block;
  color: #2d2d2d;
  text-decoration: none;
  text-align: left;
  position: relative;
}

@media (max-width: 639px) {
  #vvikcom-search-form ul#search-results li a {
    padding-bottom: 30px;
  }
}

#vvikcom-search-form ul#search-results li a span.result-type {
  font-size: 0.8em;
  color: #666;
  display: inline-block;
  position: absolute;
  top: 5px;
  right: 10px;
}

@media (max-width: 639px) {
  #vvikcom-search-form ul#search-results li a span.result-type {
    top: auto;
    bottom: 5px;
  }
}

body.search.search-no-results .site-inner {
  text-align: center;
}

body.search .site-inner {
  padding-bottom: 100px;
}

body.search .site-inner h1.header-title {
  text-shadow: none;
  color: #2d2d2d;
}

body.search .site-inner .search-results {
  width: 100%;
  max-width: 960px;
  margin: auto;
  padding: 20px;
  box-sizing: border-box;
}

@media (max-width: 639px) {
  body.search .site-inner .search-results {
    padding: 0px;
  }
}

body.search .site-inner .search-results li {
  display: block;
  margin-bottom: 20px;
}

body.search .site-inner .search-results li a {
  display: -webkit-flex;
  display: flex;
  width: 100%;
  text-decoration: none;
}

body.search .site-inner .search-results li a:hover h3 {
  text-decoration: underline;
}

body.search .site-inner .search-results li a .thumbnail-container {
  width: 150px;
  height: 150px;
  margin-right: 20px;
}

@media (max-width: 639px) {
  body.search .site-inner .search-results li a .thumbnail-container {
    width: 75px;
    height: 75px;
    margin-right: 10px;
  }
}

body.search .site-inner .search-results li a .thumbnail-container img {
  width: 100%;
  height: auto;
}

body.search .site-inner .search-results li a h3 {
  font-size: 1.2rem;
  color: #2d2d2d;
  margin-top: 0.25rem;
}

@media (max-width: 639px) {
  body.search .site-inner .search-results li a h3 {
    font-size: 1rem;
  }
}
/*# sourceMappingURL=search.css.map */