html.noscrolly, body.noscrolly
{
    -webkit-overflow-scrolling : touch !important;
    overflow: auto !important;
    height: 100% !important;
}

.adux-ajax-search-results
{
	background-color: #fff;
	border-radius: 3px;
	box-shadow: 0 0 2px 0 rgba(51, 51, 51, 0.4);
}

.adux-ajax-search-results li
{
	padding: 1em;
	border-bottom: 1px solid #eee;
}

.adux-ajax-search-results li:last-child
{
	border-bottom: 0;
}

@media screen and (max-width: 569px)
{
 	div#mvp-search-box
 	{
	    top: 26%;
	}
}




.progress-line.hidden, .progress-line.hidden:before
{
	display: none;
}

.progress-line, .progress-line:before
{
	height: 3px;
	width: 100%;
	margin: 0;
}

.progress-line
{
	background-color: #8b80804d;
	display: -webkit-flex;
	display: flex;
}

.progress-line:before
{
	background-color: #56565680;
	content: '';
	-webkit-animation: running-progress 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
	animation: running-progress 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@-webkit-keyframes running-progress
{
	0%
	{
		margin-left: 0px;
		margin-right: 100%;
	}

	50%
	{
		margin-left: 25%;
		margin-right: 0%;
	}

	100%
	{
		margin-left: 100%;
		margin-right: 0;
	}
}

@keyframes running-progress
{
	0%
	{
		margin-left: 0px;
		margin-right: 100%;
	}

	50%
	{
		margin-left: 25%;
		margin-right: 0%;
	}

	100%
	{
		margin-left: 100%;
		margin-right: 0;
	}
}
