/* -------------------------MAIN-------------------------- */
/*body {background-color: #fcfbfb;}*/

.app-branding {
    height: 60px;
    padding-top: 1rem;
    padding-left: 1rem;
    margin-bottom: 1rem;
}
.app-branding .logo-icon {
    width: 36px;
    height: 36px;
}
.app-branding .logo-text {
    color: #252930;
    font-size: 1.25rem;
    font-weight: 600;
    vertical-align: middle;
}

.app-page-title-container {
    padding-bottom:30px;
}

.app-page-title {
    font-size: 2.0rem;
    font-weight: bolder;
}

.app-wrapper{
	margin-top:50px;
}

a:link {
    text-decoration: none!important;
}

.table{ 
	font-size:14px!important;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.app-footer {
    height:100px;
    padding-top:10px;
    border-top: #e3dedd solid 1px;
}

.app-footer .copyright {
    font-size: .9125rem;
}

/*--------------------------------------------------------------
# Pagination
--------------------------------------------------------------*/
.app-pgn-page-numbers button {
    width: 50px;
    margin: 3px;
}

.app-pgn-rows-info {
    padding-top:7px;
}

.app-pgn-pages-info {
    padding-top:7px;
}

.app-pgn-msg-info{
  padding:10px;
  border: solid 1px #e7e9ed;
  opacity: 0.33;
}

/*--------------------------------------------------------------
# Row per page and fast search
--------------------------------------------------------------*/
.app-select-per-page {
    min-width:125px;
    max-width:125px;
}

/*--------------------------------------------------------------
# Autocomplete
--------------------------------------------------------------*/
.autocomplete{
    position: relative;
    display: inline-block;
    width:100%;
}

.autocomplete-list{
    max-height:200px;
    overflow-y: auto;
    position: absolute;
    z-index: 99;
    /*position the autocomplete items to be the same width as the container:*/
    top: 100%;
    left: 0;
    right: 0;
    border-bottom: 1px solid #f8f9fa;
}

.autocomplete-list li{
   background: #fff;
}

.autocomplete-list li:hover{
   background: #f6f2f1;
}

.autocomplete-list a{
    color: #343a40;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
}
  
#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #cc1616;
    border-top-color: #efefef;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
}
  
@-webkit-keyframes animate-preloader {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
}
  
@keyframes animate-preloader {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
}





