@charset "UTF-8";
/* Web Solutions 4.0 Compatible */

html {
	scroll-padding-top: 2.5em; /* Scroll offset for sticky mobile nav */
}


body.slideNav {
	overflow: hidden;
}



/* desktop */
.desktopOnly {
    content-visibility: hidden;
    display: none;
}

/* HEADINGS ------------------------------ */
h1 {
	font-size: 1.75em;
	width: 100%;
}

h1 span {
    display: block;
	font-size: 0.66em;
    margin-top: 0.25em;
}

h2 {
	font-size: 1.3em;
}

h3 {
	font-size: 1.2em;
}

h4,
th {
	font-size: 1.125em;
}

.intro {
	font-size: 1.125em;
}


/* HEADER ------------------------------ */
body>header {
	background: #FFF;
	display: contents;
	position: relative;
	z-index: 1;
}

body>header:before {
	background-color: #000;
	content: '';
	display: block;
	height: 100vh;
	left: 100vw;
	opacity: 0;
	position: fixed;
	top: 0;
	transition: left 0ms ease 200ms, opacity 200ms ease;
	width: 100vw;
	z-index: 3;
}

body.slideNav>header:before {
	left: 0;
	opacity: .5;
	transition: left 0ms ease 0ms, opacity 200ms ease;
}

body>header .logo {
    background: #fff;
    justify-content: center;
    padding: 0.5em 1em;
}

#navContainer {
	background-color: #fff;
	bottom: 0;
	left: 100%;
	max-height: 100vh;
	overflow: auto;
	pointer-events: none;
	position: fixed;
	top: 0;
	transition: left .2s ease, visibility .2s ease .2s;
	visibility: hidden;
	width: 75%;
	z-index: 3;
	-webkit-overflow-scrolling: touch;
}

body.slideNav #navContainer {
	left: 25%;
	transition: left .2s ease;
	pointer-events: all;
	visibility: visible;
}

#navContainer nav {
	display: inline;
}

#navContainer ul {
	display: block;
	margin: 0;
	padding-left: 0;
	width: 100%;
}

#navContainer li {
	border-top: 1px solid rgba(0,0,0,0.125);
	display: block;
	position: relative;
	width: 100%;
}

#navContainer li li {
	border: 0;
}

#navContainer :is(a, .toggleNav) {
	color: var(--grey);
	display: block;
	font-weight: 700;
	line-height: 2.75em;
	padding: 0 1rem;
	width: 100%;
}

#navContainer .toggleNav {
	background: transparent;
  border: 0;
  border-radius: 0;
	padding: .75rem 1rem;
	text-align: left;
  text-transform: none;
}

#navContainer .toggleNav::before {
  background: url('/images/icons/close.svg') no-repeat left center / contain;
  content: '';
  line-height: 1;
  margin: 0 .25em 0 0;
  padding-right: .75em;
}



#navContainer li.on a {
	background-color: var(--lightest-grey);
	color: var(--default-text-color);
}

#navContainer li>button {
	background: rgba(255,255,255,0.5);
	display: block;
	height: 2.75em;
	position: absolute;
	right: 0;
	top: 0;
	width: 2.75em;
}

#navContainer ul ul {
	font-size: .8em;
	height: 0;
	overflow: hidden;
	transition: var(--transition);
}

#navContainer ul ul a {
	padding-left: 2rem;
}

#navContainer ul ul li.on a {
	background-color: darkred;
}

#navContainer li>button::before,
#navContainer li>button::after {
	background-color: #000;
	content: '';
	display: block;
	height: 0.0625rem;
	left: 50%;
	position: absolute;
	top: 50%;
	transform-origin: center center;
	transition: transform .2s ease;
	width: 50%;
}

#navContainer li>button::before {
	transform: translate(-50%, -50%) rotate(90deg);
}

#navContainer li>button::after,
#navContainer li.open > button:before {
	transform: translate(-50%, -50%) rotate(0deg);
}


/* OTHER TOOLS ------------------------------ */
body > header #mainnav .other-tools {
	border-top: 1px solid rgba(0,0,0,0.125);
}

body > header #mainnav .other-tools button.icon {
	border-radius: 0;
	width: 100%;
}

body > header #mainnav .other-tools button.icon span {
	color: var(--grey);
	font-weight: 700;
}

body > header #mainnav .other-tools > div {
    display: grid;
    grid-template-rows: 0;
    overflow: hidden;
    transition: var(--transition);
}

body > header #mainnav .other-tools.show > div {
    grid-template-rows: 1fr;
}

body > header #mainnav .other-tools > div li a {
    line-height: 1.25em;
    padding: 0.7em 1em;
}


