/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
body.company-menu-html-scroll-off {
	height: 100vh !important;
    overflow: hidden !important;
}
#company-menu-popup .v--modal-overlay {
	z-index: 99999 !important;
	background-color: transparent !important;
}
#company-menu-popup .v--modal-box {
}
#company-menu-popup input[type=text] {
	border-radius: 0 !important; 
	font-size: 14px !important;
	background-color: transparent;
	border-style: none;

	flex: 1 1 auto;
	line-height: 20px;
	padding: 8px 0;
	max-width: 100%;
	min-width: 0;
	width: 100%;

	max-height: 32px;
	color: rgba(0,0,0,.87);

	margin-bottom: 0px;
}
.company-menu-input__slot {
	align-items: center;
	color: inherit;
	display: flex;
	margin: 15px auto;
	min-height: inherit;
	position: relative;
	transition: .3s cubic-bezier(.25,.8,.5,1);
	width: 100%;

	cursor: text;
}
.company-menu-input__slot > span::before {
	bottom: -1px;
	content: "";
	left: 0;
	position: absolute;
	transition: .3s cubic-bezier(.25,.8,.5,1);
	width: 100%;
	border-color: inherit;
	border-style: solid;
	border-width: thin 0 0;
	border-color: rgba(0,0,0,.42);
}
.company-menu-input__slot > span::after {
	bottom: -1px;
	content: "";
	left: 0;
	position: absolute;
	transition: .3s cubic-bezier(.25,.8,.5,1);
	width: 100%;
	background-color: #dd3333;
	border-color: #dd3333;
	border-style: solid;
	border-width: thin 0;
	transform: scaleX(0);
}
#company-menu-popup input[type=text]:focus ~ span::after {
	transform: scaleX(1);
}

#company-menu-popup ul {
	list-style: none !important;
	margin: 0px !important;
	padding: 0px !important;
}
#company-menu-popup ul li a {
	display: block;
	padding: 12px 15px;
	font-size: 14px !important;
	color: rgba(0,0,0,.87) !important;
	position: relative;
	text-decoration: none;
	cursor: pointer;
	margin-left: -15px;
	margin-right: -15px;
}
#company-menu-popup ul li a::before {
	background-color: rgba(0, 0, 0, 0.87);
	bottom: 0;
	content: "";
	left: 0;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	right: 0;
	top: 0;
	transition: .3s cubic-bezier(.25,.8,.5,1);
	opacity: 0;
}
#company-menu-popup ul li a:hover::before {
	opacity: .04;
}
#company-menu-popup ul li a:focus::before {
	opacity: .12;
}
.__rail-is-vertical {
	background-color: #d7d7d7 !important;
	border-radius: 0px !important;
	width: 10px !important;
	right: 0px !important;
}
.__bar-is-vertical {
	border-radius: 0px !important;
}