/*
Theme Name: Convident theme Child
Theme URI: https://http://thema.convident.website/
Template: convident-theme
Author: Convident
Author URI: https://convident.nl
Description: Algemeen thema voor convident websites
Version: 1.0.0
Text Domain: convident-theme-child

/* Imports */
@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:wght@200;300;400;600;700&family=Nunito:wght@400;600;700&display=swap');

/* Colors */
:root {
	--asbr-orange: #EE7402;
	--asbr-blue: #162933;
	--asbr-mediumblue: #37404E;
	--asbr-lightblue: #5C6970;
	--light-background: #F5F5F5;
	--light-error-background: #f3d6d6;
	--light-gray: #D9D9D9;

	--error: firebrick;

	--main-font: 'Nunito', sans-serif;
	--alt-font: 'Fira Sans', serif;
	--text-black: #0E0E0E;
}

/* Fonts */
body, body *{
	font-family: 'Nunito', sans-serif;
}


/* Elements */
:focus {
	box-shadow: inset 0 0 0 1px var(--asbr-orange);
}

h1, .home h2 {
	color: #232323;
	font-family: var(--alt-font);
	font-size: 28px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	display: flex;
	align-items: center;
	gap: 0.5em;
}

input[type="text"],
.login form .input, 
.login input[type=password], 
.login input[type=text] {
	border: 1px solid var(--light-gray);
	background: var(--white);
	padding: 8px 18px;
	font-family: "Fira Sans", serif;
	font-size: 14px;
	font-weight: 400;
	line-height: normal;
	border-radius: 0;
}
input[type="text"]:focus,
.login form .input:focus, 
.login input[type=password]:focus, 
.login input[type=text]:focus {
	border: 1px solid var(--asbr-orange);
	box-shadow: none;
}
input[type="text"]::placeholder {
	color: rgba(35, 35, 35, 0.40);
}
.login .button.wp-hide-pw {
	color: var(--asbr-blue);
	top: 0.1rem;
}
.login .button.wp-hide-pw:hover {
	color: var(--asbr-lightblue);
}
input[type="checkbox"] {
	cursor: pointer;
}
input[type="radio"] {
	cursor: pointer;
}
.button,
.wp-core-ui .button{
	display: inline-block;
	color: var(--white);
	background-color: var(--asbr-orange);
	font-family: "Fira Sans", serif;
	font-size: 16px;
	font-weight: 600;
	line-height: normal;	
	text-decoration: none;
	border-radius: 0;
	border: 0px;
	padding: 10px 30px;
	transition: all 0.2s ease-in-out;
	-webkit-user-select: none; /* Safari */
	-ms-user-select: none; /* IE 10 and IE 11 */
	user-select: none; /* Standard syntax */
}
.button:hover,
.wp-core-ui .button:hover {
	opacity: 0.8; /*? */
	color: var(--white);
	background-color: var(--asbr-orange);
	text-decoration: none;
}
.button-alt {
	color: var(--text-black);
	border: 1px solid var(--asbr-orange);
	background-color: var(--white);
}
.button-alt:hover {
	color: var(--white);
	background-color: var(--asbr-orange);
	text-decoration: none;
}
.button.disabled {
	pointer-events: none;
	opacity: 0.5;
}
.button.button-arrow {
	position: relative;
}
.button.button-arrow.button-arrow-back {
	padding-left: 65px;
	padding-right: 40px;
}
.button.button-arrow.button-arrow-back::before {
	content: '';
	display: block;
	position: absolute;
	width: 11px;
	height: 100%;
	left: 40px;
	top: 0px;
	background-image: url('img/arrow-back-white.svg');
	background-position: center;
	background-repeat: no-repeat;
	transition: all 0.2s ease-in-out;
}
.button.button-alt.button-arrow.button-arrow-back::before {
	background-image: url('img/arrow-back-black.svg');
}
.button.button-alt.button-arrow.button-arrow-back:hover::before {
	background-image: url('img/arrow-back-white.svg');
}
.button.button-arrow.button-arrow-back:hover::before {
	left: 35px;
}
.button.button-arrow.button-arrow-forward {
	padding-right: 65px;
	padding-left: 40px;
}
.button.button-arrow.button-arrow-forward::before {
	content: '';
	display: block;
	position: absolute;
	width: 11px;
	height: 100%;
	right: 40px;
	top: 0px;
	background-image: url('img/arrow-forward-white.svg');
	background-position: center;
	background-repeat: no-repeat;
	transition: all 0.2s ease-in-out;
}
.button.button-arrow.button-arrow-forward:hover::before {
	right: 35px;
}

.asbrt-candidate-message {
	display: inline-block;
	min-width: 50%;
	position: relative;
	padding: 25px 25px 25px 50px;
	background-color: var(--light-background);
	font-size: 20px;
	font-weight: 600;
}
.asbrt-candidate-message.candidate-message-notification {
	
}
.asbrt-candidate-message.candidate-message-alert {
	background-color: lightyellow;
}
.asbrt-candidate-message.candidate-message-error {
	background-color: firebrick;
	color: var(--white);
}

/* Main menu bars */
.navigatie div#logo {
	display: flex;
	align-items: center;
}
#logo img {
	height: 50px;
}
.navigatie div#logo a {
	line-height: 64px;
}
.navigatie div#logo .asbrt-tagline {
	display: block;
	position: relative;
	margin-left: 65px;
	color: var(--white);
	font-size: 18px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
}
.navigatie div#logo .asbrt-tagline:before {
	content: '';
	position: absolute;
	left: -45px;
	top: calc(50% - 1.25px);
	width: 25px;
	height: 2.5px;
	background-color: var(--asbr-orange);
}
.navigatie.normal-menu {
	background-color: var(--asbr-blue);
}
.navigatie.normal-menu a {
	color: #ffffff;
}
.asbrt-user-menu-container {
	height: 64px;
	display: flex;
	justify-content: center;
	align-items: end;
	flex-shrink: 0;
	padding-right: 35px;
}
.asbrt-user-menu  {
	background-color: var(--asbr-mediumblue);
	border-radius: 10px 10px 0 0;
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 15px;
	position: relative;
}
.asbrt-user-menu .user-gravatar img {
	width: 36px;
	height: 36px;
	object-fit: cover;
	border: 2px solid #fff;
	border-radius: 100%;
}
.asbrt-user-menu .user-menu-toggle {
	display: block;
	text-decoration: none;
	color: #ffffff;
	cursor: pointer;
}
.asbrt-user-menu .user-menu-container {
	display: none;
	z-index: 10;
	position: absolute;
	bottom: 4px;
	right: -0px;
	width: 256px;
	transform: translateY(100%);
	padding: 20px;
	background-color: #ffffff;
	box-shadow: 0px 66px 139px rgba(0, 0, 0, 0.06), 0px 14.742px 31.0475px rgba(0, 0, 0, 0.0357664), 0px 4.38907px 9.24364px rgba(0, 0, 0, 0.0242336);
	border-radius: 5px;
}
.asbrt-user-menu .user-menu-toggle:hover ~ .asbrt-user-menu .user-menu-container {
	display: block;
}
.asbrt-user-menu .user-menu-container:before {
    content: '';
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #fff;
    position: absolute;
    top: -7px;
    right: 30px;
}

