html, body {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}

body {
	line-height: 1;
}
html {
	font-size: 62.5%;
}.link-group-editor {
	
}

.link-group-editor-parameters-box {
	box-sizing: border-box;
	border: 0.1rem solid #D1D1D1;
}

.link-group-editor-parameters-box-padding {
	padding: 1rem;
}/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

.reset applet, .reset object, .reset iframe,
h1, .reset h2, .reset h3, .reset h4, .reset h5, .reset h6, .reset p, .reset blockquote, .reset pre,
a, .reset abbr, .reset acronym, .reset address, .reset big, .reset cite, .reset code,
del, .reset dfn, .reset em, .reset img, .reset ins, .reset kbd, .reset q, .reset s, .reset samp,
small, .reset strike, .reset strong, .reset sub, .reset sup, .reset tt, .reset var,
b, .reset u, .reset i, .reset center,
dl, .reset dt, .reset dd, .reset ol, .reset ul, .reset li,
fieldset, .reset form, .reset label, .reset legend,
table, .reset caption, .reset tbody, .reset tfoot, .reset thead, .reset tr, .reset th, .reset td,
article, .reset aside, .reset canvas, .reset details, .reset embed, .reset 
figure, .reset figcaption, .reset footer, .reset header, .reset hgroup, .reset 
menu, .reset nav, .reset output, .reset ruby, .reset section, .reset summary,
time, .reset mark, .reset audio, .reset video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
.reset article, .reset aside, .reset details, .reset figcaption, .reset figure, .reset 
footer, .reset header, .reset hgroup, .reset menu, .reset nav, .reset section {
	display: block;
}
.reset ol, .reset ul {
	list-style: none;
}
.reset blockquote, .reset q {
	quotes: none;
}
.reset blockquote:before, .reset blockquote:after,
.reset q:before, .reset q:after {
	content: '';
	content: none;
}
.reset table {
	border-collapse: collapse;
	border-spacing: 0;
}
.image.background-cover {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

.image.background-contain {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
}

.image.background-center {
	background-position: center center;
	background-repeat: no-repeat;
}

.image.background-top-left {
	background-position: top left;
	background-repeat: no-repeat;
}

.full-size {
	width: 100%;
	height: 100%;
}

.full-width {
	width: 100%;
}

.full-height {
	height: 100%;
}

.centered-block {
	margin: auto;
}

.center-align-items {
	align-items: center;
}

.absolute-container {
	position: relative;
}

.position-relative {
	position: relative;
}

.position-absolute {
	position: absolute;
}

.absolute-overlay {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
}

.absolute-for-transform {
	position: absolute;
	left: 0;
	top: 0;
}

.absolute-right {
	position: absolute;
	right: 0;
}

.top-right {
	top: 0;
	right: 0;
}

.top-left {
	top: 0;
	left: 0;
}

.right-0 {
	right: 0;
}

.bottom-negative-1-8 {
	bottom: -1.8rem;
}

.no-pointer-events {
	pointer-events: none;
}

.all-pointer-events {
	pointer-events: all;
}

.cursor-pointer {
	cursor: pointer;
}

.display-block {
	display: block;
}

.display-inline {
	display: inline;
}

.display-inline-block {
	display: inline-block;
}

.no-overflow {
	overflow: hidden;
}

.float-right {
	float: right;
}

.clear-both {
	clear: both;
}

.clear-left {
	clear: left;
}

.clear-right {
	clear: right;
}

.no-margins {
	margin: 0;
}

.no-paddings {
    padding: 0;
}

.hidden-space {
	width: 0;
	display: inline-block;
}

.layer-order-high {
	z-index: 3;
}

.overflow-hidden {
	overflow: hidden;
}

.overflow-x-hidden {
	overflow-x: hidden;
}

.overflow-x-auto {
	overflow-x: auto;
}

.overflow-auto {
	overflow: auto;
}

.border-box-sizing {
	box-sizing: border-box;
}

.text-decoration-none {
	text-decoration: none;
}

a.custom-styled-link {
	text-decoration: none;
	color: inherit;
}

.transform-origin-top-center {
	transform-origin: center top;
}

.turned-180 {
	transform: rotate(180deg);
}

.ease-out-transformations {
	transition-property: transform;
	transition: 0.3s;
	transition-timing-function: ease-out;
}

.no-size {
	width: 0;
	height: 0;
}

@media print {
	.no-print, .no-print * {
		display: none !important;
	}
}

.vertical-align-top {
	vertical-align: top;
}

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

.fit-content {
	width: fit-content;
}

.bottom-05 {
	bottom: 0.5rem;
}

.top-05 {
	top: 0.5rem;
}

.display-none {
	display: none;
}

.text-decoration-underline {
	text-decoration: underline;
}

.fit-content-width {
	min-width: fit-content;
}

.centered-block-for-overflow {
	width: fit-content;
	margin: auto;
}.flex {
	display: flex;
}

.flex-row {
	display: flex;
	flex-direction: row;
}

.flex-column {
	display: flex;
	flex-direction: column;
}

.flex-wrap {
	flex-wrap: wrap;
}

.flex-shrink0 {
	flex-shrink: 0;
}

.flex-row.justify-between,
.flex-column.justify-between {
	justify-content: space-between;
}

.flex.justify-center,
.flex-row.justify-center,
.flex-column.justify-center {
	justify-content: center;
}

.flex-row.justify-end,
.flex-column.justify-end {
	justify-content: flex-end;
}

.flex-row.vertically-center-items {
	align-items: center;
}

.flex-row.align-items-end {
	align-items: flex-end;
}

.flex-row .flex-row-item {
	
}

.flex-row .flex-row-item:first-of-type {
	margin-left: 0rem;
}

.flex-row .flex-row-item:last-of-type {
	margin-right: 0rem;
}

.flex-row.singles > .flex-row-item {
	width: 100%;
}

.flex-row.halfs > .flex-row-item {
	width: 50%;
}

.flex-row > .flex-row-item.half {
	width: 50%;
}

.flex-row.thirds > .flex-row-item,
.flex-row-item.third {
	width: 33.33%;
}

.flex-row.quarters > .flex-row-item {
	width: 25%;
}

.flex-row > .flex-row-item.quarter {
	width: 25%;
}

.flex-column.halfs > .flex-column-item {
	height: 50%;
}

.flex-row .flex-row-item .reset-flex-row-item-size .flex-row-item {
	width: initial;
}

.flex-column.all-grow .flex-column-item {
	height: 0%;
}

.flex-column .flex-column-item:first-of-type {
	margin-top: 0rem;
}

.flex-column .flex-column-item:last-of-type {
	margin-bottom: 0rem;
}

.flex-vertical-line {
	width: 0.1rem;
	flex-grow: 0;
	flex-shrink: 0;
}

.flex-horizontal-line {
	height: 0.1rem;
	flex-grow: 0;
	flex-shrink: 0;
}

.flex-no-resize {
	flex-grow: 0;
	flex-shrink: 0;
}

.flex-resize {
	flex-grow: 1;
	flex-shrink: 1;
}

.flex-row-item.width-90 {
	width: 90%;
	flex-grow: 1;
	flex-shrink: 1;
}

.flex-row-item.width-80 {
	width: 80%;
	flex-grow: 1;
	flex-shrink: 1;
}

.flex-row-item.width-70 {
	width: 70%;
	flex-grow: 1;
	flex-shrink: 1;
}

.flex-row-item.width-60 {
	width: 60%;
	flex-grow: 1;
	flex-shrink: 1;
}

.flex-row-item.width-50 {
	width: 50%;
	flex-grow: 1;
	flex-shrink: 1;
}

.flex-row-item.width-40 {
	width: 40%;
	flex-grow: 1;
	flex-shrink: 1;
}

.flex-row-item.width-30 {
	width: 30%;
	flex-grow: 1;
	flex-shrink: 1;
}

.flex-row-item.width-20 {
	width: 20%;
	flex-grow: 1;
	flex-shrink: 1;
}

.flex-row-item.width-10 {
	width: 10%;
	flex-grow: 1;
	flex-shrink: 1;
}

.flex-row.align-end .flex-row-item {
	align-self: flex-end;
}

.flex-row.uniform-item > .flex-row-item {
	width: 1%;
	flex-grow: 1;
	flex-shrink: 1;
}

.centered-cell-holder {
	display: flex;
	justify-content: center;
	align-items: center;
}

.flex-column-desktop {
	display: flex
}

.flex-row-desktop {
	display: flex;
	flex-direction: column;
}

.align-items-mobile {
	align-items: center;
}

@media (min-width: 800px) {
	.flex-column-desktop {
		flex-direction: column;
	}

	.flex-row-desktop {
		flex-direction: row;
	}
	
	.align-items-mobile {
		align-items: normal;
	}
}

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

.flex-mobile-row {
	display: flex;
	flex-direction: row;
}

.flex-mobile-wrap {
	flex-wrap: wrap;
}

@media (min-width: 600px) {
	.flex-mobile-row {
		display: flex;
		flex-direction: column;
	}

	.flex-mobile-wrap {
		flex-wrap: nowrap;
	}
}

@media(min-width: 1024px) {
	.flex-desktop {
		display: flex;
	}
}

.align-items-start {
	align-items: flex-start;
}

.flex-basis-130 {
	flex: 0 0 13rem;
}

.justify-evenly {
	justify-content: space-evenly;
}

.align-self-end {
	align-self: flex-end;
}

.content-space-between {
	justify-content: space-between;
}.inline-list {
	
}

.inline-list .inline-list-item {
	display: inline-block;
}

.inline-list .inline-list-item:first-of-type {
	margin-left: 0rem;
}

.inline-list .inline-list-item:last-of-type {
	margin-right: 0rem;
}

.row-list {
	
}

.row-list .row-list-item {
	
}

.row-list .row-list-item:first-of-type {
	margin-top: 0rem;
}

.row-list .row-list-item:last-of-type {
	margin-bottom: 0rem;
}

.inline-list .row-list-item {
	display: inline-block;
}

.row-list .row-list-item:first-of-type {
	margin-top: 0rem;
}

.row-list .row-list-item:last-of-type {
	margin-bottom: 0rem;
}.text-align-center {
	text-align: center;
}

.text-align-left {
	text-align: left;
}

.text-align-right {
	text-align: right;
}

.vertical-text-top {
	vertical-align: text-top;
}

.font-italic {
	font-style: italic;
}

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

.no-paragraph-margins p {
	margin: 0;
}

.action-link {
	text-decoration: underline;
}

.action-link.secondary {
	color: #CCCCCC;
}.border-box {
	border-width: 0.1rem;
	border-style: solid;
	border-color: #333333;
}.date-with-details {
	
}

.date-with-details .primary {
	line-height: 1;
	font-size: 2.4rem;
	font-weight: 600;
	margin-right: 0.2rem;
}

.date-with-details .secondary {
	font-size: 1.2rem;
	font-weight: 600;
}

.date-with-details .details {
	font-size: 0.9rem;
	color: #7e7e7e;
}

.spacing.date-with-details-spacing {
	
}

.flex-row.date-with-details-item-spacing > .flex-row-item:not(:first-of-type) {
	margin-left: 0.1rem;
}

.flex-row.date-with-details-item-spacing > .flex-row-item:not(:last-of-type) {
	margin-right: 0.1rem;
}.date-selection-overlay {
	box-sizing: border-box;
	border: 1px solid #073988;
	background-color: #FFFFFF;
}

.date-selection-overlay-padding {
	padding: 1rem;
}

.date-selection-button {
	box-sizing: border-box;
	border: 1px solid #073988;
	background-color: #FFFFFF;
}

.date-selection-button-padding {
	padding: 1rem;
}

.date-selection-button.invalid,
.invalid .date-selection-button {
	border-color: #880707;
}.calendar-week:not(:first-of-type) {
	margin-top: 0.2rem;
}

.flex-row.calendar-week > .flex-row-item:not(:first-of-type) {
	margin-left: 0.1rem;
}

.flex-row.calendar-week > .flex-row-item:not(:last-of-type) {
	margin-right: 0.1rem;
}

.calendar-day {
	font-weight: bold;
	border: 1px solid rgb(7, 57, 136);
	padding: 1.3rem 0.5rem;
	text-align: center;
	cursor: pointer;
}

.calendar-day.today {
	background-color: rgb(7, 57, 136, 0.2);
}

.calendar-day.other-month {
	border: 1px solid rgb(221, 221, 221, 0.5);
	color: rgb(92, 92, 92, 0.5);
}

.calendar-day.selected {
	background-color: rgb(7, 57, 136);
	color: #FFFFFF;
}

.calendar-day.unselectable {
	pointer-events: none;
	background-color: rgb(221, 221, 221, 0.5);
	border: 1px solid rgb(221, 221, 221, 0.5);
	color: rgb(92, 92, 92, 0.5);
}.item-list .field {
	width: 30rem;
}

.item-list .field-type-select,
.item-list .field-type-options {
	width: auto;
}

.standard-flag {
	background-color: #C0C0C0;
	border-radius: 0.3rem;
	box-sizing: border-box;
}

.id-flag {
	font-size: 1.2rem;
	width: 6rem;
	text-align: center;
	
	background-color: #C0C0C0;
	color: #FFFFFF;
}

.status-flag {
	font-size: 0.9rem;
	text-align: center;
	background-color: #feffce;
}

.start-at-flag {
	background-color: #cbe2bf;
}

.end-at-flag {
	background-color: #d4af96;
}

.standard-flag-padding {
	padding: 0.2rem;
}

.date-selection-number {
	line-height: 1;
	font-size: 2.4rem;
	font-weight: 600;
	margin-right: 0.2rem;
}

.date-selection-month {
	font-size: 1.2rem;
	font-weight: 600;
}

.date-selection-weekday {
	font-size: 0.9rem;
	color: #7e7e7e;
}

.flex-row.date-selection-spacing > .flex-row-item:not(:first-of-type) {
	margin-left: 0.1rem;
}

.flex-row.date-selection-spacing > .flex-row-item:not(:last-of-type) {
	margin-right: 0.1rem;
}.validation-error-popup .up-arrow:before {
	position: absolute;
	top: 0;
	left: 0.7rem;
	transform: translateY(-100%);
	content: "";
	display: inline-block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 12px 11px 12px;
	border-color: transparent transparent #e94b35 transparent;
}

.validation-error-popup .up-arrow:after {
	position: absolute;
	top: 0;
	left: 0.8rem;
	transform: translateY(-100%);
	content: "";
	display: inline-block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 11px 10px 11px;
	border-color: transparent transparent #ffffff transparent;
}

.validation-error-popup .down-arrow:before {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	content: "";
	display: inline-block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 11px 12px 0 12px;
	border-color: #e94b35 transparent transparent transparent;
}

.validation-error-popup .down-arrow:after {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	content: "";
	display: inline-block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 10px 11px 0 11px;
	border-color: #ffffff transparent transparent transparent;
}

.validation-error-popup {
	background-color: #fff;
	text-align: center;
	position: relative;
	color: #e94b35;
	border: 1px solid #e94b35;
	padding: 2rem 2.6rem;
	font-size: 2rem;
	border-radius: 0.5rem;
	width: 37rem;
	margin-bottom: 11px;
}

.validation-error-popup-centered-over-position {
	left: 50%;
	transform: translate(-50%, -100%);
}.custom-selection-menu {
	box-sizing: border-box;
	background-color: #FFFFFF;
}

.custom-selection-menu-padding {
	padding: 1rem;
}

.dropdown-selection-popup {
	min-width: 20rem;
}

.custom-dropdown.dropdown-from-right .dropdown-selection-popup {
	right: 0;
}.verification-code-box {
	background-color: #ffffff;
	border-radius: 0.6rem;
	box-sizing: border-box;
	border: 1px solid #153c63;
	overflow: hidden;
}

.verification-code-box-digit-field {
	width: 5.2rem;
	font-size: 4.4rem;
	font-weight: normal;
	line-height: normal;
	padding: 1.2rem 0;
	box-sizing: border-box;
	text-align: center;
	border: none;
	background-color: #153c6300;
	transition: background-color 0.1s ease-in;
}

.verification-code-box-digit-field:focus {
	background-color: #153c6311;
	outline: none;
}

.verification-code-box-digit-field:not(:last-of-type) {
	border-right: 1px solid #153c63;
}
a {
	color: #153C63;
}

a.no-href-link {
	cursor: pointer;
	text-decoration: underline;
}

.centered-site {
	padding-left: 1rem;
	padding-right: 1rem;
	margin: auto;
}

@media (min-width: 800px) {
	.centered-site {
		padding-left: 4.0rem;
		padding-right: 4.0rem;
	}
}

@media (min-width: 1024px) {
	.centered-site {
		max-width: 128.0rem;
		padding-left: 8.0rem;
		padding-right: 8.0rem;
	}
}

.centered-content-text {
	width: 80%;
	max-width: 128rem;
	margin: auto;
}

.narrow-area-after-side-menu {
	max-width: 60rem;
}

.centered-narrow-area {
	max-width: 60rem;
	margin: auto;
}

.centered-wide-area {
	width: 90%;
	max-width: 90rem;
	margin: auto;
}

.force-width-half {
	width: 50%;
}

.width-20-rem {
	width: 20rem;
	min-width: 20rem;
}
.main-font-setting {
	font-family: 'Lato', sans-serif;
	font-size: 1.6rem;
	color: #313131;
}

h1:not(.skip-default) {
	font-family: 'Exo 2', sans-serif;
	font-size: 4rem;
}

h2:not(.skip-default) {
	font-family: 'Exo 2', sans-serif;
	font-size: 3rem;
}

h3:not(.skip-default) {
	font-family: 'Exo 2', sans-serif;
	font-size: 2.4rem;
}

.main-font-setting sup:not(.skip-default) {
	font-size: 0.5em;
}

.page-breadcrumb {
	font-size: 1.5rem;
	font-weight: bold;
	overflow: auto;
}

.page-title {
	font-size: 5.6rem;
	font-weight: 600;
}

.section-name {
	font-size: 2.4rem;
	font-weight: 600;
}

.page-excerpt {
	font-size: 2.2rem;
	font-style: italic;
	font-weight: 300;
	color: #153C63;
	line-height: 1.6;
}

@media (min-width: 800px) {
	.section-name {
		font-size: 3.6rem;
	}

	.page-excerpt {
		font-size: 2.4rem;
		line-height: 2;
	}
}

.wp-rich-text-formatting {
	line-height: 1.6;
}

.menu-link,
.custom-styled-link.menu-link {
	font-size: 1.8rem;
	font-weight: 500;
	color: #008acc;
}

.menu-link.active,
.menu-link.active-child {
	color: #003b64;
}

.no-results {
	font-size: 2.5rem;
	font-weight: bold;
	color: #BBBBBB;
}

.hero-title {
	font-size: 5.6rem;
	font-weight: 600;
	color: #FFFFFF;
}

.hero-excerpt {
	font-size: 2.4rem;
	font-weight: 300;
	color: #FFFFFF;
}

.team-title {
	font-size: 3.6rem;
	font-weight: 600;
}

.team-name-min-height {
	min-height: 2.7rem;
}

.teamleader-name {
	font-size: 3.2rem;
	font-weight: 600;
	color: #313131;
}

.team-person-name {
	font-size: 2.4rem;
	font-weight: 600;
}

.chain-of-command-title {
	font-size: 1rem;
	font-weight: 900;
	color: #999999;
}

.team-list-role {
	font-size: 1.4rem;
	font-weight: 900;
	color: #999999;
}

.team-list-card-width {
	flex-basis: calc(100% / 3);
	box-sizing: border-box;
}

.chain-of-command-name {
	font-size: 1.6rem;
	font-weight: 300;
	color: #313131;
}

.chain-of-command-card {
	flex: 1;
}

.chain-of-command-card-justify  {
	justify-content: center;
}

@media (max-width: 350px) {
	.chain-of-command-card {
		flex: initial;
	}

	.chain-of-command-card-justify {
		justify-content: normal;
	}
}

.contact-card-spacing {
	padding-right: 2rem;
	padding-bottom: 2rem;
}

.team-person-title {
	font-size: 1.4rem;
	font-weight: 600;
	color: #999999;
}

.section-with-intro-excerpt {
	font-size: 1.6rem;
	color: #626262;
	line-height: 1.6;
}

.standard-field-label {
	font-size: 1.4rem;
	font-weight: 600;
}

.standard-checkbox-label {
	font-size: 1.4rem;
}

.label-text {
	font-size: 1.4rem;
	font-weight: 600;
}

.message-date {
	font-size: 1.2rem;
	color: #999999;
}

.message-title {
	font-size: 1.4rem;
	font-weight: 600;
}

.message-title p {
	margin: 0;
}

.link-card-excerpt {
	font-size: 1.2rem;
	color: #999999;
}

a.link-card-excerpt {
	color: #153C63;
}

.field-change-label {
	font-size: 1.2rem;
	font-weight: 600;
	color: #999999;
}

.small-description {
	font-size: 1.2rem;
	color: #999999;
}

.small-label {
	font-size: 1.2rem;
	font-weight: 600;
	color: #999999;
}

.small-link {
	font-size: 1.2rem;
	font-weight: 600;
	color: #153C63;
}

.icon-initials {
	font-size: 1.6rem;
	font-weight: 600;
	position: relative;
	top: 0.1rem;
	color: #3489C9;
}

.icon-initials-small {
	font-size: 1rem;
	font-weight: 600;
	position: relative;
	top: 0.1rem;
	color: #3489C9;
}

.application-percentage {
	font-size: 1.2rem;
	color: #999999;
	font-weight: 600;
}

.application-percentage.complete {
	color: #3489c9;
	vertical-align: middle;
	padding-left: 0.5rem;
}

.question-title {
	font-size: 18px;
	font-weight: 600;
	margin: 0 0 10px 0;
}

.question-text {
	font-size: 16px;
	line-height: 1.75;
}

.next-of-kin-name {
	font-weight: 600;
}

.next-of-kin-text {
font-size: 1.6rem;
}

.small-text {
	font-size: 1.2rem;
	font-weight: 500;
	color: #153C63;
}

.small-text-bold {
	font-size: 1.2rem;
	font-weight: bold;
	color: #153C63;
}

.extra-small-label {
	font-size: 0.9rem;
	font-weight: bold;
	color: #999999;
}

.extra-small-text {
	font-size: 0.9rem;
	font-weight: normal;
	color: #999999;
}

.extra-small-blue-text {
	font-size: 0.9rem;
	font-weight: 600;
	line-height: normal;
	color: #368bcb;
}

.extra-small-white-text {
	font-size: 0.9rem;
	font-weight: bold;
	line-height: normal;
	color: #ffffff;
}

.info-text {
	font-size: 24px;
	font-weight: normal;
}

.info-paragraph {
	font-size: 1.6rem;
	font-weight: normal;
	line-height: 1.75;
}

.info-paragraph-margin-right {
	margin-right: 1.7rem;
}

.small-content-title {
	font-size: 1.8rem;
	font-weight: 600;
	line-height: normal;
}

.small-title {
	font-size: 1.2rem;
	font-weight: bold;
	line-height: normal;
	color: #999999;
}

.label-title {
	font-size: 1.6rem;
	font-weight: 600;
	line-height: normal;
}

.section-content-title {
	font-size: 1.4rem;
	font-weight: 900;
	line-height: normal;
	color: #939393;
}

.small-content-text {
	font-size: 1.2rem;
	font-weight: normal;
	line-height: normal;
}

.optional-text {
	font-size: 1.6rem;
	font-weight: normal;
	line-height: normal;
	color: #999999;
}

.select-operation {
	font-size: 1.2rem;
	font-weight: 500;
}

.medium-content-text {
	font-size: 2.4rem;
	font-weight: normal;
}

.title-medium {
	font-size: 2.4rem;
	font-weight: 600;
}

@media (min-width: 600px) {
	.title-medium {
		font-size: 3.2rem;
	}
}

.medium-text {
	font-size: 1.6rem;
	font-weight: normal;
	line-height: normal;
}

.medium-text-blue  {
	font-size: 1.6rem;
	font-weight: normal;
	line-height: normal;
	color: #153c63;
}

.text-font-weight-300 {
	font-size: 16px;
  	font-weight: 300;
}

.label-text-small {
	font-size: 1rem;
	font-weight: 900;
	color: #939393;
}

.content-text-small {
	font-size: 1.2rem;
	font-weight: normal;
}

.info-paragraph-title {
	font-size: 1.6rem;
	font-weight: bold;
	line-height: 1.75;
}

.small-title-text {
	font-size: 14px;
	font-weight: 300;
	line-height: normal;
}

.danger-text {
	font-size: 1.6rem;
	font-weight: bold;
	color: #c93434;
}

.danger-text-content {
	font-size: 12px;
	font-weight: 300;
	color: #999999;
}

.company-section-excerpt {
	font-size: 1.8rem;
	color: #153c63;
	font-weight: 300;
	font-style: italic;
}

.company-section-content {
	font-size: 1.6rem;
	color: #313131;
	font-weight: normal;
	font-style: normal;
}

.white-text-font-weight-300 {
	font-size: 1.6rem;
	font-weight: 300;
	line-height: 1.75;
	color: #ffffff;
}

.title-white-big {
	font-size: 3.2rem;
	font-weight: 600;
	line-height: normal;
	color: #ffffff;
}

.title-big {
	font-size: 2.4rem;
	font-weight: 600;
	line-height: normal;
}

@media(min-width: 800px) {
	.title-big {
		font-size: 3.2rem;
	}
}


@media (min-width: 1400px) {
	.white-text-font-weight-300 {
		font-size: 2.2rem;
	}

	.title-white-big {
		font-size: 5.2rem;
	}
}

.title-white {
	font-size: 2.4rem;
	font-weight: 900;
	line-height: normal;
	color: #ffffff;
}

.title-text-small {
	font-size: 1.8rem;
	font-weight: 500;
	line-height: normal;
}

.title-text-medium {
	font-size: 24px;
	font-weight: 900;
	line-height: normal;
}

.line-height-1 {
  line-height: 1;
}

.line-height-0 {
  line-height: 0;
}

.thin-blue-text {
	font-size: 1.6rem;
	font-weight: 300;
	line-height: normal;
	color: #153c63;
}

.line-height-1-5 {
	line-height: 1.5;
}

.title-text-small-grey {
	font-size: 1.8rem;
	font-weight: 600;
	line-height: 1.44;
	color: #cccccc;
}

.small-info-text-grey {
	font-size: 1.2rem;
	font-weight: 300;
	line-height: 1.5;
	color: #999999
}

.small-info-text-dark-blue {
	font-size: 1.2rem;
	color: #153c63;
}

.text-white {
	font-size: 1.6rem;
	font-weight: 600;
	line-height: normal;
	color: #ffffff;
}

.signup-user-name {
	font-weight: 600;
}

.signup-user-email {
	font-size: 1.8rem;
	color: #cccccc;
}

.terms-text {
	font-size: 1.2rem;
	font-weight: 300;
	line-height: 1.5;
}

.application-header-title-description {
	font-weight: 600;
	font-size: 2.0rem;
}

.application-header-title-role {
	font-weight: 600;
	font-size: 5.4rem;
}

.standard-text-area-input {
	font-family: 'Libre Franklin', sans-serif;
	font-size: 1.6rem;
	color: #313131;
}

.small-text-area-input {
	font-family: 'Libre Franklin', sans-serif;
	font-size: 1.0rem;
	color: #313131;
}

.interview-quesion-title {
	font-weight: 600;
	font-size: 2.0rem;
}

.interview-quesion-title.has-answer {
	color: #3489CA;
}

.action-link {
	font-size: 1.6rem;
	font-weight: normal;
	line-height: normal;
	color: #153c63;
}

.signed-in-name {
	color: #3489CA;
	font-size: 2.4rem;
	font-weight: 600;
}

.signed-in-email {
	color: #cccccc;
	font-size: 1.2rem;
}
.wp-block-image img {
	height: auto;
}

.image.source-hero-bottom {

}

.image.source-chevron-medium {
	width: 12px;
	height: 7px;
}

.image.source-chevron-breadcrumbs {
	width: 6px;
	height: 10px;
}

.image.source-circle,
.image.source-check-circle {
	width: 22px;
	height: 22px;
}

.image.source-circle.field-marker,
.image.source-check-circle.field-marker {
	width: 30px;
	height: 30px;
}

.image.source-email-red {
	width: 20px;
	height: 17px;
}

.image.contact-icon {
	width: 17px;
	height: 17px
}

.image.source-phone-red {
	width: 20px;
	height: 20px;
}

.image.source-map-pin {
	width: 20px;
	height: 24px;
}

.image.source-chevron-large {
	width: 17px;
	height: 10px;
}

.image.source-arrow-right {
	width: 20px;
	height: 16px;
}

.image.source-arrow-down-1 {
	width: 10px;
	height: 10px;
}

.image.source-navigation-menu-3 {
	width: 42px;
	height: 42px;
}

.image.source-arrow-down {
	width: 20px;
	height: 14px;
}

.image.source-form-field-search {
	width: 14px;
	height: 14px;
}

.image.source-common-file-empty {
	width: 22px;
	height: 22px;
}

.image.stars-icon {
	width: 23px;
	height: 24px;
}

.image.stars-icon.small {
	width: 14px;
	height: 14px;
}

.image.standard-icon {
	width: 24px;
	height: 24px;
}

.image.source-alert-circle-warning {
	width: 24px;
	height: 24px;
	color: #f7f3aa;
}

.image.smaller-icon {
	width: 23px;
	height: 23px;
}

.image.stats-icon {
	width: 48px;
	height: 48px;
}

.image.calendar-icon {
	width: 23px;
	height: 21px;
}

.image.triangle-icon {
	width: 7px;
	height: 7px;
}

.image.triangle-icon-10 {
	width: 10px;
	height: 10px;
}

.image.search-icon {
	width: 12px;
	height: 12px;
	color: #153c63;
}

.image.arrow-right {
	width: 9px;
	height: 9px;
}

.image.info-icon {
	width: 29px;
	height: 29px;
}

.image.settings-icon {
	width: 31px;
	height: 31px;
}

.image.view-icon {
	width: 23px;
	height: 13px;
}

.image.edit-icon {
	width: 13px;
	height: 13px;
}

.image.source-cog {
	width: 24px;
	height: 24px;
}

.image.source-navigation-menu-horizontal {
	width: 24px;
	height: 24px;
}

.image.read-more-arrow {
	width: 9px;
	height: 9px;
	display: inline-flex;
}

.image.icon-width-9 {
	width: 9px;
	height: 9px;
}

.image.file-icon {
	width: 19px;
	height: 23px;
}

.image.person-icon {
	width: 13px;
	height: 9px;
}

.image.signup-icon-sm {
	width: 15px;
  height: 23px;
}

.image.signup-icon-md {
  width: 20px;
  height: 31px;
}

.image.checkmark {
	width: 30px;
	height: 30px;
}

.image.verified-phone {
	width: 69px;
	height: 69px;
}

.image.source-icons-navigation-menu-horizontal-1 {
	width: 24px;
	height: 24px;
}

.image.illustration-icon {
	width: 140px;
	height: 140px;
}

.image.grade-icon {
	width: 42px;
	height: 42px;
}.spacing.double {
	height: 5.8rem;
}

.spacing.standard {
	height: 2.9rem;
}

.spacing.medium {
	height: 1.4rem;
}

.spacing.small {
	height: 0.7rem;
}

.spacing.micro {
	height: 0.4rem;
}

.spacing.none {
	height: 0rem;
}

.spacing.page-spacing {
	height: 2.9rem;
}

.inline-list.small-item-spacing > .inline-list-item {
	margin-left: 0.5rem;
	margin-right: 0.5rem;
}

.inline-list.small-item-spacing > .inline-list-item:first-of-type {
	margin-left: 0rem;
}

.inline-list.small-item-spacing > .inline-list-item:last-of-type {
	margin-right: 0rem;
}

.inline-list.menu-item-spacing > .inline-list-item {
	margin-left: 2rem;
	margin-right: 2rem;
}

.inline-list.menu-item-spacing > .inline-list-item:first-of-type {
	margin-left: 0rem;
}

.inline-list.menu-item-spacing > .inline-list-item:last-of-type {
	margin-right: 0rem;
}

.inline-list.small-item-row-spacing > .inline-list-item {
	margin-top: 1.0rem;
}

.flex-row.micro-item-spacing > .flex-row-item {
	margin-left: 0.6rem;
	margin-right: 0.6rem;
}

.flex-row.micro-item-spacing > .flex-row-item:first-of-type {
	margin-left: 0rem;
}

.flex-row.micro-item-spacing > .flex-row-item:last-of-type {
	margin-right: 0rem;
}

.flex-row.small-item-spacing > .flex-row-item {
	margin-left: 1rem;
	margin-right: 1rem;
}

.flex-row.small-item-spacing > .flex-row-item:first-of-type {
	margin-left: 0rem;
}

.flex-row.small-item-spacing > .flex-row-item:last-of-type {
	margin-right: 0rem;
}

.flex-row.medium-item-spacing > .flex-row-item {
	margin-left: 2rem;
	margin-right: 2rem;
}

.flex-row.medium-item-spacing > .flex-row-item:first-of-type {
	margin-left: 0rem;
}

.flex-row.medium-item-spacing > .flex-row-item:last-of-type {
	margin-right: 0rem;
}

.flex-row.big-item-spacing > .flex-row-item {
	margin-left: 3rem;
	margin-right: 3rem;
}

.flex-row.big-item-spacing > .flex-row-item:first-of-type {
	margin-left: 0rem;
}

.flex-row.big-item-spacing > .flex-row-item:last-of-type {
	margin-right: 0rem;
}

.flex-row.date-selection-spacing > .flex-row-item:not(:first-of-type) {
	margin-left: 0.1rem;
}

.flex-row.date-selection-spacing > .flex-row-item:not(:last-of-type) {
	margin-right: 0.1rem;
}

.flex-row.pixel-item-spacing > .flex-row-item:not(:first-of-type) {
	margin-left: 0.1rem;
}

.flex-row.pixel-item-spacing > .flex-row-item:not(:last-of-type) {
	margin-right: 0.1rem;
}

hr {
	height: 0.1rem;
	border-style: none;
	background-color: rgba(29, 29, 29, 1);
	margin: 0;
}

.section-name-side-line {
	height: 0.4rem;
	border-radius: 0.4rem;
	background-color: #3489C9;
	min-width: 3rem;
}

.menu-separator {
	height: 0.1rem;
	background: -moz-linear-gradient(left,  rgba(21,60,99,0) 0%, rgba(21,60,99,1) 50%, rgba(21,60,99,0) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(left,  rgba(21,60,99,0) 0%,rgba(21,60,99,1) 50%,rgba(21,60,99,0) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right,  rgba(21,60,99,0) 0%,rgba(21,60,99,1) 50%,rgba(21,60,99,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00153c63', endColorstr='#00153c63',GradientType=1 ); /* IE6-9 */
}

.team-list-hr-spacing {
	margin-top: 1rem;
	margin-bottom: 2rem;
}

.team-title-line {
	height: 0.4rem;
	border-radius: 0.4rem;
	background-color: #3489C9;
	width: 10rem;
}

.list-separator {
	background-color: #939393;
}

.blue-separator {
	background-color: #3489c9;
}

.next-of-kin-list-separator {
	background-color: #D8D8D8;
}

.small-hr-title-spacing {
	margin-top: 0.5rem;
	margin-bottom: 1rem;
}

.small-hr-spacing {
	margin-top: 1rem;
	margin-bottom: 1rem;
}

.medium-hr-spacing {
	margin-top: 2rem;
	margin-bottom: 2rem;
}

.vertical-line {
	height: 34px;
	width: 1px;
	background-color: #e8e8e8;
}

.vertical-line-spacing {
	margin-left: 0.1rem;
	margin-right: 0.1rem;
}

.white-line-small {
  	background-color: #ffffff;
}

.white-line-big {
	border: solid 5px #ffffff;
	height: auto;
}

.big-line-spacing {
	margin-left: 2.5rem;
	margin-right: 2.5rem;
}

.line-small {
	height: 1px;
	background-color: rgba(201, 52, 52, 0.1);
}

.line-faded-blue {
	height: 1px;
	background-image: linear-gradient(to left, transparent 0%, #153c63 50%, transparent 100%);
	background-color: transparent;
}.standard-box {
	box-sizing: border-box;
	border-radius: 0.3rem;
	border: 0.1rem solid #D1D1D1;
}

.standard-box-padding {
	padding: 1rem;
}

.big-box-padding {
	padding: 2rem;
}

.warning-box {
	border-color: #f7f3aa;
	background-color: #fffcf0;
}


.case-status-box {
	border-radius: 6px;
	border: solid 1px #c93434;
	background-color: rgba(201, 52, 52, 0.5);
	padding: 0.7rem 1.2rem 0.7rem 1.5rem;
}

.application-status-box {
	border-radius: 6px;
	border: solid 1px #368ACA;
	padding: 0.7rem 1.2rem 0.7rem 1.5rem;
}

@media (min-width: 600px) {
	.case-status-box {
		padding: 0.9rem 1.2rem 0.9rem 1.5rem;
	}
}

.incident-box { 
	border-radius: 6px;
	border: solid 1px #3489c9;
	background-color: #ffffff;
	padding: 1rem 1.7rem 1rem 1.2rem;
}

.application-box { 
	border-radius: 6px;
	border: solid 1px #3489c9;
	background-color: #ffffff;
	padding: 1.7rem 2rem 2rem 1.7rem;
}

.person-box {
	border: solid 1px #979797;
	background-color: #ffffff;
	height: 1.4rem;
	box-sizing: border-box;
}

.lime-green-box {
	border: solid 1px #00ff25;
	background-color: #eefff2;
}

.icon-box-information {
	width: 1.7rem;
	height: 1.4rem;
	border: solid 1px #979797;
	background-color: #ffffff;
}

.waiting-for-details-box {
	box-sizing: border-box;
	width: 20rem;
	height: 4.7rem;
	border-radius: 6px;
	border: solid 1px #368aca;
}

.date-selection-overlay {
	box-sizing: border-box;
	border-radius: 0.3rem;
	border: 0.1rem solid #D1D1D1;
	background: #FFFFFF;
}
	
.date-selection-overlay-padding {
	padding: 1rem;
}

@media (min-width: 800px) {
	.waiting-for-details-box {
		width: 23.9rem;
	}
}

.grouped-selection-box {
	border-radius: 6px;
	border: solid 1px #153c63;
	background-color: #ffffff;
}.padding-xs {
	padding: 0.5rem;
}

.padding-right-xs {
	padding-right: 0.5rem;
}

.padding-right-small {
	padding-right: 1rem;
}

.padding-left-small {
	padding-left: 1rem;
}

.standard-margin {
	margin: 1rem;
}

.padding-right-medium {
	padding-right: 3rem;
}

.padding-left-small {
    padding-left: 1rem;
}

.padding-left-medium {
	padding-left: 3rem;
}

.padding-small-horizontally {
    padding: 0 1rem;
}

.padding-left-medium {
    padding-left: 2rem;
}

.padding-right-medium {
    padding-right: 2rem;
}

.padding-top-medium {
	padding-top: 2rem;
}.no-margin-top {
    margin-top: 0;
}

.no-margin-bottom {
    margin-bottom: 0;
}

.margin-bottom-01 {
    margin-bottom: 0.1rem;
}

.margin-bottom-03 {
    margin-bottom: 0.3rem;
}


.margin-right-small {
    margin-right: 1rem;
}

.margin-left-xs {
    margin-left: 0.5rem;
}

.margin-left-small {
	margin-left: 1rem;
}

.margin-left-xs-medium {
	margin-left: 1.5rem;
}

.left-margin-large {
  margin-left: 3rem;
}

.margin-right-small-negative {
    margin-right: -1rem;
}

.margin-bottom-xs {
    margin-bottom: 0.5rem;
}

.margin-top-xs {
    margin-top: 0.5rem;
}

.margin-right-xs {
    margin-right: 0.5rem;
}

.margin-right-xs-medium {
	margin-right: 1.5rem;
}

.margin-horizontal-xs-medium {
	margin-right: 1.5rem;
	margin-left: 1.5rem;
}

.margin-top-small {
    margin-top: 1rem;
}

.margin-top-small-negative {
    margin-top: -1rem;
}

.margin-bottom-small {
    margin-bottom: 1rem;
}

.margin-bottom-xs-medium {
    margin-bottom: 1.5rem;
}

.margin-top-xs-medium {
    margin-top: 1.5rem;
}

.margin-right-medium {
    margin-right: 2rem;
}

.margin-left-medium {
    margin-left: 2rem;
}

.margin-bottom-medium {
    margin-bottom: 2rem;
}

.margin-top-medium {
    margin-top: 2rem;
}

.margin-bottom-small-negative {
    margin-bottom: -1rem;
}

.margin-vertically-5px {
    margin: 5px 0;
}

.margin-left-auto {
    margin-left: auto;
}

.margin-right-auto {
	margin-right: auto;
}

@media (min-width: 800px) {
    .margin-right-large {
        margin-right: 4.3rem;
    }
}

@media (max-width: 600px) {
    .margin-top-small-mobile {
        margin-top: 1rem;
    }
}

@media (max-width: 1024px) {
    .margin-top-small-tablet {
        margin-top: 1rem;
    }
}

.margin-top-2-3 {
    margin-top: 2.3rem; 
}

.margin-bottom-3-5 {
    margin-bottom: 3.5rem;
}

.margin-bottom-3-2 {
    margin-bottom: 3.2rem;
}

.margin-left-8-negative {
    margin-left: -8rem;
}

.margin-bottom-9-7 {
    margin-bottom: 9.7rem;
}

.margin-right-10 {
    margin-right: 10rem;
}

.margin-top-3 {
    margin-top: 3rem;
}

.margin-right-3 {
    margin-right: 3rem;
}

.margin-right-3-9 {
    margin-right: 3.9rem;
}

.margin-right-4 {
    margin-right: 4rem;
}.footer-divider {
	height: 30px;
}

.footer-divider.left {
	background-color: #008acc;
}

.footer-divider.right {
	background-color: #d0e8f5;
}

.footer-background {
	background-color: #003b64;
	color: #FFFFFF;
}


.footer {
	background-image: linear-gradient(to bottom, #111111, #4a4a4a);
	min-height: 526px;
}

.footer-flex {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.footer-justify-between {
	justify-content: space-between;
}

.footer-text-align {
	text-align: center;
}

@media (min-width: 800px) {
	.footer-flex {
		flex-direction: row;
		align-items: normal;
	}
	
	.footer-text-align {
		text-align: start;
	}
}

.footer-menu-label {
	margin-top: 0;
	margin-bottom: 2rem;
}

.footer-container {
	width: 291px;
}

.footer-paragraph {
	font-size: 12px;
	font-weight: normal;;
  color: #ffffff;
  line-height: 2;
}

.footer-menu-item {
	font-size: 12px;
	font-weight: 600;
	color: #ffffff;
}

.footer-menu-item-margin-top > li + li {
	margin-top: 10px;
}

.footer-contact-menu-spacing {
	margin-bottom: 1.7rem;
}

.footer-item-margin-top {
	margin-top: 1rem;
}


@media (min-width: 800px) {
	.footer-contact-menu-spacing {
		margin-bottom: 4.4rem;
	}

	.footer-item-margin-top {
		margin-top: 0;
	}
}

.footer-padding {
	padding: 6.5rem 0;
}

button.footer-button-font-size {
	font-size: 1.4rem;
}

@media (min-width: 800px) {
	button.footer-button-font-size {
		font-size: 1.6rem;
	}
}

.footer-line {
	height: 1.05px;
	background-image: linear-gradient(to left, transparent 0%, #ffffff 50%, transparent 100%);
	background-color: transparent;
}


.footer-horizontal-section-padding {
	padding: 2.5rem 0;
}

.footer-image {
	width: 100%;
	height: 280px;
	background-image: url('https://picsum.photos/1688/466');

	position: relative;
	margin-bottom: -5rem;
	z-index: 1;
}

.footer-image-textbox {
	width: 280px;
	background-image: linear-gradient(to top, #7d8a95 0%, #213a4e 100%);
	padding: 2rem 1.5rem;
	box-sizing: border-box;

	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: -200px;
	min-height: 280px;
}

@media (min-width: 600px) {
	.footer-image {
		height: 400px;
	}
	
	.footer-image-textbox {
		width: 370px;
		padding: 3.3rem 5.5rem 5.5rem 5.5rem;
		left: 15%;
		transform: none;
		top: -140px
	}
}

@media (min-width: 1400px) {
	.footer-image {
		height: 450px;
		margin-bottom: -8rem;
	}

	.footer-image-textbox {
		width: 450px;
	}
}

.footer-textbox-title-margin {
	margin-top: 0;
	margin-bottom: 1.6rem;
}

.footer-textbox-text-margin {
	margin-top: 0;
	margin-bottom: 3.3rem;
}.additional-header-background {
	background-color: #008acc;
	color: #FFFFFF;
}

.main-header-background {
	background-color: #d0e8f5;
}

.menu-drop-down-box {
	width: 28rem;
	box-sizing: border-box;
	background-color: #FFFFFF;
	border: 0.1rem solid #E1E1E5;
	border-radius: 0.3rem;
}

.menu-drop-down-box-padding {
	padding: 2rem;
}

.menu-drop-down-top {
	height: 1.5rem;
}

.menu-drop-down-top-arrow {
	position: absolute;
	top: 100%;
	left: 50%;
	
	width: 1.4rem;
	height: 1.4rem;
	border: solid #E1E1E5;
	border-width: 0 0.1rem 0.1rem 0;
	background-color: #FFFFFF;
	
	transform: translate(-50%, -50%) rotate(-135deg);
}

.header-option-menu-drop-down-top-arrow {
	position: absolute;
	top: 100%;
	left: 80%;
	
	width: 1.4rem;
	height: 1.4rem;
	border: solid #E1E1E5;
	border-width: 0 0.1rem 0.1rem 0;
	background-color: #FFFFFF;
	
	transform: translate(-50%, -50%) rotate(-135deg);
}/* --------------------------------------------------------------------------------------------- */
/*	Menu Top
/* --------------------------------------------------------------------------------------------- */

.menu-top {
	font-size: 1.6rem;
	font-weight: 500;
	position: relative;
}

.menu-top-inner {
	background-image: linear-gradient(180deg, #F3F7FA 0%, #FDFDFD 33%, #FDFDFD 66%, #F3F7FA 100%);
	border-bottom: .1rem solid #153c63;
	border-top: .1rem solid #153c63;
	position: relative;
}

.menu-top-list {
	display: flex;
	flex-direction: column;
	list-style: none;
	max-width: 118rem;
	margin: 0 auto;
	padding: 0;
	width: calc( 100% - 4rem );
}

.menu-top li {
	margin: 0;
}

.menu-top li + li {
	border-top: .1rem solid #153c63;
}

.menu-top a {
	display: block;
	position: relative;
	text-decoration: none;
}

.menu-top a span {
	border-bottom: .4rem solid transparent;
	padding: .2rem 0 0;
}

.menu-top .current-menu-item > a span {
	border-bottom-color: #368bcb;
}

.header-background-dots-placement {
	position: absolute;
	top: 0;
	right: 0;
	width: 73rem;
	height: 66rem;
	overflow: hidden;
	
}

.header-background-dots-placement.mobile {
	width: 42rem;
	height: 38rem;
}

.header-background-dots {
	width: 125%;
	height: 125%;
	transform: translate(20%, -40%);
	opacity: 0.1;
}

@media ( min-width: 700px ) {

	.menu-top {
		font-size: 1.6rem;
	}

	.menu-top-list {
		flex-direction: row;
	}

	.menu-top-list li {
		margin: 0 5.5rem 0 0;
	}

	.menu-top li + li {
		border-top: none;
	}

	.menu-top a {
		
	}

	.menu-top a span {
		padding: .6rem 0 .2rem;
	}

}


/* --------------------------------------------------------------------------------------------- */
/*	Menu Side
/* --------------------------------------------------------------------------------------------- */

.menu-side {
	position: absolute;
		left: -25.8rem;
		top: -2.5rem;
	transition: left .35s ease-in .25s;
	width: 30rem;
	z-index: 5;
}

.menu-side.stuck {
	position: fixed;
	top: 2rem;
}

.menu-side.active {
	left: 0;
	transition-timing-function: ease-out;
}

@media ( min-width: 500px ) {

	.menu-side {
		left: -23.6rem;
	}
	
}

/* Menu Toggle ------------------------------- */

.menu-side-toggle {
	background-color: #143c63;
	border: none;
	border-radius: 0 99rem 99rem 0;
	cursor: pointer;
	display: flex;
	font-family: inherit;
	justify-content: space-between;
	margin: 0;
	outline: none;
	padding: 0;
	text-align: left;
	width: 100%;
	-webkit-appearance: none;
	-moz-appearance: none;
}

.menu-side-toggle-name {
	color: #fff;
	font-size: 1.6rem;
	font-weight: 500;
	padding: 1.2rem 2rem;
}

/* TOGGLE ICON */

.menu-side-toggle-icon {
	align-items: center;
	display: flex;
	flex-shrink: 0;
	height: 4.3rem;
	position: relative;
	width: 4.2rem;
}

.menu-side-toggle-icon .icon {
	margin: 0 auto;
	position: relative;
	width: 1.8rem;
}

.menu-side-toggle .bars,
.menu-side-toggle .bars:before,
.menu-side-toggle .bars:after {
	background-color: #fff;
	height: .1rem;
	width: 100%;
	transition: background-color .15s linear, transform .15s linear, width .05s linear;
}

.menu-side-toggle .bars:before,
.menu-side-toggle .bars:after {
	content: "";
	display: block;
	position: absolute;
		left: 0;
		right: 0;
}

.menu-side-toggle .bars:before {
	transform: translateY( -.7rem );
	transform-origin: bottom left;
}

.menu-side-toggle .bars:after {
	transform: translateY( .7rem );
	transform-origin: top left;
}

.menu-side.active .bars {
	background-color: transparent;
}

.menu-side.active .bars:before,
.menu-side.active .bars:after {
	width: 75%;
}

.menu-side.active .bars:before { transform: rotate( -45deg ) translateY( 0 ); }
.menu-side.active .bars:after { transform: rotate( 45deg ) translateY( 0 ); }

/* TOGGLE LABEL */

.menu-side-toggle-icon .label {
	border: .1rem solid #ccc;
	background-color: #FFFFFF;
	border-radius: .4rem;
	font-size: 1.1rem;
	white-space: nowrap;
	padding: .36em .54em;
	position: absolute;
		left: 50%;
		top: calc( 100% + 1em );
	transform: rotate( -90deg ) translateY( -50% ) translateX( -100% );
	transform-origin: top left;
	transition: opacity .25s linear .65s;
}

.menu-side-toggle-icon .label:before {
	background: #fff;
	border-top: .1rem solid #ccc;
	border-right: .1rem solid #ccc;
	content: "";
	display: block;
	height: .8em;
	position: absolute;
		right: calc( -.4em - .1rem );
		top: 50%;
	transform: translateY( -50% ) rotate( 45deg );
	width: .8em;
}

.menu-side.active .menu-side-toggle-icon .label {
	opacity: 0;
	transition-delay: 0s;
}

@media ( min-width: 500px ) {

	.menu-side-toggle-name {
		font-size: 1.8rem;
		padding: 2.15rem 3rem;
	}

	.menu-side-toggle-icon {
		height: 6.4rem;
		width: 6.4rem;
	}

	.menu-side-toggle-icon .icon {
		width: 2.7rem;
	}

	.menu-side-toggle .bars,
	.menu-side-toggle .bars:before,
	.menu-side-toggle .bars:after {
		height: .2rem;
	}

	.menu-side-toggle .bars:before {
		transform: translateY( -1rem );
		transform-origin: bottom left;
	}

	.menu-side-toggle .bars:after {
		transform: translateY( 1rem );
		transform-origin: top left;
	}

	.menu-side-toggle-icon .label {
		font-size: 1.8rem;
		padding: .58em 1.16em;
	}

}

/* Menu List --------------------------------- */

.menu-side-inner {
	background-color: #fff;
	border-bottom: solid .1rem #3489c9;
	border-right: solid .1rem #3489c9;
	border-radius: 0 0 .6rem 0;
	box-shadow: 0 0 1rem 0 #00000033;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
	box-sizing: border-box;
	font-size: 1.4rem;
	opacity: 0;
	padding: 0 1rem;
	transition: opacity .25s linear .25s;
	width: 26.7rem;
}

.menu-side.active .menu-side-inner {
	opacity: 1;
}

.menu-side ul,
.menu-side li {
	list-style: none;
	margin: 0;
	padding: 0;
}

.menu-side-list .ancestor-wrapper {
	border-bottom: .1rem solid #EAF3F9;
	display: flex;
	justify-content: space-between;
	padding: .2rem 0;
}

.menu-side-list .show-sub-nav > .ancestor-wrapper {
	background-color: #EAF3F9;
}

.menu-side-list a {
	color: inherit;
	display: block;
	padding: 1.5rem 0 1.5rem 1rem;
	text-decoration: none;
	transition: none;
	width: 100%;
}

.menu-side-list .current-menu-item > .ancestor-wrapper,
.menu-side-list .ancestor-wrapper:hover {
	background-color: #368bcb;
	color: #fff;
}

.menu-side-list .current-menu-item > .ancestor-wrapper > a,
.menu-side-list .ancestor-wrapper:hover > a {
	border-left-color: transparent;
}

.menu-side-list .sub-nav-toggle {
	background-color: transparent;
	border: none;
	border-radius: 0;
	cursor: pointer;
	display: block;
	flex-shrink: 0;
	margin: 0;
	outline: none;
	padding: 0;
	width: 4.2rem;
	-webkit-appearance: none;
	-moz-appearance: none;
}

.menu-side-list li.show-sub-nav > .ancestor-wrapper .expand-icon,
.menu-side-list li:not(.show-sub-nav) > .ancestor-wrapper .collapse-icon {
	display: none;
}

.menu-side-list .sub-nav {
	display: none;
}

.menu-side-list .show-sub-nav > .sub-nav {
	display: block;
}

.menu-side-list .sub-nav a {
	border-left: .4rem solid #EAF3F9;
}

.menu-side-list .sub-nav .sub-nav {
	margin-left: .4rem;
}.standard-button {
	box-sizing: border-box;
	cursor: pointer;

	border: 0.1rem solid #153C63;
	border-radius: 999rem;
	text-decoration: none;

	color: #FFFFFF;
	font-size: 1.6rem;
	font-weight: 900;
	white-space: nowrap;

	background: rgb(36,98,149); /* Old browsers */
	background: -moz-linear-gradient(-45deg,  rgba(36,98,149,1) 0%, rgba(21,60,99,1) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(-45deg,  rgba(36,98,149,1) 0%,rgba(21,60,99,1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(135deg,  rgba(36,98,149,1) 0%,rgba(21,60,99,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#246295', endColorstr='#153c63',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}

.inactive-during-process {
	pointer-events: none;
}

.inactive-button {
	box-sizing: border-box;
}

.standard-button.match-field-size {

}

.standard-button:hover {
	color: #153C63;
	background: #FFFFFF;
}

.standard-button-padding {
	padding: 1rem 4rem;
}

.button-padding-bigger {
	padding: 1rem 5rem;
}

.edit-button {
	box-sizing: border-box;
	cursor: pointer;

	border: 0.1rem solid #153C63;
	border-radius: 999rem;
	text-decoration: none;

	color: #153C63;
	font-size: 1.2rem;
}

.edit-button.preferred-option {
	color: #FFFFFF;
	font-weight: 900;

	background: rgb(36,98,149); /* Old browsers */
	background: -moz-linear-gradient(-45deg,  rgba(36,98,149,1) 0%, rgba(21,60,99,1) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(-45deg,  rgba(36,98,149,1) 0%,rgba(21,60,99,1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(135deg,  rgba(36,98,149,1) 0%,rgba(21,60,99,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#246295', endColorstr='#153c63',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}

.edit-button:hover,
.edit-button.preferred-option:hover {
	color: #153C63;
	background: rgba(21, 60, 99, 0.1);
}

.edit-button-padding {
	padding: 0.3rem 0.7rem;
}

.adjust-button {
	box-sizing: border-box;
	cursor: pointer;

	border: 0.1rem solid #D1D1D1;
	border-radius: 999rem;
	text-decoration: none;

	color: #D1D1D1;
	font-size: 1.2rem;
}

.adjust-button:hover {
	color: #153C63;
	border-color: #153C63;
}

.adjust-button-padding {
	padding: 0.3rem 0.7rem;
}

.button-centered-content {
	padding-left: 0;
	padding-right: 0;
	text-align: center;
}

.match-field-size-padding {
	padding: 0.5rem 2rem;
}

.standard-field {
	box-sizing: border-box;
	border-radius: 0.6rem;
	border: 0.1rem solid #153c63;
	background-color: #ffffff;
}

.standard-dropdown-button {
	box-sizing: border-box;
	border-radius: 0.6rem;
	border: 0.1rem solid #153c63;
	background-color: #ffffff;
}

.table-field {
	box-sizing: border-box;
	border-radius: 0.6rem;
	border: 0.1rem solid #D1D1D1;
	background-color: #ffffff;
}

.standard-field-min-height {
	min-height: 41px;
}

.standard-field.invalid {
	border-color: rgba(255, 68, 0, 1);
	background-color: rgba(255, 68, 0, 0.1);
}

.standard-field.uneditable {
	border-color: #CCCCCC;
}

.standard-field-padding {
	padding: 1.1rem;
}

.standard-dropdown-button-padding {
	padding: 1.1rem;
}

.standard-field.small,
.table-field.small {
	border-radius: 0.3rem;
}

.standard-field-padding.small {
	padding: 0.5rem;
}

.custom-selection {
	box-sizing: border-box;
	border: 0.1rem solid #D1D1D1;
	cursor: pointer;
}

.table-selection {
	box-sizing: border-box;
	border: 0.1rem solid #D1D1D1;
	cursor: pointer;
	border-radius: 0.3rem;
}

.custom-selection-padding {
	padding: 1rem;
}

.custom-selection-padding.small {
	padding: 0.5rem;
}

.application-selection {
	font-size: 1.5rem;
	border-radius: 0.75rem
}

.application-selection .dropdown-selection-popup {
	font-size: 1.5rem;
}

.application-selection-desktop {
	width: 15rem;
}

.application-selection-desktop .dropdown-selection-popup {
	width: 15rem;
	font-size: 1.5rem;
}

.application-selection-padding {
	padding: 0.5rem;
}

.team-selection {
	font-size: 1.2rem;
	border-radius: 0.75rem;
	border-color:#153C63;
}

.team-selection .dropdown-selection-popup {
	font-size: 1.2rem;
}

.team-selection-desktop {
	width: 12rem;
}

.team-selection-mobile {
	width: 100%;
}

.team-selection-desktop .dropdown-selection-popup {
	width: 12rem;
	font-size: 1.2rem;
}

.team-selection-mobile .dropdown-selection-popup {
	width: 100%;
	font-size: 1.2rem;
}

.team-selection-padding {
	padding: 0.5rem;
}

.employee-data-selection {
	font-size: 1.2rem;
	border-radius: 0.75rem;
	border-color:#153C63;
}

.employee-data-selection .dropdown-selection-popup {
	font-size: 1.2rem;
}

.employee-data-selection-desktop {
	width: 30rem;
}

.employee-data-selection-desktop + .dropdown-selection-popup {
	width: 30rem;
	font-size: 1.2rem;
}

.employee-data-dropdown-max-size {
	max-height: 30rem;
	overflow-y: scroll;
}

.employee-data-selection-padding {
	padding: 0.5rem;
}

.team-filter {
	width: 12rem;
	box-sizing: border-box;
	border: 0.1rem solid #153c63;
	font-size: 1.2rem;
	border-radius: 0.75rem;
	padding: 0.5rem;
}

.employee-filter {
	width: 20rem;
	box-sizing: border-box;
	border: 0.1rem solid #153c63;
	font-size: 1.2rem;
	border-radius: 0.75rem;
	padding: 0.5rem;
}

.team-filter-mobile {
	display: flex;
	width: 100%;
	box-sizing: border-box;
	border: 0.1rem solid #153c63;
	font-size: 1.2rem;
	border-radius: 0.75rem;
	padding: 0.5rem;
}

.filter-input {
	box-sizing: border-box;
	border: none;
	outline: none;
	padding-left: 0.5rem;
	width: 100%;
}

.custom-selection-menu {
	box-sizing: border-box;
	background-color: #FFFFFF;
	border: 0.1rem solid #D1D1D1;
	width: 100%;
	max-height: 30rem;
	overflow: auto;
}

.custom-selection-menu-padding {
	padding: 1rem;
}

.dropdown-selection-popup {
	z-index: 5;
}

.map-control .dropdown-selection-popup {
	z-index: 450;
}

.site-logo {
	height: 6rem;
	width: auto;
}

.site-logo.small {
	height: 4.2rem;
}

.mobile-site-menu .dropdown-selection-popup {
	right: 0;
}

.alignwide {
	margin-left: -12.5%;
	margin-right: -12.5%;
	max-width: 100vw;
}

.alignfull {
	margin-left: calc(-100vw / 2 + 100% / 2);
	margin-right: calc(-100vw / 2 + 100% / 2);
	max-width: 100vw;
}

.alignfull img {
	width: 100vw;
}

.team-image {
	width: 15rem;
	height: 22.5rem;
	background-color: #DDDDDD;
}

.section-with-intro-title {
	max-width: 35rem;
}

.link-box {
	box-sizing: border-box;
	background-color: #FFFFFF;
	-webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1);
	-moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1);
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1);;
}

.link-box-padding {
	padding: 1rem;
}

.link-box-image {
	height: 10rem;
}

.standard-checkbox {
	vertical-align: middle;
}
.breadcrumb-container-desktop {
	max-width: 100%;
}

.breadcrumb-container-mobile {
	display: flex;
    width: 80%;
    max-width: 60rem;
    margin: auto;
}

.breadcrumb-content-desktop {
	display: flex;
    justify-content: center;

	margin: 0 auto;
}

.breadcrumb-title-mobile {
	flex: 1;
}
.left-top-0 {
	left:0;
	top:0;
}

.site-menu-desktop {
	width: 17rem;
    top: 0;
    right: 30px;
}

.site-menu-mobile {
    flex: 0;
    margin: 0 10px 0px 0px;
}

.breadcrumb-title {
	font-weight: 900;
    font-size: 1.3rem;
    color: rgba(0, 0, 0, 0.4);
	align-self: center;
	text-decoration: none;
	cursor: pointer;
}

.breadcrumb-button-mobile {
	padding: 1rem 2.4rem;
	font-size: 1.2rem;
}

.menu-title {
	font-weight: 900;
	padding-bottom: 0.4rem;
	padding-left: 10px;
	font-size: 1.3rem;
    color: rgba(0, 0, 0, 0.4);
}
.menu-title-line {
	height: 0.4rem;
    border-radius: 0.4rem;
    background-color: #3489C9;
	width: 100%;
}

 .mobile-drop-down-menu .dropdown-selection-popup {
	width: 260px;
	margin-top: 9px;
	left: -130px;
	text-align: center;
}
.menu-title-mobile {
	font-weight: 700;
    font-size: 2rem;
    color: rgba(0, 0, 0, 0.5);
}

.site-menu-item, .site-menu-item-mobile  {
	padding-top: 10px;
    padding-left: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	border-bottom: 1px solid rgba(52, 138, 203, 0.1);
	line-height: 1.6;
	transition: background-color .15s linear;
}

.site-menu-item:hover, .site-menu-item-mobile:hover {
    background: rgba(52, 138, 203, 0.1);
    text-decoration: none;
	transition: background-color .15s linear;
	cursor: pointer;
}

.site-menu-list > .custom-styled-link:nth-last-child(1) > .site-menu-item {
    border-bottom: none;
}

.menu-link-custom {
    font-size: 1.6rem;
    font-weight: 500;
}

.menu-link-custom.active,
.menu-link-custom.active-child {
	font-weight: 900;
	font-size: 1.6rem;
}

.dropdown-selection-popup {
	background-color: #FFFFFF;
	border-radius: 0.4rem;
}

.mobile-menu-padding-top {
	padding-top: 5px;
}

.drop-down-menu {
	background-color: #FFFFFF;
}

.drop-down-menu-border {
	border: 1px solid rgba(0, 0, 0, 0.4);
	border-radius: 0.4rem;
	background-color: #FFFFFF; /*MEDEBUG*/
}

.checkin-container-desktop {
	background-color: rgba(0, 0, 0, 0.1);
	border-radius: 0.4rem;
}

.checkin-content-deskop {
	padding: 0.4rem;
}

.checkin-form-item {
	border-radius: 0.4rem;
    margin: 0.4rem;
    border: 0px;
	padding: 1rem;
	font-size: 1.6rem;
}

::placeholder {
	font-family: 'Libre Franklin', sans-serif;
	color: rgba(0, 0, 0, 0.1);
	font-size: 1.6rem;
 }

 .form-field-label {
	margin-left: 0.4rem;
    padding-top: 1rem;
    color: rgba(0, 0, 0, 0.5);
 }

.location-button {
    font-size: 3rem;
	margin: 0.4rem auto;
	display: flex;
    align-items: center;
}

.location-button-mobile {
	font-size: 2rem;
	margin: 0.4rem auto;
	display: flex;
    align-items: center;
}

.custom-button-padding {
    padding: 1rem 0rem;
    padding-left: 2rem;
}

.location-svg-inline-flex {
	display: inline-flex;
    height: 50px;
    width: 50px;
    vertical-align: middle;
    padding: 0 1rem;
}

  .standard-margin {
	margin: 1rem;
  }

  @media (min-width: 300px) {
	.centered-content-text {
		width: 80%;
		max-width: 128rem;
		margin: auto;
	}
}

  @media (min-width: 800px) {
	.centered-content-text {
		width: 100%;
		max-width: 128rem;
		margin: auto;
	}
}

.teamleader-image-circle {
	box-sizing: border-box;
	width: 10rem;
	height: 10rem;
	border-radius: 50%;
	border: 0.1rem solid #3489C9;
	overflow: hidden;
}

.user-image-circle {
	box-sizing: border-box;
	width: 4.6rem;
	height: 4.6rem;
	border-radius: 50%;
	border: 0.1rem solid #3489C9;
	overflow: hidden;
}

.user-image-circle.team-list-image-size {
	height: 5rem;
	width: 5rem;
}

.user-image-circle.small-image-size {
	height: 2.4rem;
	width: 2.4rem;
}

.teamleader-image-circle .inner-border,
.user-image-circle .inner-border {
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	border: 0.1rem solid #FFFFFF;
	overflow: hidden;
	background-color: #F8F8F8;
}

.message-icon-right-position {
	left: 1rem;
}

.message-icon-left-position {
	right: 1rem;
}

.invalid {
	border: 1px solid red;
}

.link-card-padding {
	padding-left: 1rem;
	padding-right: 1rem;
}

.link-card-title {
	margin-top: 0rem;
	margin-bottom: 0rem;
}

.checkout-box {
	padding: 4px;
    flex: 1;
    margin: 5px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.checkout-label-item {
	font-size: 1.3rem;
    font-weight: 600;
	color: rgba(0, 0, 0, 0.5);
}

.checkout-value-item {
	font-size: 1.6rem;
	font-weight: 600;
	line-height: 2rem;
}

.checkout-info-container {
	padding: 0.4rem;
    border-radius: 0.4rem;
    background-color: white;
}

.checkout-info-padding {
	padding: 0.4rem
}

.list-style-none {
	list-style: none;
}

.list-checkings-container {
    background-color: #fff;
    border-radius: 0.4rem;
}

.list-checkings-item {
	padding: 0.4rem 0;
}

.list-checkings-item:nth-child(1) {
	border-top: 1px solid rgba(0,0,0,0.5);
}

.list-checkings-item:nth-child(even) {
	background-color: rgba(0,0,0,0.05);
}

.list-checkings-item:nth-last-child(1) {
	border-bottom: 1px solid rgba(0,0,0,0.5);
}

.list-checkings-item-label {
	color: rgba(0, 0, 0, 0.5);
	font-size: 1.4rem;
	font-weight: 600;
	letter-spacing: 2px;
}

.checkings-edit-flex-end {
	align-self: center;
	padding-left: 0.4rem;
	letter-spacing: 1px;
}

.checkings-edit-flex-end:hover {
	color:rgba(52, 138, 203);
}

.checkings-info-container, .checkings-time-container {
	margin: 0.1rem;
}

.checkings-buttons {
	align-items: flex-end;
	text-align: end;
}

.custom-small-button-padding {
	padding: 0.8rem 0.6rem;
    margin: 0.2rem 0;
}

@media (min-width: 300px) {

	.checkings-data-container{
		flex: 3;
		padding-left: 0.2rem;
		justify-content: space-around;
	}
	.checkings-buttons {
		flex:2;
		padding-right: 0.2rem;
	}
	.list-checkings-item-time {
		font-size: 1.5rem;
		font-weight: 600;
		line-height: 1.2;
	}

	.list-checkings-item-address {
		font-size: 1.5rem;
		padding-bottom: 0.4rem;
	}

	.list-checkings-item-coordinates {
		color: rgba(0,0,0,0.5);
		font-size: 1rem;
	}
}

  @media (min-width: 800px) {

	.list-checkings-item-time {
		font-size: 2rem;
		font-weight: 600;
	}
	.list-checkings-item-address {
		font-size: 1.6rem;
		font-weight: 500;
	}
}

.expand-arrow {
	display:inline-flex;
	vertical-align: bottom;
	padding-left: 1.5rem;
}

.expand-arrow.expanded {
	transform: rotateX(180deg);
}

.list-item-details .title, .application-summary-details .title {
	margin-top: 0rem;
	margin-bottom: 0rem;
}

.flex-column > .list-item-details {
	margin-bottom: 1rem;
	align-self: flex-start;
}

.flex-column > .list-item-button {
	align-self: flex-end;
}

.application-summary-details .subtitle {
	font-size: 1.2rem;
	color: #999999;
	font-weight: 600;
}

.application-summary-details .date-table {
	border-collapse: collapse;
}

.application-summary-details .date {
	font-size: 1.2rem;
	color: #999999;
	font-weight: 600;
}

.application-summary-details .date strong {
	color: #313131;
}

.application-summary-details .badge {
	background-color: #3489C9;
	width: fit-content;
	color: white;
	padding: 0.25rem;
	padding-left: 1rem;
	padding-right: 1rem;
	border-radius: .5rem;
	font-size: 1.2rem;
}

.application-progress {
	background-color: #8f8f8f;
	border-radius: 0.25rem;
	height: 0.5rem;
}

.application-progress .indicator {
	background-color: #3489C9;
	border-radius: 0.25rem;
}

.application-list-tab-button {
	box-sizing: border-box;
	cursor: pointer;
	text-decoration: none;
	color: #153C63;
	display: inline-flex;
	padding-bottom: 0.5rem;
	margin-bottom: 0.5rem;
	font-size: 1.5rem;
}

.application-list-tab-button.active {
	border-bottom: solid;
	border-color: #2d8ed5;
}

.application-list-empty-status {
	font-size: 1.75rem;
	padding-top: 1rem;
	padding-bottom: 1rem;
}

.warning-alert {
	font-size: 1.5rem;
}

.question-flex-basis {
	flex: 1 1 40rem;
}

.team-role {
	padding-right: 0.5rem;
}

.question-inner-content-min-width {
	min-width: 222px;
}

.user-hero-container {
	display: flex;
	align-items: center;
	height: 420px;
	/* TODO baparham figure out where we want to pull actual bg image from */
	background-image: url(https://picsum.photos/2048/420);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-clip: content-box;
	background-color: rgba(0, 0, 0, 0.15);
	background-blend-mode: overlay;
}

.user-hero-padding {
	padding-left: 15rem;
	padding-right: 15rem;
}

.user-hero-profile-image {
	height: 160px;
	width: 160px;
	border-radius: 50%;
	border: 1px solid white;
	box-shadow: 0 0 0 1px #3489c9;
	background-size: cover;
}

.user-hero-heading {
	color: white;
	text-align: inherit;
	font-size: 4rem;
}

.user-hero-role {
	color: white;
	text-align: inherit;
}

.project-hero-title {
	font-size: 3.8rem;
	font-weight: 600;
	color: #FFFFFF;
}

.project-hero-subtitle {
	font-size: 2.4rem;
	font-weight: normal;
	color: #FFFFFF;
}

.project-hero-inner-image {
	width: 150px;
	height: auto;
}

.project-hero-padding {
	padding-top: 1rem;
	padding-bottom: 1rem;
}

@media (min-width: 600px) {
	.project-hero-title {
		font-size: 5.4rem;
	}

	.project-hero-inner-image {
		width: 220px;
		height: auto;
	}

	.project-hero-subtitle {
		font-size: 2.8rem;
	}

	.project-hero-padding {
		padding-top: 0;
		padding-bottom: 0;
	}
}

.location-map {
	height: 308px;
}

.location-map-margin-right-icon {
	margin-right: 2.1rem;
}

.section-title {
	font-size: 2.4rem;
	font-weight: 600;
}

.smaller-title {
	font-size: 1.8rem;
	font-weight: 600;
}

@media (min-width: 800px) {
	.smaller-title {
		font-size: 2.4rem;
	}
}

.stats-padding-right {
	padding-right: 2rem;
}

.stats-item {
	padding: 2rem 4rem 2rem 0;
}

.stats-flex {
	display: flex;
	flex-direction: column;
}

@media (min-width: 600px) {
	.stats-flex {
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: center;
	}
}

.info-box {
	box-sizing: border-box;
	border-radius: 6px;
	border: solid 1px #e8e8e8;
	height: 43px;
}

.box-dark-blue {
	box-sizing: border-box;
	height: 4.1rem;
	border-radius: 6px;
	border: solid 1px #153c63;
	background-color: #ffffff;
}

.address-stacked-box {
	box-sizing: border-box;
	border-radius: 6px;
	border: solid 1px #e8e8e8;
}

.box-blue {
	box-sizing: border-box;
	border-radius: 6px;
	border: solid 1px #3489c9;
	height: 40px;
}

.box-blue-padding {
	padding: 0.6rem 5.2rem 0.6rem 0.8rem;
}

.status-and-date-box {
	box-sizing: border-box;
	border-radius: 6px;
	border: solid 1px #3489c9;
	height: 47px;
	padding: 1.3rem 1.2rem;
}

.date-time-box {
	box-sizing: border-box;
	border-radius: 6px;
	border: solid 1px #153c63;
	height: 43px;
}

.box-status-padding {
	padding: 0.8rem 2.3rem 0.8rem 0.8rem;
}

.date-box-padding {
	padding: 0.7rem 1.2rem;
}

.date-box-month {
	font-size: 1.2rem;
	font-weight: 600;
}

.date-box-time {
  color: #133967;
  font-size: 1.2rem;
  font-weight: 500;
}

.date-selection-number {
	font-size: 2.4rem;
	font-weight: 600;
	position: relative;
	top: 0.2rem;
}

.date-selection-month {
	font-size: 1.2rem;
	font-weight: 600;
}

.date-selection-weekday {
	font-size: 0.9rem;
	font-weight: normal;
	color: #999999;
}

.date-selection .dropdown-selection-popup {
	min-width: 30rem;
}

.icon-dropdown .dropdown-selection-popup {
	min-width: 22rem;
}

.dropdown-from-right .dropdown-selection-popup {
	right: 0;
}

.time-report-table .select-dates-dropdown > * > .dropdown-selection-popup {
	min-width: 32rem;
}

.date-padding-right {
	padding-right: 0.2rem;
}


.extra-small-label-padding {
	padding-bottom: 0.3rem;
}

.info-text-padding {
	padding: 0.7rem 1.2rem;
}

.checkin-button-padding {
	padding: 1.2rem 3.9rem;
}

.shift-flex {
	display: flex;
	flex-direction: column;
}

.batch-edit-employees-table th {
	font-size: 1.6rem;
	text-align: left;
}

.batch-edit-employees-table td {
	font-size: 1.2rem;
}

.batch-edit-employees-table th,
.batch-edit-employees-table td {
	min-width: 20rem;
}

.batch-edit-employees-table th.field-key-email,
.batch-edit-employees-table td.field-key-email {
	min-width: 30rem;
}

.batch-edit-employees-table th.field-key-options,
.batch-edit-employees-table td.field-key-options {
	min-width: 0;
}

.batch-edit-employees-table th.field-key-id,
.batch-edit-employees-table td.field-key-id {
	min-width: 0rem;
	font-weight: bold;
	color: #939393;
	white-space: nowrap;
}

@media (max-width: 600px) {
	.shift-item-width {
		width: max-content;
	}

	.shift-item + .shift-item {
		margin-top: 1rem;
	}
}

@media (min-width: 600px) {
	.shift-flex {
		flex-direction: row;
		flex-wrap: wrap;
		align-items: center;
	}
}

.id-box-container {
	display: none;
}

.hide-id-box-tablet {
	display: block;
}

.id-box {
	box-sizing: border-box;
	border-radius: 6px;
	border: solid 1px #e8e8e8;
	padding: 0.2rem 2rem;
}


@media (min-width: 650px) {
	.hide-id-box-tablet {
		display: none;
	}

	.id-box-container {
		display: flex;
	}
}

.shift-info-text {
	font-size: 1.6rem;
	font-weight: normal;
	line-height: normal;
}

.shift-project-label {
	position: absolute;
	top: -14px;
	left: 0;
	font-size: 9px;
	font-weight: bold;
	color: #999999;
	user-select: none;
}

.shift-section-name-margin-bottom {
	margin-bottom: 3.2rem;
}

.inner-box-margin-small {
	margin-right: 0.5rem;
}

.small-content-title-margin {
	margin-top: 0.1rem;
	margin-bottom: 0.7rem;
}

.margin-mobile-row {
	margin-bottom: 1rem;
}

@media (min-width: 600px) {
	.margin-mobile-row {
		margin-right: 1rem;
	}

	.hide-in-desktop {
		display: none;
	}
}

@media(max-width: 599px) {
	.hide-in-mobile {
		display: none;
	}
}

.upcoming-work-small-title {
	font-size: 1.2rem;
	font-weight: normal;
	line-height: normal;
}

.upcoming-work-desc {
	font-size: 0.9rem;
	font-weight: normal;
	line-height: normal;
	color: #dddddd;
}

.link-small {
	font-size: 1.2rem;
	font-weight: normal;
	line-height: normal;
	color: #153c63;
}

.content-padding {
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}

.task-completed {
	background-color: rgba(96, 224, 151, 0.1);
	margin-top: -1rem;
	margin-bottom: -1rem;
	padding-top: 1rem;
	padding-bottom: 1rem;
}

.task-padding {
	padding-left: 4.9rem;
	padding-right: 1.5rem;
}

.fullscreen-container {
	height: 100vh;
	position: relative;
}

.fullscreen-map {
	height: 100vh;
}

.fullscreen-map-header {
	position: absolute;
	z-index: 401;
	top: 12px;
	left: 17px;
	right: 17px;
}

.fullscreen-map-menu {
	height: 40px;
  	background-color: #ffffff;
}

.fullscreen-map-items-spacing {
	margin-right: 2.5rem;
}

.fullscreen-map-button {
	border: none;
	background-color: #ffffff;
	padding: 0.2rem;
	font-size: 12px;
	font-weight: 500;
	line-height: normal;
	color: #163a65;
	font-family: inherit;
	cursor: pointer;
}

@media (min-width: 801px) {
	.fullscreen-map-button {
		padding: 0.7rem;
	}
}

.fullscreen-map-menu-item {
	font-size: 1.8rem;
	font-weight: 500;
}

.fullscreen-map-margin {
	margin-top: 1rem;
	margin-bottom: 1rem;
	margin-right: auto;
}

.button-reset {
	border: none;
	font-family: inherit;
	padding: 0;
	background-color: transparent;
}

.button-box {
	border-radius: 6px;
	border: solid 1px #e8e8e8;
	background-color: #ffffff;
}

.button-left-late-form-padding {
	padding: 1.1rem 1.2rem 1.1rem 1.9rem;
}

.button-right-late-form-padding {
	padding: 1.1rem 1.2rem;
}

.late-form-margin-bottom {
	margin-bottom: 1.7rem;
}

.late-form-button-padding {
	padding: 1.2rem 2.6rem;
}

.option-box-200 {
	box-sizing: border-box;
	min-width: 200px;
	width: 100%;
  padding: 0.5rem 0.7rem;
  border-radius: 6px;
  border: solid 1px #153c63;
  background-color: #ffffff;
}

.background-transparent {
	background-color: transparent;
}

.background-color-white {
	background-color: #ffffff;
}

.small-margin-title {
	margin-top: 0;
	margin-bottom: 1rem;
}

.border-radius-50 {
	border-radius: 50%;
}

@media (max-width: 600px) {
	.full-width-mobile {
		width: 100%;
	}
}

.form-label {
	font-size: 16px;
	font-weight: 600;
	line-height: normal;
}

.standard-field-label {
	font-size: 16px;
	font-weight: 600;
	line-height: normal;
}

.form-content-text {
	font-size: 16px;
	font-weight: normal;
	line-height: normal;
}

.option-box-form {
	box-sizing: border-box;
	min-width: 200px;
	width: 100%;
    padding: 1.1rem 1.5rem;
    border-radius: 6px;
    border: solid 1px #153c63;
	background-color: #ffffff;
	height: 4.1rem;
}

.line-height-normal {
	line-height: normal;
}

.date-with-icon-box {
	box-sizing: border-box;
	min-width: 200px;
	width: 100%;
    padding: 0.5rem 1.4rem;
    border-radius: 6px;
    border: solid 1px #153c63;
    background-color: #ffffff;
}

.form-title-margin {
	margin-top: 0;
	margin-bottom: 0.6rem;
}

.form-arrow-right-margin {
	margin: auto 1rem 2.8rem 1rem;
}

.form-margin-bottom-to-button {
	margin-bottom: 3.8rem;
}

.flex-mobile-column {
	display: flex;
	flex-direction: column;
}

@media (min-width: 600px) {
	.flex-mobile-column {
		flex-direction: row;
	}
}

.incident-type-box {
	border-radius: 6px;
	border: solid 1px #163a65;
}

.button-incident-type {
	padding: 1.4rem 0.5rem;
    text-align: center;
	flex: 1;
	white-space: nowrap;
}

.button-incident-type-active {
	background-color: #3489ca;
	font-size: 12px;
	font-weight: bold;
	line-height: normal;
	color: #ffffff;
}

.button-incident-wrapper {
	max-width: 390px;
	margin: 0 auto;
}

@media (min-width: 600px) {
	.flex-600 {
		display: flex;
	}
}

.task-icon-position {
	position: absolute;
	left: 15px;
}

.map-button-padding {
	padding: 0.2rem;
}

@media (max-width: 800px) {
	.hide-map-menu-items {
		display: none
	}
}

@media (min-width: 801px) {
	.hide-map-menu-items-larger {
		display: none
	}
}

.top-1px {
	top: 1px;
}

.information-box {
	background-color: #f8f8f8;
}

.color-153c63 {
	color: #153c63;
}

.triangle-rotate-up {
	transform: rotate(180deg);
}

.details-box {
	box-sizing: border-box;
	min-width: 200px;
	width: 100%;
    padding: 0.4rem 1.1rem;
    border-radius: 6px;
    border: solid 1px #153c63;
	background-color: #ffffff;
	min-height: 24px;
}

.details-content-text {
	font-size: 1.2rem;
	font-weight: 500;
	line-height: normal;
}

.details-min-width {
	min-width: 4.4rem;
}

@media (min-width: 800px) {
	.business-flex {
		display: flex;
		flex-wrap: wrap;
	}

	.business-flex-justify-center {
		justify-content: center;
	}

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

	.business-flex-column {
		display: flex;
		flex-direction: column;
	}

	.business-item-half {
		width: 50%;
	}

	.business-item-margin-left {
		margin-left: 2rem;
	}

	.business-item + .business-item {
		margin-top: 1rem;
	}

	.business-item-small-margin-bottom {
		margin-bottom: 0.5rem;
	}

	.business-hide-desktop {
		display: none;
	}
}

@media (max-width: 799px) {
	.hide-business-item {
		display: none;
	}
}

.search-box {
	width: 100%;
	height: 24px;
	border-radius: 6px;
	border: solid 1px #153c63;
	background-color: #ffffff;
	padding: 0.7rem 0.6rem 0.7rem 2rem;
	box-sizing: border-box;
}

.search-box::placeholder {
	font-size: 1.2rem;
	font-weight: normal;
	line-height: normal;
	color: #bebebe;
}

.countries-box {
	width: 120px;
}

.company-details-boxes-margin-left > * + * {
	margin-left: 0.8rem;
}



.company-list-table-border-spacing {
	margin-left: 1rem;
}

@media (min-width: 800px) {
	.company-list-table-border-spacing {
		border-spacing: 3rem 0;
		margin-left: 0;
	}
}


.company-list-item-min-width {
	min-width: min-content;
}

@media (min-width: 600px) {
	.company-list-item-min-width {
		min-width: 130px;
	}
}

.flex-1 {
	flex: 1;
}

.white-space-nowrap {
	white-space: nowrap;
}

.business-details-company-list-padding {
	padding: 1rem 2rem;
}

.company-details-flex {
	display: flex;
	flex-direction: column;
}

.company-details-item-margin {
	margin: 10px auto 0 auto;
}

.company-list-buttons-margin-left {
	margin-left: 1rem;
}

@media (min-width: 600px) {
	.company-details-flex {
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
	}

	.company-details-item-margin {
		margin: 0;
	}


	.company-list-buttons-margin-left {
		margin-left: 3rem;
	}
}

.smaller-button-padding {
	padding: 1.2rem 3rem;
}

.business-details-padding-top {
	padding-top: 1.5rem;
}

.business-details-padding-bottom {
	padding-bottom: 1.5rem;
}

@media(min-width: 800px) {
	.business-details-padding-top {
		padding-top: 0;
	}

	.business-details-padding-bottom {
		padding-bottom: 0;
	}

	.business-details-padding {
		padding: 1.5rem 0;
	}
}

.bank-details-item-margin-left > * {
	margin-left: 1.5rem
}
.bank-details-item-margin-left {
	margin-left: -1.5rem;
}

.company-details-logo {
	height: 2.4rem;
	width: 8rem;
}

@media(min-width: 800px) {
	.company-details-logo {
		height: 4.2rem;
		width: 12rem;
	}
}

.bg-image-search-icon {
	background-image: url(../css/_/_/assets/img/search-1.svg);
	background-size: 12px 12px;
	background-repeat: no-repeat;
	background-position-y: center;
	background-position-x: 6px;
	color: #153c63;
}

.details-box-light {
	border-radius: 6px;
	border: solid 1px #eeeeee;
	background-color: #ffffff;
}

.box-mobile-wrapper {
	display: flex;
	flex-direction: column;
}

.box-mobile-margin-top {
	margin-top: 1rem;
}

.box-mobile-margin-bottom {
	margin-bottom: 1rem;
}

@media (min-width: 600px) {
	.box-mobile-wrapper {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}

	.box-mobile-margin-top {
		margin-top: 0;
	}

	.box-mobile-margin-bottom {
		margin-bottom: 0;
	}

	.box-mobile-margin-right-small {
		margin-right: 1rem;
	}

	.box-mobile-margin-left {
		margin-left: 2rem;
	}
}

.padding-box {
	padding: 1.1rem 1.5rem;
}

.add-button {
	border-radius: 6px;
	border: solid 1px #cccccc;
	background-color: #ffffff;
}

.add-drop-button {
	border-radius: 6px;
	background-color: #fafafa;
	height: 6.9rem;
}

.drop-file-highlight {
	background: #368bcb01;
}

.drop-file-highlight .button-drag-drop-hover {
	color: #368bcb;
}

.button-drag-drop-hover:hover {
	color: #368bcb;
	cursor: pointer;
}

.add-text {
	font-size: 1.8rem;
	font-family: inherit;
	font-weight: 600;
	color: #cccccc;
}

.blue-text-hover:hover {
	cursor: pointer;
}

.blue-text-hover:hover span {
	color: #153c63;
}

.report-tabs-margin-top {
	margin-top: 6.6rem;
}

.report-tabs-button {
	height: 3rem;
	border-bottom: 4px solid transparent;
}

.report-tabs-active {
	border-bottom: 4px solid #368bcb;
}

.text-area-box {
	min-height: 13.9rem;
	box-sizing: border-box;
	border-radius: 6px;
	border: solid 1px #153c63;
	background-color: #ffffff;
}

.padding-left-table-item > * + * {
	padding-left: 2rem;
}

.padding-bottom-th > th {
	padding-bottom: 0.5rem;
}

.padding-top-td > tr + tr > td {
	padding-top: 1rem;
}

.sibling-margin-top + * {
	margin-top: 1rem;
}

.injury-box {
	border-radius: 6px;
	border: solid 1px #c93434;
	width: 230px;
}

.injury-box-medium {
	box-sizing: border-box;
	border-radius: 6px;
	width: 255px;
}

.injury-box-header {
	border-bottom: solid 1px #c93434;
	background-color: rgba(201, 52, 52, 0.5);
}

.injury-box-inner-content-padding {
	padding: 0.6rem 0.9rem 0.9rem 0.9rem;
}

.injury-box-inner-content-text-spacing {
	margin-top: 0.2rem;
	margin-bottom: 0.5rem;
}

.danger-zone-button {
	box-sizing: border-box;
	cursor: pointer;

	border: 0.1rem solid #153C63;
	border-radius: 999rem;
	text-decoration: none;

	color: #FFFFFF;
	font-size: 1.4rem;
	font-weight: 900;
	font-family: inherit;

	border-radius: 21px;
	border: solid 1px #c93434;
	background-image: linear-gradient(285deg, #701c1c 0%, #ca6d6d 100%);
}

.danger-zone-button-padding {
	padding: 0.4rem 1.7rem;
}

.injury-edit-dropdown-padding {
	padding: 1.1rem 1.3rem 1.4rem 1.2rem;
}

.injury-add-dropdown-padding {
	padding: 1.1rem 1.3rem 0 1.2rem;
}

.opacity-05 {
	opacity: 0.5;
}

.opacity-03 {
  opacity: 0.3;
}

.injury-added-style-button {
	position: absolute;
	top: 0px;
	right: 0px;

	border-radius: 13px;
	border: solid 2px #ffffff;
	background-color: #d8d8d8;
	padding: 0.3rem 1.1rem;
}

.image-border-fix-padding {
	padding: 0.5px
}

.margin-top-add-info {
	margin-top: 2.6rem;
}

.company-section-logo {
	height: 3.5rem;
	background-position: left !important;
	background-origin: content-box;
	background-repeat: no-repeat;
	background-size: contain;
}

.company-section-padding {
	padding-left: 1.6rem;
	padding-right: 1.6rem;
}
.contact-details-button-padding {
	padding: 1.2rem 2.7rem;
}

.button-padding-long-text {
	padding: 1.1rem 4.5rem;
}

@media(max-width: 600px) {
	button.mobile-font-size-button {
		font-size: 1.2rem;
	}
}

.icon-box-small {
	height: 5.6rem;
	width: 5.6rem;
	border-radius: 8px;
	border: solid 1px #153c64;
	box-sizing: border-box;
	padding: 1.3rem;
}

.icon-box {
	height: 56px;
	border-radius: 8px;
	border: solid 1px #153c64;
	box-sizing: border-box;
	padding: 1.3rem 1.3rem 1.3rem 1.5rem;
}

.box-blue-medium {
	background-color: #3489c9;
	padding: 2.5rem 2rem;
}

.project-item-width {
	width: 266px;
}

.project-border-bottom {
	border-bottom: solid 1px #979797;
}

.project-border-right {
	border-right: none;
}

@media(min-width: 600px) {
	.project-border-right {
		border-right: solid 1px #979797;
	}
}

.project-react-parts + .project-react-parts {
	margin-top: 4rem;
}

.project-team-item + .project-team-item > .standard-box-padding {
	padding-bottom: 2.8rem;
}

.last-child-no-margin-bottom hr:last-child {
	margin-bottom: 0;
}

.last-child-no-margin-bottom div:last-child {
	margin-bottom: 0;
}

.input-height {
  height: 2.7rem;
}

.timeline {
  position: relative;
}

.timeline-icon-wrapper {
  top: 0.6rem;
  font-size: 1.3rem;
  width: 25px;
  height: 13px;
  position: absolute;
  right: 0.7rem;
}

.timeline-icon-number {
  font-size: 0.7rem;
  color: #3489c9;
  position: absolute;
  top: -0.3rem;
  right: 0.25rem;
}

.timeline-overlay-tab-container {
  margin-bottom: 0.6rem;
}

.timeline-overlay-tab {
  font-size: 1.2rem;
  font-weight: bold;
  position: relative;
}

.timeline-overlay-tab:first-child {
  margin-right: 1.5rem;
}

.timeline-overlay-tab.active::after {
  content: '';
  position: absolute;
  bottom: -0.2rem;
  left: 0;
  right: 0;
  height: 0.2rem;
  background-color: #368bcb;
}

.change-item {
  margin-bottom: 0.8rem;
}

.change-timestamp {
  color: #999;
  font-size: 0.9rem;
}

.change-description {
  color: #999;
  font-size: 0.9rem;
  font-weight: bold;
}

.change-value {
  font-size: 1.2rem;
}

.overlay-checkbox-container {
  margin: 0.6rem 0;
}

.overlay-checkbox-text {
	margin-left: 0.6rem;
}

.team-list-buttons {
	color: #153c63;
}

.dropdown-menu-mobile .dropdown-selection-popup {
	left: 10vw;
	right: 10vw;
	position: fixed;
	width: unset;
}

.dropdown-menu .dropdown-selection-popup,
.settings-button .dropdown-selection-popup {
	right: 0;
}

.small-dropdown {
  box-sizing: border-box;
  height: 2.4rem;
  width: 100%;
  padding: 0.5rem 0.7rem;
  border-radius: 6px;
  border: solid 1px #153c63;
  background-color: #ffffff;
}

.small-dropdown-location {
  box-sizing: border-box;
  height: 4.1rem;
  width: 100%;
  padding: 0.9rem 1.6rem 0.9rem 1.2rem;
  border-radius: 6px;
  border: solid 1px #153c63;
  background-color: #ffffff;
}

.min-width-32 {
	min-width: 32.3rem;
}

.max-width-32 {
	max-width: 32.3rem;
}

.width-32 {
	width: 32rem;
}

.padding-2px {
	padding: 0.2rem;
}

.height-81 {
	height: 8.1rem;
}

.extra-small-box-padding {
	padding: 0 0.2rem;
}

.color-overlay {
	position: relative;
	width: 1.7rem;
	height: 1.4rem;
	background-color: #ea5959;
}

.margin-right-120 {
	margin-right: 12rem;
}

.margin-top-40 {
	margin-top: 4rem;
}

.width-100 {
	width: 10rem;
}

.hover-box,
.date-box-hover,
.person-box-hover,
.person-box-date-hover {
	display: none;
}

.z-index-hover:hover {
	z-index: 2;
}

.hover-container:hover .hover-box {
	display: block;
	width: 1.7rem;
	height: 1.2rem;
	border: dashed 1px #153c63;
	background-color: rgba(21, 60, 99, 0.1);
	position: absolute;
	cursor: pointer;
}

.hover-container:hover .date-box-hover {
	display: block;
	position: absolute;
	top: 27px;
	font-size: 0.9rem;
	font-weight: normal;
	line-height: normal;
	color: #333333;
}

.hover-container:hover .person-box-hover {
	display: flex;
	align-items: center;
	white-space: nowrap;
	position: absolute;
	left: 0;
	top: 40px;
	transform: translateX(-50%);

	border-radius: 6px;
    border: solid 1px #eeeeee;
    background-color: #ffffff;
	padding: 0.4rem 1.4rem;
}

.hover-container:hover .person-box-date-hover {
	display: flex;
	position: absolute;
	left: 0;
	top: 25px;
	transform: translateX(-24%);

	font-size: 0.9rem;
	font-weight: normal;
	line-height: normal;
	color: #333333;

	padding: 0.2rem 0.7rem;
	height: 1.5rem;
	border-radius: 6px;
	background-color: rgba(255, 255, 255, 0.9);
}

.margin-right-2 {
	margin-right: 0.2rem;
}

.margin-bottom-3 {
	margin-bottom: 0.3rem;
}

.person-box-dropdown-container {
	width: 1.7rem;
 	height: 1.2rem;
	border: solid 1px #153c63;
	background-color: rgba(21, 60, 99, 0.25);
}

.person-box-dropdown {
	border-radius: 6px;
  	border: solid 1px #153c63;
	background-color: #ffffff;

	 box-sizing: border-box;
	 padding: 0.8rem 0.9rem 1.1rem 0.9rem;
}

.person-box-dropdown button:hover {
	text-decoration: underline;
	cursor: pointer;
}


.top-20 {
	top: 20px;
}

.min-width-150 {
	min-width: 15rem;
}

.person-box .custom-dropdown .absolute-container {
	position: static;
}

.person-box .custom-dropdown .absolute-container .hover-box  {
	top: 0;
}

.person-box .custom-dropdown .absolute-container .dropdown-selection-popup  {
	background-color: transparent;
	top: 0;
	width: min-content;
}

.box-container {
	box-sizing: border-box;
	border-radius: 6px;
	border: solid 1px #153c63;
	background-color: #ffffff;
	min-height: 41px;
	padding: 1.1rem;
}

.min-width-7-5 {
	min-width: 7.5rem;
}

.min-width-9 {
	min-width: 9rem;
}
.width-9 {
	width: 9rem;
}

.small-box {
	box-sizing: border-box;
	width: 100%;
	border-radius: 6px;
	border: solid 1px #153c63;
	background-color: #ffffff;
    padding: 0.5rem 0.7rem;
}

.min-width-25 {
	min-width: 25rem;
}

.min-width-12 {
	min-width: 12rem;
}

.time-report-box-padding {
	padding: 0.8rem 1.5rem 0.8rem 1.8rem;
}

.width-548 {
	width: 548px;
}

div.time-report-bg-color:nth-child(even) {
	background-color: #f8f8f8;
}

.width-70 {
	width: 70rem;
}


@media(max-width: 767px) {
	.hide-lower-then-tablet {
		display: none;
	}
	
	.flex-column-mobile {
		display: flex;
		flex-direction: column;
	}
}

@media(min-width: 768px) {
	.hide-in-tablet {
		display: none;
	}

	.flex-column-mobile {
		display: flex;
		flex-direction: row;
	}
}

.top-04 {
	top: 0.4rem;
}

.top-03 {
	top: 0.3rem;
}

.min-width-18-6 {
	min-width: 18.6rem
}

.width-22 {
	width: 22rem;
}

.min-28-max-32 {
	min-width: 28rem;
    max-width: 32rem;
}

.table-border-collapse {
	border-collapse: collapse;
}

.table-header-width {
	width: 4rem;
}

.table-border-right {
	border-right: solid 1px #cccccc;
}

.table-border-bottom {
	border-bottom:  solid 1px #cccccc;;
}

.width-1-5 {
	width: 1.5rem;
}

.max-width-140 {
	max-width: 140rem;
}

.height-2-4 {
	height: 2.4rem;
}

.height-2-6 {
	height: 2.6rem;
}

.height-2-6-small-dropdown .small-dropdown {
	height: 2.6rem;
}

.time-report-dropdown-width {
	min-width: 24rem;
}

@media (min-width: 768px) {
	.time-report-dropdown-width {
		min-width: 28rem;
	}
}

.search-box-width {
	width: 17.7rem;
}

.width-29-6 {
	width: 29.6rem;
}

.height-4-2 {
	height: 4.2rem;
}

.max-width-14 {
	max-width: 14rem;
}

.max-width-22 {
	max-width: 22rem;
}

.time-report-placeholder-text::placeholder {
	font-size: 12px;
	font-weight: normal;
	line-height: normal;
	color: #999999;
}

.min-width-27 {
	min-width: 27rem;
}

@media (min-width: 800px) {
	.centered-site-wrapper {
		width: 100%;
		max-width: 68rem;
		margin: auto;
	}
}

.map-border-container {
	box-sizing: border-box;
	height: 20rem;
	border-radius: 6px;
	border: solid 1px #eeeeee;
}

.time-report-table {
	font-size: 1.2rem;
	font-weight: normal;
	line-height: normal;
}

.time-report-table th,
.time-report-table td {
	border-bottom: solid 1px #cccccc;
	border-right: solid 1px #cccccc;
}

.time-report-table th.field-type-day {
	font-weight: normal;
	line-height: normal;
}

.add-flex-btn {
	border-radius: 6px;
	border: solid 1px #cccccc;
	background-color: #ffffff;
	height: 4.2rem;
	padding: 0.8rem;
}

.approve-times-container > div:nth-child(odd) {
	background-color: rgba(248, 248, 248, 0);
}

.approve-times-container > div:nth-child(even) {
	background-color: #f8f8f8; 
}

.approve-time-item-container {
	min-width: 37.4rem;
}

.approve-time-item {
	box-sizing: border-box;
	padding: 1.4rem 1rem 1.6rem 1rem;
}

.approve-time-button {
	height: 4.2rem;
	padding: 1.1rem 3.2rem;
}

.small-button-padding {
	padding: 1.2rem 2.5rem;
}

.list-project-img {
	min-width: 28rem;
	width: 100%;
	min-height: 20rem;
}

.list-project-card-padding {
	box-sizing: border-box;
	padding: 1.6rem 1.3rem 1.1rem 2rem;
}

.list-project-text-width {
	max-width: 41.7rem;
}

.list-project-title {
	font-size: 2.6rem;
	font-weight: 600;
	line-height: normal;
	color: #ffffff;
}

.list-project-text {
	font-size: 1.4rem;
	font-weight: normal;
	line-height: 1.75;
	color: #ffffff;
}

.list-project-button-padding  {
	padding: 1rem 2.5rem;
}

@media(min-width: 600px) {
	.list-project-title {
		font-size: 3.2rem;
	}
	
	.list-project-text {
		font-size: 16px;
	}

	.list-project-button-padding  {
		padding: 1.2rem 2.5rem;
	}
}

.project-list-container > .project-list-card {
	margin-top: 1rem;
}

.project-list-container > .project-list-card:first-child {
	margin-top: 0;
}

.grouped-selection-box-padding {
	padding-top: 1rem;
}

.grouped-selection-box-hover:hover {
	background-color: #cce2f2;
	cursor: pointer;
}

.grouped-selection-item-padding {
	padding: 1.2rem 1rem 1.2rem 1rem;
}

.group-selection-horizontal-padding {
	padding: 0 1rem;
}

.selection-line {
	height: 1px;
	background-color: rgba(52, 137, 201, 0.1);
}

.selection-line-spacing {
	margin: 2px 0;
}

.grouped-selection-item-previous {
	background-color: #368bcb;
	height: 1.5rem;
}

.round-white-background {
	background: white;
    border-radius: 50%;
}

.grouped-selection-box-height {
	height: 20.5rem;
}

.icon-button-round {
  padding: 0;
  width: 2.4rem;
  height: 2.4rem;
  border: 0.2rem solid #153c63;
  background-color: #153c63;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-button-round.outlined {
  background-color: transparent;
}

.icon-button-round:disabled,
.icon-button-round.disabled {
  opacity: 0.3;
  pointer-events: none;
}

.icon-button-round:focus:not(:disabled),
.icon-button-round:hover:not(:disabled) {
  background-color: #368bcb;
  border-color: #368bcb;
  cursor: pointer;
}

.icon-button-round.outlined:focus:not(:disabled),
.icon-button-round.outlined:hover:not(:disabled) {
  border-color: #368bcb;
  background-color: transparent;
}

.icon-button-round.large {
  width: 6rem;
  height: 6rem;
}

.icon-button-round.large .icon-button-round-image {
  height: 4rem;
  width: 4rem;
}

.icon-button-round-image {
  height: 1.2rem;
  width: 1.2rem;
}

/* overrides 
    button div:last-child {
      display: none;
    } 
*/

.stepped-navigation button div:last-child {
  display: block;
}

.stepped-navigation {
  width: 6rem;
}

.stepped-navigation-go-back {
  left: -5.3rem;
}

.pager {
  display: flex;
  list-style: none;
  padding: 0;
  right: -50%;
  transform: translateX(100%);
  margin: 0;
}

.pager .pager-item {
  margin: 0 0.3rem;
  padding: 0;
}

.pager .pager-item:first-child {
  margin: 0 0.3rem 0 0;
}

.pager-circle {
  width: 1rem;
  height: 1rem;
  background-color:rgba(52, 173, 187, 0.2);
  border-radius: 50%;
}

.pager .pager-button {
  width: 1rem;
  height: 1rem;
  background-color:rgba(52, 173, 187, 0.2);
  border-radius: 50%;
  cursor: pointer;
  border: none;
  padding: 0;
}

.success-circle {
  width: 6rem;
  height: 6rem;
  background-color: #1ced7b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-circle .success-circle-image {
  height: 4rem;
  width: 4rem;
}

.signup-location__box-padding {
	padding: 1rem 1rem 2rem 1rem;
}
.signup-location__box-max-height {
	max-height: 20.5rem;
}
.signup-location__box-border-bottom {
	border-bottom: solid 1px rgba(52, 137, 201, 0.1);
}
.signup-location__item-padding {
	padding: 1rem 0.5rem;
}
.signup-location__input {
  padding: 1.2rem 1.5rem 1rem;
}
.signup-location__input::placeholder { 
	font-size: 1.6rem;
	font-weight: normal;
	line-height: normal;
  color: #bebebe;
}

.signup-booking-type__text {
	font-size: 1.6rem;
	font-weight: 600;
	font-style: normal;
	line-height: normal;
}

.signup-booking-type__text-active {
	background-color: #3489ca;
	font-size: 1.6rem;
	font-weight: 600;
	font-style: normal;
	line-height: normal;
	color: #ffffff;
}

.signup-verification__check-circle {
	width: 60px;
	height: 60px;
	background-color: #4eff68;
	border-radius: 50%;
}

.signup-verification__waiting-box {
	border-radius: 6px;
	border: solid 1px #368bcb;
	padding: 2.5rem 3rem 2.5rem 3rem;
}

.signup-verification__verified-box {
	border-radius: 6px;
	border: solid 1px #00ff25;
	padding: 3rem;
}

.signup-info__name-container {
	display: flex;
	flex-direction: column;
}

.signup-info__name-margin {
	margin-bottom: 1rem;
}

@media(min-width: 420px) {
	.signup-info__name-container {
		flex-direction: row;
	}

	.signup-info__name-margin {
		margin-right: 4rem;
		margin-bottom: 0;
	}
}

.signup-verification-code__box {
	background-color: #ffffff;
}

.signup-verification-code__box-item {
  width: 5.2rem;
	display: inline-block;
	font-size: 3.2rem;
	font-weight: normal;
	line-height: normal;
	padding: 1.2rem 0;
  box-sizing: border-box;
  border: 1px solid #153c63;
  border-right: 0;
  text-align: center;
}

.signup-verification-code__box-item:first-child {
  border-radius: 0.6rem 0 0 0.6rem;
}

.signup-verification-code__box-item:last-child {
  border-radius: 0 0.6rem 0.6rem 0;
  border-right: 1px solid #153c63;
}

@media (min-width: 420px) {
	.signup-verification-code__box-item { 
		display: inline-block;
		font-size: 4.8rem;
		font-weight: normal;
		line-height: normal;
		box-sizing: border-box;
	}
}

.current-account-box {
    box-sizing: border-box;
    border: 1px solid #153c63;
}

.current-account-box-padding {
	padding: 1rem;
}

.multi-step-dropdown-navigation-bar {
	background-color: #3489c9;
	color: #FFFFFF;
	font-size: 0.9rem;
	box-sizing: border-box;
}

.multi-step-dropdown-navigation-bar-padding {
	padding: 0.5rem 1rem;
}

.standard-flag {
	background-color: #C0C0C0;
	border-radius: 0.3rem;
	box-sizing: border-box;
}

.id-flag {
	width: 6rem;
	text-align: center;
	
	background-color: #C0C0C0;
	color: #FFFFFF;
}

.next-step-flag {
	width: 11rem;
	text-align: center;
}

.next-step-flag.active {
	background-color: #368BCB;
	color: #FFFFFF;
}

.next-step-flag.inactive {
	background-color: #C0C0C0;
	color: #FFFFFF;
}

.status-flag {
	font-size: 0.9rem;
	text-align: center;
	background-color: #feffce;
}

.start-at-flag {
	background-color: #cbe2bf;
}

.end-at-flag {
	background-color: #d4af96;
}

.standard-flag-padding {
	padding: 0.2rem;
}

.job-application-list .field {
	width: 16rem;
}

.job-application-list .field.field-type-select,
.job-application-list .field.field-type-options,
.job-application-list .field.field-type-next-step {
	width: auto;
}

.job-application-list .field.field-type-relation-name {
	width: 10rem;
}

.job-application-list .field.field-type-languages {
	width: 22rem;
}

.job-application-list .field.field-type-grade {
	width: 7.6rem;
}

.item-list .field.field-type-job-position-overview {
	width: 50rem;
}

.item-list .field {
	width: 16rem;
}

.item-list .field.field-type-select,
.item-list .field.field-type-options {
	width: auto;
}

.standard-alternating-rows .standard-row {
	box-sizing: border-box;
}

.standard-alternating-rows .standard-row-padding {
	padding: 0.5rem;
}

.standard-alternating-rows .standard-row:nth-of-type(2n+1) {
	background-color: #F8F8F8;
}

.has-grade .grade-icon:not(.active) {
	opacity: 0.1;
}

.inactive-opacity {
	opacity: 0.1;
}

.checkmark-circle {
	border: 1px solid #368bcb;
	border-radius: 50%;
	width: 3rem;
	height: 3rem;
	padding: 0.4rem;
}

.checkmark-circle.active {
	background-color: #368bcb;
}

.progress-step-icon {
	width: 14px;
	height: 14px;
}

.progress-step.status-none {
	opacity: 0.2;
}

.stepped-navigation-button {
	box-sizing: border-box;
}

.stepped-navigation-back-button {
	box-sizing: border-box;
}

.stepped-navigation-button-padding {
	padding: 1rem;
}

.stepped-navigation-back-button-padding {
	padding: 0.5rem;
}.background-left-content {
	background-position: left !important;
	background-origin: content-box;
}

.center-below {
	top: 100%;
	left: 50%;
}.calendar-day {
	box-sizing: border-box;
	border: 0.1rem solid #999999;
}

.rotation-week .calendar-day {
	padding: 2.2rem 0.5rem;
}

.date-selection-overlay .calendar-day {
	text-align: center;
	padding: 1rem 0.4rem;
}

.calendar-day .work-time {
	font-size: 1.6rem;
	min-height: 1.6rem;
}

.calendar-day .date-number {
	font-weight: 900;
	color: #999999;
}

.date-selection-overlay .calendar-day.other-month {
	opacity: 0.5;
}

.date-selection-overlay .calendar-day.past {
	opacity: 0.25;
}

.calendar-day.today {
	border-color: #348BCB;
	background-color: #CCE2F2;
}

.calendar-day.selected {
	color: #FFFFFF;
	border-color: #348BCB;
	background-color: #348BCB;
}

.holiday-box-position {
	top: 0.5rem;
	left: 0.5rem;
	right: 0.5rem;
}

.holiday-box {
	padding: 0.1rem;
	font-size: 1.2rem;
	border-color: #00FF25;
	background-color: #EEFFF2;
}/* required styles */

.leaflet-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-container,
.leaflet-pane > svg,
.leaflet-pane > canvas,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
	position: absolute;
	left: 0;
	top: 0;
	}
.leaflet-container {
	overflow: hidden;
	}
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow {
	-webkit-user-select: none;
	   -moz-user-select: none;
	        user-select: none;
	  -webkit-user-drag: none;
	}
/* Prevents IE11 from highlighting tiles in blue */
.leaflet-tile::selection {
	background: transparent;
}
/* Safari renders non-retina tile on retina better with this, but Chrome is worse */
.leaflet-safari .leaflet-tile {
	image-rendering: -webkit-optimize-contrast;
	}
/* hack that prevents hw layers "stretching" when loading new tiles */
.leaflet-safari .leaflet-tile-container {
	width: 1600px;
	height: 1600px;
	-webkit-transform-origin: 0 0;
	}
.leaflet-marker-icon,
.leaflet-marker-shadow {
	display: block;
	}
/* .leaflet-container svg: reset svg max-width decleration shipped in Joomla! (joomla.org) 3.x */
/* .leaflet-container img: map is broken in FF if you have max-width: 100% on tiles */
.leaflet-container .leaflet-overlay-pane svg,
.leaflet-container .leaflet-marker-pane img,
.leaflet-container .leaflet-shadow-pane img,
.leaflet-container .leaflet-tile-pane img,
.leaflet-container img.leaflet-image-layer,
.leaflet-container .leaflet-tile {
	max-width: none !important;
	max-height: none !important;
	}

.leaflet-container.leaflet-touch-zoom {
	-ms-touch-action: pan-x pan-y;
	touch-action: pan-x pan-y;
	}
.leaflet-container.leaflet-touch-drag {
	-ms-touch-action: pinch-zoom;
	/* Fallback for FF which doesn't support pinch-zoom */
	touch-action: none;
	touch-action: pinch-zoom;
}
.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
	-ms-touch-action: none;
	touch-action: none;
}
.leaflet-container {
	-webkit-tap-highlight-color: transparent;
}
.leaflet-container a {
	-webkit-tap-highlight-color: rgba(51, 181, 229, 0.4);
}
.leaflet-tile {
	filter: inherit;
	visibility: hidden;
	}
.leaflet-tile-loaded {
	visibility: inherit;
	}
.leaflet-zoom-box {
	width: 0;
	height: 0;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	z-index: 800;
	}
/* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */
.leaflet-overlay-pane svg {
	-moz-user-select: none;
	}

.leaflet-pane         { z-index: 400; }

.leaflet-tile-pane    { z-index: 200; }
.leaflet-overlay-pane { z-index: 400; }
.leaflet-shadow-pane  { z-index: 500; }
.leaflet-marker-pane  { z-index: 600; }
.leaflet-tooltip-pane   { z-index: 650; }
.leaflet-popup-pane   { z-index: 700; }

.leaflet-map-pane canvas { z-index: 100; }
.leaflet-map-pane svg    { z-index: 200; }

.leaflet-vml-shape {
	width: 1px;
	height: 1px;
	}
.lvml {
	behavior: url(#default#VML);
	display: inline-block;
	position: absolute;
	}


/* control positioning */

.leaflet-control {
	position: relative;
	z-index: 800;
	pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
	pointer-events: auto;
	}
.fullscreen-map .leaflet-top {
	bottom: 15px;
	left: 17px;
	top: initial;
}

.leaflet-top,
.leaflet-bottom {
	position: absolute;
	z-index: 1000;
	pointer-events: none;
	}
.leaflet-top {
	top: 0;
	}
.leaflet-right {
	right: 0;
	}
.leaflet-bottom {
	bottom: 0;
	}
.leaflet-left {
	left: 0;
	}
.leaflet-control {
	float: left;
	clear: both;
	}
.leaflet-right .leaflet-control {
	float: right;
	}
.leaflet-top .leaflet-control {
	margin-top: 10px;
	}
.leaflet-bottom .leaflet-control {
	margin-bottom: 10px;
	}
.leaflet-left .leaflet-control {
	margin-left: 10px;
	}
.leaflet-right .leaflet-control {
	margin-right: 10px;
	}


/* zoom and fade animations */

.leaflet-fade-anim .leaflet-tile {
	will-change: opacity;
	}
.leaflet-fade-anim .leaflet-popup {
	opacity: 0;
	-webkit-transition: opacity 0.2s linear;
	   -moz-transition: opacity 0.2s linear;
	        transition: opacity 0.2s linear;
	}
.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
	opacity: 1;
	}
.leaflet-zoom-animated {
	-webkit-transform-origin: 0 0;
	    -ms-transform-origin: 0 0;
	        transform-origin: 0 0;
	}
.leaflet-zoom-anim .leaflet-zoom-animated {
	will-change: transform;
	}
.leaflet-zoom-anim .leaflet-zoom-animated {
	-webkit-transition: -webkit-transform 0.25s cubic-bezier(0,0,0.25,1);
	   -moz-transition:    -moz-transform 0.25s cubic-bezier(0,0,0.25,1);
	        transition:         transform 0.25s cubic-bezier(0,0,0.25,1);
	}
.leaflet-zoom-anim .leaflet-tile,
.leaflet-pan-anim .leaflet-tile {
	-webkit-transition: none;
	   -moz-transition: none;
	        transition: none;
	}

.leaflet-zoom-anim .leaflet-zoom-hide {
	visibility: hidden;
	}


/* cursors */

.leaflet-interactive {
	cursor: pointer;
	}
.leaflet-grab {
	cursor: -webkit-grab;
	cursor:    -moz-grab;
	cursor:         grab;
	}
.leaflet-crosshair,
.leaflet-crosshair .leaflet-interactive {
	cursor: crosshair;
	}
.leaflet-popup-pane,
.leaflet-control {
	cursor: auto;
	}
.leaflet-dragging .leaflet-grab,
.leaflet-dragging .leaflet-grab .leaflet-interactive,
.leaflet-dragging .leaflet-marker-draggable {
	cursor: move;
	cursor: -webkit-grabbing;
	cursor:    -moz-grabbing;
	cursor:         grabbing;
	}

/* marker & overlays interactivity */
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-image-layer,
.leaflet-pane > svg path,
.leaflet-tile-container {
	pointer-events: none;
	}

.leaflet-marker-icon.leaflet-interactive,
.leaflet-image-layer.leaflet-interactive,
.leaflet-pane > svg path.leaflet-interactive,
svg.leaflet-image-layer.leaflet-interactive path {
	pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
	pointer-events: auto;
	}

/* visual tweaks */

.leaflet-container {
	background: #ddd;
	outline: 0;
	}
.leaflet-container a {
	color: #0078A8;
	}
.leaflet-container a.leaflet-active {
	outline: 2px solid orange;
	}
.leaflet-zoom-box {
	border: 2px dotted #38f;
	background: rgba(255,255,255,0.5);
	}


/* general typography */
.leaflet-container {
	font: 12px/1.5 "Helvetica Neue", Arial, Helvetica, sans-serif;
	}


/* general toolbar styles */

.leaflet-bar {
	box-shadow: 0 1px 5px rgba(0,0,0,0.65);
	border-radius: 4px;
	}
.leaflet-bar a,
.leaflet-bar a:hover {
	background-color: #fff;
	border-bottom: 1px solid #ccc;
	width: 26px;
	height: 26px;
	line-height: 26px;
	display: block;
	text-align: center;
	text-decoration: none;
	color: black;
	}
.leaflet-bar a,
.leaflet-control-layers-toggle {
	background-position: 50% 50%;
	background-repeat: no-repeat;
	display: block;
	}
.leaflet-bar a:hover {
	background-color: #f4f4f4;
	}
.leaflet-bar a:first-child {
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	}
.leaflet-bar a:last-child {
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
	border-bottom: none;
	}
.leaflet-bar a.leaflet-disabled {
	cursor: default;
	background-color: #f4f4f4;
	color: #bbb;
	}

.leaflet-touch .leaflet-bar a {
	width: 30px;
	height: 30px;
	line-height: 30px;
	}
.leaflet-touch .leaflet-bar a:first-child {
	border-top-left-radius: 2px;
	border-top-right-radius: 2px;
	}
.leaflet-touch .leaflet-bar a:last-child {
	border-bottom-left-radius: 2px;
	border-bottom-right-radius: 2px;
	}

/* zoom control */

.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
	font: bold 18px 'Lucida Console', Monaco, monospace;
	text-indent: 1px;
	}

.leaflet-touch .leaflet-control-zoom-in, .leaflet-touch .leaflet-control-zoom-out  {
	font-size: 22px;
	}


/* layers control */

.leaflet-control-layers {
	box-shadow: 0 1px 5px rgba(0,0,0,0.4);
	background: #fff;
	border-radius: 5px;
	}
.leaflet-touch .leaflet-control-layers-toggle {
	width: 44px;
	height: 44px;
	}
.leaflet-control-layers .leaflet-control-layers-list,
.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
	display: none;
	}
.leaflet-control-layers-expanded .leaflet-control-layers-list {
	display: block;
	position: relative;
	}
.leaflet-control-layers-expanded {
	padding: 6px 10px 6px 6px;
	color: #333;
	background: #fff;
	}
.leaflet-control-layers-scrollbar {
	overflow-y: scroll;
	overflow-x: hidden;
	padding-right: 5px;
	}
.leaflet-control-layers-selector {
	margin-top: 2px;
	position: relative;
	top: 1px;
	}
.leaflet-control-layers label {
	display: block;
	}
.leaflet-control-layers-separator {
	height: 0;
	border-top: 1px solid #ddd;
	margin: 5px -10px 5px -6px;
	}

/* attribution and scale controls */

.leaflet-container .leaflet-control-attribution {
	background: #fff;
	background: rgba(255, 255, 255, 0.7);
	margin: 0;
	}
.leaflet-control-attribution,
.leaflet-control-scale-line {
	padding: 0 5px;
	color: #333;
	}
.leaflet-control-attribution a {
	text-decoration: none;
	}
.leaflet-control-attribution a:hover {
	text-decoration: underline;
	}
.leaflet-container .leaflet-control-attribution,
.leaflet-container .leaflet-control-scale {
	font-size: 11px;
	}
.leaflet-left .leaflet-control-scale {
	margin-left: 5px;
	}
.leaflet-bottom .leaflet-control-scale {
	margin-bottom: 5px;
	}
.leaflet-control-scale-line {
	border: 2px solid #777;
	border-top: none;
	line-height: 1.1;
	padding: 2px 5px 1px;
	font-size: 11px;
	white-space: nowrap;
	overflow: hidden;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;

	background: #fff;
	background: rgba(255, 255, 255, 0.5);
	}
.leaflet-control-scale-line:not(:first-child) {
	border-top: 2px solid #777;
	border-bottom: none;
	margin-top: -2px;
	}
.leaflet-control-scale-line:not(:first-child):not(:last-child) {
	border-bottom: 2px solid #777;
	}

.leaflet-touch .leaflet-control-attribution,
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	box-shadow: none;
	}
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	border: 2px solid rgba(0,0,0,0.2);
	background-clip: padding-box;
	}


/* popup */

.leaflet-popup {
	position: absolute;
	text-align: center;
	margin-bottom: 20px;
	}
.leaflet-popup-content-wrapper {
	padding: 1px;
	text-align: left;
	border-radius: 12px;
	}
.leaflet-popup-content {
	margin: 13px 19px;
	line-height: 1.4;
	}
.leaflet-popup-content p {
	margin: 18px 0;
	}
.leaflet-popup-tip-container {
	width: 40px;
	height: 20px;
	position: absolute;
	left: 50%;
	margin-left: -20px;
	overflow: hidden;
	pointer-events: none;
	}
.leaflet-popup-tip {
	width: 17px;
	height: 17px;
	padding: 1px;

	margin: -10px auto 0;

	-webkit-transform: rotate(45deg);
	   -moz-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
	        transform: rotate(45deg);
	}
.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
	background: white;
	color: #333;
	box-shadow: 0 3px 14px rgba(0,0,0,0.4);
	}
.leaflet-container a.leaflet-popup-close-button {
	position: absolute;
	top: 0;
	right: 0;
	padding: 4px 4px 0 0;
	border: none;
	text-align: center;
	width: 18px;
	height: 14px;
	font: 16px/14px Tahoma, Verdana, sans-serif;
	color: #c3c3c3;
	text-decoration: none;
	font-weight: bold;
	background: transparent;
	}
.leaflet-container a.leaflet-popup-close-button:hover {
	color: #999;
	}
.leaflet-popup-scrolled {
	overflow: auto;
	border-bottom: 1px solid #ddd;
	border-top: 1px solid #ddd;
	}

.leaflet-oldie .leaflet-popup-content-wrapper {
	zoom: 1;
	}
.leaflet-oldie .leaflet-popup-tip {
	width: 24px;
	margin: 0 auto;

	-ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
	filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
	}
.leaflet-oldie .leaflet-popup-tip-container {
	margin-top: -1px;
	}

.leaflet-oldie .leaflet-control-zoom,
.leaflet-oldie .leaflet-control-layers,
.leaflet-oldie .leaflet-popup-content-wrapper,
.leaflet-oldie .leaflet-popup-tip {
	border: 1px solid #999;
	}


/* div icon */

.leaflet-div-icon {
	background: #fff;
	border: 1px solid #666;
	}


/* Tooltip */
/* Base styles for the element that has a tooltip */
.leaflet-tooltip {
	position: absolute;
	padding: 6px;
	background-color: #fff;
	border: 1px solid #fff;
	border-radius: 3px;
	color: #222;
	white-space: nowrap;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	pointer-events: none;
	box-shadow: 0 1px 3px rgba(0,0,0,0.4);
	}
.leaflet-tooltip.leaflet-clickable {
	cursor: pointer;
	pointer-events: auto;
	}
.leaflet-tooltip-top:before,
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
	position: absolute;
	pointer-events: none;
	border: 6px solid transparent;
	background: transparent;
	content: "";
	}

/* Directions */

.leaflet-tooltip-bottom {
	margin-top: 6px;
}
.leaflet-tooltip-top {
	margin-top: -6px;
}
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-top:before {
	left: 50%;
	margin-left: -6px;
	}
.leaflet-tooltip-top:before {
	bottom: 0;
	margin-bottom: -12px;
	border-top-color: #fff;
	}
.leaflet-tooltip-bottom:before {
	top: 0;
	margin-top: -12px;
	margin-left: -6px;
	border-bottom-color: #fff;
	}
.leaflet-tooltip-left {
	margin-left: -6px;
}
.leaflet-tooltip-right {
	margin-left: 6px;
}
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
	top: 50%;
	margin-top: -6px;
	}
.leaflet-tooltip-left:before {
	right: 0;
	margin-right: -12px;
	border-left-color: #fff;
	}
.leaflet-tooltip-right:before {
	left: 0;
	margin-left: -12px;
	border-right-color: #fff;
	}.profile-card {
	max-width: 68rem;
}

.profile-card-image-circle {
	box-sizing: border-box;
	width: 14.3rem;
	height: 14.3rem;
	border-radius: 50%;
	border: 0.1rem solid #3489C9;
	overflow: hidden;
}

.profile-card-header-content {
	width: 100%;
}

.profile-card-title {
	color: #939393;
	font-size: 1rem;
	font-weight: 900;
}

.profile-card-name {
	font-size: 2.4rem;
	font-weight: 300;
}

.profile-card-rating img:last-child {
	margin-right: 0;
}

.profile-card-description {
	line-height: 1.66;
	max-width: 41.6rem;
}

.profile-card-description > *:first-child { margin-top: 0; }
.profile-card-description > *:last-child { margin-bottom: 0; }

.profile-card-info,
.profile-card-info-item + .profile-card-info-item {
	margin-top: 1.2rem;
}

.profile-card-info-item-title {
	color: #999;
	font-size: .9rem;
	font-weight: 600;
	margin: 0;
}

.profile-card-info-item-description {
	margin-top: .5rem;
}

.profile-card-info-item-description > *:first-child { margin-top: 0; }
.profile-card-info-item-description > *:last-child { margin-bottom: 0; }

@media ( min-width: 500px ) {

	.profile-card-header {
		flex-wrap: nowrap;
	}

	.profile-card-image-circle,
	.profile-card-info-item-title {
		margin: 0 1rem 0 0;
	}

	.profile-card-info-item {
		align-items: baseline;
		display: flex;
		justify-content: flex-start;
	}

	.profile-card-info-item + .profile-card-info-item {
		margin-top: .6rem;
	}

	.profile-card-info-item-title {
		flex: 14.3rem 0 0;
		text-align: right;
	}

}.hero {
	box-sizing: border-box;
	min-height: 50rem;
}

.hero-black-overlay {
	background-color: rgba(0, 0, 0, 0.25);
}

.hero-padding {
	padding: 20rem 2rem 2rem 2rem;
}.min-width-20 {
  min-width: 20rem;
}.mini-loader {
	position: relative;
	width: 21px;
	height: 5px;
}

.mini-loader div {
	position: absolute;
	top: 0px;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: #153C63;
	animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.mini-loader div:nth-child(1) {
  left: 0px;
  animation: mini-loader1 0.6s infinite;
}
.mini-loader div:nth-child(2) {
  left: 0px;
  animation: mini-loader2 0.6s infinite;
}
.mini-loader div:nth-child(3) {
  left: 8px;
  animation: mini-loader2 0.6s infinite;
}
.mini-loader div:nth-child(4) {
  left: 16px;
  animation: mini-loader3 0.6s infinite;
}
@keyframes mini-loader1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes mini-loader3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes mini-loader2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(8px, 0);
  }
}
.woocommerce .woocommerce-checkout .col2-set .col-1,
.woocommerce .woocommerce-checkout .col2-set .col-2 {
	width: 100% !important;
}

.woocommerce .woocommerce-checkout .col2-set .col-1 {
	margin-bottom: 30px;
}

.woocommerce-checkout-review-order-table {
	font-size: 1.2rem;
}

@media (min-width: 800px) {
	.woocommerce-checkout-review-order-table {
		font-size: 1.8rem;
	}
}

.woocommerce-checkout-review-order-table .woocommerce-Price-amount {
	white-space: nowrap;
}

.payment_box .form-row {
	box-sizing: border-box;
}

@media (max-width: 800px) {
	.payment_box .form-row {
		font-size: 1.2rem;
	}
	
	.woocommerce-checkout #payment div.form-row {
		padding: 0;
	}
	
	.woocommerce-checkout #payment div.payment_box .form-row {
		margin: 0 0 6px;
	}

	.woocommerce-checkout #payment ul.payment_methods,
	.woocommerce-checkout #payment div.payment_box {
		padding: 0.4rem;
	}
}