/**
Some useful tags from Bootstrap 3.3.4
*/

/*
* Display only for screen readers (from bootstrap 3.2)
*/
.sr-only {
    border: 0 none;
    clip: rect(0px, 0px, 0px, 0px);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.text-center {
    text-align: center;
}


/* *************************************
*		  Alerts
* *********************************** */
.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
}
.alert h4 {
  margin-top: 0;
  color: inherit;
}
.alert .alert-link {
  font-weight: bold;
}
.alert > p,
.alert > ul {
  margin-bottom: 0;
}
.alert > p + p {
  margin-top: 5px;
}
.alert-dismissable,
.alert-dismissible {
  padding-right: 35px;
}
.alert-dismissable .close,
.alert-dismissible .close {
  position: relative;
  top: -2px;
  right: -21px;
  color: inherit;
}
.alert-success {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}
.alert-success hr {
  border-top-color: #c9e2b3;
}
.alert-success .alert-link {
  color: #2b542c;
}
.alert-info {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1;
}
.alert-info hr {
  border-top-color: #a6e1ec;
}
.alert-info .alert-link {
  color: #245269;
}
.alert-warning {
  color: #c09853;
  background-color: #fcf8e3;
  border-color: #faebcc;
}
.alert-warning hr {
  border-top-color: #f7e1b5;
}
.alert-warning .alert-link {
  color: #66512c;
}
.alert-danger {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}
.alert-danger hr {
  border-top-color: #e4b9c0;
}
.alert-danger .alert-link {
  color: #843534;
}
.alert-default {
  color: #717171;
  background-color: #ECECEC;
  border-color: #D6D6D6;
}
.alert-default hr {
  border-top-color: #D6D6D6;
}
.alert-default .alert-link {
  color: #843534;
}
/* *************************************
*		  Progress bars 
* *********************************** */
.progress {
    background-color: #f5f5f5;
    border-radius: 4px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2) inset;
    height: 20px;
    margin: 3px auto;
    overflow: hidden;
}

.progress-bar {
    cursor: default;
    box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.15) inset;
    color: #fff;
    float: left;
    font-size: 12px;
    height: 100%;
    line-height: 20px;
    text-align: center;
    transition: width 0.6s ease 0s;
    width: 0;
    background-color: #428bca;
}

.progress-bar-green {
    background-color: #5cb85c;
}

.progress-bar-red {
    background-color: #d9534f;
}

.progress-bar-yellow {
    background-color: #f0ad4e;
}

.progress-bar-empty {
    background: none;
    color: black;
    width: 100%;
    box-shadow: none;
}

.progress-bar-canceled {
    background: none;
    color: crimson;
    font-weight: bold;
}

.progress-bar-striped {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 40px 40px;
}

/* *************************************
*		  Labels 
* *********************************** */

.label {
  display: inline;
  padding: .2em .6em .3em;
  font-size: 75%;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: .25em;
  min-height: 1em;
  min-width: 1em;
}
a.label:hover,
a.label:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}
.label:empty {
  display: none;
}
.btn .label {
  position: relative;
  top: -1px;
}
.label-draft {
  background-color: #E2E2E2;
  color: #000;
}
.label-draft[href]:hover,
.label-draft[href]:focus {
  background-color: #E2E2E2;
}
.label-open {
  background-color: #777;
}
.label-open[href]:hover,
.label-open[href]:focus {
  background-color: #5e5e5e;
}
.label-waiting {
  background-color: #337ab7;
}
.label-waiting[href]:hover,
.label-waiting[href]:focus {
  background-color: #286090;
}
.label-confirmed {
  background-color: #5cb85c;
}
.label-confirmed[href]:hover,
.label-confirmed[href]:focus {
  background-color: #449d44;
}
.label-info {
  background-color: #5bc0de;
}
.label-info[href]:hover,
.label-info[href]:focus {
  background-color: #31b0d5;
}
.label-progress {
  background-color: #f0ad4e;
}
.label-progress[href]:hover,
.label-progress[href]:focus {
  background-color: #ec971f;
}
.label-rejected {
  background-color: #d9534f;
}
.label-rejected[href]:hover,
.label-rejected[href]:focus {
  background-color: #c9302c;
}
.label-confirmed-reserve {
  background-color: #9DCA42;
}
.label-confirmed-reserve[href]:hover,
.label-confirmed-reserve[href]:focus {
  background-color: #9DCA42;
}
.label-canceled {
  background-color: #000;
}
.label-canceled[href]:hover,
.label-canceled[href]:focus {
  background-color: #000;
}
.label-request {
  background-color: #761d72;
}
.label-request[href]:hover,
.label-request[href]:focus {
  background-color: #761d72;
}