.asbrt-user-menu .user-menu-container a {
	position: relative;
    display: block;
    padding-left: 23px;
    background-repeat: no-repeat;
    background-position: left center;
}
.asbrt-user-menu .user-menu-container a>span {
	font-size: 15px;
	line-height: 22px;
	color: var(--asbr-blue);
	transition: all 0.2s ease-in-out;
	display: inline-block;
}
.asbrt-user-menu .user-menu-container a:hover>span {
	padding-left: 5px;
}

/* WPML language switcher */
.asbrt-language-switcher .wpml-ls-legacy-dropdown {
	width: 100%;
}
.asbrt-language-switcher .wpml-ls ul {
	display: flex;
}
.asbrt-language-switcher .wpml-ls-legacy-dropdown a {
	border: 0px;
    background-color: transparent;
}
.asbrt-language-switcher .wpml-ls-legacy-dropdown a.wpml-ls-item-toggle:after {
	border: 0px;
	background-image: url(img/caret-down.svg);
	background-repeat: no-repeat;
	width: 15px;
	height: 8.5px;
}
.asbrt-language-switcher .wpml-ls-legacy-dropdown .wpml-ls-current-language:hover>a, 
.asbrt-language-switcher .wpml-ls-legacy-dropdown a:focus, .wpml-ls-legacy-dropdown a:hover {
	color: var(--white);
	background-color: var(--asbr-mediumblue);
	text-decoration: none;
}
.asbrt-language-switcher .wpml-ls-item-nl .wpml-ls-native,
.asbrt-language-switcher .wpml-ls-item-en .wpml-ls-native {
	display: none;
}
.asbrt-language-switcher .wpml-ls-item-nl .wpml-ls-item-toggle::before,
.asbrt-language-switcher .wpml-ls-item-nl .wpml-ls-link::before,
.asbrt-language-switcher .wpml-ls-item-en .wpml-ls-link::before,
.asbrt-language-switcher .wpml-ls-item-en .wpml-ls-item-toggle::before {
	color: var(--white);
	font-family: var(--alt-font);
	font-size: 20px;
	font-weight: 600;
	line-height: normal;
	text-transform: uppercase;
}
.asbrt-language-switcher .wpml-ls-sub-menu .wpml-ls-item-nl .wpml-ls-link::before,
.asbrt-language-switcher .wpml-ls-item-nl .wpml-ls-item-toggle::before {
	content: 'NL';
}
.asbrt-language-switcher .wpml-ls-sub-menu .wpml-ls-item-en .wpml-ls-link::before,
.asbrt-language-switcher .wpml-ls-item-en .wpml-ls-item-toggle::before {
	content: 'EN';
}
.asbrt-language-switcher .wpml-ls-legacy-dropdown>ul>li:hover .wpml-ls-sub-menu {
	visibility: visible;
}
.asbrt-language-switcher .wpml-ls-sub-menu {
	background-color: var(--asbr-mediumblue);
}
.asbrt-language-switcher .wpml-ls-sub-menu li {
	background-color: var(--asbr-mediumblue);
}

/* cols */
.logged-in #menu-root-column {
	min-width: 256px;
}

.logged-in #asbr-main-col {
	max-width: calc(100% - 256px);
}

#menu-root-column {
	background-color: var(--asbr-blue);
}

.nav-sidebar {
	margin: 0 -15px;
	height: calc(100vh - 96px);
	background-position: bottom;
	background-repeat: no-repeat;
	background-size: 175%;
}
.logged-in .nav-sidebar {
	background: none;
	min-width: 200px;
}
.nav-sidebar #primary-menu.menu-hoofdmenu-container {
	float: none;
}
.nav-sidebar .menu li {
	display: block;
}
.nav-sidebar .menu li a {
	display: inline-block;
	width: 100%;
	position: relative;
	padding: 14px 5px 14px 60px;
	color: #ffffff;
	text-decoration: none;
	background-position: left center;
	background-repeat: no-repeat;
}
/* icons */
#primary-menu ul li.menu-item>a {
	background-position: 25px center;
    background-repeat: no-repeat;
}
#primary-menu ul li.menu-item.asbrt-dashboard>a {
	background-image: url('img/icon-menu-dashboard-white.svg');
}
#primary-menu ul li.menu-item.asbrt-dashboard.current-menu-item>a,
#primary-menu ul li.menu-item.asbrt-dashboard>a:hover {
	background-image: url('img/icon-menu-dashboard-orange.svg');
}
#primary-menu ul li.menu-item.asbrt-tests_pending>a {
	background-image: url('img/icon-menu-tests_pending-white.svg');
}
#primary-menu ul li.menu-item.asbrt-tests_pending.current-menu-item>a,
#primary-menu ul li.menu-item.asbrt-tests_pending>a:hover {
	background-image: url('img/icon-menu-tests_pending-orange.svg');
}
#primary-menu ul li.menu-item.asbrt-tests_completed>a {
	background-image: url('img/icon-menu-tests_completed-white.svg');
}
#primary-menu ul li.menu-item.asbrt-tests_completed.current-menu-item>a,
#primary-menu ul li.menu-item.asbrt-tests_completed>a:hover {
	background-image: url('img/icon-menu-tests_completed-orange.svg');
}
#primary-menu ul li.menu-item.asbrt-assessments>a {
	background-image: url('img/icon-menu-assessments-white.svg');
}
#primary-menu ul li.menu-item.asbrt-assessments.current-menu-item>a,
#primary-menu ul li.menu-item.asbrt-assessments>a:hover {
	background-image: url('img/icon-menu-assessments-orange.svg');
}
#primary-menu ul li.menu-item.asbrt-credentials-1>a {
	background-image: url('img/icon-menu-credentials-1-white.svg');
}
#primary-menu ul li.menu-item.asbrt-credentials-1.current-menu-item>a,
#primary-menu ul li.menu-item.asbrt-credentials-1>a:hover {
	background-image: url('img/icon-menu-credentials-1-orange.svg');
}
#primary-menu ul li.menu-item.asbrt-credentials-2>a {
	background-image: url('img/icon-menu-credentials-2-white.svg');
}
#primary-menu ul li.menu-item.asbrt-credentials-2.current-menu-item>a,
#primary-menu ul li.menu-item.asbrt-credentials-2>a:hover {
	background-image: url('img/icon-menu-credentials-2-orange.svg');
}
.nav-sidebar .menu li.asbrt-spacer a {
	color: var(--white);
	opacity: 0.8;
	text-decoration: none;
	font-size: 13px;
	font-weight: 600;
	padding-left: 25px;
	background: none;
	pointer-events: none;
}
.nav-sidebar .menu li.asbrt-spacer:hover {
	background-color: transparent;
}
.nav-sidebar .menu li:hover {
	background-color: var(--asbr-lightblue);
}
.nav-sidebar .menu li.asbrt-current-dashboard-page {
	background-color: var(--asbr-lightblue);
}	

