@import "simple-datatable.css";

:root {
  --darker1: #000000;
  --darker: #000000;
  --darker2: #000000;
  --lighter: #eeeeee;
}

* {
  font-family: Josefin Sans, sans-serif;
  box-sizing: border-box;
}

html {
  display: block;
}

.page-wrap {
  height: 100vh;
  display: grid;
  grid-template-columns: minmax(10px, 1fr) minmax(10px, 2fr);
  grid-template-rows: min-content min-content 1fr min-content;
  gap: 1px;
  @media (max-width: 600px) {
    grid-template-columns: 100%;
    grid-template-rows: auto;
    >* {
      grid-column: 1 / -1 !important;
      grid-row: auto !important;
    }
  }
}

.page-header {
  grid-column: 1 / -1;
}

.page-sidebar {
  grid-column: 1 / 2;
  grid-row: 2 / 4;
  background-color: #f7f7f7;
}

.page-main {
  grid-column: 2 / 3;
  padding: 10px;
}

.page-footer {
  grid-column: 1 / -1;
  background-color: #000000;
  color: #FFFFFF;
  min-height: 40px;
  font-size: 12px;
  padding: 14px;
}

body {
  margin: 0;
  height: 100vh;
  max-width: 100vw;
}

h1 {
  font-size: 60px;
  margin-top: 0px;
}

h2 {
  font-size: 13px;
  color: #f5821e;
  margin-top: -30px;
}

h1,
h2 {
  z-index: 10;
  text-align: center;
  width: 100%;
  position: relative;
  top: 53%;
}

.object-fit--cover,
.object-fit--cover img {
  object-fit: cover;
}

.banner__image,
.banner__image-overlay {
  filter: grayscale(100%);
  position: absolute;
  width: 100%;
  z-index: 4;
  height: 450px;
  margin-left: 0px;
  margin-top: 0px;
}

.banner__image-overlay {
  background-color: #f7f7f7;
  opacity: .7
}

header {
  width: 100%;
  height: 450px;
}

header img {
  position: absolute;
  height: 60px;
  z-index: 4;
  margin-left: 60px;
  margin-top: 60px;
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

aside {
}

a  {
  color: #000;
  text-decoration: none;
  background-color: transparent;
  text-transform: uppercase;
}

a:hover {
  color: #f68c1e;
}

aside h3 {
  font-weight: 600;
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 1.42857;
  border-bottom: solid #f68c1e 3px;
}

aside div {
  display: block;
  width: 350px;
  float: right;
  padding-right: 45px;
}

aside ul li {
  font-weight: 600;
  position: relative;
  padding: 12px 30px 12px 0;
}

main ul#buttons {
  columns: 2;
  padding: 30px;
  width: 502px;
}

main ul#buttons li {
  width: 200px;
  height: 60px;
  margin-bottom: 28px;
  display: block;
  vertical-align: middle;
}

main ul#buttons a {
  text-align: center;
  font-weight: 600;
  width: 100%;
  height: 100%;
  background-color: #f68c1e;
  color: #FFF;
  font-size: 13px;
  display: block;
  line-height: 63px;
}

main ul#buttons a:hover {
  color: #FFF;
  background:#d6690a;
}

