
:root {
    --primary-color: rgb(37,78,118);
    --secondary-color: rgb(20,42,60);
    --accent-color: rgb(20,255,20);
    --smoke-height: 40%;
    --smoke-opacity: 1;
    --flash-radius: 140px; /* flashlight radius when enabled */
    --flash-falloff: 40px; /* soft edge */
    --dark-alpha: 0.85; /* darkness level */
    --handle-offset: 22px; /* distance of handle below light center */
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

textarea{
	outline:none !important;
}

p{margin:0;}

html{
    font-family: 'Montserrat', sans-serif;
    -webkit-text-size-adjust:100%;
    -ms-text-size-adjust:100%
    forced-color-adjust: none;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

*, *:before, *:after {
  box-sizing: inherit;
}


body{
	forced-color-adjust: none;
	FONT-SIZE: 12pt;
	OVERFLOW: auto;
	ZOOM: 1;
	MARGIN: 0px;
	BACKGROUND-COLOR: transparent;
	width:1920px;
	position:relative;
	user-select:none;
	font-family:'Arial',sans-serif;
}
article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{
    display:block
}
audio,canvas,progress,video{
    display:inline-block;
    vertical-align:baseline
}
audio:not([controls]){
    display:none;
    height:0
}
[hidden],template{
    display:none
}
a{
    background-color:transparent;
    text-decoration: none;
}
a:active,a:hover{
    outline:0
}

a{
    font-weight:700;
    color:rgb(38,56,100);
    text-decoration:underline;
    -webkit-transition:all ease 0.5s;
    -moz-transition:all ease 0.5s;
    -ms-transition:all ease 0.5s;
    -o-transition:all ease 0.5s;
    transition:all ease 0.5s;
}

a:hover{
    color:rgb(141,221,255);
}
abbr[title]{
    border-bottom:1px dotted
}
b,strong{
    font-weight:700
}
dfn{
    font-style:italic
}
h1{
    margin:.67em 0;
    font-size:2em
}
mark{
    color:#000;
    background:#ff0
}
small{
    font-size:80%
}
sub,sup{
    position:relative;
    font-size:75%;
    line-height:0;
    vertical-align:baseline
}
sup{
    top:-.5em
}
sub{
    bottom:-.25em
}
img{
    border:0;
    max-width: 100%;
}
svg:not(:root){
    overflow:hidden
}
figure{
    margin:1em 40px
}
hr{
    height:0;
    -webkit-box-sizing:content-box;
    -moz-box-sizing:content-box;
    box-sizing:content-box
}
pre{
    overflow:auto
}
code,kbd,pre,samp{
    font-family:monospace,monospace;
    font-size:1em
}
button,input,optgroup,select,textarea{
    margin:0;
    font:inherit;
    color:inherit
}
button{
    overflow:visible
}
button,select{
    text-transform:none
}

select{
    border:none
}
button,html input[type=button],input[type=reset],input[type=submit]{
    -webkit-appearance:button;
    cursor:pointer
}
button[disabled],html input[disabled]{
    cursor:default
}
button::-moz-focus-inner,input::-moz-focus-inner{
    padding:0;
    border:0
}
input{
    line-height:normal;
}
input[type=checkbox],input[type=radio]{
    -webkit-box-sizing:border-box;
    -moz-box-sizing:border-box;
    box-sizing:border-box;
    padding:0
}
input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{
    height:auto
}
input[type=search]{
    -webkit-box-sizing:content-box;
    -moz-box-sizing:content-box;
    box-sizing:content-box;
    -webkit-appearance:textfield
}
input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{
    -webkit-appearance:none
}
fieldset{
    padding:.35em .625em .75em;
    margin:0 2px;
    border:1px solid silver
}
legend{
    padding:0;
    border:0
}
textarea{
    overflow:auto
}
optgroup{
    font-weight:700
}
table{
    border-spacing:0;
    border-collapse:collapse
}
td,th{
    padding:0
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.inputWrap{
    width:500px;
    margin:0 auto;
    max-width:90%;
    text-align:left;
    margin-bottom: 20px;
}

.inputWrapper{
    position:relative;
    border-radius:5px;
    overflow:hidden;
}

.inputWrap .title{
    font-weight:bold;
    font-size:14px;
    color:rgb(7,39,46);
    margin-bottom:5px;
}

.inputWrap input[type="text"], .inputWrap input[type="password"]{
    padding:10px 10px;
    font-size:14px;
    color:rgb(100,100,100);
    line-height:20px;
    outline:none;
    width:100%;
    box-shadow:1px 1px 4px rgba(7,39,46,0);
    border:1px solid rgb(0,0,0);
    -webkit-transition:all ease 0.5s;
    -moz-transition:all ease 0.5s;
    -ms-transition:all ease 0.5s;
    -o-transition:all ease 0.5s;
    transition:all ease 0.5s;
    box-sizing: border-box;
    border-radius:5px;
}

.inputWrap input[type="text"]:focus{
    box-shadow:1px 1px 4px rgba(7,39,46,0.5);
    color:rgb(37,78,118);
    border:1px solid rgb(37,78,118);

}

.inputWrap input[type="password"]:focus{
    box-shadow:1px 1px 4px rgba(7,39,46,0.5);
    color:rgb(7,39,46);
    border:1px solid rgb(7,39,46);
}

.inputWrap textarea{
    padding:5px;
    font-size:14px;
    color:rgb(7,39,46);
    width:100%;
    outline:none;
    box-shadow:1px 1px 4px rgba(37,78,118,0);
    border:1px solid rgb(37,78,118);
    -webkit-transition:all ease 0.5s;
    -moz-transition:all ease 0.5s;
    -ms-transition:all ease 0.5s;
    -o-transition:all ease 0.5s;
    transition:all ease 0.5s;
    height:150px;
    resize:none;
}

.inputWrap textarea:focus{
    box-shadow:1px 1px 4px rgba(7,39,46,0.5);
}

.inputWrapper .show{
    position:absolute;
    top:1px;
    right:1px;
    font-size:12px;
    padding:0 5px;
    line-height:40px;
    background-color:rgba(7,39,46,1);
    cursor:pointer;
    border-left:1px solid rgb(100,100,100);
    width:100px;
    text-align:center;
    color:rgb(255,255,255);
}

.loginWrap .loginBackground{
	position:absolute;
	top:0;
	left:0;
	bottom:0;
	right:0;
	
}

.loginWrap .inputWrap .button{
    margin:0 auto;
    font-size:22px;
    text-align:center;
    width:100%;
    padding:10px;
}

.loginWrap{
    position:relative;
    width:100%;
    height:100vh;
    
    font-family: Arial;
}

.loginWrap .absolute{
    position:absolute;
    top:50%;
    left:50%;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    text-align:center;
    width:600px;
    max-width: 90%;
    padding:20px;
    background-color:rgba(255,255,255,0.8);
    border-radius:10px;

}

.login-btn {
    background: linear-gradient(
        180deg,
        rgb(37, 78, 118) 0%,
        rgb(20, 42, 64) 100%
    );
    color: #fff;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}

.login-btn:hover {
    background: linear-gradient(
        180deg,
        rgb(47, 98, 148),
        rgb(20, 42, 64)
    );
    transform: translateY(-2px);
}

.login-btn:active {
    transform: translateY(0);
    background: rgb(20, 42, 64);
}

.transmitter{
	white-space: nowrap;
}

.transmitter .indicatorValue{padding:0 2px}

#scale-wrap{
	transform-origin:top left;
	overflow:hidden;
}


.screenWrap{
	position:relative;
	top:0;
	left:0;
}


.faceplatesWrap{
	position:absolute;
	width:0px;
	height:0px;
	top:0;
	left:0;
}

/*.faceplateWrap{
	position:absolute;
	overflow:hidden;
	z-index:9000;
	border:1px solid rgb(37,78,118);
	box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2), 0 1px 3px rgba(0, 0, 0, 0.08);

}

.faceplateWrap .faceplateHeader{
	background-color:rgb(37,78,118);
	color:rgb(255,255,255);
	padding:5px;
	font-size:0;
	cursor:grab;
}

.faceplateWrap .faceplateHeader:active{
	cursor:grabbing;
}

.faceplateWrap .faceplateHeader .title{
	display:inline-block;
	vertical-align:top;
	width:calc(100% - 12px);
	font-size:12px;
	font-family: "Verdana";
}

.faceplateWrap .faceplateHeader .close{
	display:inline-block;
	vertical-align:top;
	width:12px;
	cursor: pointer;
}

.faceplateWrap .faceplateHeader .close img{
	display:block;
	max-width:100%;
}*/

.indicatorValue input{
	border:none;
	text-align: inherit;
	outline:none;
	width:100%;
	padding:0;
}

#set-value{
	width:210px;
	height:112px;
	position:absolute;
	top:0;
	right:0;
	border:1px solid rgb(37,78,118);
	box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2), 0 1px 3px rgba(0, 0, 0, 0.08);
	font-size:14px;
	z-index:10000;
	background-color:rgb(255,255,255);
}

#set-value .header{
	padding:4px;
	color:rgb(255,255,255);
	background: rgb(37,78,118);
    background: linear-gradient(0deg, rgb(20,42,64), rgb(37,78,118));
	font-size:12px;
	position:relative;
	cursor:grab;
}

