@CHARSET "ISO-8859-15"; /* IMORTANT DON'T CHANGE */

/* Top level containers */

div#body {
	margin-left: auto;
	margin-right: auto;
	width: calc(100% - 62px); /* 30 left pad + 30 right pad + 2x border */
	min-width: 1300px;
	padding: 10px 30px 10px 30px;
	border: 1px solid black; 
}

div#body h2 {
	margin-left: auto;
	margin-right: auto;
	width: 100%;
}

div#body h4 {
	margin-bottom: 5px;
}

/* this shouldn't be needed
div#body form {
	margin-left: auto;
	margin-right: auto;
	width: 1280px; 
} */

input[type=submit] {
	padding: 0 2px 0 2px;
	font-family: Arial;
	font-size: 17px;
}

div#top_bar {
	text-align: justify;
	margin: 0 auto 0 auto;
	width: calc(100% - 10px);  /* 2x pad */
	min-height: 110px;
	min-width: 1300px;
	padding: 5px 5px 0px 5px;
	background-color: #e6EEEE;
}	

div#top_bar:after {
	content: '';
	display: inline-block;
	width: 100%;
}

/*	Login box */

div#login_box {
	width: 600px; 
	height: 600px; 
	margin: 50px auto 0 auto;
	border: 1px solid black;
}

div#login_box img {
	display: block;
	margin: 0 auto 0 auto;
	
}

div#login_box div#login_wrap {
	width: 600px;
	height: auto;
	text-align: center;
	border-top: 1px solid black;
}

div#login_wrap p {
	font-size: 24px;
	font-weight: bold;
	text-align: center;
}

/* Top bar styles */

.main-navigation {
	background-color:#e6EEEE;
}

a {
	color: #0000bb;
}

a.mockLink {
	cursor:pointer;
	text-decoration:underline;
}

div#mass_logo {
	float: left;
}

/* Miscellaneous Styles */

div.clearBar {
	clear: both;
	width: 100%; 
}

/* Tablesorter overrides (Generic) */

.tablesorter-blue tr th.tablesorter-header {
	white-space: nowrap	;
	padding: 2px 17px 2px 3px;
	font-size: 12px;
}

.tablesorter-blue tr td {
	border: 1px solid black;
	white-space: nowrap;
	padding: 2px 3px 2px 3px;
	font-size: 12px; 
}

tr.tableSpacer {
	height: 20px;
}

tr.tableSpacer td {
	border: none;
}

tr#highlightTeal td {
	background-color: #99ffdd;
}

tr#highlightGray td {
	background-color: #b8b894;
}

p.title {
	font-weight: bold;
}

/* ----------------- Table sorter overrides (Forced) ---------------- */

div#body table.tablesorter-blue tbody tr td {color: black;}
div#body table.tablesorter-blue tbody th td {color: black;}

div#body table.tablesorter-blue tbody tr.spacer_row td {
	background-color: black;
	padding: 1px;
}

div#body table.tablesorter-blue tbody tr.tsortMockHeader td {
	background-color: #99bfe6;
	border: #cdcdcd 1px solid;
	border-width: 0 1px 1px 0;
}

div#body table.tablesorter-blue tbody tr.tsortMockHeader:hover>td {
	background-color: #99bfe6;
	border: #cdcdcd 1px solid;
	border-width: 0 1px 1px 0;
}

div#body table.colorTeal thead tr th {
	background-color: #00d0d4;
}

div#body table.colorGreen thead tr th {
	background-color: #0fbf18;
}

div#body table.colorOrange thead tr th {
	background-color: #db8242;
}

/* ----------------- Sortable Lists Styles DEPRECATED use reorder panel director ---------------- */

ul.sortList {
	margin-left: 15px;
}

ul.sortList li {
	font-size: 14px; 
	padding: 3px 0 3px 0;
	clear: both;
	border-top: 1px solid black;
}

