* {
	padding: 0;
	margin: 0;
}

body {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	font-family: 'Nunito Sans', sans-serif;
	font-size: 16px;
}

input {
	box-sizing: border-box;
}

input:focus {
	outline: 0;
}

header {
	position: fixed;
	z-index: 10;
	width: 100%;
	height: 57px;
	background: #fff;
	border-bottom: 1px solid #eee;
}

.items {
	display: flex;
	width: 100%;
}

.item {
	padding-left: 18px;
}

.item:last-child {
	flex-grow: 1;
	text-align: center;
	padding-left: 26px;
	padding-right: 18px;
}

.dropdown {
	line-height: 36px;
}

.dropdown:hover {
	background-color: #eee;
}

.logo {
	display: flex;
	padding-top: 9px;
}

.logo-image {
	background: url('../images/logo.png') no-repeat center;
	background-size: 33px 38px;
	width: 33px;
}

.logo-text {
	color: #2ba3f4;
	font-family: 'Source Sans Pro','Helvetica Neue',Helvetica,Arial,sans-serif;
	font-weight: 900;
	font-size: 2em;
	padding-left: 3px;
}

.search-1 {
	padding-top: 12px;
}

.search-1-input-box {
	position: relative;
	max-width: 655px;
	margin-left: auto;
    margin-right: auto;
}

.search-1-input {
	border: none;
	width: 100%;
	height: 34px;
	padding: 0 36px 3px 6px;
	font-size: 1.1em;
	color: #5e5c60;
	border: 1px solid #ddd;
	border-radius: 5px;
}

.search-button-box {
	position: absolute;
	right: 9px;
	top: 0;
}

.search-button, .transaction-button {
	padding-top: 5px;
	background-color: transparent;
	border: 1px solid transparent;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
    -webkit-appearance: none;
	font-size: 1.2em;
    color: #2ba3f4;
	cursor: pointer;
}

.search-1-box {
	display: none;
	position: relative;
	margin-left: auto;
    margin-right: auto;
	margin-top: -4px;
	list-style-type: none;
	background-color: #fff;
	color: #3b3835;
	border: 1px solid #ddd;
	border-top: 0;
	color: #2ba3f4;
	overflow: hidden;
	overflow-y: auto;
	max-width: 653px;
	max-height: calc(100% - 100px);
	min-height: 35px;
	text-align: center;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
}

.search-2 {
	display: none;
	float: right;
	padding-top: 2px;
	color: #2ba3f4;
	font-size: 21px;
	cursor: pointer;
}

.search-1-back {
	display: none;
}

.search-3-input-box {
	position: relative;
}

.search-3-input {
	border: none;
	width: 100%;
	height: 34px;
	padding: 0 36px 3px 6px;
	font-size: 1.1em;
	color: #5e5c60;
	border: 1px solid #ddd;
	border-radius: 5px;
}

.search-3-box {
	/*display: none;*/
	position: relative;
	margin-top: -16px;
	list-style-type: none;
	background-color: #fff;
	color: #3b3835;
	border: 1px solid #ddd;
	border-top: 0;
	color: #2ba3f4;
	overflow: hidden;
	overflow-y: auto;
	max-width: 653px;
	max-height: calc(100vh - 100px);
	min-height: 35px;
	text-align: center;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
}

@media only screen and (max-width: 655px), only screen and (max-device-width: 655px) {
	.search-1-back {
		vertical-align: middle;
		padding-right: 10px;
		color: #2ba3f4;
		font-size: 1.3em;
		font-weight: normal;
		cursor: pointer;
	}
	
	.search-1-inner {
		display: none;
		flex-grow: 1;
	}
	
	.search-2 {
		display: block;
	}
}

main {
	flex: 1;
	padding: 70px 5px 5px 5px;
}

.results-outer {
	margin: 0 24px 0 24px;
	display: flex;
	flex-direction: column;
    -webkit-align-items: center;
    align-items: center;
}

.results-inner {
	display: flex;
	width: calc(100% + var(--results-item-margin) + .01px);
	max-width: calc( var(--results-item-max-width) * var(--results-items-per-row) + var(--results-item-margin) * var(--results-items-per-row) );
	margin-right: calc(-1 * var(--results-item-margin) / 2);
    margin-left: calc(-1 * var(--results-item-margin) / 2);
	margin-top: 12px;
	flex-wrap: wrap;
	justify-content: flex-start;
}

.results-title {
	width: calc(100% + var(--results-item-margin) + .01px);
	margin-bottom: 12px;
	margin-left: 12px;
	font-size: 2rem;
    font-weight: 500;
}

.results-item {
	width: calc(100% / var(--results-items-per-row) - var(--results-item-margin) - .01px);
	margin-right: calc( var(--results-item-margin) / 2);
	margin-left: calc( var(--results-item-margin) / 2);
	margin-bottom: 8px;
}

:root {
	--results-item-max-width: 360px;
	--results-items-per-row: 4;
	--results-item-margin: 16px;
}

