/* Custom CSS overrides */
html {
    min-height: 100%;
}

body {
    background: url('../img/bg.jpg') 50% 100% no-repeat #112d45 fixed;
    background-size: cover;
	color: #000;
}
	
	.site {
		background: url('../img/bg-shadow.png') 0% 80px repeat-x fixed;
	}

/* MENU */
	.navbar-nav {width: 100%;}
	.navbar {
		background: url('../img/bg.jpg') 50% 0% no-repeat #dbe9f2;
		background-size: cover;
	}
	
	#navbar > ul > li {
		border-left: 1px solid #FFF;
	}
	#navbar > ul > li:hover {
	    background: rgba(255,255,255,0.9);
	}
	
	#navbar > ul > li > a {
		color: #26547a;	
	}
	   
/* END MENU */


/* GRID BLOCKS */
/* to = tool organizer */

	div.to-block {
		border: 1px solid rgba(255,255,255,0.8);
		background: rgba(255, 255, 255, 0.5);
	}
	
	.to-label {
		background: #138ac2;
		box-shadow: 1px 1px 0 #05527c;
		-moz-box-shadow: 1px 1px 0 #05527c;
		-webkit-box-shadow: 1px 1px 0 #05527c;
		color: #FFF;
	}
	
	.to-label span {
	    color: #FFF;
	}
	
	
	.shine:before {
		background: url('../img/spot-light.png') 50% 0% no-repeat;
	}
	
	.shine:after {
		background: url('../img/spot-light.png') 50% 0% no-repeat;
	}
	

	.shadow:after {
	    background: url('../img/shadow.png') 50% 0% no-repeat;
	}

	#home .icon {
		color: #26547a; 
	}
	
	
/* END GRID BLOCKS*/

/* LOGO & NAVBAR*/

	#logo {
	    float: right; 
	    position: absolute; 
	    right:-15px;
	    /*background: url('../img/logo-light.png') 0% 50% no-repeat;*/
	}
	
	.navbar-brand {
	    float: right;
	    height: auto !important;
	}
	
	.navbar-brand a {
	    background: #f7fafc;
	    border: 1px solid rgba(255,255,255,1.0);
	}
	
	.navbar-brand img {
		width: 100%;	
	}

/* END LOGO & NAVBAR*/