ul.sortList li a {
	float: right;
	padding: 0 0 5px 5px;
	font-size: 14px; 
	font-weight: normal; 
	text-decoration: none;
}

ul.sortList li.h1 span {
	font-weight: bold; 
	font-size: 18px; 
	color: green;
}

ul.sortList li.h2 span {
	font-size: 16px; 
	font-weight: bold; 
	color: black;
}

/* ----------------- Tool Tips Code ---------------- */
/* code based on styles from https://www.w3schools.com/css/css_tooltip.asp */

/* Tooltip container */
.tooltip, .tooltip-right {
    position: relative;
    display: inline-block;
}

/* Tooltip text */
.tooltip .tooltiptext {
    visibility: hidden;
    white-space: pre-line;
    background-color: white;
    color: #000;
    text-align: left;
    padding: 5px;
    border: 2px solid black;
    border-radius: 6px;
    
    width: 200px;
    top: 100%;
    left: 50%; 
    margin-top: 7px;
    margin-left: -100px; /* Use half of the width (120/2 = 60), to center the tooltip */
 
 
    /* Position the tooltip text - see examples below! */
    position: absolute;
    z-index: 1;
}

.tooltip-right .tooltiptext {
    visibility: hidden;
    white-space: pre-line;
    background-color: white;
    color: #000;
    text-align: left;
    padding: 5px;
    border: 2px solid black;
    border-radius: 6px;
    
    width: 200px;
    top: 100%;
 	left: 10px; 
    margin-left: -10px;
    
    /* Position the tooltip text - see examples below! */
    position: absolute;
    z-index: 1;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
    visibility: visible;
}

.tooltip-right:hover .tooltiptext {
    visibility: visible;
}

.tooltip .tooltiptext::after {
    content: " ";
    position: absolute;
    bottom: 100%;  /* At the top of the tooltip */
    left: 50%;
    margin-left: -7px;
    border-width: 7px;
    border-style: solid;
    border-color: transparent transparent black transparent;
}

.tooltip-right .tooltiptext::after {
    content: " ";
    position: absolute;
    bottom: 100%;  /* At the top of the tooltip */
    left: 0%;
    margin-left: 3px;
    border-width: 7px;
    border-style: solid;
    border-color: transparent transparent black transparent;
}


/* ----------------------- Spinner Code (Derived from spin.js.org) --------------------------- */

@keyframes spinner-line-fade-more {
  0%, 100% {
    opacity: 0; /* minimum opacity */
  }
  1% {
    opacity: 1;
  }
}

@keyframes spinner-line-fade-quick {
  0%, 39%, 100% {
    opacity: 0.25; /* minimum opacity */
  }
  40% {
    opacity: 1;
  }
}

@keyframes spinner-line-fade-default {
  0%, 100% {
    opacity: 0.22; /* minimum opacity */
  }
  1% {
    opacity: 1;
  }
}

/* ----------------------- Moved From Provisioning.css --------------------------- */

/* Input (form) styles */

div.inputWrap {
	float: left;
	padding: 5px 0px 0px 5px;
}

div.inputWrap p {
	margin: 0px 0px 0px 3px;
}

div.inputWrap input {
	hight: auto;
	border: 1px solid black;
}

div.inputWrap select.sizeRestricted {
	width: 180px;
}

div.inputWrap select.sizeRestricted option {
	width: auto;
}

div.inputWrap input.readonly {
	background-color: #c2c2a3;
}

/* Form Block Styles */

div.formBlock {
	float: left;
	border: 1px solid black;
	padding: 5px;
	margin: 5px;
}

div.formBlock p.blockTitle {
	margin-bottom: 5px;
	color: red;
	text-align: center;
}

div.formBlock span.blockTitleNote {
	color: black;
	font-size: 14px;
}

div.formBlock p.blockTitleBlue, div.formBlock span.blockTitleBlue {
	margin-bottom: 5px;
	text-align: center;
	color: black;
	background-color: #c2c2dc;
	padding: 5px;
}