#set-value .header:active{
	cursor:grabbing;
}

#set-value .header .close{
	position:absolute;
	top:4px;
	right:4px;
	width:14px;
	cursor:pointer;
}

#set-value .header .close img{
	display:block;
}

#set-value .inputWrap{
	width:90%;
	margin:0 auto;
	margin-top:10px;
	font-size:0;
}

#set-value .inputWrap input{
	outline:none !important;
	padding:3px;
	max-width:100%;
}

#set-value .inputWrap .inline{
	display:inline-block;
	vertical-align: top;
	width:50%;
	font-size:11px;
}

#set-value .inputWrap .inline .title{
	font-weight:600;
	font-size:11px;
	color:rgb(100,100,100);
}

#set-value .inputWrap .inline .inputWrapper{
	width:95%;
	margin-left:auto;
	margin-right:10px;
}

#set-value .inputWrap .transmitter{
	padding:3px;
	border:1px solid rgb(118,118,118);
	background-color:rgb(230,230,230);
}

#set-value .buttonsWrap{
	width:90%;
	margin:0 auto;
	font-size:0;
	margin-top:10px;
}

#set-value .buttonsWrap .inline{
	display:inline-block;
	vertical-align: middle;
	font-size:14px;
	width:50%;
}

#set-value .buttonsWrap .inline .button{
	width:80%;
	margin:0 auto;
	border:2px outset;
	background-color:rgb(240,240,240);
	text-align:center;
	padding:5px;
	cusror:pointer;
}

#set-value .buttonsWrap .inline .button:active{
	border:2px inset;
}

.softwareMenu{
	position:fixed;
	top:0;
	left:0;
	z-index:8000;
	right:0;
	background: rgb(37,78,118);
    background: linear-gradient(0deg, rgb(20,42,64), rgb(37,78,118));
	color:rgb(255,255,255);
	font-size:0;
	border-bottom:1px solid rgb(100,100,100);
	padding-top:3px;
	/*box-shadow:0px 2px 2px rgba(0,0,0,0.4);*/
}

.softwareMenu .title{
	display:inline-block;
	vertical-align: middle;
	font-size:14px;
	padding-right:10px;
	margin-right:10px;
	border-right:2px solid rgb(255,255,255);
	padding-left:3px;
	padding-bottom:3px;
}

.softwareMenu .rest{
	display:inline-block;
	vertical-align: middle;
	font-size:10px;
	text-align:right;
	padding-bottom:3px;
}

.softwareMenu .title .titleDiv{
	font-weight:bold;
	display:inline-block;
	vertical-align: middle;
}

.softwareMenu .title .titleDiv span{
	font-weight:400;
	font-size:12px;
}

.softwareMenu .title .info{
	font-size:12px;
	font-weight:100;
	display:inline-block;
	vertical-align: middle;
}


.softwareMenu .rest .simState{
	display:inline-block;
	vertical-align: middle;
	width:100px;
	text-align:left;
}

.softwareMenu .rest .simState .icon{
	width:10px;
	height:10px;
	border:1px solid rgb(255,255,255);
	display:inline-block;
	vertical-align: middle;
	border-radius:10px;
}


.softwareMenu .rest .simState .text{
	display:inline-block;
	vertical-align: middle;
	padding-left:6px;
}

.softwareMenu .rest .controlButtons{
	display:inline-block;
	vertical-align: middle;
	padding:0 10px;
	margin-left:10px;
	border-left: 2px solid rgb(255, 255, 255);
	padding-right:0px;
}

.softwareMenu .rest .controlButtons .button{
	display:inline-block;
	vertical-align: middle;
	background-color:rgb(240,240,240);
	color:rgb(100,100,100);
	border:2px outset;
	border-radius:25px;
	cursor:pointer;
	text-align:center;
	overflow:hidden;
	margin-right:5px;
	position:relative;
}

.softwareMenu .rest .controlButtons .button:last-child{
	margin-right:0px;
}

.softwareMenu .rest .controlButtons .button img{
	width:20px;
	display:block;
}

.softwareMenu .rest .controlButtons .button .inActive{
	width:20px;
	display:block;
	position:absolute;
	top:0;
	left:0;
	opacity:0;
}