select {
  background-color: white;
  background-image: linear-gradient(45deg, transparent 50%, white 50%),
  linear-gradient(135deg, white 50%, transparent 50%),
  linear-gradient(#000000,#000000,#000000);
  background-position: calc(100% - 12px) calc(1em - 5px), calc(100% - 7px)
  calc(1em - 5px), calc(100% + 6px) 0;
  background-repeat: no-repeat;
  background-size: 4px 6px, 5px 7px, 1.8em 2.5em;
  border: 1px solid #d1d5da;
  box-sizing: border-box;
  display: inline-block;
  font: inherit;
  min-width: 400px;
  padding-left: 7px;
  -moz-appearance: none;
  -webkit-appearance: none;
}

.dataTable-sorter::before, .dataTable-sorter::after, .asc .dataTable-sorter::before, .asc .dataTable-sorter::after, .desc .dataTable-sorter::before, .desc .dataTable-sorter::after {
  opacity: 0;
}
.dataTable-pagination li {
  padding-top: 0;
}
nav {
  height: 0;
}
.zebra tr:first-child:hover td {
  background-color: #f9f9f9;
  cursor: pointer;
}
.zebra tr:hover td {
  background-color: #f9f9f9;
  cursor: pointer;
}
.dataTable-table th a {
  text-decoration: none;
  color: #ee6600;
}
.dataTable-table th a:hover {
  color: #ee6600;
  text-decoration: underline
}
ul {
  border: 0;
}
.dataTable-table th a {
  margin-top: 5px;
}

.dataTable-table label.container {
  margin-top: 10px;
}

.zebra tr:nth-child(even) td {
  background-color: white;
}

.zebra tr:nth-child(odd) td {
  background-color: #eeeeee;
}

.zebra tr:first-child:hover td {
  cursor: default;
}

.zebra tr:hover td {
  background-color: #f9f9f9;
  cursor: pointer;
}

table {
  text-align: left;
  line-height: 150%;
  margin-left: 0;
  margin-right: 0;
  width: 100%;
  margin-bottom: 10px;
  max-width: 100vw;
  box-sizing: border-box;
  border-collapse: collapse;
}

input[type=submit], input[type=button], input[type=file]+label, button {
  background-color: #f5821e;
  color: white;
  font-weight: bold;
  padding: 15px;
  padding-bottom: 12px;
  font-family: 'Josefin Sans', sans-serif;
  width: 150px;
  min-height: 35px;
  margin-bottom: 28px;
  display: block;
  vertical-align: middle;
  text-transform: uppercase;
}

input[type=file] {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

input[type=file]+label {
  background-color: var(--darker);
  border: none;
  color: white;
  font-weight: normal;
  font-size: 13.333px;
  height: 25px;
  min-width: 250px;
  padding-top: 8px;
  padding-left: 45px;
  margin-bottom: 0;
  background-image: linear-gradient(#f5821e,#f5821e,#f5821e);
  var(--darker2));
}

input[type=file]+label:hover {
  text-decoration: underline;
}

input[type=submit], input[type=button] {
  border-style: none;
}

input[type=submit]:hover, input[type=button]:hover, button:hover {
  text-decoration: underline;
}

#errors {
  width: 100%;
  background-color: #ff9c00;
  color: white;
  padding: 5px;
  top: 0px;
  overflow: hidden;
  animation: fadeIn ease 1s;
  box-sizing: border-box;
  position: absolute;
  z-index: 10;
}

@keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}

input[type=text], input[type=password] {
  height: 26px;
}

:focus-visible {
  outline: none;
}

textarea {
  resize: none;
  text-align: left;
  line-height: 100%;
  border: 1px solid #d1d5da;
  max-width: 400px;
  padding-left: 5px;
  font: inherit;
}


.title {
  background-color: var(--darker);
  background-image: linear-gradient(var(--darker1), var(--darker), var(--darker2));
  background-position: right 6px center, left top;
  border-radius: 0;
  color: white;
  font-size: 20px;
  font-weight: bold;
  height: 24px;
  vertical-align: top;
}

td, th {
  padding: 5px;
  padding-bottom: 0px;
}

main a {
  color: #f68c1e;
  text-decoration: none;
  background-color: transparent;
  text-transform: none;
}

.notrail {
  margin-bottom: -2px;
}

.withtrail {
  margin-bottom: 3px;
}

.ui-accordion-header, .ui-corner-top, .ui-state-default, .ui-accordion-icons, .ui-accordion-header-collapsed, .ui-corner-all {
  border-radius: 0;
}

.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active {
  border: 0;
}