div.formBlock p.blockTitleGreen, div.formBlock span.blockTitleGreen {
	margin-bottom: 5px;
	text-align: center;
	color: black;
	background-color: #c2dcc2;
	padding: 5px;
}

div.formBlock div.inputWrap {
	clear: both;
	margin-top: 3px;
}

div.formBlock p a {
	font-size: 14px;
	text-decoration: none;
}

div.formBlockPopupWrapperDrag {
	cursor: move;
}

div.formBlockPopupWrapper, div.formBlockPopupWrapperDrag  {
	display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 200; /* Sit above the popupPanel at 100 */	
    top: 10%;
    left: 25%;
    width: 50%;
    height: 50%;
    background-color: #000; /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black simi-transparent */
    overflow-y: scroll;
}

div.formBlockPopupWrapper div.formBlock {
    position: absolute; /* Stay in place */
    z-index: 200; /* Sit above the popupPanel at 100 */
    top: 30px;
    left: 13%;
    right: 17%;
    width: 70%;
    background-color: #fff; /* Fallback color */
    background-color: rgba(255,255,255,1); /* White non-transparent */
}

div.formBlockPopupWrapperDrag div.formBlock {
    position: absolute; /* Stay in place */
    z-index: 200; /* Sit above the popupPanel at 100 */
    top: 30px;
    left: 13%;
    right: 17%;
    width: 70%;
    background-color: #fff; /* Fallback color */
    background-color: rgba(255,255,255,1); /* White non-transparent */
    cursor: default;
}

textarea.noteBox {
	resize: none;
	margin: 2px;
}


/* Alternating Color Scheme Styles (mostly to record colors used) (DEPRECATED???) */
.backgroundBlue {
	background-color: #c2c2dc;
}

.backgroundGreen {
	background-color: #c2dcc2;
}

tr.rowBlue td {
	background-color: #c2c2dc;
}

tr.rowGreen td {
	background-color: #c2dcc2;
}

/* -------------------- Popup Pane Styles -------------------- */
/* Styling based on example from w3schools.com (https://www.w3schools.com/howto/howto_css_modals.asp)

/* The Popup Pane (background) */
.popupPane {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 100; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* The Close Text */
.popupPaneClose {
    color: #777;
    float: right;
    font-size: 20px;
    font-weight: bold;
}

.popupPaneClose:hover,
.popupPaneClose:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Popup Pane Header */
.popupPaneHeader {
	margin-top: 10px;
    padding: 2px 16px;
    background-color: #25bcc4;
    color: white;
}

div#body .popupPaneHeader h2 {
	width: 100%;
}

/* Popup Pane Body */
.popupPaneBody {padding: 2px 16px;}

/* Popup Pane Footer */
.popupPaneFooter {
    padding: 2px 16px;
    background-color: #25bcc4;
    color: white;
}

/* Popup Pane Content */
.popupPaneContent {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    padding-bottom: 3px;
    border: 1px solid #888;
    width: 80%;
    min-width: 1300px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s
}

/* Popup Pane Animation */
@-webkit-keyframes animatetop {
    from {top: -300px; opacity: 0} 
    to {top: 0; opacity: 1}
}

@keyframes animatetop {
    from {top: -300px; opacity: 0}
    to {top: 0; opacity: 1}
}