.softwareMenu .rest .controlButtons .button:active{
	border:2px inset;
}

.softwareMenu .rest .controlButtons .controlButtonInactive{
	border:2px solid rgb(200,200,200);
	pointer-events: none;
}

.softwareMenu .rest .controlButtons .controlButtonInactive img{
	opacity:0;
}
.softwareMenu .rest .controlButtons .controlButtonInactive .inActive{
	opacity:1;
}

.softwareMenu .rest .exerciseButtons{
	display:inline-block;
	vertical-align: middle;
	padding:0 10px;
	margin-left:10px;
	border-left:2px solid rgb(255,255,255);
}

.softwareMenu .rest .exerciseButtons .button{
	display:inline-block;
	vertical-align: middle;
	background-color:rgb(240,240,240);
	color:rgb(100,100,100);
	border:2px outset;
	border-radius:3px;
	padding:2px 5px;
	cursor:pointer;
	text-align:center;
	overflow:hidden;
	margin-right:5px;
	font-size:10px;
}

.softwareMenu .rest .exerciseButtons .button:active{
	border:2px inset;
}

.softwareMenu .rest .pageButtons{
	display:inline-block;
	vertical-align: middle;
	padding:0 10px;
	border-right:2px solid rgb(255,255,255);
	margin-right:10px;
	padding-left:0px;
}

.softwareMenu .rest .pageButtons .button{
	display:inline-block;
	vertical-align: middle;
	background-color:rgb(240,240,240);
	color:rgb(100,100,100);
	border:2px outset;
	border-radius:3px;
	cursor:pointer;
	width:20px;
	text-align:center;
	margin-right:4px;
	padding:0px;
}

.softwareMenu .rest .pageButtons .buttonActive{
	border:2px solid rgb(255,255,255);
	background:transparent;
}

.softwareMenu .rest .pageButtons .buttonActive img{
	filter: brightness(0) invert(1);
}

.softwareMenu .rest .pageButtons .button img{
	display:block;
}

.softwareMenu .rest .pageButtons .button:active{
	border:2px inset;
}

.softwareMenu .rest .profile{
	display:inline-block;
	vertical-align: middle;
	padding:0 10px;
	margin-left:10px;
	border-left:2px solid rgb(255,255,255);
	position:relative;
}

.softwareMenu .rest .profile .profileIcon{
	font-size:0;
}

.softwareMenu .rest .profile .profileIcon .nameWrap{
	display:inline-block;
	vertical-align: middle;
	padding:7px 0;
	padding-right:5px;
	font-size:12px;
}

.softwareMenu .rest .profile .profileIcon .iconWrap{
	display:inline-block;
	vertical-align: middle;
	width:25px;
}

.softwareMenu .rest .profile .profileDropdown{
	position: absolute;
	top: 28px;
	right: 0;
	min-width: 160px;
	background: #ffffff;
	border-radius: 10px;
	box-shadow: 0 12px 30px rgba(15, 23, 42, 0.2);
	padding: 6px 0;
	opacity: 0;
	transform: translateY(-4px);
	pointer-events: none;
	transition: opacity 0.16s ease, transform 0.16s ease;
	z-index: 11000;
}

.softwareMenu .rest .profile:hover .profileDropdown {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.softwareMenu .rest .profile .profileIcon .iconWrap img{
	display:block;
}

.softwareMenu .rest .profile .profileDropdown .item{
	padding:6px;
	transition:all ease 0.5s;
	background-color:rgba(37,78,118,0);

}

.softwareMenu .rest .profile .profileDropdown .item a{
	font-size:12px;
	font-weight:normal;
	text-decoration:none;
	cursor:pointer;
	color:rgb(37,78,118) !important;
}

.softwareMenu .rest .profile .profileDropdown .item:hover{
	background-color:rgba(37,78,118,0.2);
}

.softwareMenu .navigation{
	font-size:0px;
	border-top:2px solid rgb(255,255,255);
	color:rgb(50,50,50);
	background-color:rgb(255,255,255);
	padding-left:3px;
	padding-top:3px;
}

.softwareMenu .navigation .menuItem{
	padding:5px;
	cursor:pointer;
	font-size:11px;
	display:inline-block;
	vertical-align: bottom;
	border-radius:8px 8px 0px 0px;
	border:2px outset;
	 box-shadow: 0 0 0 1px rgb(100,100,100);
}

.softwareMenu .navigation .menuItemActive{
	background-color:rgb(37,78,118);
	color:rgb(255,255,255);
	border:2px solid rgb(37,78,118);
}

.softwareMenu .navigation .menuItem .subMenu{
	text-align:center;
}

.softwareMenu .navigation .menuItem .subMenu .name{
	display:inline-block;
	vertical-align: middle;
	margin-right:5px;
}

.softwareMenu .navigation .menuItem .subMenu .selectWrap{
	display:inline-block;
	vertical-align: middle;
}

.softwareMenu .navigation .menuItem .subMenu .selectWrap select{
	outline:none;
}

.softwareMenu .navigation .menuItemActive .subMenu .selectWrap select{
	background-color:rgba(37,78,118);
}



.clickableButton{
	border:2px outset;
	cursor: pointer;
}

.clickableButton:active{
	border:2px inset;
}

.filledRectangle{
	overflow:hidden;
}

.tooltip{
	position:absolute;
	background-color:yellow;
	color:rgb(100,100,100);
	text-align:left;
	width:100px;
	padding:5px;
	z-index:3000;
	font-size:10px;
	border-radius:3px;
	border:1px solid rgb(100,100,100);
	box-shadow:2px 2px 2px rgba(0,0,0,0.2);
}

.plotsWrap{
	position:absolute;
	top:0;
	left:0;
	z-index:2000;
}

.plot{
	padding-left:60px;
}

.plot .plotWrapper{
	padding-top:20px;
	margin-top:10px;
	height:690px;
	font-size:0;
	position:relative;
}

.plot .plotWrapper .plotScrollerWrap{
	width:300px;
	height:20px;
	margin-left:100px;
	margin-top:40px;
	overflow-x:scroll;
	border:1px solid rgb(0,0,0);
}

/* General scrollbar styling for Windows-like look */
.plot .plotWrapper .plotScrollerWrap {
    scrollbar-width: thin; /* For Firefox */
    scrollbar-color: #888 #f1f1f1; /* For Firefox */
    overflow-x: scroll; /* Ensures scrollbar is always visible */
}

/* Webkit scrollbars (Chrome, Safari, Edge) */
.plot .plotWrapper .plotScrollerWrap::-webkit-scrollbar {
    width: 12px; /* Set consistent width */
    background-color: #f1f1f1; /* Track background */
}

.plot .plotWrapper .plotScrollerWrap::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px; /* Rounded edges for Windows look */
}

