/* app css stylesheet */

.ust-container {
  background-image: -webkit-linear-gradient(top left, #EEEEEE, #F8F8F8);
  background-image: -o-linear-gradient(top left, #EEEEEE, #F8F8F8);
  background-image: linear-gradient(to bottom right, #EEEEEE, #F8F8F8);
  background-size: 100% 100%;
  padding-top: 60px;
  min-width: 320px;
  /* background: url(../img/blurry-blue.jpg) #001229 no-repeat; */
}


/* Horizontal line style start  */
  .ust-hr {
    border-top: 2px solid #fff;
    margin: 10px 0;
  }

 /* Horizontal line style end  */


/* angular - bootstrap css style */
  .nav, .pagination, .carousel, .panel-title a, a {
    cursor: pointer;
  }

  @media screen and (max-width: 380px) {
    .ust-container {
      padding-top: 85px;
    }
  }

.view-container {
  position: relative;

}
.view-container.ng-enter {
    -webkit-transition:all 1s ease-in;
  transition:all 1s ease-in;
  opacity: 0;
}

.view-container.ng-enter-active {
  opacity: 1;
}
