/*version 1*/
.focus{
  border-color: red;
  border-width: 2px;
}

/* The Modal (background) */
.loading_modal {
   display: none; /* Hidden by default */
   position: fixed; /* Stay in place */
   z-index: 999; /* Sit on top */
   left: 0;
   top: 0;
   width: 100%; /* Full width */
   height: 100%; /* Full height */
   overflow: auto; /* Enable scroll if needed */
   /*background-color: red;*/
}

/* Modal Content/Box */
.loading-content {
   /*background-color: #fefefe;*/
   margin: 15% auto; /* 15% from the top and centered */
   padding: 20px;
   width: 20%; /* Could be more or less, depending on screen size */
}
.spinner {
  margin: 100px auto;
  width: 50px;
  height: 40px;
  text-align: center;
  font-size: 10px;
}

.spinner > div {
  background-color: #333;
  height: 100%;
  width: 6px;
  display: inline-block;

  -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
  animation: sk-stretchdelay 1.2s infinite ease-in-out;
}

.spinner .rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.spinner .rect3 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

.spinner .rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

.spinner .rect5 {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

@-webkit-keyframes sk-stretchdelay {
  0%, 40%, 100% { -webkit-transform: scaleY(0.4) }
  20% { -webkit-transform: scaleY(1.0) }
}

@keyframes sk-stretchdelay {
  0%, 40%, 100% {
    transform: scaleY(0.4);
    -webkit-transform: scaleY(0.4);
  }  20% {
    transform: scaleY(1.0);
    -webkit-transform: scaleY(1.0);
  }
}




  label{
    font-size: 12px;
    font-weight: normal;
  }
  .input-sm{
    height: 25px;
    font-size: 10px;
    font-weight: normal;
  }
  .form-control{
    height: 25px;
    font-size: 12px;
    padding: 0px 6px;
  }
  .box-header{
    padding: 5px;
  }
  .box-header .box-title{
    font-size: 12;
    font-weight: bold;
  }
  .box{
    margin-bottom: 5px;
  }
  .form-group{
    margin-bottom: 5px;
  }