.plot .plotWrapper .plotScrollerWrap::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 10px;
    border: 3px solid #f1f1f1; /* Padding around thumb */
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2); /* Adds depth */
    transition: background-color 0.2s ease; /* Smooth color change */
}

/* Hover effect on the scrollbar thumb */
.plot .plotWrapper .plotScrollerWrap::-webkit-scrollbar-thumb:hover {
    background-color: #555; /* Darker color on hover */
}

.plot .plotWrapper .plotScrollerWrap .plotScrollElem{
	position:relative;
	height:1px;
}

.plot .plotWrapper .yAxis{
	position:relative;
	border-right:1px solid rgb(0,0,0);
	height:100%;
	width:50px;
	font-size:12px;
	display:inline-block;
	vertical-align: middle;
}

.plot .plotWrapper .xAxis{
	position:absolute;
	bottom:0%;
	left:51px;
	border-top:1px solid rgb(0,0,0);
	width:1500px;
	height:50px;
	-webkit-transform:translateY(100%);
	-moz-transform:translateY(100%);
	-ms-transform:translateY(100%);
	-o-transform:translateY(100%);
	transform:translateY(100%);
}

.plot .plotWrapper .canvasWrap{
	position:relative;
	height:100%;
	display:inline-block;
	vertical-align: middle;
}

.plot .plotWrapper .maxElemWrap{
	position:absolute;
	top:0;
	left:-10px;
	z-index:600;
	-webkit-transform:translateY(50%);
	-moz-transform:translateY(50%);
	-ms-transform:translateY(50%);
	-o-transform:translateY(50%);
	transform:translateY(50%);
}

.plot .plotWrapper .periodWrap{
	position:absolute;
	top:-5px;
	left:500px;
	z-index:600;
	font-size:12px;
}

.plot .plotWrapper .historyButton{
	position:absolute;
	top:-5px;
	left:600px;
	z-index:600;
}

.plot .plotWrapper .historyButton button{
	display:none;
}

.plot .plotWrapper .historyActive button{
	display:block;
}

.plot .plotWrapper .maxElemWrap input{
	width:50px;
	background-color:rgb(255,255,255);
	text-align:right;
	font-size:12px;
}

.plot .plotWrapper .minElemWrap{
	position:absolute;
	bottom:0;
	left:-10px;
	z-index:600;
	-webkit-transform:translateY(50%);
	-moz-transform:translateY(50%);
	-ms-transform:translateY(50%);
	-o-transform:translateY(50%);
	transform:translateY(50%);
}

.plot .plotWrapper .minElemWrap input{
	width:50px;
	background-color:rgb(255,255,255);
	text-align:right;
	font-size:12px;
}

.plot .plotWrapper .yAxis .tickWrap{
	right:0;
	-webkit-transform: translateY(7px);
	-moz-transform: translateY(7px);
	-ms-transform: translateY(7px);
	-o-transform: translateY(7px);
	transform: translateY(7px);
}

.plot .plotWrapper .tickWrap{
	position:absolute;
}

.plot .plotWrapper .xAxis .tickWrap{
	left:0;
	text-align:center;

}

.plot .plotWrapper .tickWrap .tickNumber{
	position:relative;
	padding-right:12px;
}


.plot .plotWrapper .tickWrap .tickNumber .tick{
	width:10px;
	height:1px;
	background-color:rgb(0,0,0);
	position:absolute;
	right:0%;
	top:50%;
	-webkit-transform:translateY(-50%);
	-moz-transform:translateY(-50%);
	-ms-transform:translateY(-50%);
	-o-transform:translateY(-50%);
	transform:translateY(-50%);
}

.plot .plotWrapper .canvasWrap .gridWrap{
	position:absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	width:100%;
	height:100%;
	z-index:400;
}

.plot .plotWrapper .canvasWrap canvas{
	position:relative;
	z-index:300;
	background-color:rgb(0,0,0);
}


.plot .plotWrapper .canvasWrap .gridWrap .relative{
	position:relative;
	width:100%;
	height:100%;
}


.plot .plotWrapper .canvasWrap .gridWrap .relative{
	position:relative;
	width:100%;
	height:100%;
}

.plot .plotWrapper .canvasWrap .gridWrap .relative .gridLine{
	background-color:rgba(255,255,255,0.2);
	position:absolute;
}

.plot .plotWrapper .canvasWrap .gridWrap .relative .xGrid{
	width:1px;
	height:100%;
}

.plot .plotWrapper .canvasWrap .gridWrap .relative .yGrid{
	height:1px;
	width:100%;
}

.plot .plotWrapper .canvasWrap .scooterWrap{
	width:100%;
	height:100%;
	position:absolute;
	top:0;
	left:0;
}

.plot .plotWrapper .canvasWrap .scooterWrap .relative{
	width:100%;
	height:100%;
	position:relative;
	z-index:500;
}

.plot .plotWrapper .canvasWrap .scooterWrap .relative .scooter{
	position:absolute;
	height:100%;
	width:1px;
	background-color:rgb(255,255,255);
	left:50%;
	display:none;
}

.plot .plotWrapper .liveValue{
	font-size:20px;
	position:absolute;
	top:200px;
	right:800px;
}

.plot .plotWrapper .tagList{
	height:161px;
	width:812px;
	overflow-y:scroll;
	overflow-x:auto;
	margin-left: 50px;
}

.plot .plotWrapper .tagList .elem{
	font-size:0px;
	margin-top:-1px;
}

.plot .plotWrapper .tagList .elemActive{
	background-color:rgb(50, 151, 253);
}

.plot .plotWrapper .tagList .elem:first-child{
	margin-top:0px;
}


.plot .plotWrapper .tagList .elem .checkboxWrap, .plot .plotWrapper .tagList .elem .colorWrap, .plot .plotWrapper .tagList .elem .selectWrap,.plot .plotWrapper .tagList .elem .selectWrap2,.plot .plotWrapper .tagList .elem .textWrap{
	display:inline-block;
	vertical-align: middle;
	font-size:12px;
	border:1px solid rgb(0,0,0);
	margin-left:-1px;
	text-overflow: ellipsis;
	min-height: 19px;
	overflow: hidden;
	white-space: nowrap;
}

.plot .plotWrapper .tagList .elem .orderWrap{
	margin-left:0px;
}
.plot .plotWrapper .tagList .elem .checkboxWrap{
	
	text-align:center;
	width:21px;
}

.plot .plotWrapper .tagList .elem .checkboxWrap input{
	line-height:19px;
	outline:none;
	border:1px solid rgb(0,0,0);
	border-radius:0;
}

.plot .plotWrapper .tagList .elem .colorWrap{
	width:19px;
	height:19px;
}