/* TYPOGRAPHY */

	h1, h2, h3, h4, h5, h6 {
	    font-weight: 500;
	    line-height: 100%;
	    margin: 10px 0 10px 0
	}
	
	h1 > .fa, 
	h2 > .fa,
	h3 > .fa,
	h4 > .fa,
	h5 > .fa,
	h6 > .fa {
		color: #FFF;
	}
	
	hr {height: 0; border: none; border-bottom: 1px solid #1c74bc;}
	
	.text-default {color: #FFF; font-size: 12px;}
	
	/* remove dotted border around links */
	a, a:hover, a:focus, a:active {
   		outline: 0;
	}	
	
/* END TYPOGRAPHY */


.round {
		border-radius: 3px;
		-moz-border-radius: 3px;
		-webkit-border-radius: 3px;
}


/* PAGE GRID */

	#main-content {
	    padding: 20px 0 0 0;
	    display: table;
	    min-height: 300px;
		width: 100%;
	}
	
	.scrollable {
		height: 400px;
		overflow: auto;
		overflow-x: none;
	}
	
	.page-header {
	    margin: 0px 0 20px;
	}


/* DARK BLUE GRADIENT */
.bg-dark
 {
    /* IE10 Consumer Preview */
    background-image: -ms-linear-gradient(bottom, #004a87 0%, #007fc5 100%);
    /* Mozilla Firefox */
    background-image: -moz-linear-gradient(bottom, #004a87 0%, #007fc5 100%);
    /* Opera */
    background-image: -o-linear-gradient(bottom, #004a87 0%, #007fc5 100%);
    /* Webkit (Safari/Chrome 10) */
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #007fc5),
        color-stop(1, #004a87));
    /* Webkit (Chrome 11+) */
    background-image: -webkit-linear-gradient(bottom, #004a87 0%, #007fc5 100%);
    /* W3C Markup, IE10 Release Preview */
    background-image: linear-gradient(to top, #004a87 0%, #007fc5 100%);
}

/* LIGHT BLUE GRADIENT */
.btn.btn-primary,
.to-label,
.bg-medium
 {
    /* IE10 Consumer Preview */
    background-image: -ms-linear-gradient(bottom, #117eb1 0%, #179edd 100%);
    /* Mozilla Firefox */
    background-image: -moz-linear-gradient(bottom, #117eb1 0%, #179edd 100%);
    /* Opera */
    background-image: -o-linear-gradient(bottom, #117eb1 0%, #179edd 100%);
    /* Webkit (Safari/Chrome 10) */
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #179edd),
        color-stop(1, #117eb1));
    /* Webkit (Chrome 11+) */
    background-image: -webkit-linear-gradient(bottom, #117eb1 0%, #179edd 100%);
    /* W3C Markup, IE10 Release Preview */
    background-image: linear-gradient(to top, #117eb1 0%, #179edd 100%);
}

.btn-info {
    /* IE10 Consumer Preview */
    background-image: -ms-linear-gradient(bottom, #048dcd 0%, #87ceeb 100%);
    /* Mozilla Firefox */
    background-image: -moz-linear-gradient(bottom, #048dcd 0%, #87ceeb 100%);
    /* Opera */
    background-image: -o-linear-gradient(bottom, #048dcd 0%, #87ceeb 100%);
    /* Webkit (Safari/Chrome 10) */
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #87ceeb),
        color-stop(1, #048dcd));
    /* Webkit (Chrome 11+) */
    background-image: -webkit-linear-gradient(bottom, #048dcd 0%, #87ceeb 100%);
    /* W3C Markup, IE10 Release Preview */
    background-image: linear-gradient(to top, #048dcd 0%, #87ceeb 100%);
    border-color: #048dcd;
}

/* GRAY GRADIENT */
header,
.btn-default,
.bg-light
{
    /* IE10 Consumer Preview */
    background-image: -ms-linear-gradient(bottom, #bdbdbd 0%, #e8e8e8 100%);
    /* Mozilla Firefox */
    background-image: -moz-linear-gradient(bottom, #bdbdbd 0%, #e8e8e8 100%);
    /* Opera */
    background-image: -o-linear-gradient(bottom, #bdbdbd 0%, #e8e8e8 100%);
    /* Webkit (Safari/Chrome 10) */
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #bdbdbd), color-stop(1, #e8e8e8));
    /* Webkit (Chrome 11+) */
    background-image: -webkit-linear-gradient(bottom, #bdbdbd 0%, #e8e8e8 100%);
    /* W3C Markup, IE10 Release Preview */
    background-image: linear-gradient(to top, #bdbdbd 0%, #e8e8e8 100%);
}

/* GREEN GRADIENT */
.bg-special
{
    /* IE10 Consumer Preview */
    background-image: -ms-linear-gradient(bottom, #208c27 0%, #6edd85 100%);
    /* Mozilla Firefox */
    background-image: -moz-linear-gradient(bottom, #208c27 0%, #6edd85 100%);
    /* Opera */
    background-image: -o-linear-gradient(bottom, #208c27 0%, #6edd85 100%);
    /* Webkit (Safari/Chrome 10) */
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #208c27), color-stop(1, #6edd85));
    /* Webkit (Chrome 11+) */
    background-image: -webkit-linear-gradient(bottom, #208c27 0%, #6edd85 100%);
    /* W3C Markup, IE10 Release Preview */
    background-image: linear-gradient(to top, #208c27 0%, #6edd85 100%);
}


/* FILTER MENU - left sidebar */

	.filter-menu .list-group-item {
		background: none;
		border: none;
		border-radius: 0 !important;
		font-size: 16px;
	}
	
	.filter-menu a.list-group-item {
		color: #FFF;
	}
	
	.filter-menu a.list-group-item:focus {
		background: transparent;
		}
	
	.filter-menu a.list-group-item:hover {
		background: rgba(255,255,255,0.1);
		}

	.filter-menu a.list-group-item.selected {
  		background-color: #27a730;
  		color: #FFFFFF;
		}
	.filter-menu a.list-group-item .fa {width: 15px;}
	
	.filter-menu ul > ul > li a {padding-left: 20px;}
	.filter-menu ul > ul > ul > li a {padding-left: 40px;}
	.filter-menu ul > ul > ul > ul> li a {padding-left: 60px;}
	.filter-menu ul > ul > ul > ul> ul > li a {padding-left: 80px;}
	.filter-menu > li > ul > li a:hover {background: #82ff9c; color: #27a730;}
	
	.filter-menu h4 {color: #FFF;}


/* END FILTER MENU*/

/* PAGES */

	#page.error h1 {
		font-size: 80px;
		font-family: "bosch_sanslight";
	}

/* FOR DEMO */
	
	#home div.to-block > .to-block-content{
		height: 220px;
	}
	
	#home div.to-block:hover {
		background: rgba(255,255,255,0.3);
	}	
/* END FOR DEMO*/

/* BOOTSTRAP MVC FIXES*/

	.hidden-md, .hidden-sm, .hidden-xs {
		/*display: inline-block !important;*/
	}
	
	.navbar-default {
		border-bottom: 1px solid #FFF;
	}

	.navbar-collapse {
		border-top: none;
	}
	
	.table thead > tr > th, .table tbody > tr > th, .table tfoot > tr > th, .table thead > tr > td, .table tbody > tr > td, .table tfoot > tr > td {
		border-top: none;
	}	

	.table tr.selected {background: #dae6f1;}
	.table tr.selected a {color: #FFF;}

	.media-body, .media-left, .media-right {
	  display: table-cell;
	  vertical-align: top;
	}
	
	.media-left, .media>.pull-left {
	  padding-right: 10px;
	}

	.list-group-item.disabled, .list-group-item.disabled:focus, .list-group-item.disabled:hover {
	  color: #777;
	  cursor: not-allowed;
	  background-color: #eee;
	}


	.close {
	  float: right;
	  font-size: 30px;
	  font-weight: bold;
	  line-height: 1;
	  color:rgba(25,128,196,0.8);
	  text-shadow: none;
	  opacity: 1;
	  filter: alpha(opacity=100);
		padding: 0 10px !important;
	}
	
	button.close:hover {
		background: rgba(25,128,196,0.5);
		color: #FFF;
	}
	
	.alert.to-block {
		background: rgba(25,128,196,0.5);
	}
	
	.input-group-btn:first-child > .btn {
		border-right: none;
	}
	
	.input-group .form-control:last-child{
		border-left: none;
	}
	
	.form-control[disabled], .form-control[readonly] {
  		cursor: not-allowed;
  		background-color: transparent;
  		color: #fff;
	}
	
	/* modal window */
	
	.modal-dialog { 
        /*width: 100%;*/
	    width: 1160px;
	}	
	
	.modal-content {
	  background: rgba(255,255,255, 1.0) !important;
	  border: 1px solid rgba(255,255,255, 0.2);
	}
	
	legend {
		color: #FFF;
		border-bottom: 1px solid rgba(25,128,196,0.8);
	}
	
	/* STATUS LABELS */
	
	.label {
		text-transform: capitalize;
	}
	.label-available {
  		background-color: #28bc33;
	}
	
	.label-taken {
  		background-color: #ea0000;
	}
	
	.label-repair {
  		background-color: #4e79da;
	}
	
	.label-overdue {
  		background-color: #ff9a32;
	}
	
	.label-loan-out {
		background-color: #e6b800;
	}

	.label-borrowed-in {
		background-color: #28bc33;
	}
	
	.label-borrowed-out {
		background-color: #ea0000;	
	}
	
	#home .icon label {font-size: 12px; text-align: left; line-height: 20px; display: block;}
	#home .piechart div.icon {position: absolute; top: 35px; left: 0px; line-height: 80px !important;}
	#home .piechart div.icon span {font-size: 30px; font-family: 'bosch_sansbold';}
	#home .piechart canvas {margin-bottom: 10px;}
	
	a, a:hover {color: inherit; text-decoration: none;}
	
	.table .table {background: transparent;}
	
	/* TABLE FILTERS */
	
	.btn-group.open .dropdown-toggle {
	  -webkit-box-shadow: none;
	  box-shadow: none;
	  background-color: #0a60b7;
	  color: #FFF;
	}
	.btn-group.filter {margin-left: -13px;}
	.btn.filter, .btn.filter:hover, .btn.filter:focus {
		color: #FFF;
		text-decoration: none;
		border-radius: 0;	  
	}
	
	.dropdown-menu.filter {
		background: #0a60b7;
		border-radius: 0;
		margin: 0;
		border: none;
		padding: 15px;
		color: #FFF;
	}
	.dropdown-menu.filter  label {color: #FFF;}
	.dropdown-menu.filter input {background: #092942;}
	.caret {  border-top: 4px solid #FFF;}

	.filters label {
		display: block;
	}
		
	/* FORM ELEMENTS */
	
	.form-control {
	  background-color: rgba(255,255,255,0.9);
	  border: 1px solid rgba(255,255,255, 0.9);
	  color: #007fc5;
      -webkit-box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.5);
	  box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.5);
	}
.form-control:focus,
.form-control:hover
	{
		box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.1);
		border: 1px solid #26547a;
		color: #26547a;
	}


	select.form-control option{
		background-color: rgba(255,255,255,0.9);
	}
	
	.form-horizontal .form-group {
		margin-left: 0;
		margin-right: 0;
	}

	/* STANDART TABS */
	
	.nav-tabs {
        border-bottom: 1px solid rgba(255,255,255,0.30);
        background: transparent;
    }
    
    
    .nav-tabs li a {
		border: none;  
        color: #5484ad;
        margin-right: 0px;
		border: 1px solid rgba(45,160,255,0);
		border-bottom: none !important;  
		border-radius: 0;
		background: rgba(255,255,255,1.0);   
    }
    
    .nav-tabs li a span {
        display: inline-block;
        font-family: 'bosch_sansregular';
    }
    
    .nav-tabs > li.active > a, 
    .nav-tabs > li > a:hover, 
    .nav-tabs > li.active > a:hover, 
    .nav-tabs > li.active > a:focus {
        background: rgba(255,255,255,0.8);
        color: #26547a !important;
		border: 1px solid rgba(255,255,255,0.3);
		border-bottom: none !important;             
    }
    
    .nav-tabs > li {
        text-align: center;
    }

	.tab-content > .active, .pill-content > .active {
		background: rgba(255,255,255,0.8);
		border: 1px solid rgba(255,255,255,0.30);
		border-top: none !important;
		padding: 0 10px;  
	}
	
	/* SKEW TABS */
	
	.nav-tabs.skew {
        border-bottom: 1px solid rgba(45,160,255,0.30);
        background: rgba(0,0,0,0.15);
        box-shadow: inset 1px 1px 5px rgba(0,0,0,0.75);
        -webkit-transform: skew(-15deg);
        -moz-transform: skew(-15deg);
        -ms-transform: skew(-15deg);
        -o-transform: skew(-15deg);
        transform: skew(-15deg);
        border-radius: 5px;
    }
    
    .nav-tabs.skew li {
		border: none;
		border-style: solid;
		border-top: 0;
		border-right: 0;
		border-bottom: 0;
		border-left: 2px;
	    -webkit-border-image: -webkit-gradient(linear, 0 0, 0 100%, from(rgba(45,160,255,0.30)), to(rgba(0, 0, 0, 0))) 1 100%;
	    -webkit-border-image: -webkit-linear-gradient(rgba(45,160,255,0.30), rgba(0, 0, 0, 0)) 1 100%;
	    -moz-border-image: -moz-linear-gradient(rgba(45,160,255,0.30), rgba(0, 0, 0, 0)) 1 100%;
	    -o-border-image: -o-linear-gradient(rgba(45,160,255,0.30), rgba(0, 0, 0, 0)) 1 100%;
	    border-image: linear-gradient(to bottom, rgba(45,160,255,0.30), rgba(0, 0, 0, 0)) 1 100%;
	    margin-left: -1px;	    
    }
    
    .nav-tabs.skew li:first-child {border-left: 0;}
    
    .nav-tabs.skew li a {
        border: none !important;
        border-radius: 3px;
        color: #5484ad;
        margin-right: 0px;
    }
    
    .nav-tabs.skew li a span {
        display: inline-block;
        -webkit-transform: skew(15deg) !important;
        -moz-transform: skew(15deg) !important;
        -ms-transform: skew(15deg) !important;
        -o-transform: skew(15deg) !important;
        transform: skew(15deg) !important;
        font-family: 'bosch_sansregular';
    }
    
    .nav-tabs.skew > li.active> a, .nav-tabs.skew > li > a:hover, .nav-tabs.skew > li.active > a:hover
        {
        /*background-color: #179edc !important;*/
        color: #FFF !important;
        
        /* IE10 Consumer Preview */
        background-image: -ms-linear-gradient(bottom, #117eb1 0%, #179edd 100%);
        /* Mozilla Firefox */
        background-image: -moz-linear-gradient(bottom, #117eb1 0%, #179edd 100%);
        /* Opera */
        background-image: -o-linear-gradient(bottom, #117eb1 0%, #179edd 100%);
        /* Webkit (Safari/Chrome 10) */
        background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #179edd),
            color-stop(1, #117eb1));
        /* Webkit (Chrome 11+) */
        background-image: -webkit-linear-gradient(bottom, #117eb1 0%, #179edd 100%);
        /* W3C Markup, IE10 Release Preview */
        background-image: linear-gradient(to top, #117eb1 0%, #179edd 100%);        
    }
    
    .nav-tabs.skew > li {
        text-align: center;
    }
    
	.nav-tabs.skew {
        border-bottom: none;
        background: rgba(255,255,255,0.8 );
        box-shadow: inset 0 1px 2px rgba(0,0,0,0.50);
        -webkit-transform: skew(-15deg);
        -moz-transform: skew(-15deg);
        -ms-transform: skew(-15deg);
        -o-transform: skew(-15deg);
        transform: skew(-15deg);
        border-radius: 5px;
    }
    
    .nav-tabs.skew li a {
        border: none !important;
        border-radius: 3px;
        color: #5484ad;
        margin-right: 0px;
        background: transparent;
    }
    
    .nav-tabs.skew li a span {
        display: inline-block;
        -webkit-transform: skew(15deg) !important;
        -moz-transform: skew(15deg) !important;
        -ms-transform: skew(15deg) !important;
        -o-transform: skew(15deg) !important;
        transform: skew(15deg) !important;
        font-family: 'bosch_sansregular';
    }
    
    .nav-tabs.skew > li.active> a, .nav-tabs.skew > li > a:hover, .nav-tabs.skew > li.active > a:hover
        {
        /*background-color: #179edc !important;*/
        color: #FFF !important;
        
        /* IE10 Consumer Preview */
        background-image: -ms-linear-gradient(bottom, #117eb1 0%, #179edd 100%);
        /* Mozilla Firefox */
        background-image: -moz-linear-gradient(bottom, #117eb1 0%, #179edd 100%);
        /* Opera */
        background-image: -o-linear-gradient(bottom, #117eb1 0%, #179edd 100%);
        /* Webkit (Safari/Chrome 10) */
        background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #179edd),
            color-stop(1, #117eb1));
        /* Webkit (Chrome 11+) */
        background-image: -webkit-linear-gradient(bottom, #117eb1 0%, #179edd 100%);
        /* W3C Markup, IE10 Release Preview */
        background-image: linear-gradient(to top, #117eb1 0%, #179edd 100%);        
    }
    
    .nav-tabs.skew > li {
        text-align: center;
    }
    
	.tab-content.skew > .active, .pill-content.skew > .active {
		background: transparent;
		border: none !important;  
	}    
    
 /*.tab-content  p {padding: 20px;}*/
    
    
    /* PROGRESS BARS */
    
	.progress {
        border-bottom: none;
        background: rgba(212,226,241,1.0);
        box-shadow: inset 1px 1px 1px rgba(0,0,0,0.5);
        
        -webkit-transform: skew(-15deg);
		-moz-transform: skew(-15deg);
		-ms-transform: skew(-15deg);
		-o-transform: skew(-15deg);
		transform: skew(-15deg);
		/* background: url('../Content/img/progress-bg.png') 0% 50% repeat-x transparent;  */
		margin-bottom: 10px !important;
		height: 17px;
	}
	.progress-bar {
		background: #007cc1;
		border-radius: 3px;
		box-shadow: inset 0px 1px 1px rgba(0,0,0,0.75);	
	}    
	
	.progress .progress-bar {
/* 		-webkit-transform: skew(-15deg);
		-moz-transform: skew(-15deg);
		-ms-transform: skew(-15deg);
		-o-transform: skew(-15deg);
		transform: skew(-15deg);	 */	
	}
	
	.progress-bars {
		padding: 10px 40px;
		text-align: left !important;
		display: block;
	}
	
	
	.progress-bars label {
		font-size: 12px;
		font-weight: 300;
		padding-left: 5px;
		font-style: italic;
		margin-bottom: 0;
		display: block;
	}
	
	.progress-bars label span {
		/* float: right; */
		padding-left: 10px;
	}
	
	.progress-bar-danger {
		background: #ea0000;
	}
	
	.progress-bar-primary {
		background: #0064a5;
	}
		
	.progress-bar-success {
		background: #1EBD3C;
	}		
	/* FILTER BUTTONS & SWITCH BUTTONS*/
	
	.filter-buttons, 
	.switch-buttons {
		border-bottom: none;
		background: rgba(255,255,255,0.8);
		box-shadow: inset 0 1px 2px rgba(0,0,0,0.50);
		-webkit-transform: skew(-15deg);
		-moz-transform: skew(-15deg);
		-ms-transform: skew(-15deg);
		-o-transform: skew(-15deg);
		transform: skew(-15deg);
		border-radius: 5px;	
	}

	.filter-buttons span, 
	.switch-buttons span{
		display: block;
		-webkit-transform: skew(15deg);
		-moz-transform: skew(15deg);
		-ms-transform: skew(15deg);
		-o-transform: skew(15deg);
		transform: skew(15deg);		
	}
	
	.filter-buttons .btn,
	.switch-buttons .btn {
		background: none;
		border: none;
		border-style: solid;
		border-top: 0;
		border-right: 0;
		border-bottom: 0;
		border-left: 2px;
	    -webkit-border-image: 
	      -webkit-gradient(linear, 0 0, 0 100%, from(rgba(45,160,255,0.30)), to(rgba(0, 0, 0, 0))) 1 100%;
	    -webkit-border-image: 
	      -webkit-linear-gradient(rgba(45,160,255,0.30), rgba(0, 0, 0, 0)) 1 100%;
	    -moz-border-image:
	      -moz-linear-gradient(rgba(45,160,255,0.30), rgba(0, 0, 0, 0)) 1 100%;    
	    -o-border-image:
	      -o-linear-gradient(rgba(45,160,255,0.30), rgba(0, 0, 0, 0)) 1 100%;
	    border-image:
	      linear-gradient(to bottom, rgba(45,160,255,0.30), rgba(0, 0, 0, 0)) 1 100%;
	    color: #000;		
	}
	
	.filter-buttons .btn:first-child,
	.switch-buttons .btn:first-child { 
		border: none;
	}
	
	.filter-buttons .btn.active {
		background-color: #179edc !important;
		color: #FFF !important;
		background-image: -ms-linear-gradient(bottom, #117eb1 0%, #179edd 100%);
		background-image: -moz-linear-gradient(bottom, #117eb1 0%, #179edd 100%);
		background-image: -o-linear-gradient(bottom, #117eb1 0%, #179edd 100%);
		background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #179edd), color-stop(1, #117eb1));
		background-image: -webkit-linear-gradient(bottom, #117eb1 0%, #179edd 100%);
		background-image: linear-gradient(to top, #117eb1 0%, #179edd 100%);	
	}	
	
	.switch-buttons .off {}
	.switch-buttons .on {}
	
	.switch-buttons .btn {padding: 3px 15px; font-family: 'bosch_sansbold'; }
	 
	.switch-buttons .btn.on.active {
		background-color: #179edc !important;
		color: #FFF !important;
	    /* IE10 Consumer Preview */
	    background-image: -ms-linear-gradient(bottom, #208c27 0%, #6edd85 100%);
	    /* Mozilla Firefox */
	    background-image: -moz-linear-gradient(bottom, #208c27 0%, #6edd85 100%);
	    /* Opera */
	    background-image: -o-linear-gradient(bottom, #208c27 0%, #6edd85 100%);
	    /* Webkit (Safari/Chrome 10) */
	    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #208c27), color-stop(1, #6edd85));
	    /* Webkit (Chrome 11+) */
	    background-image: -webkit-linear-gradient(bottom, #208c27 0%, #6edd85 100%);
	    /* W3C Markup, IE10 Release Preview */
	    background-image: linear-gradient(to top, #208c27 0%, #6edd85 100%);
	}
	
	.switch-buttons .btn.off.active {
		background-color: #179edc !important;
		color: #FFF !important;
		background-image: -ms-linear-gradient(bottom, #117eb1 0%, #179edd 100%);
		background-image: -moz-linear-gradient(bottom, #117eb1 0%, #179edd 100%);
		background-image: -o-linear-gradient(bottom, #117eb1 0%, #179edd 100%);
		background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #179edd), color-stop(1, #117eb1));
		background-image: -webkit-linear-gradient(bottom, #117eb1 0%, #179edd 100%);
		background-image: linear-gradient(to top, #117eb1 0%, #179edd 100%);	
	}

 	/* CUSTOM DROPDOWN MENU - SELECT */
 	
 	.bootstrap-select.btn-group .dropdown-toggle,
 	.bootstrap-select.btn-group.open .dropdown-toggle {
 		color: #5484ad;
 	}
 	
 	.bootstrap-select.btn-group .dropdown-toggle .caret {
 		  border-right: 0 dotted;
		  border-bottom: 4px solid transparent;
		  border-left: 4px solid #5484ad;
		  border-top: 4px solid transparent;
		  margin-top: -3px;	  
 	} 

 	.bootstrap-select.btn-group.open .dropdown-toggle .caret{
		  border-bottom: 0 dotted;
		  border-right: 4px solid transparent;
		  border-top: 4px solid #5484ad;
		  border-left: 4px solid transparent;
 	} 
 	 		
 	.bootstrap-select.btn-group .dropdown-menu {
 		background: rgba(255,255,255,0.9);
 		border: 1px solid rgba(255,255,255,1.0);
 		margin-top: 13px;
 	}
 	
 	.bootstrap-select.btn-group.open .btn-dropdown:after {
	  width: 0;
	  height: 0;
	  border-left: 7px solid transparent;
	  border-right: 7px solid transparent;
	  border-bottom: 7px solid rgba(255,255,255,0.8);
	  content: "";
	  position: absolute;
	  margin-top: 35px;
 	}
 	
 	.bootstrap-select.btn-group .btn-dropdown, 
 	.bootstrap-select.btn-group.open .btn-dropdown,
 	.bootstrap-select.btn-group .btn-dropdown:focus,
 	.bootstrap-select.btn-group .btn-dropdown {
		border-bottom: 1px solid rgba(255,255,255,0.8);
		background: rgba(255,255,255,0.8);
		box-shadow: inset 1px 1px 2px rgba(0,0,0,0.3);
		border-radius: 5px;
		outline: none !important;	
	}
		
	.bootstrap-select.btn-group .dropdown-menu > li > a {color: #26547a; padding: 5px 20px;}
	.bootstrap-select.btn-group .dropdown-menu > li > a:hover, .bootstrap-select.btn-group .dropdown-menu > li > a:focus {
	    /* IE10 Consumer Preview */
	    background-image: -ms-linear-gradient(bottom, #6edd85 0%, #208c27 100%);
	    /* Mozilla Firefox */
	    background-image: -moz-linear-gradient(bottom, #6edd85 0%, #208c27 100%);
	    /* Opera */
	    background-image: -o-linear-gradient(bottom, #6edd85 0%, #208c27 100%);
	    /* Webkit (Safari/Chrome 10) */
	    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #6edd85), color-stop(1, #208c27));
	    /* Webkit (Chrome 11+) */
	    background-image: -webkit-linear-gradient(bottom, #6edd85 0%, #208c27 100%);
	    /* W3C Markup, IE10 Release Preview */
	    background-image: linear-gradient(to top, #6edd85 0%, #208c27 100%);
	    color: #FFF;
	}
	
	/* double row button */
	
	.btn-double {
		line-height: 16px;
		padding: 5px 10px;
	}
	
	.btn-double .fa {
		font-size: 200%;
	}
	.btn-double .fa,
	.btn-double span {
		float: left;
		display: block;
		text-align: left;
		padding: 10px;
	}
	
	/* ACTION BUTTONS */
	td.actions {white-space: nowrap;}
	.actions .btn {
		padding: 5px;
  		width: 35px;
  		height: 35px;
  		font-size: 17px;
  		color: #FFF;
  		border: none;
  		margin-right: 1px;
  		outline: 0;
	}
	.actions .btn:hover {
		opacity: 0.8;
	}
	
	.actions .btn-group {}
	.actions .btn-group .dropdown-toggle{
		background: #FFF;
		color: #0064a5;
	}
	.actions .btn .fa {line-height: 25px;}
	
	.actions .btn-checkout 		{background: #0064a5;}
	.actions .btn-checkin		{background: #38bfff;}
	.actions .btn-transfer 		{background: #d5ce21;}
	.actions .btn-remove 		{background: #d9534f;}
	.actions .btn-info	 		{background: #ffa145;}
	.actions .btn-edit	 		{background: #5cb85c;}
	.actions .btn-maintanance, .actions .btn-maintanence {background: #00787f;}
	.actions .btn-history 		{background: #535d65;}	
	.actions .btn-loan       	{background: #2f4f4f;}
 	.actions .btn-return  		{background: #bdbdbd;}
 	.actions .btn-maintanancehistory 	{background: #4682b4;}
 	.btn-updateassignee {background: #428bca;margin-left: 5px; color: #fff;}
    .btn-removeassignee {background: #d9534f;margin-left: 5px;}
    .actions .btn-price  		{background: #0064a5;}
 	
	.actions .dropdown-menu {
		background: rgba(6,52,87, 1);
		padding: 1px;
		min-width: 30px;
	}
	.actions .dropdown-menu .btn {margin-bottom: 2px;}
	
	
	/* MESSAGE BLOCKS */
	
	.panel-danger {
		border-color: rgba(25,128,196,0.8);
		background-color: transparent;
	}
	
	.panel-danger .panel-heading {
		background: #007fc5;
		color: #FFF;
		border: none;
	}
	
	.panel-danger .panel-body{
		background: rgba(43,134,219,0.2);
	}
	
	.panel-danger .text-danger {
		color: #ea0000;
	}
	
	.panel-danger .text-primary {
		color: #FFF;
	}	
	

.btn-lg {line-height: 1.30}
#home .to-block a {
	display: block;
/* 	background: rgba(255,255,255,0.2); */
	margin: -40px -1px 0 -1px;
	padding: 40px 1px 0px 1px;
	height: 220px;
	position: relative;
}

.clearfix {clear: both; display: block !important;}

.list-brand-toggle {
  padding-left: 15px;
}

.list-brand-item {
  color: #FFF;
  position: relative;  
  padding-top: 10px;
  padding-bottom: 10px;
  margin-bottom: -1px;  
  font-size: 16px;
}

a.list-brand-item:hover,
a.list-brand-item:focus {
  color: #FFFFFF;
  text-decoration: none;  
}

input, select, textarea {
  max-width: inherit;
}

.dropdown.open {
	z-index: 1;
}

.form-horizontal .control-label, .form-control-static {padding-top: 0;}

.list-table .col-xs-2,
.list-table .col-xs-4,
.list-table .col-xs-6,
.list-table .col-xs-8,
.list-table .col-xs-12

{
	padding-left: 0 !important;
	margin: 0;

}

.list-table .half-height {height: 50px;}
.list-table .max-height {height: 100px;}

.list-table img {max-height: 100px;}


/* LOGIN PAGE */
	
	.page-login #page {margin-top: 10%;}
	.page-login .to-block {
		border: 1px solid rgba(255,255,255,0.7);
	}
	.page-login .logo {
		border: 1px solid rgba(255,255,255,0.4);
		padding: 15px 30px 15px 15px;
		background: rgba(255,255,255,1.0);
		min-height: 100px;
		max-height: 170px;
        height: 170px;
	}

     .page-login .logo img {
        max-height: 100%;
     }
	.page-login .to-block.shine {
		margin-right: -30px;
  		margin-left: 30px;
	}
	.page-login .bottom-fixed {display: none; position: fixed; bottom: 100px;}
	.page-login .shadow:after {
		height: 80px;
	}
	
	.page-login .title {
		padding-left: 15px;
		font-weight: normal;
	}
	
	.page-login .login-message {padding: 7px 0; }
	
	.page-login header, 
	.page-login footer {display: none;}
	
	.page-login .site {background: none; padding: 0; margin: 0}


    .loading {color: #1c74bc; text-align: center; padding: 10px 0 !important;}
    
    .dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {
	    background-color: #007cc1;
	}

    /*Color for disabled text fields*/
    .form-control[disabled], .form-control[readonly] {
    cursor: not-allowed;
    background-color: aliceblue;
    color: black;
    }

    .btn .fa {
        margin-right: 0;
    }

    /* SLICK GRID 100% WIDE */
    .page.container {
        width: inherit !important;
    }

    #home {
        max-width: 1170px;
        margin: auto;
    }