/*
 * Base structure
 */

.multi_lines_text {
	white-space: pre-line;
}

 /**
 * For the correct positioning of the placeholder element, the dnd-list and
 * it's children must have position: relative
 */
.multiSelection ul[dnd-list],
.multiSelection ul[dnd-list] > li {
  position: relative;
}

/**
 * The dnd-list should always have a min-height,
 * otherwise you can't drop into it once it's empty
 */
.multiSelection ul[dnd-list] {
    min-height: 42px;
    padding-left: 0px;
}

/**
 * An element with .dndPlaceholder class will be
 * added to the dnd-list while the user is dragging
 * over it.
 */
.multiSelection ul[dnd-list] .dndPlaceholder {
    display: block;
    background-color: #ddd;
    min-height: 42px;
}

/**
 * The dnd-lists's child elements currently MUST have
 * position: relative. Otherwise we can not determine
 * whether the mouse pointer is in the upper or lower
 * half of the element we are dragging over. In other
 * browsers we can use event.offsetY for this.
 */
.multiSelection ul[dnd-list] li {
    background-color: #fff;
    border: 1px solid #ddd;
    border-top-right-radius: 4px;
    border-top-left-radius: 4px;
    display: block;
    padding: 10px 15px;
    margin-bottom: -1px;
}

/**
 * Show selected elements in green
 */
.multiSelection ul[dnd-list] li.selected {
    background-color: #dff0d8;
    color: #3c763d;
}

/* Handle ui-select in an inline bootstrap form */
.form-inline .ui-select-container .ui-select-toggle,
.form-inline .ui-select-container .ui-select-search {
  width: 100%;
}

.table-hover tbody tr:hover td, .table-hover tbody tr:hover th {
    opacity: 0.7;
}

a.failedLink {
    display: block;
    height: 100%;
    width: 100%;
}

span.recheck {
	color: #ffffff;
	background-color: #337ab7;
	border-color: #2e6da4;
}

th.checking {
	color: #ffffff;
	background-color: #3380cc;
}

th.passedCheck {
	color: #ffffff;
	background-color: #33cc33;
}

th.failedCheck {
	color: #ffffff;
	background-color: #cc3333;
}

th.restarting {
	color: #ffffff;
	background-color: #f4bc42;
}

/* Move down content because we have a fixed navbar that is 50px tall */
body {
  padding-top: 50px;
}

/* Anchor Element To Bottom */
.bottom-align-text {
    position: absolute;
    bottom: 0;
    right: 0;
  }

/*
 * Global add-ons
 */

.sub-header {
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

/*
 * Top navigation
 * Hide default border to remove 1px line.
 */
.navbar-fixed-top {
  border: 0;
}

/*
 * Sidebar
 */

/* Hide for mobile, show later */
.sidebar {
  display: none;
  position: fixed;
  top: 51px;
  bottom: 0;
  left: 0;
  z-index: 1000;
  padding: 20px;
  overflow-x: hidden;
  overflow-y: auto; /* Scrollable contents if viewport is shorter than content. */
  background-color: #f5f5f5;
  border-right: 1px solid #eee;
}
.sidebar > .show {
    display: block;
}
@media (min-width: 768px) {
  .sidebar {
    display: block;
  }
}

/* Sidebar navigation */
.nav-sidebar {
  margin-right: -21px; /* 20px padding + 1px border */
  margin-bottom: 20px;
  margin-left: -20px;
}
.nav-sidebar > li > a {
  padding-right: 20px;
  padding-left: 20px;
}
.nav-sidebar > li > span {
  padding-top: 10px;
  padding-right: 20px;
  padding-left: 20px;
  padding-bottom: 10px;
  position: relative;
  display: block;
  color: #337ab7;
}
.nav-sidebar > li.sideNavTitle > span {
	background-color: #428bca;
	color: #ffffff;
}
.nav-sidebar > hr {
	margin-bottom:5px !important;
	margin-top:5px !important;
	color:#428bca
}
.nav-sidebar > .active > a,
.nav-sidebar > .active > a:hover,
.nav-sidebar > .active > a:focus {
  color: #fec41a;
  background-color: #155d98;
}


/*
 * Main content
 */

.main {
  padding: 20px;
}
@media (min-width: 768px) {
  .main {
    padding-right: 40px;
    padding-left: 40px;
  }
}
.main .page-header {
  margin-top: 0;
}


/*
 * Placeholder dashboard ideas
 */

.placeholders {
  margin-bottom: 30px;
  text-align: center;
}
.placeholders h4 {
  margin-bottom: 0;
}
.placeholder {
  margin-bottom: 20px;
}
.placeholder img {
  display: inline-block;
  border-radius: 50%;
}

.custom-well{
    display: table;
    width: 100%;
}

.well-center{
    display: table-cell;
    verticala-lign: middle;
    font-size: 11px;
}

.fareVendorsGrid {
	height: 100%;
	width: 100%
}

.alertResultGrid {
	height: 50%;
	width: 100%
}

.fullInput {
	display: flex;
	padding: 0;
	margin: 0;
	border: 0;
	width: 100%;
	height: 100%;
}

textarea {
	resize: vertical;
}

@media (max-width: 767px){
th.rotate {
  /* Something you can count on */
  height: 140px;
  white-space: nowrap;
}

th.rotate > div {
  transform:
    /* Magic Numbers */
    /* 45 is really 360 - 45 */
    rotate(270deg);
  width: 30px;
}

th.rotate > div > span {
  padding: 5px 10px;
}
}
