body {
  font-size: 16px;
  font-family: 'Roboto', sans-serif;
}

.top-bar-logo {
  float: left;
  height: 3.5rem;
}

.bottom-logo {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1
}

.category-button {
  background-color: #eee;
}

.data-box-top {
  width: 80%;
  padding: 0.75rem 1rem;
  width: 100%;
}
.error-box {
  background: #ec5840;
}
.success-box {
  background: #3adb76;
}

.mdi-red:hover{
  color: #D9534F;
}

.mdi-red{
  color: black;
}

.mdi-allred{
  color: #D9534F;
}

.mdi-blue:hover{
  color: #337AB7;
}

.mdi-allblue{
  color: #337AB7;
}

.mdi-blue{
  color: black;
}

.mdi-green {
  color: green;
}

.mdi {
  font-size: 20px;
}

.tooltip-custom {
  position: relative;
  /*color: black;*/
    /*display: inline-block;
    border-bottom: 1px dotted black;*/
}

.tooltip-custom .tooltiptext-custom {
    visibility: hidden;
    width: 120px;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 5px;
    
    font-size: 16px;

    /* Position the tooltip */
    position: absolute;
    z-index: 1;
    width: 120px;
    top: 100%;
    left: 50%; 
    margin-left: -60px; /* Use half of the width (120/2 = 60), to center the tooltip */
}

.tooltip-custom:hover .tooltiptext-custom {
    visibility: visible;
}

.red-color {
    color: red;
}

#load {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: fixed;
    z-index: 9999;
    background: url("../img/loading.gif") no-repeat center center rgba(0,0,0,0.25);
}