/*************************************************************************************************/
/* New FMS Styles */
/*************************************************************************************************/

.hidden {
	display: none !important;
}

.FMS-Nav-Shield {
	position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
}

.FMS-TextBox {
  border-radius: 20px;
  color: lightgrey;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 1ch;
  font-weight: bold;
  font-size: 20px;
}

.FMS-Button {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
  
  width: 100px;
  padding: 3px 3px;
  margin: 5px;
  
  background-color: rgba(0,0,0,0.4);
  border-color: black;
  border-style: solid;
  border-radius: 12px;
  
  color: lightgrey;
  text-shadow: 2px 0 0 #000, 0 -2px 0 #000, 0 2px 0 #000, -2px 0 0 #000;
  text-decoration: none;
  font-size: 25px;
  font-weight: bold;
  
  cursor: pointer;
  user-select: none;
}

.FMS-Button-Selected {
  background-color: lightblue;
}

.FMS-Button:hover {
  background-color: lightgrey;
  color: black;
  text-shadow: none;
}

.FMS-Button-Disabled {
  cursor: default;
  pointer-events: none;
  background-color: rgba(0,0,0,0.7);
}

.FMS-Slider-Wrap {
	display: flex;
	align-items: center;
	justify-content: center;
}

.FMS-Slider-Wrap > .FMS-Label {
	padding-right: 1ch;
}

.FMS-Slider-Disabled {
  background-color: rgba(0,0,0,0.6);
  color: grey;
  cursor: default;
}

.FMS-Slider-Disabled:hover {
  background-color: rgba(0,0,0,0.6);
  color: grey;
}

.FMS-Check-Box {
	height: 20px;
	width: 20px;
}

body {
  font-family: 'Alegreya Sans SC', sans-serif;
  background-image: url('/BackgroundImage.jpg');
  background-repeat: no-repeat;
  background-size: cover;
}

.FMS-Account-Area {
	position: absolute;
	top: 0px;
  left: 0px;
}

.FMS-Menu-Bar {
	margin-bottom: 30px;
}

.FMS-Work-Area {
	display: flex;
	align-items: center;
	flex-direction: column;
}

.FMS-Control-Bar {
	position: absolute;
	bottom: 0px;
	width: 99%;
}

.FMS-Title {
  font-size: 50px;
  color: lightGrey;
  text-shadow: 2px 0 0 #000, 0 -2px 0 #000, 0 2px 0 #000, -2px 0 0 #000;
  font-weight: bold;
  text-align: center;
}

.FMS-Subtitle {
	font-size: 1.17em;
	font-weight: bold;
}

.FMS-Flow-Panel {
	display: flex;
	flex-direction: column;
}

.FMS-Grid-Table {
	display: grid;
	height: fit-content;
  padding: 10px 10px 10px 10px;
}

.FMS-Grid-Row-Selected {
	background-color: lightblue;
}

.FMS-Grid-Cell {
	height: fit-content;
  width: 100% !important;
  align-items: center;
  margin-left: 0px;
  margin-right: 0px;
}

.FMS-Grid-Body {
  border: 3px black solid;
  border-radius: 12px;
  background-color: rgba(0,0,0,0.4);
  width: fit-content;
  overflow: auto;
  align-content: flex-start;
}

div.FMS-Grid-Body::-webkit-scrollbar {
  display: none;
}

.FMS-Popup {
  position: relative;
  
	height: 300px;
  width: 500px;
  background: #601d14;
  
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  
  border-color: black;
  border-style: solid;
  border-radius: 12px;
  
  text-align: center;
}

.FMS-Popup-Control-Bar {
	position: absolute;
	bottom: 0px;
	left: 0px;
	right: 0px;
}

.FMS-Popup-Background {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
	background-color: rgba(0, 0, 0, 0.4);
}

.FMS-Label {
	width: fit-content;  
	color: lightgrey;
  text-shadow: 2px 0 0 #000, 0 -2px 0 #000, 0 2px 0 #000, -2px 0 0 #000;
  text-decoration: none;
  font-size: 25px;
  font-weight: bold;
}

.FMS-Control-Bar-Button {
	width: 25ch;
	height: 1.5em;
}

.FMS-Grid-Cell.FMS-Button {
  background: none;
  border: none;
}

.FMS-Grid-Cell.FMS-Button.FMS-Selected {
  background: green;
}

.FMS-Robot-Ready {
	color: forestGreen;	
}

.FMS-WC1 {
	color: dodgerBlue;	
}

.FMS-WC3 {
	color: crimson;	
}

.FMS-WC30 {
	color: darkOrange;	
}

.FMS-Error {
  background-color: red;
  color: white;
  font-size: 25px;
}

.FMS-WC150 {
	color: purple;	
}