 .loader {
     position: fixed;
     left: 0px;
     top: 0px;
     width: 100%;
     height: 100%;
     z-index: 9999;
     background: url('/custom/loader/loader.gif') 50% 50% no-repeat rgb(249, 249, 249);
     opacity: 0.4;
 }
 
 .main-sidebar{
     background: white;
 }

 label.error {
    color: red !important;
    font-size: 12px;
    font-weight: bold !important;
  }

  .help-block {
    color: red !important;
    font-size: 12px;
    font-weight: bold !important;
  }

  label.col-md-12 {
    font-size: 100%;
    padding-bottom: 4px;
    margin-bottom: 10px;
    white-space: normal;
  }

  .modal {
    overflow: auto !important;
  }

  .display-none {
    display: none;
  }
  /* ===== Styles added by MT ===== */
  .action-title-width{
    width: calc(100% - 30px);
  }
  .full-height{
    height: 100%;
  }

  .error{
      color: red;
      font-size: 12px;
  }


/* Pulse Button */
.pulse-button {
  position: relative;
  top: 50%;
  left: 50%;
  margin-left: -50px;
  margin-top: -50px;
  display: block;
  width: 100px;
  height: 100px;
  font-size: 1.3em;
  font-weight: light;
  font-family: 'Trebuchet MS', sans-serif;
  text-transform: uppercase;
  text-align: center;
  line-height: 100px;
  letter-spacing: -1px;
  color: white;
  border: none;
  border-radius: 50%;
  background: #5a99d4;
  cursor: pointer;
  box-shadow: 0 0 0 0 rgba(#5a99d4, .5);
  -webkit-animation: pulse 1.5s infinite;
}
.pulse-button:hover {
  -webkit-animation: none;
}

@-webkit-keyframes pulse {
  0% {
    @include transform(scale(.9));
  }
  70% {
    @include transform(scale(1));
    box-shadow: 0 0 0 50px rgba(#5a99d4, 0);
  }
    100% {
    @include transform(scale(.9));
    box-shadow: 0 0 0 0 rgba(#5a99d4, 0);
  }
}





.blob {
  background: black;
  /*border-radius: 50%;*/
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
  color: white;
  margin: 10px;
  height: 20px;
  width: 20px;
  transform: scale(1);
  animation: pulse-black 2s infinite;
}

@keyframes pulse-black {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
  }
  
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
  }
  
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}

.blob.blue {
  background: rgba(52, 172, 224, 1);
  box-shadow: 0 0 0 0 rgba(52, 172, 224, 1);
  animation: pulse-blue 2s infinite;
}

@keyframes pulse-blue {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(52, 172, 224, 0.7);
  }
  
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(52, 172, 224, 0);
  }
  
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(52, 172, 224, 0);
  }
}

.blob.green {
  background: #E84D4A;
  box-shadow: 0 0 0 0 rgba(0,77,64, 1);
 /* background: #004d40;
  box-shadow: 0 0 0 0 #004d40;*/
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(0,77,64, 0.7);
  }
  
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(0,77,64, 0);
  }
  
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(0,77,64, 0);
  }
}