html * {
  font: Arial;
}

a {
  color: #00B7FF;
}

.login-page {
  background-color: #ffffff;
}

.loader {
    display:    none;
    position:   fixed;
    z-index:    99999999999;
    top:        0;
    left:       0;
    height:     100%;
    width:      100%;
    background: rgba( 255, 255, 255, .8 )
                url('../dist/img/loading.gif')
                50% 50%
                no-repeat;
}

.wrapper{
	visibility: hidden;
	-webkit-transition: opacity 600ms, visibility 600ms;
  transition: opacity 600ms, visibility 600ms;
}

/* When the body has the loading class, we turn
   the scrollbar off with overflow:hidden */
body.loading .loader {
    overflow: hidden;
}

/* Anytime the body has the loading class, our
   modal element will be visible */
body.loading .loader {
    display: block;
}

#loadingPage {
	visibility: visible;
	overflow: hidden;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99999999999;
  width: 100%;
  height: 100%;
  background: rgba( 255, 255, 255, .8 )
							url('../dist/img/loading.gif')
							50% 50%
							no-repeat;
	-webkit-transition: opacity 600ms, visibility 600ms;
  transition: opacity 600ms, visibility 600ms;
}

.box-body {
	overflow-x:auto !important;
	/* width: auto !important; */
}

.no-border-div:focus {
    outline-width: 0;
}

.no-border-div{
    outline-width: 0;
}

/* .modal-body{
	overflow-y: auto;
} */

#loading-bar {
	display:none;
  pointer-events: all;
  z-index: 99999999999;
  border: none;
  margin: 0px;
  padding: 0px;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  cursor: wait;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.6);
}

.centered-content {
		height: auto;
		width: 80%;
    position: absolute;
    top: 50%;
    left: 50%;
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

.redClass {
	/* color: rgba(212, 63, 58, 1) */
	color: rgba(255, 0, 0, 1)
}

.grid3x {
	float:left;
	position: relative;
	width: 30%;
	padding-bottom: 30%; /* = width for a 1:1 aspect ratio */
	margin:1.66%;
	background-color: rgba(200,200,200,0.1);
	overflow:hidden;
}

.content-grid3x {
	position:absolute;
  height:90%; /* = 100% - 2*5% padding */
  width:90%; /* = 100% - 2*5% padding */
  padding: 5%;
	text-align:center;
}

.content-grid3x .rs{
	width:auto;
  height:auto;
  max-height:90%;
  max-width:100%;
}


 /* The snackbar - position it at the bottom and in the middle of the screen */
#snackbar {
  visibility: hidden; /* Hidden by default. Visible on click */
  min-width: 250px; /* Set a default minimum width */
  margin-left: -125px; /* Divide value of min-width by 2 */
  background-color: #333; /* Black background color */
  color: #fff; /* White text color */
  text-align: center; /* Centered text */
  border-radius: 2px; /* Rounded borders */
  padding: 16px; /* Padding */
  position: fixed; /* Sit on top of the screen */
  z-index: 10000; /* Add a z-index if needed */
  left: 50%; /* Center the snackbar */
  bottom: 30px; /* 30px from the bottom */
}

/* Show the snackbar when clicking on a button (class added with JavaScript) */
#snackbar.show {
  visibility: visible; /* Show the snackbar */
  /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
  However, delay the fade out process for 2.5 seconds */
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

/* Animations to fade the snackbar in and out */
@-webkit-keyframes fadein {
  from {bottom: 0; opacity: 0;}
  to {bottom: 30px; opacity: 1;}
}

@keyframes fadein {
  from {bottom: 0; opacity: 0;}
  to {bottom: 30px; opacity: 1;}
}

@-webkit-keyframes fadeout {
  from {bottom: 30px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}

@keyframes fadeout {
  from {bottom: 30px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}

.cardView{
	border-width:3px;
	border-style:outset;
	border-color: rgba(0,0,0,0.3);
	border-radius:3px;
	padding:3%
}

.borderRed{
	border-color: rgba(255,0,0,1);
}

.borderYellow{
	border-color: rgba(255,255,51,1);
}

.borderGreen{
	border-color: rgba(100,255,100,1);
}

.rightDiv {
	border-left:1px;
	border-left-style:none;
	border-color: rgba(0,0,0,0.15);
	height:100%;
}

/* .centerDiv {
	border-left:1px;
	border-right:1px;
	border-right-style:solid;
	border-left-style:solid;
	border-color: rgba(0,0,0,0.15);
} */

.leftDiv {
	border-right:1px;
	border-right-style:solid;
	border-color: rgba(0,0,0,0.15);
	height:100%;
}

.row{
	margin-bottom:10px;
}

.modal-lg {
    width:85%;
}

.tr-bold{
	background-color: #DDDDDD;
}

.tr-bolder{
	background-color: #AAAAAA;
}

.tr-head{
	background-color: #EEEEEE;
}


.table-borderless > tr > th > td{
	border:none !important;
}

.tr-red{
	background-color: rgba(255,0,0,0.2) !important;
}
