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

html {
	scroll-padding-top: 8.375em;
	/* Scroll offset for sticky header */
}

/* HEADINGS ------------------------------ */
h1 {
	font-size: 1.875em;
}

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

h2 {
	font-size: 1.45em;
}

h3 {
	font-size: 1.3em;
}

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

h5 {
	font-size: 1.1em;
}

h6 {
	font-size: 1.0em;
}

.intro {
	font-size: 1.25em;
}

/* HEADER ------------------------------*/
body>header {
	align-items: center;
	background: #FFF;
	box-shadow: 0 1px 0 0 var(--primary);
	display: flex;
	justify-content: space-between;
	padding: 0.5625em 1em 0.5625em 3.125em;
	position: sticky;
	top: 0;
	z-index: 1;
}

body.management>header {
	top: 35px;
}

body>header a.logo:is(:hover, :focus-visible) .icon img {
	transform: scale(1.1);
}

body>header a.logo:is(:hover, :focus-visible) .text {
	color: var(--default-text-color);
	transform: translateX(-0.3125em);
}

nav ul {
	margin: 0;
}

#mainnav {
	align-items: center;
	display: flex;
	overflow: visible;
}

#mainnav ul {
	margin: 0;
	padding: 0;
	text-align: center;
}

#mainnav li {
	display: inline-block;
	position: relative;
}

#mainnav>ul>li:last-child {
	border-left: 1px solid var(--lightest-grey);
	margin-left: 1em;
	padding-left: 1em;
}

#mainnav a {
	border-radius: var(--border-radius);
	color: var(--grey);
	display: inline-block;
	font-weight: 600;
	line-height: 1;
	padding: 1em;
	position: relative;
	text-decoration: none;
}

#mainnav>ul>li>a:after {
	background: var(--primary);
	border-radius: 0.375em;
	bottom: 0;
	content: "";
	display: block;
	height: 0.375em;
	left: 50%;
	opacity: 0;
	position: absolute;
	transform: translateX(-50%);
	transition: var(--transition);
	width: calc(100% - 4em);
}

#mainnav>ul>li:is(:hover, :focus-within)>a {
	background: var(--lightest-grey);
	color: var(--default-text-color);
}

#mainnav>ul>li.on>a {
	color: var(--default-text-color);
}

#mainnav>ul>li.on>a:after {
	opacity: 1;
}

/* Accessible dropdowns */
#mainnav>ul>li>button {
	background: transparent;
	border: 0;
	height: 1.5em;
	inset: 50% .5em auto auto;
	padding: 0;
	pointer-events: none;
	position: absolute;
	transform: translateY(-50%);
	width: 1.5em;
}

#mainnav>ul>li.menu-item-has-children>a {
	padding-right: 2em;
}

#mainnav>ul>li>button:before {
	background: url('/images/icons/misc/chevron-down.svg') no-repeat center / auto .875em;
	content: '';
	inset: 0;
	position: absolute;
}

/* Drop-down menu */
#mainnav li>ul,
#mainnav .other-tools > div {
	background: #fff;
	height: auto !important;
	left: 0;
	opacity: 0;
	padding: 1em 1px;
	position: absolute;
	top: -200vh;
	visibility: hidden;
	width: 16em;
	border-radius: var(--border-radius);
	background: #FFF;
	box-shadow: var(--box-shadow);
}

/* fade out */
#mainnav li:not(.expand)>ul,
#mainnav .other-tools:is(:hover, :focus-within, .show)>div {
	transition:
		opacity .2s ease-out 0.25s,
		visibility .2s ease-out 0.25s,
		top 0s linear 0.7s;
}

#mainnav li:hover ul,
#mainnav>ul>li.tapped > ul,
#mainnav>ul>li>a:focus + ul,
#mainnav>ul>li.expand>ul,
#mainnav .other-tools.show > div {
	opacity: 1;
	top: 100%;
	visibility: visible;
}

/* fade in */
#mainnav>ul>li:is(:hover, :focus-within, .expand)>ul,
#mainnav .other-tools:is(.show)>div {
	transition:
		opacity .2s ease-in .3s,
		visibility .2s ease-in 0s,
		top 0s linear .3s;
}

#mainnav>ul>li:last-child ul,
#mainnav .other-tools > div {
    left:auto;
    right: 0;
}

#mainnav li ul li,
#mainnav .other-tools > div li {
	display: block;
	width: 100%;
}

#mainnav li ul li a,
#mainnav .other-tools > div li a {
	border-radius: 0;
	color: var(--default-text-color);
	display: block;
	font-size: .9em;
	font-weight: 400;
	line-height: 1.1em;
	padding: 0.5em 1em;
	text-align: left;
	width: 100%;
}

#mainnav li ul li a:is(:hover, :focus-visible),
#mainnav .other-tools > div li a:is(:hover, :focus-visible) {
	background: var(--lightest-grey);
	color: var(--default-text-color);
}

#mainnav li ul ul {
	display: none;
}

/* Other Tools ----------------------------- */
#mainnav .other-tools {
	border-radius: var(--border-radius);
    margin-left: 0.5em;
	position: relative;
	text-align: left;
	transition: var(--transition);
}