/* Socket */
body .asbr-mini-socket {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: var(--light-background);
	display: flex;
	align-items: center;
	padding: 0px 20px;
	height: 42px;
}
body .asbr-mini-socket span {
	color: #232323;
	font-size: 14px;
	font-weight: 600;
}

/* Login */
body.login, 
body.login #asbr-main-col {
	background-color: var(--asbr-blue);
}
body.login div#login {
	background-color: var(--white);
	width: 100%;
	margin: 95px 0 0;
}
body.login div#login #loginform,
body.login div#login #resetpassform,
body.login div#login #lostpasswordform {
	margin: 0 90px;
	background: var(--light-background);
	border-color: transparent;
	padding: 33px 50px;
}
body.login div#login #resetpassform {
	padding-bottom: 90px;
}
body.login div#login #resetpassform .button.wp-hide-pw .dashicons {
	top: 0;
}
body.login div#login #resetpassform .description.indicator-hint {
	position: absolute;
	bottom: 0;
	color: #232323;
    font-family: var(--alt-font);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2em;
	left: 50px;
	right: 50px;
}
.login #pass-strength-result {
	padding: 3px 5px;
	font-size: 14px;
	font-family: var(--alt-font);
}
body.login .login #nav {
	margin-left: 90px;
	padding-left: 50px;
}
#nav .wp-login-lost-password,
.login label {
	color: #232323;
	font-family: var(--alt-font);
	font-size: 14px;
	font-weight: 400;
	line-height: normal;
}
.login .message, 
.login .notice, 
.login .success {
	margin: 0 90px 20px 90px;
	margin-bottom: 20px;
	border-left: 4px solid var(--asbr-blue);
	background-color: var(--light-background);
}
.login.login-action-lostpassword .login .message, 
.login .notice, 
.login .success, 
.login .notice-error {
	margin: 0 90px 20px 90px;
	box-shadow: unset;
}
.login.login-action-lostpassword #nav {
	background: transparent;
}
.login .notice-error {
    border-left-color: #d63638;
	background-color: var(--light-error-background);
}
.login #nav {
    margin: 0 90px;
    padding: 0 0 15px 50px;
    background: whitesmoke;
}
.wpml-login-ls {
	margin: 0;
	background-color: var(--white);
}
.login-action-checkemail .wpml-login-ls,
.login-action-resetpass .wpml-login-ls{ 
	margin-top: -20px;
	padding-top: 20px;
}
.wpml-login-ls #wpml-login-ls-form {
	margin-top: 0;
	padding-top: 20px;
}
.login #backtoblog {
    display: none;
}
#resetpassform .button.wp-generate-pw {
	appearance: none;
    color: #232323;
    font-family: var(--alt-font);
    font-size: 14px;
    font-weight: 400;
    background: transparent;
    text-decoration: underline;
	padding: 0;
}
#resetpassform ~ #nav {
	display: none;
}
.wpml-login-ls #wpml-login-ls-form {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 10px;
}
.wpml-login-ls #wpml-login-ls-form label[for="language-switcher-locales"] {
    display: none;
}
select#wpml-language-switcher-locales {
    border-radius: 0;
    flex: 30% 0 0;
}
.wpml-login-ls #wpml-login-ls-form input[type="submit"] {
    background-color: #aaaaaa !important;
}
/* Page */
#asbr-main-col {
	padding: 0;
}
#main-content {
	padding: 60px 32.5px;
	overflow-y: scroll;
	height: calc(100vh - 64px);
}

