.employer-panel-wrap .nav-panel-vertical {
	display: flex;
	position: fixed;
	flex-direction: column;
	justify-content: space-between;
	height: 100vh;
	width: 80px;
	margin-top: -100px;
	padding-top: 100px;
	flex-grow: 0;
	flex-shrink: 0;
	background-color: var(--color-white);
	z-index: 1;
}

.employer-panel-wrap .nav-panel-vertical .menu {
	padding-left: 0;
	/*margin-top: 54px;*/
}

.employer-panel-wrap .nav-panel-vertical .menu .menu-item {
	display: flex;
	position: relative;
	flex-direction: column;
	align-items: center;
	justify-content: space-evenly;
	border: none;
	height: 57px;
	opacity: 0.5;
	transition: all 0.2s ease-in-out;
}

.employer-panel-wrap .nav-panel-vertical .menu .menu-item:hover {
	opacity: 1;
	background: rgba(245, 245, 245, 0.8);
}

.employer-panel-wrap .nav-panel-vertical .menu .menu-item:hover a {
	color: var(--color-text);
}

.employer-panel-wrap .nav-panel-vertical .menu .menu-item a::before {
	display: block;
	content: '';
	width: 26px;
	height: 26px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}

.employer-panel-wrap .menu .menu-item.icon-house a::before {
	background-image: url('../../../images/icon-house.svg');
}

.employer-panel-wrap .menu .menu-item.icon-folder a::before {
	background-image: url('../../../images/icon-list.svg');
}

.employer-panel-wrap .menu .menu-item.icon-clipboard a::before {
	background-image: url('../../../images/icon-clipboard-alt.svg');
}

.employer-panel-wrap .menu .menu-item.icon-settings a::before {
	background-image: url('../../../images/icon-settings.svg');
}

.employer-panel-wrap .menu .menu-item.icon-exit a::before {
	background-image: url('../../../images/icon-exit.svg');
}

.employer-panel-wrap .nav-panel-vertical .menu .menu-item a {
	position: absolute;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100%;
	width: 100%;
	left: 0;
	top: 0;
	font-size: 8px;
	font-weight: 500;
	color: #ababab;
	line-height: 1.2;
	row-gap: 4px;
	transition: all 0.2s ease-in-out;
}

/*.employer-panel-wrap .nav-panel-vertical .menu .menu-item a > span {*/
/*	position: absolute;*/
/*	bottom: 10px;*/
/*	width: 100%;*/
/*	text-align: center;*/
/*	left: 0;*/
/*}*/

/* active nav item */
.employer-panel-wrap .nav-panel-vertical .menu .menu-item.current-menu-item {
	opacity: 1;
	background-color: #EBEBEB;
	border-right: 4px solid #3944C4;
}

.employer-panel-wrap .nav-panel-vertical .menu .menu-item.current-menu-item a {
	color: #3944C4;
}

.employer-panel-wrap .nav-panel-vertical .menu .menu-item.current-menu-item.icon-house a::before {
	background-image: url( '../../../images/icon-house-active.svg');
}

.employer-panel-wrap .nav-panel-vertical .menu .menu-item.current-menu-item.icon-folder a::before {
	background-image: url( '../../../images/icon-list-blue.svg');
}

.employer-panel-wrap .nav-panel-vertical .menu .menu-item.current-menu-item.icon-clipboard a::before {
	background-image: url( '../../../images/icon-clipboard-alt-blue.svg');
}

.employer-panel-wrap .nav-panel-vertical .menu .menu-item.current-menu-item.icon-settings a::before {
	background-image: url( '../../../images/icon-settings-active.svg');
}

.employer-panel-wrap .nav-panel-vertical .menu .menu-item.current-menu-item.icon-exit a::before {
	background-image: url( '../../../images/icon-exit-active.svg');
}

.employer-panel-wrap .nav-panel-vertical .control-menu-wrap {
	margin-top: 20px;
}

.employer-panel-wrap .nav-panel-vertical .control-menu-wrap .menu {
	margin-top: 25px;
	border-top: 1px solid #DFDFDF;
}

/* ---------- Toggl btn ---------- */
/* TODO this needs to be refactored and possibly made into a reusable component */
.company-lang-wrap {
	text-align: center;
	margin-bottom: 15px;
}

.toggl-btn {
	display: inline-block;
	margin: 0 auto;
	position: relative;
	--btn-lng-w: 55px;
	--btn-lng-h: 26px;
	color: gray;
}