#mainnav .other-tools:is(:hover, :focus-within, .show) {
	background: var(--lightest-grey);
}

#mainnav .other-tools:is(:hover, :focus-within, .show) .icon:before {
	background: var(--default-text-color);
}

#mainnav .other-tools>div>span{
	display: block;
    font-style: italic;
    padding: 0 1em 0.25em;
    font-style: italic;
    font-size: 0.875em;
    color: var(--grey);
}



/* mobile */
#mobilenav,
.menu,
.mobileOnly {
    content-visibility: hidden;
    display: none;
}

/* MAIN ------------------------------ */
main {
	min-height: calc(100vh - 8.875em);
	padding: 3.125em 3.125em 7em;
}

.management main {
	min-height: calc(100vh - 11.0625em);
}

main>div>#content {
	position: relative;
}

.photoright {
	margin: 0 0 3em 4em;
}

.photoleft {
	margin: 0 4em 3em 0;
}

.wsManagementLogin td:first-child {
	text-align: right;
	width: 40%;
}

a:is(:hover, :focus):not(.button) {
	color: var(--red);
}

:is(button, .button, input:is([type="button"], [type="submit"], [type="reset"])):is(:hover, :focus-visible) {
	background-color: var(--dark-blue);
	color: #FFF;
}

:is(button, .button).red:is(:hover, :focus-visible) {
	background:var(--dark-red);
}

:is(button, .button).white:is(:hover, :focus-visible) {
	background:#fff;
	color: inherit;
	box-shadow: inset 0 0 0 1px var(--blue);
}

:is(button, .button).white.red-outline:is(:hover, :focus-visible) {
	background:#fff;
	color: inherit;
	box-shadow: inset 0 0 0 1px var(--dark-red);
}

:is(button, .button, input:is([type="button"], [type="submit"], [type="reset"])).text-link:is(:hover, :focus-visible) {
    background: none;
    color: currentColor;
    text-decoration: underline;
}

#popover .close:is(:hover, :focus-visible) {
	opacity: 0.5;
}

.shareIcons a:is(:hover, :focus-visible) {
	background-color: var(--link-color-hover);
}

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

.twoCol {
	columns: 2;
}

.threeCol {
	columns: 3;
}

.resCol {
	column-width: 13em;
	columns: auto;
}

.formTable td {
	width: 50%;
}

.formTable td {
	padding: 0 0 .5em .5em;
}

.formTable td:first-child {
	padding: 0 .5em .5em 0;
}

.formTable td[colspan="2"] {
	padding-right: 0;
}

.formTable.formLoose,
.formTable.formLoose td {
	width: auto;
}

table.hover tbody tr:hover {
    background: var(--light-yellow);
}

fieldset.yes-no {
    gap: 1em;
}

/* Contact Form - table removed ----- */
.form-flex .half {
	width: calc(50% - .5em);
	/* Full on mobile */
}

.form-flex .third {
	width: calc(33.33% - .5em);
	/* Full on mobile */
}

.form-flex .quarter {
	width: calc(25% - .5em);
	/* Half on mobile */
}




/* CANDIDATE VIEW ------------------------------ */
#candidate-profile .candidate-details {
    width:40%;
}

#candidate-profile .candidate-history {
    flex-shrink: 0;
    width:60%;
}

#candidate-profile .candidate-history tbody:first-of-type tr:hover {
    background: none;
}





/* CANDIDATE DASHBOARD ------------------------------ */
#candidate-steps {
    gap: 1.875em;
}





/* EMPLOYER ------------------------------ */
.sales-ribbon {
    gap:3.125em;
    margin: 3.125em -3.125em -7em;
    padding: 3.125em 3.125em 7em;
    width: calc(100% + 6.25em);
}

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

.sales-ribbon .value-points {
    padding-bottom: 2.5em;
}

.sales-ribbon .value-points .title {
    margin-bottom: 1.875em;
}

.sales-ribbon .value-points ul {
    justify-content: space-around;
}

.sales-ribbon .value-points ul li {
    width: 14.4375em;
}





/* FOOTER ------------------------------ */
body>footer {
	justify-content: space-between;
}





@media screen and (max-width: 1400px) {
    #candidate-steps li {
        width: calc(33% - 1.5em);
    }
}




@media screen and (max-width: 1300px) {
    #candidate-profile > .gap-30 {
        flex-wrap: wrap;
    }
    #candidate-profile .candidate-details,
    #candidate-profile .candidate-history {
        width: 100%;
    }
}

@media screen and (max-width: 1200px) {
    body>header {
        padding: 0.5625em 0.5em 0.5625em 1.5em;
    }
    #mainnav a {
        font-size: 0.875em;
        padding: 0.75em 0.5em;
    }
    #mainnav > ul > li:last-child {
        margin-left: 0.5em;
        padding-left: 0.5em;
    }
    main {
        padding: 2.125em 1.5em 5em;
    }


}



@media screen and (max-width: 1000px) {
    .white-box.half {
        width: 100%;
    }
    #candidate-steps li {
        width: calc(50% - 1em);
    }
}



@media screen and (max-width: 900px) {
    .logo .icon {
        display: none;
    }
}


/* --------------------- wsEduCheck - style-d.css --------------------- */