.tr1 td:nth-child(1), .tr1 th:nth-child(1), .tr2 td:nth-child(2), .tr2 th:nth-child(2),
.tr3 td:nth-child(3), .tr3 th:nth-child(3), .tr4 td:nth-child(4), .tr4 th:nth-child(4),
.tr5 td:nth-child(5), .tr5 th:nth-child(5), .tr6 td:nth-child(6), .tr6 th:nth-child(6),
.tr7 td:nth-child(7), .tr7 th:nth-child(7), .tr8 td:nth-child(8), .tr8 th:nth-child(8),
.tr9 td:nth-child(9), .tr9 th:nth-child(9) {
  text-align: right
}

.tc1 td:nth-child(1), .tc1 th:nth-child(1), .tc2 td:nth-child(2), .tc2 th:nth-child(2),
.tc3 td:nth-child(3), .tc3 th:nth-child(3), .tc4 td:nth-child(4), .tc4 th:nth-child(4),
.tc5 td:nth-child(5), .tc5 th:nth-child(5), .tc6 td:nth-child(6), .tc6 th:nth-child(6),
.tc7 td:nth-child(7), .tc7 th:nth-child(7), .tc8 td:nth-child(8), .tc8 th:nth-child(8),
.tc9 td:nth-child(9), .tc9 th:nth-child(9) {
  text-align: center
}

.ui-state-active {
  background-color: var(--lighter);
  color: var(--darker);
}

.ui-widget-content .ui-state-active {
  background-color: var(--lighter);
  color: var(--darker);
}

.ui-accordion .ui-accordion-content {
  padding: 0;
}

.ui-accordion .ui-accordion-content table {
  padding-top: 5px;
  padding-bottom: 0px;
  border-radius: 0 0 0 0;
  margin-bottom: 5px;
  margin-left: 0px;
}

.ui-accordion .ui-accordion-content table:last-child {
  margin-bottom: 0px;
  border-radius: 0 0 3px 3px;
}

.ui-widget-content {
  border: none;
}

main ul li a {
  text-transform: uppercase;
}

.return {
	text-align: right;
	line-height: 150%;
	margin-left: 0;
	margin-right: 0;
	margin-top: 6;
	margin-bottom: 6;
	background-color: white
}

.delete {
	height: 20px;
	width: 20px;
	display: inline;
	margin-top: -22px;
	margin-left: 6px;
	display: inline;
	vertical-align: middle;
}

.I {
      color: #f68c1e;
}

div.links {
  margin-left: 90px;
  height: 20px;
  font-size: 13.33px;
}

#fields {
  height: 0;
}

.approval td {
  background-color: rgba(255, 0, 0, 0.2) !important;;
}