.plot .plotWrapper .tagList .elem .colorWrap{
	width:19px;
	height:19px;
}

.plot .plotWrapper .tagList .elem .color{
	width:100%;
	height:100%;
}

.plot .plotWrapper .tagList .elem .selectWrap{
	width:100px;
	text-align:left;
}

.plot .plotWrapper .tagList .elem .selectWrap select{
	width:100%;
	outline:none;
	border:none;
	height:19px;
	background-color: transparent;
}

.plot .plotWrapper .tagList .elem .selectWrap2{
	width:40px;
	text-align:left;
}

.plot .plotWrapper .tagList .elem .selectWrap2 select{
	width:100%;
	outline:none;
	border:none;
	height:19px;
	background-color: transparent;
}

.plot .plotWrapper .tagList .elem .textWrap{
	height: 19px;
	padding: 0px 2px;
	text-align: left;

}

.plot .plotWrapper .tagList .elem .descriptionWrap{
	width:250px;
}

.plot .plotWrapper .tagList .elem .lowWrap, .plot .plotWrapper .tagList .elem .highWrap, .plot .plotWrapper .tagList .elem .currentWrap, .plot .plotWrapper .tagList .elem .scooterWrap {
	width:75px;
}

.plot .plotWrapper .tagList .elem .orderWrap{
	width:20px;
}















.plot .plotWrapper .tagHeader{
	margin-top:10px;
	margin-left: 50px;
}

.plot .plotWrapper .tagHeader .elem{
	font-size:0px;
	margin-top:-1px;
}

.plot .plotWrapper .tagHeader .elem:first-child{
	margin-top:0px;
}


.plot .plotWrapper .tagHeader .elem .checkboxWrap, .plot .plotWrapper .tagHeader .elem .colorWrap, .plot .plotWrapper .tagHeader .elem .selectWrap,.plot .plotWrapper .tagHeader .elem .selectWrap2,.plot .plotWrapper .tagHeader .elem .textWrap{
	display:inline-block;
	vertical-align: middle;
	font-size:12px;
	border:1px solid rgb(0,0,0);
	margin-left:-1px;
	text-overflow: ellipsis;
	min-height: 19px;
	overflow: hidden;
	white-space: nowrap;
}

.plot .plotWrapper .tagHeader .elem .orderWrap{
	margin-left:0px;
}
.plot .plotWrapper .tagHeader .elem .checkboxWrap{
	
	text-align:center;
	width:21px;
}

.plot .plotWrapper .tagHeader .elem .checkboxWrap input{
	line-height:19px;
	outline:none;
	border:1px solid rgb(0,0,0);
	border-radius:0;
}

.plot .plotWrapper .tagHeader .elem .colorWrap{
	width:19px;
	height:19px;
}

.plot .plotWrapper .tagHeader .elem .colorWrap{
	width:19px;
	height:19px;
}

.plot .plotWrapper .tagHeader .elem .color{
	width:100%;
	height:100%;
}

.plot .plotWrapper .tagHeader .elem .selectWrap{
	width:100px;
	text-align:left;
}

.plot .plotWrapper .tagHeader .elem .selectWrap select{
	width:100%;
	outline:none;
	border:none;
	height:19px;
}

.plot .plotWrapper .tagHeader .elem .selectWrap2{
	width:40px;
	text-align:left;
}

.plot .plotWrapper .tagHeader .elem .selectWrap2 select{
	width:100%;
	outline:none;
	border:none;
	height:19px;
}

.plot .plotWrapper .tagHeader .elem .textWrap{
	height: 19px;
	padding: 0px 2px;
	text-align: left;

}

.plot .plotWrapper .tagHeader .elem .descriptionWrap{
	width:250px;
}

.plot .plotWrapper .tagHeader .elem .lowWrap, .plot .plotWrapper .tagHeader .elem .highWrap, .plot .plotWrapper .tagHeader .elem .currentWrap, .plot .plotWrapper .tagHeader .elem .scooterWrap {
	width:75px;
}

.plot .plotWrapper .tagHeader .elem .orderWrap{
	width:20px;
}



.plot .plotWrapper .xAxis .tickWrap{
	position:absolute;
	top:0;
}

.plot .plotWrapper .xAxis .tickWrap .tickNumber{
	position:relative;
	padding-top:12px;
	font-size:12px;
	margin-left:-50%;
}


.plot .plotWrapper .xAxis .tickWrap .tickNumber .tick{
	width:1px;
	height:11px;
	background-color:rgb(0,0,0);
	position:absolute;
	top:0%;
	left:32%;
}



.controllerStatusSheetButtonClickable{
	cursor:pointer !important;
}

.contextMenu{
	position:absolute;
	border:1px solid #afafaf;
	color:rgb(0,0,0);
	background-color:#dddddd;
	width:100px;
	box-shadow:2px 2px 2px rgba(0,0,0,0.3);
}

.contextMenu .menuItem{
	padding:3px 5px;
}

.contextMenu .menuItem:hover{
	background-color:#c0c0c0;
}

#alarms{
	padding-top:45px;
}

#alarms .tableWrap{
	padding-top:40px;
}

#alarms .tableWrap table{
	border-collapse: collapse;
	margin:0 auto;
}

#alarms .tableWrap table .value{
	position:relative;
}

#alarms .tableWrap table .value .note{
	padding:6px 20px;
	padding-left:5px;
	text-overflow: ellipsis;
}

#alarms .tableWrap table .value .sorter{
	position:absolute;
	top:50%;
	transform: translateY(-50%);
	right:2px;
	font-size:12px;

}

#alarms .tableWrap table .value .sorter .arrow{
	cursor:pointer;
	opacity:0.2;
}

#alarms .tableWrap table .value .sorter .arrowActive{
	opacity:1;
}

#alarms .tableWrap table .value{
	white-space:nowrap;
}

#alarms .tableWrap table .state{
	width:35px;
}

#alarms .tableWrap table .state img{
	width:20px;
}

#alarms .tableWrap table .date{
	width:170px;
}

#alarms .tableWrap table .location{
	width:100px;
}

#alarms .tableWrap table .description{
	width:230px;
	text-overflow: ellipsis;
}

#alarms .tableWrap table .tripValue{
	width:100px;
}

#alarms .tableWrap table .liveValue{
	width:100px;
}

#alarms .tableWrap table .units{
	width:70px;
}

#alarms .tableWrap #alarm-header-table{
	background-color: rgb(37,78,118);
	color:rgb(255,255,255);
}

#alarms .tableWrap #alarm-header-table td{
	border:1px solid rgb(255,255,255);
}

