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

body#patsu,
body#patsu_outlet
{
	--main-color: #37519C;
}

body#bart
{
	--main-color: #006641;
}

body#homero
{
	--main-color: #C03C3C;
}

body
{
	font-family: Roboto, sans-serif;
	color: #FFFFFF;
	background-color: var(--main-color);
	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-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-color: #B1BAC2;
	color: #FFFFFF;
	display: flex;
	justify-content: center;
}

header .content
{
	margin: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 25px;
	padding: 25px;
}

header h1
{
	text-transform: uppercase;
}

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

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;
	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 #search_result_yes,
main #search_result_no
{
	display: none;
}

footer
{
	position: relative;
	height: auto;
	min-height: 100vh;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-color: #B1BAC2;
	padding: 25px;
}

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

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

footer i
{
	padding-right: 15px;
	width: 25px;
}

footer h1
{
	text-transform: uppercase;
}

footer h3
{
	padding-top: 20px;
}

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

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;
}

.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-primary
{
	background-color: var(--main-color);
	color: #FFFFFF;
}

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

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

.button_search_again
{
	margin: 35px 0;
}

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

.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
{
	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;
	}
}
