html, body
{
	margin: 0;
	padding: 0;
	height: 100%;
	scroll-behavior: smooth;
}

body
{
	font-family: Roboto,sans-serif;
	color: #FFFFFF;
	background-color: #37519C;
	line-height: 1.5;
	box-sizing: border-box;
}

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

h1
{
	font-size: 50px;
}

h2
{
	font-weight: lighter;
	font-size: 35px;
}

h3
{
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 5px;
}

header
{
	height: 100vh;
	background-image: url("../img/background-header.jpg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-color: #B1BAC2;
	color: #FFFFFF;
	display: flex;
	justify-content: center;

}

header .content
{
	width: 70%;
	margin: 0 auto;
	text-align: center;
	align-self: center;
}

header h1
{
	padding-top: 15px;
	line-height: 100px;
}

header .logo
{
	height: 150px;
	width: 150px;
	margin: 0 auto;
}

header .contact
{
	position: absolute;
	font-size: 22px;
	right: 25px;
	top: 20px;
}


header .chevron
{
	background-image: url("../img/chevron.png");
	background-repeat: no-repeat;
	background-position: center;
	height: 40px;
	width: 100%;
	background-size: 40px 40px;
	text-align: center;
	position: absolute;
	bottom: 20px;
	cursor: pointer;
}


main
{
	height: auto;
	min-height: 100vh;
	background-color: #FFFFFF;
	color: #151515;
	padding: 25px;
	text-align: center;

}

main h1
{
	font-size: 40px;
	text-align: left;
}

main h2
{
	text-align: left;
}

main .filters
{
	display: flex;
	justify-content: space-between;
	width: 80%;
	margin: 0 auto;
}

main .filters .search-item
{
	flex-basis: 30%;
	padding: 30px 0;
}

main .table_container
{
	width: 960px;
	margin: 0 auto;
}

main select
{
	padding: 12px;
	font-size: 17px;
	width: 100%;
	background: none;
	border: 1px solid black;
	border-radius: 5px;
}

main table
{
	margin: 0 auto;
	width: 100%;
	max-width: 100%;
	margin-bottom: 20px;
}

main table thead
{
	border-top: 1px solid #DDDDDD;
	border-bottom: 1px solid #DDDDDD;
}

main table thead tr th
{
	padding: 8px;
}

main table tbody tr
{
	border-bottom: 1px solid #DDDDDD;
}

main table tbody tr td
{
	padding: 8px;
	text-align: center;
	vertical-align: middle;
}

main #resultado_si,
main #resultado_no
{
	display: none;
}


footer
{
	position: relative;
	/* padding-bottom: 60px; */
	height: auto;
	min-height: 100vh;
	background-repeat: no-repeat;
	background-position: center;
	background-image: url("../img/background-footer.jpg");
	background-size: cover;
	background-color: #B1BAC2;
	padding: 25px;
}

footer .content
{
	display: flex;
	gap: 25px;
}

footer .content > div
{
	flex: 1;
	padding: 25px;
}

footer .glyphicon
{
	padding-right: 15px;
}


footer h3
{
	padding-top: 20px;
}

footer p
{
	font-size: 20px;
	font-weight: lighter;
	padding-left: 40px;
}


.btn
{
	display: inline-block;
	margin-bottom: 0;
	font-weight: 400;
	text-align: center;
	vertical-align: middle;
	cursor: pointer;
	background-image: none;
	border: 1px solid transparent;
	white-space: nowrap;
	padding: 6px 12px;
	font-size: 14px;
	line-height: 1.428571429;
	border-radius: 4px;
	user-select: none;
}

.btn-lg
{
	padding: 10px 16px;
	font-size: 18px;
	line-height: 1.33;
	border-radius: 6px;
}

.btn-purple
{
	background-color: #37519C;
	color: #fff;
}

.top-margin
{
	margin-top: 50px;
}

.btn-translucid
{
	background-color: rgba(0,0,0,.2);
	border: none;
	color: #fff;
}

.button_search_again
{
	margin: 35px 0;
}


.back-to-top
{
	position: fixed;
	bottom: 20px;
	right: 10px;
}


footer .map
{
	background-color: #d3d3d3;
	border-radius: 5px;
	position: relative;
	display: block;
	overflow: hidden;
	padding-bottom: 75%;
}

footer .map iframe
{
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	height: 100%;
	width: 100%;
	border: 0;
}


.loading
{
	display: flex;
	min-height: 40px
}

.loading img.spinner
{
	width: 20px;
	height: 20px;
	margin: auto;
	animation: spin 1s linear infinite
}

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


.hidden
{
	/* display: none !important; */
	visibility: hidden !important
}


@media (max-width:768px)
{
	h1
	{
		font-size: 32px !important;
		line-height: 72px !important;
	}

	h2
	{
		font-size: 20px;
	}

	h3
	{
		font-size: 18px;
	}

	main .filters
	{
		flex-direction: column;
	}

	main .table_container
	{
		width: 360px;
		overflow-x: scroll;
	}

	footer
	{
		padding: 10px;
	}

	footer .content
	{
		flex-direction: column;
	}

	footer p
	{
		font-size: 16px;
	}

}