.filename {
  display: inline-block;
  width: 160px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

label.container {
	display: inline-block;
	position: relative;
	padding-left: 30px;
	padding-top: 4px;
	margin-top: 10px;
	margin-bottom: 0px;
	cursor: pointer;
	user-select: none;
	vertical-align: middle;
	border-radius: 3px 3px 3px 3px;
	min-height: 20px;
}

label.container input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

.checkmark {
	position: absolute;
	top: -7px;
	left: 0;
	height: 20px;
	width: 21px;
	background-color: #fff;
	border: 1px solid #d1d5da;
	border-radius: 3px 3px 3px 3px;
	vertical-align: middle;
}

label.container:hover input ~ .checkmark {
	background-color: #e1e5ea;
	border: 1px solid #d1d5da;
}

label.container input:checked ~ .checkmark {
	border: 1px solid #d1d5da;
	background-color: var(--darker);
	background-image: linear-gradient(var(--darker1), var(--darker),
		var(--darker2));
}

.checkmark:after {
	content: "";
	position: absolute;
	display: none;
}

label.container input:checked ~ .checkmark:after {
	display: block;
}

label.container .checkmark:after {
	left: 6.5px;
	top: 2px;
	width: 3px;
	height: 8px;
	border: solid white;
	border-width: 0 3px 3px 0;
	transform: rotate(45deg);
}

.traffic_light {
	height: 16px;
	width: 16px;
	vertical-align: middle;
}

img.bdpButton {
	vertical-align: top;
	margin-top: 3px;
	margin-left: 2px;
	cursor: pointer;
	border: 0;
        height: 20px;
}

.dpDiv {
	font-size: 8pt;
}

.dpTable {
	margin-left: 0;
	margin-right: 0;
	margin-top: 0;
	margin-bottom: 0;
	font-size: 8pt;
	text-align: center;
	color: #505050;
	width: 200px;
	border: none;
}

.dpTR {
	margin-left: 4;
	margin-right: 4;
	margin-top: 4;
	margin-bottom: 4;
	font-size: 8pt;
	height: 12px;
}

.dpTitleTR {
	margin-left: 0;
	margin-right: 0;
	margin-top: 0;
	margin-bottom: 0;
	color: white;
	background-color: var(--darker);
	background-image: linear-gradient(var(--darker1), var(--darker), var(--darker2));
	height: 10px;
}

.dpTitleText {
	color: white;
	font-size: 10pt;
}

.dpDayTR {
	margin-left: 4;
	margin-right: 4;
	margin-top: 4;
	margin-bottom: 4;
	font-size: 8pt;
	border: none;
	background-color: var(--lighter);
	height: 12px;
}

.dpTodayButtonTR {
	margin-left: 0;
	margin-right: 0;
	margin-top: 0;
	margin-bottom: 0;
	height: 15px;
	border: none;
	background-color: white;
	padding: 0;
}

.dpTD {
	margin-left: 4;
	margin-right: 4;
	margin-top: 4;
	margin-bottom: 4;
	padding-left: 7px;
	font-size: 8pt;
	border: 1px solid white;
	background-color: #eeeeee;
	width: 30px;
}

.dpDayHighlightTD {
	margin-left: 4;
	margin-right: 4;
	margin-top: 4;
	margin-bottom: 4;
	font-size: 8pt;
	border: 1px solid #ece9d8;
	border-color: white;
	color: white;
	background-color: var(--darker);
}

.dpTD:hover, .dpDayHighlightTD:hover {
	margin-left: 4;
	margin-right: 4;
	margin-top: 4;
	margin-bottom: 4;
	font-size: 8pt;
	background-color: white;
	border: 1px solid white;
	cursor: pointer;
	color: var(--darker);
	padding-left: 7px;
}

.dpTitleTD {
	margin-left: 4;
	margin-right: 4;
	margin-top: 4;
	margin-bottom: 4;
	font-size: 7pt;
	font-weight: bold;
	vertical-align: middle;
	text-align: center;
	border: none;
}

.dpButtonTD {
	margin-left: 0;
	margin-right: 0;
	margin-top: 0;
	margin-bottom: 0;
	font-size: 8pt;
	width: 10px;
	padding: 0;
	border: none;
	display: inline-grid;
}

.dpTodayButtonTD {
	font-size: 8pt;
	padding: 0;
	border: none;
}

.dpDayTD {
	font-size: 8pt;
	background-color: var(--lighter);
	color: var(--darker);
	font-weight: bold;
	border: 1px solid white;
}

.dpDayHighlight {
	font-size: 8pt;
	font-weight: bold;
	padding-left: 2px;
}

.dpTodayButton {
	width: 97px;
	border: none;
	margin: 0;
	padding: 0;
        display: inline-block !important;
}

.dpButton {
	vertical-align: middle;
	padding: 0px !important;
	width: max-content !important;
	margin-bottom: 2px !important;
	margin: auto;
	border: none;
	background-color: var(--darker);
}
.dataTable-selector {
	padding: 4px;
}

.tooltip {
  position: relative;
  display: inline-block;
  margin-left: 5px;
    color: red;
}

.tooltip:before {
  content: "\24D8";
  font-weight: bold;
}

.tooltip .tooltiptext {
  visibility: hidden;
    min-width: 250px;
  background-color: white;
  color: var(--darker);
  text-align: center;
  border-radius: 6px;
  position: absolute;
  z-index: 1;
  border: solid 1px;
  margin-left: 3px;
  font-size: smaller;
  padding: 10px;
  text-align: left;
  line-height: 1.4;
  border: 1px solid;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}