@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;700;900&display=swap');

:root {
  --fs-25: .25rem;
  --fs-50: .50rem;
  --fs-75: .75rem;
  --fs-100: 1rem;
  --fs-150: 1.5rem;
  --fs-175: 1.75rem;
  --fs-200: 2rem;
  --bg-main: rgb(45, 45, 45);
  --bga-main: rgba(45, 45, 45, 0);
  --bg-hover: rgba(196, 199, 201, 0.97);
  --subbg-hover: rgba(225, 229, 231, 0.97);
  --bg-alt: rgb(245, 248, 250);
  --bga-alt: rgba(245, 248, 250, 0.97);
  --fc-main: black;
  --fc-main-hover: rgb(39, 185, 102);
  --fc-alt: whitesmoke;
  --fc-warn: blue;
  --bg-wait: rgba(60, 60, 60, .8);
  --btn-bg: #0F233B;
  --fc-nopat: red;
  --link-color: blue;
  --link-hover-color: darkcyan;
  --submenu-bgc: rgb(224, 214, 214);
  --submenu-shadow: rgba(0, 0, 0.1);
  /*Items that won't change color during a theme change*/
  --bg-sub-main: rgb(245, 248, 250);
  --bga-sub-main: rgba(245, 248, 250, 0.97);
  --fc-sub-main: black;
  --fc-sub-alt: whitesmoke;
  --btn-sub-bg: #0F233B;
  --icon-size: 40px;
  --btn-bg-nc: #0F233B;
  --sidebar-width: 300px;
}

.darkmode {
  --bg-main: rgb(245, 248, 250);
  --bga-main: rgba(245, 248, 250, 0.97);
  --bg-alt: rgb(45, 45, 45);
  --bga-alt: rgba(45, 45, 45, 0.97);
  --bg-hover: rgba(196, 199, 201, 0.97);

  --fc-main: whitesmoke;
  --fc-alt: black;
  --fc-warn: yellow;
  --btn-bg: #ffffff;
  --fc-nopat: yellow;
  --link-color: yellow;
  --link-hover-color: green;
  --submenu-bgc: rgb(68, 55, 55);
  --submenu-shadow: rgb(248, 246, 246);

}

body {
  font-family: Raleway;
  margin: 0px;
  padding: 0px;
}

span {
  margin: 0px;
  padding: 0px;
}

.ProgramTitle {
  font-size: 2vw;
  padding-left: 10vw;
  color: var(--fc-main);
}

.blur-all {
  -webkit-filter: blur(10px);
  -moz-filter: blur(10px);
  -o-filter: blur(10px);
  -ms-filter: blur(10px);
  filter: blur(10px);
}

/*Login items*/
#loginloader {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  z-index: -1;
  overflow: hidden;
  background: rgba(60, 60, 60, .8);
  opacity: 0;
}

#loginloader.active {
  opacity: 1;
  width: 100%;
  height: 100%;
  z-index: 3001;

}

.passwordupdate {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;

}

.passwordupdate div:not(:last-child) {
  padding-bottom: .5em;
}

.passwordinputcontainer {
  width: 20vw;
  height: 7vh;
}

.passwordinputcontainer input {
  width: 100%;
  height: 5vh;
}

.passwordinputcontainer button {
  width: 10vw;
}

.mfacontainer {
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 0;
  margin-top: 3rem;
  transition: all 0.3s ease-in-out;
}

.mfacontainer>div {
  display: none;
}

.mfacontainer>input {
  display: none;
}

.mfacontainer.active {
  opacity: 1;
  height: 10vh;
}

.mfacontainer.active>div {
  display: initial;
}

.mfacontainer.active>input {
  display: initial;
}

.mfacontainer div:not(:first-child) {
  padding-top: 1em;
}

.mfacontainer2 {
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 0;
  margin-top: 15vh;
  transition: all 0.3s ease-in-out;
}

.mfacontainer2>div {
  display: none;
}

.mfacontainer2>input {
  display: none;
}

.mfacontainer2.active {
  opacity: 1;
  height: 10vh;
}

.mfacontainer2.active>div {
  display: initial;
}

.mfacontainer2.active>input {
  display: initial;
}

.mfacontainer2 div:not(:first-child) {
  padding-top: 1em;
}

.qrcontainer {
  display: none;
  flex-direction: column;
  align-items: center;

}

.qrcontainer img {
  padding-bottom: 1em;
}

.adminlink {
  display: none;
}

.adminlink.active {
  display: inline;
}

.loginbuttoncontainer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1em;
  width: 100%;
}

/*End Login Items*/

/* Nav Items */
.navbar {
  background-color: var(--bg-alt);
  background-color: var(--bga-alt);
  box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 1);
  position: fixed;
  max-width: 100%;
  z-index: 1;
  height: 50px;

}

.nav-link {
  text-decoration: none;
  color: var(--fc-main);
}

.nav-link:hover {
  text-decoration: none;
  color: var(--fc-main);
}

.nav-link:visited {
  color: var(--fc-main);
}

.navbar-brand {
  color: var(--fc-main);
}

.navbar-nav>.patient-demographic {
  padding-left: 30px;
  padding-right: 30px;
}

.nav-side-menu {
  overflow: auto;
  font-size: 1.5vw;
  font-weight: 100;
  font-variant: small-caps;
  line-height: 10px;
  background-color: var(--bg-alt);
  background-color: var(--bga-alt);
  box-shadow: 1px 0px 10px 0px rgba(0, 0, 0, 1);
  border-radius: 3px;
  position: fixed;
  top: 60px;
  width: 18%;
  left: .2em;
  bottom: .3em;
  color: var(--fc-main);
}

.nav-side-menu ul,
.nav-side-menu li {
  list-style: none;
  padding: 10px;
  margin: 0px;
  line-height: 3%;
  cursor: pointer;
}

.nav-side-menu ul :not(collapsed) .arrow:before,
.nav-side-menu li :not(collapsed) .arrow:before {
  font-family: FontAwesome;
  content: "\f078";
  display: inline-block;
  padding-left: 10px;
  padding-right: 10px;
  vertical-align: middle;
}

.nav-side-menu ul .active,
.nav-side-menu li .active {
  border-left: 3px solid #d19b3d;
  background-color: #4f5b69;
}

.nav-side-menu li {
  padding-left: 0px;
  border-bottom: 1px solid #23282e;
  -webkit-transition: all 125ms ease;
  -moz-transition: all 125ms ease;
  -o-transition: all 125ms ease;
  -ms-transition: all 125ms ease;
  transition: all 125ms ease;
}

.nav-side-menu li a {
  text-decoration: none;
  color: var(--fc-main);
}

.nav-side-menu li a i {
  padding-left: 10px;
  padding-right: 20px;
}

.nav-side-menu li:hover {
  background-color: var(--bg-hover);
  box-shadow: 0px 0px 10px 0px rgba(60, 60, 60, 1);
}

@media (max-width: 767px) {
  .nav-side-menu {
    position: relative;
    width: 100%;
    margin-bottom: 10px;
  }
}

@media (min-width: 767px) {
  .nav-side-menu .menu-list .menu-content {
    display: block;
  }
}

/*pagination styling*/
/*pagination styling*/
.pagination {
  --size: 30vw;
  color: var(--fc-main);
  padding-top: 1em;
  align-self: center;
  width: var(--size);
  opacity: 0;
}

.pagination ul {
  width: calc(--size - 2vw);
  display: flex;
  flex-wrap: wrap;
  background: var(--bg-alt);
  padding: 8px;
  border-radius: 50px;
  box-shadow: 0px 10px 15px var(--bg-main);
}

.pagination ul li {
  color: var(--fc-main);
  list-style: none;
  line-height: 45px;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  user-select: none;
  transition: all 0.3s ease;
}

.pagination ul li.numb {
  list-style: none;
  height: 45px;
  width: 45px;
  margin: 0 3px;
  line-height: 45px;
  border-radius: 50%;
}

.pagination ul li.numb.first {
  margin: 0px 3px 0 -5px;
}

.pagination ul li.numb.last {
  margin: 0px -5px 0 3px;
}

.pagination ul li.dots {
  font-size: 22px;
  cursor: default;
}

.pagination ul li.btn-nav {
  padding: 0 20px;
  border-radius: 50px;
}

.pagination ul li.next {
  padding: 0 20px;
  border-radius: 50px;
  justify-self: flex-end;
}

.pagination li.active,
.pagination ul li.numb:hover,
.pagination li:first-child:hover,
.pagination ul li:last-child:hover {
  color: var(--fc-alt);
  background: var(--bg-main);
}

/*End Nav Items*/

/*Main page content*/
.patient-image {
  margin-left: auto;
  margin-right: auto;
  max-width: 80%;
  height: auto;
  padding-top: 30px;
}

.background {
  position: fixed;
  background-size: cover;
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  top: 3%;
  left: 0;
  background-image: url('../images/NewITBackground.jpg');
}

.backgroundfull {
  position: fixed;
  background-size: cover;
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  top: 0px;
  left: 0;
  background-image: url('../images/NewITBackground.jpg');
}

input {
  padding: 10px;
  font-family: FontAwesome, "Open Sans", Verdana, sans-serif;
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
}

.card-header {
  color: var(--fc-main);
  font-variant: small-caps;
  background-color: var(--bg-alt);
  background-color: var(--bga-alt);

}

.expandHeader {
  position: fixed;
  height: 15px;
  width: 70%;
  text-align: center;
  cursor: pointer;
}

.displayHeader {
  display: block;
  height: 50px;
  display: none;
  width: 100%;
  color: var(--fc-alt);
  font-size: 20px;
  padding-left: 10px
}

.DemoFormat {
  color: var(--fc-alt);
  margin: 0;
  padding-left: 0;
  float: left;
  font-size: 20px;
}

.headerColumn {
  text-align: right;
  padding: 0;
  font-size: 20px;
}

.valueColumn {
  text-align: left;
  padding-left: 10px;
  font-size: 18px;
}

.patientdroplist {
  font-family: Raleway;
  background-color: var(--bg-alt);
  background-color: var(--bga-alt);
  box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 1);
  color: var(--fc-main);
}

/*end Main page content*/

/*Login style*/
/*Login style*/
.LoginContainter {
  width: 500px;
  height: 70vh;
  margin-bottom: 10vh;
  top: 25%;
  right: 0;
  left: 0;
  bottom: 0;
  background: var(--bg-alt);
  background-color: var(--bga-alt);
  margin-left: 35%;
  position: fixed;
  text-align: center;
  color: var(--fc-main);
  z-index: 2001;
}

.LoginContainter h1:nth-child(1) {
  background-color: var(--bga-alt);
}

.LoginContainter h1:nth-child(2) {
  padding-top: 3px;
  background-color: var(--bga-alt);
}

.LoginContainerInput {
  width: 250px;
  height: 35px;
  display: inline-block;
}

.LoginContainerSubmit {
  color: var(--fc-main);
  border: none;
  background: transparent;
  cursor: pointer
}

.LoginContainerSubmit:hover {
  text-decoration: underline;
}

.LoginErrorStyle {
  color: var(--fc-alt);
  background-color: red;
  margin-top: 10px;
}

.LoginInput {
  display: flex;
  flex-direction: column;
}

.LoginInput div {
  margin-bottom: 1em;
}

#loginbutton {
  background-color: var(--fc-alt);
  opacity: 0.6;
  -moz-border-radius: 15px;
  -webkit-border-radius: 15px;
  border-radius: 15px;
  border: 5px solid var(--fc-alt);
  padding: 2px;
  margin-left: 35%;
  width: 75px;
  height: 40px;
  text-align: center;
  color: var(--fc-main);
  vertical-align: middle;
}

#loginbutton:hover {
  opacity: 0.9;
}

/*End login style*/

/*registrition styling*/
#regbutton {
  background-color: whitesmoke;
  opacity: 0.6;
  -moz-border-radius: 15px;
  -webkit-border-radius: 15px;
  border-radius: 15px;
  border: 5px solid whitesmoke;
  padding: 2px;
  width: 80px;
  height: 40px;
  text-align: center;
  color: var(--fc-main);

}

#regbutton:hover {
  opacity: 0.9;
}

.regFormat {
  color: var(--fc-alt);
  margin: 0;
  padding-left: 0;
}

.regformatbuttons {
  color: var(--fc-alt);
  margin: 0;
  padding-left: 50px;
}

/*End Registration styling*/


/*Misc items*/
.table-hover tbody tr:hover td {
  color: var(--fc-main);
}

.hiddenrow {
  display: none;
}

