@import url(/css/bootstrap-datepicker3.css);
@import url(/css/bootstrap-clockpicker.min.css);

body {
    background: url(/img/background.jpg) center center no-repeat fixed;
    background-size: cover;
    color: #4F4F4F;
    font-size: 12px;
}

.loader {
  width: 100%;
  height: auto;
  padding-top: 100%;
  position: relative;
}

.loader_inner{
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid #ee2f27;
  animation: spin 1s linear infinite;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.navbar-default {
    background-color: #293133;
    border-color: #e7e7e7;
    text-transform: uppercase;
}
.navbar-default .navbar-nav>li>a {
    color: #FFF;
}
.navbar-default .navbar-brand {
    color: #FFF;
}
.navbar-default .navbar-brand:focus, .navbar-default .navbar-brand:hover {
    color: #FFF;
    background-color: #505050;
}
.navbar-default .navbar-nav>li>a:focus, .navbar-default .navbar-nav>li>a:hover {
    color: #FFF;
    background-color: #505050;
}
.panel-default>.panel-heading {
    color: #FFF;
    background-color: #ee2f27;
    border-color: #ddd;
}
.table {
    margin-bottom: 0px;
}
.table>thead>tr>th {
    vertical-align: bottom;
    background-color: #D2D2D2;
    border: 1px solid #BFBFC3;
    font-weight: normal;
}
.table>tbody>tr>td {
    border: 1px solid #BFBFC3;
    vertical-align: middle;
}
.table-striped > tbody > tr:nth-of-type(odd) {
  background-color: #F4F4F4;
}
.table-striped > tbody > tr:nth-of-type(odd).disabled {
  background-color: #ffd0d0;
}
.table-striped > tbody > tr:nth-of-type(even) {
  background-color: #E8E8E8;
}
.table-striped > tbody > tr:nth-of-type(even).disabled {
  background-color: #ffa2a2;
}
.table>tbody>tr.info>td, .table>tbody>tr.info>th, .table>tbody>tr>td.info, .table>tbody>tr>th.info, .table>tfoot>tr.info>td, .table>tfoot>tr.info>th, .table>tfoot>tr>td.info, .table>tfoot>tr>th.info, .table>thead>tr.info>td, .table>thead>tr.info>th, .table>thead>tr>td.info, .table>thead>tr>th.info {
    background-color: #d9edf7;
    font-weight: bold;
}
.table>tbody>tr.in-progress>td, .table>tbody>tr.in-progress>th, .table>tbody>tr>td.in-progress, .table>tbody>tr>th.in-progress, .table>tfoot>tr.in-progress>td, .table>tfoot>tr.in-progress>th, .table>tfoot>tr>td.in-progress, .table>tfoot>tr>th.in-progress, .table>thead>tr.in-progress>td, .table>thead>tr.in-progress>th, .table>thead>tr>td.in-progress, .table>thead>tr>th.in-progress {
    background-color: #f7f0d9 !important;
}
.table-hover>tbody>tr:hover>td, .table-hover>tbody>tr:hover>th {
  background-color: #d9edf7;
  color:#000;
  cursor: pointer;
}

.glyphicon-refresh-animate {
    -animation: spin .7s infinite linear;
    -webkit-animation: spin2 .7s infinite linear;
}

@-webkit-keyframes spin2 {
    from { -webkit-transform: rotate(0deg);}
    to { -webkit-transform: rotate(360deg);}
}

@keyframes spin {
    from { transform: scale(1) rotate(0deg);}
    to { transform: scale(1) rotate(360deg);}
}