.toggl-btn.used {
	opacity: 0.5;
}

.toggl-btn-bgr {
	display: block;
	height: var( --btn-lng-h );
	width: var( --btn-lng-w );
	border-radius: calc( var( --btn-lng-h ) / 2 );
	background-color: transparent;
	border: 1px solid #BFBFBF;
	color: #BFBFBF;
}

.toggl-btn-option {
	width: calc( 1.1 * var( --btn-lng-h ) );
	height: var( --btn-lng-h );
	line-height: var( --btn-lng-h );
	font-size: calc( 0.40 * var( --btn-lng-h ) );
	font-weight: 600;
	border-radius: calc( var( --btn-lng-h ) / 2 );
	position: absolute;
	top: 0;
	text-align: center;
	color: #BFBFBF;
}

div.toggl-btn-option:first-of-type {
	left: 0;
}

div.toggl-btn-option:last-of-type {
	right: 0;
}

.toggl-btn-option.active {
	background-color: #3944C4;
	color: var(--color-white);
}
/* END toggle button */


/* Small */
@media screen and (max-width: 950px) {
	.employer-panel-wrap .nav-panel-vertical {
		position: fixed;
		width: 200px;
		height: 100%;
		top: 0;
		right: 0;
		z-index: 9;
		opacity: 0;
		transform: translateX(100%);
		transition: all 0.2s ease-in-out;
	}

	.employer-panel-wrap .nav-panel-vertical.open {
		opacity: 1;
		transform: translateX(0);
	}

	.employer-panel-wrap.open::before {
		content: '';
		display: block;
		position: fixed;
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
		background-color: black;
		opacity: 0.7;
		z-index: 8;
	}

	.employer-panel-wrap .nav-panel-vertical .employer-nav-menu-wrap .company-info-wrap .panel-head {
		padding-left: 27px;
		background-color: var(--color-white);
	}

	.employer-panel-wrap .nav-panel-vertical .employer-nav-menu-wrap .company-info-wrap .employer-branding {
		height: 75px;
		max-width: 60px;
		padding-top: 18px;
		padding-bottom: 18px;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}

	.employer-panel-wrap .nav-panel-vertical .employer-nav-menu-wrap .company-info-wrap .employer-logo {
		display: block;
		max-width: 60px;
		max-height: 100%;
	}

	.employer-panel-wrap .nav-panel-vertical .employer-nav-menu-wrap .company-info-wrap .employer-name {
		display: block;
		font-size: 10px;
		text-align: center;
	}

	.employer-panel-wrap .nav-panel-vertical .employer-nav-menu-wrap .company-info-wrap .credits-wrap {
		position: relative;
		padding-top: 15px;
		padding-left: 27px;
		display: flex;
		column-gap: 5px;
	}

	.employer-panel-wrap .nav-panel-vertical .employer-nav-menu-wrap .company-info-wrap .credits-wrap::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		height: 1px;
		width: 100%;
		background-color: #ADADAD;
	}

	.employer-panel-wrap .nav-panel-vertical .employer-nav-menu-wrap .company-info-wrap .credits-wrap .credit-count {
		font-size: 22px;
		font-weight: 900;
		color: var(--color-primary);
		line-height: 22px;
	}

	.employer-panel-wrap .nav-panel-vertical .employer-nav-menu-wrap .company-info-wrap .credits-wrap .credit-count.no-credits {
		color: #C53A1F;
	}

	.employer-panel-wrap .nav-panel-vertical .employer-nav-menu-wrap .company-info-wrap .credits-wrap .label {
		display: block;
		font-size: 8px;
		text-transform: uppercase;
		font-weight: bold;
		width: 80px;
		line-height: 10px;
	}

	.employer-panel-wrap .nav-panel-vertical .employer-menu-wrap .employer-nav-menu {
		margin-top: 40px;
	}

	.employer-panel-wrap .nav-panel-vertical .employer-menu-wrap .menu .menu-item {
		height: 50px;
	}

	.employer-panel-wrap .nav-panel-vertical .employer-menu-wrap .menu .menu-item a {
		flex-direction: row;
		justify-content: flex-start;
		column-gap: 15px;
		padding: 0 27px;
	}

	.employer-panel-wrap .nav-panel-vertical .employer-menu-wrap .menu .menu-item a > span {
		margin-top: 6px;
	}
}