.detailtoggle {
  cursor: pointer;
}

.flowsheetrow {
  width: 150px;
  height: 35px;
  white-space: nowrap;
  overflow: hidden;
}

#obsdoc {
  position: fixed;
  top: 0;
  left: 5%;
  width: 100%;
  height: 100%;
  z-index: 1001;
  display: none;
  overflow: auto;
}

#paging {
  width: 100%;
}

#childleft {
  cursor: pointer;
}

.card-body-scroll ol li {
  font-size: 25px;
  font-weight: normal;
}

.card-body-scroll ol li h5 {
  font-weight: bold;
}

.card-body-scroll ol li a {
  color: red;
}

.MenuHeight {
  height: 65%;
  color: var(--fc-main);
}

.NoPatientStyle {
  display: none;
  font-size: var(--fs-200);
  color: var(--fc-nopat);
  margin-left: 25%;
}

.NoPatientStyle.active {
  display: inline;
}

.PatAuditSideMenu {
  color: var(--fc-main);
}

.Whitefont {
  color: var(--fc-main);
}

#FlowValue {
  margin-top: 5%;
  margin-right: 3%;
}

.UserContextStyle {
  margin-bottom: 1vw;
}

#recentbody {
  font-size: .9vw;
  padding: 5px 5px;
}

#recentbody input {
  height: 15px;
  width: 15px;
  margin-right: 5px;
  font-size: .9vw;
}

#recentbody label {
  font-size: .9vw;
}

.BoardDisplay {
  height: 100%;
  overflow: auto;
  border: none;
  width: 95%;
}

/*search bar styling*/
.search-barcontent {
  background: white;
  width: 50vw;
  padding: 3em;
  box-shadow: 0 0 3em rgba(0, 0, 0, 0.15);
  position: relative;
}

.search-bar {
  --size: 60px;
  background: white;
  border: 2px solid var(--bg-main);
  display: flex;
  border-radius: 50px;
  height: var(--size);
  width: calc(40vw - 15vw);
  padding: 3px;
  position: relative;
  overflow: hidden;
}

.search-bar-input {
  font-size: var(--fs-150);
  padding: 0 0.5em;
  border: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  cursor: pointer;
  width: 21.5vw;
}

.search-bar-input:focus {
  outline: 0;
}

.search-bar-submit {
  font-size: var(--fs-150);
  cursor: pointer;
  border: 0;
  background: transparent;
  border-radius: 50%;
  width: calc(var(--size) - 10px);
  height: calc(var(--size) - 10px);
  margin-left: auto;
}

.search-bar:focus-within .search-bar-submit {
  background: var(--bg-main);
  color: white;
}

.search-bar:focus-within .search-bar-submit:focus,
.search-bar:focus-within .search-bar-submit:hover {
  outline: 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.35);
}

.input-bar {
  border: 2px solid var(--bg-main);
  display: flex;
  border-radius: 5px;
  background: white;
  height: var(--icon-size);
  width: 20vw;
  padding: 3px;
  position: relative;
  overflow: hidden;
}

.input-bar:focus-within {
  border: 4px solid rgb(109, 196, 217);
  box-shadow: 4px 2px 2px rgba(109, 196, 217, .50);
}

.input-bar-input {
  font-size: var(--fs-100);
  padding: 0 0.5em;
  border: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(var(--icon-size) - 10px);
  cursor: pointer;
  width: 15vw;
  background-color: white;
}

.input-bar-input:focus {
  outline: 0;
  background: transparent;
}

.input-bar-submit {
  font-size: var(--fs-100);
  border: 0;
  background: transparent;
  width: calc(var(--size) - 10px);
  height: calc(var(--size) - 10px);
  margin-right: auto;
}

.copy-button-style {
  margin-left: .5em;
  color: var(--fc-main);
  text-decoration: none;
  border: none;
  background: transparent;
}

.copy-button-style:hover {
  text-decoration: none;
  color: var(--fc-main);
  cursor: pointer;
  border: none;
  background: transparent;
}

.copy-button-style[data-active="active"] {
  color: var(--fc-main);
}

.copy-button-style[data-active="inactive"] {
  color: grey;
  cursor: default;
}

.copy-button-style:focus {
  outline: 0;
}

/*End Misc Items*/

/*Page Loader  Styling*/
#loader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-wait) url('../images/VAyR.gif') no-repeat 50%;
  z-index: 3000;
  color: var(--fc-alt);
}

#patloader {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-wait) url('../images/ajax-loader.gif') no-repeat 50%;
}

#mainloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1001;
  background-color: var(--bg-wait);
  display: none;
  overflow: hidden;
}

.pageloader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1001;
  background-color: var(--bg-wait);
  display: none;
  overflow: hidden;
}

.page #popuploader {
  position: fixed;
  top: 5%;
  left: 20%;
  width: 75%;
  height: 90%;
  z-index: 1001;
  display: none;
  overflow: hidden;
}

#contactpopuploader {
  position: fixed;
  top: 5%;
  left: 20%;
  width: 75%;
  height: 90%;
  z-index: 1001;
  display: none;
  overflow: hidden;
}

/*End Page Loader Styling*/

/*Popup styling*/
#popupbackground {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-wait);
}

.cancel {
  text-align: right;
  height: 35px;
  margin-right: 2vw;
  cursor: pointer;
}

.cancel a {
  color: var(--fc-main);
}

.popupdata {
  opacity: 0;
  position: fixed;
  border: 16px solid black;
  background-color: rgb(245, 248, 250);
  z-index: 1003;
  color: black;
  overflow: auto;
  transition: all 0.3s ease-in-out;

}

.popupdata.active {
  opacity: 1;
  top: 10%;
  left: 25%;
  width: 50%;
  height: 70%;
  padding: 16px;
}

.contactpopupdata {
  display: none;
  position: relative;
  top: 5%;
  left: 20%;
  width: 50%;
  height: 90%;
  padding: 16px;
  border: 16px solid black;
  background-color: rgb(245, 248, 250);
  z-index: 1003;
  color: black;
  overflow: auto;
}

.contacteditpopupdata {
  display: none;
  position: fixed;
  top: 5%;
  left: 35%;
  width: 34%;
  height: 90%;
  padding: 16px;
  background-color: var(--bg-alt);
  box-shadow: 10px 5px 5px 1px var(--bg-main);
  z-index: 1004;
  color: var(--fc-main);
  overflow: auto;
}

.additionscartpopup {
  display: none;
  position: fixed;
  top: 5%;
  left: 20%;
  width: 70%;
  height: 90%;
  padding: 1em;
  background-color: var(--bg-alt);
  box-shadow: 10px 5px 5px 1px var(--bg-main);
  z-index: 1005;
  color: var(--fc-main);
}

.companysearchpopupdata {
  display: none;
  position: fixed;
  top: 5%;
  left: 20%;
  width: 75%;
  height: 100vh;
  max-height: 90%;
  padding: 16px;
  box-shadow: 5px 10px 20px var(--fc-main);
  background-color: var(--bg-alt);
  z-index: 1003;
  /* color: var(--fc-main); */
}

.realaboutscreen {
  display: none;
  position: fixed;
  top: 10%;
  left: 30%;
  width: 50%;
  height: 70%;
  padding: 16px;
  border: 16px solid black;
  background-color: rgb(245, 248, 250);
  z-index: 1002;
  color: black;
}

.AboutScreenHeader {
  font-size: 1.5vw;
  color: black;
  padding-top: 2%;
  width: 100%;
  text-align: center;
}

.ChartviewerSplash {
  width: 60%;
  height: 15vw;
  margin-left: 25%;
  margin-top: 2%;
  margin-bottom: 0;
  background-image: url('../images/NewITBackground.jpg');
  background-size: cover;
  text-align: left;
  font-family: Raleway;
  font-variant: small-caps;
}

.ChartviewerSplash div {
  height: 95%;
  padding-top: 30%;
  margin-right: 5%;
  margin-left: 15%;
}

.ChartviewerSplash div p:nth-child(1) {
  font-weight: bold;
  font-size: 1.5vw;
  color: whitesmoke;
  padding: 0;
  margin: 0;
}

.ChartviewerSplash div p:nth-child(2) {
  color: whitesmoke;
  font-size: 1.5vw;
  margin-top: 1%;
  padding: 0;
}

.AboutCopyrightstyle {
  font-size: 1.5vw;
  bottom: 1%;
  color: black;
  margin-top: 5%;
  text-align: center;
}

.FlowsheetValuePop {
  display: none;
  position: fixed;
  top: 10%;
  left: 30%;
  width: 50%;
  height: 70%;
  padding: 16px;
  border: 16px solid black;
  background-color: rgb(245, 248, 250);
  z-index: 1002;
  color: black;
  overflow: auto;
}

#ViewDocLink {
  float: left;
  margin-top: 10px;
  color: black;
  position: fixed;
}

.FlowButtons {
  display: none;
  background-color: whitesmoke;
  width: 25%;
  float: right;
  padding-left: 10px;
  padding-right: 0;
  color: black;
}

/*End Popup styling*/

/*Button Styling*/
.btn-resource {
  background: var(btn-bg-nc);
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  color: var(--fc-alt);
  font-family: Open Sans;
  font-size: .9vw;
  font-weight: 100;
  padding: 5px 10px 5px 10px;
  border: solid var(--fc-main) 1px;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  width: 100%;
}

.btn-resource:hover {
  background-color: var(--bg-hover);
  color: var(--fc-alt);
  text-decoration: none;
}

.btn-secondary {
  background: var(--btn-bg);
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  color: var(--fc-alt);
  font-family: Open Sans;
  font-size: 15px;
  font-weight: 100;
  padding: 5px 10px 5px 10px;
  border: solid var(--fc-main) 1px;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  width: 100%;
}

.btn-secondary:hover {
  background-color: var(--bg-hover);
  color: var(--fc-alt);
  text-decoration: none;
}

