/* modified radio and checkbox buttons */

bootradio div {
    clear: both;
    overflow: hidden;
  }
  
  .bootradio label {
    width: 100%;
    border-radius: 3px;
    border: 1px solid #D1D3D4;
    font-weight: normal;
  }
  
  .bootradio input[type="radio"]:empty,
  .bootradio input[type="checkbox"]:empty {
    display: none;
  }
  
  .bootradio input[type="radio"]:empty ~ label,
  .bootradio input[type="checkbox"]:empty ~ label {
    position: relative;
    line-height: 2.5em;
    text-indent: 3.25em;
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }
  
  .bootradio input[type="radio"]:empty ~ label:before,
  .bootradio input[type="checkbox"]:empty ~ label:before {
    position: absolute;
    display: block;
    top: 0;
    bottom: 0;
    left: 0;
    content: '';
    width: 2.5em;
    background: #D1D3D4;
    border-radius: 3px 0 0 3px;
  }
  
  .bootradio input[type="radio"]:hover:not(:checked) ~ label,
  .bootradio input[type="checkbox"]:hover:not(:checked) ~ label {
    color: #888;
  }
  
  .bootradio input[type="radio"]:hover:not(:checked) ~ label:before,
  .bootradio input[type="checkbox"]:hover:not(:checked) ~ label:before {
    content: '\2714';
    text-indent: .9em;
    color: #C2C2C2;
  }
  
  .bootradio input[type="radio"]:checked ~ label,
  .bootradio input[type="checkbox"]:checked ~ label {
    color: #777;
  }
  
  .bootradio input[type="radio"]:checked ~ label:before,
  .bootradio input[type="checkbox"]:checked ~ label:before {
    content: '\2714';
    text-indent: .9em;
    color: #333;
    background-color: #ccc;
  }
  
  .bootradio input[type="radio"]:focus ~ label:before,
  .bootradio input[type="checkbox"]:focus ~ label:before {
    box-shadow: 0 0 0 3px #999;
  }
  
  .bootradio-default input[type="radio"]:checked ~ label:before,
  .bootradio-default input[type="checkbox"]:checked ~ label:before {
    color: #333;
    background-color: #ccc;
  }
  
  .bootradio-primary input[type="radio"]:checked ~ label:before,
  .bootradio-primary input[type="checkbox"]:checked ~ label:before {
    color: #fff;
    background-color: #337ab7;
  }
  
  .bootradio-success input[type="radio"]:checked ~ label:before,
  .bootradio-success input[type="checkbox"]:checked ~ label:before {
    color: #fff;
    background-color: #5cb85c;
  }
  
  .bootradio-danger input[type="radio"]:checked ~ label:before,
  .bootradio-danger input[type="checkbox"]:checked ~ label:before {
    color: #fff;
    background-color: #d9534f;
  }
  
  .bootradio-warning input[type="radio"]:checked ~ label:before,
  .bootradio-warning input[type="checkbox"]:checked ~ label:before {
    color: #fff;
    background-color: #f0ad4e;
  }
  
  .bootradio-info input[type="radio"]:checked ~ label:before,
  .bootradio-info input[type="checkbox"]:checked ~ label:before {
    color: #fff;
    background-color: #5bc0de;
  }

/* Bootstrap table */
table tr:hover {
    cursor: pointer;
}

.dataTables_wrapper .dataTables_processing {
  display: "block";
  position: absolute;
  top: 100px !important;
  z-index: 11000 !important;
}

/* Spinner */
.spinner {
  position: absolute;
  left: 50%;
  top: 50%;
  height:40px;
  width:40px;
  margin:0px auto;
  -webkit-animation: rotation .6s infinite linear;
  -moz-animation: rotation .6s infinite linear;
  -o-animation: rotation .6s infinite linear;
  animation: rotation .6s infinite linear;
  border-left:6px solid rgba(0,174,239,.15);
  border-right:6px solid rgba(0,174,239,.15);
  border-bottom:6px solid rgba(0,174,239,.15);
  border-top:6px solid rgba(0,174,239,.8);
  border-radius:100%;
}

@-webkit-keyframes rotation {
  from {-webkit-transform: rotate(0deg);}
  to {-webkit-transform: rotate(359deg);}
}
@-moz-keyframes rotation {
  from {-moz-transform: rotate(0deg);}
  to {-moz-transform: rotate(359deg);}
}
@-o-keyframes rotation {
  from {-o-transform: rotate(0deg);}
  to {-o-transform: rotate(359deg);}
}
@keyframes rotation {
  from {transform: rotate(0deg);}
  to {transform: rotate(359deg);}
}

/* Bootstrap navbar Breakpoint */
@media (max-width: 1080px) {
  .navbar-header {
      float: none;
  }
  .navbar-left,.navbar-right {
      float: none !important;
  }
  .navbar-toggle {
      display: block;
  }
  .navbar-collapse {
      border-top: 1px solid transparent;
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
  }
    .navbar-fixed-top {
    top: 0;
    border-width: 0 0 1px;
  }
    .navbar-collapse.collapse {
        display: none!important;
    }
    .navbar-nav {
        float: none!important;
    margin-top: 7.5px;
  }
  .navbar-nav>li {
        float: none;
    }
    .navbar-nav>li>a {
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .collapse.in{
      display:block !important;
  }
}

/* label done */
.label-done {
  background-color: #aeda00;
}