@media only screen and (max-width: 1144px), only screen and (max-device-width: 1144px) {
	:root {
		--results-item-max-width: 360px;
		--results-items-per-row: 3;
		--results-item-margin: 16px;
	}
}

@media only screen and (max-width: 888px), only screen and (max-device-width: 888px) {
	:root {
		--results-item-max-width: 360px;
		--results-items-per-row: 2;
		--results-item-margin: 16px;
	}
}

@media only screen and (max-width: 510px), only screen and (max-device-width: 510px) {
	:root {
		--results-item-max-width: 360px;
		--results-items-per-row: 1;
		--results-item-margin: 16px;
	}
}

.ad {
	width: 100%;
    position: relative;
}

.ad:before {
    display: block;
    content: "";
    width: 100%;
    padding-top: 56.25%;
    background-color: rgba(0, 0, 0, 0.1);
}

.ad-thumbnail {
	position: absolute;
	overflow: hidden;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.ad-image-shadow {
	display: block;
    position: relative;
    transform: translateY(-50%);
}

.ad-image {
	display: block;
	position: absolute;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.ad-time {
	position: absolute;
	bottom: 0;
	right: 0;
	margin: 4px;
	background-color: rgba(0, 0, 0, 0.8);
	color: #f1f1f1;
	font-weight: 500;
	border-radius: 3px;
	padding: 1px 4px;
	line-height: 1.15rem;
}

.ad-overlays {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	height: 100%;
	width: 100%;
	opacity: 0;
	transition: .5s ease;
}

.ad:hover .ad-overlays {
	opacity: 1;
}
	
.ad:hover .ad-time {
	display: none;
}

.ad-thumbs-up-down {
	font-size: 20px;
	position: absolute;
	bottom: 0;
	right: 0;
	margin: 4px;
	text-align: center;
}

.ad-thumbs-up-down-button, .ad-thumbs-up-down-button-active {
	background: rgba(0, 0, 0, 0.8);
	border-radius: 3px;
	padding: 5px;
	cursor: pointer;
}

.ad-thumbs-up-down-button {
	color: #f1f1f1;
}
	
.ad-thumbs-up-down-button:hover {
	color: rgba(241, 241, 241, 0.7);
}

.ad-thumbs-up-down-button-active {
	color: #2ba3f4;
}

.ad-thumbs-up-down-button-active:hover {
	color: rgba(43, 163, 244, 0.7);
}

.ad-button-text {
	font-family: 'Nunito Sans', sans-serif;
	margin-left: 8px;
	font-size: 14px;
}

.ad-details {
	font-size: .95rem;
	margin: 12px 0 4px 0;
}

.ad-info {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.ad-data {
	display: flex;
	flex-direction: column;
	color: #6c6c6c;
	font-size: 13px;
	padding-top: 2px;
}

.ad-user {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.column {
	display: flex;
}

.menu {
	margin-left: 10px;
	width: 195px;
}

.panel {
	flex: 1;
	padding-left: 26px;
	overflow: hidden;
}

.full-page-open {
	display: none;
	cursor: pointer;
	font-size: 1rem;
	font-weight: bold;
	text-transform: uppercase;
}

.full-page {
	display: none;
	z-index: 1050;
	position: fixed;
	background: #fff;
	width: 100%;
	max-width: 250px;
	top: 0;
	right: 0;
	bottom: 0;
	height: 100%;
	overflow: hidden;
}

.filter-control {
	margin-top: 60px;
}

@media only screen and (max-width: 660px), only screen and (max-device-width: 660px) {	
	.column {
		flex-wrap: wrap;
		flex-direction: column;
	}
	
	.menu {
		display: none;
	}
	
	.full-page-open {
		display: block;
	}
	
	.filter {
		
	}
	
	.filter-slider-control {
		width: auto;
		margin: 16px 25px 0 25px;
	}
	
	.filter-slider-control h4 {
		margin-left: -13px;
	}
	
	.filter-control {
		margin: 50px 0 0 12px;
	}
}

.transaction-input-box {
	position: relative;
}

.transaction-button-box {
	position: absolute;
	left: 4px;
	top: 5px;
}

.transaction-input {
	display: block;
	border: none;
	width: 100%;
	max-width: 135px;
	height: 34px;
	padding: 1px 6px 0 18px;
	font-size: 1.1em;
	color: #5e5c60;
	border: 1px solid #ddd;
	border-radius: 5px;
}

.menu-block:not(:last-child) {
	padding-bottom: 10px;
	margin-bottom: 10px;
	border-bottom: 1px solid rgba(0,0,0,0.1);
}

.menu-title {
	text-transform: uppercase;
}

.form-container {
	display: grid;
	justify-content: center;
	width: 100%;
	margin-bottom: 8px;
}

.input-container {
	position: relative;
	display: flex;
	width: 325px;
	/*max-width: 507px;
	height: 52px;*/
	margin-bottom: 12px;
}

.input-text {
	padding: 0 36px 3px 6px;
	color: #5e5c60;
	background-color: #fff;
	border: 1px solid #ddd;
	border-radius: 5px;
	width: 100%;
	height: 34px;
	font-size: 1.1em;
}

.input-description {
	position: absolute;
	top: 4px;
	/*width: 175px;
	font-weight: bold;*/
	left: 16px;
	background-color: #fff;
	font-size: 16px;
	color: #6f7780;
	padding: 1px 6px;
}

.button {
	display: block;
	padding: 2px 6px;
	border: 1px solid #ccd0d5;
	background-color: #f5f6f7;
	cursor: pointer;
}

.button:hover {
	background-color: #ebedf0;
}

.dl-2 {
	display: flex;
}

.dl-2:first-child {
	background: rgb(2,0,36);
	background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(109,172,210,1) 0%, rgba(109,172,210,1) 0%);
}

.dt-2 {
	flex: 1;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}

.title {
	font-size: 20px;
	padding-bottom: 24px;
}

.sub-title {
	font-weight: 400;
	font-size: 16px;
	margin-top: 14px;
}

.error-label {
	display: block;
	margin-bottom: 12px;
	color: #e50000;
}

.error-input {
	border: 1px solid #e50000;
}

.error-description {
	color: #e50000;
}

.register-access {
	display: block;
	width: 100%;
	max-width: 507px;
	margin-top: 14px;
}

.register-access-title {
	font-weight: bold;
}

.register-access-logos {
	display: flex;
	flex-wrap: wrap;
}

.register-access-logo {
	margin-right: .8rem;
	color: #2ba3f4;
	font-family: 'Source Sans Pro','Helvetica Neue',Helvetica,Arial,sans-serif;
	font-weight: 900;
	font-size: 1em;
}

.category-list {}

.category-char {
	font-weight: 600;
	padding-bottom: 5px;
}

.category-group {
	display: flex;
	flex-wrap: wrap;
	padding-bottom: 10px;
}

.category-group:last-child {
	padding: 0;
}

.category {
	width: 125px;
}

.pagination {
	display: inline-block;
}

.pagination-item {
	display: inline;
}

.pagination-link {
	color: #0090e3;
    text-decoration: none;
}

.pagination-item-active {
	color: yellow;
}

.check-all-link+label {
    text-decoration: none;
    color: #0090e3;
    cursor: pointer;
    outline: none;
}

.check-all-link+label:hover {
    text-decoration: underline;
}

.darkenwrapper {
	display: none;
	position: relative;
	z-index: 44;
}

.darken {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: #000000;
	opacity: 0.5;
	z-index: 45;
}

.loading-box {
	background: #000000;
	border-radius: 5px;
	display: none;
	opacity: 0.8;
	margin-top: -50px;
	margin-left: -50px;
	height: 50px;
	width: 50px;
	position: fixed;
	left: 50%;
	top: 50%;
}

.loading {
	background: #191919;
	border-radius: 50%;
	display: block;
	position: relative;
	width: 38px;
	height: 38px;
	margin: 6px;
}

.loading div {
	box-sizing: border-box;
	border: 2px solid #fff;
	border-color: #fff transparent transparent transparent;
	border-radius: 50%;
	display: block;
	position: absolute;
	width: 22px;
	height: 22px;
	margin: 8px;
	animation: loading 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

.loading div:nth-child(1) {
	animation-delay: -0.45s;
}

.loading div:nth-child(2) {
	animation-delay: -0.3s;
}

.loading div:nth-child(3) {
	animation-delay: -0.15s;
}

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

.alert-open {
	overflow: hidden;
}

.alert {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1050;
	display: none;
	overflow: hidden;
	outline: 0;
}

.alert-open .alert {
	overflow-x: hidden;
	overflow-y: auto;
}

.alert-box {
	position: relative;
	width: auto;
	margin: 0.5rem;
	display: flex;
	align-items: center;
	min-height: calc(100% - (0.5rem * 2));
}

@media (min-width: 676px) {
	.alert-box {
		max-width: 600px;
		margin: 1.75rem auto;
		min-height: calc(100% - (1.75rem * 2));
	}
}

.alert.fade .alert-box {
	transition: transform 0.3s ease-out;
	transform: translate(0, -25%);
}

.alert.show .alert-box {
	transform: translate(0, 0);
}

.alert-content {
	width: 100%;
	background-color: #ffffff;
	border-radius: 0.3rem;
}

.alert-close {
	cursor: pointer;
	color: #2ba3f4;
	float: right;
	font-size: 24px;
}

.alert-close:hover {
	color: #078ecb;
}

.alert-text {
	padding: 1rem;
}

.alert-text p {
	margin: 8px 0;
	padding-bottom: 8px;
}

.select {
	border: 1px solid #ccd0d5;
	padding: 2px;
}

footer {
	padding: 5px;
}