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

/*Pagination*/
.pagenumbers button {
    width: 50px;
    margin: 3px;
}

.rowsinfo {
    padding-top:7px;
}

.pagesinfo {
    padding-top:7px;
}

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


/*------------------------ Row per page and fast search---------------------------*/
.per-page-search-row {
    padding-bottom:10px;
}

.per-page-search-select{
    width:85px;
}

.per-page-search-middle-col{
    padding-bottom:5px;
}

.per-page-search-fast-search{
    width:100%;
}

/*--------------------------------------------------------------
# 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);
    }
  }