/* Page: My Dashboard */
.asbrt-dashboard-message {
	padding: 5px 12px;
    border: 1px solid firebrick;
    background-color: #f1d1d1;
    margin-bottom: 15px;
}
.asbrt-dashboard-message span {
    color: firebrick;
}
.candidate-test-items {
	margin-bottom: 50px;
}
.candidate-test-items .candidate-test-item {
	display: flex; 
	gap: 10px;
	align-items: center;
	justify-content: space-between;
	transition: all 0.2s ease-in-out;
	background-color: var(--light-background);
}
.candidate-test-items .candidate-test-item .view-all {
	color: #6D797F;
	font-family: "Fira Sans";
	font-size: 16px;
	font-weight: 500;
	line-height: normal;
	position: relative;
}
.candidate-test-items .candidate-test-item .view-all:after {
	content: '';
	position: absolute;
	height: 16px;
	width: 16px;
	display: block;
	background-image: url(img/arrow-gray.svg);
	background-position: center;
	background-repeat: no-repeat;
	right: 30px;
	transition: all 0.2s ease-in-out;
}
.candidate-test-items .candidate-test-item .view-all:hover:after {
	right: 15px;
}
.candidate-test-items .candidate-test-item.tests-completed {
	padding: 15px 30px;
}
.candidate-test-items .candidate-test-item>a {
	text-decoration: none;
}
.candidate-test-items .candidate-test-item:hover{
	background-position: 99% center;
}
.candidate-test-items .candidate-test-item .candidate-test-item-label {
	font-family: var(--alt-font);
	font-size: 20px;
	font-weight: 500;
}
h1 .candidate-test-item-count,
.candidate-test-items .candidate-test-item .candidate-test-item-count {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 35px;
	height: 35px;
	background-color: var(--asbr-orange);
	color: #fff;
	border-radius: 35px;
	font-size: 16px;
	line-height: normal;
}
.asbrt-dashboard-item-profile-section .asbrt-dashboard-item-single-cont {
	padding: 20px 30px 20px 55px;
	background-color: var(--light-background);
	background-image: url(img/icon-logout.svg);
	background-position: 30px center;
	background-repeat: no-repeat;
	transition: all 0.2s ease-in-out;
}
.asbrt-dashboard-item-profile-section .asbrt-dashboard-item-single-cont>a {
	text-decoration: none;
	font-family: "Fira Sans", serif;
	font-family: var(--alt-font);
	font-size: 16px;
	font-weight: 500;
}
.asbrt-dashboard-item-profile-section .asbrt-dashboard-item-single-cont>a:hover {
	text-decoration: underline;
}
.candidate-test-items .candidate-test-item a {
	display: flex;
	gap: 5px;
	align-items: center;
	padding: 15px 50px 15px 30px;
}
.candidate-test-items .candidate-test-item.tests-pending .candidate-test-item-progress {
	display: inline-block;
	padding: 5px 15px;
	border-radius: 15px;
	color: var(--white);
	background-color: var(--asbr-orange);
	font-size: 15px;
	font-weight: 700;
	line-height: 18px;
	flex-shrink: 0;
}
/* Dashboard > Assessments */
.candidate-assessment-items .assessment-container {
	border: 1px solid #F0F0F0;
	background: #FFF;
	box-shadow: 0px 66px 139px 0px rgba(0, 0, 0, 0.06), 0px 14.742px 31.047px 0px rgba(0, 0, 0, 0.04), 0px 4.389px 9.244px 0px rgba(0, 0, 0, 0.02);
	padding: 22px 30px;
	margin-bottom: 30px;
}
.candidate-assessment-items .assessment-container.dummy, .candidate-credentials-items .credentials-item.dummy {
	box-shadow: unset;
}
.candidate-assessment-items .assessment-container.dummy *, .candidate-credentials-items .credentials-item.dummy * {
	user-select: none;
}
.candidate-assessment-items .assessment-container .assessment-attributes {
	height: 26px;
	display: flex;
	column-gap: 10px;
}
.candidate-assessment-items .assessment-container .assessment-attributes .assessment-attribute {
	font-family: "Fira Sans";
	font-size: 14px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	text-transform: uppercase;
	border-radius: 50px;
	display: inline-flex;
	padding: 8px 18px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	user-select: none;
}
.candidate-assessment-items .assessment-container .assessment-attributes .assessment-attribute.new {
	color: #2B7E48;
	background: rgba(43, 126, 72, 0.18);
}
.candidate-assessment-items .assessment-container h3 {
	margin: 0;
}
.candidate-assessment-items .assessment-container h3 > a {
	color: #232323;
	font-family: "Fira Sans";
	font-size: 20px;
	font-weight: 500;
	line-height: normal;
	text-decoration: none;
}
.candidate-assessment-items .assessment-container .assessment-actions {
	display: flex;
	justify-content: end;
	align-items: center;
	gap: 15px;
	margin-top: -15px;
}
.candidate-assessment-items .assessment-container .assessment-actions a.assessment-arrow-link {
	display: block;
	width: 50px;
	height: 50px;
	border-radius: 25px;
	background-color: #F5F5F5;
	background-image: url(img/arrow-orange.svg);
	background-position: center;
	background-repeat: no-repeat;
	transition: all 0.2s ease-in-out;
}
.candidate-assessment-items .assessment-container .assessment-actions a.assessment-arrow-link:hover {
	background-position-x: 75%;
}
.candidate-assessment-item, .candidate-credentials-items {
	margin-bottom: 50px;
}

/* Dashboard > Inloggegevens */
.candidate-credentials-items h2 {
	display: flex;
	gap: 50px;
	align-items: center;
}
.candidate-credentials-items h2 span {
	color: #0E0E0E;
    font-family: "Fira Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
	position: relative;
}
.candidate-credentials-items h2 span:before {
	content: '';
	display: block;
	position: absolute;
	left: -37px;
	top: calc(50% - 1px);
	width: 20px;
	height: 2px;
	background-color: var(--asbr-orange);
}
.candidate-credentials-items .credentials-item {
	height: 100%;
	background: #FFF;
	box-shadow: 0px 66px 139px 0px rgba(0, 0, 0, 0.06), 0px 14.742px 31.047px 0px rgba(0, 0, 0, 0.04), 0px 4.389px 9.244px 0px rgba(0, 0, 0, 0.02);
	margin-bottom: 30px;
}
.candidate-credentials-items .credentials-item .credentials-item-header {
	border-radius: 5px 5px 0px 0px;
	background-color: #FDF1E6;
	padding: 15px 20px;
}
.candidate-credentials-items .credentials-item .credentials-item-header span {
	color: var(--asbr-orange);
	font-family: "Fira Sans";
	font-size: 18px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
}
.candidate-credentials-items .credentials-item .credentials-item-content {
	padding: 10px 20px;
}
.candidate-credentials-items .credentials-item .credentials-item-content .credentials-item-content-field {
	margin: 0 0 5px 0;
}
.candidate-credentials-items .credentials-item .credentials-item-content label {
	color: #232323;
	font-family: "Fira Sans";
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	text-transform: uppercase;
}
.candidate-credentials-items .credentials-item .credentials-item-content .credential-input-container {
	background: #F5F5F5;
	height: 36px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 5px;
}
.candidate-credentials-items .credentials-item .credentials-item-content .credential-input-container input {
	border: 0px;
	flex: 1;
	background-color: transparent;
	overflow: hidden;
	color: #232323;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-family: "Fira Sans";
	font-size: 15px;
	height: 100%;
	font-weight: 400;
	line-height: normal;
	padding-left: 10px;
}
.candidate-credentials-items .credentials-item .credentials-item-content .credential-input-container input:focus {
	outline: none;
}
.candidate-credentials-items .credentials-item .credentials-item-content .credential-input-container.focus {
	outline: 2px solid var(--asbr-orange);
}
.candidate-credentials-items .credentials-item .credentials-item-content .credential-input-container .input-action {
	height: 30px;
	width: 35px;
	border: 1px solid transparent;
	border-left: 1px solid #AEAEAE;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	transition: all 0.2s ease-in-out;
}
.candidate-credentials-items .credentials-item .credentials-item-content .credential-input-container .input-action.visited {
	opacity: 0.5;
    color: firebrick;
}
.candidate-credentials-items .credentials-item .credentials-item-content .credential-input-container .input-action.visited svg path {
	fill: firebrick;
}
.candidate-credentials-items .credentials-item .credentials-item-content .credential-input-container.field-type-url .input-action {
	width: 100%;
	border-left-color: transparent;
}
.candidate-credentials-items .credentials-item .credentials-item-content .credential-input-container .input-action:hover {
	border: 1px solid #AEAEAE;
	background-color: #FFF;
}