.btnActive {
  background: #34d976;
  background-image: -webkit-linear-gradient(top, #34d976, #76b82b);
  background-image: -moz-linear-gradient(top, #34d976, #76b82b);
  background-image: -ms-linear-gradient(top, #34d976, #76b82b);
  background-image: -o-linear-gradient(top, #34d976, #76b82b);
  background-image: linear-gradient(to bottom, #34d976, #76b82b);
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  color: #FFFFFF;
  font-family: Open Sans;
  font-size: 15px;
  font-weight: 100;
  padding: 5px 10px 5px 10px;
  box-shadow: 0px 1px 11px 0px #FFFFFF;
  -webkit-box-shadow: 0px 1px 5px 0px #FFFFFF;
  -moz-box-shadow: 0px 1px 5px 0px #FFFFFF;
  text-shadow: 1px 1px 10px #000000;
  border: solid #FFFFFF 1px;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  width: 100%;
}

.btnActive:hover {
  background: #3cb0fd;
  background-image: -webkit-linear-gradient(top, #3cb0fd, #3498db);
  background-image: -moz-linear-gradient(top, #3cb0fd, #3498db);
  background-image: -ms-linear-gradient(top, #3cb0fd, #3498db);
  background-image: -o-linear-gradient(top, #3cb0fd, #3498db);
  background-image: linear-gradient(to bottom, #3cb0fd, #3498db);
  text-decoration: none;
}

.btnInactive {
  background: #d98934;
  background-image: -webkit-linear-gradient(top, #d98934, #b8312c);
  background-image: -moz-linear-gradient(top, #d98934, #b8312c);
  background-image: -ms-linear-gradient(top, #d98934, #b8312c);
  background-image: -o-linear-gradient(top, #d98934, #b8312c);
  background-image: linear-gradient(to bottom, #d98934, #b8312c);
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  color: #FFFFFF;
  font-family: Open Sans;
  font-size: 15px;
  font-weight: 100;
  padding: 5px 10px 5px 10px;
  box-shadow: 0px 1px 11px 0px #FFFFFF;
  -webkit-box-shadow: 0px 1px 5px 0px #FFFFFF;
  -moz-box-shadow: 0px 1px 5px 0px #FFFFFF;
  text-shadow: 1px 1px 10px #000000;
  border: solid #FFFFFF 1px;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  width: 100%;
}

.btnInactive:hover {
  background: #3cb0fd;
  background-image: -webkit-linear-gradient(top, #3cb0fd, #3498db);
  background-image: -moz-linear-gradient(top, #3cb0fd, #3498db);
  background-image: -ms-linear-gradient(top, #3cb0fd, #3498db);
  background-image: -o-linear-gradient(top, #3cb0fd, #3498db);
  background-image: linear-gradient(to bottom, #3cb0fd, #3498db);
  text-decoration: none;
}

.btn-alt {
  background: #0F233B;
  background-image: -webkit-linear-gradient(top, #0F233B, #01050A);
  background-image: -moz-linear-gradient(top, #0F233B, #01050A);
  background-image: -ms-linear-gradient(top, #0F233B, #01050A);
  background-image: -o-linear-gradient(top, #0F233B, #01050A);
  background-image: linear-gradient(to bottom, #0F233B, #01050A);
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  color: #FFFFFF;
  font-family: Open Sans;
  font-size: .9vw;
  font-weight: 100;
  padding: 5px 10px 5px 10px;
  box-shadow: 0px 1px 11px 0px #FFFFFF;
  -webkit-box-shadow: 0px 1px 5px 0px #FFFFFF;
  -moz-box-shadow: 0px 1px 5px 0px #FFFFFF;
  text-shadow: 1px 1px 10px #000000;
  border: solid #FFFFFF 1px;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  width: 100%;
}

.btn-alt:hover {
  background: #F5EFED;
  background-image: -webkit-linear-gradient(top, #F5EFED, #999796);
  background-image: -moz-linear-gradient(top, #F5EFED, #999796);
  background-image: -ms-linear-gradient(top, #F5EFED, #999796);
  background-image: -o-linear-gradient(top, #F5EFED, #999796);
  background-image: linear-gradient(to bottom, #F5EFED, #999796);
  text-decoration: none;
}

/* End Button Styling*/

/*Content styling*/
.CategoryContent {
  width: 100%;
  height: 100%;
  background-color: var(--bg-alt);
  background-color: var(--bga-alt);
  margin-left: 18.5%;
  border: none;
}

.ItemContent {
  position: relative;
  border: none;
  height: 90vh;
  width: 100%;

}

.ItemContentFloatLeft {
  float: left;
}

.ItemContentPatHeader {
  font-family: Raleway;
  font-size: 2.5vw;
  border: none;
}

.ItemContentPatHeaderRow {
  float: left;
  margin-left: 2%;
  color: var(--fc-main);
}

.ItemContentPageNav {
  padding: 0;
  margin: 0;
  vertical-align: center;
}

.ItemContentPagNavTable {
  margin-left: 30%;
  width: 100%;
  color: var(--fc-main);
}

.ItemContentPageNavColumn {
  margin-left: 50%;
  width: 100%;
  font-family: Lato;
}

.card-body-scroll {
  overflow: auto;
  color: var(--fc-main);
  height: 95%;
}

/*End Content Styling*/

/*Top nav bar search pat info, and User info*/
#patdetail {
  font-family: lato;
}

#patsearch {
  height: 35px;
  width: 13vw;
  font-size: .9vw;
}

.patsearchlist {
  cursor: pointer;
}

.patsearchlist a {
  font-size: .9vw;
}

#patList {
  display: none;
  width: 18vw;
  height: 300px;
  overflow-y: auto;
  background-color: var(--fc-alt);
  margin-left: 17px;
  top: 45px;
}

#search {
  display: none;
  width: 18vw;
  height: 50px;
  background-color: rgba(253, 132, 105, 1.0);
  margin-left: 17px;
  top: 342px;
  padding: 5px 0 0 0;
  text-align: right
}

.searchlink {
  color: var(--fc-main);
}

#patinfo {
  padding-left: 100px;
  font-family: 'Raleway:800', Lato;
}



.searchkeylink {
  font-size: 1.5vw;
  font-weight: bold;
  color: var(--fc-main);
}

.patientdemodata {
  font-size: 1.5vw;
  font-weight: bold;
  color: var(--fc-main);
  padding-top: 1%;
}

.searchkeylinksubstyle {
  margin: 0;
  color: var(--fc-main);
  font-size: 15px;
}

.recentListStyle {
  color: var(--fc-main);
}

.recentListStyle:hover {
  color: black;
}

.user-info-top {
  padding-right: 50px;
  color: black
}

.user-info-top li div a {
  font-size: .9vw;
}

.imagestyle {
  width: 25px;
  text-align: right;
  padding-right: 10px;
  padding-top: .25em;
  float: left;
}

#pagenav {
  font-family: Lato;
  font-size: 25px;
  margin-left: 30%;
  width: 100%;
}

.Menu-Content-Icon-Style {
  padding-right: 25px;
  padding-left: 10px;
}

/*Advanced Search style*/
.AdvancedSearchStyleTop {
  width: 80%;
  margin-right: 1%;
  margin-top: 1%;
  padding-top: 1.2%;
  background-color: var(--bg-alt);
  background-color: var(--bga-alt);
}

.AdvancedSearchStyleBottom {
  width: 80%;
  margin-right: 1%;
  margin-top: 0;
  padding-top: 0;
  background-color: var(--bg-alt);
  background-color: var(--bga-alt);
  height: 30%;
}

.AdvancedStyleOverflow {
  text-align: center;
  margin-left: 5%;
  overflow-y: auto;
  height: 30%;
}

.AdvancedSearchCriteria {
  color: whitesmoke;
  font-size: .9vw;
  width: 100%;
  text-align: center;
}

.AdvancedSearchCriteriaInput {
  width: 25%;
  height: 2vw;
  display: block;
  margin: auto;
}

.AdvancedSearchCriteriaButtonLeft {
  width: 150px;
  float: left;
  margin-left: 38%;

}

.AdvancedSearchCriteriaButtonRight {
  width: 150px;
  float: left;
}

.AdvancedDiv {
  margin-top: 5px;
  text-align: center;
}

.AdvancedNavLink {
  color: var(--fc-main);
}

.AdvancedNavLink:hover {
  color: var(--fc-main);
}

/*End Advanced Search style*/
/*End Top nav bar search pat info, and User info*/

/*Moniker screen formatting*/
.MonikerStamp {
  margin-top: 30px;
  width: 85%;
  height: 20%;
  margin-left: 7%;
  margin-top: 20%;
  margin-bottom: 0;
  background-image: url('../images/NewITBackground.jpg');
  background-size: cover;
}

.MonikerStamp div {
  padding-left: 50px;
  height: 95%;
  padding-top: 30%;
  margin-right: 15%
}

.MonikerStamp div p:nth-child(1) {
  font-weight: bold;
  font-size: .9vw;
  color: whitesmoke;
}

.MonikerStamp div p:nth-child(2) {
  color: whitesmoke;
  font-size: .7vw;
}

.Copyrightstyle {
  font-size: 1vw;
  position: fixed;
  bottom: 2%;
  padding: 0;
  padding-left: 5%;
}

/*End Moniker screen formatting*/

/*Drop down Styling*/
.FilterDropDownRoundedCorners {
  background: #0F233B;
  background-image: -webkit-linear-gradient(top, #0F233B, #01050A);
  background-image: -moz-linear-gradient(top, #0F233B, #01050A);
  background-image: -ms-linear-gradient(top, #0F233B, #01050A);
  background-image: -o-linear-gradient(top, #0F233B, #01050A);
  background-image: linear-gradient(to bottom, #0F233B, #01050A);
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  color: #FFFFFF;
  font-family: Open Sans;
  font-size: .9vw;
  font-weight: 100;
  text-align: center;
  border: .5px solid lightgray;
  height: 2vw;
  width: 100%;
  white-space: nowrap;
}

.FilterDropDownRoundedCorners li a {
  margin-left: 5px;
  color: whitesmoke;
  font-weight: 100;
  font-size: .9vw;
}

.FilterDropDownRoundedCorners li div {
  width: 27vw;
  height: 15vw;
  overflow-y: auto;
  font-size: .5vw;
}

.FilterDropDownRoundedCorners li div input[type=checkbox] {
  margin-left: 1px;
  height: 10px;
  font-size: 1vw;
}

.FilterDropDownRoundedCorners li div label {
  padding-left: 0;
  margin-left: 0;
}

.dropdownbutton {
  background: #ffffff;
  background-image: -webkit-linear-gradient(top, #ffffff, #d0d6d9);
  background-image: -moz-linear-gradient(top, #ffffff, #d0d6d9);
  background-image: -ms-linear-gradient(top, #ffffff, #d0d6d9);
  background-image: -o-linear-gradient(top, #ffffff, #d0d6d9);
  background-image: linear-gradient(to bottom, #ffffff, #d0d6d9);
  -webkit-border-radius: 28px;
  -moz-border-radius: 28px;
  border-radius: 28px;
  font-family: Arial;
  color: #635d63;
  font-size: 12px;
  padding: 5px 10px 5px 10px;
  text-decoration: none;
  width: 100px;
  margin-bottom: 10px;
}

.dropdownbutton:hover {
  cursor: pointer;
}

.ContacTypeDropDownRoundedCorners {
  background: #0F233B;
  background-image: -webkit-linear-gradient(top, #0F233B, #01050A);
  background-image: -moz-linear-gradient(top, #0F233B, #01050A);
  background-image: -ms-linear-gradient(top, #0F233B, #01050A);
  background-image: -o-linear-gradient(top, #0F233B, #01050A);
  background-image: linear-gradient(to bottom, #0F233B, #01050A);
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  color: #FFFFFF;
  font-family: Open Sans;
  font-size: .9vw;
  font-weight: 100;
  text-align: center;
  border: .5px solid lightgray;
  height: 2vw;
  width: 100%;
  white-space: nowrap;
}

.ContacTypeDropDownRoundedCorners li a {
  margin-left: 10px;
  color: whitesmoke;
  font-size: .9vw;
  font-weight: 100;
}

.ContacTypeDropDownRoundedCorners li div {
  width: 20vw;
  height: 10vw;
  overflow-y: auto;
  font-size: .5vw;
}

.ContacTypeDropDownRoundedCorners li div input[type=checkbox] {
  margin-left: 1px;
  height: 10px;
  font-size: 1vw;
}

.ContacTypeDropDownRoundedCorners li div label {
  padding-left: 0;
  margin-left: 0;
}

.ContacTypeDropDownRoundedCorners:hover {
  background: #F5EFED;
  background-image: -webkit-linear-gradient(top, #F5EFED, #999796);
  background-image: -moz-linear-gradient(top, #F5EFED, #999796);
  background-image: -ms-linear-gradient(top, #F5EFED, #999796);
  background-image: -o-linear-gradient(top, #F5EFED, #999796);
  background-image: linear-gradient(to bottom, #F5EFED, #999796);
  text-decoration: none;
}

.columnDropDownBtn {
  color: var(--fc-main);
  font-size: .9vw;
  font-weight: 100;
  padding: 5px 10px 5px 10px;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  width: 100%;
}

.columnDropDownBtn:hover {
  color: var(--fc-main);
  text-decoration: none;
}

.dropdown-menu {
  max-height: 280px;
  max-width: 400px;
  overflow: auto;
  white-space: nowrap;
}

.dropdown-item {
  font-size: .8vw;
  height: 25px;
  padding-top: 2px;
  padding-bottom: 2px;
  vertical-align: middle;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.NavBarDropDown {
  width: 5em;
  margin-right: 50px;
}

.NavBarDropDown li {
  padding-top: 10px;
}



.site_list_dropdown {
  width: 17vw;
  height: 10vw;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: .8vw;
}

.portal_dropdown {
  width: 17vw;
  height: 9vw;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: .8vw;
}

/*End Drop down styling*/

/*Two factor Authenticaion*/
.TwoFactorHeader {
  font-weight: bold;
  margin: auto;
  color: var(--fc-main);
}

.TwoFactorAuthDescription {
  font-size: .8vw;
  text-align: left;
  color: var(--fc-main);
  font-weight: normal;
}

.LoginTwoFactorContainer {
  font-family: 'Raleway', sans-serif;
  font-variant: small-caps;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: --fc-main;
}

.LoginCenterBox {
  width: 25vw;
  height: 50vh;
  background-color: var(--bg-alt);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.LoginItem {
  width: 100%;
  text-align: center;
  border-bottom: .2px solid var(--fc-main);
}

.LoginItem h1 {
  color: var(--fc-main);
}

.LoginInput {
  margin: .5vw;
}

.LoginInput i {
  width: 5px;
  margin-right: .5vw;
  color: var(--fc-main);
}

.LoginAuthCode {
  margin-top: 1em;
  font-family: 'Raleway';
  font-variant: normal;
  font-weight: bold;
  color: var(--fc-main);
}

.LoginAuthCode div {
  margin-bottom: 20px;
}

.LoginButtons {
  margin-top: 1em;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.LoginButtons button {
  width: 5vw;
  margin-right: 1em;
}

/*End Two factor Authenticaion*/

/*Button Position*/
.OuterButtonPosition {
  width: 100%;
  text-align: center;
}

.InnerButtonPosition {
  width: 150px;
  display: inline-block;
  position: relative;
}

.center {
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
}

.ResetButton {
  padding-top: 1vw;
  padding-bottom: 1vw;
}

#RENTERPASSWORD {
  padding-top: .5vw;

}

.ResetPasswordStyle {
  font-size: .8vw;
  color: var(--fc-main);
}

/*End Button Position*/

/*Landing page style*/
.LandingPage {
  text-align: right;
  height: 95%;
  padding-top: 23%;
  margin-right: 30%;
  color: whitesmoke;
}

.LandingPage h1 {
  font-weight: bold;
  font-size: 70px;
}

.LandingPageDiv {
  padding-left: 5%;
  padding-right: 0;
  width: 100%;
  font-size: 25vw;
}

.LoginButton {
  color: whitesmoke;
  border: none;
  background-color: rgba(45, 45, 45, 0);
  cursor: pointer
}

.LoginButton:hover {
  opacity: 80%;
}

.divlinkstyle {
  cursor: pointer;
  color: #3cb0fd;
}

.divlinkstyle:hover {
  color: aqua;
}

/*End Landing page style*/


/*Hyper link styling*/
.StyleLink a:link {
  color: var(--link-color);
  background-color: transparent;
  text-decoration: none;
}

.StyleLink a:visited {
  color: var(--link-color);
  ;
  background-color: transparent;
  text-decoration: none;
}

.StyleLink a:hover {
  color: var(--link-hover-color);
  background-color: transparent;
  text-decoration: underline;
}

.StyleLink a:active {
  color: var(--link-color);
  background-color: transparent;
  text-decoration: underline;
}

/*End Hyper link styling*/

/*Contact styling*/
.contactcontainer {
  width: 100%;
  height: 70vh;
  margin: 0;
  padding: 0;
  padding-top: 1vh;
  display: flex;
  flex-direction: row;

}

.contactcontainer div:nth-child(1) {
  padding-right: 1rem;
}

/*End Contact styling*/

/*Additions Styling*/
.additionsContainer {
  background-color: var(--bg-alt);
  background-color: var(--bga-alt);
  box-shadow: 1px 0 10px 0 rgba(0, 0, 0, 1);
  width: 35vw;
  height: 70vh;
  color: var(--fc-main);
}

.additions-container {
  display: flex;
  flex-direction: column;
}

.additions-items-container {
  display: flex;
  flex-direction: column;
  height: 60vh;
  overflow-y: auto;
}

.addition-item {
  display: flex;
  padding: 1em 1em;
  align-items: center;
}

.addition-item:hover {
  background-color: var(--bg-hover);
}

.addition-item div {
  padding-right: 1em;
}

/* Add Cart Icon */
.addition-item div:nth-child(1) {
  font-size: var(--fs-150);
  min-width: 4vw;
}

.addition-item div:nth-child(1) i {
  cursor: pointer;
  border-radius: .25em;
}

.addition-item div:nth-child(1) i:hover {
  color: var(--fc-alt);
  background-color: rgba(9, 97, 9, .87);
}

/*Action button*/
.addition-item div:nth-child(2) {
  width: 7vw;
}

/* Item description */
.addition-item div:nth-child(3) {
  width: 15vw;
}

.cart-title {
  font-weight: bold;
  border-bottom: .5px solid var(--fc-main);
}

.CartCard {
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  margin-left: 1em;
}

.AdditionsCart {
  display: flex;
  top: 0;
}

.AdditionsCartContainer {
  height: 70vh;
  width: 30vw;
  box-shadow: 1px 0 10px 0 rgba(0, 0, 0, 1);
  display: flex;
  flex-direction: column;

}

.AdditionsCartContainer .CartSubmit {
  align-self: flex-end;
  padding-top: 2em;
  padding-right: 1em;
}

/* Cart style */
.cart-container {
  display: flex;
  flex-direction: column;
}

.cart-items-container {
  display: flex;
  flex-direction: column;
  height: 50vh;
  overflow-y: auto;
}

.cart-item {
  display: flex;
  padding: 1em 1em;
  align-items: center;
}

.cart-item:hover {
  background-color: var(--bg-hover);
}

.cart-item div {
  padding-right: 1em;
}

/* Action */
.cart-item div:nth-child(1) {
  min-width: 5vw;
}

/*Item*/
.cart-item div:nth-child(2) {
  width: 15vw;
}

/* total */
.cart-item div:nth-child(3) {
  width: 5vw;
}

/* remove from cart */
.cart-item div:nth-child(4) {
  width: 2vw;
}

/* end cart style */


.RemoveFromCart {
  font-size: var(--fs-150);

}

.RemoveFromCart:hover {
  color: var(--fc-alt);
  background-color: rgba(177, 14, 14, .87);
}

.sum {
  width: 100%;
  height: 1em;
  display: flex;
  justify-content: flex-end;
  padding-right: 5vw;
}

/*End Additions Styling

/*Category/table styling*/
/*Header for categories with status*/
.selectstatus {
  width: 150px;
  float: left;
  padding-left: 10px;
  margin-top: 0;
  height: 100%;
  vertical-align: center;
}

.selectstatus select {
  width: 100%;
  font-size: 20px;
}

.selectcontainer {
  width: 100%;
  float: left;
  margin-top: 2vw;
  height: 3%;
  font-size: 1.5vw;
}

.selectheading {
  float: left;
  text-align: right;
  margin-top: 0;
  height: 100%;
  font-size: 1.5vw;
  vertical-align: center;
}

/*end of headers for categories with status*/


.sortdiv:hover {
  cursor: pointer;
  background-color: var(--bg-main);
  color: var(--fc-main);
}

.namecol {
  width: 250px
}

.commentcol {
  width: 100px
}

.appenddetail {
  display: none;
  position: absolute;
  top: 20%;
  left: 20%;
  width: 60%;
  height: 60%;
  padding: 16px;
  border: 16px solid black;
  background-color: var(--fc-main);
  z-index: 1002;
  overflow: auto;
  color: var(--fc-alt);
}

.closeappend {
  text-align: right;
  height: 30px;
  cursor: pointer;
}

.displaydoc {
  display: none;
  position: absolute;
  top: 10%;
  left: 10%;
  width: 70%;
  height: 90%;
  padding: 16px;
  border: 16px solid black;
  background-color: var(--fc-main);
  z-index: 1002;
  overflow: auto;
  color: var(--fc-alt);
}

.closedoc {
  position: fixed;
  text-align: right;
  height: 30px;
  width: 25cm;
  cursor: pointer;
}

.TableHeaderStyle {
  font-weight: bold;
  font-size: 1vw;
  color: var(--fc-main);
}

.TableHeaderStyle tr td {
  border-color: var(--fc-main);
  border-top: solid 1px;
  border-bottom: solid 1px;
}

.TableStyle {
  color: var(--fc-main);
  font-size: 1vw;
}

.TableStyle tr td {
  border-color: var(--fc-main);
  border-top: solid 1px;
  border-bottom: solid 1px;
}

.tablescrolldiv {
  height: 90%;
  overflow-y: auto;
  overflow-x: hidden;
  padding-top: 0;
  margin-top: 0;
}

.usertablescrolldiv {
  height: 95%;
  max-height: 70vh;
  overflow: auto;
  padding-top: 0;
  margin-top: 0;
}

.orderstablescrolldiv {
  height: 95%;
  overflow: auto;
  padding-top: 0;
  margin-top: 0;
}

.categorytableheader {
  width: 90%;
  margin: 0 auto;
  float: none;
}

.categorytable {
  width: 90%;
  margin: 0 auto;
  float: none;
}

.categorytableheaderfixed {
  width: 100%;
  margin: 0 auto;
  float: none;
  table-layout: fixed;
}

.categorytablefixed {
  width: 100%;
  margin: 0 auto;
  float: none;
  table-layout: fixed;
}

.TicketSetupTable {
  font-size: .8vw;
}

.TicketSetupTable tr td:nth-child(1) {
  /*Editbutton*/
  width: 5%;
  text-align: center;
  padding-left: 5px;
}

.TicketSetupTable tr td:nth-child(2) {
  /*company name*/
  width: 20%;
}

.TicketSetupTable tr td:nth-child(3) {
  /*company name*/
  width: 20%;
}

.TicketSetupTable tr td:nth-child(4) {
  /*host name*/
  width: 10%;
}

.TicketSetupTable tr td:nth-child(5) {
  /*user name*/
  width: 10%;
}

.TicketSetupTable tr td:nth-child(6) {
  /*password*/
  width: 10%;
}


/*Ticket Distributor table header*/
.ticketdistributortable {
  font-size: var(--fs-100);
  color: var(--fc-main);
  background-color: var(--bga-alt);
}

.ticketdistributortable thead {
  font-weight: 700;
}

.ticketdistributortable tbody tr:hover {
  background-color: var(--bg-hover);
  color: var(--fc-main);
}

.ticketdistributortable tr td:nth-child(1) {
  /*activate/deactivate button*/
  width: 5vw;
}

.ticketdistributortable tr td:nth-child(1) div {
  /*activate/deactivate button*/
  width: 3vw;
  height: 2vw;
  font-size: .8vw;
  text-align: center;
}

.ticketdistributortable tr td:nth-child(2) {
  /*lastname*/
  width: 7vw;
}

.ticketdistributortable tr td:nth-child(3) {
  /*firstname*/
  width: 7vw;
}

.ticketdistributortable tr td:nth-child(4) {
  /*firstname*/
  width: 1vw;
}

.ticketdistributortable tr td:nth-child(4) a {
  text-decoration: none;
  color: var(--fc-main);
}

.ticketdistributortable tr td:nth-child(5) {
  width: 75%;
}

/*schedule table*/
.scheduletable {
  font-size: var(--fs-100);
  background-color: var(--bg-sub-main);
  color: var(--fc-sub-main);
}

.scheduletable thead {
  font-weight: 700;
}

.scheduletable thead tr:hover {
  background-color: var(--bg-sub-main);
  color: var(--fc-sub-main-alt);
}

.scheduletable tbody tr:hover {
  color: var(--fc-sub-main);
  background-color: var(--subbg-hover);
}

.scheduletable tr td:nth-child(1) {
  /*Team*/
  width: 7vw;
}

.scheduletable tr td:nth-child(2) {
  /*Location*/
  width: 7vw;
}

.scheduletable tr td:nth-child(3) {
  /*starttime*/
  width: 6vw;
}

.scheduletable tr td:nth-child(4) {
  /*endtime*/
  width: 6vw;
}

.scheduletable tr td:nth-child(5) {
  /*sunday*/
  width: 15vw;
  text-align: center;
}

.scheduletable tr td:nth-child(6) {
  /*edit Button*/
  width: 2vw;
  text-align: center;
  padding-left: 5px;
}

.scheduletable tr td:nth-child(6) div {
  /*edit Button*/
  width: 2vw;
  height: 2vw;
  text-align: center;

}

.scheduletable tr td:nth-child(7) {
  /*delete Button*/
  width: 2vw;
  text-align: center;
  padding-left: 5px;
}

.scheduletable tr td:nth-child(7) div {
  /*delete Button*/
  width: 2vw;
  height: 2vw;
  text-align: center;

}

/*users table header*/
.UserActiveSwitchStyle {
  position: relative;
  margin-bottom: 10px;
  color: var(--fc-main);
}

.usertableheader {
  padding-bottom: 0;
  margin-bottom: 0;
}

.usertableheader tr td:nth-child(1) {
  width: 25px;
}

.usertableheader tr td:nth-child(2) {
  width: 25px;
}

.usertableheader tr td:nth-child(3) {
  width: 200px;
}

.usertableheader tr td:nth-child(4) {
  width: 200px;
}

.usertableheader tr td:nth-child(5) {
  width: 150px;
}

.usertableheader tr td:nth-child(6) {
  width: 150px;
}

/*users table*/
.usertable {
  padding-top: 0;
  margin-top: 0;
}

.usertable tr td:nth-child(1) {
  width: 25px;
}

.usertable tr td:nth-child(2) {
  width: 25px;
}

.usertable tr td:nth-child(3) {
  width: 200px;
}

.usertable tr td:nth-child(4) {
  width: 200px;
}

.usertable tr td:nth-child(5) {
  width: 150px;
}

.usertable tr td:nth-child(6) {
  width: 150px;
}

/*End Users Table*/
/*userupdates table*/
.userupdatetable {
  margin-left: 5%;
  margin-top: 5%;
  color: var(--fc-main);
}

.userupdatetable tr td:nth-child(1) {
  text-align: right;
  width: 200px;
}

.userupdatetable tr td:nth-child(2) {
  width: 400px;
}

.passwordcaption {
  font-size: 20px;
  ;
  width: 400px;
  margin-left: 18%;
  color: var(--fc-main);
}

.useradmintable {
  margin-left: 5%;
  color: var(--fc-main);
}

.useradmintable tr td:nth-child(1) {
  text-align: right;
  width: 200px;
  padding-right: 5px;
}

.useradmintable tr td:nth-child(2) {
  width: 400px;
  vertical-align: center;
}

.usersavebuttons {
  margin-left: 350px;
  width: 300px;
  color: var(--fc-alt);
}

.usersavebuttons tr td:nth-child(1) {
  width: 150px;
  padding-right: 5px;
}

.usersavebuttons tr td:nth-child(2) {
  width: 150px;
}

.savepanel {
  clear: both;
}

.savepanel div input {
  color: var(--fc-alt);
}

.savepanelcolor {
  color: var(--fc-alt);
}

.savepanel div:nth-child(1) {
  float: left;
  margin-left: 35%;
}

.savepanel div:nth-child(2) {
  float: left;
}

.savepanel div:nth-child(1) input {
  border: none;
  background-color: var(--bga-main);
  cursor: pointer
}

.savepanel div:nth-child(2) input {
  border: none;
  background-color: var(--bga-main);
  cursor: pointer
}

.usererrorpanel {
  padding-left: 0;
  clear: both;
}

.usererrorpanel div {
  color: var(--fc-main);
  background-color: red;
  padding: 0;
  margin: 0;
  width: 100%;
}

/*End userupdates Table*/

/*Audit Style*/
.AuditFilterStyle {
  text-align: center;
  display: block;
  color: var(--fc-alt);
}

.AuditFilterStyle div {
  text-align: center;
  display: block;
  margin: auto
}

.AuditFilterStyle div table {
  margin: auto;
}

.AuditFilterStyle div table tr td:nth-child(1) select {
  width: 250px;
  height: 35px;
}

.AuditFilterStyle div table tr td:nth-child(1) input {
  width: 250px;
  height: 35px;
  display: block;
  margin: auto;
}

.AuditFilterSubmitStyle {
  color: var(--fc-alt);
  border: none;
  background-color: var(--bga-main);
  cursor: pointer
}

.AuditFilterPatSearch {
  margin: auto;
  display: block;
}

.AuditError {
  display: none;
  color: red
}

#auditpatList {
  display: none;
  z-index: 1;
  width: 350px;
  height: 300px;
  overflow-y: auto;
  background-color: var(--bg-alt);
  margin: auto;
  position: fixed;
  text-align: left;
}

.AuditDataStyle {
  height: 95%;
  overflow: auto;
  padding-top: 0;
  margin-top: 0;
  margin-right: 0;

}

.auditdataheader {
  width: 100%;
  padding: 0;
  float: none;
  font-weight: bold;
}

.auditdataheader tr {
  border-bottom: solid 1px;
  color: var(--fc-alt);
}

.auditdataheader tr td:nth-child(1) {
  width: 700px;
}

.auditdata {
  padding: 0;
  width: 100%
}

.auditdata tr td:nth-child(1) {
  width: 700px;
}

.auditformstyle {
  height: 600px;
  width: 90%;
  margin-left: 5%;
}

.auditpatientdivstyle {
  height: 800px;
  width: 90%;
  margin-left: 5%;
}

.auditpatientdivstyleheader {
  text-align: center;
}

/*Navigation Filter styling*/
.navlink {
  cursor: pointer;
  width: 100%;
  padding-left: 5px;
  text-align: center;
  color: var(--fc-main);
  font-size: 1.5vw;
}

.navlinkdisabled {
  width: 1vw;
  padding-left: 5px;
  text-align: center;
  color: var(--fc-main);
  font-size: 1.5vw;
}

.navlink:hover {
  background-color: var(--bg-hover);
  color: var(--fc-main);
}

.navTable {
  font-size: 1vw;
}

.navTable tr {
  line-height: 1vw;
}

.navTable tr td:nth-child(1) {
  width: 2%
}

.navTable tr td:nth-child(1) div div {
  line-height: 100%;
}

.navTable tr td:nth-child(2) {
  width: 2%
}

.navTable tr td:nth-child(3) {
  width: 2%
}

.navTable tr td:nth-child(4) {
  width: 2%
}

.navTable tr td:nth-child(4) div div {
  line-height: 100%;
}

.navTable tr td:nth-child(5) {
  width: 2%
}

.navTable tr td:nth-child(6) {
  width: 2%
}

.navTable tr td:nth-child(8) {
  width: 2%;
  height: 1vw;
}

.pagenaveinput {
  font-size: 1.2vw;
  width: 25px;
  height: 20px;
  font-family: 'Lato', sans-serif;

}

.pagenaveinput input {
  width: 100px;
  height: 30px;
  padding-right: 10px;
}

.pagenavheading {
  padding-left: 50px;
  font-size: 1.2vw;
  color: var(--fc-main);
}

.pageofstyle {
  text-align: center;
  width: 30%;
  color: var(--fc-main);
  font-size: 1.5vw;
}

.buttoncolumn {
  padding-left: 10px;
  width: 75px;
}

.buttoncolumn a {
  color: var(--fc-main);
  font-size: 20px;
}

.buttoncolumn a.hover {
  background-color: var(--bg-alt);
  cursor: pointer;
}

.navcontainer {
  padding: 0;
  margin: 0;
  width: 100%;
}

.dateselection {
  width: 100%;
  float: left;
  padding-left: 10px;
  font-size: .9vw;

}

.selectview {
  width: 100%;
  float: left;
  padding-left: 10px;
}

.viewstyle {
  font-size: .9vw;
  width: 100%;
  height: 100%;
}

.buttonstyle {
  width: 100%;
  height: 3%;
  float: left;
  padding-left: 5px;
}

.inputstyle {
  width: 100%;
  font-size: .9vw;
  display: block;
  margin: auto;
}

.dateinput:before {
  font-family: 'Raleway', sans-serif;
  content: "f133";
}

.timeview {
  width: 100%;
  float: left;
  padding-left: 10px;
  padding-right: 5px;
  font-size: .8vw;
}

.timeview li a {
  white-space: nowrap;
}

.viewdropdownstyle {
  width: 100%;
  float: left;
  padding-left: 10px;
  padding-right: 5px;
  font-size: .9vw;
  display: block;
  height: .5vw;
}

/*end Navigation*/

.InTableIconStyle {
  color: var(--fc-alt);
}

/*company table*/
.companytableborder {
  height: 85%;
  width: 50%;
  border: 3px solid var(--bg-main);
  border-radius: 6px;
  margin-left: 15em;
  margin-top: 2em;
  margin-bottom: 2em;
  display: flex;
  flex-direction: column;
}

.companytableborder .apisavebtn {
  width: 5em;
  align-self: flex-end;
  justify-content: flex-end;
  margin-right: 1em;
  margin-top: 3em;
}

.companytable {
  padding-top: 0;
  margin-top: 0;
  margin-left: 2;
  color: var(--fc-main);
}

.companytable {
  padding-top: 0;
  margin-top: 0;
  border-collapse: separate;
  border-spacing: 0 .5em;
}

.companytable tr {
  height: 2vw;
  padding: 5px 5px;
}

.companytable tr input {
  padding: 10px;
  height: 5vw;
}

.companytable tr td:nth-child(1) {
  text-align: right;
  width: 10vw;
  padding-right: 10px;
}

.companytable tr:nth-child(1) td:nth-child(2) {
  width: 25vw;
}

.companytable tr td:nth-child(2) input {
  width: 100%;
  height: 100%;
  font-size: .8vw;
}

/*board table*/
.BoardTable tr td:nth-child(1) {
  /*plus minus*/
  width: 1vw;
}

.BoardTable tr td:nth-child(1) div {
  /*plus minus*/
  color: var(--fc-main);
}

.BoardTable tr td:nth-child(2) {
  /*board name*/
  width: 25vw;
}

.BoardTable tr td:nth-child(3) {
  /*spacer*/
  width: 2vw;
}

.BoardTable tr td:nth-child(4) {
  /*resource drop down*/
  width: 5vw;
}

.BoardTable tr td:nth-child(5) {
  /*team drop down*/
  width: 8vw;
  padding-left: .8vw;
}

.BoardTable tr td:nth-child(6) {
  /*Status drop down*/
  width: 8vw;
  padding-left: .8vw;
}

.BoardTable tr td:nth-child(7) {
  /*Exclude Agreement*/
  width: 11vw;
  padding-left: .8vw;
}

.BoardTable tr td:nth-child(8) {
  /*remove board*/
  width: 5vw;
  padding-left: 2vw;
}

.BoardTable tr td:nth-child(8) a {
  text-decoration: none;
  color: var(--fc-main);
}

/*resource edit table*/
.resourceedittable {
  font-size: .8vw;
}

.resourceedittable tr td:nth-child(1) {
  /*Team*/
  width: 5vw;
}

.resourceedittable tr td:nth-child(2) {
  /*Location*/
  width: 7vw;
}

.resourceedittable tr td:nth-child(2) input {
  /*Location*/
  width: 100%;
  height: 1vw;
}

.resourceedittable tr td:nth-child(3) {
  /*Start Time*/
  width: 7vw;
}

.resourceedittable tr td:nth-child(3) input {
  /*starttime*/
  width: 100%;
  height: 1vw;
}

.resourceedittable tr td:nth-child(4) {
  /*endtime*/
  width: 6vw;
}

.resourceedittable tr td:nth-child(4) input {
  /*endtime*/
  width: 100%;
  height: 1vw;
}

.resourceedittable tr td:nth-child(5) {
  /*sunday*/
  width: 2vw;
  text-align: center;
}

.resourceedittable tr td:nth-child(6) {
  /*monday*/
  width: 2vw;
  text-align: center;
}

.resourceedittable tr td:nth-child(7) {
  /*tuesday*/
  width: 2vw;
  text-align: center;
}

.resourceedittable tr td:nth-child(8) {
  /*wednesday*/
  width: 2vw;
  text-align: center;
}

.resourceedittable tr td:nth-child(9) {
  /*thursday*/
  width: 2vw;
  text-align: center;
}

.resourceedittable tr td:nth-child(10) {
  /*friday*/
  width: 2vw;
  text-align: center;
}

.resourceedittable tr td:nth-child(11) {
  /*saturday*/
  width: 2vw;
  text-align: center;
}

.resourceedittable tr td:nth-child(12) {
  /*Update Button*/
  width: 4vw;
  text-align: center;
  padding-left: 5px;
}

.resourceedittable tr td:nth-child(13) div {
  /*Remove Button*/
  width: 4vw;
  height: 2vw;
  text-align: center;

}

.scheduledaystable tr td:nth-child(1) {
  width: 2vw;
}

.AddResourceButton {
  background: var(--btn-bg);
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  color: var(--fc-alt);
  font-family: Open Sans;
  font-size: var(--fs-75);
  font-weight: 100;

  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  width: 3vw !important;
  height: 3vh !important;
  padding: 0 !important;
  align-self: center;
}

.AddResourceButton:hover {
  background-color: var(--bg-hover);
  text-decoration: none;
}

.TicketAssignmentHeading {
  margin-left: 36vw;
  font-weight: bold;
  font-size: 1.5vw;
}

.LogTableHeader {
  font-size: .8vw;
}

.LogTableHeader tr td:nth-child(1) {
  /*Datetime*/
  width: 15vw;
}

.LogTableHeader tr td:nth-child(2) {
  /*thread*/
  width: 10vw;
}

.LogTableHeader tr td:nth-child(3) {
  /*level*/
  width: 5vw;
}

.LogTableHeader tr td:nth-child(4) {
  /*Logger*/
  width: 5vw;
}

.LogTableHeader tr td:nth-child(5) {
  /*Message*/
  width: 20vw;
  overflow: hidden;
}

.LogTableHeader tr td:nth-child(6) {
  /*Exception*/
  width: 15vw;
  overflow: hidden;
}

.LogTable {
  font-size: .8vw;
}

.LogTable tr td:nth-child(1) {
  /*Datetime*/
  width: 15vw;
}

.LogTable tr td:nth-child(2) {
  /*thread*/
  width: 10vw;
}

.LogTable tr td:nth-child(3) {
  /*level*/
  width: 5vw;
}

.LogTable tr td:nth-child(4) {
  /*Logger*/
  width: 5vw;
}

.LogTable tr td:nth-child(5) {
  /*Message*/
  width: 20vw;
  overflow: hidden;
}

.LogTable tr td:nth-child(6) {
  /*Exception*/
  width: 15vw;
  overflow: hidden;
}

.ScrollHeight {
  height: 85%;
}

.ContactTable {
  font-size: var(--fs-100);
}

/*LastName*/
.ContactTable tr td:nth-child(1) {
  width: 15%;
}

/*FirstName*/
.ContactTable tr td:nth-child(2) {
  width: 15%;
}

/*Email*/
.ContactTable tr td:nth-child(3) {
  width: 30%;
}

/*Status*/
.ContactTable tr td:nth-child(4) {
  width: 40%;
  text-align: center;
}

/*Edit*/
.ContactTable tr td:nth-child(5) {
  width: 5%;
}

/*Delete*/
.ContactTable tr td:nth-child(6) {
  width: 5%;
}

/*Contact Edit Table*/
.ContactEditTable {
  margin-top: .8vw;
  font-size: var(--fs-100);
  width: 100%;
  height: 10vh;
  color: var(--fc-main);
}

#otherinputs {
  border-collapse: separate;
  border-spacing: .5em;
}

.ContactEditTable tr td:nth-child(1) {
  width: 7vw;
  text-align: right;
}

.ContactEditTable tr td:nth-child(2) {
  width: 15vw;
}

.ContactEditTable tr td:nth-child(3) {
  text-align: center;
}

.contacteditinput {
  color: var(--fc-main);
  border-top: none;
  border-left: none;
  border-right: none;
  text-decoration: none;
  background-color: transparent;
  outline: none;
  padding: 5px 5px 5px 5px
}

/*email*/
.emailinputs {
  width: 15vw;
}

.emailinputs input {
  width: 15vw;
  text-align: left;
}

/*site drop down*/
.sitelist div:nth-child(1) {
  width: 10vw;
}

/*Type drop down*/
.contacttype div {
  width: 10vw;
}

.contacttype div ul li {
  padding-top: 3px;
  padding-bottom: 3px;
}

/*Portal Security*/
.portalsecurity div:nth-child(1) {
  width: 10vw;
}

.ContactEditButtons {
  margin-top: 70%;
  margin-left: 87%
}

.ContactEditButtons div {
  float: left;
}

.EditContactNav {
  position: absolute;
  display: flex;
  justify-content: flex-end;
  align-content: flex-end;
  font-size: 1.5vw;
  width: 2vw;
  right: 1em;
  z-index: 2000;
}

.EditContactNav a {
  text-decoration: none;
  color: inherit;
  padding-left: 1.5vw;
  margin-right: 5px;
}

#ContactEditContainer {
  overflow: auto;
  font-size: var(--fs-100);
  font-weight: 100;
  font-variant: small-caps;
  width: 30vw;
  height: 70vh;
  color: var(--fc-main);
}

.ContactErrorStyle {
  display: none;
  padding: 0;
  color: red;
  clear: both;
  width: 1vw;
  font-size: 1vw;
  font-weight: bold;
}

#requiredfields {
  display: none;
  color: red;
  width: 100%;
  text-align: center;
  font-weight: bold;
}

.ContactLabelNormal {
  color: var(--fc-main);
}

.ContactLabelError {
  color: red;
  font-weight: bold;
}

.ContactAgreementContainer {
  font-size: .8vw;
  /*font-weight: 100;*/
  /*font-variant: small-caps;*/
  line-height: 10px;
  background-color: var(--bg-alt);
  background-color: var(--bga-alt);
  box-shadow: 1px 0 10px 0 rgba(0, 0, 0, 1);
  position: fixed;
  margin-left: 1vw;
  width: 75%;
  height: 33vw;
  color: var(--fc-alt);
}

.ContactAgreementContainer hr {
  border: solid 1px;
}

.AgreementDropContainer {
  width: 100%;
  text-align: center;
}

.AgreementDropDown {
  text-align: center;
  padding-top: 1vw;
  display: inline-block;
  min-width: 10vw;
}

.AgreementAdditionsStyle {
  padding-top: 1vw;
  padding-left: 1vw;
  overflow: auto;
  height: 30vw;
}

.AgreementAdditionsStyle div {
  white-space: nowrap;
}

.ProductsDropDown {
  height: 15vw;
  width: 32vw;
}

.ProductsDropDown input {
  margin-left: 3px;
}

.ProductsDropDown Label {
  margin-left: 3px;
}

.catalogtable {
  font-weight: 200;
  font-variant: petite-caps;
  font-size: .8vw;
}

.catalogtable tr th:nth-child(1) {
  width: 1vw;
}

.catalogtable tr th:nth-child(2) {
  text-align: left;
  width: 30vw;
}

.catalogtable tr th:nth-child(3) {
  text-align: left;
  width: 5vw;
}

.catalogtable tr td:nth-child(1) {
  width: 1vw;
}

.catalogtable tr td:nth-child(2) {
  text-align: left;
  width: 30vw;
}

.catalogtable tr td:nth-child(3) {
  text-align: left;
  width: 5vw;
}



.ResourceScheduleEdit {
  font-size: 1vw;
  height: 100%;
  margin-left: 3%;
  color: var(--fc-sub-main);
  width: 100%;
}

.ResourceScheduleEdit tr td:nth-child(1) {
  width: 150px;
  text-align: right;
}

.ResourceScheduleEditDropDown {
  width: 150px;
}

.DayofTheWeekDiv {
  float: left;
  width: 30px;
  text-align: center;
}

.SaveContactBtn {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  height: 100px;
  padding: 5px;
}

.SaveContactBtn button {
  width: 4vw;
  height: 5vh;
  padding: 5px;

}

.ContactName {
  height: 35px;
  display: flex;
  align-items: flex-end;
  position: relative;
  color: var(--fc-main);
}

.ContactName div:nth-child(1) {
  position: absolute;
  flex: 1;
  font-size: var(--fs-200);
  font-weight: 700;
  left: 5px;
}

.ContactName div:nth-child(2) {
  position: absolute;
  flex: 1;
  font-size: var(--fs-150);
  font-weight: 400;
  color: rgb(44, 43, 43);
  left: 7vw;
}

/*End Category/Table styling*/

/*Registration page*/
.regbody {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
}

.regbody {
  height: 100%;
  background-color: var(--bga-alt);
  overflow: hidden;
}

.form-holder {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 50vh;
}

.form-holder .form-content {
  position: relative;
  text-align: center;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  padding: 60px;
}

.form-content .form-items {
  border: 3px solid var(--bg-main);
  padding: 40px;
  display: inline-block;
  width: 100%;
  min-width: 540px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  text-align: left;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.form-content h3 {
  color: var(--fc-main);
  text-align: left;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 5px;
}

.form-content h3.form-title {
  margin-bottom: 30px;
}

.form-content p {
  color: var(--fc-main);
  text-align: left;
  font-size: 17px;
  font-weight: 300;
  line-height: 20px;
  margin-bottom: 20px;
}


.form-content label,
.was-validated .form-check-input:invalid~.form-check-label,
.was-validated .form-check-input:valid~.form-check-label {
  color: var(--fc-main);
}

.form-content input[type=text],
.form-content input[type=password],
.form-content input[type=email],
.form-content select {
  width: 100%;
  padding: 9px 20px;
  text-align: left;
  border: 0;
  outline: 0;
  border-radius: 6px;
  background-color: #fff;
  font-size: var(--fs-100);
  font-weight: 300;
  color: black;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-top: 10px;
}


/*.btn-primary{*/
/*    background-color: #6C757D;*/
/*    outline: none;*/
/*    border: 0px;*/
/*    box-shadow: none;*/
/*}*/

/*.btn-primary:hover, .btn-primary:focus, .btn-primary:active{*/
/*    background-color: #495056;*/
/*    outline: none !important;*/
/*    border: none !important;*/
/*    box-shadow: none;*/
/*}*/

.form-content textarea {
  position: static !important;
  width: 100%;
  padding: 8px 20px;
  border-radius: 6px;
  text-align: left;
  background-color: #fff;
  border: 0;
  font-size: 15px;
  font-weight: 300;
  color: #8D8D8D;
  outline: none;
  resize: none;
  height: 120px;
  -webkit-transition: none;
  transition: none;
  margin-bottom: 14px;
}

.form-content textarea:hover,
.form-content textarea:focus {
  border: 0;
  background-color: #ebeff8;
  color: #8D8D8D;
}

.mv-up {
  margin-top: -9px !important;
  margin-bottom: 8px !important;
}

.invalid-feedback {
  color: #ff606e;
}

.valid-feedback {
  color: #2acc80;
}

.CWStyle {
  margin: 0;
  padding: 0;
  margin-top: 1em;
  border: solid var(--bga-main) .5px;
}

.CWStyle label {
  padding-left: .5em;
  font-weight: bold;

}

.CWIDLookup {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

#cwid {
  background-color: rgba(158, 159, 160, 0.97);
  margin-left: .5em;
  margin-bottom: .5em;
  margin-right: 1em;
}

.CWIDLookup button {
  margin-top: .5em;
  width: 25%;
  margin-right: .5em;
  margin-bottom: .5em;
}

#btnRemoveFA {
  margin-top: .5em;
  height: 25%;
  width: 25%;
}

.Reg-checks {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.Reg-checks input {
  margin-right: .5em;
}

.Reg-checks label {
  margin-right: 1em;
}

#lookup-status {
  height: 500px;
  width: 500px;
}

/*GDS Settings Styles*/
.connectwiseSetup {
  font-size: var(--fs-100);
  margin-left: 10%;
  opacity: 0;
  height: 0;
  width: 0;
  margin-top: 1vw;
  cursor: auto;
  transition: all 0.3s ease;
}

.connectwiseSetup.active {
  height: 12vh;
  width: 15vw;
  opacity: 1;
  background-color: transparent !important;
  border: none !important;
}

.connectwiseSetup>.APIStyle {
  display: none;
}

.connectwiseSetup.active>.APIStyle {
  display: flex;
}

.APIStyle {
  display: flex;
  align-items: center;
  padding: 5px;
  height: 5vh;
  border-radius: 6px;
}

.APIStyle:hover {
  background-color: var(--bg-hover);
}

.APIStyle a {
  text-decoration: none;
  height: 1em;
  color: var(--fc-main);
}

.APIStyle a:hover {
  text-decoration: none;
  cursor: pointer;
  color: var(--fc-main);
}

/* Content Container. This is the right side of 
screen next to the navbar. It will contain the 
content of the item selected by the user
*/
.content-container {
  position: relative;
  top: 2vh;
  left: 5vh;
  height: 95%;
  width: 55vw;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 2em;
  box-shadow: 5px 10px 20px var(--fc-main);
}

.content-container-no-border {
  position: relative;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

#companysearchdata {
  overflow: auto;
}

.content-heading {
  font-size: var(--fs-200);
  font-weight: 700;
  font-style: italic;
  color: var(--fc-main);
}

.content-heading-container {
  display: flex;
  justify-content: flex-end;
}

.content-heading-container div {
  padding: 5px;
}

.content-btn-image {
  padding-right: 5px;
}

.content-items {
  overflow-y: auto;
  padding-top: .5px;
  height: 60vh;
  width: 100%
}

.content-item-row {
  display: flex;
}

/*This begins the specific item
to be added in a table format
*/
/*ticket requests*/
.ticket-item {
  font-weight: normal;
  display: flex;
  line-height: 3vh;
  color: var(--fc-main);
}

.rowhighlight:hover {
  background-color: var(--bg-hover);
}

/* .ticket-item:not(:first-child):hover {
  color: var(--fc-alt);
  background-color: var(--bg-hover);
} */

.ticketheader {
  display: flex;
  padding: 1em;
}

.ticketheader div {
  padding: 5px;
}

.ticket-item div:nth-child(1) a {
  color: var(--link-color);
  background-color: transparent;
  text-decoration: underline;
}

.ticket-item div:nth-child(1) a:hover {
  color: var(--link-hover-color);
  text-decoration: underline;
}

.ticket-item div {
  padding: .25em;
  text-align: left;
  height: 3vh;
}

.ticket-row-heading {
  font-weight: 700;
}

.ticket-item div:nth-child(1) {
  width: 5vw;
}

.ticket-item div:nth-child(2) {
  width: 5vw;
}

.ticket-item div:nth-child(3) {
  width: 10vw;
}

.ticket-item div:nth-child(4) {
  width: 10vw;
}

.ticket-item div:nth-child(5) {
  width: 20vw;
  overflow: hidden;
  white-space: nowrap;
}

.ticket-link {
  color: --link-color;
}

/*client table style*/
.client-item {
  font-weight: normal;
  display: grid;
  grid-template-columns: 5px 200px 700px 5px;
  align-items: center;
  gap: 1em;
  margin-bottom: 10px;
  color: var(--fc-main);
}

.client-item div:nth-child(1):hover {
  cursor: pointer;
}

.client-item div:last-child:hover {
  cursor: pointer;
}

.client-row-heading {
  font-weight: 700;
}

/*Onboarding */
.onboard-item {
  font-weight: normal;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 1em;
  margin-bottom: 10px;
  color: var(--fc-main);
}

.onboard-row-heading {
  font-weight: 700;
}


/*company search */
.company-title {
  width: 15vw;
}

.company-item {
  font-weight: normal;
  display: flex;
  line-height: 3vh;
}

.company-item:hover {
  color: var(--fc-alt);
  background-color: var(--bg-hover);
}

.company-item div {
  padding: .25em;
  text-align: left;
  height: 4vh;
  overflow: hidden;
}

.company-row-heading {
  font-weight: 700;
  pointer-events: none;
}

.company-item div:nth-child(1) {
  width: 3vw;
}

.company-item div:nth-child(2) {
  width: 20vw;
}

.company-item div:nth-child(3) {
  width: 10vw;
}

.company-item div:nth-child(4) {
  width: 15vw;
}

.company-item div:nth-child(5) {
  width: 10vw;
}

.company-item div:nth-child(6) {
  width: 10vw;
  overflow: hidden;
  white-space: nowrap;
}

.company-add-btn {
  --size: 2em;
  font-size: var(--fs-100);
  cursor: pointer;
  border: 1px solid var(--bg-main);
  background: transparent;
  border-radius: 50%;
  width: var(--size);
  height: var(--size);
  margin-left: auto;
}

.company-add-btn:focus,
.company-add-btn:hover {
  outline: 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.35);
  background: var(--bg-main);
  color: var(--fc-alt);
}

.content-cancel {
  align-self: flex-end;
  margin-bottom: auto;
  margin-left: auto;
  cursor: pointer;
  padding: 0;
  margin: 0;
  text-align: right;
}

.content-cancel a {
  color: var(--fc-main);
}

.contact-title {
  width: 15vw;
}

.contact-item {
  font-weight: normal;
  display: flex;
  line-height: 3vh;
  color: var(--fc-main);
}

.contact-item div {
  padding: .25em;
  text-align: left;
  height: 4vh;
  overflow: hidden;
}

.contact-row-heading {
  font-weight: 700;
  pointer-events: none;
}

.contact-item div:nth-child(1) {
  width: 3vw;
}

.contact-item div:nth-child(2) {
  width: 7vw;
}

.contact-item div:nth-child(3) {
  width: 7vw;
}

.contact-item div:nth-child(4) {
  width: 7vw;
}

.contact-item div:nth-child(5) {
  width: 10vw;
}

.contact-item div:nth-child(6) {
  width: 5vw;
}

.contact-item div:nth-child(7) {
  width: 7vw;
}

.contact-item div:nth-child(8) {
  width: 5vw;
}

.contact-add-btn {
  font-size: var(--fs-100);
  cursor: pointer;
  border: 0;
  background: transparent;
  width: calc(var(--size) - 10px);
  height: calc(var(--size) - 10px);
  margin-left: auto;
  outline: 0;
  color: var(--fc-main);
}

.contact-add-btn:focus,
.contact-add-btn:hover {
  outline: 0;
  background: var(--bg-main);
  color: var(--fc-alt);
}

/*Registraion Screen*/
/*used for aligning items next to content items*/
.user-content-items {
  overflow-y: auto;
  padding-top: .5px;
  width: 30vw;
  height: 100%;
}

.user-items-container {
  display: flex;
}

.user-security {
  color: var(--fc-main);
}

.user-security-container {
  margin-left: 2vw;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 50vh;
}

.user-security-hide {
  visibility: hidden;
}

.user-security-container .bottom {
  align-self: flex-end;
  bottom: 0;
  margin-top: 25vh;
  margin-right: .25vw;
  width: 10vw;
}

.user-security-container .bottom div {
  display: flex;
  margin: 0;
  padding: 0;
  justify-content: flex-end;
  align-content: flex-end;
  gap: 2px;
}

.user-security-container .bottom div button {
  width: 5vw;
}

.user-security-container .bottom div a {
  width: 5vw;
}

.user-title {
  width: 15vw;
}

.user-item {
  font-weight: normal;
  display: flex;
  color: var(--fc-main);
}

.user-item div {
  padding: .25em;
  text-align: left;
}

.user-row-heading {
  font-weight: 700;
}

.user-item div:nth-child(1) {
  width: 10vw;
  text-align: right;
  align-self: center;
}

.user-item div:nth-child(2) {
  width: 100%;
  align-self: center;
}

.user-item div:nth-child(2) div {
  padding: 0;
  margin: 0;
  padding-bottom: 2px;
}


.user-item:nth-child(4) {
  height: 5vh;
  overflow: hidden;
}

#usertypesettings {
  height: 10vh;
  transition: height 0.3s ease-in-out;
}

#usertypesettings.active {
  height: 17vh;
}

.radiobtncont {
  height: 5vh;
  transition: height 0.3s ease-in-out;
  overflow: hidden;
}

.radiobtncont.active {
  height: 10vh;
}

.user-item-company-button[data-company="inactive"] {
  visibility: hidden;
  opacity: 0;
}

.user-item-company-button[data-company="active"] {
  transition: visibility 0s, opacity 350ms ease-in-out;
  opacity: 1;
  display: flex;
  padding: 1em;
  width: 100%;
}

.user-item-company-button[data-company="active"] {
  transition: visibility 0s, opacity 350ms ease-in-out;
  opacity: 1;
  display: flex;
  padding: 1em;
  width: 100%;
}

.user-item:nth-child(5) div:nth-child(3) {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: flex-start;
  align-items: center;
  line-height: 4vw;
}

.user-item:nth-child(5) div:nth-child(2) div:nth-child(1) {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.user-contact-company-name {
  width: 65%;
}

.user-contact-company-button {
  width: 35%;
  margin-left: 2px;
}

.user-reset[data-reset-password="active"] {
  display: flex;
}

.user-reset[data-reset-password="inactive"] {
  display: none;
}

.user-new-password[data-set-password="active"] {
  display: flex;
}

.user-new-password[data-set-password="inactive"] {
  display: none;
}

.vertical-separator {
  width: 1px;
  height: 50vh;
  background: var(--fc-main);
  margin-left: 2vw;
}

.horizontal-separator {
  width: 100%;
  height: .5px;
  background: var(--fc-main);
  margin: 0;
  padding: 0;
}

.usergrid-title {
  width: 15vw;
}

.usergrid-item {
  font-weight: normal;
  display: flex;
  line-height: 3vh;
  color: var(--fc-main);
}

.usergrid-item:hover {
  color: var(--fc-alt);
  background-color: var(--bg-hover);
}

.usergrid-item:hover div button i {
  color: var(--fc-alt);
}

.usergrid-item div {
  padding: .25em;
  text-align: left;
  height: 4vh;
  overflow: hidden;
}

.usergrid-row-heading {
  font-weight: 700;
  pointer-events: none;
}

.usergrid-item div:nth-child(1) {
  width: 3vw;
}

.usergrid-item div:nth-child(2) {
  width: 3vw;
}

.usergrid-item div:nth-child(3) {
  width: 7vw;
}

.usergrid-item div:nth-child(4) {
  width: 7vw;
}

.usergrid-item div:nth-child(5) {
  width: 15vw;
}

.usergrid-item div:nth-child(6) {
  width: 7vw;
}

.usergrid-item div:nth-child(7) {
  width: 7vw;
}

.usergrid-edit-btn {
  font-size: var(--fs-100);
  cursor: pointer;
  border: 0;
  background: transparent;
  width: calc(var(60px) - 10px);
  height: calc(var(60px) - 10px);
  margin-left: auto;
  outline: 0;
}

.usergrid-edit-btn:focus,
.usergrid-edit-btn:hover {
  outline: 0;
  background: var(--bg-main);
  color: var(--fc-alt);
}

/*For styling the client ticket
setup screen*/
/*company table*/
.contact-ticket-border {
  width: 50%;
  box-shadow: 5px 10px 20px var(--fc-main);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
}

.contact-ticket-border .contactticketsavebutton {
  width: 5em;
  align-self: flex-end;
  justify-content: flex-end;
  margin-right: 1em;
  margin-top: 5em;
  margin-bottom: 1em;
}

.content-ticket-row-heading {
  font-weight: 700;
  pointer-events: none;
}

.contact-ticket-item {
  font-weight: normal;
  display: flex;
  padding: 5px;
  color: var(--fc-main);
}

.contact-ticket-item div {
  padding: 5px;
}

.contact-ticket-item div:nth-child(1) {
  width: 10vw;
  text-align: right;
  align-self: center;
}

.contact-ticket-item div:nth-child(2) {
  min-width: 10vw;
}

.login-user-content-items {
  overflow-y: auto;
  padding-top: .5px;
}

.login-user-items-container {
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;

}

.login-user-item {
  font-weight: normal;
  display: flex;

}

.login-user-item div {
  padding: .25em;
  text-align: left;
  width: 15vw;
}

.login-user-item div:nth-child(2) {
  width: 100%;
  align-self: center;
}

.login-user-item div:nth-child(2) div {
  padding: 0;
  margin: 0;
  padding-bottom: 2px;
}

.admindetail {
  display: none;
}

.admindetail.active {
  display: inline-block;
}

.userview {
  display: none;
}

.userview.active {
  display: inline;
}

.useredit {
  display: none;
}

.useredit.active {
  display: inline;
}

.settingsedit {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.settingsedit.active {
  opacity: 1;
}

/*setup ticket distributor menu items*/
.ticket-dist-setup {
  display: inline-block;
  font-size: var(--fs-100);
  margin-left: 5%;
  opacity: 0;
  height: 0;
  width: 0;
  margin-top: .5em;
  cursor: auto;
  box-shadow: 0 2px 5px 0 var(--submenu-shadow);
  transition: opacity var(--trans-03) ease-in-out,
    height var(--trans-03) ease-in-out;

}

.ticket-dist-setup>*,
.ticket-dist-setup>*>*,
.ticket-dist-setup>*>*>* {
  height: 0;
}

.ticket-dist-setup.active {
  opacity: 1;
  height: auto;
  min-height: 200px;
  width: 265px;
  border: none !important;
}

.ticket-dist-setup.active>*,
.ticket-dist-setup.active>*>*,
.ticket-dist-setup.active>*>*>* {
  height: auto;
}

.ticket-dist-setup>.TDItemStyle {
  display: none;
}

/* .ticket-dist-setup.active>.TDItemStyle {
  display: flex;
} */

.TDItemStyle {
  display: none;
}

.TDItemStyle>*,
.TDItemStyle>*>*,
.TDItemStyle>*>*>* {
  display: none
}

.TDItemStyle a {
  opacity: 0;
  height: 0;

}

.TDItemStyle a i {
  min-width: 20px !important;
}

.TDItemStyle a span {
  color: var(--text-color);
}

.TDItemStyle.show {
  display: grid;
  grid-template-columns: 20px 175px 20px;
  align-items: center;
  padding: 5px;
  height: 45px;
  border-radius: 10px;
  margin: 10px 10px 10px 10px;
  width: 13vw;
}

.TDItemStyle.show>*,
.TDItemStyle.show>*>*,
.TDItemStyle.show>*>*>* {
  display: block;
}

.TDItemStyle:hover {
  background-color: var(--primary-color);
}


.TDItemStyle:hover a span,
.TDItemStyle:hover a i {
  color: var(--toggle-color);
}

.TDItemStyle.show a {
  opacity: 1;
  display: flex !important;
  align-items: center;
  gap: 1em;
  text-decoration: none;
  width: 15vw;
  height: 100%;
  color: var(--fc-main);
}

.TDItemStyle.show:hover {
  text-decoration: none;
  cursor: pointer;
  color: var(--fc-main);
}

.serviceboards {
  position: absolute;
  font-size: var(--fs-100);
  margin-left: 5px;
  opacity: 0;
  height: 0;
  width: 0;
  margin-top: 0;
  cursor: auto;
  transition: opacity 0.3s ease;
  overflow: auto;
  border-radius: 6;
  z-index: 3000;
}

.serviceboards.active {
  opacity: 1;
  height: 20vh;
  width: 12vw;
  margin-left: 10px;
  background-color: var(--bg-alt) !important;
  border: solid var(--bg-main) !important;
}

.serviceboarditems {
  display: flex;
  align-items: center;
  height: 3vh;
  margin-top: 2%;
  padding-left: 5px;
}

.serviceboarditems:hover {
  background-color: var(--bg-hover);
}

.serviceboarditems>a {
  text-decoration: none;
  color: var(--fc-main);
}

.serviceboarditems>a:hover {
  text-decoration: none;
  cursor: pointer;
  color: var(--fc-main);
}

.serviceboards>.serviceboarditems {
  display: none;
}

.serviceboards.active>.serviceboarditems {
  display: flex;
}

#usereditpopuploader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2002;
  display: none;
  overflow: hidden;
  background: var(--bg-wait);
}

.passwordresetpopup {
  opacity: 0;
  position: fixed;
  top: 20%;
  left: 35%;
  width: 30%;
  height: 0;
  padding: 0;
  border: none;
  background-color: var(--bg-alt);
  z-index: 3002;
  color: var(--fc-main);

  transition: all 0.3s ease-in-out;
}

.passwordresetpopup.active {
  opacity: 1;
  height: 50%;
  padding: 16px;
  border: 16px solid var(--bg-main);
  border-radius: 5px;
}

.cwAPIContainer {
  position: relative;
  box-shadow: 5px 10px 20px var(--fc-main);
  border-radius: 6px;
  gap: 5rem;
  width: 50em;
  height: 40em;
  padding-top: 10px;
}

.cwAPIContainer:nth-child() {
  border: 1px solid var(--bg-main);
  gap: 1rem;
}

.cwAPIItemContainer {
  display: flex;
  align-items: center;
  gap: 5px;
  width: 50vw;
  padding: 5px 5px;
}

.cwAPIItemContainer a {
  text-decoration: none;
  color: var(--fc-main);
}

.cwAPIItemContainer a:hover {
  color: var(--fc-main-hover);
  cursor: pointer;
}

.cwAPIItemHeader {
  text-align: right;
  font-weight: 700;
  width: 10vw;
  color: var(--fc-main);
}

.cwAPIItem {
  width: 30vw;
}

.cwTimezoneContainer {
  position: relative;
}

.cwTimezoneDropContainer {
  position: absolute;
  background-color: whitesmoke;
  top: 40px;
  left: 0;
  width: 20vw;
  height: 0;
  opacity: 0;
  transition: all 0.2s ease-in-out;
  visibility: hidden;
  border: .5px solid var(--bg-main);
}

.cwTimezoneDropContainer * {
  display: none;
}

.cwTimezoneDropContainer.active {
  opacity: 1;
  height: 25vh;
  overflow: auto;
  visibility: visible;
  transform: translateX(0);
}

.cwTimezoneDropContainer.active * {
  display: inline;
}

.cwAPIButtonContainer.Left {
  position: absolute;
  display: flex;
  justify-content: flex-end;
  gap: 1em;
  padding: 10px 10px;
  align-items: flex-start;
  bottom: 0;
  left: 0;
}

.cwAPIButtonContainer.Right {
  position: absolute;
  display: flex;
  justify-content: flex-end;
  gap: 1em;
  padding: 10px 10px;
  align-items: flex-end;
  bottom: 0;
  right: 0;
}

.cwAPIButtonContainer button {
  width: 100px;
}

.tzonebuttoncontainer {
  display: flex;
  align-items: center;
  gap: 1em;
  width: auto;
}


/*Resource Edit stuff*/
.ResourceEditContainer {
  border: solid;
  width: 25vw;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 5px 5px;
}

.ResourceHeader {
  display: flex;
  font-size: 1.5em;
}

.ResourceItems {
  display: flex;
  align-items: center;
  gap: .5em;
  padding: 5px 5px;
}

.ItemHeader {
  text-align: right;
  font-weight: 700;
  width: 10vw;
}

.ItemValue {
  width: 10vw;
}

.ItemValue .dropdown {
  width: 150px;
}

.SCHDaysContainer {
  display: flex;
  flex-direction: column;
  gap: .5em;
}

.DaysContainer {
  display: flex;
  gap: 1em;
}

.DaysContainer div input {
  margin: 0;
  padding: 0;
}

.DaysContainer div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1em;
}

.ErrorStyle {
  opacity: 0;
  height: 0;
  width: 0;
  color: red;
  transition: all 0.3s ease-in-out;
}

.ErrorStyle.active {
  opacity: 1;
  height: auto;
  width: 100%;
}

.btn-drop-nc {
  background: var(--btn-bg-nc);
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  color: var(--fc-sub-alt);
  font-family: Open Sans;
  font-size: .9vw;
  font-weight: 100;
  padding: 5px 10px 5px 10px;
  border: solid var(--fc-main) 1px;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  width: 100%;
}

.btn-drop-nc:hover {
  background-color: var(--bg-hover);
  color: var(--fc-sub-alt);
  text-decoration: none;
}

/*New Ticket Board display classes*/
.BoardContainer {
  display: flex;
  flex-direction: column;
}

.Board {
  display: grid;
  grid-template-columns: 5px 450px 175px 175px 175px 175px 50px;
  align-items: center;
  gap: 1em;
  padding: 5px 5px;
}

.BoardLinks a {
  text-decoration: none;
  color: var(--fc-main);
}

.BoardHeader {
  display: grid;
  grid-template-columns: 300px 150px;
  align-items: center;
  gap: 1rem;
}

.BoardLabel {
  display: flex;
  gap: 1em;
  align-items: center;
  height: 35px;
  font-size: 20px;
  font-weight: 700;
  color: var(--fc-main);
}

.BoardLabel a {
  text-decoration: none;
  color: var(--fc-main);
}

.BoardLabel a:hover {
  cursor: pointer;
}

/* make the edit button invisible.
make the save button visible.
hide the label and make the input for the edit 
visible*/
.BoardLabel a:nth-child(1) {
  opacity: 1;
  width: 20px;
}

.BoardLabel.active a:nth-child(1) {
  opacity: 0;
  width: 0;
}

.BoardLabel a:nth-child(1) div {
  display: inline-block;
}

.BoardLabel.active a:nth-child(1) div {
  display: none;
}

.BoardLabel a:nth-child(2) {
  opacity: 0;
  width: 0;
}

.BoardLabel.active a:nth-child(2) {
  opacity: 1;
  width: 20px;
}

.BoardLabel a:nth-child(5) {
  opacity: 0;
  width: 0;
}

.BoardLabel.active a:nth-child(5) {
  opacity: 1;
  width: 20px;
}

.BoardLabel a:nth-child(3) div {
  display: none;
}

.BoardLabel.active a:nth-child(3) div {
  display: inline-block;
}

.BoardLabel span {
  opacity: 1;
  width: 100%;
}

.BoardLabel.active span {
  opacity: 0;
  width: 0;
}

.BoardLabel input {
  opacity: 0;
  width: 0;
}

.BoardLabel.active input {
  opacity: 1;
  width: 100%;
}

.BoardName {
  font-size: 15px;
  font-weight: 700;
  color: var(--fc-main);
}

.ResourceContainer {
  opacity: 0;
  height: 0;
  grid-column: 1 / 8;
  border: solid 1px;
  padding: 5px 5px;
}

.ResourceContainer * {
  height: 0;
}

.ResourceContainer.active {
  opacity: 1;
  height: auto;
}

.ResourceContainer.active * {
  height: auto;
}

.SectionHeader {
  font-weight: 700;
}

.ResourceItem {
  display: grid;
  grid-template-columns: 5em 7em 7em 1em auto;
  color: var(--fc-main);
}

.ResourceItem:hover:not(:first-child) {
  background-color: var(--bga-alt);
}

.ResourceItem div:nth-child(1) {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 5px;
}

.ResourceItem div:nth-child(2) {
  display: flex;
  align-items: center;
  justify-content: left;
  padding: 5px 5px;
}

.ResourceItem div:nth-child(3) {
  display: flex;
  align-items: center;
  justify-content: left;
  padding: 5px 5px;
}

.ResourceItem div:nth-child(4) {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 5px;
}

.horizontalline {
  border-top: solid 1px;
  grid-column: 1 / 6;
}

.ScheduleGridRow {
  display: grid;
  grid-template-columns: 100px 100px 100px 100px repeat(7, 6px) 6px 6px 200px;
  gap: 1em;
}

.ScheduleGridRow div:nth-child(1) {
  width: 100px;
}

.ScheduleGridRow div:nth-child(2) {
  width: 100px;
}

.ScheduleGridRow div:nth-child(3) {
  width: 100px;
}

.ScheduleGridRow div:nth-child(4) {
  width: 100px;
}

.ScheduleGridRow div:nth-child(5) {
  width: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ScheduleGridRow div:nth-child(6) {
  width: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ScheduleGridRow div:nth-child(7) {
  width: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ScheduleGridRow div:nth-child(8) {
  width: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ScheduleGridRow div:nth-child(9) {
  width: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ScheduleGridRow div:nth-child(10) {
  width: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ScheduleGridRow div:nth-child(11) {
  width: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ScheduleRow2 {
  grid-column: 5;
}

.ScheduleHeaderButtons {
  width: 200px;
  grid-column: 14;
  display: flex;
  gap: 1em 1em;
  padding: 5px 5px;
}

.ScheduleHeaderButtons a {
  text-decoration: none;
  color: var(--fc-main);
}

.ScheduleButtons {
  grid-column: 12;
  display: flex;
  gap: 1em;
  padding: 5px 5px;
  width: 75px;
}

.ScheduleButtons a {
  text-decoration: none;
  color: var(--fc-main);
  width: 5px;
}

.CenterSchedule {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ShowServiceBoards {
  display: flex;
  align-items: center;
  width: 100%;
}

.ShowServiceBoards i:last-of-type {
  margin-left: .5em;
}

.altContent {
  display: none;
  margin-left: 0;
  margin-top: .5em;
}

.disableitem {
  pointer-events: none;
  color: grey;
}

.disableitem a,
.disableitem i {
  color: grey !important;
}

.enableitem {
  pointer-events: all;
  color: var(--fc-main);
}

.enableitem a,
.enableitem i {
  color: var(--fc-main);
}

.onboardpopup {
  opacity: 0;
  position: absolute;
  top: 5%;
  left: 25%;
  width: 0;
  height: 0;
  padding: 16px;
  box-shadow: 0 0.5rem 0.8rem var(--text-color);
  background-color: rgb(245, 248, 250);
  z-index: 2000;
  color: black;
  overflow: auto;
  transition: all 0.3s ease-in-out;
}

.onboardpopup.active {
  opacity: 1;
  height: 900px;
  width: 800px;
}

.onboarddata {
  width: 100%;
  height: 90%;
}

.LogScreenHeader {
  display: grid;
  grid-template-columns: 25px 225px 175px 100px 150px 350px 350px;
  gap: 1em;
  padding: 10px;
  position: sticky;
  top: 0;
  background-color: var(--bg-alt);
}

.LogScreenHeader div {
  display: flex;
  align-items: center;
  font-weight: 700;
}

.LogHeaderItem {
  display: flex;
  gap: .5em;
}

.LogRow {
  display: grid;
  grid-template-columns: 25px 225px 175px 100px 150px 350px 350px;
  gap: 1em;
  padding: 10px;
  color: var(--fc-main);
}

.LogRow:hover {
  background-color: var(--bg-hover);
}

.LogRow.FATAL,
.LogRow.ERROR {
  color: red;
}

.LogRow.WARNING {
  color: var(--fc-warn);
}

.MainHeaderRow {
  display: flex;
  gap: 1em;
  align-items: center;
}

.LogRowItem {
  display: flex;
  align-items: top;
  gap: .5em;
  overflow: hidden;
}

.LogRowItem div {
  white-space: nowrap;
  overflow: hidden;
}

.ExceptionVal {
  justify-self: flex-start;
  width: 300px;

}

.ExceptionMax {
  justify-self: flex-end;
  color: var(--fc-main);
  cursor: pointer;
}