#alarms .alarmsTable{
	position:relative;
	padding-top:0px;
	height:500px;
	overflow-y:scroll;
	overflow-x:hidden;
	display:inline-block;
	border:1px solid rgb(0,0,0);
	background-color:rgb(255,255,255);
	transform:translateX(9px);
}

#alarms .alarmsTable table{
	border-collapse: collapse;
}

#alarms .alarmsTable table td{
	text-align: left;
	vertical-align: middle;
}

#alarms .alarmsTable table .value{
	padding:6px 0px;
	padding-left:5px;
}

#alarms .alarmsTable table tr:nth-child(even){
	background-color:rgba(0,0,0,0.1);
}

#alarms .alarmsTable table .focusedRow{
	background-color:rgba(37,78,118,0.8) !important;
	color:rgb(255,255,255) !important;
}

#alarms .alarmsTableWrap{
	text-align:center;
}

#alarms .alarmsTableWrap .buttons{
	margin-top:40px;
	padding-bottom:40px;
}

#alarms .alarmsTableWrap .buttons .button{
	display: inline-block;
    vertical-align: middle;
    background-color: rgb(240, 240, 240);
    color: rgb(100, 100, 100);
    border: 2px outset;
    padding: 10px 5px;
    border-radius: 3px;
    cursor: pointer;
    width: 200px;
    text-align: center;
}

#alarms .alarmsTableWrap .buttons .button:active{
	border: 2px inset;
}


#fullscreenButton{
	position:absolute;
	top:2px;
	left:2px;
	padding:5px;
	z-index:2000;
	background-color:red;
	color:white;
	font-size:20px;
	font-weight:bold;
}

.navMenu{
	position:absolute;
	bottom:42px;
	width:1920px;
	background-color:rgba(221,221,221);
	text-align:center;
	font-size:0;
	z-index:200;
}

.navMenu .inline{
	background-color:rgb(216,216,216);
	border:1px solid rgb(128,128,128);
	padding:7px 15px;
	display:inline-block;
	vertical-align:middle;
	width:calc(33.33% - 37px);
	font-size:14px;
}

.navMenu .inline:nth-child(1){
	text-align:left;
}

.navMenu .inline:nth-child(2){
	margin:0px 5px;
	text-align:left;
}

.navMenu .inline:nth-child(2) .navButtonWrap:nth-child(2){
	margin-right:130px;
}

.navMenu .inline:nth-child(3){
	text-align:right;
}

.navMenu .inline .navButtonWrap{
	display:inline-block;
	vertical-align: middle;
	margin:0 5px;
}

.navMenu .inline .button{
	width:80px;
	height:35px;
	background-color:rgb(255,255,255);
	position:relative;
	font-size:14px;
	cursor:pointer;
	border:3px outset rgba(0,0,0,0.5);
	font-family: Arial;
}

.navMenu .inline .button:active{
	border:3px inset rgba(0,0,0,0.5);
}

.navMenu .inline .button .text{
	position:absolute;
	top:50%;
	left:50%;
	-webkit-transform:translate(-50%,-50%);
	-moz-transform:translate(-50%,-50%);
	-ms-transform:translate(-50%,-50%);
	-o-transform:translate(-50%,-50%);
	transform:translate(-50%,-50%);
	text-align:center;
}



.simRunning .alarmPage .icon img{
	animation: blink-animation 1s steps(5, start) infinite;
  -webkit-animation: blink-animation 1s steps(5, start) infinite;
}

.simRunning .blinkRed{
	animation: blinkRed 1s  infinite;
  -webkit-animation: blinkRed 1s  infinite;
}

.textBox .textContent{
	padding:0 2px;
}

.lightbox{
	background-color:rgba(37,78,118,0.9);
	background: rgba(37,78,118,0.9);
    background: linear-gradient(0deg, rgba(20,42,64,0.9), rgb(37,78,118,0.9));
	position:fixed;
	top:0;
	left:0;
	right:0;
	bottom:0;
	z-index:9000;
	display:none;
}

.lightbox .lightboxContent{
	position:relative;
	width:100%;
	height:100%;
}

.lightbox .lightboxContent .window{
	width:500px;
	padding:20px;
	background-color:rgb(255,255,255);
	position:absolute;
	top:50%;
	left:50%;
	transform:translate(-50%,-50%);
	box-shadow:2px 2px 2px rgb(0,0,0,0.8);
}

.lightbox .lightboxContent .text{
	text-align: center;
	color:rgb(10,60,74);
	margin-bottom: 20px;
	font-size: 12px;
}

.lightbox .lightboxContent .buttons{
	text-align: center;
}



.lightbox .lightboxContent .buttons .button{
	display:inline-block;
	vertical-align: middle;
	background-color:rgb(37,78,118);
	color:rgb(255,255,255);
	font-size:12px;
	cursor:pointer;
    padding: 5px;
    border-radius: 3px;
    border:1px solid rgb(37,78,118);
    margin:5px;
    width:70px;

}

.lightbox .lightboxContent .buttons .cancelButton{
	display:inline-block;
	vertical-align: middle;
	background-color:rgb(240,240,240);
	color:rgb(100,100,100);
	font-size:12px;
	cursor:pointer;
    padding: 5px;
    border-radius: 3px;
    border:1px solid rgb(100,100,100);
    margin:5px;
    width:70px;
}

.lightbox .lightboxContent .buttons .button:active{
	border:2px inset;
}

.Button{
	text-align: center;
}

.faceplate{
	position:absolute;
	top:0;
	right:0;
	/*height:50%;*/
	background-color:rgb(255,255,255);
	z-index:8900;
	border:1px solid rgb(1, 53, 67);
	box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2), 0 1px 3px rgba(0, 0, 0, 0.08);
	font-size:0;
	/*white-space: nowrap;*/
	left: auto;
	/*min-width: 200px;*/
	border-radius:3px;
	overflow:hidden;
}

.faceplate .header{
	background: rgb(37,78,118);
    background: linear-gradient(0deg, rgb(20,42,64), rgb(37,78,118));
	padding:5px;
	font-size:14px;
	padding:3px;
	cursor:grab;
	position:relative;
	height:20px;
}

.faceplate .header .title{
	padding-left:20px;
	color:rgb(255,255,255);
	margin-top:-2px;
}

.faceplate .header:active{
	cursor:grabbing;
}

.faceplate .close{
	position:absolute;
	top:3px;
	right:3px;
	width:14px;
	cursor:pointer;
}

.faceplate .close img{
	display:block;
}

.faceplate .subFP .close{
	top:-20px;
	border-right:1px solid rgb(100,100,100);
	right:0;
	padding:3px;
	width:auto;
}

.faceplate .subFP .close img{
	width:14px;
}

.faceplate .pin{
	position:absolute;
	top:3px;
	left:3px;
	width:14px;
	background-color:rgb(255,255,255);
	border:2px outset;
	cursor:pointer;
	padding:2px;
}