/* Test single > common parts */
.single-test #main-content {
	height: calc(100vh - 69px);
	padding-bottom: 91px;
}
.single-test.admin-bar #main-content {
	height: calc(100vh - 101px);
}

.single-test #test-scroll-indicator {
	width: 100%;
	height: 5px;
	margin: 0;
	background-color: #D9D9D9;
}
.single-test #test-scroll-indicator .scroll-trackstop {
	display: inline-block;
	position: absolute;
	left: 0;
	height: 100%;
	min-width: 100px;
	border-radius: 0px 10px 10px 0px;
	background-color: var(--asbr-orange);
}

.single-test .test-messages-container>div {
	
}
.single-test .test-messages-container div.message {
	padding: 5px 12px;
	margin-bottom: 15px;
}
.single-test .test-messages-container div.message.message-error {
	background-color: var(--light-error-background);
	color: firebrick;
}

.single-test .test-intro {
	font-size: 18px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	margin-bottom: 30px;
}
.single-test .test-intro.collapsed {
	height: 300px;
	overflow: hidden;
	
}
.single-test .test-intro.collapsed:after {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  pointer-events: none;
  background-image: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255, 1) 90%);
  width: 100%;
  height: 4em;
}

.single-test .test-intro h1 {
	justify-content: center;
	color: var(--text-black, #0E0E0E);
	font-family: var(--alt-font);
	font-size: 50px;
	font-weight: 600;
	line-height: normal;
	margin-bottom: 30px;
}


.single-test .test-intro h4 {
	color: var(--Black, #0E0E0E);
	font-family: "Fira Sans", serif;
	font-weight: 500;
	margin: 1em 0 0;
}

/* Test single > pagination things */
.single-test .test-content-container.pagebreak-after-intro #the_test,
.single-test .test-content-container.pagebreak-after-intro .submit-socket {
	display: none;
}

.has-pagination .page {
	display: none;
}
.has-pagination .page.current {
	display: block;
}

.test-paginate {
	display: block;
}
.test-paginate.hidden {
	display: none;
}

/* Test single > common parts > questions */
.question {
	transition: all 0.2s ease-in-out;
}
.question.invalid,
.question.unanswered,
.meta-question.unanswered {
	background-color: #f5d6d6;
}
.question.unanswered .question-header {
	background-color: #ab5f5f;
}
.asbr-test-socket #invalid-test,
.submit-socket #invalid-test,
.asbr-test-socket #invalid-assessment,
.submit-socket #invalid-assessment {
	display: none;
	background-color: #f5d6d6;
	border: 2px solid #ab5f5f;
	padding: 5px 12px;
	margin: 15px 0;
	color: #ab5f5f;
}

.question label {
	color: var(--text-black, #0E0E0E);
	font-size: 16px;
	font-weight: 500;
	line-height: normal;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	display: flex;
	align-items: center;
	gap: 0.5em;
}
.question.type-dual-checkbox .answer label {
	gap: 30px;
}
.answer label .answer-index {
	word-break: keep-all;
}
.question input.working {
	cursor: wait;
	
	opacity: 0.8;
}
.answer.type-checkbox input {
	-webkit-appearance: none;
	appearance: none;
	border: 0px;
	width: 25px;
	height: 25px;
	background-color: #ADC1CC;
	margin: 0;
	border-radius: 1px;
	transition: 0.2s all ease-in-out;
	flex-shrink: 0;
}
.answer.type-checkbox input:disabled {
	opacity: 0.5;
	pointer-events: none;
}
.answer.type-checkbox input::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 1.35em;
	height: 1.35em;
	transform: scale(0);
	transition: 0.2s all ease-in-out;
}
.answer.type-checkbox input:checked::before {
	background-image: url('img/test-checkmark-white.svg');
	background-position: center;
	background-repeat: no-repeat;
	transform: scale(1);
}
.single-test .asbr-test-socket {
	position: fixed;
    bottom: 42px;
    right: 0;
    left: 0px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 5px 60px;
	background-color: var(--asbr-mediumblue);
	color: var(--white);
}
.single-test .asbr-test-socket.test-werkomstandigheden {
	justify-content: flex-end;
}
.single-test .asbr-test-socket .question-remaining-points {
	display: inline;
}
.single-test .asbr-test-socket .question-remaining-points-finished {
	display: none;
}
.test-submit.hidden {
	display: none;
}
.single-test .asbr-test-socket-inline, .single-assessment .asbr-assessment-socket-inline {
	display: flex;
    justify-content: center;
    flex-direction: column-reverse;
    align-items: center;
}

/* Test single > common parts > completed */
.test-success-container,
.assessment-success-container {
	display: none;
	height: calc(100vh - 256px);
}
.test-success-container .test-completed-col,
.assessment-success-container .assessment-completed-col {
	display: flex;
	flex-direction: column;
	gap: 100px;
	justify-content: center;
	align-items: center;
	width: 100%;	
	height: 100%;
}
.test-success-container .test-completed,
.assessment-success-container .assessment-completed {
	display: flex;
	flex-direction: column;
	gap: 25px;
	justify-content: center;
	align-items: center;
}
.test-success-container .test-completed:after,
.assessment-success-container .assessment-completed:after {
	content: '';
	position: absolute;
	z-index: -1;
	top: -84px;
	width: 366px;
	height: 366px;
	background-color: var(--light-background);
	border-radius: 183px;
}
.test-success-container .test-completed .test-completed-name,
.assessment-success-container .assessment-completed .assessment-completed-name {
	color: var(--text-black);
	font-size: 50px;
	font-weight: 600;
}
.test-success-container .test-completed .test-completed-message,
.assessment-success-container .assessment-completed .assessment-completed-message {
	color: #162933;
	font-size: 18px;
	font-weight: 700;
	line-height: normal;
}
/* Test single > parts per type */
/* Test single > parts per type > checkboxes */
.answer.asbrt-checkbox-wrapper.asbrt-inline-checkbox {
	padding-bottom: 15px;
}
.answer.asbrt-checkbox-wrapper.asbrt-inline-checkbox.disabled {
	pointer-events: none;
}
.answer.asbrt-checkbox-wrapper.asbrt-inline-checkbox.disabled label {
	opacity: 0.5;
}
.answer.asbrt-checkbox-wrapper.asbrt-inline-checkbox label {
	padding: 15px 10px;
	border-radius: 2px;
	background-color: #F5F5F5;
	transition: 0.2s all ease-in-out;
}
.answer.asbrt-checkbox-wrapper.asbrt-inline-checkbox label:hover,
.answer.asbrt-checkbox-wrapper.asbrt-inline-checkbox.checked label {
	background-color: #162933;
	color: var(--white);
}
.answer.asbrt-checkbox-wrapper.asbrt-inline-checkbox.checked label input {
	background-color: transparent;
}

/* Test single > parts per type > input numbers */
.answer.asbrt-number input {
	border: 1px solid transparent;
	padding: 8px 10px;
	margin-right: 20px;
	background-color: var(--light-background);
	color: var(--text-black, #0E0E0E);
	font-family: var(--alt-font);
	font-size: 18px;
	font-weight: 600;
	line-height: normal;
}
.answer.asbrt-number input.invalid-input {
	border: 2px solid var(--error);
	color: var(--error);
	background-color: var(--light-error-background);
}
.answer.asbrt-number.disabled input {
	color: rgba(14, 14, 14, 0.50);
	pointer-events; none;
}

.answer.asbrt-number input[type=number]::-webkit-inner-spin-button, 
.answer.asbrt-number input[type=number]::-webkit-outer-spin-button {
	opacity: 1;
}

/* Test single > parts per type > input radios */
.answer.asbrt-radio input[type="radio"]{
	appearance: none;
	-webkit-appearance: none;
	width: 18px;
	height: 18px;
	background-color: var(--light-background);
	border: 1px solid rgba(22, 41, 51, 0.50);
	border-radius: 50%;
	display: grid;
	place-content: center;
	flex-shrink: 0;
}
.answer.asbrt-radio input[type="radio"]:checked {
	border-color: var(--asbr-orange);
}
.answer.asbrt-radio input[type="radio"]::before {
	content: '';
	transform: scale(0);
	transition: 0.2s transform ease-in-out;
}
.answer.asbrt-radio input[type="radio"]:checked::before {
	width: 14px;
	height: 14px;
	background-color: var(--asbr-orange);
	border-radius: 50%;
	transform: scale(1);
}

.question.type-scoring-agree-disagree .answers {
	display: flex;
	align-items: center;
	gap: 50px;
	padding: 20px 15px;
}
.question.type-scoring-agree-disagree .answers .answer-offside-label,
.question.type-scoring-agree-disagree .answers label {
	color: var(--asbr-blue);
	font-family: var(--main-font);
	font-size: 18px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
}
.question .answers .answer.asbrt-inline-radio label.radio-choice,
.question.type-scoring-agree-disagree .answers .answer.inline label {
	display: flex;
	flex-direction: column;
	padding-top: 0.4em;
	gap: 0.25em;
}

.question .question-header {
	display: inline-flex;
	justify-content: start;
	align-items: baseline;
	gap: 0.5em;
	padding: 15px;
	background-color: var(--asbr-blue);
	color: var(--white);
	font-family: var(--alt-font);
	font-size: 18px;
	font-weight: 400;
	line-height: normal;
}
.question .question-header.question-header-alt {
	background-color: var(--light-background);
	color: var(--text-black);
}
.question .question-header.wide,
.question .answer.wide {
	display: flex;
	width: 100%;
	gap: 15px;
	align-items: center;
}
.question .question-header .question-header-name {
	font-size: 24px;
	font-weight: 500;
	line-height: normal;
	white-space: nowrap;
}
.question .question-header .question-header-content {
	font-size: 18px;
	font-weight: 400;
	line-height: normal;
}
.question .question-header .question-header-required {
	color: var(--asbr-orange);
	font-size: 18px;
	font-weight: 400;
	line-height: normal;
}
.question .answer.wide {
	padding: 7.5px 0;
}
.question .answer label {
	color: #3E3E3E;
	font-size: 18px;
	font-weight: 500;
	line-height: normal;
}
.question .answer.asbrt-radio-wrapper label,
.question .answer .asbrt-number-choice-label,
.question .answer label .answer-index {
	font-weight: 700;
}
.question .answer .asbrt-radio-wrapper {
	padding: 20px 15px;
}
.question .answer.wide.asbrt-number-choice {
	display: flex;
	align-items: center;
	padding: 0 15px;
}
.question .answer.wide.asbrt-number-choice label {
	font-size: 18px;
	font-weight: 700;
	line-height: normal;
	flex-grow: 1;
}
.question .answer.wide.asbrt-number-choice .options {
	display: flex;
	gap: 25px;
}
.question .answer.wide.asbrt-number-choice .options .option {
	position: relative;
}
.question .answer.wide.asbrt-number-choice .options .option .asbrt-number-choice-label {
	position: absolute;
	top: -1.85em;
	display: block;
	width: 18px;
	text-align: center;
}
.question.type-dual-checkbox {
	display: flex;
	flex-direction: row;
	gap: 0;
	margin-bottom: 10px;
}
.question.type-dual-checkbox .answers {
	background-color: var(--light-background);
	flex-grow: 1;
	display: flex;
	justify-content: end;
}
.question.type-dual-checkbox .answers label {
	padding: 15px;
	height: 100%;
}
.question .answer.asbrt-inline-radio .radio-choices {
	display: flex;
	gap: 40px;
	align-items: start;
}
/* Test-specific > Beïnvloedingsstijlen */
.test.type-bvs .bvs-gender {
    padding: 30px;
    background-color: var(--light-background);
	margin-bottom: 30px;
	display: flex;
    gap: 30px;
}
.test.type-bvs .bvs-gender label {
	display: flex;
    gap: 5px;
	align-items: center;
}
.test.type-bvs .bvs-gender label, 
.test.type-bvs .bvs-gender span {
	font-family: var(--alt-font);
	font-size: 18px;
	color: var(--text-black);
}	
.test.type-bvs .bvs-gender .answers {
	display: flex;
	gap: 30px;
}
.test.type-bvs .bvs-gender input[type="radio"] {
	background-color: #FFF;
}
.test.type-bvs .bvs-subheader {
	background-color: var(--asbr-blue);
	color: var(--white);
	padding: 10px 15px;
	margin-bottom: 15px;
}
.test.type-bvs .bvs-subheader h2 {
	color: var(--white);
	font-family: var(--alt-font);
	font-size: 24px;
	font-weight: 500;
	line-height: normal;
	margin: 0;
}
.test.type-bvs .question-bvs-header {
	position: sticky;
    top: -60px;
    z-index: 2;
	display: flex;
	justify-content: end;
}
.test.type-bvs .question-bvs-header>div {
	background: linear-gradient(to bottom, white 80%, rgba(255, 255, 255, 0) 100%);
}
.test.type-bvs .question-bvs-header .range-labels {
	display: flex;
    justify-content: space-between;
    gap: 30px;
	padding: 0 15px;
    background: #FFF;
}
.test.type-bvs .question-bvs-header .answers {
	display: flex;
    gap: 44px;
    justify-content: end;
    padding: 0 15px;
}
.test.type-bvs .question-bvs-header .answers .answer {
	width: 18px;
	text-align: center;
}
.test.type-bvs .question-bvs-header .answers label {
	font-weight: 700;
}
.test.type-bvs .question {
	display: flex;
	justify-content: space-between;
	padding-bottom: 15px;
}
.test.type-bvs .question .question-header {
	background-color: transparent;
    color: initial;
	padding: 0 15px;
}
.test.type-bvs .question .question-header .question-header-content {
	font-weight: 700;
}
.test.type-bvs .question .answers {
	padding: 12.5px;
	gap: 44px;
}

/* Test-specific > Persoonlijkheidsvragenlijst */
.pvl-intro-example {
	margin-top: -1em;
}
.question-pvl-header {
	width: 100%;
	display: flex;
	justify-content: end;
}
.question-pvl-header .answers {
	display: flex;
	gap: 50px;
    padding: 0px 15px;
}
.question-pvl-header .answers label {
	color: #3E3E3E;
	font-size: 18px;
	font-weight: 700;
}
.test.type-pvl .pvl-presocket {
	display: flex;
	justify-content: center;
	margin-bottom: 30px;
}
.test.type-pvl .pvl-presocket.hidden {
	display: none;
}
	
.test.type-pvl .question,
.question-pvl-dummy .question {
	display: flex;
	justify-content: space-between;
	border-top: 1px solid #D9D9D9;
}
.test.type-pvl .question .question-header,
.question-pvl-dummy .question .question-header {
	background-color: transparent;
    color: initial;
}
.test.type-pvl .question .answers,
.question-pvl-dummy .question .answers{
	padding: 15px;
}

/* Assessments */
.assessment-evaluation-questions {
	
}
.assessment-evaluation-questions .assessment-evaluation-question {
	padding: 15px 0;
}
.assessment-evaluation-questions .assessment-evaluation-question p {
	margin-bottom: 10px;
	color: #0E0E0E;
	font-family: "Fira Sans";
	font-size: 18px;
	font-weight: 500;
	line-height: normal;
}
.assessment-evaluation-questions .assessment-evaluation-question textarea {
	border-radius: 2px;
	border: 1px solid #D6D6D6;
	background-color: #F5F5F5;
	padding: 20px;
	color: #3E3E3E;
	font-family: Nunito;
	font-size: 18px;
	font-weight: 500;
	line-height: normal;
	resize: none;
	height: calc(5ch + 80px);
	width: 100%;
}
.assessment-evaluation-questions .assessment-evaluation-question textarea:focus {
	outline: 2px solid var(--asbr-orange);
	border-color: #F5F5F5;
}
.single-assessment .assessment-timer-container {
	position: fixed;
	bottom: 120px;
	right: 60px;
	z-index: 99;
	width: 148px;
	height: 148px;
	border-radius: 74px;
	background-color: #FFF;
	box-shadow: 0px 50.351px 106.041px 0px rgba(0, 0, 0, 0.06), 0px 11.246px 23.686px 0px rgba(0, 0, 0, 0.04), 0px 3.348px 7.052px 0px rgba(0, 0, 0, 0.02);
}
.single-assessment .assessment-timer-container .assessment-timer {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
}
.single-assessment .assessment-timer-container .remaining-time {
	color: #232323;
	text-align: center;
	font-family: "Fira Sans";
	font-size: 28px;
	font-weight: 500;
	line-height: normal;
	display: block;
	width: 100px;
	height: 30px;
	position: absolute;
	top: 59px;
	left: 24px;
	z-index: 100;
	user-select: none;
	cursor: busy;
}

.single-assessment .assessment-timer-container .circular-progress {
	--size: 128px;
	--half-size: calc(var(--size) / 2);
	--stroke-width: 10px;
	--radius: calc((var(--size) - var(--stroke-width)) / 2);
	--circumference: calc(var(--radius) * pi * 2);
	--dash: calc((var(--progress) * var(--circumference)) / 100);
}

.single-assessment .assessment-timer-container .circular-progress circle {
	cx: var(--half-size);
	cy: var(--half-size);
	r: var(--radius);
	stroke-width: var(--stroke-width);
	fill: none;
	stroke-linecap: round;
}

.single-assessment .assessment-timer-container .circular-progress circle.bg {
	stroke: #ddd;
}

.single-assessment .assessment-timer-container .circular-progress circle.fg {
	transform: rotate(-90deg);
	transform-origin: var(--half-size) var(--half-size);
	stroke-dasharray: var(--dash) calc(var(--circumference) - var(--dash));
	transition: stroke-dasharray 0.3s linear 0s;
	stroke: #EE7402;
}

@property --progress {
	syntax: "<number>";
	inherits: false;
	initial-value: 100;
}
.assessment-grace-timer {
	display: none;
	position: fixed !important;
	bottom: 50px;
	right: 42px;
	z-index: 101;
	width: 200px;
	height: 60px;
	padding: 8px 20px;
	text-align: center;
	line-height: normal;
	border-radius: 86.969px;
	background: #FFF;
	box-shadow: 0px 50.351px 106.041px 0px rgba(0, 0, 0, 0.06), 0px 11.246px 23.686px 0px rgba(0, 0, 0, 0.04), 0px 3.348px 7.052px 0px rgba(0, 0, 0, 0.02);
}
.assessment-grace-timer .assessment-grace-time-added {
	color: #232323;
	font-family: "Fira Sans";
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
.assessment-grace-timer .assessment-grace-time-added > span {
	color: #5E9A73;
	font-weight: 600;
	line-height: normal;
}

@media screen and (min-width: 992px) {
    .navigatie.normal-menu .menu-hoofdmenu-container {
      height: auto!important;
    }
    .navigatie.normal-menu div#mobile-menu {
      display: none;
    }
  }
@media screen and (max-width: 991px) {
    .fixed-nav-spacer {
        height: 70px;
    }
    .mobile-menu-toggle-position {
        display: block;
    }
    .hamburger {
        position: absolute;
        display: inline-block;
    }

    .mobile-menu ul#primary-menu {
        float: none;
    }
    body .mobile-menu-toggle-position {
        z-index: 100;
    }
    body .mobile-menu .menu li{
        width: 100%;
        text-align: center;
        vertical-align: middle;
    }
    body .mobile-menu .menu li a {
        padding: 20px!important;
    }
    body .menu-hoofdmenu-container li.btn a {
        padding: 10px 15px!important;
        margin-bottom: 25px;
        margin-left: -30px;
    }
    .menu-hoofdmenu-container-not-mobile {
        display: none;
    }
    ul#mobile-menu {
        padding: 0;
    }
    ul#mobile-menu form.search-form {
        display: inline-block;
    } 
    /* einde mobile menu */
    .topbar {
        display: none;
    }
	/*
    #logo {
        margin-top: 0;
        height: 70px;
        max-width: calc(100% - 50px);
    }
	
    div#logo a {
        line-height: 70px;
    }
    #logo img {
        max-height: 100%;
    }
*/	
	.navigatie div#logo .asbrt-tagline{
		display: none;
	}
	.login #nav,
	body.login-action-login div#login #loginform {
		margin: 0 10px;
	}
	.login .message, .login .notice, .login .success {
		margin: 0 10px 20px 10px;
	}
	.candidate-test-items .candidate-test-item a {
		justify-content: space-between;
		width: 100%;
	}
	.candidate-test-items .candidate-test-item.tests-pending {
		background-image: unset;
	}
	
	/* common responsive */
	.button.button-arrow.button-arrow-forward {
		padding-right: 35px;
		padding-left: 15px;
	}
	.button.button-arrow.button-arrow-forward::before {
		right: 15px;
	}
	.single-test .asbr-test-socket {
		padding: 5px 40px;
	}
	/* tests responsive */
	.answer.asbrt-number input {
		margin-right: 0;
	}
	.question.type-scoring-agree-disagree .answers { 
		gap: 10px;
		justify-content: space-between;
	}
	
	.question .answer.asbrt-inline-radio .radio-choices {
		gap: 5px;
		justify-content: space-between;
	}
	.question .answer.wide.asbrt-number-choice {
		margin-bottom: 10px;
	}
	.question.type-scoring-agree-disagree,
	.question .answers {
		margin-bottom: 10px;	
	}
	.test.type-bvs .question-bvs-header .answers,
	.test.type-bvs .question .answers {
		gap: 10px;
	}
	
	.question-pvl-header .answers {
		gap: 10px;
	}
}
@media screen and (max-width: 768px) {
	.question .answer.asbrt-inline-radio .radio-choices {
		gap: 15px;
		justify-content: start;
	}
	.single-test .asbr-test-socket {
		left: 256px;
	}
	.candidate-test-items .candidate-test-item a {
		flex-direction: column;
	}
}
@media screen and (max-width: 576px) {
	.logged-in #menu-root-column,
	.logged-in .nav-sidebar	{
		min-width: unset;
	}
	.logged-in #asbr-main-col {
		max-width: unset;
	}
	#primary-menu ul li.menu-item>a{
		color: transparent;
		min-height: 40px;
		font-size: 0;
		background-position: 40px center;
	}
	.logged-in #menu-root-column.expanded #primary-menu ul li.menu-item>a{
		color: #FFF;
		font-size: initial;
		background-position: 25px center;
	}
	.logged-in #menu-root-column.expanded {
		width: 100%;
		position: fixed;
		z-index: 10;
	}
	.nav-sidebar .expander {
		width: 100%;
		display: flex;
		justify-content: center;
	}
	.nav-sidebar .expander > span {
		font-size: 36px;
		color: #FFF;
		cursor: pointer;
	}
	.nav-sidebar .expander .contract,
	.logged-in #menu-root-column.expanded .nav-sidebar .expander .expand	{
		display: none;
	}
	.nav-sidebar .expander .expand,
	.logged-in #menu-root-column.expanded .nav-sidebar .expander .contract{
		display: block;
	}
}
.clipboard-confirmation {
	position: fixed !important;
	background: #FFF;
	box-shadow: 0px 66px 139px 0px rgba(0, 0, 0, 0.06), 0px 14.742px 31.047px 0px rgba(0, 0, 0, 0.04), 0px 4.389px 9.244px 0px rgba(0, 0, 0, 0.02);
    top: 122px;
    left: calc(50% - 61px);
    width: 400px;
    height: 50px;
	display: none;
    justify-content: center;
    align-items: center;
    border: 2px solid;
    border-radius: 5px;
}
.clipboard-confirmation.success {
	border-color: #2B7E48;
    color: #2B7E48;
    background-color: #D9E8DE;	
}
.clockblock {
	position: absolute !important;
    height: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
    display: flex; 
    justify-content: center;
    align-items: center;
	background: rgba(255, 255, 255, 0.5);
	z-index: 10;
    backdrop-filter: blur(5px);
	user-select: none;
	cursor: progress;
}
.clockblock.loading {
	background-image: url(/wp-includes/images/wpspin-2x.gif);
    background-repeat: no-repeat;
    background-position: center;
}
.clockblock .countdown {
	display: inline-flex;
	gap: 20px;
	font-size: 32px;
	text-shadow: 1px 1px white;
}
.clockblock.loading .countdown{
	display: none;
}
.clockblock .countdown .blink {
	font-size: 32px;
}
.clockblock .countdown .blink.off {
	opacity: 0;
}