.hidden { visibility: hidden; }
.nodisplay { display: none; }
.inheritdisplay { display: inherit; }

.center { margin-left: auto; margin-right: auto; } 
.w95 { max-width: 95%; }

.ui-layout-container, .ui-layout-pane {
  -webkit-box-sizing: content-box;
     -moz-box-sizing: content-box;
          box-sizing: content-box;
}

.scroll { overflow: scroll;
          padding-bottom: 50px;
 }

.outline { border: 1px solid; }
.inline { display: inline; }
.block { display: block; }
.dashed {
    border: 2px solid #dadada;
    border-radius: 7px;
    outline-style: dashed;
}
.strongoutline {
    border: 2px solid #dadada;
    border-radius: 7px;
    outline-style: outset;
}

 /* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 101; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
  background-color: #fefefe;
  margin: 15% auto; /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  width: 80%; /* Could be more or less, depending on screen size */
}

/* The Close Button */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

html,
body {
   margin: 0;
   padding: 0;
   overflow: hidden; 
}

.zztop { z-index: 1000; }

.hidden-submit {
    border: 0 none;
    height: 0;
    width: 0;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

.nowrap {
    white-space:nowrap;
}

.fullheight {
    height: 100vh;
}

/* Navbar user profile dropdown items */
.navbar {
    background-color: #f1f1f1;
}

.navbar-nav > li > a{
    text-decoration: none;
    color:black;
}

.nav > li > a {
    text-decoration: none;
    color:black;
}

/* Panel colors */
.panel-green {
    border-color: #65665f;
}

.panel-green > .card-header {
    border-color: #65665f;
    color: #fff;
    background-color: #65665f;
}

.panel-green > a {
    color: #65665f;
}

.panel-green > a:hover {
    color: #3d8b3d;
}

.modal-backdrop {
    display: none;
}

/* hack for jQuery/Bootstrap/jQuery-UI conflicts: close button on dialogs */
.ui-dialog-titlebar-close:after { font-family: "Font Awesome 5 Free";
                                  font-weight: 900;
                                  content: "\f00d"; /* fa-close */
                                  display: flex;
                                  align-items: center;
                                  height: 100%;
                                  width: 100%;
                                  justify-content: center;
                                }
