/* at the very least you must set these two display properties */
/* this is so you can use CSS animations when toggling results */


/* visual styles */
.searchwp-live-search-results {
	box-sizing:border-box;
	-moz-box-sizing:border-box;
	background:#fff;
	-webkit-box-shadow:0 0 2px 0 rgba(30,30,30,0.4);
	box-shadow:0 0 2px 0 rgba(30,30,30,0.4);
	border-radius:3px;
	width:315px;
	min-height:175px;
	max-height:300px;
}
.searchwp-live-search-result p {
	font-size:0.9em;
	padding:1em;
	margin:0;
	border-bottom:1px solid rgba(30,30,30,0.1);
}

.searchwp-live-search-result:last-of-type p {
	border-bottom:0;
}

.searchwp-live-search-result a {
	display:block;
	white-space:nowrap;
	overflow:hidden;
	text-overflow:ellipsis;
}


/* custom styling */

.searchwp-live-search-results{
  overflow-x: hidden!important;
  width: 100%!important;
  top: 0!important;
  left: 0!important;
  right: 0!important;
  bottom: 0!important;
  position: relative!important;
  box-shadow: none!important;
  border: none!important;
  max-height: 80vh!important;
  background: transparent!important;
}
.search-results .single-result{
  background: #05213F;
  padding: 30px 20px;
  margin: 10px auto;
}

.search-results .single-result h5{
  color: #fff;
  margin-bottom: 0;
}

.search-results .single-result a{
  color: #fff;
}
.search-results .single-result span{
  color: #E9CC4C;
}
.search-modal ul{
  list-style: none;
  padding-left: 0;
}

.search-modal ul li{
  display: inline-block;
}
.search-modal{
  background: rgba(3, 68, 123, .95);
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  height: 100vh;
  display: none;
  text-transform: uppercase;
  z-index: 10;
}
.search-modal .form{
  margin-top: 100px;
}
.search-modal .form label{
  width: 100%;
}

.search-modal .form input#s{
  background: transparent;
  border: none;
  border-bottom: 2px solid #fff;
  border-radius: 0;
  width: 100%;
  font-size: 2em;
  color: #fff;
}
.search-modal .container{
  position: relative;
}
.search-modal .navbar-toggler-menu{
  top: 0;
  right: 0;
  left: auto;
  position: absolute;
}
.search-modal input[type="submit"]{
  display: none;
}
.search-results .single-result:hover{
  background: #083268;
  box-shadow: 0 0 20px 2px #05213F;
  border-bottom: 2px solid #FAD64C;
  margin-bottom: 8px;
}
