body {
	font-family: segoe ui, arial, sans-serif;
	margin: 0px;
	padding: 0px;
}

#query_form {
    background: transparent;
    padding: 10px;
    position: fixed;
    width: 100%;
	text-align: center;
}
#logo {
	color: #eee;
	font-weight: 900;
	font-size: 130px;
	float: left;
}
#query {
	font-size: 200%;
	transition: font-size 600ms;
	border: 1px solid #ccc;
	border-radius: 30px;
	padding: 10px;
	outline: none;
}

#items {
	padding: 0px 0px 0px 0px;
}

#result_info {
	clear: both;
	width: 50%;
	margin: auto;
}

#agg .item {
	display: block;
    border: 1px solid #ddd;
    width: 50%;
    text-align: initial;
    margin: 0 auto;
    background: #fff;
    padding: 5px;
}
#agg .item:hover {
	background: #eee;
	cursor: default;
}

item .hh {
	background: #ffefca;
}

item {
	cursor: default;
	display: block;
	padding: 20px;
	clear: both;
	min-height: 150px;
	width: 50%;
	margin: auto;
	transition: background 300ms;
}

item a {
	text-decoration: none;
	color: inherit;
}

item:hover {
	background: #ddd;
}

item:hover description {
	color: #000;
}

item provider {
	color: orange;
	padding-top: 20px;
	display: block;
}

item provider img {
	width: 150px;
}

item description {
	font-size: 80%;
	color: #999;
	transition: color 300ms;
}

item price {
	font-size: 120%;
	font-weight: bold;
	float: right;
	background: #eeeeee;
	padding: 5px;
	margin: 5px;
}

item time {
    font-size: 70%;
    color: #999;
    float: right;
    border: 1px solid #aaa;
    padding: 3px;
    border-radius: 3px;
    opacity: 0;
    transition: opacity 300ms;
}

item:hover time {
	opacity: 1;
}

item thumbnail {
	width: 150px;
	height:150px;
	display: inline-block;
	text-align: center;
	float: left;
	padding-right: 30px;
}
item thumbnail img {
	max-height: 150px;
	max-width: 150px;
	margin: auto;
	display: block;
	transition: scale 300ms;
}

item:hover thumbnail img {
	scale: 1.2;
}

html:not([data-scroll='0']) #query {
  font-size: 100%;
}

html:not([data-scroll='0']) #query_form {
  background: #eee;
  z-index: 1;
}

.provider_list {
    padding: 10px;
    clear: both;
	text-align: center;
}

.provider_list .provider {
	width: 200px;
    outline: 1px solid #bbb;
    height: 140px;
    display: block;
    font-size: 120%;
    float: left;
    padding: 5px;
    margin: 5px;
	text-decoration: none;
}

.provider_list .provider img {
	width: 200px;
}

.info {
	border: 2px solid #369;
	border-radius: 20px;
	font-family: serif;
	width:20px;
	height: 20px;
	display: inline-block;
	text-decoration: none;
    float: right;
    margin: 10px 30px 0px 0px;
}

.loader {
	border: 16px solid #f3f3f3; /* Light grey */
	border-top: 16px solid #3498db; /* Blue */
	border-radius: 50%;
	width: 120px;
	height: 120px;
	animation: spin 2s linear infinite;
	display: none;
	position: fixed;
	left: 50%;
	top: 50%;
	margin: -60px 0px 0px -60px;
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

@media only screen and (max-width: 1024px) {
	body {

	}
	item {
		width: 90%;
	}
	#result_info {
		width: 90%;
	}
	#logo {
		font-size: 50px;
		padding-top: 34px;
	}
	#query {
		font-size: 140%;
	}
	item thumbnail {

	}
	item thumbnail img {

	}
}