﻿* {
	box-sizing: border-box
}

	*:focus {
		outline: none
	}

html {
	background: var(--body);
}


h1, h2, h3, h4, h5, h6 {
	font-family: 'Lato', sans-serif;
}

h1 {
	font-size:30px;
}
ul {
	padding-left: 0;
}

button {
	margin: 0;
	padding: 0;
}

a {
	color: var(--form-default);
	text-decoration: none;
}

img {
	max-width: 100%
}

.container {
	max-width: 1336px;
}

/* ADDED */
@media (max-width: 1335px) {
	.container, .section {
		max-width: calc(100vw - 14px);

	}
}

main {
	padding-bottom: 16px;
	padding-top: 16px;
}

.underlined {
	text-decoration: underline;
	text-underline-offset: 2px;
}

.link {
	color: var(--primary);
}

	.link.disabled {
		color: var(--secondary-gray);
		cursor: default;
	}
		.link.disabled img {
			filter:var(--filter-secondary-gray)
		}

		.link--find:not(:last-child) {
			margin-right: 16px;
		}

.link--find-active {
	color: var(--form-default);
	font-weight: 700;
	position: relative;
}

	.link--find-active:after {
		background: var(--form-default);
		bottom: -5px;
		content: "";
		height: 2px;
		left: 0;
		position: absolute;
		right: 0;
		width: 100%;
	}
.no-link {
	cursor:default;
}
@media (max-width: 576px) {
	.link--find {
		background: var(--light-gray);
		border-radius: 4px;
		color: var(--form-default);
		display: inline-block;
		margin-bottom: 8px;
		padding: 8px 16px;
	}

		.link--find:not(:last-child) {
			margin-right: 8px;
		}

	.link--find-active {
		background: var(--primary);
		color: var(--white);
		text-decoration: none;
	}

		.link--find-active:after {
			display: none;
		}
}

.flex-auto {
	flex: 1 1 auto;
}

.page-title {
	color: var(--secondary);
	font-size: 30px;
	font-weight: 700;
	margin-bottom: 8px;
}

@media (max-width: 576px) {
	.page-title {
		font-size: 26px;
		margin-bottom: 8px;
		margin-top: 4px;
	}
}

.page-sub-title {
	color: var(--secondary);
	font-size: 20px;
	margin-bottom: 24px;
}

@media (max-width: 576px) {
	.page-sub-title {
		font-size: 18px;
		margin-bottom:0px;
	}
}

.table-striped--find-page {
	margin-bottom: 0;
	width: 100%;
}

	.table-striped--find-page .disabled {
		opacity: .5;
	}

	.table-striped--find-page td {
		border: none;
		padding-bottom: 14px;
		padding-top: 14px;
		vertical-align: middle;
	}

	.table-striped--find-page .row {
		padding: 14px 0;
	}

.table-striped > tbody > tr:nth-of-type(odd) > * {
	background: none;
	box-shadow: none;
}

.table-striped > tbody > tr:nth-of-type(even) > *,
.table-striped--find-page .row:nth-of-type(even) {
	background: var(--secondary-gray-4);
}

.table-striped--find-page .row .row {
	background: none;
}

@media (max-width: 576px) {
	.table-striped--find-page td {
		display: block;
	}

	.table-striped > tbody > tr:nth-of-type(even) > * {
		background: none;
	}

	.table-striped > tbody > tr td:nth-of-type(odd) {
		background: var(--secondary-gray-4);
	}
}

.historic-date {
	font-size: 12px;
	margin-bottom: 0;
	margin-top: 10px;
}

.historik-logo-container {
	margin: 0 auto;
	position: relative;
}

.table-striped--historic .row {
	padding: 0;
}

	.table-striped--historic .row .row {
		padding: 30px 0;
	}

.historic-table-line {
	background: var(--primary);
	flex: 1 1 auto;
	width: 1px;
}

.table-striped--historic .row:first-child .historic-table-line:first-child,
.table-striped--historic .row:last-child .historic-table-line:last-child {
	background: none;
}

/* EDITED */

.find-page-sticky-header.hidden {
	display: none;
}

.find-page-sticky-header {	
	background: var(--white);
	padding: 16px 0;
	position: fixed;
	top: 75px;
	width: 100%;
	z-index: 10;
	box-shadow: 0px 0px 8px 0px #00000014;
}

	.find-page-sticky-header.sticky-visible {
		animation: 0.5s stickyHeaderFadeIn;
		animation-fill-mode: forwards;
		visibility: visible;
	}
	.find-page-sticky-header.sticky-hidden {
		animation: 0.5s stickyHeaderFadeOut;
		animation-fill-mode: forwards;
	}
@keyframes stickyHeaderFadeOut {
	0% {
		top: 75px;
	}

	100% {
		visibility: hidden !important;
		opacity: 0;
		top: -75px;
	}
}
@keyframes stickyHeaderFadeIn {
	0% {
		top: -75px;
	}

	100% {
		visibility: visible !important;
		opacity: 1;
		top: 75px;
	}
}
/* END EDITED */

@media (max-width: 576px) {
	.find-page-sticky-header {
		display: none;
	}
}

.find-page-sticky-header .page-title {
	font-size: 24px;
	margin: 0;
}

.find-page-sticky-header .page-sub-title {
	font-size: 16px;
	margin: 0;
}



.section {
	padding-bottom: 32px;
	padding-top: 32px;
}

@media (max-width: 576px) {
	.section {
		padding-bottom: 24px;
		padding-top: 24px;
	}
}

.section--white {
	background-color: var(--white);
}

.section--margin {
	margin-bottom: 32px;
}

@media (max-width: 576px) {
	.section--margin {
		margin-bottom: 24px;
	}
}

.section--margin-small {
	margin-bottom: 16px;
}

@media (max-width: 576px) {
	.table-outer-container {
		overflow-x: auto;
	}

	.table-container {
		min-width: 1300px;
	}
}

.section-header-right-side-margin {
	margin-left: 32px;
}
@media (max-width: 576px) {
	.section-header-right-side-margin {
		/*margin-bottom: 20px;*/
	}
}

.icon-car-zoom {
	bottom: 0px;
	position: absolute;
	right: 0px;
}

.mobile-layer.active {
	display: block;
}

.mobile-menu {
	background: var(--secondary-gray-4);
	bottom: 0;
	display: none;
	flex-direction: column;
	left: 0;
	max-width: 294px;
	position: fixed;
	top: 63px;
	width: 100%;
	z-index: 10;
}

	.mobile-menu.active {
		display: flex;
	}

.mobile-menu__list {
	flex: 1 1 auto;
	margin: 0;
	padding: 0;
}

.mobile-menu__list li {
	border-bottom:1px solid var(--secondary-gray-4)
}

.mobile-menu__link {
	background: var(--white);
	color: var(--black);
	display: block;
	margin-bottom: 1px;
	font-size:14px;
	width:100%;
	word-break:keep-all;

}

.mobile-menu__profil {
	align-items: center;
	background: var(--white);
	color: var(--black);
	display: flex;
	padding: 15px;
	width: 100%;
}

	.mobile-menu__profil img {
		margin-right: 8px;
	}

/* OWN */
.mobile-menu__link:hover {
	color: var(--primary);
}
