.searchresult{
	max-height: 60vh;
	overflow: auto;
}

.jmg-input-wrap{
	position: relative;
	display: flex;
	flex-direction: row;
}
.jmg-search-imput{
	width: 100%;
	overflow: hidden;
}
.jmg-search-imput input[type="search"]{
	width: 100%;
	height: 40px;
	font-size: 14px!important;
	line-height: 14px!important;
	padding: 10px 15px;
	box-sizing: border-box;
	margin: 0;
	border: 1px solid #444444!important;
	border-radius: 3px;
	box-shadow: none!important;
}


.jmg-search-imput input[type="search"]::-moz-focus-inner {
	outline: 0!important;
	border: 1px solid #444444!important;
	box-shadow: none!important;
}
.jmg-search-imput input[type="search"]::focus {
 	outline: 0!important;
	border: 1px solid #444444!important;
	box-shadow: none!important;
} 


.jmg-input-wrap .jmg-search-button{
	overflow: visible;
	border: 0;
	padding: 10px 15px;
	margin: 0;
	cursor: pointer;
	width: auto;
	font-size: 14px;
	color: #444444;
	position: absolute;
	right: 0;
	top: 2px;
}
.jmg-input-wrap .jmg-preloader{
	overflow: visible;
	font-size: 14px;
	border: 0;
	padding: 10px 15px;
	margin: 0;
	width: auto;
	color: #444444;
	position: absolute;
	right: 50px;
}
.jmg-input-wrap .jmg-search-button span{
	font-size: 14px;
}
.searchresult ul{
	padding-left: 0;
	margin: 0;
}
.searchresult ul li{
	list-style: none;
	position: relative;
	display: flex;
	flex-direction: row;
	padding: 4px 0;
	border-bottom: 1px solid #eeeeee;
}
.searchresult ul li a,
.searchresult ul li a:hover,
.searchresult ul li a:visited,
.searchresult ul li a:focus{
	color: inherit;
	text-decoration: none;
	display: flex;
	width: 100%;
}
.searchresult ul li:hover{
	background: rgba(0,0,0,0.02);
}
.searchresult ul li a .jmg-img-prev{
	width: 60px;
	height:auto;
	display: inline-block;
	margin: 0 10px 0 5px;
	border: 1px solid #eeeeee;
	padding: 2px;
}
.searchresult ul li a .jmg-img-prev img{
	max-width: 100%;
	height:auto;
}
.jmg-backdrop{

}

.jmg-backdrop.fade{
	opacity: 0;
	display: none;
}

.jmg-backdrop.fade.in{
	opacity: 0.9;
	display: block;
}

.spinner {
  margin: 0 auto 0;
  width: 50px;
  text-align: center;
  position: relative;
  top: 50%;
}

.spinner > div {
  width: 10px;
  height: 10px;
  background-color: #333;

  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% { -webkit-transform: scale(0) }
  40% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bouncedelay {
  0%, 80%, 100% { 
    -webkit-transform: scale(0);
    transform: scale(0);
  } 40% { 
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
  }
}