.popupPaneDrag {	
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 100; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: hidden;
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

.popupPaneDrag .popupPaneHeader {
	cursor: move;
}


.popupPaneDrag .popupPaneContent {
	height: 580px;
	overflow-y: scroll; /* Enable scroll if needed */
	overflow-x: hidden; /* Enable scroll if needed */
}
/* -------------------- Button Styles -------------------- */
/* Style template created by http://css3buttongenerator.com/ */
.buttonGray {
  font-family: Arial;
  color: #000;
  background: #e7e7e7;
  padding: 3px 5px 3px 5px;
  border: solid #828282 1px;
  text-decoration: none;
  display: inline-block;
}

.buttonGray:hover {
  background: #c3c3c3;
  text-decoration: none;
  cursor: pointer;
}

.buttonGray p {
	margin: 0;
	padding: 0;
	font-size: 15px;
	display: inline-block;
}

.buttonGraySmall {
  color: #000;
  background: #e7e7e7;
  padding: 0 2px 0 2px;
  border: solid #828282 1px;
  text-decoration: none;
  display: inline-block;
}

.buttonGraySmall:hover {
  background: #c3c3c3;
  text-decoration: none;
  cursor: pointer;
}

.buttonGraySmall p {
	margin: 0;
	padding: 0;
	display: inline-block;
	font-size: 17px;
}

.sqpColor { /* single quote path color */
	color: #26fcc0;
}

.sqpBackground { /* single quote path color */
	background-color: #26fcc0;
}


.buttonSQPSmall { /* single quote path button (should set color to above) */
  color: #000;
  background: #26fcc0;
  padding: 0 2px 0 2px;
  border: solid #828282 1px;
  text-decoration: none;
  display: inline-block;
}

.buttonSQPSmall:hover {
  background: #17e3a9;
  text-decoration: none;
  cursor: pointer;
}

.buttonSQPSmall p {
	margin: 0;
	padding: 0;
	display: inline-block;
	font-size: 17px;
}

.buttonSQP {
  font-family: Arial;
  color: #000;
  background: #26fcc0;
  padding: 3px 5px 3px 5px;
  border: solid #828282 1px;
  text-decoration: none;
  display: inline-block;
}

.buttonSQP:hover {
  background: #17e3a9;
  text-decoration: none;
  cursor: pointer;
}

.buttonSQP p {
	margin: 0;
	padding: 0;
	font-size: 15px;
	display: inline-block;
}




div#top_bar * { 
  box-sizing:border-box;
  font-family:"Arial", sans-serif; 
}


/* Top bar menues (This should probably be changed is working now but a firefox update caused a complete discombobulation and I'm not sure what all this is trying to do )*/

.main-navigation {
  background-color:#e6EEEE;
}

ul {
  margin:0; 
  padding:0;
}

ul.sub-menu li a {
	text-decoration: none;
}

.menu-item-has-children a {
	text-decoration: none;
}

.menu {
  display:flex;  
  flex-direction:column;
  list-style-type:none;
  padding: 20px;
  
  span {}
  
  li {
    display:block;
    list-style-type:none;
  }
  
  ul.sub-menu li a{
    display:flex;
    text-align:center;
    color:#000;
    padding-left: 5px;
  }
  
} 

@media (min-width: 800px) {
    .menu{
      flex-direction:row;
      justify-content:space-between;
    }
}

.menu-item-has-children > a:after{
  padding:0px;
}

nav ul ul {
    display: none;
}

@media (min-width: 800px) {
  nav ul ul {
    display: none;
    position:absolute;
  }
}

nav ul li:hover > ul {
  display:block;
  color:#000;
  padding-left:5px;
}

@media (min-width: 800px) {
  nav ul li:hover > ul {
    padding-left:0;
    background:#99bfe6;
  }
  
  nav ul li:hover > ul a{
    color:#000;
  }
  
  .sub-menu{
    list-style-type:none;
    padding-top: 5px; 
    padding-bottom: 5px; 
    
    li{
      display:flex;
      list-style-type:none;
      padding-right:2em;
    }
    

  }
}

ul.sub-menu li:hover{ 
	background-color:#b9dfff;
}

/*  end menues */


/* -------------------- Reorder Panel Styles -------------------- */

div.dragLine {
  width: 15px;
  height: 2px;
  background-color: black;
  margin: 2px 0;
}

div.ropItemCluster {
	width: 100%;
	border-bottom: 2px solid black;
	margin: 3px 0 3px 0;
}