/* MOBILE NAV ------------------------------ */
#mobilenav {
	align-items: center;
	background-color: #fff;
	border-top: 1px solid var(--lightest-grey);
	border-bottom: 1px solid var(--lightest-grey);
	display: flex;
	justify-content: center;
	position: sticky;
	text-align: center;
	top: 0;
	width: 100%;
	z-index: 1;
}

#mobilenav :is(a, button) {
	color: var(--grey);
	font-weight: 700;
	flex: 1 1 auto;
	line-height: 2.25;
	position: relative;
}

#mobilenav a {
	border-right: 1px solid var(--lightest-grey);
}

#mobilenav button {
	align-items: center;
	background: transparent;
	border: 0;
	border-radius: 0;
	display: flex;
	justify-content: center;
	padding: 0;
}

#mobilenav button::after {
  aspect-ratio: 1;
  background: var(--grey);
  content: '';
  display: inline-block;
  margin: 0 0 0 .25em;
  mask:  url('/images/bars.svg') no-repeat center / contain;
  height: 1em;
}


/* MAIN ------------------------------ */
body>main {
    padding: 2em 1em 3em;
}

.photoright {
	margin: 0 0 .75em 1em;
}

.photoleft {
	margin: 0 1em .75em 0;
}

.twoCol, .threeCol, .resCol {
	columns: auto;
	column-rule: 1px outset rgba(0,0,0,.15);
	column-width: 13em;
}

.formTable, .formTable table {
	display: block;
	width: 100%;
}

.formTable tbody {
	display: block;
}

.formTable tr {
	display: block;
}

.formTable td {
	display: block;
	padding: 0;
	width: 100%;
}

.formTable :is(input:is([type="text"], [type="password"], [type="tel"], [type="number"], [type="email"], [type="url"]), textarea) {
	margin-bottom: 1em
}

.formTable table td + td {
	padding-left: 0 !important;
}

fieldset.yes-no {
    flex-direction: column;
    gap: 0.5em;
}

/* FLEX */
/* alignment */
.flex.mobile-justify-start {justify-content: flex-start;}
.flex.mobile-justify-center {justify-content: center;}
.flex.mobile-justify-end {justify-content: flex-end;}
.flex.mobile-centered {align-content: center; align-items: center; justify-content: center;}
.flex.mobile-align-top {align-items: flex-start;}
.flex.mobile-align-center {align-items: center;}
.flex.mobile-align-bottom {align-items: flex-end;}

.flex.mobile-flex-wrap {flex-wrap: wrap;}
.flex-wrap .white-box.half {width: 100%;}


.flex.mobile-flex-fill,
.flex .mobile-flex-fill {flex: 1 1 auto}
.mobile-flex-column {flex-direction: column;}
.mobile-column-reverse {flex-direction: column-reverse;}

.mobile-full-width,
.flex > .mobile-full-width {width: 100%;}

.flex.mobile-block {
	display: block;
}

.alpha, .roman {
    padding-left:  1em;
}

/* Contact Form - table removed ----- */
.form-flex :is(.half, .third, .quarter) {
	width: 100%;
}




/* CANDIDATE ------------------------------ */
#candidate-steps {
    display: grid;
    grid-template-columns: 1fr;
}

#candidate-steps li {
	justify-content: center;
	margin: 0 auto;
	max-width: 17.5em;
	width: 100%;
}

#candidate-profile > .gap-30 {
    flex-wrap: wrap;
}
#candidate-profile .candidate-details,
#candidate-profile .candidate-history {
    width: 100%;
}

#candidate-profile br {
	display: none;
}

.row-table .row {
    gap: 0;
    grid-template-columns: 1fr;
}

.row-table .row :first-child:not(:only-child) {
    color: var(--grey);
    font-size: 0.875em;
    font-style: italic;
}




/* EMPLOYER ------------------------------ */
.sales-ribbon {
	margin: 2em -1em -3em;
	padding: 2em 1em 3em;
	width: calc(100% + 2em);
}

.sales-ribbon .wrap {
	gap:2.8125em;
}

.sales-ribbon .value-points ul {
	flex-direction: column;
	margin-top: 2em;
}





/* MODAL POPOVER ------------------------------ */
.modal__dialog {
	margin-top: 3em;
}

.modal__dialog .modal__body {
	max-height: calc(100vh - 9.875em);
}




/* FOOTER ------------------------------ */
body>footer {
    align-items: center;
    flex-direction: column;
    line-height: 1.125em;
    padding: 1em;
    text-align: center;
}




/* --------------------- wsEduCheck - style-m.css --------------------- */