.faceplate .pin:active{
	border:2px inset;
}

.faceplate .pin img{
	display:block;
}

.faceplate .main{
	display:inline-block;
	vertical-align: top;
	/*height:calc(100% - 20px);*/
	font-size:12px;
	position:relative;
	/*background-color:rgb(224, 226, 235);*/
}

.faceplate .big{
	display:inline-block;
	vertical-align: top;
	width:530px;
	height:calc(100% - 20px);
	background-color:rgb(224, 226, 235);
	font-size:12px;
	position:relative;
	display:none;
	border-right:1px solid rgb(100,100,100);
}

.faceplate .small{
	display:inline-block;
	vertical-align: top;
	width:220px;
	height:calc(100% - 20px);
	background-color:rgb(224, 226, 235);
	font-size:12px;
	position:relative;
	display:none;
	border-right:1px solid rgb(100,100,100);
}

.faceplate .subFP{
	display:inline-block;
	vertical-align: top;
	height:calc(100% - 20px);
	font-size:12px;
	position:relative;
	border-right:1px solid rgb(100,100,100);
	display:none;
}

.faceplate .subFP .sub{
	margin-top:20px;
	overflow:hidden;
}

.faceplates{
	position:relative;
	height:1px;
}

/*.question .autohide{
	position:absolute;
	top:3px;
	right:3px;
	color:rgb(255,255,255);
	text-align:center;
}

.question .autohide .autohideText{
	font-size:10px;
}


.question .autohideClass .text, .question .autohideClass .answers{
	display:none;
}

.question .autohideClass:hover .text{
	display:block;
}

.question .autohideClass:hover .answers{
	display:block;
}*/

.question{
	position:absolute;
	top:0px;
	left:0;
	z-index:8000;
	background:rgb(227,246,240);
	color:rgb(100,100,100);
    border: 1px solid rgb(26, 169, 131);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2), 0 1px 3px rgba(0, 0, 0, 0.08);
    border-radius:4px;
    display:none;
	width:350px;
}

.question .body{
	position:relative;
}

.question .body .text{
	display:none;
}

.question .body .answers{
	padding-bottom:20px;
	display:none;
}

.plotWrap .plotControls .sliderWrap{
	width:250px;
	display:inline-block;
	vertical-align: middle;
	font-size:0;
}

.plotWrap .plotControls .sliderWrap .sliderButton{
	display:inline-block;
	vertical-align: middle;
	width: 20px;
	height: 20px;
	font-size:12px;
	line-height: 20px;
	text-align:center;
	border-radius: 3px; 
	border: 1px solid rgb(100,100,100);
	background: rgb(240,240,240);
	color:rgb(0,0,0);
	cursor:pointer;
}

.plotWrap .plotControls .sliderWrap .track{
	display:inline-block;
	vertical-align: middle;
	position: relative;
	height:10px;
	background-color:rgb(255,255,255);
	border:1px solid rgb(100,100,100);
	width:calc(100% - 40px);
}

.plotWrap .plotControls .sliderWrap .thumb{
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 8px;
	height:20px;
	border: 1px solid rgb(100,100,100);
	background: rgb(240,240,240);
	cursor: grab;
}

.plotWrap .plotControls .sliderWrap .thumb:active{
	cursor:grabbing;
}



.question .title{
	min-width:300px;
	text-align:center;
	color:rgb(255,255,255);
	background-color:rgb(26, 169, 131);
	padding:7px 0;
	font-size:18px;
	font-weight:bold;
	cursor:pointer;
}

.question .text{
	min-width:300px;
	max-width:350px;
	color:rgb(20,42,64);
	text-align: center;
	font-size:16px;
	padding:20px 10px;
}

.question .text .numInput{
	width:60px;
	text-align:right;
	padding:2px;
}

.question .body.activeQuestion .text, 
.question .body.activeQuestion .answers { display:block; }


.question .answers .continue{
	width:100%;
	border-radius:5px;
	color:rgb(255,255,255);
	background-color:rgb(26, 169, 131);
	padding:7px 0;
	font-size:18px;
	font-weight:bold;
	text-align:center;
	margin-top:20px;
	cursor:pointer;
	justify-content: center;
}

.question .answers .continue:active{
	/*border:2px inset;*/

}

.question .answers .continue { display:inline-flex; align-items:center; gap:.5rem; }
.question .answers .continue.is-disabled { opacity:.5; pointer-events:none; cursor:not-allowed; }

.question .answers .countdown { position:relative; width:26px; height:26px; }
.question .answers .countdown__pie { position:absolute; inset:0; border-radius:50%;
  background:conic-gradient(rgb(255,255,255) calc(var(--pct,100)*1%), #cccccc 0);}
.question .answers .countdown__num { position:absolute; inset:0; display:flex; align-items:center; justify-content:center; font-size:12px;color:rgb(26, 169, 131) }
.question .answers .countdown.is-hidden { display:none; }

.question .answers{
	padding:0 20px;
}

.question .answers .buttonWrap{
	margin:7px auto;
}

.question .answers .buttonWrap button{
	border:none;
	border-radius:5px;
}

.question .answers .buttonWrap .type1{
	color:rgb(255,255,255);
	background-color:rgb(26, 169, 131);
	padding:10px;
	width:100%;
	border:2px solid rgba(26, 169, 131,0);
}

.question .answers .buttonWrap .type1Selected{
	color:rgb(26, 169, 131);
	background-color:rgb(255,255,255);
	border:2px solid rgb(26, 169, 131);
}

.question .passOrFail{
	font-size: 20px;
    font-weight: 600;
}

.information{
	position:fixed;
	top:40px;
	right:0;
	z-index:8970;
	background:rgb(227,246,240);
	color:rgb(100,100,100);
    border: 1px solid rgb(26, 169, 131);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2), 0 1px 3px rgba(0, 0, 0, 0.08);
    border-radius:4px;
    display:none;
}

.information .header{
	min-width:300px;
	text-align:center;
	color:rgb(255,255,255);
	background-color:rgb(26, 169, 131);
	padding:7px 0;
	font-size:18px;
	font-weight:bold;
	cursor:grab;
}

.information .header:active{
	cursor:grabbing;
}

.information .close{
	position:absolute;
	top:8px;
	right:8px;
	cursor: pointer;
	width:20px;
}

.information .close img{
	display:block;
}

.information .text{
	min-width:300px;
	max-width:600px;
	color:rgb(20,42,64);
	text-align: center;
	font-size:16px;
	padding:20px 10px;
}

.embeddedPlot .legend table{
	border-collapse: collapse;
	background-color:rgb(255,255,255);
	font-size:11px;
	transform:translateX(-1px);
}

.embeddedPlot .legend table td{
	text-align:left;
	vertical-align: top;
	border:1px solid rgb(0,0,0);
}

.embeddedPlot .legend table td .value{
	white-space: nowrap;
	overflow:hidden;
	text-overflow: ellipsis;
	padding:3px;
}

.embeddedPlot .legend table td .input{
	border:1px solid rgb(50,50,50);
	outline:none !important;
	width:100%;
}


.embeddedPlot .legend table td .color{
	width:20px;
}

.embeddedPlot .legend table td .pointId{
	width:50px;
}

.embeddedPlot .legend table td .parameter{
	width:25px;
}


.embeddedPlot .legend table td .unit{
	width:30px;
}

.embeddedPlot .legend table td .lowScale, .embeddedPlot .legend table td .highScale, .embeddedPlot .legend table td .liveValue,.embeddedPlot .legend table td .scooterValue{
	width:60px;
}

.embeddedPlot .legend table td .description{
	width:90px;
}

.loadLightbox{
	text-align:center;
	background: rgb(37,78,118);
    background: linear-gradient(0deg, rgb(20,42,64), rgb(37,78,118));
    position:fixed;
    top:0;
    left:0;
    right:0;
    bottom:0;
    color:rgb(255,255,255);
}

.loadLightbox .imageWrap{
	width:50%;
	margin:0 auto;
	max-width:500px;
	margin-top:20px;
	border:1px solid rgb(100,100,100);
	box-shadow: 2px 2px 2px rgba(0,0,0,0.7);
}

.loadLightbox .imageWrap img{
	display:block;
}

.loadLightbox .text{
	font-size:30px;
	font-weight:bold;
	margin-top:30px;
}

.login{
	margin:0;
	background-image:url(/images/education.jpeg);
	background-size:cover;
	background-position:center right;
	background-repeat: no-repeat;
	width:100% !important;
	height:100vh;
}

.login #page-wrap{
	height:100%;
}

