html, body {
  height: 100%;
  font-size: 15px;/*to override bootstrap default of 10*/
  font-family: 'Roboto', sans-serif;
  overflow: hidden;
}

h1,h2,h3,h4,h5{
    font-family: 'Roboto', sans-serif;
}

.fa {
    font-size: 24px;
}

.vertical-center {
  min-height: 100%;  /* Fallback for vh unit */
  min-height: 100vh; /* You might also want to use
                        'height' property instead.
                        
                        Note that for percentage values of
                        'height' or 'min-height' properties,
                        the 'height' of the parent element
                        should be specified explicitly.
  
                        In this case the parent of '.vertical-center'
                        is the <body> element */

  /* Make it a flex container */
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex; 
  
  /* Align the bootstrap's container vertically */
    -webkit-box-align : center;
  -webkit-align-items : center;
       -moz-box-align : center;
       -ms-flex-align : center;
          align-items : center;
  
  /* In legacy web browsers such as Firefox 9
     we need to specify the width of the flex container */
  width: 100%;
  
  /* Also 'margin: 0 auto' doesn't have any effect on flex items in such web browsers
     hence the bootstrap's container won't be aligned to the center anymore.
  
     Therefore, we should use the following declarations to get it centered again */
         -webkit-box-pack : center;
            -moz-box-pack : center;
            -ms-flex-pack : center;
  -webkit-justify-content : center;
          justify-content : center;
}
.col-xs-5ths,
.col-sm-5ths,
.col-md-5ths,
.col-lg-5ths {
    position: relative;
    min-height: 1px;
    padding-right: 10px;
    padding-left: 10px;
}

.col-xs-5ths {
    width: 20%;
    float: left;
}

@media (min-width: 768px) {
    .col-sm-5ths {
        width: 20%;
        float: left;
    }
}

@media (min-width: 992px) {
    .col-md-5ths {
        width: 20%;
        float: left;
    }
}

@media (min-width: 1200px) {
    .col-lg-5ths {
        width: 20%;
        float: left;
    }
}

.flex-col{
    height: 100%;
    display:flex;
    flex-direction: column;
}

#mainbar{
    display: inline;
}
.mainbarElement{
    line-height: 60px;
    float:left;
    color: white;
}
.mainbarElement a:hover, a:active{
    color: rgb(214, 240, 252)
}

.mainbarElement a:link, a:visited{
    color: rgb(214, 240, 252)
}

.blackDrop
{
    /*background-color: rgba(0,0,0,0.5);*/
    background-image: radial-gradient(circle, rgba(0, 0, 0, 0.45) 0%,rgba(0, 0, 0, 0.95)  100%);
	animation-name: fadein;
    animation-duration: 1s;
    animation-timing-function: ease-in;
	text-align: center;
}

.logoLogin
{
    width: 15em;
    margin: 4em;
}

#contentDiv{
    animation-name: fadein;
    animation-duration: 0.5s;
    animation-timing-function: ease-in;
}

#loginBack
{
    padding: 0px;
    background-color: black;
    background-repeat: no-repeat;
    background-image: url(imgs/login_splash.png);
    background-size: cover;
}

@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes appear {
    from { transform: scale(0); }
    to   { transform: scale(1); }
}

.image
{
  width: 90%;
  margin: 11px;
}

.menuHeader
{
    height: 50px;
    width: 200px;
    margin: 5px;
}

.menuFooter
{
    height: 50px;
    width: 220px;
    margin: 12px;
}

.infoLogos{
    height: 5em;
    margin-top: 1em;
    margin-bottom: 1em;
    /*margin: 15px;*/
}

.appHeader
{
    float:left;
    height: 55px;
    /*margin-left: 3em;*/
}

#app{
  display: block;
  height: inherit;
}

#contentDiv
{
  padding-top: 15px;
  padding-bottom: 150px;
  /*padding-bottom: 85px;*/
  /*margin-right: 1em;*/
  /*margin-left: 1em;*/
}
@media (max-width: 992px) {
    #flexyContent
    {
        height: inherit;
        overflow-y: auto;
        overflow-x: hidden;
    }
}
@media (min-width: 992px) {
    #flexyContent
    {
        height: inherit;
        overflow-y: hidden;
        overflow-x: hidden;
        padding-right: 1em;
        padding-left: 1em;

    }
}

.fill { 
    height: inherit;
    transition: margin 600ms;
    margin-bottom: -75px;
}

.actionButton{
    animation-name: fadein;
    animation-duration: 300ms;
    /*transition: fadein 250ms;*/
}
.vertical-align
{
    display: flex;
    align-items: center;
}
.vertical-align-bottom
{
    display: flex;
    align-items: flex-end;
}

.inliner{
    display: flex;
    flex-direction: row;
    align-items: center;
}

.incolumn{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.inliner-space{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
}

#landingPage
{
  margin-top: 25px;
  margin-bottom: -75px;
  padding: 0px;
  /*background-color: white;*/
  background-repeat: no-repeat;
  background-image: url(imgs/Welcome.png);
  background-size: contain;
  background-position: center; 
}

.footer {
  padding-top:10px;
  padding-left: 10px;
  padding-right: 20px;
  text-align: right;
  height: 75px;
  margin-top: -60px; 
  width:100%;
  float: right;
} 

.menuWidth{
    width: 280px;
}

#loader{
  position: fixed;
  z-index: 999;
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  text-align: center;
  padding-top: 25%;
  /*padding-left: 300px;*/
}

.row-eq-height{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.scroller{
    width: 100%;
    height: 100%;
    overflow: scroll;
}

.tableScroller{
    overflow-y: auto;
    overflow-x: hidden;
	height: inherit;
}

/*.scrollShadow{
    background:
    linear-gradient(white 10%, rgba(255,255,255,0)),
    linear-gradient(rgba(255,255,255,0), white 90%) 0 100%,
    -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(0,0,0,.3)), to( rgba(0,0,0,0))),
    -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(0,0,0,0)), to(rgba(0,0,0,.3))) 0 100%;
	background-repeat: no-repeat;
	background-color: white;
	background-size: 100% 10px, 100% 10px, 100% 5px, 100% 5px;
	background-attachment: local, local, scroll, scroll;
}*/

.bold{
    font-weight: 600;
}

.underline{
    text-decoration: underline;
}

.italic{
    font-style: italic;
}

.error-message{
    font-size: 25px;
    color: red;
    padding-top: 2em;
    padding-left:2em;
}

.svg-shadow{
    filter: drop-shadow(2px 2px 3px rgba(0,0,0,.3) );
}

.table-row:hover{
    background: rgba(0, 0, 255, 0.02)
}

.table-cell{
        padding-left: 1em;
        padding-right: 1em;
        height: 2.5em;
        text-align: left;
        font-size: 0.85rem;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
}

.title-bc{
    white-space: nowrap;
    display: inline-flex;
}
