/*
html,
body {
    height: 100%;
    background: url('../imadeos/background-image.jpg')no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    height: auto;
}
*/
.center {
    margin-left: auto;
    margin-right: auto;
  }

.wrap {
    min-height: 100%;
    height: auto;
    margin: 0 auto -60px;
    padding: 0 0 60px;
}

.wrap > .container {
    padding: 70px 15px 20px;
}

.footer {
    height: 60px;
    background-color: #f5f5f5;
    border-top: 1px solid #ddd;
    padding-top: 20px;
}

.jumbotron {
    text-align: center;
    background-color: transparent;
}

.jumbotron .btn {
    font-size: 21px;
    padding: 14px 24px;
}

.not-set {
    color: #c55;
    font-style: italic;
}

/* add sorting icons to gridview sort links */
a.asc:after, a.desc:after {
    position: relative;
    top: 1px;
    display: inline-block;
    font-family: 'Glyphicons Halflings';
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    padding-left: 5px;
}

a.asc:after {
    content: /*"\e113"*/ "\e151";
}

a.desc:after {
    content: /*"\e114"*/ "\e152";
}

.sort-numerical a.asc:after {
    content: "\e153";
}

.sort-numerical a.desc:after {
    content: "\e154";
}

.sort-ordinal a.asc:after {
    content: "\e155";
}

.sort-ordinal a.desc:after {
    content: "\e156";
}

.grid-view th {
    white-space: nowrap;
}

.hint-block {
    display: block;
    margin-top: 5px;
    color: #999;
}

.error-summary {
    color: #a94442;
    background: #fdf7f7;
    border-left: 3px solid #eed3d7;
    padding: 10px 20px;
    margin: 0 0 15px 0;
}

/* align the logout "link" (button in form) of the navbar */
.nav li > form > button.logout {
    padding: 15px;
    border: none;
}

@media(max-width:767px) {
    .nav li > form > button.logout {
        display:block;
        text-align: left;
        width: 100%;
        padding: 10px 15px;
    }
}

.nav > li > form > button.logout:focus,
.nav > li > form > button.logout:hover {
    text-decoration: none;
}

.nav > li > form > button.logout:focus {
    outline: none;
}

.login-side {
	/* padding: 50px 0px 50px 50px; */
/*	border: 1px solid #f1f1f1;*/
	/* margin-top: 80px; */
}
/* 
.login-box {
	padding: 50px;
	border: 1px solid #062f67;
    border-radius: 25px;
	margin-top: 80px;
}
.login-box > .row > h2 {
	text-align: center !important;
	color: #f1f1f1 !important;
}
.login-avatar {
	vertical-align: middle;
	width: 100px;
	height: 100px;
	border-radius: 50%;
} */
#login-button {
	background-color: #00adf1 !important;
	color: white;
}

.avatar {
	vertical-align: middle;
	width: 50px;
	height: 50px;
    border-radius: 50%;
}

.panel > .list-group > .list-group-item:hover {
	background-color: #f1f1f1;
	cursor: pointer;
}
.panel > .list-group > .list-group-item > a {
	text-decoration: none;
	color: black;
	opacity: 0.8;
}
.panel > .list-group > .list-group-item > span {
	padding-right: 7px;
}

.ghost-button {
  display: inline-block;
  width: 200px;
  padding: 8px;
  color: #f1f1f1;
  border: 1px solid #f1f1f1;
  text-align: center;
  outline: none;
  text-decoration: none !important;
}
.ghost-button:hover,
.ghost-button:active {
  background-color: #f1f1f1;
  color: #757575;
}

.btn-feature {
  margin-right: 1em; /* remove this while use*/
  margin-bottom: 1em; /* remove this while use*/
	display: inline-block;
	outline: none;
	*zoom: 1;
	text-align: center;
	text-decoration: none !important;
	font-family: inherit;
	font-weight: 300;
	letter-spacing: 1px;
	vertical-align: middle;
	border: 1px solid;
	transition: all 0.2s ease;
	box-sizing: border-box;
	text-shadow: 0 1px 0 rgba(0,0,0,0.01);
}
.btn-radius {
  border-radius: 3px;
}
.btn-medium {
	font-size: 0.5em;
	padding: 0.4125em 1.25em;
}
.btn-blue {
	color: #4682B4;
	border-color: #4682B4;
}
.btn-blue:hover {
  background: #4682B4;
  color: #fff;
  border-color: #4682B4;		
}

@media only screen and (max-width: 450px) {
    .feature-box {
        display: block;
			 width: 100%;
    }
}

#printWO {
    margin: 0px 10px !important;
}

.progress-container {
    width: 100%;
    margin-bottom: 120px;
}
.progressBar {
    counter-reset: step;
}
.progressBar li {
    list-style-type: none;
    float: left;
    width: 19%;
    position: relative;
    text-align: center;
}
.progressBar li:before {
    content: counter(step);
    counter-increment: step;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border: 1px solid #757575 !important;
    display: block;
    text-align: center;
    margin: 0 auto 10px auto;
    border-radius: 50%;
    background-color: white;
}
.progressBar li:after {
    content: '';
    position: absolute;
    width: 60%;
    height: 1px;
    background-color: #757575 !important;
    top: 15px;
    left: -30%;
    z-index: 1;
}
.progressBar li:first-child::after {
    content: none;
}
.progressBar li.activeMe {
    color: green !important;
}
.progressBar li.activeMe:before {
    border-color: green !important;
}
.progressBar li.activeMe + li:after {
    background-color: green !important;
}

.custList {
    cursor: pointer;
}
.custList:hover, .particularsList:hover {
    background-color: #cfd8dc !important;
}


.bg-red-header table thead tr {
/*    background-color: #b2ebf2;*/
    background-color: #b3e5fc;
}


table.table-border-all,
table.table-border-all td,
table.table-border-all th {
    border: 1px solid black !important;
    border-collapse: collapse !important;
    /* padding: 5px; */
}

table.table-no-border,
table.table-no-border td,
table.table-no-border th {
    border: none;
}