.login #page-wrap .messagePage{
	height:100%;
}

.login #page-wrap .messagePage .pageWidth{
	height:100%;
}

.login #page-wrap .messagePage .pageWidth .blueWrap{
	position:absolute;
	top:50%;
	left:50%;
	text-align:center;
	transform:translate(-50%,-50%);
	padding:20px;
    background-color:rgba(255,255,255,0.8);
    border-radius:10px;
	
}

.login #page-wrap .messagePage .pageWidth .blueWrap .title{
	font-size:40px;
	font-weight:bold;
	text-align:center;
	color:rgb(37,78,118);
	margin:10px auto;
}

.login #page-wrap .messagePage .pageWidth .blueWrap .text{
	font-size:20px;
	text-align:center;
	margin:10px auto;
	max-width:100%;
	width:500px;
}

.login .logoWrap{
	max-width:90%;
	margin: 0 auto;
	width:300px;
}

.login .blueWrap, .messageNotLoggedIn .blueWrap{
    padding:40px 0;
}

.login .blueWrap .imageWrap{
    text-align:center;
    padding-top:20px;
}

.login .inputWrapper .show{
    position:absolute;
    top:1px;
    right:1px;
    font-size:12px;
    padding:0 5px;
    line-height:40px;
   	background: linear-gradient(
        180deg,
        rgb(37, 78, 118) 0%,
        rgb(20, 42, 64) 100%
    );
    cursor:pointer;
}

.loginPage, .messagePage{
	position: relative;
	z-index:200;
}

.login .blueHeader, .messageNotLoggedIn .blueHeader{
    background-color:rgb(235,34,50);
    height:30px;
}

.login .loginTitle{
	text-align:center;
	color:rgb(37,78,118);
	font-size:40px;
	font-weight:bold;
	margin:20px auto;
}




.home{
	margin:0;
	background-image:url(/images/education.jpeg);
	background-size:cover;
	background-position:center right;
	background-repeat: no-repeat;
	width:100% !important;
	height:100vh;
}

.home #page-wrap{
	height:100%;
}

.home .exerciseLinks{
	aspect-ratio: 16/9;
	width:200px;
	position:relative;
	background-color:rgb(255,255,255);
	border-radius:5px;
	overflow:hidden;
	border:1px solid rgb(255,255,255);
	box-shadow:0px 2px 2px rgba(0,0,0,0.5);
	display:inline-block;
	vertical-align: middle;
	margin:10px;
	transition:all ease 0.5s;
	cursor:pointer;
}

.home .exerciseLinks .image{
	position:absolute;
	top:50%;
	left:50%;
	width:100%;
	height:100%;
	transition:all ease 0.5s;
	transform:translate(-50%,-50%) scale(1);
	background-repeat: no-repeat;
	background-size: cover;
	z-index:100;
	transform-origin:bottom center;
}

.home .exerciseLinks:hover .image{
	transform:translate(-50%,-50%) scale(1.2);
}

.home .exerciseLinks .textWrap{
	position:absolute;
	bottom:0%;
	width:100%;
	padding:5px;
	z-index:200;
	background: linear-gradient(
	    to top,
	    rgba(224,226,234, 1) 0%,      /* solid white at very bottom */
	    rgba(224,226,234, 0.9) 20%,   /* mostly white */
	    rgba(224,226,234, 0.6) 50%,   /* mid fade */
	    rgba(224,226,234, 0.45) 80%,  /* almost transparent */
	    rgba(224,226,234, 0) 90%      /* transparency edge small */
	);

}

.home .exerciseLinks .textWrap .title{
	padding-top:10px;
	color:rgb(20,42,64);
	opacity:0.6;
	font-size:12px;
}

.home .exerciseLinks .textWrap .subTitle{
	color:rgb(37,78,118);
	font-weight:bold;
	font-size:12px;
	transition:all ease 0.5s;
}

.home .exerciseLinks .textWrap .text{
	transition:all ease 0.5s;
	font-size:0px;
	z-index:200;

}

.home .exerciseLinks:hover .text{
	font-size: 10px;
}

.home .exerciseLinks:hover .textWrap .subTitle{
	color:rgb(20,200,20);
}

.home #page-wrap{
	max-width:960px;
	margin:0 auto;
}

.home #page-wrap .moduleTitle{
	text-align:center;
	color:rgb(255,255,255);
	font-weight:bold;
	padding-top:20px;
	font-size:40px;
	text-shadow:2px 2px 4px rgba(0,0,0,0.4);
}



@keyframes blink-animation {
  to {
    visibility: hidden;
  }
}
@-webkit-keyframes blink-animation {
  to {
    visibility: hidden;
  }
}
@keyframes blinkRed {
  to {
    color: rgb(255,0,0);
  }
}
@-webkit-keyframes blinkRed {
  to {
    color: rgb(255,0,0);
  }
}