html,

#loading{
  width: 100%;
  height: 100%;
  background-color: rgb(255, 255, 255);
  position: absolute;
  margin-top: 0px;
  top: 0px;
  z-index: 1001;
}
#loading-center{
  width: 100%;
  height: 100%;
  position: relative;
  }
#loading-center-absolute {
  position: absolute;
  left: 50%;
  top: 50%;
  height: 50px;
  width: 150px;
  margin-top: -25px;
  margin-left: -75px;
}
.object{
  width: 8px;
  height: 50px;
  margin-right:5px;
  background-color: rgb(158, 153, 153);
  -webkit-animation: animate 1s infinite;
  animation: animate 1s infinite;
  float: left;
  }

.object:last-child {
  margin-right: 0px;
  }

.object:nth-child(10){
  -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;	
  }
.object:nth-child(9){
  -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
  }	
.object:nth-child(8){
  -webkit-animation-delay: 0.7s;
    animation-delay: 0.7s;	
  }
.object:nth-child(7){
  -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;	
  }
.object:nth-child(6){
  -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
  }
.object:nth-child(5){
  -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
  }
.object:nth-child(4){
  -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;		
  }
.object:nth-child(3){
  -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;	
  }
.object:nth-child(2){
  -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s;
  }	

  #start_time
  {
      border-radius : 5px;
      
  }
  
  #end_time
  {
      border-radius : 5px;
  }
  
  input[type="text"]:hover
  {
    background-color:#AAAAAA;
    cursor : pointer;
  }
  
  input[type="text"]:active
  {
    background-color:#444444;
    cursor : pointer;
  }  

.bd-placeholder-img {
    font-size: 1.125rem;
    text-anchor: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.container.custom-container-width {
    max-width: 600px;
}

.row-margin-top {
    margin-top: 20px;
}

@media (min-width: 768px) {
    .bd-placeholder-img-lg {
        font-size: 3.5rem;
    }
}

@-webkit-keyframes animate {
 
  50% {
  -ms-transform: scaleY(0); 
     -webkit-transform: scaleY(0);
    transform: scaleY(0);
  
    }
}
@keyframes animate {
  50% {
  -ms-transform: scaleY(0); 
     -webkit-transform: scaleY(0);
    transform: scaleY(0);
    }
}