@charset "UTF-8";
.form-group.downshift-container {
  max-width: 400px;
  overflow: visible;
}

.downshift {
  display: flex;
  flex-direction: row;
}
.downshift li {
  position: relative;
  cursor: pointer;
  display: block;
  border: none;
  height: auto;
  text-align: left;
  border-top: none;
  line-height: 1.5em;
  color: rgba(0, 0, 0, 0.87);
  font-size: 1rem;
  text-transform: none;
  font-weight: 400;
  box-shadow: none;
  padding: 0.8rem 1.1rem;
  white-space: normal;
  word-wrap: normal;
}
.downshift li.active {
  color: rgba(0, 0, 0, 0.95);
  background: rgba(0, 0, 0, 0.03);
}
.downshift li.selected {
  color: rgba(0, 0, 0, 0.95);
  font-weight: 700;
}
.downshift .selector {
  flex: 1;
}
.downshift input.form-control {
  width: 100%;
}
.downshift input {
  width: 100%;
  font-size: 14;
  word-wrap: break-word;
  line-height: 1em;
  outline: 0;
  white-space: normal;
  min-height: 2em;
  background: #fff;
  display: inline-block;
  padding: 1em 2em 1em 1em;
  color: rgba(0, 0, 0, 0.87);
  box-shadow: none;
  border: 1px solid rgba(34, 36, 38, 0.15);
  border-radius: 0.3rem;
  transition: box-shadow 0.1s ease, width 0.1s ease;
}
.downshift input.open {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.downshift .selector-label {
  margin: auto 5px auto 0;
}
.downshift .dropdown {
  position: relative;
  width: 100%;
}
.downshift ul {
  width: 100%;
  z-index: 1000;
  padding: 0;
  margin-top: 0;
  position: absolute;
  background-color: white;
  max-height: 20rem;
  overflow-y: auto;
  overflow-x: hidden;
  outline: 0;
  transition: opacity 0.1s ease;
  border-radius: 0 0 0.28571429rem 0.28571429rem;
  box-shadow: 0 2px 3px 0 rgba(34, 36, 38, 0.15);
}
.downshift ul.open {
  border-color: #96c8da;
  border-top-width: 0;
  border-right-width: 1;
  border-bottom-width: 1;
  border-left-width: 1;
  border-style: solid;
}
.downshift button {
  background-color: transparent;
  border: none;
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
  width: 47;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  align-items: center;
}
.downshift button:focus {
  outline: none;
}
.downshift .selector-input {
  position: relative;
}

/*!
 * Datepicker for Bootstrap
 *
 * Copyright 2012 Stefan Petre
 * Improvements by Andrew Rowls
 * Licensed under the Apache License v2.0
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 */
.datepicker {
  padding: 4px;
  border-radius: 4px;
  direction: ltr;
  /*.dow {
  	border-top: 1px solid #ddd !important;
  }*/
}

.datepicker-inline {
  width: 220px;
}

.datepicker.datepicker-rtl {
  direction: rtl;
}

.datepicker.datepicker-rtl table tr td span {
  float: right;
}

.datepicker-dropdown {
  top: 0;
  left: 0;
}

.datepicker-dropdown:before {
  content: "";
  display: inline-block;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #ccc;
  border-top: 0;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  position: absolute;
}

.datepicker-dropdown:after {
  content: "";
  display: inline-block;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #fff;
  border-top: 0;
  position: absolute;
}

.datepicker-dropdown.datepicker-orient-left:before {
  left: 6px;
}

.datepicker-dropdown.datepicker-orient-left:after {
  left: 7px;
}

.datepicker-dropdown.datepicker-orient-right:before {
  right: 6px;
}

.datepicker-dropdown.datepicker-orient-right:after {
  right: 7px;
}

.datepicker-dropdown.datepicker-orient-top:before {
  top: -7px;
}

.datepicker-dropdown.datepicker-orient-top:after {
  top: -6px;
}

.datepicker-dropdown.datepicker-orient-bottom:before {
  bottom: -7px;
  border-bottom: 0;
  border-top: 7px solid #999;
}

.datepicker-dropdown.datepicker-orient-bottom:after {
  bottom: -6px;
  border-bottom: 0;
  border-top: 6px solid #fff;
}

.datepicker > div {
  display: none;
}

.datepicker.days div.datepicker-days {
  display: block;
}

.datepicker.months div.datepicker-months {
  display: block;
}

.datepicker.years div.datepicker-years {
  display: block;
}

.datepicker table {
  margin: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.datepicker table tr td,
.datepicker table tr th {
  text-align: center;
  width: 30px;
  height: 30px;
  border-radius: 4px;
  border: none;
}

.table-striped .datepicker table tr td,
.table-striped .datepicker table tr th {
  background-color: transparent;
}

.datepicker table tr td.day:hover,
.datepicker table tr td.day.focused {
  background: #eeeeee;
  cursor: pointer;
}

.datepicker table tr td.old,
.datepicker table tr td.new {
  color: #999999;
}

.datepicker table tr td.disabled,
.datepicker table tr td.disabled:hover {
  background: none;
  color: #999999;
  cursor: default;
}

.datepicker table tr td.today,
.datepicker table tr td.today:hover,
.datepicker table tr td.today.disabled,
.datepicker table tr td.today.disabled:hover {
  color: #000000;
  background-color: #ffdb99;
  border-color: #ffb733;
}

.datepicker table tr td.today:hover,
.datepicker table tr td.today:hover:hover,
.datepicker table tr td.today.disabled:hover,
.datepicker table tr td.today.disabled:hover:hover,
.datepicker table tr td.today:focus,
.datepicker table tr td.today:hover:focus,
.datepicker table tr td.today.disabled:focus,
.datepicker table tr td.today.disabled:hover:focus,
.datepicker table tr td.today:active,
.datepicker table tr td.today:hover:active,
.datepicker table tr td.today.disabled:active,
.datepicker table tr td.today.disabled:hover:active,
.datepicker table tr td.today.active,
.datepicker table tr td.today:hover.active,
.datepicker table tr td.today.disabled.active,
.datepicker table tr td.today.disabled:hover.active,
.open .dropdown-toggle.datepicker table tr td.today,
.open .dropdown-toggle.datepicker table tr td.today:hover,
.open .dropdown-toggle.datepicker table tr td.today.disabled,
.open .dropdown-toggle.datepicker table tr td.today.disabled:hover {
  color: #000000;
  background-color: #ffcd70;
  border-color: #f59e00;
}

.datepicker table tr td.today:active,
.datepicker table tr td.today:hover:active,
.datepicker table tr td.today.disabled:active,
.datepicker table tr td.today.disabled:hover:active,
.datepicker table tr td.today.active,
.datepicker table tr td.today:hover.active,
.datepicker table tr td.today.disabled.active,
.datepicker table tr td.today.disabled:hover.active,
.open .dropdown-toggle.datepicker table tr td.today,
.open .dropdown-toggle.datepicker table tr td.today:hover,
.open .dropdown-toggle.datepicker table tr td.today.disabled,
.open .dropdown-toggle.datepicker table tr td.today.disabled:hover {
  background-image: none;
}

.datepicker table tr td.today.disabled,
.datepicker table tr td.today:hover.disabled,
.datepicker table tr td.today.disabled.disabled,
.datepicker table tr td.today.disabled:hover.disabled,
.datepicker table tr td.today[disabled],
.datepicker table tr td.today:hover[disabled],
.datepicker table tr td.today.disabled[disabled],
.datepicker table tr td.today.disabled:hover[disabled],
fieldset[disabled] .datepicker table tr td.today,
fieldset[disabled] .datepicker table tr td.today:hover,
fieldset[disabled] .datepicker table tr td.today.disabled,
fieldset[disabled] .datepicker table tr td.today.disabled:hover,
.datepicker table tr td.today.disabled:hover,
.datepicker table tr td.today:hover.disabled:hover,
.datepicker table tr td.today.disabled.disabled:hover,
.datepicker table tr td.today.disabled:hover.disabled:hover,
.datepicker table tr td.today[disabled]:hover,
.datepicker table tr td.today:hover[disabled]:hover,
.datepicker table tr td.today.disabled[disabled]:hover,
.datepicker table tr td.today.disabled:hover[disabled]:hover,
fieldset[disabled] .datepicker table tr td.today:hover,
fieldset[disabled] .datepicker table tr td.today:hover:hover,
fieldset[disabled] .datepicker table tr td.today.disabled:hover,
fieldset[disabled] .datepicker table tr td.today.disabled:hover:hover,
.datepicker table tr td.today.disabled:focus,
.datepicker table tr td.today:hover.disabled:focus,
.datepicker table tr td.today.disabled.disabled:focus,
.datepicker table tr td.today.disabled:hover.disabled:focus,
.datepicker table tr td.today[disabled]:focus,
.datepicker table tr td.today:hover[disabled]:focus,
.datepicker table tr td.today.disabled[disabled]:focus,
.datepicker table tr td.today.disabled:hover[disabled]:focus,
fieldset[disabled] .datepicker table tr td.today:focus,
fieldset[disabled] .datepicker table tr td.today:hover:focus,
fieldset[disabled] .datepicker table tr td.today.disabled:focus,
fieldset[disabled] .datepicker table tr td.today.disabled:hover:focus,
.datepicker table tr td.today.disabled:active,
.datepicker table tr td.today:hover.disabled:active,
.datepicker table tr td.today.disabled.disabled:active,
.datepicker table tr td.today.disabled:hover.disabled:active,
.datepicker table tr td.today[disabled]:active,
.datepicker table tr td.today:hover[disabled]:active,
.datepicker table tr td.today.disabled[disabled]:active,
.datepicker table tr td.today.disabled:hover[disabled]:active,
fieldset[disabled] .datepicker table tr td.today:active,
fieldset[disabled] .datepicker table tr td.today:hover:active,
fieldset[disabled] .datepicker table tr td.today.disabled:active,
fieldset[disabled] .datepicker table tr td.today.disabled:hover:active,
.datepicker table tr td.today.disabled.active,
.datepicker table tr td.today:hover.disabled.active,
.datepicker table tr td.today.disabled.disabled.active,
.datepicker table tr td.today.disabled:hover.disabled.active,
.datepicker table tr td.today[disabled].active,
.datepicker table tr td.today:hover[disabled].active,
.datepicker table tr td.today.disabled[disabled].active,
.datepicker table tr td.today.disabled:hover[disabled].active,
fieldset[disabled] .datepicker table tr td.today.active,
fieldset[disabled] .datepicker table tr td.today:hover.active,
fieldset[disabled] .datepicker table tr td.today.disabled.active,
fieldset[disabled] .datepicker table tr td.today.disabled:hover.active {
  background-color: #ffdb99;
  border-color: #ffb733;
}

.datepicker table tr td.today:hover:hover {
  color: #000;
}

.datepicker table tr td.today.active:hover {
  color: #fff;
}

.datepicker table tr td.range,
.datepicker table tr td.range:hover,
.datepicker table tr td.range.disabled,
.datepicker table tr td.range.disabled:hover {
  background: #eeeeee;
  border-radius: 0;
}

.datepicker table tr td.range.today,
.datepicker table tr td.range.today:hover,
.datepicker table tr td.range.today.disabled,
.datepicker table tr td.range.today.disabled:hover {
  color: #000000;
  background-color: #f7ca77;
  border-color: #f1a417;
  border-radius: 0;
}

.datepicker table tr td.range.today:hover,
.datepicker table tr td.range.today:hover:hover,
.datepicker table tr td.range.today.disabled:hover,
.datepicker table tr td.range.today.disabled:hover:hover,
.datepicker table tr td.range.today:focus,
.datepicker table tr td.range.today:hover:focus,
.datepicker table tr td.range.today.disabled:focus,
.datepicker table tr td.range.today.disabled:hover:focus,
.datepicker table tr td.range.today:active,
.datepicker table tr td.range.today:hover:active,
.datepicker table tr td.range.today.disabled:active,
.datepicker table tr td.range.today.disabled:hover:active,
.datepicker table tr td.range.today.active,
.datepicker table tr td.range.today:hover.active,
.datepicker table tr td.range.today.disabled.active,
.datepicker table tr td.range.today.disabled:hover.active,
.open .dropdown-toggle.datepicker table tr td.range.today,
.open .dropdown-toggle.datepicker table tr td.range.today:hover,
.open .dropdown-toggle.datepicker table tr td.range.today.disabled,
.open .dropdown-toggle.datepicker table tr td.range.today.disabled:hover {
  color: #000000;
  background-color: #f4bb51;
  border-color: #bf800c;
}

.datepicker table tr td.range.today:active,
.datepicker table tr td.range.today:hover:active,
.datepicker table tr td.range.today.disabled:active,
.datepicker table tr td.range.today.disabled:hover:active,
.datepicker table tr td.range.today.active,
.datepicker table tr td.range.today:hover.active,
.datepicker table tr td.range.today.disabled.active,
.datepicker table tr td.range.today.disabled:hover.active,
.open .dropdown-toggle.datepicker table tr td.range.today,
.open .dropdown-toggle.datepicker table tr td.range.today:hover,
.open .dropdown-toggle.datepicker table tr td.range.today.disabled,
.open .dropdown-toggle.datepicker table tr td.range.today.disabled:hover {
  background-image: none;
}

.datepicker table tr td.range.today.disabled,
.datepicker table tr td.range.today:hover.disabled,
.datepicker table tr td.range.today.disabled.disabled,
.datepicker table tr td.range.today.disabled:hover.disabled,
.datepicker table tr td.range.today[disabled],
.datepicker table tr td.range.today:hover[disabled],
.datepicker table tr td.range.today.disabled[disabled],
.datepicker table tr td.range.today.disabled:hover[disabled],
fieldset[disabled] .datepicker table tr td.range.today,
fieldset[disabled] .datepicker table tr td.range.today:hover,
fieldset[disabled] .datepicker table tr td.range.today.disabled,
fieldset[disabled] .datepicker table tr td.range.today.disabled:hover,
.datepicker table tr td.range.today.disabled:hover,
.datepicker table tr td.range.today:hover.disabled:hover,
.datepicker table tr td.range.today.disabled.disabled:hover,
.datepicker table tr td.range.today.disabled:hover.disabled:hover,
.datepicker table tr td.range.today[disabled]:hover,
.datepicker table tr td.range.today:hover[disabled]:hover,
.datepicker table tr td.range.today.disabled[disabled]:hover,
.datepicker table tr td.range.today.disabled:hover[disabled]:hover,
fieldset[disabled] .datepicker table tr td.range.today:hover,
fieldset[disabled] .datepicker table tr td.range.today:hover:hover,
fieldset[disabled] .datepicker table tr td.range.today.disabled:hover,
fieldset[disabled] .datepicker table tr td.range.today.disabled:hover:hover,
.datepicker table tr td.range.today.disabled:focus,
.datepicker table tr td.range.today:hover.disabled:focus,
.datepicker table tr td.range.today.disabled.disabled:focus,
.datepicker table tr td.range.today.disabled:hover.disabled:focus,
.datepicker table tr td.range.today[disabled]:focus,
.datepicker table tr td.range.today:hover[disabled]:focus,
.datepicker table tr td.range.today.disabled[disabled]:focus,
.datepicker table tr td.range.today.disabled:hover[disabled]:focus,
fieldset[disabled] .datepicker table tr td.range.today:focus,
fieldset[disabled] .datepicker table tr td.range.today:hover:focus,
fieldset[disabled] .datepicker table tr td.range.today.disabled:focus,
fieldset[disabled] .datepicker table tr td.range.today.disabled:hover:focus,
.datepicker table tr td.range.today.disabled:active,
.datepicker table tr td.range.today:hover.disabled:active,
.datepicker table tr td.range.today.disabled.disabled:active,
.datepicker table tr td.range.today.disabled:hover.disabled:active,
.datepicker table tr td.range.today[disabled]:active,
.datepicker table tr td.range.today:hover[disabled]:active,
.datepicker table tr td.range.today.disabled[disabled]:active,
.datepicker table tr td.range.today.disabled:hover[disabled]:active,
fieldset[disabled] .datepicker table tr td.range.today:active,
fieldset[disabled] .datepicker table tr td.range.today:hover:active,
fieldset[disabled] .datepicker table tr td.range.today.disabled:active,
fieldset[disabled] .datepicker table tr td.range.today.disabled:hover:active,
.datepicker table tr td.range.today.disabled.active,
.datepicker table tr td.range.today:hover.disabled.active,
.datepicker table tr td.range.today.disabled.disabled.active,
.datepicker table tr td.range.today.disabled:hover.disabled.active,
.datepicker table tr td.range.today[disabled].active,
.datepicker table tr td.range.today:hover[disabled].active,
.datepicker table tr td.range.today.disabled[disabled].active,
.datepicker table tr td.range.today.disabled:hover[disabled].active,
fieldset[disabled] .datepicker table tr td.range.today.active,
fieldset[disabled] .datepicker table tr td.range.today:hover.active,
fieldset[disabled] .datepicker table tr td.range.today.disabled.active,
fieldset[disabled] .datepicker table tr td.range.today.disabled:hover.active {
  background-color: #f7ca77;
  border-color: #f1a417;
}

.datepicker table tr td.selected,
.datepicker table tr td.selected:hover,
.datepicker table tr td.selected.disabled,
.datepicker table tr td.selected.disabled:hover {
  color: #ffffff;
  background-color: #999999;
  border-color: #555555;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}

.datepicker table tr td.selected:hover,
.datepicker table tr td.selected:hover:hover,
.datepicker table tr td.selected.disabled:hover,
.datepicker table tr td.selected.disabled:hover:hover,
.datepicker table tr td.selected:focus,
.datepicker table tr td.selected:hover:focus,
.datepicker table tr td.selected.disabled:focus,
.datepicker table tr td.selected.disabled:hover:focus,
.datepicker table tr td.selected:active,
.datepicker table tr td.selected:hover:active,
.datepicker table tr td.selected.disabled:active,
.datepicker table tr td.selected.disabled:hover:active,
.datepicker table tr td.selected.active,
.datepicker table tr td.selected:hover.active,
.datepicker table tr td.selected.disabled.active,
.datepicker table tr td.selected.disabled:hover.active,
.open .dropdown-toggle.datepicker table tr td.selected,
.open .dropdown-toggle.datepicker table tr td.selected:hover,
.open .dropdown-toggle.datepicker table tr td.selected.disabled,
.open .dropdown-toggle.datepicker table tr td.selected.disabled:hover {
  color: #ffffff;
  background-color: #858585;
  border-color: #373737;
}

.datepicker table tr td.selected:active,
.datepicker table tr td.selected:hover:active,
.datepicker table tr td.selected.disabled:active,
.datepicker table tr td.selected.disabled:hover:active,
.datepicker table tr td.selected.active,
.datepicker table tr td.selected:hover.active,
.datepicker table tr td.selected.disabled.active,
.datepicker table tr td.selected.disabled:hover.active,
.open .dropdown-toggle.datepicker table tr td.selected,
.open .dropdown-toggle.datepicker table tr td.selected:hover,
.open .dropdown-toggle.datepicker table tr td.selected.disabled,
.open .dropdown-toggle.datepicker table tr td.selected.disabled:hover {
  background-image: none;
}

.datepicker table tr td.selected.disabled,
.datepicker table tr td.selected:hover.disabled,
.datepicker table tr td.selected.disabled.disabled,
.datepicker table tr td.selected.disabled:hover.disabled,
.datepicker table tr td.selected[disabled],
.datepicker table tr td.selected:hover[disabled],
.datepicker table tr td.selected.disabled[disabled],
.datepicker table tr td.selected.disabled:hover[disabled],
fieldset[disabled] .datepicker table tr td.selected,
fieldset[disabled] .datepicker table tr td.selected:hover,
fieldset[disabled] .datepicker table tr td.selected.disabled,
fieldset[disabled] .datepicker table tr td.selected.disabled:hover,
.datepicker table tr td.selected.disabled:hover,
.datepicker table tr td.selected:hover.disabled:hover,
.datepicker table tr td.selected.disabled.disabled:hover,
.datepicker table tr td.selected.disabled:hover.disabled:hover,
.datepicker table tr td.selected[disabled]:hover,
.datepicker table tr td.selected:hover[disabled]:hover,
.datepicker table tr td.selected.disabled[disabled]:hover,
.datepicker table tr td.selected.disabled:hover[disabled]:hover,
fieldset[disabled] .datepicker table tr td.selected:hover,
fieldset[disabled] .datepicker table tr td.selected:hover:hover,
fieldset[disabled] .datepicker table tr td.selected.disabled:hover,
fieldset[disabled] .datepicker table tr td.selected.disabled:hover:hover,
.datepicker table tr td.selected.disabled:focus,
.datepicker table tr td.selected:hover.disabled:focus,
.datepicker table tr td.selected.disabled.disabled:focus,
.datepicker table tr td.selected.disabled:hover.disabled:focus,
.datepicker table tr td.selected[disabled]:focus,
.datepicker table tr td.selected:hover[disabled]:focus,
.datepicker table tr td.selected.disabled[disabled]:focus,
.datepicker table tr td.selected.disabled:hover[disabled]:focus,
fieldset[disabled] .datepicker table tr td.selected:focus,
fieldset[disabled] .datepicker table tr td.selected:hover:focus,
fieldset[disabled] .datepicker table tr td.selected.disabled:focus,
fieldset[disabled] .datepicker table tr td.selected.disabled:hover:focus,
.datepicker table tr td.selected.disabled:active,
.datepicker table tr td.selected:hover.disabled:active,
.datepicker table tr td.selected.disabled.disabled:active,
.datepicker table tr td.selected.disabled:hover.disabled:active,
.datepicker table tr td.selected[disabled]:active,
.datepicker table tr td.selected:hover[disabled]:active,
.datepicker table tr td.selected.disabled[disabled]:active,
.datepicker table tr td.selected.disabled:hover[disabled]:active,
fieldset[disabled] .datepicker table tr td.selected:active,
fieldset[disabled] .datepicker table tr td.selected:hover:active,
fieldset[disabled] .datepicker table tr td.selected.disabled:active,
fieldset[disabled] .datepicker table tr td.selected.disabled:hover:active,
.datepicker table tr td.selected.disabled.active,
.datepicker table tr td.selected:hover.disabled.active,
.datepicker table tr td.selected.disabled.disabled.active,
.datepicker table tr td.selected.disabled:hover.disabled.active,
.datepicker table tr td.selected[disabled].active,
.datepicker table tr td.selected:hover[disabled].active,
.datepicker table tr td.selected.disabled[disabled].active,
.datepicker table tr td.selected.disabled:hover[disabled].active,
fieldset[disabled] .datepicker table tr td.selected.active,
fieldset[disabled] .datepicker table tr td.selected:hover.active,
fieldset[disabled] .datepicker table tr td.selected.disabled.active,
fieldset[disabled] .datepicker table tr td.selected.disabled:hover.active {
  background-color: #999999;
  border-color: #555555;
}

.datepicker table tr td.active,
.datepicker table tr td.active:hover,
.datepicker table tr td.active.disabled,
.datepicker table tr td.active.disabled:hover {
  color: #ffffff;
  background-color: #428bca;
  border-color: #357ebd;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}

.datepicker table tr td.active:hover,
.datepicker table tr td.active:hover:hover,
.datepicker table tr td.active.disabled:hover,
.datepicker table tr td.active.disabled:hover:hover,
.datepicker table tr td.active:focus,
.datepicker table tr td.active:hover:focus,
.datepicker table tr td.active.disabled:focus,
.datepicker table tr td.active.disabled:hover:focus,
.datepicker table tr td.active:active,
.datepicker table tr td.active:hover:active,
.datepicker table tr td.active.disabled:active,
.datepicker table tr td.active.disabled:hover:active,
.datepicker table tr td.active.active,
.datepicker table tr td.active:hover.active,
.datepicker table tr td.active.disabled.active,
.datepicker table tr td.active.disabled:hover.active,
.open .dropdown-toggle.datepicker table tr td.active,
.open .dropdown-toggle.datepicker table tr td.active:hover,
.open .dropdown-toggle.datepicker table tr td.active.disabled,
.open .dropdown-toggle.datepicker table tr td.active.disabled:hover {
  color: #ffffff;
  background-color: #3276b1;
  border-color: #285e8e;
}

.datepicker table tr td.active:active,
.datepicker table tr td.active:hover:active,
.datepicker table tr td.active.disabled:active,
.datepicker table tr td.active.disabled:hover:active,
.datepicker table tr td.active.active,
.datepicker table tr td.active:hover.active,
.datepicker table tr td.active.disabled.active,
.datepicker table tr td.active.disabled:hover.active,
.open .dropdown-toggle.datepicker table tr td.active,
.open .dropdown-toggle.datepicker table tr td.active:hover,
.open .dropdown-toggle.datepicker table tr td.active.disabled,
.open .dropdown-toggle.datepicker table tr td.active.disabled:hover {
  background-image: none;
}

.datepicker table tr td.active.disabled,
.datepicker table tr td.active:hover.disabled,
.datepicker table tr td.active.disabled.disabled,
.datepicker table tr td.active.disabled:hover.disabled,
.datepicker table tr td.active[disabled],
.datepicker table tr td.active:hover[disabled],
.datepicker table tr td.active.disabled[disabled],
.datepicker table tr td.active.disabled:hover[disabled],
fieldset[disabled] .datepicker table tr td.active,
fieldset[disabled] .datepicker table tr td.active:hover,
fieldset[disabled] .datepicker table tr td.active.disabled,
fieldset[disabled] .datepicker table tr td.active.disabled:hover,
.datepicker table tr td.active.disabled:hover,
.datepicker table tr td.active:hover.disabled:hover,
.datepicker table tr td.active.disabled.disabled:hover,
.datepicker table tr td.active.disabled:hover.disabled:hover,
.datepicker table tr td.active[disabled]:hover,
.datepicker table tr td.active:hover[disabled]:hover,
.datepicker table tr td.active.disabled[disabled]:hover,
.datepicker table tr td.active.disabled:hover[disabled]:hover,
fieldset[disabled] .datepicker table tr td.active:hover,
fieldset[disabled] .datepicker table tr td.active:hover:hover,
fieldset[disabled] .datepicker table tr td.active.disabled:hover,
fieldset[disabled] .datepicker table tr td.active.disabled:hover:hover,
.datepicker table tr td.active.disabled:focus,
.datepicker table tr td.active:hover.disabled:focus,
.datepicker table tr td.active.disabled.disabled:focus,
.datepicker table tr td.active.disabled:hover.disabled:focus,
.datepicker table tr td.active[disabled]:focus,
.datepicker table tr td.active:hover[disabled]:focus,
.datepicker table tr td.active.disabled[disabled]:focus,
.datepicker table tr td.active.disabled:hover[disabled]:focus,
fieldset[disabled] .datepicker table tr td.active:focus,
fieldset[disabled] .datepicker table tr td.active:hover:focus,
fieldset[disabled] .datepicker table tr td.active.disabled:focus,
fieldset[disabled] .datepicker table tr td.active.disabled:hover:focus,
.datepicker table tr td.active.disabled:active,
.datepicker table tr td.active:hover.disabled:active,
.datepicker table tr td.active.disabled.disabled:active,
.datepicker table tr td.active.disabled:hover.disabled:active,
.datepicker table tr td.active[disabled]:active,
.datepicker table tr td.active:hover[disabled]:active,
.datepicker table tr td.active.disabled[disabled]:active,
.datepicker table tr td.active.disabled:hover[disabled]:active,
fieldset[disabled] .datepicker table tr td.active:active,
fieldset[disabled] .datepicker table tr td.active:hover:active,
fieldset[disabled] .datepicker table tr td.active.disabled:active,
fieldset[disabled] .datepicker table tr td.active.disabled:hover:active,
.datepicker table tr td.active.disabled.active,
.datepicker table tr td.active:hover.disabled.active,
.datepicker table tr td.active.disabled.disabled.active,
.datepicker table tr td.active.disabled:hover.disabled.active,
.datepicker table tr td.active[disabled].active,
.datepicker table tr td.active:hover[disabled].active,
.datepicker table tr td.active.disabled[disabled].active,
.datepicker table tr td.active.disabled:hover[disabled].active,
fieldset[disabled] .datepicker table tr td.active.active,
fieldset[disabled] .datepicker table tr td.active:hover.active,
fieldset[disabled] .datepicker table tr td.active.disabled.active,
fieldset[disabled] .datepicker table tr td.active.disabled:hover.active {
  background-color: #428bca;
  border-color: #357ebd;
}

.datepicker table tr td span {
  display: block;
  width: 23%;
  height: 54px;
  line-height: 54px;
  float: left;
  margin: 1%;
  cursor: pointer;
  border-radius: 4px;
}

.datepicker table tr td span:hover {
  background: #eeeeee;
}

.datepicker table tr td span.disabled,
.datepicker table tr td span.disabled:hover {
  background: none;
  color: #999999;
  cursor: default;
}

.datepicker table tr td span.active,
.datepicker table tr td span.active:hover,
.datepicker table tr td span.active.disabled,
.datepicker table tr td span.active.disabled:hover {
  color: #ffffff;
  background-color: #428bca;
  border-color: #357ebd;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}

.datepicker table tr td span.active:hover,
.datepicker table tr td span.active:hover:hover,
.datepicker table tr td span.active.disabled:hover,
.datepicker table tr td span.active.disabled:hover:hover,
.datepicker table tr td span.active:focus,
.datepicker table tr td span.active:hover:focus,
.datepicker table tr td span.active.disabled:focus,
.datepicker table tr td span.active.disabled:hover:focus,
.datepicker table tr td span.active:active,
.datepicker table tr td span.active:hover:active,
.datepicker table tr td span.active.disabled:active,
.datepicker table tr td span.active.disabled:hover:active,
.datepicker table tr td span.active.active,
.datepicker table tr td span.active:hover.active,
.datepicker table tr td span.active.disabled.active,
.datepicker table tr td span.active.disabled:hover.active,
.open .dropdown-toggle.datepicker table tr td span.active,
.open .dropdown-toggle.datepicker table tr td span.active:hover,
.open .dropdown-toggle.datepicker table tr td span.active.disabled,
.open .dropdown-toggle.datepicker table tr td span.active.disabled:hover {
  color: #ffffff;
  background-color: #3276b1;
  border-color: #285e8e;
}

.datepicker table tr td span.active:active,
.datepicker table tr td span.active:hover:active,
.datepicker table tr td span.active.disabled:active,
.datepicker table tr td span.active.disabled:hover:active,
.datepicker table tr td span.active.active,
.datepicker table tr td span.active:hover.active,
.datepicker table tr td span.active.disabled.active,
.datepicker table tr td span.active.disabled:hover.active,
.open .dropdown-toggle.datepicker table tr td span.active,
.open .dropdown-toggle.datepicker table tr td span.active:hover,
.open .dropdown-toggle.datepicker table tr td span.active.disabled,
.open .dropdown-toggle.datepicker table tr td span.active.disabled:hover {
  background-image: none;
}

.datepicker table tr td span.active.disabled,
.datepicker table tr td span.active:hover.disabled,
.datepicker table tr td span.active.disabled.disabled,
.datepicker table tr td span.active.disabled:hover.disabled,
.datepicker table tr td span.active[disabled],
.datepicker table tr td span.active:hover[disabled],
.datepicker table tr td span.active.disabled[disabled],
.datepicker table tr td span.active.disabled:hover[disabled],
fieldset[disabled] .datepicker table tr td span.active,
fieldset[disabled] .datepicker table tr td span.active:hover,
fieldset[disabled] .datepicker table tr td span.active.disabled,
fieldset[disabled] .datepicker table tr td span.active.disabled:hover,
.datepicker table tr td span.active.disabled:hover,
.datepicker table tr td span.active:hover.disabled:hover,
.datepicker table tr td span.active.disabled.disabled:hover,
.datepicker table tr td span.active.disabled:hover.disabled:hover,
.datepicker table tr td span.active[disabled]:hover,
.datepicker table tr td span.active:hover[disabled]:hover,
.datepicker table tr td span.active.disabled[disabled]:hover,
.datepicker table tr td span.active.disabled:hover[disabled]:hover,
fieldset[disabled] .datepicker table tr td span.active:hover,
fieldset[disabled] .datepicker table tr td span.active:hover:hover,
fieldset[disabled] .datepicker table tr td span.active.disabled:hover,
fieldset[disabled] .datepicker table tr td span.active.disabled:hover:hover,
.datepicker table tr td span.active.disabled:focus,
.datepicker table tr td span.active:hover.disabled:focus,
.datepicker table tr td span.active.disabled.disabled:focus,
.datepicker table tr td span.active.disabled:hover.disabled:focus,
.datepicker table tr td span.active[disabled]:focus,
.datepicker table tr td span.active:hover[disabled]:focus,
.datepicker table tr td span.active.disabled[disabled]:focus,
.datepicker table tr td span.active.disabled:hover[disabled]:focus,
fieldset[disabled] .datepicker table tr td span.active:focus,
fieldset[disabled] .datepicker table tr td span.active:hover:focus,
fieldset[disabled] .datepicker table tr td span.active.disabled:focus,
fieldset[disabled] .datepicker table tr td span.active.disabled:hover:focus,
.datepicker table tr td span.active.disabled:active,
.datepicker table tr td span.active:hover.disabled:active,
.datepicker table tr td span.active.disabled.disabled:active,
.datepicker table tr td span.active.disabled:hover.disabled:active,
.datepicker table tr td span.active[disabled]:active,
.datepicker table tr td span.active:hover[disabled]:active,
.datepicker table tr td span.active.disabled[disabled]:active,
.datepicker table tr td span.active.disabled:hover[disabled]:active,
fieldset[disabled] .datepicker table tr td span.active:active,
fieldset[disabled] .datepicker table tr td span.active:hover:active,
fieldset[disabled] .datepicker table tr td span.active.disabled:active,
fieldset[disabled] .datepicker table tr td span.active.disabled:hover:active,
.datepicker table tr td span.active.disabled.active,
.datepicker table tr td span.active:hover.disabled.active,
.datepicker table tr td span.active.disabled.disabled.active,
.datepicker table tr td span.active.disabled:hover.disabled.active,
.datepicker table tr td span.active[disabled].active,
.datepicker table tr td span.active:hover[disabled].active,
.datepicker table tr td span.active.disabled[disabled].active,
.datepicker table tr td span.active.disabled:hover[disabled].active,
fieldset[disabled] .datepicker table tr td span.active.active,
fieldset[disabled] .datepicker table tr td span.active:hover.active,
fieldset[disabled] .datepicker table tr td span.active.disabled.active,
fieldset[disabled] .datepicker table tr td span.active.disabled:hover.active {
  background-color: #428bca;
  border-color: #357ebd;
}

.datepicker table tr td span.old,
.datepicker table tr td span.new {
  color: #999999;
}

.datepicker th.datepicker-switch {
  width: 145px;
}

.datepicker thead tr:first-child th,
.datepicker tfoot tr th {
  cursor: pointer;
}

.datepicker thead tr:first-child th:hover,
.datepicker tfoot tr th:hover {
  background: #eeeeee;
}

.datepicker .cw {
  font-size: 10px;
  width: 12px;
  padding: 0 2px 0 5px;
  vertical-align: middle;
}

.datepicker thead tr:first-child th.cw {
  cursor: default;
  background-color: transparent;
}

.input-group.date .input-group-addon i {
  cursor: pointer;
  width: 16px;
  height: 16px;
}

.input-daterange input {
  text-align: center;
}

.input-daterange input:first-child {
  border-radius: 3px 0 0 3px;
}

.input-daterange input:last-child {
  border-radius: 0 3px 3px 0;
}

.input-daterange .input-group-addon {
  width: auto;
  min-width: 16px;
  padding: 4px 5px;
  font-weight: normal;
  line-height: 1.428571429;
  text-align: center;
  text-shadow: 0 1px 0 #fff;
  vertical-align: middle;
  background-color: #eeeeee;
  border: solid #cccccc;
  border-width: 1px 0;
  margin-left: -5px;
  margin-right: -5px;
}

.datepicker.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  float: left;
  display: none;
  min-width: 160px;
  list-style: none;
  background-color: #ffffff;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  *border-right-width: 2px;
  *border-bottom-width: 2px;
  color: #333333;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 13px;
  line-height: 1.428571429;
}

.datepicker.dropdown-menu th,
.datepicker.dropdown-menu td {
  padding: 4px 5px;
}

/*!
 * Timepicker Component for Twitter Bootstrap
 *
 * Copyright 2013 Joris de Wit
 *
 * Contributors https://github.com/jdewit/bootstrap-timepicker/graphs/contributors
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */
.bootstrap-timepicker {
  position: relative;
}

.bootstrap-timepicker.pull-right .bootstrap-timepicker-widget.dropdown-menu {
  left: auto;
  right: 0;
}

.bootstrap-timepicker.pull-right .bootstrap-timepicker-widget.dropdown-menu:before {
  left: auto;
  right: 12px;
}

.bootstrap-timepicker.pull-right .bootstrap-timepicker-widget.dropdown-menu:after {
  left: auto;
  right: 13px;
}

.bootstrap-timepicker .input-group-addon {
  cursor: pointer;
}

.bootstrap-timepicker .input-group-addon i {
  display: inline-block;
  width: 16px;
  height: 16px;
}

.bootstrap-timepicker-widget.dropdown-menu {
  padding: 4px;
}

.bootstrap-timepicker-widget.dropdown-menu.open {
  display: inline-block;
}

.bootstrap-timepicker-widget.dropdown-menu:before {
  border-bottom: 7px solid rgba(0, 0, 0, 0.2);
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  content: "";
  display: inline-block;
  position: absolute;
}

.bootstrap-timepicker-widget.dropdown-menu:after {
  border-bottom: 6px solid #FFFFFF;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  content: "";
  display: inline-block;
  position: absolute;
}

.bootstrap-timepicker-widget.timepicker-orient-left:before {
  left: 6px;
}

.bootstrap-timepicker-widget.timepicker-orient-left:after {
  left: 7px;
}

.bootstrap-timepicker-widget.timepicker-orient-right:before {
  right: 6px;
}

.bootstrap-timepicker-widget.timepicker-orient-right:after {
  right: 7px;
}

.bootstrap-timepicker-widget.timepicker-orient-top:before {
  top: -7px;
}

.bootstrap-timepicker-widget.timepicker-orient-top:after {
  top: -6px;
}

.bootstrap-timepicker-widget.timepicker-orient-bottom:before {
  bottom: -7px;
  border-bottom: 0;
  border-top: 7px solid #999;
}

.bootstrap-timepicker-widget.timepicker-orient-bottom:after {
  bottom: -6px;
  border-bottom: 0;
  border-top: 6px solid #ffffff;
}

.bootstrap-timepicker-widget a.btn,
.bootstrap-timepicker-widget input {
  border-radius: 4px;
}

.bootstrap-timepicker-widget table {
  width: 100%;
  margin: 0;
}

.bootstrap-timepicker-widget table td {
  text-align: center;
  height: 30px;
  margin: 0;
  padding: 2px;
}

.bootstrap-timepicker-widget table td:not(.separator) {
  min-width: 30px;
}

.bootstrap-timepicker-widget table td span {
  width: 100%;
}

.bootstrap-timepicker-widget table td a {
  border: 1px transparent solid;
  width: 100%;
  display: inline-block;
  margin: 0;
  padding: 8px 0;
  outline: 0;
  color: #333;
}

.bootstrap-timepicker-widget table td a:hover {
  text-decoration: none;
  background-color: #eee;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  border-color: #ddd;
}

.bootstrap-timepicker-widget table td a i {
  margin-top: 2px;
  font-size: 18px;
}

.bootstrap-timepicker-widget table td input {
  width: 25px;
  margin: 0;
  text-align: center;
}

.bootstrap-timepicker-widget .modal-content {
  padding: 4px;
}

@media (min-width: 767px) {
  .bootstrap-timepicker-widget.modal {
    width: 200px;
    margin-left: -100px;
  }
}
@media (max-width: 767px) {
  .bootstrap-timepicker {
    width: 100%;
  }
  .bootstrap-timepicker .dropdown-menu {
    width: 100%;
  }
}
/*
 * Explanation why the layout looks so complicated:
 * The UI container needs a position (absolute or relative) to prevent z-index issues (DomMarker on top of UI)
 * Therefore it has these additional styles:
 *    position: absolute;
 *    width: 100%;
 *    height: 100%;
 * To prevent that the UI container captures all events the container is displaced by
 *   left: 100%;
 * To neutralize the displacement for the UI elements within the UI container the following adjustments are needed:
 *  - InfoBubble (.H_ib):            left: -100%;
 *  - left anchor (.H_l_left):       margin-left: -100%;
 *  - center anchor (.H_l_center):   left: -50%;            (was left: 50%)
 *  - right anchor (.H_l_right):     right: 100%;           (was right: 0)
 *                                        margin-left: -100%;
 */
.H_ui {
  font-size: 10px;
  font-family: "Lucida Grande", Arial, Helvetica, sans-serif;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  -ms-user-select: none;
  z-index: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 100%;
}

.H_ui * {
  /* normalize in case some other normalization CSS likes things differently */
  box-sizing: content-box;
  -moz-box-sizing: content-box;
}

.H_noevs {
  pointer-events: none;
}

/*
 * Layout
 */
.H_l_left {
  position: absolute;
  left: 0;
  margin-left: -100%;
}

.H_l_center {
  position: absolute;
  left: -50%;
}

.H_l_right {
  position: absolute;
  right: 100%;
  margin-left: -100%;
}

.H_l_top {
  top: 0;
}

.H_l_middle {
  top: 50%;
}

.H_l_bottom {
  bottom: 0;
}

/* Fix MAPSJS-579 for modern browsers */
[class^=H_l_] {
  pointer-events: none;
}

.H_ctl {
  /* hack for IE9-10, auto doesn't work for them */
  pointer-events: visiblePainted;
  pointer-events: auto;
}

.H_l_horizontal .H_ctl {
  float: left;
}

.H_l_anchor {
  clear: both;
  float: right;
}

.H_l_vertical .H_ctl {
  clear: both;
}

.H_l_right .H_l_vertical .H_ctl {
  float: right;
}

.H_l_right.H_l_middle.H_l_vertical .H_ctl {
  float: right;
}

/**
 *  Element styles
 */
.H_ctl {
  margin: 0.6em;
  position: relative;
  cursor: pointer;
  -ms-touch-action: none;
}

.H_btn,
.H_rdo li {
  background: #1f262a;
  border-radius: 2em;
  color: #fff;
  padding: 0.4em;
  -webkit-transform: translate3d(0, 1, 0);
}

.H_rdo {
  color: white;
  padding-bottom: 0.5em;
  margin-bottom: 0.5em;
  border-bottom: 0.1em solid #4A5B65;
}

.H_rdo_title {
  text-transform: uppercase;
  color: #dbe1e4;
  margin-bottom: 1em;
}

.H_rdo ul {
  list-style: none;
  margin: 0 auto;
  padding: 0;
}

.H_active,
.H_rdo li.H_active {
  background: #4A5B65;
}

.H_disabled,
.H_active.H_disabled {
  color: #5A6166;
  cursor: default;
}

/**
 *   Base Elements
 */
.H_l_vertical .H_grp > .H_btn {
  border-radius: 0;
}

.H_l_vertical .H_grp > div:first-child {
  -webkit-border-top-left-radius: 2em;
  -webkit-border-top-right-radius: 2em;
  -moz-border-radius-topleft: 2em;
  -moz-border-radius-topright: 2em;
  border-top-left-radius: 2em;
  border-top-right-radius: 2em;
  padding-top: 1em;
  margin-bottom: -1px;
}

.H_l_vertical .H_grp > div:last-child {
  -webkit-border-bottom-right-radius: 2em;
  -webkit-border-bottom-left-radius: 2em;
  -moz-border-radius-bottomright: 2em;
  -moz-border-radius-bottomleft: 2em;
  border-bottom-right-radius: 2em;
  border-bottom-left-radius: 2em;
  padding-bottom: 1em;
}

.H_l_horizontal .H_grp > .H_btn,
.H_l_vertical .H_ctl {
  border-radius: 0;
  float: left;
}

.H_l_horizontal .H_grp > div:first-child {
  -webkit-border-top-left-radius: 2em;
  -webkit-border-bottom-left-radius: 2em;
  -moz-border-radius-topleft: 2em;
  -moz-border-radius-bottomleft: 2em;
  border-top-left-radius: 2em;
  border-bottom-left-radius: 2em;
  padding-left: 1em;
}

.H_l_horizontal .H_grp > div:last-child {
  -webkit-border-top-right-radius: 2em;
  -webkit-border-bottom-right-radius: 2em;
  -moz-border-radius-topright: 2em;
  -moz-border-radius-bottomright: 2em;
  border-top-right-radius: 2em;
  border-bottom-right-radius: 2em;
  padding-right: 1em;
}

/** Menu panel */
.H_overlay {
  position: absolute;
  min-width: 15em;
  background: #1F262A;
  display: none;
  padding: 1em;
  z-index: 100;
}

.H_overlay > *:last-child {
  clear: both;
}

.H_overlay > .H_btn {
  white-space: nowrap;
}

.H_overlay.H_open {
  display: block;
}

.H_overlay::after {
  content: " ";
  width: 0px;
  height: 0px;
  border-style: solid;
  position: absolute;
}

.H_overlay.H_left::after {
  border-width: 1em 1em 1em 0;
  border-color: transparent #1F262A transparent transparent;
  left: -1em;
}

.H_overlay.H_right::after {
  border-width: 1em 0 1em 1em;
  border-color: transparent transparent transparent #1F262A;
  left: 100%;
}

.H_overlay.H_top::after {
  top: 0.5em;
}

.H_overlay.H_bottom::after {
  bottom: 0.5em;
}

.H_overlay.H_middle::after {
  top: 50%;
  margin-top: -1em;
}

.H_overlay.H_top.H_center::after {
  border-width: 0 1em 1em 1em;
  border-color: transparent transparent #1F262A transparent;
  top: -1em;
  left: 50%;
  margin-left: -1em;
}

.H_overlay.H_bottom.H_center::after {
  border-width: 1em 1em 0 1em;
  border-color: #1F262A transparent transparent transparent;
  bottom: -1em;
  left: 50%;
  margin-left: -1em;
}

/** InfoBubble */
.H_ib {
  position: absolute;
  left: 0.91em;
  background: #000;
  color: #fff;
  font-size: 2em;
  line-height: 1em;
  fill: #000;
  left: -100%;
}

.H_ib_tail {
  position: absolute;
  left: -0.3em;
  bottom: -0.5em;
  width: 1.2em;
  height: 1.2em;
  z-index: 100;
}

.H_ib_notail .H_ib_tail {
  display: none;
}

.H_ib_body {
  background: #000;
  position: absolute;
  bottom: 0.5em;
  padding: 0 1.2em 0 0;
  border-radius: 0.2em;
  margin-right: -1em;
  right: 0;
}

.H_ib_close {
  font-size: 0.6em;
  position: absolute;
  right: 0.2em;
  top: 0.2em;
  cursor: pointer;
  fill: #fff;
}

.H_disabled .H_ib_close {
  cursor: default;
}

.H_ib_noclose .H_ib_close {
  display: none;
}

.H_ib_noclose .H_ib_body {
  padding: 0 0 0 0;
}

.H_ib_content {
  min-width: 6em;
  margin: 0.2em 0;
  padding: 0 0.2em;
  user-select: text;
  -moz-user-select: text;
  -khtml-user-select: text;
  -webkit-user-select: text;
  -o-user-select: text;
  -ms-user-select: text;
}

/*##################################################  SLIDER  ########################################################*/
.H_l_horizontal.H_slider {
  float: left;
  height: 2.8em;
  width: auto;
  padding: 0 1em;
}

.H_slider .H_slider_track {
  width: 0.2em;
  height: 100%;
}

.H_l_horizontal.H_slider .H_slider_track {
  height: 0.2em;
  width: 100%;
}

.H_l_horizontal.H_slider .H_slider_cont {
  height: 100%;
}

.H_l_horizontal.H_slider .H_slider_knob_cont {
  margin-top: -0.2em;
}

.H_slider {
  background-color: #1f262a;
  padding: 1em 0em;
  width: 2.8em;
}

.H_slider .H_slider_cont {
  position: relative;
}

.H_slider .H_slider_knob_cont,
.H_slider .H_slider_knob_halo {
  width: 2.4em;
  height: 2.4em;
  margin-left: 0em;
  border-radius: 9em;
}

/* This will make slightly easy to grab the knob on touch devices*/
.H_slider .H_slider_knob_halo {
  background-color: rgba(255, 255, 255, 0.1);
}

.H_slider .H_slider_knob {
  width: 1.6em;
  height: 1.6em;
  background-color: white;
  border-radius: 9em;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  position: absolute;
}

.H_slider .H_slider_track,
.H_slider .H_slider_knob_cont {
  position: relative;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.H_slider .H_slider_track {
  background-color: white;
}

.H_slider.H_disabled {
  cursor: default;
}

.H_disabled .H_slider_track,
.H_disabled .H_slider_knob {
  background-color: #5A6166;
}

/*###############################################  CONTEXT MENU  #####################################################*/
.H_context_menu {
  min-width: 158px;
  max-width: 40%;
  position: absolute;
  left: -100%;
  top: 0;
  color: white;
  background-color: #000F1A;
  -moz-border-radius: 0.4em;
  -webkit-border-radius: 0.4em;
  -o-border-radius: 0.4em;
  border-radius: 0.4em;
  padding: 10px 0;
  -moz-user-select: initial;
  -khtml-user-select: initial;
  -webkit-user-select: initial;
  -o-user-select: initial;
  -ms-user-select: initial;
  z-index: 200;
}

.H_context_menu_closed {
  display: none;
}

.H_context_menu_item {
  text-overflow: ellipsis;
  overflow: hidden;
  padding: 1px 10px 0;
}

.H_context_menu_item.clickable:hover,
.H_context_menu_item.clickable:focus {
  outline: none;
  background-color: #00BBDC;
  cursor: pointer;
}

.H_context_menu_item.disabled {
  background: transparent !important;
  color: #5A6166;
  cursor: default !important;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  -ms-user-select: none;
}

.H_context_menu_item_separator {
  height: 0;
  margin: 8px 10px;
  border-top: 1px solid #333;
  border-bottom: 1px solid #666;
  line-height: 0;
  font-size: 0;
}

/*#################################################  SCALE BAR  ######################################################*/
.H_scalebar_svg {
  display: block;
}

/*##################################################  PANORAMA  ######################################################*/
.H_pano_mm {
  position: absolute;
  top: 0;
  left: -100%;
  font-size: 1.5em;
  width: 0;
  height: 0;
}

.H_pano_man {
  margin-top: -3em;
  z-index: 2;
}

.H_pano_notransition {
  transition: none !important;
}

.H_pano_circle {
  margin-top: -1em;
  margin-left: -1em;
  transition: all 0.3s;
  pointer-events: none;
}

.H_disabled .H_pano_circle {
  transition: none;
  margin-left: -0.1em;
}

.H_disabled .H_pano_mm svg.H_icon {
  fill: #ddd;
  stroke: #5A6166;
}

.H_pano_man svg.H_icon,
.H_pano_circle svg.H_icon {
  fill: #09b;
  stroke: #fff;
  pointer-events: none;
}

.H_pano_ib {
  cursor: pointer;
}

.H_tib {
  margin: 1em 0 1em 1em;
  font-size: 0.5em;
  width: 30em;
}

.H_tib p {
  margin: 0.5em 0;
  padding: 0;
  line-height: 1.3em;
}

.H_tib p.H_tib_desc {
  border-top: 1px solid #666;
  padding-top: 0.5em;
}

.H_tib .H_tib_time {
  color: #aaa;
}

.H_tib_right {
  float: right;
}

.H_dm_label {
  font: 10pt sans-serif;
  color: black;
  text-shadow: 1px 1px 0.5px #FFF, 1px -1px 0.5px #FFF, -1px 1px 0.5px #FFF, -1px -1px 0.5px #FFF;
  white-space: nowrap;
  margin-left: 12px;
  margin-top: -7px;
  /* This will not work on IE9, but it is accepted! */
  pointer-events: none;
}

/*###################################################  ICON  #########################################################*/
svg.H_icon {
  display: block;
  width: 2em;
  height: 2em;
  fill: #fff;
}

.H_active svg.H_icon {
  fill: #fff;
}

.H_disabled svg.H_icon,
.H_active.H_disabled {
  fill: #5A6166;
}

/*###############################################  OVERVIEW MAP  #####################################################*/
.H_overview {
  transition: width 0.2s, height 0.2s, margin-top 0.2s, padding 0.2s;
  width: 0em;
  height: 0em;
  overflow: hidden;
  cursor: default;
  position: absolute;
  margin: auto;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.H_overview_active {
  padding: 0.5em;
}

.H_l_center .H_overview {
  left: -9999px;
  right: -9999px;
}

.H_l_middle .H_overview {
  top: -9999px;
  bottom: -9999px;
}

.H_l_right .H_overview {
  right: 100%;
}

.H_l_left .H_overview {
  left: 100%;
}

.H_l_bottom .H_overview {
  bottom: 0;
}

.H_l_center.H_l_bottom .H_overview {
  bottom: 100%;
}

.H_l_top .H_overview {
  top: 0;
}

.H_l_center.H_l_top .H_overview {
  top: 100%;
}

.H_overview .H_overview_map {
  border: 1px solid black;
  background-color: rgba(256, 256, 256, 0.6);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.H_overview_map .H_ui {
  display: none;
}

/********************************************
Text color
********************************************/
/********************************************
Border color
********************************************/
/********************************************
Foreground color
********************************************/
/********************************************
Background color
********************************************/
/********************************************
Messaging avatar color palette
Some of these may extend into other parts of the app one day?
********************************************/
/**
This breakpoint is used in vanilla/navbar.cljs so
changing here will require changing there too.
Delete when USE_V2_ROLES flag is removed b/c it's being handled dynamically in the JS
**/
.navbar {
  border: 0;
  border-radius: 0;
}
.navbar .navbar-brand {
  padding: 0 8px 0 0;
}
.navbar .navbar-brand img {
  width: 117px;
  height: 50px;
}
.navbar .navbar-header {
  float: left;
}
.navbar .nav > li > a {
  padding-right: 10px;
  padding-left: 10px;
}
@media (max-width: 1235px) {
  .navbar #navbarSupportedContent .navbar-nav {
    float: none;
    margin: 7.5px -15px 0 0;
  }
  .navbar #navbarSupportedContent .navbar-nav .dropdown-header {
    margin-left: -7.5px;
  }
  .navbar #navbarSupportedContent .navbar-nav > li {
    float: none;
  }
  .navbar #navbarSupportedContent .navbar-nav > li > a {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .navbar #navbarSupportedContent .navbar-nav .open .dropdown-menu {
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    background-color: transparent;
    border: 0;
    box-shadow: none;
  }
  .navbar #navbarSupportedContent .navbar-nav .open .dropdown-menu li a {
    line-height: 20px;
    padding: 5px 15px 5px 25px;
    color: #9d9d9d;
  }
  .navbar #navbarSupportedContent .navbar-nav .open .dropdown-menu li a:hover {
    background-color: #333;
    color: #fff;
  }
  .navbar #navbarSupportedContent .navbar-nav .open .dropdown-menu .active a, .navbar #navbarSupportedContent .navbar-nav .open .dropdown-menu .active a:hover, .navbar #navbarSupportedContent .navbar-nav .open .dropdown-menu .active a:focus {
    background-color: #080808;
  }
  .navbar #navbarSupportedContent.navbar-collapse.collapse .nav {
    display: none;
  }
  .navbar #navbarSupportedContent.navbar-collapse.collapse.in .nav {
    display: block;
  }
}

.panel-footer small {
  color: #959595;
}

.panel-heading[data-toggle=collapse] {
  cursor: pointer;
}

.form-group {
  overflow: auto;
}

.bootstrap-timepicker-widget a i.glyphicon {
  font-size: 12px;
}
.bootstrap-timepicker-widget input[type=text] {
  display: inline-block;
  padding: 0;
  width: 50px;
}

a.panel-heading {
  display: block;
}
a.panel-heading:hover {
  background-color: #e6e6e6;
  border-color: #adadad;
}
a.panel-heading:before {
  display: inline-block;
  width: 13px;
  padding-right: 5px;
  vertical-align: middle;
  font-family: FontAwesome;
  content: "\f0d7";
}
a.panel-heading h3 {
  display: inline-block;
  vertical-align: middle;
}

a.panel-heading.collapsed {
  border-color: transparent;
}
a.panel-heading.collapsed:before {
  content: "\f0da";
}

code {
  color: inherit;
  background-color: #f0f0f0;
}

.pre {
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
}

.help-block {
  font-size: 12px;
  margin-bottom: 0;
}
.help-block .fa {
  margin-right: 0.4em;
}

.bootstrap-button-group > .btn input[type=checkbox],
.bootstrap-button-group > .btn input[type=radio] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}

.downshift .dropdown {
  height: 100%;
}

html {
  font-size: 14px;
}

html, body, #app, #app-container {
  height: 100%;
  position: relative;
}

.fill-container {
  overflow: hidden;
}
.fill-container #container {
  position: absolute;
  top: 50px;
  bottom: 0;
  right: 0;
  left: 0;
  max-width: 100%;
  max-width: initial;
}

table {
  font-size: 14px;
}

#container, #alert-container {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
#container:after, #alert-container:after {
  content: " ";
  display: block;
  clear: both;
}

#ie-alert {
  width: 100%;
  float: right;
  margin-right: 0;
}

.loading-spinner {
  display: block;
  margin-top: 1em;
  margin-bottom: 1em;
}

.upload-file-form, #upload-file-form {
  opacity: 0;
  height: 0;
  width: 0;
}
.upload-file-form input, #upload-file-form input {
  width: 0;
  height: 0;
}

.upload-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 5px;
  margin: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  box-shadow: 0;
}

.icon-button {
  cursor: pointer;
}
.icon-button:hover {
  color: #666;
}

button > .fa, a > .fa {
  margin-left: 0;
  margin-right: 0.4em;
}

img.thumb {
  max-width: 200px;
  border-radius: 4px;
}

.inline-edit .form-group {
  margin: 0;
}
.inline-edit .inline-field {
  display: inline-block;
  width: auto;
  margin: 0;
}
.inline-edit .long-inline-field {
  width: 50em;
}
.inline-edit button {
  margin-left: 0.6em;
}
.inline-edit .validation-error {
  display: inline-block;
  margin-left: 0.6em;
  font-size: 12px;
}

.form-field-clear {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
  display: block;
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  color: #aaa;
}
.form-field-clear:hover {
  cursor: pointer;
  color: #333;
}
.form-field-clear .fa-remove {
  margin-top: 9px;
}

.panel-body > .alert {
  margin: -15px -15px 15px -15px;
  padding: 8px 15px;
  text-align: center;
  border-radius: 0;
  border-width: 0 0 1px 0;
}
.panel-body > .alert .fa {
  margin-right: 4px;
}

.navbar:not(.flag_USE_V2_ROLES) .fa {
  margin-right: 0.4em;
}
.navbar:not(.flag_USE_V2_ROLES) .fa-bars {
  color: #fff;
  margin-top: 18px;
}
@media (min-width: calc(1235px + 1px)) {
  .navbar:not(.flag_USE_V2_ROLES) .navbar-header a[type=button] {
    display: none;
  }
}
.navbar:not(.flag_USE_V2_ROLES) #navbarSupportedContent {
  float: left;
  padding: 0;
}
@media (max-width: 1235px) {
  .navbar:not(.flag_USE_V2_ROLES) #navbarSupportedContent {
    position: absolute;
    top: 50px;
    left: 0;
    background-color: #222;
    width: 100%;
    z-index: 1000;
  }
}
@media (max-width: 767px) {
  .navbar:not(.flag_USE_V2_ROLES) #navbarSupportedContent {
    left: 15px;
  }
}
.navbar:not(.flag_USE_V2_ROLES) .secondary-nav {
  float: right;
  margin-top: 0;
}
.navbar:not(.flag_USE_V2_ROLES) .secondary-nav > li {
  float: left;
}
.navbar:not(.flag_USE_V2_ROLES) .secondary-nav > li > a {
  color: #9d9d9d;
  padding: 15px 10px;
}
@media (max-width: 767px) {
  .navbar:not(.flag_USE_V2_ROLES) .secondary-nav {
    float: none;
    margin: 7.5px -15px 7.5px 0;
  }
  .navbar:not(.flag_USE_V2_ROLES) .secondary-nav > li {
    float: none;
  }
  .navbar:not(.flag_USE_V2_ROLES) .secondary-nav > li > a {
    padding: 10px 10px;
  }
  .navbar:not(.flag_USE_V2_ROLES) .secondary-nav .navbar-text {
    margin: 0;
    padding: 10px;
    float: none;
  }
  .navbar:not(.flag_USE_V2_ROLES) .secondary-nav::before {
    border-top: 0.5px solid #9d9d9d;
    width: 100%;
  }
}

.navbar.flag_USE_V2_ROLES {
  padding-right: 15px;
}
.navbar.flag_USE_V2_ROLES .fa {
  margin-right: 0.4em;
}
.navbar.flag_USE_V2_ROLES .fa-bars {
  color: #fff;
  margin-top: 18px;
}
.navbar.flag_USE_V2_ROLES .navbar-toggler.hide-toggler {
  display: none;
}
.navbar.flag_USE_V2_ROLES .dropdown-label-caret {
  margin-left: 3px;
}
.navbar.flag_USE_V2_ROLES #primary-navbar-body {
  float: left;
  padding: 0;
}
.navbar.flag_USE_V2_ROLES #primary-navbar-body.collapse-primary-nav {
  position: absolute;
  top: 50px;
  left: 0;
  background-color: #222;
  width: 100%;
  z-index: 1000;
}
.navbar.flag_USE_V2_ROLES #primary-navbar-body.collapse-primary-nav.navbar-collapse.collapse {
  display: block;
}
.navbar.flag_USE_V2_ROLES #primary-navbar-body.collapse-primary-nav.navbar-collapse.collapse:not(.in) {
  background-color: unset;
  visibility: hidden;
}
.navbar.flag_USE_V2_ROLES #primary-navbar-body.collapse-primary-nav.navbar-collapse.collapse.in {
  background-color: #222;
  visibility: visible;
}
@media (max-width: 768px) {
  .navbar.flag_USE_V2_ROLES #primary-navbar-body.collapse-primary-nav.navbar-collapse {
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
}
.navbar.flag_USE_V2_ROLES #primary-navbar-body.collapse-primary-nav .navbar-nav {
  float: none;
  margin: 7.5px -15px 0 0;
}
.navbar.flag_USE_V2_ROLES #primary-navbar-body.collapse-primary-nav .navbar-nav > li {
  float: none;
}
.navbar.flag_USE_V2_ROLES #primary-navbar-body.collapse-primary-nav .navbar-nav > li > a {
  padding-top: 10px;
  padding-bottom: 10px;
}
.navbar.flag_USE_V2_ROLES #primary-navbar-body.collapse-primary-nav .navbar-nav .open .dropdown-menu {
  position: static;
  float: none;
  width: auto;
  margin-top: 0;
  background-color: transparent;
  border: 0;
  box-shadow: none;
}
.navbar.flag_USE_V2_ROLES #primary-navbar-body.collapse-primary-nav .navbar-nav .open .dropdown-menu li a {
  line-height: 20px;
  padding: 5px 15px 5px 25px;
  color: #9d9d9d;
}
.navbar.flag_USE_V2_ROLES #primary-navbar-body.collapse-primary-nav .navbar-nav .open .dropdown-menu li a:hover {
  background-color: #333;
  color: #fff;
}
.navbar.flag_USE_V2_ROLES #primary-navbar-body.collapse-primary-nav .navbar-nav .open .dropdown-menu .active a, .navbar.flag_USE_V2_ROLES #primary-navbar-body.collapse-primary-nav .navbar-nav .open .dropdown-menu .active a:hover, .navbar.flag_USE_V2_ROLES #primary-navbar-body.collapse-primary-nav .navbar-nav .open .dropdown-menu .active a:focus {
  background-color: #080808;
}
@media (max-width: 768px) {
  .navbar.flag_USE_V2_ROLES #primary-navbar-body.expand-primary-nav.navbar-collapse {
    display: block;
    height: auto;
    overflow: visible;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  .navbar.flag_USE_V2_ROLES #primary-navbar-body.expand-primary-nav.navbar-collapse.collapse {
    display: block;
  }
  .navbar.flag_USE_V2_ROLES #primary-navbar-body.expand-primary-nav .navbar-nav {
    margin: 0;
  }
  .navbar.flag_USE_V2_ROLES #primary-navbar-body.expand-primary-nav .navbar-nav > li {
    float: left;
  }
  .navbar.flag_USE_V2_ROLES #primary-navbar-body.expand-primary-nav .navbar-nav > li > a {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .navbar.flag_USE_V2_ROLES #primary-navbar-body.expand-primary-nav .navbar-nav > li > .dropdown-menu {
    position: absolute;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.15);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  }
  .navbar.flag_USE_V2_ROLES #primary-navbar-body.expand-primary-nav .navbar-nav > li > .dropdown-menu > li > a {
    padding: 3px 20px;
    color: #333;
  }
  .navbar.flag_USE_V2_ROLES #primary-navbar-body.expand-primary-nav .navbar-nav > li > .dropdown-menu > li > a:hover {
    background-color: #f5f5f5;
  }
}
.navbar.flag_USE_V2_ROLES #primary-navbar-body.small-screen-nav .secondary-nav {
  float: none;
}
.navbar.flag_USE_V2_ROLES #primary-navbar-body.small-screen-nav .secondary-nav > li {
  float: none;
}
.navbar.flag_USE_V2_ROLES #primary-navbar-body.small-screen-nav .secondary-nav > li > a, .navbar.flag_USE_V2_ROLES #primary-navbar-body.small-screen-nav .secondary-nav > li#logged-in-client-name {
  padding: 10px 10px;
  margin: 0;
}
.navbar.flag_USE_V2_ROLES #primary-navbar-body.small-screen-nav .secondary-nav .division-switcher {
  max-width: 100%;
}
.navbar.flag_USE_V2_ROLES #primary-navbar-body .navbar-badge {
  background-color: #DC3545;
  margin: -3px 3px 0;
}
.navbar.flag_USE_V2_ROLES .secondary-nav {
  float: right;
  margin-top: 0;
  margin-bottom: 0;
}
.navbar.flag_USE_V2_ROLES .secondary-nav > li {
  float: left;
}
.navbar.flag_USE_V2_ROLES .secondary-nav > li > a {
  color: #9d9d9d;
  padding: 15px 10px;
}
.navbar.flag_USE_V2_ROLES .secondary-nav .navbar-text {
  margin: 15px;
}
.navbar.flag_USE_V2_ROLES .secondary-nav.hide-large-secondary-nav {
  position: absolute;
  visibility: hidden;
}
.navbar.flag_USE_V2_ROLES .secondary-nav.show-large-secondary-nav {
  position: relative;
  visibility: visible;
}
.navbar.flag_USE_V2_ROLES .secondary-nav .dropdown .dropdown-menu-right {
  margin-top: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.navbar.flag_USE_V2_ROLES .secondary-nav .dropdown .dropdown-toggle:hover, .navbar.flag_USE_V2_ROLES .secondary-nav .dropdown .dropdown-toggle:focus {
  color: #fff;
  background-color: transparent;
}
.navbar.flag_USE_V2_ROLES .secondary-nav .dropdown.open .dropdown-toggle, .navbar.flag_USE_V2_ROLES .secondary-nav .dropdown.open .dropdown-toggle:focus {
  background-color: #080808;
}

wbr:after {
  content: "​";
}

[data-toggle=tooltip] {
  margin-left: 0.4em;
  color: #888;
}

body > .tooltip[role=tooltip] code {
  background-color: transparent;
  color: white;
}

#announcement-banner {
  padding: 20px 15px;
  margin: -20px 0 20px;
}
#announcement-banner .announcement-message {
  max-width: 960px;
  display: flex;
  margin: auto;
}
#announcement-banner .announcement-message i {
  margin: auto 0;
  margin-right: 20px;
  font-size: 2em;
}
#announcement-banner .announcement-message > div {
  margin: auto 0;
}

.sandbox-banner {
  background-color: #e87722;
  height: 4px;
  margin-bottom: 16px;
}
.sandbox-banner .alert-warning {
  background-color: #e87722;
  border-color: #e87722;
  color: #fff;
  text-align: center;
  padding: 4px;
  width: 120px;
  margin: -20px 0 0 auto;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

@media (max-width: 1280px) {
  .sandbox-banner {
    margin-bottom: 32px;
  }
}
.batch-copy-properties .option-list input[type=text].property-name {
  width: 12em;
  display: inline-block;
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
}

input.code {
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
}

.autocomplete {
  position: absolute;
  z-index: 50;
  width: 100%;
}
.autocomplete.list-group > .list-group-item {
  cursor: pointer;
  font-size: 13px;
  color: #555;
  padding: 6px 8px;
  line-height: 13px;
}
.autocomplete.list-group > .list-group-item:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

.color-picker .color-list .color-swatch {
  height: 30px;
  width: 30px;
  cursor: pointer;
  float: left;
  margin: 0 8px 8px 0;
  border-radius: 4px;
}
.color-picker .color-list .color-swatch.selected {
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px;
}
.color-picker .color-list-expanded {
  display: grid;
  grid-template-columns: repeat(auto-fill, 30px);
  column-gap: 1rem;
  justify-content: space-between;
}
.color-picker .color-list-expanded .color-swatch {
  margin-bottom: 8px;
  height: 30px;
  width: 30px;
  cursor: pointer;
  border-radius: 4px;
}
.color-picker .color-list-expanded .color-swatch.selected {
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px;
}
.color-picker .color-list-expanded .background-colors-unset {
  color: #f00;
  background-color: #fff;
  border: 1px solid #ccc;
  background: linear-gradient(to bottom left, transparent calc(50% - 1px), #f00, transparent calc(50% + 1px));
}
.color-picker .apply-color-toggles {
  display: flex;
  flex-direction: row;
  align-items: center;
  vertical-align: middle;
  flex-wrap: wrap;
}
.color-picker .apply-color-toggles label {
  font-size: 16px;
  margin-bottom: 4px;
  font-weight: 400;
}
.color-picker .apply-color-toggles .switch {
  position: relative;
  width: 32px;
  height: 16px;
  margin-right: 8px;
}
.color-picker .apply-color-toggles .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.color-picker .apply-color-toggles .switch input:checked + .slider {
  background-color: #2196F3;
}
.color-picker .apply-color-toggles .switch input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}
.color-picker .apply-color-toggles .switch input:checked + .slider:before {
  transform: translateX(16px);
  background-color: white;
}
.color-picker .apply-color-toggles .switch input:disabled ~ .slider {
  cursor: not-allowed;
}
.color-picker .apply-color-toggles .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: 0.4s;
  border: 1px solid #ccc;
  border-radius: 32px;
}
.color-picker .apply-color-toggles .slider:before {
  position: absolute;
  content: "";
  height: 12px;
  width: 12px;
  left: 1.5px;
  bottom: 1.5px;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 50%;
}

.background-colors-picker .color-picker .color-list-expanded {
  margin-left: 2%;
}

.drag-handle {
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1IiBoZWlnaHQ9IjUiPgo8cmVjdCB3aWR0aD0iNSIgaGVpZ2h0PSI1IiBmaWxsPSIjZmZmIj48L3JlY3Q+CjxyZWN0IHdpZHRoPSIyIiBoZWlnaHQ9IjIiIGZpbGw9IiNjY2MiPjwvcmVjdD4KPC9zdmc+");
}

.save-buttons {
  text-align: right;
}
.save-buttons button {
  margin-right: 10px;
}
.save-buttons button:last-child {
  margin-right: 0;
}

.alert .fa:first-child {
  margin-right: 0.4em;
}

button.panel-close {
  border: 0;
  background: transparent;
}
button.panel-close > i {
  margin: 0;
}
button.panel-close:hover {
  color: #666;
}
button.panel-close:focus {
  outline: 0;
}
button.panel-close:active {
  color: #999;
}

.icon-selector {
  cursor: default;
  margin-bottom: 15px;
}
.icon-selector img {
  height: 15px;
  padding-right: 5px;
  -webkit-filter: brightness(0);
  filter: brightness(0);
}
.icon-selector .dropdown-arrow {
  position: absolute;
  right: 5px;
  top: 11px;
  font-size: 10px;
}
.icon-selector ul {
  width: 100%;
  max-height: 200px;
  overflow: auto;
  padding: 5px;
  background-color: #ede6e5;
}
.icon-selector ul li {
  line-height: 1.75em;
  border-radius: 3px;
}
.icon-selector ul li img {
  padding: 0 10px 0 5px;
}
.icon-selector ul li:hover {
  color: #fff;
  background-color: #55a1ff;
}
.icon-selector ul li:hover img {
  -webkit-filter: contrast(1);
  filter: contrast(1);
}
.icon-selector ul li:hover[value^=dashboard_] img {
  -webkit-filter: brightness(1.8);
  filter: brightness(1.8);
}

.division-switcher {
  max-height: 350px;
  overflow-y: scroll;
}
.division-switcher.flag_USE_V2_ROLES {
  max-width: 350px;
  overflow-x: scroll;
}
.division-switcher.flag_USE_V2_ROLES li {
  display: table;
  width: 100%;
}
.division-switcher li:not(.active) {
  cursor: pointer;
}
.division-switcher li.active {
  cursor: default;
}

.archived-items a, .archived-items div:not(.no-archive) {
  background-color: #eee;
}
.archived-items a:hover, .archived-items div:not(.no-archive):hover {
  background-color: #f8f8f8;
}
.archived-items a.active, .archived-items div:not(.no-archive).active {
  background-color: #428bca;
}
.archived-items .fa {
  font-size: 1.2em;
  width: 8px;
}

#external-error-view {
  width: 41.1764705882%;
  float: left;
  margin-right: 2.9411764706%;
  margin-left: 29.4117647059%;
  margin-right: 29.4117647059%;
}
#external-error-view:first-child {
  margin-top: 20px;
}

#api-view .platform-key-group {
  width: 47.3684210526%;
  float: left;
  margin-right: 5.2631578947%;
}
#api-view .platform-key-help {
  width: 47.3684210526%;
  float: right;
  margin-right: 0;
}
#api-view .api-key-help, #api-view .platform-key-help, #api-view .app-help, #api-view .geotab-help {
  font-size: 87.5%;
}
#api-view input#eleos-platform-key {
  width: 20em;
}
#api-view table td {
  vertical-align: middle;
}
#api-view td.service-name, #api-view td.integration-type {
  width: 20%;
}
#api-view tr.inactive-key {
  color: #ccc;
}
#api-view .apps .ssl-test-link .fa {
  margin-right: 0.4em;
}
#api-view .apps .ssl-test-link span.disabled {
  color: #ccc;
}
#api-view .geotab .geotab-creds {
  width: 47.3684210526%;
  float: left;
  margin-right: 5.2631578947%;
}
#api-view .geotab .geotab-identifier {
  width: 100%;
  float: left;
  margin-left: 0;
  margin-right: 0;
}
#api-view .geotab .geotab-username {
  width: 100%;
  float: left;
  margin-left: 0;
  margin-right: 0;
}
#api-view .geotab .geotab-password {
  width: 100%;
  float: left;
  margin-left: 0;
  margin-right: 0;
}
#api-view .geotab .geotab-integration-mode {
  width: 100%;
  float: left;
  margin-left: 0;
  margin-right: 0;
}
#api-view .geotab .geotab-test-results {
  width: 47.3684210526%;
  float: right;
  margin-right: 0;
}
#api-view .geotab .check-status {
  margin-top: 10px;
}
#api-view .geotab .check-status .fa {
  margin-right: 0.4em;
}
#api-view .geotab .help-invalid-geotab {
  font-size: 12px;
  margin-bottom: 0;
}
#api-view .disable-geotab {
  margin-bottom: 10px;
}
#api-view .disable-geotab .warning-text {
  font-size: 12px;
}
#api-view .disable-geotab button {
  margin-right: 10px;
}
#api-view .save-buttons {
  clear: both;
  width: 100%;
  float: right;
  margin-right: 0;
}
#api-view .new-api-key {
  background-color: #d4edda;
  padding: 10px;
  border-radius: 5px;
}
#api-view .new-api-key i.fa-files-o {
  cursor: pointer;
  font-size: 18px;
  float: right;
}
#api-view .api-key, #api-view .new-api-key {
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
  font-size: 0.9em;
}

#app-view .app-help {
  font-size: 87.5%;
}
#app-view table td {
  vertical-align: middle;
}

#news-view .news-feed-list {
  width: 28.5714285714%;
  float: left;
  margin-right: 7.1428571429%;
}
#news-view .news-feed-list > .list-group > .list-group-item {
  cursor: pointer;
  word-break: break-word;
}
#news-view .news-feed-detail {
  width: 64.2857142857%;
  float: right;
  margin-right: 0;
}
#news-view .new-news-feed-name .form-group, #news-view .new-news-feed-properties .form-group {
  width: 47.3684210526%;
  float: left;
  margin-right: 5.2631578947%;
}
#news-view .new-news-feed-name .save-buttons, #news-view .new-news-feed-properties .save-buttons {
  width: 47.3684210526%;
  float: right;
  margin-right: 0;
}
#news-view .news-feed-name {
  width: 100%;
  float: right;
  margin-right: 0;
  margin-bottom: 15px;
}
#news-view .news-feed-name form {
  margin-bottom: 0;
}
#news-view .news-feed-name .news-feed-name-text {
  margin-right: 0.6em;
}
#news-view .news-feed-name label {
  margin-right: 0.6em;
}
#news-view .news-feed-buttons {
  width: 47.3684210526%;
  float: right;
  margin-right: 0;
}
#news-view .new-news-item {
  width: 100%;
  float: right;
  margin-right: 0;
}
#news-view .news-table {
  width: 100%;
  float: right;
  margin-right: 0;
}
#news-view .news-table td:first-child, #news-view .news-table th:first-child {
  padding-left: 15px;
}
#news-view .news-table td:last-child, #news-view .news-table th:last-child {
  padding-right: 15px;
}
#news-view .news-table td {
  vertical-align: middle;
}
#news-view .news-table td.message {
  max-width: 300px;
  vertical-align: top;
}
#news-view .news-table td.message .collapsed-body {
  position: relative;
  max-height: 75px;
  overflow-y: hidden;
}
#news-view .news-table td.message .collapsed-body::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 50%;
  bottom: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgb(255, 255, 255) 100%);
}
#news-view .news-table td.message .view-more-less {
  margin: 2px 0 10px 0;
  cursor: pointer;
}
#news-view .news-table td.message .news-item-body-content {
  white-space: pre-wrap;
}
#news-view .news-table td.news-item-actions {
  min-width: 125px;
  text-align: right;
}
#news-view .news-table td.news-item-actions > * {
  margin-right: 0.6em;
}
#news-view .news-table td.news-item-actions > *:last-child {
  margin-right: 0;
}
#news-view .news-table .news-item-title {
  font-weight: bold;
  font-size: 1.3em;
}
#news-view .news-table .news-item-summary {
  font-size: 1.1em;
  font-weight: bold;
  width: 1px;
  min-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
#news-view .news-table .news-item-thumb {
  max-width: 120px;
  max-height: 100px;
}
#news-view .news-table .news-item-created,
#news-view .news-table .news-item-client-handle {
  font-size: 11px;
}
#news-view .news-table #delete-news-item-modal, #news-view .news-table #copy-news-item-modal {
  text-align: left;
}
#news-view .new-news-item .news-item-title {
  width: 47.3684210526%;
  float: left;
  margin-right: 5.2631578947%;
}
#news-view .new-news-item #news-item-title-help {
  width: 47.3684210526%;
  float: right;
  margin-right: 0;
}
#news-view .new-news-item .news-item-body {
  width: 64.2857142857%;
  float: left;
  margin-right: 7.1428571429%;
}
#news-view .new-news-item #news-item-body-help {
  width: 28.5714285714%;
  float: right;
  margin-right: 0;
}
#news-view .new-news-item #news-feed-help {
  display: inline-block;
}
#news-view .news-history .news-feed code {
  font-size: 11px;
}
#news-view .news-history tfoot, #news-view .news-history .news-footer {
  font-size: 11px;
}
#news-view #copy-news-item-modal select {
  max-width: 100%;
  text-overflow: ellipsis;
}
#news-view #uploaded-images-grid .panel-title, #news-view #uploaded-videos-grid .panel-title, #news-view #media-accordion .panel-title {
  font-size: 14px;
  font-weight: 700;
}
#news-view #uploaded-images-grid .uploaded-images, #news-view #uploaded-images-grid .uploaded-videos, #news-view #uploaded-images-grid .uploaded-pdfs, #news-view #uploaded-videos-grid .uploaded-images, #news-view #uploaded-videos-grid .uploaded-videos, #news-view #uploaded-videos-grid .uploaded-pdfs, #news-view #media-accordion .uploaded-images, #news-view #media-accordion .uploaded-videos, #news-view #media-accordion .uploaded-pdfs {
  margin-bottom: 10px;
}
#news-view #uploaded-videos-grid .panel {
  margin-bottom: 10px;
}
#news-view .media-thumbnail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, 162px);
  grid-auto-rows: max-content;
  justify-content: space-between;
}
#news-view .media-thumbnail-grid .media-tile {
  display: flex;
  flex-direction: column;
}
#news-view .media-thumbnail-grid .media-tile .selection-icon {
  display: none;
  position: absolute;
  margin-left: 10px;
  margin-top: 10px;
  width: auto;
}
#news-view .media-thumbnail-grid .media-tile .selection-icon .fa {
  line-height: 1em;
}
#news-view .media-thumbnail-grid .media-tile .selection-icon .fa-circle {
  color: #fff;
  opacity: 0.65;
}
#news-view .media-thumbnail-grid .media-tile.selected .selection-icon {
  display: block;
}
#news-view .video-thumbnail-grid.selection-active .video-tile .selection-icon {
  display: none;
  position: absolute;
  margin-left: 10px;
  margin-top: 10px;
  width: auto;
}
#news-view .video-thumbnail-grid.selection-active .video-tile .selection-icon .fa {
  line-height: 1em;
}
#news-view .video-thumbnail-grid.selection-active .video-tile .selection-icon .fa-circle {
  color: #fff;
  opacity: 0.65;
}
#news-view .video-thumbnail-grid.selection-active .video-tile.selected .selection-icon {
  display: block;
}
#news-view .video-thumbnail-row, #news-view .media-thumbnail-row {
  margin-bottom: 15px;
}
#news-view .video-tile {
  display: inline-block;
  margin-right: 30px;
}
#news-view .media-tile {
  margin-bottom: 15px;
}
#news-view .video-tile[disabled], #news-view .media-tile[disabled] {
  opacity: 0.65;
}
#news-view .video-tile.status-uploading .upload-spinner, #news-view .video-tile.status-uploading .upload-progress, #news-view .video-tile.status-transcoding .upload-spinner, #news-view .video-tile.status-transcoding .upload-progress, #news-view .media-tile.status-uploading .upload-spinner, #news-view .media-tile.status-uploading .upload-progress, #news-view .media-tile.status-transcoding .upload-spinner, #news-view .media-tile.status-transcoding .upload-progress {
  display: block;
}
#news-view .video-tile.status-uploading .upload-prompt, #news-view .video-tile.status-transcoding .upload-prompt, #news-view .media-tile.status-uploading .upload-prompt, #news-view .media-tile.status-transcoding .upload-prompt {
  display: none;
}
#news-view .video-tile.status-uploading .video-thumbnail, #news-view .video-tile.status-uploading .media-thumbnail, #news-view .video-tile.status-transcoding .video-thumbnail, #news-view .video-tile.status-transcoding .media-thumbnail, #news-view .video-tile.status-failed .video-thumbnail, #news-view .video-tile.status-failed .media-thumbnail, #news-view .video-tile.status-no-video .video-thumbnail, #news-view .video-tile.status-no-video .media-thumbnail, #news-view .video-tile.status-no-media .video-thumbnail, #news-view .video-tile.status-no-media .media-thumbnail, #news-view .video-tile#upload-tile .video-thumbnail, #news-view .video-tile#upload-tile .media-thumbnail, #news-view .media-tile.status-uploading .video-thumbnail, #news-view .media-tile.status-uploading .media-thumbnail, #news-view .media-tile.status-transcoding .video-thumbnail, #news-view .media-tile.status-transcoding .media-thumbnail, #news-view .media-tile.status-failed .video-thumbnail, #news-view .media-tile.status-failed .media-thumbnail, #news-view .media-tile.status-no-video .video-thumbnail, #news-view .media-tile.status-no-video .media-thumbnail, #news-view .media-tile.status-no-media .video-thumbnail, #news-view .media-tile.status-no-media .media-thumbnail, #news-view .media-tile#upload-tile .video-thumbnail, #news-view .media-tile#upload-tile .media-thumbnail {
  background-image: none !important;
  background-color: #f0f0f0;
}
#news-view .video-tile.status-failed .failed-transcode, #news-view .media-tile.status-failed .failed-transcode {
  display: block;
}
#news-view .video-tile.status-no-video .no-video, #news-view .video-tile.status-no-video .no-media, #news-view .video-tile.status-no-media .no-video, #news-view .video-tile.status-no-media .no-media, #news-view .media-tile.status-no-video .no-video, #news-view .media-tile.status-no-video .no-media, #news-view .media-tile.status-no-media .no-video, #news-view .media-tile.status-no-media .no-media {
  display: block;
}
#news-view .video-tile.status-ready, #news-view .media-tile.status-ready {
  border: 0;
}
#news-view .video-tile .tile-text, #news-view .media-tile .tile-text {
  line-height: 104px;
  font-size: 12px;
}
#news-view .video-tile:last-child, #news-view .media-tile:last-child {
  margin-right: 0;
}
#news-view .video-caption, #news-view .media-caption, #news-view .upload-progress {
  text-align: center;
  margin-top: 5px;
  font-size: 11px;
}
#news-view .video-thumbnail, #news-view .media-thumbnail {
  width: 156px;
  height: 117px;
  padding: 0;
  position: relative;
  text-align: center;
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: center;
}
#news-view .video-thumbnail:hover, #news-view .media-thumbnail:hover {
  opacity: 0.85;
}
#news-view .video-thumbnail > .thumbnail-icon, #news-view .media-thumbnail > .thumbnail-icon {
  display: block;
  margin: 0 auto;
}
#news-view .video-thumbnail .fa, #news-view .media-thumbnail .fa {
  line-height: 100px;
}
#news-view .video-thumbnail .no-video-caption, #news-view .video-thumbnail .no-media-caption, #news-view .media-thumbnail .no-video-caption, #news-view .media-thumbnail .no-media-caption {
  line-height: 201px;
  vertical-align: middle;
}
#news-view .video-thumbnail .upload-spinner, #news-view .video-thumbnail .upload-progress, #news-view .video-thumbnail .failed-transcode, #news-view .video-thumbnail .no-video, #news-view .video-thumbnail .no-media, #news-view .media-thumbnail .upload-spinner, #news-view .media-thumbnail .upload-progress, #news-view .media-thumbnail .failed-transcode, #news-view .media-thumbnail .no-video, #news-view .media-thumbnail .no-media {
  display: none;
}
#news-view #failed-transcode-warning {
  margin-bottom: 15px;
  color: #a00;
}
#news-view #failed-transcode-warning p:last-child {
  margin-bottom: 0;
}

#errors-view code {
  font-size: 9pt;
  color: #333;
  background: none;
  word-break: break-all;
  display: block;
}
#errors-view #error-table tbody {
  cursor: pointer;
}
#errors-view #error-table tbody > tr > td {
  border: none;
  vertical-align: baseline;
}
#errors-view #error-table > tbody:nth-child(odd) > tr > td {
  background-color: #f9f9f9;
}
#errors-view #error-table > tbody:nth-child(even) > tr > td {
  background-color: #fff;
}
#errors-view #error-table td.error-message {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 928px;
}
#errors-view #error-table > tbody:nth-child(odd):hover > tr > td, #errors-view #error-table > tbody:nth-child(even):hover > tr > td {
  background-color: #f5f5f5;
}

#error-detail-view code, #error-detail-view pre {
  font-size: 9pt;
}
#error-detail-view .error-message .badge {
  margin-left: 0.5em;
}
#error-detail-view .detail-row {
  width: 100%;
  float: right;
  margin-right: 0;
  margin-bottom: 10px;
}
#error-detail-view .detail-label {
  width: 10.2564102564%;
  float: left;
  margin-right: 2.5641025641%;
  text-align: right;
  font-weight: bold;
}
#error-detail-view .detail-value {
  width: 87.1794871795%;
  float: right;
  margin-right: 0;
  word-wrap: break-word;
  -ms-word-break: break-all;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
}
#error-detail-view .detail-value p {
  margin-bottom: 0;
}
#error-detail-view .detail-value .header-name {
  width: 12em;
  display: inline-block;
  font-style: italics;
}
#error-detail-view .detail-value .header-name code {
  white-space: pre-wrap;
  background: none;
}
#error-detail-view .response-body ul {
  list-style-type: none;
  padding-left: 1.2em;
}
#error-detail-view .response-body > ul {
  padding-left: 0;
}
#error-detail-view .response-body ul > li:last-child .json-comma {
  display: none;
}
#error-detail-view .response-body .label {
  margin-left: 0.6em;
  padding: 0.1em 0.6em;
  white-space: pre-wrap;
  font-size: 100%;
  font-weight: normal;
}
#error-detail-view .response-body .label code {
  background: none;
  padding: 0;
  font-style: italic;
}
#error-detail-view .response-body pre > .label:first-child {
  margin-left: 0;
}

#library-view #library-table td {
  padding: 20px;
}
#library-view #library-table .create-library td {
  text-align: center;
  border-top: 0;
  padding: 20px;
}
#library-view #library-table .create-library td .fa-stack {
  margin-right: 0.4em;
}
#library-view #library-table tr {
  cursor: pointer;
}
#library-view #library-table .video-title,
#library-view #library-table .library-title {
  font-weight: bold;
}
#library-view #library-table td.video-thumbnails,
#library-view #library-table td.media-item-thumbnails {
  position: relative;
  height: 144.375px;
  width: 210px;
}
#library-view #library-table .thumb {
  position: absolute;
  max-width: 150px;
  max-height: 84.375px;
}
#library-view #library-table .video-count,
#library-view #library-table .media-item-count {
  position: absolute;
}
#library-view #library-table .thumbnail-count-1 .thumb-0 {
  left: 30px;
  top: 30px;
}
#library-view #library-table .thumbnail-count-1 .video-count,
#library-view #library-table .thumbnail-count-1 .media-item-count {
  bottom: 35px;
  right: 35px;
}
#library-view #library-table .thumbnail-count-2 .thumb-0 {
  left: 25px;
  top: 25px;
}
#library-view #library-table .thumbnail-count-2 .thumb-1 {
  left: 35px;
  top: 35px;
}
#library-view #library-table .thumbnail-count-2 .video-count,
#library-view #library-table .thumbnail-count-2 .media-item-count {
  bottom: 30px;
  right: 30px;
}
#library-view #library-table .thumbnail-count-3 .thumb-0 {
  left: 20px;
  top: 20px;
}
#library-view #library-table .thumbnail-count-3 .thumb-1 {
  left: 30px;
  top: 30px;
}
#library-view #library-table .thumbnail-count-3 .thumb-2 {
  left: 40px;
  top: 40px;
}
#library-view #library-table .thumbnail-count-3 .video-count,
#library-view #library-table .thumbnail-count-3 .media-item-count {
  bottom: 25px;
  right: 25px;
}

.with-help-link {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

a .help-link-icon {
  margin-right: 0.2em;
}

.help-link-text {
  text-decoration: underline;
}

.help-link-text-right-margin {
  text-decoration: underline;
  margin-right: 0.5em;
}

#library-videos-view .detail-row, #library-media-view .detail-row, #create-library-view .detail-row {
  margin-bottom: 10px;
}
#library-videos-view .detail-row.description-save-btns, #library-videos-view .detail-row.library-details, #library-media-view .detail-row.description-save-btns, #library-media-view .detail-row.library-details, #create-library-view .detail-row.description-save-btns, #create-library-view .detail-row.library-details {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
#library-videos-view .detail-row.description-save-btns .save-buttons, #library-videos-view .detail-row.library-details .save-buttons, #library-media-view .detail-row.description-save-btns .save-buttons, #library-media-view .detail-row.library-details .save-buttons, #create-library-view .detail-row.description-save-btns .save-buttons, #create-library-view .detail-row.library-details .save-buttons {
  display: flex;
  height: 30px;
}
#library-videos-view .detail-row.description-save-btns .drag-help, #library-videos-view .detail-row.library-details .drag-help, #library-media-view .detail-row.description-save-btns .drag-help, #library-media-view .detail-row.library-details .drag-help, #create-library-view .detail-row.description-save-btns .drag-help, #create-library-view .detail-row.library-details .drag-help {
  margin: 0 0 0 auto;
  max-width: 205px;
}
#library-videos-view .panel-heading, #library-media-view .panel-heading, #create-library-view .panel-heading {
  overflow: hidden;
}
#library-videos-view .panel-heading .inline-edit, #library-media-view .panel-heading .inline-edit, #create-library-view .panel-heading .inline-edit {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
#library-videos-view .panel-heading .inline-edit .form-group, #library-media-view .panel-heading .inline-edit .form-group, #create-library-view .panel-heading .inline-edit .form-group {
  overflow: hidden;
}
#library-videos-view .panel-heading .inline-edit input, #library-media-view .panel-heading .inline-edit input, #create-library-view .panel-heading .inline-edit input {
  margin-right: 15px;
}
#library-videos-view .panel-heading .form-group.save-buttons, #library-media-view .panel-heading .form-group.save-buttons, #create-library-view .panel-heading .form-group.save-buttons {
  margin-left: auto;
}
#library-videos-view .fa-pencil, #library-media-view .fa-pencil, #create-library-view .fa-pencil {
  margin-left: 0.6em;
  cursor: pointer;
}
#library-videos-view .long-inline-editor-text, #library-media-view .long-inline-editor-text, #create-library-view .long-inline-editor-text {
  display: block;
  margin-bottom: 10px;
}
#library-videos-view .slug-postscript, #library-media-view .slug-postscript, #create-library-view .slug-postscript {
  display: block;
}
#library-videos-view .upload-video td, #library-media-view .upload-video td, #create-library-view .upload-video td {
  text-align: center;
  border-top: 0;
  cursor: pointer;
  padding: 20px;
}
#library-videos-view .upload-video .fa-stack, #library-media-view .upload-video .fa-stack, #create-library-view .upload-video .fa-stack {
  margin-right: 0.4em;
}
#library-videos-view .upload-video[disabled] td, #library-media-view .upload-video[disabled] td, #create-library-view .upload-video[disabled] td {
  cursor: default;
  background-color: #fff;
  opacity: 0.65;
}
#library-videos-view .upload-progress .progress-bar, #library-media-view .upload-progress .progress-bar, #create-library-view .upload-progress .progress-bar {
  border-radius: 4px;
}
#library-videos-view .droppable-container, #library-media-view .droppable-container, #create-library-view .droppable-container {
  display: flex;
  overflow-y: auto;
}
#library-videos-view textarea, #library-media-view textarea, #create-library-view textarea {
  max-width: 100%;
}
#library-videos-view #video-table td.drag-handle, #library-media-view #video-table td.drag-handle, #create-library-view #video-table td.drag-handle {
  background: none;
  width: 50px;
  vertical-align: middle;
  text-align: center;
}
#library-videos-view #video-table td.drag-handle .fa-ellipsis-v, #library-media-view #video-table td.drag-handle .fa-ellipsis-v, #create-library-view #video-table td.drag-handle .fa-ellipsis-v {
  font-size: 30px;
  padding: 1.5px;
  color: #888;
}
#library-videos-view #video-table td.thumb, #library-media-view #video-table td.thumb, #create-library-view #video-table td.thumb {
  width: 133.33px;
  text-align: center;
  vertical-align: middle;
  color: #888;
}
#library-videos-view #video-table td.thumb .thumbnail, #library-media-view #video-table td.thumb .thumbnail, #create-library-view #video-table td.thumb .thumbnail {
  width: 133.33px;
  height: 75px;
  margin-bottom: 10px;
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  border: 0;
}
#library-videos-view #video-table td.thumb .thumbnail.btn:hover, #library-media-view #video-table td.thumb .thumbnail.btn:hover, #create-library-view #video-table td.thumb .thumbnail.btn:hover {
  opacity: 0.85;
}
#library-videos-view #video-table td.thumb .thumbnail > .thumbnail-icon, #library-media-view #video-table td.thumb .thumbnail > .thumbnail-icon, #create-library-view #video-table td.thumb .thumbnail > .thumbnail-icon {
  display: block;
  margin: 0 auto;
  opacity: 0.66;
  color: #fff;
}
#library-videos-view #video-table td.thumb .thumbnail .fa, #library-media-view #video-table td.thumb .thumbnail .fa, #create-library-view #video-table td.thumb .thumbnail .fa {
  line-height: 75px;
}
#library-videos-view #video-table td.thumb button .fa, #library-media-view #video-table td.thumb button .fa, #create-library-view #video-table td.thumb button .fa {
  margin-left: 0.4em;
}
#library-videos-view #video-table td.body, #library-media-view #video-table td.body, #create-library-view #video-table td.body {
  position: relative;
}
#library-videos-view #video-table td.body .inline-action, #library-media-view #video-table td.body .inline-action, #create-library-view #video-table td.body .inline-action {
  margin-top: 8px;
  margin-bottom: 5px;
}
#library-videos-view #video-table td.body .video-title,
#library-videos-view #video-table td.body .library-title, #library-media-view #video-table td.body .video-title,
#library-media-view #video-table td.body .library-title, #create-library-view #video-table td.body .video-title,
#create-library-view #video-table td.body .library-title {
  display: inline-block;
  margin-top: 10px;
  margin-bottom: 5px;
}
#library-videos-view #video-table td.body .properties, #library-media-view #video-table td.body .properties, #create-library-view #video-table td.body .properties {
  margin-bottom: 0;
}
#library-videos-view #video-table td.body .properties label, #library-media-view #video-table td.body .properties label, #create-library-view #video-table td.body .properties label {
  margin-right: 0.6em;
}
#library-videos-view #video-table td.body .form-group, #library-media-view #video-table td.body .form-group, #create-library-view #video-table td.body .form-group {
  margin-bottom: 0;
}
#library-videos-view #video-table td.body .form-group:last-child, #library-media-view #video-table td.body .form-group:last-child, #create-library-view #video-table td.body .form-group:last-child {
  margin-bottom: 0;
}
#library-videos-view #video-table td.body .inline-edit .form-group, #library-media-view #video-table td.body .inline-edit .form-group, #create-library-view #video-table td.body .inline-edit .form-group {
  margin-bottom: 5px;
}
#library-videos-view #video-table td.body .created-at, #library-media-view #video-table td.body .created-at, #create-library-view #video-table td.body .created-at {
  font-size: 12px;
  text-align: right;
}
#library-videos-view #video-table td.body .video-title,
#library-videos-view #video-table td.body .library-title, #library-media-view #video-table td.body .video-title,
#library-media-view #video-table td.body .library-title, #create-library-view #video-table td.body .video-title,
#create-library-view #video-table td.body .library-title {
  word-break: break-all;
}
#library-videos-view #video-table .placeholder-thumbnail, #library-media-view #video-table .placeholder-thumbnail, #create-library-view #video-table .placeholder-thumbnail {
  position: relative;
  width: 133.33px;
  height: 80px;
  margin-bottom: 10px;
  text-align: center;
}
#library-videos-view #video-table .placeholder-thumbnail .fa, #library-media-view #video-table .placeholder-thumbnail .fa, #create-library-view #video-table .placeholder-thumbnail .fa {
  line-height: 75px;
}
#library-videos-view #video-table .video-buttons, #library-media-view #video-table .video-buttons, #create-library-view #video-table .video-buttons {
  margin-left: 1.2em;
  text-align: right;
}
#library-videos-view #video-table .video-buttons .fa, #library-media-view #video-table .video-buttons .fa, #create-library-view #video-table .video-buttons .fa {
  margin-top: 0.6em;
  margin-left: 0.6em;
}
#library-videos-view #video-table .video-buttons .fa.disabled, #library-media-view #video-table .video-buttons .fa.disabled, #create-library-view #video-table .video-buttons .fa.disabled {
  opacity: 0.65;
}
#library-videos-view #video-table .video-buttons .fa.disabled:hover, #library-media-view #video-table .video-buttons .fa.disabled:hover, #create-library-view #video-table .video-buttons .fa.disabled:hover {
  cursor: default;
  color: #333;
}
#library-videos-view #video-table .video-buttons .fa-close, #library-media-view #video-table .video-buttons .fa-close, #create-library-view #video-table .video-buttons .fa-close {
  display: block;
}
#library-videos-view #video-table .video-buttons .fa:first-child, #library-media-view #video-table .video-buttons .fa:first-child, #create-library-view #video-table .video-buttons .fa:first-child {
  margin-top: 0;
}
#library-videos-view #video-table .fa-close, #library-media-view #video-table .fa-close, #create-library-view #video-table .fa-close {
  cursor: pointer;
}
#library-videos-view #video-table .fa-close:hover, #library-media-view #video-table .fa-close:hover, #create-library-view #video-table .fa-close:hover {
  opacity: 0.85;
}
#library-videos-view #video-table .fa-bar-chart, #library-media-view #video-table .fa-bar-chart, #create-library-view #video-table .fa-bar-chart {
  -webkit-font-smoothing: none;
  font-smooth: none;
  display: block;
}
#library-videos-view #video-table tr.deleted td.thumb, #library-media-view #video-table tr.deleted td.thumb, #create-library-view #video-table tr.deleted td.thumb {
  opacity: 0.25;
}
#library-videos-view #video-table tr.deleted td.body > *, #library-media-view #video-table tr.deleted td.body > *, #create-library-view #video-table tr.deleted td.body > * {
  opacity: 0.25;
}
#library-videos-view #video-table tr.deleted td.body > .pull-right, #library-media-view #video-table tr.deleted td.body > .pull-right, #create-library-view #video-table tr.deleted td.body > .pull-right {
  opacity: 1;
}
#library-videos-view #video-table tr.deleted td.body > .pull-right .icon-button, #library-media-view #video-table tr.deleted td.body > .pull-right .icon-button, #create-library-view #video-table tr.deleted td.body > .pull-right .icon-button {
  opacity: 0.25;
}
#library-videos-view #video-table tr.deleted td.body > .pull-right > .restore-button, #library-media-view #video-table tr.deleted td.body > .pull-right > .restore-button, #create-library-view #video-table tr.deleted td.body > .pull-right > .restore-button {
  opacity: 1;
  display: block;
}
#library-videos-view .video-overlay video, #library-media-view .video-overlay video, #create-library-view .video-overlay video {
  position: fixed;
  display: block;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  margin: 0 auto;
  z-index: 1050;
}

#video-views-view .thumb {
  margin-right: 1.2em;
}
#video-views-view .thumb img {
  max-width: 200px;
  max-height: 112.5px;
  border-radius: 4px;
}
#video-views-view .title {
  vertical-align: top;
  word-break: break-all;
}
#video-views-view .download {
  margin-left: 1.2em;
}

#forms-view .field-properties, #forms-view .field-info,
#forms-view .action-properties, #forms-view .action-info,
#forms-view .item-properties, #forms-view .item-info, #screens-view .field-properties, #screens-view .field-info,
#screens-view .action-properties, #screens-view .action-info,
#screens-view .item-properties, #screens-view .item-info, #dashboards-view .field-properties, #dashboards-view .field-info,
#dashboards-view .action-properties, #dashboards-view .action-info,
#dashboards-view .item-properties, #dashboards-view .item-info, #menus-view .field-properties, #menus-view .field-info,
#menus-view .action-properties, #menus-view .action-info,
#menus-view .item-properties, #menus-view .item-info, .item-collection-view .field-properties, .item-collection-view .field-info,
.item-collection-view .action-properties, .item-collection-view .action-info,
.item-collection-view .item-properties, .item-collection-view .item-info {
  position: absolute;
  left: 125%;
  top: 0;
  width: 100%;
  color: #333;
  font-size: 14px;
  background-color: #fff;
  cursor: default;
}
#forms-view .field-properties label, #forms-view .field-info label,
#forms-view .action-properties label, #forms-view .action-info label,
#forms-view .item-properties label, #forms-view .item-info label, #screens-view .field-properties label, #screens-view .field-info label,
#screens-view .action-properties label, #screens-view .action-info label,
#screens-view .item-properties label, #screens-view .item-info label, #dashboards-view .field-properties label, #dashboards-view .field-info label,
#dashboards-view .action-properties label, #dashboards-view .action-info label,
#dashboards-view .item-properties label, #dashboards-view .item-info label, #menus-view .field-properties label, #menus-view .field-info label,
#menus-view .action-properties label, #menus-view .action-info label,
#menus-view .item-properties label, #menus-view .item-info label, .item-collection-view .field-properties label, .item-collection-view .field-info label,
.item-collection-view .action-properties label, .item-collection-view .action-info label,
.item-collection-view .item-properties label, .item-collection-view .item-info label {
  font-size: 14px;
}
#forms-view .field-properties .form-group > .checkbox, #forms-view .field-info .form-group > .checkbox,
#forms-view .action-properties .form-group > .checkbox, #forms-view .action-info .form-group > .checkbox,
#forms-view .item-properties .form-group > .checkbox, #forms-view .item-info .form-group > .checkbox, #screens-view .field-properties .form-group > .checkbox, #screens-view .field-info .form-group > .checkbox,
#screens-view .action-properties .form-group > .checkbox, #screens-view .action-info .form-group > .checkbox,
#screens-view .item-properties .form-group > .checkbox, #screens-view .item-info .form-group > .checkbox, #dashboards-view .field-properties .form-group > .checkbox, #dashboards-view .field-info .form-group > .checkbox,
#dashboards-view .action-properties .form-group > .checkbox, #dashboards-view .action-info .form-group > .checkbox,
#dashboards-view .item-properties .form-group > .checkbox, #dashboards-view .item-info .form-group > .checkbox, #menus-view .field-properties .form-group > .checkbox, #menus-view .field-info .form-group > .checkbox,
#menus-view .action-properties .form-group > .checkbox, #menus-view .action-info .form-group > .checkbox,
#menus-view .item-properties .form-group > .checkbox, #menus-view .item-info .form-group > .checkbox, .item-collection-view .field-properties .form-group > .checkbox, .item-collection-view .field-info .form-group > .checkbox,
.item-collection-view .action-properties .form-group > .checkbox, .item-collection-view .action-info .form-group > .checkbox,
.item-collection-view .item-properties .form-group > .checkbox, .item-collection-view .item-info .form-group > .checkbox {
  margin-top: 0;
  margin-bottom: 0;
}
#forms-view .field-properties .alert, #forms-view .field-info .alert,
#forms-view .action-properties .alert, #forms-view .action-info .alert,
#forms-view .item-properties .alert, #forms-view .item-info .alert, #screens-view .field-properties .alert, #screens-view .field-info .alert,
#screens-view .action-properties .alert, #screens-view .action-info .alert,
#screens-view .item-properties .alert, #screens-view .item-info .alert, #dashboards-view .field-properties .alert, #dashboards-view .field-info .alert,
#dashboards-view .action-properties .alert, #dashboards-view .action-info .alert,
#dashboards-view .item-properties .alert, #dashboards-view .item-info .alert, #menus-view .field-properties .alert, #menus-view .field-info .alert,
#menus-view .action-properties .alert, #menus-view .action-info .alert,
#menus-view .item-properties .alert, #menus-view .item-info .alert, .item-collection-view .field-properties .alert, .item-collection-view .field-info .alert,
.item-collection-view .action-properties .alert, .item-collection-view .action-info .alert,
.item-collection-view .item-properties .alert, .item-collection-view .item-info .alert {
  font-size: 12px;
  padding: 10px;
}
#forms-view .field-properties div.drag-handle,
#forms-view .field-properties div.hidden-handle, #forms-view .field-info div.drag-handle,
#forms-view .field-info div.hidden-handle,
#forms-view .action-properties div.drag-handle,
#forms-view .action-properties div.hidden-handle, #forms-view .action-info div.drag-handle,
#forms-view .action-info div.hidden-handle,
#forms-view .item-properties div.drag-handle,
#forms-view .item-properties div.hidden-handle, #forms-view .item-info div.drag-handle,
#forms-view .item-info div.hidden-handle, #screens-view .field-properties div.drag-handle,
#screens-view .field-properties div.hidden-handle, #screens-view .field-info div.drag-handle,
#screens-view .field-info div.hidden-handle,
#screens-view .action-properties div.drag-handle,
#screens-view .action-properties div.hidden-handle, #screens-view .action-info div.drag-handle,
#screens-view .action-info div.hidden-handle,
#screens-view .item-properties div.drag-handle,
#screens-view .item-properties div.hidden-handle, #screens-view .item-info div.drag-handle,
#screens-view .item-info div.hidden-handle, #dashboards-view .field-properties div.drag-handle,
#dashboards-view .field-properties div.hidden-handle, #dashboards-view .field-info div.drag-handle,
#dashboards-view .field-info div.hidden-handle,
#dashboards-view .action-properties div.drag-handle,
#dashboards-view .action-properties div.hidden-handle, #dashboards-view .action-info div.drag-handle,
#dashboards-view .action-info div.hidden-handle,
#dashboards-view .item-properties div.drag-handle,
#dashboards-view .item-properties div.hidden-handle, #dashboards-view .item-info div.drag-handle,
#dashboards-view .item-info div.hidden-handle, #menus-view .field-properties div.drag-handle,
#menus-view .field-properties div.hidden-handle, #menus-view .field-info div.drag-handle,
#menus-view .field-info div.hidden-handle,
#menus-view .action-properties div.drag-handle,
#menus-view .action-properties div.hidden-handle, #menus-view .action-info div.drag-handle,
#menus-view .action-info div.hidden-handle,
#menus-view .item-properties div.drag-handle,
#menus-view .item-properties div.hidden-handle, #menus-view .item-info div.drag-handle,
#menus-view .item-info div.hidden-handle, .item-collection-view .field-properties div.drag-handle,
.item-collection-view .field-properties div.hidden-handle, .item-collection-view .field-info div.drag-handle,
.item-collection-view .field-info div.hidden-handle,
.item-collection-view .action-properties div.drag-handle,
.item-collection-view .action-properties div.hidden-handle, .item-collection-view .action-info div.drag-handle,
.item-collection-view .action-info div.hidden-handle,
.item-collection-view .item-properties div.drag-handle,
.item-collection-view .item-properties div.hidden-handle, .item-collection-view .item-info div.drag-handle,
.item-collection-view .item-info div.hidden-handle {
  display: inline-block;
  background: none;
  width: 10px;
  vertical-align: middle;
}
#forms-view .field-properties div.drag-handle i.fa-ellipsis-v,
#forms-view .field-properties div.hidden-handle i.fa-ellipsis-v, #forms-view .field-info div.drag-handle i.fa-ellipsis-v,
#forms-view .field-info div.hidden-handle i.fa-ellipsis-v,
#forms-view .action-properties div.drag-handle i.fa-ellipsis-v,
#forms-view .action-properties div.hidden-handle i.fa-ellipsis-v, #forms-view .action-info div.drag-handle i.fa-ellipsis-v,
#forms-view .action-info div.hidden-handle i.fa-ellipsis-v,
#forms-view .item-properties div.drag-handle i.fa-ellipsis-v,
#forms-view .item-properties div.hidden-handle i.fa-ellipsis-v, #forms-view .item-info div.drag-handle i.fa-ellipsis-v,
#forms-view .item-info div.hidden-handle i.fa-ellipsis-v, #screens-view .field-properties div.drag-handle i.fa-ellipsis-v,
#screens-view .field-properties div.hidden-handle i.fa-ellipsis-v, #screens-view .field-info div.drag-handle i.fa-ellipsis-v,
#screens-view .field-info div.hidden-handle i.fa-ellipsis-v,
#screens-view .action-properties div.drag-handle i.fa-ellipsis-v,
#screens-view .action-properties div.hidden-handle i.fa-ellipsis-v, #screens-view .action-info div.drag-handle i.fa-ellipsis-v,
#screens-view .action-info div.hidden-handle i.fa-ellipsis-v,
#screens-view .item-properties div.drag-handle i.fa-ellipsis-v,
#screens-view .item-properties div.hidden-handle i.fa-ellipsis-v, #screens-view .item-info div.drag-handle i.fa-ellipsis-v,
#screens-view .item-info div.hidden-handle i.fa-ellipsis-v, #dashboards-view .field-properties div.drag-handle i.fa-ellipsis-v,
#dashboards-view .field-properties div.hidden-handle i.fa-ellipsis-v, #dashboards-view .field-info div.drag-handle i.fa-ellipsis-v,
#dashboards-view .field-info div.hidden-handle i.fa-ellipsis-v,
#dashboards-view .action-properties div.drag-handle i.fa-ellipsis-v,
#dashboards-view .action-properties div.hidden-handle i.fa-ellipsis-v, #dashboards-view .action-info div.drag-handle i.fa-ellipsis-v,
#dashboards-view .action-info div.hidden-handle i.fa-ellipsis-v,
#dashboards-view .item-properties div.drag-handle i.fa-ellipsis-v,
#dashboards-view .item-properties div.hidden-handle i.fa-ellipsis-v, #dashboards-view .item-info div.drag-handle i.fa-ellipsis-v,
#dashboards-view .item-info div.hidden-handle i.fa-ellipsis-v, #menus-view .field-properties div.drag-handle i.fa-ellipsis-v,
#menus-view .field-properties div.hidden-handle i.fa-ellipsis-v, #menus-view .field-info div.drag-handle i.fa-ellipsis-v,
#menus-view .field-info div.hidden-handle i.fa-ellipsis-v,
#menus-view .action-properties div.drag-handle i.fa-ellipsis-v,
#menus-view .action-properties div.hidden-handle i.fa-ellipsis-v, #menus-view .action-info div.drag-handle i.fa-ellipsis-v,
#menus-view .action-info div.hidden-handle i.fa-ellipsis-v,
#menus-view .item-properties div.drag-handle i.fa-ellipsis-v,
#menus-view .item-properties div.hidden-handle i.fa-ellipsis-v, #menus-view .item-info div.drag-handle i.fa-ellipsis-v,
#menus-view .item-info div.hidden-handle i.fa-ellipsis-v, .item-collection-view .field-properties div.drag-handle i.fa-ellipsis-v,
.item-collection-view .field-properties div.hidden-handle i.fa-ellipsis-v, .item-collection-view .field-info div.drag-handle i.fa-ellipsis-v,
.item-collection-view .field-info div.hidden-handle i.fa-ellipsis-v,
.item-collection-view .action-properties div.drag-handle i.fa-ellipsis-v,
.item-collection-view .action-properties div.hidden-handle i.fa-ellipsis-v, .item-collection-view .action-info div.drag-handle i.fa-ellipsis-v,
.item-collection-view .action-info div.hidden-handle i.fa-ellipsis-v,
.item-collection-view .item-properties div.drag-handle i.fa-ellipsis-v,
.item-collection-view .item-properties div.hidden-handle i.fa-ellipsis-v, .item-collection-view .item-info div.drag-handle i.fa-ellipsis-v,
.item-collection-view .item-info div.hidden-handle i.fa-ellipsis-v {
  margin-right: 2px;
  font-size: 13px;
}
#forms-view .save-buttons, #screens-view .save-buttons, #dashboards-view .save-buttons, #menus-view .save-buttons, .item-collection-view .save-buttons {
  width: 28.5714285714%;
  float: right;
  margin-right: 0;
}

.entity-view .save-buttons {
  width: 47.3684210526%;
  float: right;
  margin-right: 0;
}

#forms-view .screen-list > .list-group > .list-group-item,
#forms-view .action-list > .list-group > .list-group-item,
#forms-view .form-list > .list-group > .list-group-item,
#forms-view .field-list > .list-group > .list-group-item,
#forms-view .menu-list > .list-group > .list-group-item,
#forms-view .collection-list > .list-group > .list-group-item,
#forms-view .dashboard-list > .list-group > .list-group-item,
#forms-view .entity-list > .list-group > .list-group-item,
#forms-view .item-list.list-group > .list-group-item,
#forms-view .item-list.list-group > .submenu-list-group-item,
#forms-view .action-list.list-group > .list-group-item, #screens-view .screen-list > .list-group > .list-group-item,
#screens-view .action-list > .list-group > .list-group-item,
#screens-view .form-list > .list-group > .list-group-item,
#screens-view .field-list > .list-group > .list-group-item,
#screens-view .menu-list > .list-group > .list-group-item,
#screens-view .collection-list > .list-group > .list-group-item,
#screens-view .dashboard-list > .list-group > .list-group-item,
#screens-view .entity-list > .list-group > .list-group-item,
#screens-view .item-list.list-group > .list-group-item,
#screens-view .item-list.list-group > .submenu-list-group-item,
#screens-view .action-list.list-group > .list-group-item, #dashboards-view .screen-list > .list-group > .list-group-item,
#dashboards-view .action-list > .list-group > .list-group-item,
#dashboards-view .form-list > .list-group > .list-group-item,
#dashboards-view .field-list > .list-group > .list-group-item,
#dashboards-view .menu-list > .list-group > .list-group-item,
#dashboards-view .collection-list > .list-group > .list-group-item,
#dashboards-view .dashboard-list > .list-group > .list-group-item,
#dashboards-view .entity-list > .list-group > .list-group-item,
#dashboards-view .item-list.list-group > .list-group-item,
#dashboards-view .item-list.list-group > .submenu-list-group-item,
#dashboards-view .action-list.list-group > .list-group-item, .item-collection-view .screen-list > .list-group > .list-group-item,
.item-collection-view .action-list > .list-group > .list-group-item,
.item-collection-view .form-list > .list-group > .list-group-item,
.item-collection-view .field-list > .list-group > .list-group-item,
.item-collection-view .menu-list > .list-group > .list-group-item,
.item-collection-view .collection-list > .list-group > .list-group-item,
.item-collection-view .dashboard-list > .list-group > .list-group-item,
.item-collection-view .entity-list > .list-group > .list-group-item,
.item-collection-view .item-list.list-group > .list-group-item,
.item-collection-view .item-list.list-group > .submenu-list-group-item,
.item-collection-view .action-list.list-group > .list-group-item,
.entity-view .screen-list > .list-group > .list-group-item,
.entity-view .action-list > .list-group > .list-group-item,
.entity-view .form-list > .list-group > .list-group-item,
.entity-view .field-list > .list-group > .list-group-item,
.entity-view .menu-list > .list-group > .list-group-item,
.entity-view .collection-list > .list-group > .list-group-item,
.entity-view .dashboard-list > .list-group > .list-group-item,
.entity-view .entity-list > .list-group > .list-group-item,
.entity-view .item-list.list-group > .list-group-item,
.entity-view .item-list.list-group > .submenu-list-group-item,
.entity-view .action-list.list-group > .list-group-item, #workflows-view .screen-list > .list-group > .list-group-item,
#workflows-view .action-list > .list-group > .list-group-item,
#workflows-view .form-list > .list-group > .list-group-item,
#workflows-view .field-list > .list-group > .list-group-item,
#workflows-view .menu-list > .list-group > .list-group-item,
#workflows-view .collection-list > .list-group > .list-group-item,
#workflows-view .dashboard-list > .list-group > .list-group-item,
#workflows-view .entity-list > .list-group > .list-group-item,
#workflows-view .item-list.list-group > .list-group-item,
#workflows-view .item-list.list-group > .submenu-list-group-item,
#workflows-view .action-list.list-group > .list-group-item, #menus-view .screen-list > .list-group > .list-group-item,
#menus-view .action-list > .list-group > .list-group-item,
#menus-view .form-list > .list-group > .list-group-item,
#menus-view .field-list > .list-group > .list-group-item,
#menus-view .menu-list > .list-group > .list-group-item,
#menus-view .collection-list > .list-group > .list-group-item,
#menus-view .dashboard-list > .list-group > .list-group-item,
#menus-view .entity-list > .list-group > .list-group-item,
#menus-view .item-list.list-group > .list-group-item,
#menus-view .item-list.list-group > .submenu-list-group-item,
#menus-view .action-list.list-group > .list-group-item {
  cursor: pointer;
  word-break: break-word;
}
#forms-view .screen-list > .list-group > .list-group-item.no-archive,
#forms-view .action-list > .list-group > .list-group-item.no-archive,
#forms-view .form-list > .list-group > .list-group-item.no-archive,
#forms-view .field-list > .list-group > .list-group-item.no-archive,
#forms-view .menu-list > .list-group > .list-group-item.no-archive,
#forms-view .collection-list > .list-group > .list-group-item.no-archive,
#forms-view .dashboard-list > .list-group > .list-group-item.no-archive,
#forms-view .entity-list > .list-group > .list-group-item.no-archive,
#forms-view .item-list.list-group > .list-group-item.no-archive,
#forms-view .item-list.list-group > .submenu-list-group-item.no-archive,
#forms-view .action-list.list-group > .list-group-item.no-archive, #screens-view .screen-list > .list-group > .list-group-item.no-archive,
#screens-view .action-list > .list-group > .list-group-item.no-archive,
#screens-view .form-list > .list-group > .list-group-item.no-archive,
#screens-view .field-list > .list-group > .list-group-item.no-archive,
#screens-view .menu-list > .list-group > .list-group-item.no-archive,
#screens-view .collection-list > .list-group > .list-group-item.no-archive,
#screens-view .dashboard-list > .list-group > .list-group-item.no-archive,
#screens-view .entity-list > .list-group > .list-group-item.no-archive,
#screens-view .item-list.list-group > .list-group-item.no-archive,
#screens-view .item-list.list-group > .submenu-list-group-item.no-archive,
#screens-view .action-list.list-group > .list-group-item.no-archive, #dashboards-view .screen-list > .list-group > .list-group-item.no-archive,
#dashboards-view .action-list > .list-group > .list-group-item.no-archive,
#dashboards-view .form-list > .list-group > .list-group-item.no-archive,
#dashboards-view .field-list > .list-group > .list-group-item.no-archive,
#dashboards-view .menu-list > .list-group > .list-group-item.no-archive,
#dashboards-view .collection-list > .list-group > .list-group-item.no-archive,
#dashboards-view .dashboard-list > .list-group > .list-group-item.no-archive,
#dashboards-view .entity-list > .list-group > .list-group-item.no-archive,
#dashboards-view .item-list.list-group > .list-group-item.no-archive,
#dashboards-view .item-list.list-group > .submenu-list-group-item.no-archive,
#dashboards-view .action-list.list-group > .list-group-item.no-archive, .item-collection-view .screen-list > .list-group > .list-group-item.no-archive,
.item-collection-view .action-list > .list-group > .list-group-item.no-archive,
.item-collection-view .form-list > .list-group > .list-group-item.no-archive,
.item-collection-view .field-list > .list-group > .list-group-item.no-archive,
.item-collection-view .menu-list > .list-group > .list-group-item.no-archive,
.item-collection-view .collection-list > .list-group > .list-group-item.no-archive,
.item-collection-view .dashboard-list > .list-group > .list-group-item.no-archive,
.item-collection-view .entity-list > .list-group > .list-group-item.no-archive,
.item-collection-view .item-list.list-group > .list-group-item.no-archive,
.item-collection-view .item-list.list-group > .submenu-list-group-item.no-archive,
.item-collection-view .action-list.list-group > .list-group-item.no-archive,
.entity-view .screen-list > .list-group > .list-group-item.no-archive,
.entity-view .action-list > .list-group > .list-group-item.no-archive,
.entity-view .form-list > .list-group > .list-group-item.no-archive,
.entity-view .field-list > .list-group > .list-group-item.no-archive,
.entity-view .menu-list > .list-group > .list-group-item.no-archive,
.entity-view .collection-list > .list-group > .list-group-item.no-archive,
.entity-view .dashboard-list > .list-group > .list-group-item.no-archive,
.entity-view .entity-list > .list-group > .list-group-item.no-archive,
.entity-view .item-list.list-group > .list-group-item.no-archive,
.entity-view .item-list.list-group > .submenu-list-group-item.no-archive,
.entity-view .action-list.list-group > .list-group-item.no-archive, #workflows-view .screen-list > .list-group > .list-group-item.no-archive,
#workflows-view .action-list > .list-group > .list-group-item.no-archive,
#workflows-view .form-list > .list-group > .list-group-item.no-archive,
#workflows-view .field-list > .list-group > .list-group-item.no-archive,
#workflows-view .menu-list > .list-group > .list-group-item.no-archive,
#workflows-view .collection-list > .list-group > .list-group-item.no-archive,
#workflows-view .dashboard-list > .list-group > .list-group-item.no-archive,
#workflows-view .entity-list > .list-group > .list-group-item.no-archive,
#workflows-view .item-list.list-group > .list-group-item.no-archive,
#workflows-view .item-list.list-group > .submenu-list-group-item.no-archive,
#workflows-view .action-list.list-group > .list-group-item.no-archive, #menus-view .screen-list > .list-group > .list-group-item.no-archive,
#menus-view .action-list > .list-group > .list-group-item.no-archive,
#menus-view .form-list > .list-group > .list-group-item.no-archive,
#menus-view .field-list > .list-group > .list-group-item.no-archive,
#menus-view .menu-list > .list-group > .list-group-item.no-archive,
#menus-view .collection-list > .list-group > .list-group-item.no-archive,
#menus-view .dashboard-list > .list-group > .list-group-item.no-archive,
#menus-view .entity-list > .list-group > .list-group-item.no-archive,
#menus-view .item-list.list-group > .list-group-item.no-archive,
#menus-view .item-list.list-group > .submenu-list-group-item.no-archive,
#menus-view .action-list.list-group > .list-group-item.no-archive {
  cursor: default;
}
#forms-view .field-controls .btn, #forms-view .action-controls .btn,
#forms-view .item-controls .btn, #screens-view .field-controls .btn, #screens-view .action-controls .btn,
#screens-view .item-controls .btn, #dashboards-view .field-controls .btn, #dashboards-view .action-controls .btn,
#dashboards-view .item-controls .btn, .item-collection-view .field-controls .btn, .item-collection-view .action-controls .btn,
.item-collection-view .item-controls .btn,
.entity-view .field-controls .btn,
.entity-view .action-controls .btn,
.entity-view .item-controls .btn, #workflows-view .field-controls .btn, #workflows-view .action-controls .btn,
#workflows-view .item-controls .btn, #menus-view .field-controls .btn, #menus-view .action-controls .btn,
#menus-view .item-controls .btn {
  margin-right: 4px;
}
#forms-view .field-controls .delete-button, #forms-view .action-controls .delete-button,
#forms-view .item-controls .delete-button, #screens-view .field-controls .delete-button, #screens-view .action-controls .delete-button,
#screens-view .item-controls .delete-button, #dashboards-view .field-controls .delete-button, #dashboards-view .action-controls .delete-button,
#dashboards-view .item-controls .delete-button, .item-collection-view .field-controls .delete-button, .item-collection-view .action-controls .delete-button,
.item-collection-view .item-controls .delete-button,
.entity-view .field-controls .delete-button,
.entity-view .action-controls .delete-button,
.entity-view .item-controls .delete-button, #workflows-view .field-controls .delete-button, #workflows-view .action-controls .delete-button,
#workflows-view .item-controls .delete-button, #menus-view .field-controls .delete-button, #menus-view .action-controls .delete-button,
#menus-view .item-controls .delete-button {
  float: right;
}
#forms-view .new-field, #forms-view .new-action,
#forms-view .new-item, #screens-view .new-field, #screens-view .new-action,
#screens-view .new-item, #dashboards-view .new-field, #dashboards-view .new-action,
#dashboards-view .new-item, .item-collection-view .new-field, .item-collection-view .new-action,
.item-collection-view .new-item,
.entity-view .new-field,
.entity-view .new-action,
.entity-view .new-item, #workflows-view .new-field, #workflows-view .new-action,
#workflows-view .new-item, #menus-view .new-field, #menus-view .new-action,
#menus-view .new-item {
  background-color: #eee;
  text-align: center;
  line-height: 50px;
  padding: 10px 15px;
}
#forms-view .new-field i, #forms-view .new-action i,
#forms-view .new-item i, #screens-view .new-field i, #screens-view .new-action i,
#screens-view .new-item i, #dashboards-view .new-field i, #dashboards-view .new-action i,
#dashboards-view .new-item i, .item-collection-view .new-field i, .item-collection-view .new-action i,
.item-collection-view .new-item i,
.entity-view .new-field i,
.entity-view .new-action i,
.entity-view .new-item i, #workflows-view .new-field i, #workflows-view .new-action i,
#workflows-view .new-item i, #menus-view .new-field i, #menus-view .new-action i,
#menus-view .new-item i {
  margin-right: 0.4em;
}
#forms-view .option-list, #forms-view .doc-type-list, #screens-view .option-list, #screens-view .doc-type-list, #dashboards-view .option-list, #dashboards-view .doc-type-list, .item-collection-view .option-list, .item-collection-view .doc-type-list,
.entity-view .option-list,
.entity-view .doc-type-list, #workflows-view .option-list, #workflows-view .doc-type-list, #menus-view .option-list, #menus-view .doc-type-list {
  list-style-type: none;
  padding: 0;
  margin-bottom: 0;
}
#forms-view .option-list input, #forms-view .doc-type-list input, #screens-view .option-list input, #screens-view .doc-type-list input, #dashboards-view .option-list input, #dashboards-view .doc-type-list input, .item-collection-view .option-list input, .item-collection-view .doc-type-list input,
.entity-view .option-list input,
.entity-view .doc-type-list input, #workflows-view .option-list input, #workflows-view .doc-type-list input, #menus-view .option-list input, #menus-view .doc-type-list input {
  margin-right: 8px;
}
#forms-view .option-list li, #forms-view .doc-type-list li, #screens-view .option-list li, #screens-view .doc-type-list li, #dashboards-view .option-list li, #dashboards-view .doc-type-list li, .item-collection-view .option-list li, .item-collection-view .doc-type-list li,
.entity-view .option-list li,
.entity-view .doc-type-list li, #workflows-view .option-list li, #workflows-view .doc-type-list li, #menus-view .option-list li, #menus-view .doc-type-list li {
  display: block;
}
#forms-view .option-list:last-child, #forms-view .doc-type-list:last-child, #screens-view .option-list:last-child, #screens-view .doc-type-list:last-child, #dashboards-view .option-list:last-child, #dashboards-view .doc-type-list:last-child, .item-collection-view .option-list:last-child, .item-collection-view .doc-type-list:last-child,
.entity-view .option-list:last-child,
.entity-view .doc-type-list:last-child, #workflows-view .option-list:last-child, #workflows-view .doc-type-list:last-child, #menus-view .option-list:last-child, #menus-view .doc-type-list:last-child {
  margin-bottom: 10px;
}
#forms-view .option-list li, #forms-view .option-list div.option-wrapper, #screens-view .option-list li, #screens-view .option-list div.option-wrapper, #dashboards-view .option-list li, #dashboards-view .option-list div.option-wrapper, .item-collection-view .option-list li, .item-collection-view .option-list div.option-wrapper,
.entity-view .option-list li,
.entity-view .option-list div.option-wrapper, #workflows-view .option-list li, #workflows-view .option-list div.option-wrapper, #menus-view .option-list li, #menus-view .option-list div.option-wrapper {
  margin-bottom: 8px;
}
#forms-view .option-list li .fa-remove, #forms-view .option-list div.option-wrapper .fa-remove, #screens-view .option-list li .fa-remove, #screens-view .option-list div.option-wrapper .fa-remove, #dashboards-view .option-list li .fa-remove, #dashboards-view .option-list div.option-wrapper .fa-remove, .item-collection-view .option-list li .fa-remove, .item-collection-view .option-list div.option-wrapper .fa-remove,
.entity-view .option-list li .fa-remove,
.entity-view .option-list div.option-wrapper .fa-remove, #workflows-view .option-list li .fa-remove, #workflows-view .option-list div.option-wrapper .fa-remove, #menus-view .option-list li .fa-remove, #menus-view .option-list div.option-wrapper .fa-remove {
  cursor: pointer;
}
#forms-view .option-list li:last-child, #forms-view .option-list div.option-wrapper:last-child, #screens-view .option-list li:last-child, #screens-view .option-list div.option-wrapper:last-child, #dashboards-view .option-list li:last-child, #dashboards-view .option-list div.option-wrapper:last-child, .item-collection-view .option-list li:last-child, .item-collection-view .option-list div.option-wrapper:last-child,
.entity-view .option-list li:last-child,
.entity-view .option-list div.option-wrapper:last-child, #workflows-view .option-list li:last-child, #workflows-view .option-list div.option-wrapper:last-child, #menus-view .option-list li:last-child, #menus-view .option-list div.option-wrapper:last-child {
  margin-bottom: 0;
}
#forms-view .option-list input[type=text], #screens-view .option-list input[type=text], #dashboards-view .option-list input[type=text], .item-collection-view .option-list input[type=text],
.entity-view .option-list input[type=text], #workflows-view .option-list input[type=text], #menus-view .option-list input[type=text] {
  width: 9em;
}
#forms-view .archive-message, #screens-view .archive-message, #dashboards-view .archive-message, .item-collection-view .archive-message,
.entity-view .archive-message, #workflows-view .archive-message, #menus-view .archive-message {
  font-size: 12px;
  color: #a94442;
  text-align: center;
  line-height: 2em;
}
#forms-view .save-buttons:not(.workflow-save-btns) button, #screens-view .save-buttons:not(.workflow-save-btns) button, #dashboards-view .save-buttons:not(.workflow-save-btns) button, .item-collection-view .save-buttons:not(.workflow-save-btns) button,
.entity-view .save-buttons:not(.workflow-save-btns) button, #workflows-view .save-buttons:not(.workflow-save-btns) button, #menus-view .save-buttons:not(.workflow-save-btns) button {
  margin-right: 0;
  width: 50%;
  text-align: center;
  padding-left: 0;
  padding-right: 0;
}
#forms-view .save-buttons:not(.workflow-save-btns) button:first-child, #screens-view .save-buttons:not(.workflow-save-btns) button:first-child, #dashboards-view .save-buttons:not(.workflow-save-btns) button:first-child, .item-collection-view .save-buttons:not(.workflow-save-btns) button:first-child,
.entity-view .save-buttons:not(.workflow-save-btns) button:first-child, #workflows-view .save-buttons:not(.workflow-save-btns) button:first-child, #menus-view .save-buttons:not(.workflow-save-btns) button:first-child {
  margin-right: 10px;
  width: calc(50% - 10px);
}
#forms-view .save-buttons:not(.workflow-save-btns) button[type=submit], #screens-view .save-buttons:not(.workflow-save-btns) button[type=submit], #dashboards-view .save-buttons:not(.workflow-save-btns) button[type=submit], .item-collection-view .save-buttons:not(.workflow-save-btns) button[type=submit],
.entity-view .save-buttons:not(.workflow-save-btns) button[type=submit], #workflows-view .save-buttons:not(.workflow-save-btns) button[type=submit], #menus-view .save-buttons:not(.workflow-save-btns) button[type=submit] {
  margin-top: 10px;
  width: 100%;
}
@media (max-width: 900px) {
  #forms-view .save-buttons:not(.workflow-save-btns) button, #screens-view .save-buttons:not(.workflow-save-btns) button, #dashboards-view .save-buttons:not(.workflow-save-btns) button, .item-collection-view .save-buttons:not(.workflow-save-btns) button,
  .entity-view .save-buttons:not(.workflow-save-btns) button, #workflows-view .save-buttons:not(.workflow-save-btns) button, #menus-view .save-buttons:not(.workflow-save-btns) button {
    width: 100%;
    margin: 2.5px;
  }
  #forms-view .save-buttons:not(.workflow-save-btns) button:first-child, #screens-view .save-buttons:not(.workflow-save-btns) button:first-child, #dashboards-view .save-buttons:not(.workflow-save-btns) button:first-child, .item-collection-view .save-buttons:not(.workflow-save-btns) button:first-child,
  .entity-view .save-buttons:not(.workflow-save-btns) button:first-child, #workflows-view .save-buttons:not(.workflow-save-btns) button:first-child, #menus-view .save-buttons:not(.workflow-save-btns) button:first-child {
    width: 100%;
  }
  #forms-view .save-buttons:not(.workflow-save-btns) button[type=submit], #screens-view .save-buttons:not(.workflow-save-btns) button[type=submit], #dashboards-view .save-buttons:not(.workflow-save-btns) button[type=submit], .item-collection-view .save-buttons:not(.workflow-save-btns) button[type=submit],
  .entity-view .save-buttons:not(.workflow-save-btns) button[type=submit], #workflows-view .save-buttons:not(.workflow-save-btns) button[type=submit], #menus-view .save-buttons:not(.workflow-save-btns) button[type=submit] {
    margin-top: 2.5px;
  }
}

.item-collection-view .collection-list, .item-collection-view .dashboard-list, .item-collection-view .menu-list, #dashboards-view .collection-list, #dashboards-view .dashboard-list, #dashboards-view .menu-list, #menus-view .collection-list, #menus-view .dashboard-list, #menus-view .menu-list {
  width: 28.5714285714%;
  float: left;
  margin-right: 7.1428571429%;
}
.item-collection-view .item-list, #dashboards-view .item-list, #menus-view .item-list {
  width: 28.5714285714%;
  float: left;
  margin-right: 7.1428571429%;
  margin-bottom: 600px;
}
.item-collection-view .item-list .collection-properties label, .item-collection-view .item-list .menu-properties label, #dashboards-view .item-list .collection-properties label, #dashboards-view .item-list .menu-properties label, #menus-view .item-list .collection-properties label, #menus-view .item-list .menu-properties label {
  margin-right: 0.6em;
}
.item-collection-view .item-list.field-selected .list-group-item .item-info, #dashboards-view .item-list.field-selected .list-group-item .item-info, #menus-view .item-list.field-selected .list-group-item .item-info {
  display: none;
}
.item-collection-view .item-list > .list-group, #dashboards-view .item-list > .list-group, #menus-view .item-list > .list-group {
  list-style-type: none;
}
.item-collection-view .item-list .list-group-item:first-of-type, #dashboards-view .item-list .list-group-item:first-of-type, #menus-view .item-list .list-group-item:first-of-type {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.item-collection-view .item-list > .list-group-item, .item-collection-view .item-list > .submenu-list-group-item > .list-group-item,
.item-collection-view .item-list > .list-group > .list-group-item,
.item-collection-view .item-list > .list-group > .submenu-list-group-item > .list-group-item, #dashboards-view .item-list > .list-group-item, #dashboards-view .item-list > .submenu-list-group-item > .list-group-item,
#dashboards-view .item-list > .list-group > .list-group-item,
#dashboards-view .item-list > .list-group > .submenu-list-group-item > .list-group-item, #menus-view .item-list > .list-group-item, #menus-view .item-list > .submenu-list-group-item > .list-group-item,
#menus-view .item-list > .list-group > .list-group-item,
#menus-view .item-list > .list-group > .submenu-list-group-item > .list-group-item {
  cursor: pointer;
  padding: 0;
}
.item-collection-view .item-list .has-validation-errors, #dashboards-view .item-list .has-validation-errors, #menus-view .item-list .has-validation-errors {
  border: 1px solid #a94442;
  z-index: 1;
}
.item-collection-view .item-list .new-item, #dashboards-view .item-list .new-item, #menus-view .item-list .new-item {
  line-height: 60px;
}
.item-collection-view .item-list .rendered-item, #dashboards-view .item-list .rendered-item, #menus-view .item-list .rendered-item {
  padding: 10px 15px;
  min-height: 60px;
  border-radius: 2px;
}
.item-collection-view .item-list .rendered-item:hover, #dashboards-view .item-list .rendered-item:hover, #menus-view .item-list .rendered-item:hover {
  background-color: #f8f8f8;
}
.item-collection-view .item-list .rendered-item.active, #dashboards-view .item-list .rendered-item.active, #menus-view .item-list .rendered-item.active {
  background-color: #428bca;
  color: #fff;
}
.item-collection-view .item-list .subitem, #dashboards-view .item-list .subitem, #menus-view .item-list .subitem {
  margin-left: 10px;
}
.item-collection-view .item-list .item-label, #dashboards-view .item-list .item-label, #menus-view .item-list .item-label {
  margin-right: 10px;
}
.item-collection-view .item-list .item-description, #dashboards-view .item-list .item-description, #menus-view .item-list .item-description {
  margin-right: 10px;
  font-size: 87.5%;
}
.item-collection-view .item-list .fa-chevron-right, #dashboards-view .item-list .fa-chevron-right, #menus-view .item-list .fa-chevron-right {
  position: absolute;
  margin-top: -7px;
  top: 50%;
  right: 10px;
}
.item-collection-view .item-properties .data-item label, #dashboards-view .item-properties .data-item label, #menus-view .item-properties .data-item label {
  display: block;
  font-weight: normal;
}
.item-collection-view .item-properties .data-item label .fa, #dashboards-view .item-properties .data-item label .fa, #menus-view .item-properties .data-item label .fa {
  float: right;
  margin-top: 4px;
  cursor: pointer;
}
.item-collection-view .item-properties .data-item label .fa:hover, #dashboards-view .item-properties .data-item label .fa:hover, #menus-view .item-properties .data-item label .fa:hover {
  color: #666;
}
.item-collection-view .item-properties .data-item.unused, #dashboards-view .item-properties .data-item.unused, #menus-view .item-properties .data-item.unused {
  color: #aaa;
}
.item-collection-view .item-properties .data-reference-input select, #dashboards-view .item-properties .data-reference-input select, #menus-view .item-properties .data-reference-input select {
  margin-bottom: 15px;
}
.item-collection-view .item-properties .form-group code input[type=text], #dashboards-view .item-properties .form-group code input[type=text], #menus-view .item-properties .form-group code input[type=text] {
  display: inline-block;
}
.item-collection-view .item-properties .panel-heading, #dashboards-view .item-properties .panel-heading, #menus-view .item-properties .panel-heading {
  font-weight: bold;
}
.item-collection-view .item-properties textarea, #dashboards-view .item-properties textarea, #menus-view .item-properties textarea {
  height: 5em;
  max-width: 100%;
}
.item-collection-view .item-edits, #dashboards-view .item-edits, #menus-view .item-edits {
  width: 28.5714285714%;
  float: right;
  margin-right: 0;
}

#menus-view .item-list .rendered-item {
  min-height: auto;
}
#menus-view .item-list .new-item {
  line-height: 40px;
}

#dashboards-view .item-list .drag-and-drop-item-wrapper, #menus-view .item-list .drag-and-drop-item-wrapper {
  position: relative;
}
#dashboards-view .item-list div.drag-handle, #menus-view .item-list div.drag-handle {
  display: table;
  text-align: center;
  height: 100%;
  width: 15px;
  background: none;
}
#dashboards-view .item-list div.drag-handle .fa-ellipsis-v, #menus-view .item-list div.drag-handle .fa-ellipsis-v {
  display: table-cell;
  vertical-align: middle;
  font-size: 20px;
  color: #888;
}
#dashboards-view .item-list .submenu-list-group-item, #menus-view .item-list .submenu-list-group-item {
  margin-bottom: 6px;
}
#dashboards-view .item-list .submenu-list-group-item .list-group-item:first-child, #menus-view .item-list .submenu-list-group-item .list-group-item:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
#dashboards-view .item-list .submenu-list-group-item .submenu-header, #menus-view .item-list .submenu-list-group-item .submenu-header {
  background-color: #eee;
  margin: 0px;
  padding: 0px;
  padding-left: 2%;
  padding-top: 6%;
  padding-bottom: 6%;
}
#dashboards-view .item-list .submenu-list-group-item .new-item, #menus-view .item-list .submenu-list-group-item .new-item {
  line-height: inherit;
}
#dashboards-view .item-list .submenu-list-group-item .drag-handle, #menus-view .item-list .submenu-list-group-item .drag-handle {
  margin-right: 12%;
  float: left;
}
#dashboards-view .item-list .drag-and-drop-item, #dashboards-view .item-list .add-new-dnd-item, #menus-view .item-list .drag-and-drop-item, #menus-view .item-list .add-new-dnd-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-left: 5px;
  margin-bottom: 6px;
  min-height: 60px;
  border-radius: 4px;
  background-color: #eee;
}
#dashboards-view .item-list .drag-and-drop-item.submenu-item, #dashboards-view .item-list .add-new-dnd-item.submenu-item, #menus-view .item-list .drag-and-drop-item.submenu-item, #menus-view .item-list .add-new-dnd-item.submenu-item {
  margin-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
#dashboards-view .item-list .drag-and-drop-item .drag-and-drop-content-el, #dashboards-view .item-list .add-new-dnd-item .drag-and-drop-content-el, #menus-view .item-list .drag-and-drop-item .drag-and-drop-content-el, #menus-view .item-list .add-new-dnd-item .drag-and-drop-content-el {
  width: 95%;
  margin-left: 5%;
}
#dashboards-view .item-list .drag-and-drop-item:hover, #dashboards-view .item-list .add-new-dnd-item:hover, #menus-view .item-list .drag-and-drop-item:hover, #menus-view .item-list .add-new-dnd-item:hover {
  background-color: #f8f8f8;
}
#dashboards-view .item-list .drag-and-drop-item:hover.active, #dashboards-view .item-list .add-new-dnd-item:hover.active, #menus-view .item-list .drag-and-drop-item:hover.active, #menus-view .item-list .add-new-dnd-item:hover.active {
  background-color: #428bca;
}
#dashboards-view .item-list .drag-and-drop-item.active, #dashboards-view .item-list .add-new-dnd-item.active, #menus-view .item-list .drag-and-drop-item.active, #menus-view .item-list .add-new-dnd-item.active {
  background-color: #428bca;
  color: #fff;
}
#dashboards-view .item-list .drag-and-drop-item.active .fa-ellipsis-v, #dashboards-view .item-list .add-new-dnd-item.active .fa-ellipsis-v, #menus-view .item-list .drag-and-drop-item.active .fa-ellipsis-v, #menus-view .item-list .add-new-dnd-item.active .fa-ellipsis-v {
  color: #fff;
}
#dashboards-view .item-list .drag-and-drop-item .rendered-item:hover, #dashboards-view .item-list .add-new-dnd-item .rendered-item:hover, #menus-view .item-list .drag-and-drop-item .rendered-item:hover, #menus-view .item-list .add-new-dnd-item .rendered-item:hover {
  background-color: inherit;
}
#dashboards-view .item-list .drag-and-drop-item.has-validation-errors, #dashboards-view .item-list .add-new-dnd-item.has-validation-errors, #menus-view .item-list .drag-and-drop-item.has-validation-errors, #menus-view .item-list .add-new-dnd-item.has-validation-errors {
  border: 1px solid #a94442;
}
#dashboards-view .item-list .add-new-dnd-item, #menus-view .item-list .add-new-dnd-item {
  justify-content: center;
  font-size: 1.1em;
  cursor: pointer;
}
#dashboards-view .item-list .add-new-dnd-item span, #menus-view .item-list .add-new-dnd-item span {
  margin-left: 2%;
}

.dashboards-preview-example-wrapper {
  padding: 7%;
  padding-bottom: 1%;
}
.dashboards-preview-example-wrapper.dark-mode {
  color: #fff;
  background-color: #000;
}
.dashboards-preview-example-wrapper .dashboards-preview-example {
  border-radius: 8px;
  overflow: hidden;
  color: inherit;
  background-color: inherit;
}
.dashboards-preview-example-wrapper .dashboards-preview-example .panel-heading {
  border-top: 0px;
  color: inherit;
  background-color: inherit;
}
.dashboards-preview-example-wrapper .dashboards-preview-example .view-more {
  padding: 5%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.dashboards-preview-example-wrapper .dashboards-preview-example .view-more i.fa-angle-right {
  margin-top: 2%;
}

.entity-view .entity-list {
  width: 28.5714285714%;
  float: left;
  margin-right: 7.1428571429%;
}
.entity-view .entity {
  width: 28.5714285714%;
  float: left;
  margin-right: 7.1428571429%;
}
.entity-view .entity .rendered-item {
  padding: 10px 15px;
  min-height: 60px;
  border-radius: 2px;
}
.entity-view .entity .rendered-item:hover {
  background-color: #f8f8f8;
}
.entity-view .entity .rendered-item.active {
  background-color: #428bca;
  color: #fff;
}

#actions-view .rendered-action, #workflows-view .rendered-action {
  margin: 10px auto;
  padding: 10px 15px;
  width: 150px;
  min-height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: #007AFF;
  color: #fff;
}
#actions-view .dark-render-wrapper, #workflows-view .dark-render-wrapper {
  background-color: #000;
  padding: 10px 0;
}
#actions-view .dark-render-wrapper .rendered-action, #workflows-view .dark-render-wrapper .rendered-action {
  background-color: #0A84FF;
}
#actions-view .rendered-action-sm, #workflows-view .rendered-action-sm {
  width: 120px;
  line-height: 20px;
  font-size: 85%;
}
#actions-view .action-icon, #workflows-view .action-icon {
  width: 24px;
  height: 24px;
  margin-right: 0.4em;
}
#actions-view .rendered-action-sm .action-icon, #workflows-view .rendered-action-sm .action-icon {
  width: 18px;
  height: 18px;
}
#actions-view .light-mode-form-group, #workflows-view .light-mode-form-group {
  margin-bottom: 10px;
}

#actions-view .action-detail {
  width: 64.2857142857%;
  float: right;
  margin-right: 0;
}
#actions-view .action-attrs {
  width: 47.3684210526%;
  float: left;
  margin-right: 5.2631578947%;
}
#actions-view .action-attrs label {
  margin-right: 0.6em;
}
#actions-view .action-attrs p {
  margin-bottom: 15px;
}
#actions-view .action-properties {
  margin-top: 10px;
  width: 47.3684210526%;
  float: right;
  margin-right: 0;
}
#actions-view .action-properties .data-item label {
  display: block;
  font-weight: normal;
}
#actions-view .action-properties .data-item label .fa {
  float: right;
  margin-top: 4px;
  cursor: pointer;
}
#actions-view .action-properties .data-item label .fa:hover {
  color: #666;
}
#actions-view .action-properties .data-item.unused {
  color: #aaa;
}
#actions-view .action-properties .data-reference-input select {
  margin-bottom: 15px;
}
#actions-view .action-properties .panel-heading {
  font-weight: bold;
}
#actions-view .action-properties textarea {
  height: 5em;
  max-width: 100%;
}
#actions-view .action-properties .checkbox.disabled label {
  color: #aaa;
}

#workflows-view {
  height: 100%;
  padding: 20px;
}
#workflows-view #workflow-list {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}
#workflows-view #workflow-editor {
  height: 100%;
  display: flex;
  flex-direction: column;
  flex: 1;
}
#workflows-view #workflow-editor > .panel:first-child {
  margin-bottom: 0;
  border-bottom: 0;
  box-shadow: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
#workflows-view #workflow-editor .workflow-title {
  width: 64.2857142857%;
  float: left;
  margin-right: 7.1428571429%;
  margin-bottom: 0;
}
@media (max-width: 900px) {
  #workflows-view #workflow-editor .workflow-title {
    width: 47.3684210526%;
    float: left;
    margin-right: 5.2631578947%;
  }
}
#workflows-view #workflow-editor .workflow-title .form-group {
  display: inline;
}
#workflows-view #workflow-editor .workflow-title input {
  max-width: 200px;
  display: inline-block;
  margin-right: 20px;
}
#workflows-view #workflow-editor .workflow-title label {
  margin-right: 10px;
}
#workflows-view #workflow-editor .workflow-title .workflow-code {
  -webkit-user-select: all;
  -moz-user-select: all;
  -ms-user-select: all;
  user-select: all;
}
#workflows-view #workflow-editor .workflow-title .help-block {
  display: inline;
}
#workflows-view #workflow-editor .save-buttons {
  width: 28.5714285714%;
  float: right;
  margin-right: 0;
}
@media (max-width: 900px) {
  #workflows-view #workflow-editor .save-buttons {
    width: 47.3684210526%;
    float: right;
    margin-right: 0;
  }
}
#workflows-view #workflow-editor .save-buttons button {
  width: auto;
  margin-right: 10px;
  margin-top: 0;
}
@media (max-width: 1200px) {
  #workflows-view #workflow-editor .save-buttons button {
    margin-right: 0;
    width: 50%;
    text-align: center;
    padding-left: 0;
    padding-right: 0;
  }
  #workflows-view #workflow-editor .save-buttons button:first-child {
    margin-right: 10px;
    width: calc(50% - 10px);
  }
  #workflows-view #workflow-editor .save-buttons button[type=submit] {
    margin-top: 10px;
    width: 100%;
  }
}
#workflows-view #workflow-editor .save-buttons .archive-message {
  text-align: right;
  margin: 0 10px 0 0;
}
#workflows-view #workflow-editor #workflow-graph-container {
  display: flex;
  flex-direction: row;
  flex: 1;
  margin-bottom: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  overflow-y: scroll;
}
#workflows-view #workflow-editor #graph {
  position: relative;
  flex: 1;
  display: flex;
  overflow: hidden;
}
#workflows-view #workflow-editor #graph > .controls {
  position: absolute;
}
#workflows-view #workflow-editor #graph > .controls a {
  margin: 10px 0 0 10px;
}
#workflows-view #workflow-editor #graph svg {
  width: 100%;
  height: 100%;
}
#workflows-view #workflow-editor .panel-toggle {
  position: relative;
  width: 20px;
  height: 100%;
}
#workflows-view #workflow-editor .panel-toggle i.fa {
  position: absolute;
  font-size: 20px;
  cursor: pointer;
  width: 100%;
  height: 75px;
  top: calc(50% - 37.5px);
  left: 0;
  background-color: #eee;
  border-radius: 5px 0 0 5px;
  box-shadow: -1px 1px 3px 0 #999;
}
#workflows-view #workflow-editor .panel-toggle i.fa:before {
  display: block;
  text-align: center;
  margin-top: 28px;
}
#workflows-view #status-editor {
  flex: 1;
}
#workflows-view #status-editor > .panel {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-right: 0;
  border-bottom: 0;
  border-top: 0;
}
#workflows-view #status-editor > .panel .panel-heading {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
#workflows-view #status-editor > .panel .panel-heading.flag_WORKFLOW_STATUS_CODE_ERROR {
  padding: 5px 10px 5px 15px;
}
#workflows-view #status-editor > * {
  width: 100%;
  height: 100%;
  overflow: auto;
}
#workflows-view #status-editor.load-status-editor .panel-heading {
  background-color: #d9edf7;
}
#workflows-view #status-editor.load-status-editor .action-label {
  background-color: #d9edf7;
}
#workflows-view #status-editor.stop-status-editor .panel-heading {
  background-color: #fcf8e3;
}
#workflows-view #status-editor.stop-status-editor .action-label {
  background-color: #fcf8e3;
}
#workflows-view #status-editor .status-title {
  font-size: 16px;
}
#workflows-view #status-editor .status-title .fa-map-marker, #workflows-view #status-editor .status-title .fa-truck {
  margin-right: 0.4em;
}
#workflows-view #status-editor .status-title .fa-trash-o, #workflows-view #status-editor .status-title .fa-times {
  cursor: pointer;
  line-height: 34px;
}
#workflows-view #status-editor .status-title .fa-times {
  font-size: 22px;
}
#workflows-view #status-editor .status-title .fa-times.load {
  -webkit-text-stroke: 3px #d9edf7;
}
#workflows-view #status-editor .status-title .fa-times.stop {
  -webkit-text-stroke: 3px #fcf8e3;
}
#workflows-view #status-editor .status-title .status-label {
  font-weight: bold;
  margin-right: 0.4em;
}
#workflows-view #status-editor .status-title .status-label input {
  font-weight: normal;
}
#workflows-view #status-editor .status-title .status-code code {
  font-size: 85%;
  line-height: 1;
}
#workflows-view #status-editor .status-title .flag_WORKFLOW_STATUS_CODE_ERROR.status-code .form-group, #workflows-view #status-editor .status-title .flag_WORKFLOW_STATUS_CODE_ERROR.remove-action {
  padding: 5px;
}
#workflows-view #status-editor .action-editor {
  display: flex;
  flex-direction: row;
}
#workflows-view #status-editor .action-editor .drag-handle {
  margin: 6px 5px 4px 0;
  height: 30px;
  width: 10px;
}
#workflows-view #status-editor .rendered-action {
  margin: 0;
}
#workflows-view #status-editor .offline-settings {
  flex: 1;
  margin-left: 20px;
}
#workflows-view #status-editor .offline-prompt {
  line-height: 40px;
  margin-bottom: 10px;
}
#workflows-view #status-editor .offline-prompt .remove-action:hover {
  color: #666;
  cursor: pointer;
}
#workflows-view #status-editor .new-action {
  margin-top: 20px;
}
#workflows-view #status-editor .new-action .fa {
  margin-right: 0.4em;
}
#workflows-view #status-editor .new-action .downshift-container {
  width: 350px;
}
#workflows-view #status-editor .action-label {
  font-weight: bold;
}
#workflows-view #status-editor .action-effects {
  padding-left: 2em;
}
#workflows-view #status-editor .action-effects > * {
  margin-bottom: 10px;
}
#workflows-view #status-editor .action-effects > .form-group {
  width: 100%;
}
#workflows-view #status-editor input[type=checkbox] {
  margin-right: 0.4em;
}
#workflows-view #graph svg .node {
  white-space: nowrap;
}
#workflows-view #graph svg .node rect,
#workflows-view #graph svg .node circle,
#workflows-view #graph svg .node ellipse {
  stroke: #333;
  fill: #fff;
  stroke-width: 1px;
}
#workflows-view #graph svg .cluster rect {
  stroke: #333;
  fill: #000;
  fill-opacity: 0.1;
  stroke-width: 1px;
}
#workflows-view #graph svg .edgePath path.path {
  stroke: #333;
  stroke-width: 1.5px;
  fill: none;
}
#workflows-view #graph svg g.label {
  color: #333;
  font-size: 100%;
  font-weight: normal;
}
#workflows-view #graph svg g.edgeLabel text {
  background-color: #fff;
  border: 1px solid red;
}
#workflows-view #graph svg g.cluster > rect {
  fill: #fff;
}
#workflows-view #graph svg g.stop-node:hover, #workflows-view #graph svg g.load-node:hover {
  cursor: pointer;
}
#workflows-view #graph svg g.load-node > rect {
  fill: #d9edf7;
}
#workflows-view #graph svg g.load-node.has-error > rect {
  fill: #ffb1b0;
  stroke: #a94442;
}
#workflows-view #graph svg g.stop-node > rect {
  fill: #fcf8e3;
}
#workflows-view #graph svg g.stop-node.has-error > rect {
  fill: #ffb1b0;
  stroke: #a94442;
}
#workflows-view #graph svg .load-label {
  border-radius: 3px;
  background-color: #d9edf7;
}
#workflows-view #graph svg .has-error .load-label {
  background-color: #ffb1b0;
}
#workflows-view #graph svg .stop-label {
  border-radius: 3px;
  background-color: #fcf8e3;
}
#workflows-view #graph svg .has-error .stop-label {
  background-color: #ffb1b0;
}

#screens-view .screen-list {
  width: 28.5714285714%;
  float: left;
  margin-right: 7.1428571429%;
}
#screens-view .action-list {
  width: 28.5714285714%;
  float: left;
  margin-right: 7.1428571429%;
  margin-bottom: 600px;
}
#screens-view .action-list .screen-properties label {
  margin-right: 0.6em;
}
#screens-view .action-list.field-selected .list-group-item .action-info {
  display: none;
}
#screens-view .action-list .list-group-item:nth-child(2) {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
#screens-view .action-list .list-group-item {
  cursor: pointer;
  padding: 0;
}
#screens-view .action-list .list-group-item.has-validation-errors {
  border: 1px solid #a94442;
  z-index: 1;
}
#screens-view .action-list .new-action {
  line-height: 60px;
}
#screens-view .action-list .rendered-action {
  padding: 10px 15px;
  min-height: 60px;
  border-radius: 2px;
}
#screens-view .action-list .rendered-action:hover {
  background-color: #f8f8f8;
}
#screens-view .action-list .rendered-action.active {
  background-color: #428bca;
  color: #fff;
}
#screens-view .action-list .static-text {
  background-color: #eee;
  color: #666;
}
#screens-view .action-list .item-label {
  margin-right: 10px;
}
#screens-view .action-list .item-description {
  margin-right: 10px;
  font-size: 87.5%;
}
#screens-view .action-list .variable-label {
  white-space: normal;
  word-wrap: break-word;
  margin-right: 1px;
}
#screens-view .action-list .fa-chevron-right {
  position: absolute;
  margin-top: -7px;
  top: 50%;
  right: 10px;
}
#screens-view .action-properties .data-item label {
  display: block;
  font-weight: normal;
}
#screens-view .action-properties .data-item label .fa {
  float: right;
  margin-top: 4px;
  cursor: pointer;
}
#screens-view .action-properties .data-item label .fa:hover {
  color: #666;
}
#screens-view .action-properties .data-item.unused {
  color: #aaa;
}
#screens-view .action-properties .data-reference-input select {
  margin-bottom: 15px;
}
#screens-view .action-properties textarea {
  height: 5em;
  max-width: 100%;
}
#screens-view .action-properties .data-item-option-list {
  margin-bottom: 0;
  padding-left: 0;
}
#screens-view .action-properties .data-item-option-list li {
  margin: 0;
}
#screens-view .action-properties .data-item-option-list .checkbox label, #screens-view .action-properties .data-item-option-list .radio label {
  font-size: 85%;
}
#screens-view .action-properties .data-item-option-list input[type=radio], #screens-view .action-properties .data-item-option-list input[type=checkbox] {
  margin-left: -18px;
  margin-top: 0;
}
#screens-view .action-edits {
  width: 28.5714285714%;
  float: right;
  margin-right: 0;
}
#screens-view .prefill-summary {
  width: 28.5714285714%;
  float: right;
  margin-right: 0;
  text-align: left;
  margin-top: 15px;
}
#screens-view .prefill-summary .variable-label {
  white-space: normal;
  word-break: break-word;
}

#forms-view .form-list {
  width: 28.5714285714%;
  float: left;
  margin-right: 7.1428571429%;
}
#forms-view .code-input {
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
}
#forms-view .field-properties .form-inline {
  margin-bottom: 15px;
}
#forms-view .field-properties .form-inline.includes-warning label {
  margin-bottom: 0;
}
#forms-view .field-properties .form-inline.includes-warning .help-block {
  margin-bottom: 5px;
}
#forms-view .field-properties .doc-type-list li {
  margin-bottom: 0;
}
#forms-view .field-properties .doc-type-list li .fa-camera {
  float: right;
  margin-top: 5px;
  color: #888;
}
#forms-view .field-properties .doc-type-list .checkbox label {
  font-size: 85%;
}
#forms-view .field-properties .checkbox {
  margin-top: 0;
  margin-bottom: 0;
}
#forms-view .field-info {
  border-radius: 4px;
  padding: 10px 15px;
  border: 1px solid #ddd;
}
#forms-view .field-info > * {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
#forms-view .field-info label {
  font-size: 14px;
  margin-right: 0.6em;
}
#forms-view .indicators {
  color: #333;
  position: absolute;
  left: -20px;
  top: 8px;
}
#forms-view .field-list {
  width: 28.5714285714%;
  float: left;
  margin-right: 7.1428571429%;
  margin-bottom: 600px;
}
#forms-view .field-list.field-selected .list-group-item .field-info {
  display: none;
}
#forms-view .field-list .form-properties label {
  margin-right: 0.6em;
}
#forms-view .field-list .list-group-item {
  margin-bottom: 10px;
  border-radius: 4px;
  cursor: pointer;
  padding: 0;
}
#forms-view .field-list .list-group-item.has-validation-errors {
  border-color: #a94442;
}
#forms-view .field-list .field-overlay {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
#forms-view .field-list .rendered-field {
  background-color: #eee;
  padding: 10px 15px;
  min-height: 72px;
  border-radius: 4px;
  position: relative;
}
#forms-view .field-list .rendered-field:hover {
  background-color: #f8f8f8;
}
#forms-view .field-list .rendered-field div.drag-handle {
  position: absolute;
  left: 2px;
  top: 0;
  height: 100%;
  width: 15px;
  background: none;
  display: table;
  text-align: center;
}
#forms-view .field-list .rendered-field .fa-ellipsis-v {
  display: table-cell;
  vertical-align: middle;
  font-size: 20px;
  color: #888;
}
#forms-view .field-list .rendered-field.active {
  background-color: #428bca;
  color: #fff;
}
#forms-view .field-list .rendered-field.active .fa-ellipsis-v {
  color: #fff;
}
#forms-view .field-list .rendered-field > div:not(.drag-handle) {
  width: 95%;
  margin-left: 5%;
}
#forms-view .field-list .rendered-field .item-description {
  font-size: 87.5%;
  margin-bottom: 4px;
}
#forms-view .field-list .rendered-field input[type=text], #forms-view .field-list .rendered-field textarea {
  width: 100%;
}
#forms-view .field-list .rendered-field .form-control {
  height: 30px;
  padding: 4px 6px;
  font-size: 11px;
  background-color: #fff;
  cursor: inherit;
}
#forms-view .field-list .rendered-field label {
  font-size: 11px;
  cursor: default;
  font-weight: normal;
}
#forms-view .field-list .rendered-field textarea.form-control, #forms-view .field-list .rendered-field select.form-control[multiple] {
  height: auto;
}
#forms-view .field-list .rendered-field .radio, #forms-view .field-list .rendered-field .checkbox, #forms-view .field-list .rendered-field .radio-inline, #forms-view .field-list .rendered-field .checkbox-inline {
  line-height: 22px;
  margin-top: 0;
  margin-bottom: 0;
}
#forms-view .field-list .rendered-field input[type=radio], #forms-view .field-list .rendered-field input[type=checkbox] {
  box-shadow: none;
  cursor: default;
}
#forms-view .field-list .rendered-field .fa-star-o {
  margin-right: 4px;
}
#forms-view .field-list .load-list .radio, #forms-view .field-list .load-number-load-list .radio {
  line-height: 16px;
  margin-top: 6px;
  margin-bottom: 6px;
}
#forms-view .field-list .load-list input[type=radio], #forms-view .field-list .load-number-load-list input[type=radio] {
  margin-top: 8px;
}
#forms-view .field-list .datetime input[type=text] {
  width: 45%;
  display: inline;
}
#forms-view .field-list .datetime input[type=text]:first-child {
  margin-right: 9%;
}
#forms-view .field-list .doc-type-pick-list .fa-warning, #forms-view .field-list .doc-type-multi-pick-list .fa-warning {
  margin-left: 0.6em;
  font-size: 14px;
}
#forms-view .field-list .doc-type-pick-list.active .fa-warning, #forms-view .field-list .doc-type-multi-pick-list.active .fa-warning {
  color: #fff;
  opacity: 0.5;
}
#forms-view .field-list .doc-type-pick-list .option-warning, #forms-view .field-list .doc-type-multi-pick-list .option-warning {
  opacity: 0.5;
}
#forms-view .field-edits {
  width: 28.5714285714%;
  float: right;
  margin-right: 0;
}

#messages-view .driver-search, #messages-view .driver-conversation-list {
  width: 28.5714285714%;
  float: left;
  margin-right: 7.1428571429%;
}
#messages-view .message-list {
  width: 64.2857142857%;
  float: right;
  margin-right: 0;
}
#messages-view .conversation {
  width: 64.2857142857%;
  float: right;
  margin-right: 0;
}
#messages-view .queued-messages-banner {
  cursor: pointer;
  text-align: center;
  font-size: 12px;
  padding: 10px;
}
#messages-view .message-excerpt, #messages-view .new-conversation-button {
  position: relative;
  cursor: pointer;
}
#messages-view .message-excerpt:hover, #messages-view .new-conversation-button:hover {
  background-color: #f8f8f8;
}
#messages-view .message-excerpt-unread-indicator {
  position: absolute;
  left: -1px;
  top: -1px;
  bottom: -1px;
  width: 4px;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  background-color: #ff6624;
}
#messages-view #driver-message-list .message-excerpt-unread-indicator {
  border-radius: 0;
}
#messages-view .driver-title {
  margin-bottom: 0.5em;
}
#messages-view .driver-title .driver-title-icon {
  margin-right: 0.5em;
  margin-top: -5px;
  display: inline-block;
  vertical-align: middle;
}
#messages-view .driver-title .driver-title-name {
  font-size: 20px;
}
#messages-view .contact-title {
  text-align: right;
  margin-bottom: 0.5em;
  font-size: 12px;
  color: #808080;
}
#messages-view .message-excerpt-sent-at, #messages-view .conversation-message-sent-at, #messages-view .message-excerpt-contact-name {
  font-size: 11px;
  margin-top: 3px;
  color: #808080;
}
#messages-view .message-excerpt-contact-name {
  float: right;
}
#messages-view .message-excerpt-text {
  clear: right;
}
#messages-view .small-message-excerpt.active, #messages-view .new-conversation-button.active {
  color: #fff;
  background-color: #337ab7;
  border-color: #337ab7;
}
#messages-view .small-message-excerpt.active .message-excerpt-sent-at, #messages-view .small-message-excerpt.active .message-excerpt-contact-name, #messages-view .new-conversation-button.active .message-excerpt-sent-at, #messages-view .new-conversation-button.active .message-excerpt-contact-name {
  color: #fff;
  opacity: 0.65;
}
#messages-view .driver-list-row {
  cursor: pointer;
  word-break: break-word;
}
#messages-view .driver-conversation-list .back-navigation {
  display: block;
  margin-bottom: 20px;
}
#messages-view .driver-conversation-list .back-navigation .fa {
  margin-right: 0.4em;
}
#messages-view .driver-conversation-list #driver-message-list {
  max-height: 572px;
  overflow: auto;
}
#messages-view .new-conversation-button .fa {
  margin-right: 0.4em;
}
#messages-view .conversation .panel-body {
  height: 400px;
  overflow-y: auto;
  padding: 15px 0;
}
#messages-view .conversation-message {
  padding: 5px 15px;
}
#messages-view .conversation-message.outbound {
  text-align: right;
  background-color: #f0f0f8;
}
#messages-view .conversation-message.pending {
  color: #808080;
}
#messages-view .conversation-message.flag_MESSAGING_AVATARS {
  display: flex;
  padding: 5px 15px;
}
#messages-view .conversation-message.flag_MESSAGING_AVATARS.outbound {
  justify-content: end;
  text-align: right;
  background-color: #f0f0f8;
}
#messages-view .conversation-message.flag_MESSAGING_AVATARS.pending {
  color: #808080;
}
#messages-view .conversation-message.flag_MESSAGING_AVATARS .message-with-avatar {
  display: inline-block;
  vertical-align: middle;
  margin-left: 1em;
}
#messages-view .conversation-message.flag_MESSAGING_AVATARS .driver-avatar {
  flex-shrink: 0;
  vertical-align: middle;
}
#messages-view .conversation-message.flag_MESSAGING_AVATARS .driver-avatar.hidden-avatar {
  visibility: hidden;
}
#messages-view .message-entry-contact {
  max-height: 40vh;
  overflow-y: scroll;
}
#messages-view .message-entry-contact li.none {
  font-style: italic;
}
#messages-view .message-entry-contact li.selected {
  background-color: #eee;
}
#messages-view .message-entry-contact li.selected a {
  font-weight: bold;
}
#messages-view .message-entry-contact a {
  cursor: pointer;
}
#messages-view .driver-avatar {
  display: inline-block;
  background-color: #ccc;
  border-radius: 50%;
  height: 32px;
  text-align: center;
  width: 32px;
}
#messages-view .driver-avatar .driver-initials {
  font-size: 12px;
  line-height: 1;
  position: relative;
  top: 6px;
  text-transform: uppercase;
}
#messages-view .driver-avatar.avatar-color-0 {
  background-color: #E8F0FE;
  color: #1A56DB;
}
#messages-view .driver-avatar.avatar-color-1 {
  background-color: #E0E7FF;
  color: #1E40AF;
}
#messages-view .driver-avatar.avatar-color-2 {
  background-color: #EEF2FF;
  color: #4338CA;
}
#messages-view .driver-avatar.avatar-color-3 {
  background-color: #F3E8FF;
  color: #6D28D9;
}
#messages-view .driver-avatar.avatar-color-4 {
  background-color: #CFFAFE;
  color: #0E7490;
}
#messages-view .driver-avatar.avatar-color-5 {
  background-color: #E0F2FE;
  color: #0369A1;
}
#messages-view .driver-avatar.avatar-color-6 {
  background-color: #CCFBF1;
  color: #0F766E;
}
#messages-view .driver-avatar.avatar-color-7 {
  background-color: #D1FAF5;
  color: #0F766E;
}
#messages-view .driver-avatar.avatar-color-8 {
  background-color: #DCFCE7;
  color: #166534;
}
#messages-view .driver-avatar.avatar-color-9 {
  background-color: #ECFCCB;
  color: #3F6212;
}
#messages-view .driver-avatar.avatar-color-10 {
  background-color: #F7FEE7;
  color: #4D7C0F;
}
#messages-view .driver-avatar.avatar-color-11 {
  background-color: #E6F4EA;
  color: #14532D;
}
#messages-view .driver-avatar.avatar-color-12 {
  background-color: #FEE2E2;
  color: #B91C1C;
}
#messages-view .driver-avatar.avatar-color-13 {
  background-color: #FFE4E6;
  color: #E11D48;
}
#messages-view .driver-avatar.avatar-color-14 {
  background-color: #FCE7F3;
  color: #BE185D;
}
#messages-view .driver-avatar.avatar-color-15 {
  background-color: #FFEDD5;
  color: #C2410C;
}
#messages-view .driver-avatar.avatar-color-16 {
  background-color: #FEF3C7;
  color: #B45309;
}
#messages-view .driver-avatar.avatar-color-17 {
  background-color: #F5E9DA;
  color: #7C2D12;
}
#messages-view .driver-avatar.avatar-color-18 {
  background-color: #F5E1F7;
  color: #86198F;
}
#messages-view .driver-avatar.avatar-color-19 {
  background-color: #E6EDF5;
  color: #1E3A8A;
}

#reporting-view iframe {
  border: 0;
  width: 100%;
}

/********************************************
Text color
********************************************/
/********************************************
Border color
********************************************/
/********************************************
Foreground color
********************************************/
/********************************************
Background color
********************************************/
/********************************************
Messaging avatar color palette
Some of these may extend into other parts of the app one day?
********************************************/
#trip-planner-view {
  height: 100%;
  display: flex;
  flex-direction: row;
}
#trip-planner-view .title {
  font-variant: all-small-caps;
  font-size: 1.2rem;
  line-height: 1;
  color: #e87722;
}
#trip-planner-view .flex-break {
  width: 100%;
}
#trip-planner-view .trip-label {
  color: #a7a8aa;
  font-variant: all-small-caps;
}
#trip-planner-view ol.breadcrumb {
  margin: 0;
  padding: 0;
}
#trip-planner-view [data-badge-count] {
  position: relative;
}
#trip-planner-view [data-badge-count]:after {
  content: attr(data-badge-count);
  position: absolute;
  background: #e87722;
  border-radius: 50%;
  display: inline-block;
  padding: 0.2em;
  color: #f2f2f2;
  right: -0.5em;
  top: -0.5em;
  font-size: 9px;
  text-align: center;
  width: 1.8em;
  height: 1.8em;
}
#trip-planner-view div.H_copyright {
  left: 0;
  right: unset !important;
}
#trip-planner-view .trip-planner-sidebar {
  width: 400px;
  border: 0;
  border-right: 1px solid #ddd;
  border-radius: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
#trip-planner-view .trip-planner-sidebar > .panel-body {
  background-color: white;
  z-index: 6;
}
#trip-planner-view .trip-planner-sidebar > .panel-heading {
  z-index: 7;
}
#trip-planner-view .popout {
  position: absolute;
  bottom: 0;
  width: 399px;
  margin-bottom: 0;
  z-index: 5;
  background-color: white;
  display: flex;
  flex-direction: column;
}
#trip-planner-view .popout > .panel {
  display: flex;
  flex-direction: column;
  height: 100%;
  flex: 1;
  margin: 0;
  border-radius: 0;
  border-bottom: 0;
}
#trip-planner-view .popout > .panel .panel-heading {
  display: flex;
  flex-direction: row;
}
#trip-planner-view .popout > .panel .panel-heading .title {
  flex: 1;
  line-height: 1.2;
}
#trip-planner-view .trip-popout {
  top: 0;
  border: 0;
}
#trip-planner-view .trip-popout.popout-hidden {
  left: 0;
}
#trip-planner-view .trip-popout.popout-shown {
  left: 400px;
}
#trip-planner-view .trip-popout.duck-under-banner {
  top: 50px;
}
#trip-planner-view .trip-popout > .panel {
  border-left: 0;
}
#trip-planner-view .trip-popout .nav-tabs {
  padding: 1rem;
  padding-bottom: 0;
}
#trip-planner-view .policy-results-container {
  background-color: transparent;
}
#trip-planner-view .policy-results-toggle {
  position: absolute;
  text-align: center;
  background-color: #8D8D8D;
  color: white;
  border-radius: 4px;
  top: 91px;
  padding: 0.25em;
  right: 8px;
}
#trip-planner-view .policy-results-toggle.passed {
  background-color: #3c763d;
}
#trip-planner-view .policy-results-toggle.failed {
  background-color: #a94442;
}
#trip-planner-view .policy-results-toggle.muted {
  background-color: #8D8D8D;
}
#trip-planner-view .policy-results-toggle .status-icon {
  display: block;
}
#trip-planner-view .policy-results-popout {
  top: 73px;
  right: 0;
}
#trip-planner-view .policy-results-popout.popout-hidden {
  right: -400px;
}
#trip-planner-view .policy-results-popout.popout-shown {
  right: 0;
}
#trip-planner-view .policy-results-popout > .panel {
  border-right: 0;
}
#trip-planner-view .policy-results-popout .panel-body {
  overflow-y: auto;
}
#trip-planner-view .policy-results-popout .panel-body > * {
  margin: 0 0 0.5rem 0;
}
#trip-planner-view .policy-results-popout .panel-body .disclaimer {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
#trip-planner-view .policy-results-popout .policy-result {
  display: flex;
}
#trip-planner-view .policy-results-popout .policy-result .status-icon {
  font-size: 20px;
  padding: 0.5rem;
  line-height: 0;
  color: #a7a8aa;
}
#trip-planner-view .policy-results-popout .policy-result .status-icon .fa-stack {
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
}
#trip-planner-view .policy-results-popout .policy-result .status-icon .passed {
  color: #3c763d;
}
#trip-planner-view .policy-results-popout .policy-result .status-icon .failed {
  color: #a94442;
}
#trip-planner-view .policy-results-popout .policy-result .status-icon .muted, #trip-planner-view .policy-results-popout .policy-result .status-icon .error {
  color: #8D8D8D;
}
#trip-planner-view .policy-results-popout .policy-result .status-icon img {
  width: 24px;
  height: 24px;
}
#trip-planner-view .policy-results-popout .policy-result .status-icon .fa-stack-halfx {
  font-size: 0.55em;
  line-height: inherit;
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}
#trip-planner-view .policy-results-popout .policy-result .status-icon + * {
  flex: 1;
  padding: 0.5rem;
  align-self: center;
}
#trip-planner-view .policy-results-popout .policy-result .mute-reason {
  background-color: #eee;
  margin-top: 0.7rem;
  padding: 0.7rem;
  border-radius: 4px;
}
#trip-planner-view #map-pane {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
#trip-planner-view #map {
  position: relative;
  flex-grow: 1;
  flex-basis: 1px;
}
#trip-planner-view .version-controls-panel {
  z-index: 6;
  padding: 0;
}
#trip-planner-view .version-controls {
  display: flex;
  flex-direction: row;
}
#trip-planner-view .version-controls > * {
  padding: 10px 0;
}
#trip-planner-view .version-controls .version-controls-body {
  flex: 1;
  display: flex;
  flex-direction: row;
  position: relative;
}
#trip-planner-view .version-controls .next, #trip-planner-view .version-controls .prev {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  width: 2em;
  text-decoration: none;
  color: #a7a8aa;
}
#trip-planner-view .version-controls .next a, #trip-planner-view .version-controls .prev a {
  color: #333;
  flex: 1;
}
#trip-planner-view .version-controls .next a:hover, #trip-planner-view .version-controls .prev a:hover {
  text-decoration: none;
  color: gray;
}
#trip-planner-view .version-controls .next .fa, #trip-planner-view .version-controls .prev .fa {
  display: block;
  text-align: center;
  margin: 0;
}
#trip-planner-view .version-controls #version-list-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.1em;
  color: #333;
  text-decoration: none;
  position: absolute;
  right: 1em;
  top: calc(50% - 10px);
}
#trip-planner-view .version-controls #version-list-toggle .fa {
  font-size: 20px;
}
#trip-planner-view .version-controls #version-list-toggle:after {
  right: -1.2em;
  top: -1.1em;
}
#trip-planner-view .version-controls #version-list-toggle:hover {
  cursor: pointer;
  color: gray;
  text-decoration: none;
}
#trip-planner-view .version-controls #version-list-toggle:hover:after {
  background-color: #ed9350;
}
#trip-planner-view .version-controls .version-details {
  display: flex;
  flex-direction: column;
  font-size: 13px;
}
#trip-planner-view .version-controls .version-details.current {
  flex: 1;
  padding: 0 2.75em 0 0.5em;
}
#trip-planner-view .version-controls .dropdown-menu {
  bottom: 100%;
  top: inherit;
  width: 100%;
  max-height: 55vh;
  overflow-y: auto;
  margin-top: 5px; /* Same as .version-controls-panel's padding-bottom */
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-color: rgb(221, 221, 221); /* Same as panel-heading's border-bottom-color */
  box-shadow: 0 -6px 12px -5px rgba(0, 0, 0, 0.175); /* Reverse the direction of bootstrap's shadow, since it's a bottom-up menu */
  padding: 0;
}
#trip-planner-view .version-controls .dropdown-menu li {
  display: flex;
  flex-direction: row;
  align-items: center;
}
#trip-planner-view .version-controls .dropdown-menu li > * {
  padding: 0.4em 1em;
  flex: 1;
  white-space: inherit;
}
#trip-planner-view .version-controls .dropdown-menu li:hover {
  cursor: pointer;
  background-color: #f8f8f8;
}
#trip-planner-view .version-controls .dropdown-menu li.selected {
  cursor: auto;
  background-color: #337ab7;
  color: #fff;
}
#trip-planner-view .version-controls .dropdown-menu .dropdown-title {
  height: 3em;
  padding: 0 1em;
  background-color: #f2f2f2;
  border-bottom: 1px solid rgb(221, 221, 221); /* Same as panel-heading's border-bottom-color */
}
#trip-planner-view .version-controls .dropdown-menu .dropdown-title:hover {
  cursor: inherit;
  background-color: #f2f2f2;
}
#trip-planner-view .version-controls .dropdown-menu .dropdown-title span {
  font-size: 1.1rem;
}
#trip-planner-view .version-controls .dropdown-menu .dropdown-title img {
  width: 32px;
  margin-right: 0.7rem;
}
#trip-planner-view .maneuever-tooltip, #trip-planner-view .user-nav-location-tooltip {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
}
#trip-planner-view .maneuever-tooltip .H_ib_content, #trip-planner-view .user-nav-location-tooltip .H_ib_content {
  padding: 5px 0 0 7px;
}
#trip-planner-view .maneuever-tooltip .maneuver-icon, #trip-planner-view .user-nav-location-tooltip .maneuver-icon {
  width: 16px;
  height: 16px;
  margin-right: 5px;
}
#trip-planner-view .maneuever-tooltip div.user-nav-location-tt-text, #trip-planner-view .user-nav-location-tooltip div.user-nav-location-tt-text {
  margin-bottom: 9%;
}
#trip-planner-view #route-info {
  z-index: 10;
}
#trip-planner-view #route-info .alert {
  border: 0;
  margin: 0;
  border-radius: 0;
  white-space: pre;
}
#trip-planner-view #route-info .alert-success {
  background-color: #120639;
  color: white;
  padding: 10px;
}
#trip-planner-view #route-info .route-summary {
  font-size: 18px;
}
#trip-planner-view #route-info .route-summary .metadata {
  width: 47.3684210526%;
  float: left;
  margin-right: 5.2631578947%;
  font-size: 14px;
}
#trip-planner-view #route-info .route-summary .metadata > * {
  margin-right: 10px;
}
#trip-planner-view #route-info .route-summary .metadata .metadata-label {
  font-weight: bold;
}
#trip-planner-view #route-info .route-summary .duration {
  width: 47.3684210526%;
  float: right;
  margin-right: 0;
  font-weight: bold;
  text-align: right;
}
#trip-planner-view #route-info .route-summary .base-duration {
  font-size: 16px;
  font-weight: normal;
}
#trip-planner-view #route-info .route-summary.sandbox {
  margin-right: 120px;
}
#trip-planner-view #trip-plan-route-info {
  z-index: 10;
}
#trip-planner-view #trip-plan-route-info .alert {
  border: 0;
  margin: 0;
  border-radius: 0;
}
#trip-planner-view #trip-plan-route-info .banner {
  padding: 10px;
}
#trip-planner-view #trip-plan-route-info .navigation-reason-code {
  color: white;
  background-color: #318F41;
}
#trip-planner-view #trip-plan-route-info .planning-reason-code {
  color: white;
  background-color: #120639;
}
#trip-planner-view #trip-plan-route-info .route-summary {
  display: flex;
}
#trip-planner-view #trip-plan-route-info .route-summary .metadata {
  flex: 1;
  text-align: right;
}
#trip-planner-view #trip-plan-route-info .route-summary .duration {
  font-weight: bold;
  font-size: 1.2rem;
}
#trip-planner-view #trip-plan-route-info .route-summary .unknown-duration .fa {
  color: white;
}
#trip-planner-view #trip-plan-route-info .route-summary .base-duration {
  font-size: 1rem;
  font-weight: normal;
}
#trip-planner-view #trip-plan-route-info .route-summary.sandbox {
  margin-right: 120px;
}
#trip-planner-view #route-legend {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: white;
  font-size: 11px;
  padding: 6px;
}
#trip-planner-view #route-legend .computed-line, #trip-planner-view #route-legend .actual-line {
  display: inline-block;
  width: 24px;
  height: 4px;
  vertical-align: middle;
  margin-right: 0.35rem;
}
#trip-planner-view #route-legend .computed-line {
  background-color: rgba(38, 139, 212, 0.8);
}
#trip-planner-view #route-legend .actual-line {
  background-color: rgba(27, 54, 93, 0.8);
}
#trip-planner-view .map-marker-warning .fa-circle {
  color: #f1a502;
}
#trip-planner-view .route-controls {
  width: 400px;
  margin: 0;
  display: flex;
  flex-direction: column;
}
#trip-planner-view .route-controls .panel-body.tab-content {
  padding-top: 0;
  flex-grow: 1;
  overflow-y: auto;
}
#trip-planner-view .route-controls .stops-tab {
  display: flex;
  flex-direction: column;
}
#trip-planner-view .route-controls .stops .remove-stop:hover {
  cursor: pointer;
  color: #666;
}
#trip-planner-view .route-controls .stops .stop-icon {
  width: 16px;
  margin-right: 5px;
}
#trip-planner-view .route-controls .stops .stop-coord {
  display: flex;
  flex-direction: row;
  margin-bottom: 15px;
  align-items: center;
}
#trip-planner-view .route-controls .stops .stop-coord .fa {
  width: 16px;
  height: 16px;
  text-align: center;
}
#trip-planner-view .route-controls .stops .stop-coord span:first-child > .fa {
  margin-right: 5px;
}
#trip-planner-view .route-controls .stops .stop-coord span:last-child > .fa {
  margin-left: 5px;
}
#trip-planner-view .route-controls .stops .stop-coord .form-group {
  flex-grow: 1;
  margin-bottom: 0;
}
#trip-planner-view .route-controls .react-datepicker-wrapper, #trip-planner-view .route-controls .react-datepicker__input-container {
  display: block;
}
#trip-planner-view .route-controls .search-results {
  list-style-type: none;
  padding: 0;
  margin-top: 15px;
}
#trip-planner-view .route-controls .search-results li {
  border-top: 1px solid #ccc;
  border-right: 0;
  border-left: 0;
  padding: 5px 10px;
  font-size: 13px;
}
#trip-planner-view .route-controls .search-results li:hover {
  cursor: pointer;
  background-color: #f8f8f8;
}
#trip-planner-view .route-controls .search-results li:last-child {
  border-bottom: 1px solid #ccc;
}
#trip-planner-view .route-controls .search-results li .place-title {
  font-weight: bold;
}
#trip-planner-view .route-controls .search-results li .place-vicinity {
  color: #aaa;
}
#trip-planner-view .route-controls .panel-footer {
  text-align: right;
}
#trip-planner-view .route-controls .panel-footer button {
  margin-right: 0.5em;
}
#trip-planner-view .route-controls .route-options {
  overflow-y: auto;
}
#trip-planner-view .route-controls .route-options ul.plug-options {
  list-style: none;
  padding: 0;
}
#trip-planner-view .route-controls .route-options ul.plug-options li {
  padding: 5px;
}
#trip-planner-view .route-controls .route-options ul.plug-options li:nth-child(even) {
  background: #f5f5f5;
}
#trip-planner-view .route-controls .route-options ul.plug-options li > div {
  display: inline-block;
}
#trip-planner-view .route-controls .route-options ul.plug-options li .plug-option {
  width: 100%;
}
#trip-planner-view .route-controls .route-options ul.plug-options li .plug-option-value {
  float: right;
  padding-left: 15px;
}
#trip-planner-view #route-search-form {
  margin-bottom: 15px;
}
#trip-planner-view #route-search-form button[type=submit] {
  display: block;
  margin: 0 0 0 auto;
}
#trip-planner-view #trip-plan-sidebar {
  position: relative;
}
#trip-planner-view #trip-plan-sidebar .panel-body {
  overflow-y: auto;
  flex: 1;
}
#trip-planner-view #trip-plan-sidebar .header .duration {
  flex: 1;
  text-align: right;
  font-size: 0.9rem;
  line-height: 1.4rem;
}
#trip-planner-view #trip-plan-sidebar .load-info .info-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
#trip-planner-view #trip-plan-sidebar .load-info .display-identifier {
  flex: 1;
  font-size: 16px;
  font-weight: bold;
}
#trip-planner-view #trip-plan-sidebar .load-info .customer-name {
  flex: 1;
}
#trip-planner-view #trip-plan-sidebar .load-info .load-status {
  text-align: right;
}
#trip-planner-view #trip-plan-sidebar .load-info .driver-name {
  flex: 1;
  text-align: right;
}
#trip-planner-view #trip-plan-sidebar .load-info .special-instructions {
  margin-top: 0.7rem;
}
#trip-planner-view #trip-plan-sidebar .load-info .special-instructions span {
  white-space: pre;
}
#trip-planner-view #trip-plan-sidebar .change-info {
  margin-bottom: 0.2em;
}
#trip-planner-view #trip-plan-sidebar .change-info .reason-list[aria-expanded=true] + .reason-list {
  display: none;
}
#trip-planner-view #trip-plan-sidebar .change-info #change-list-toggle {
  color: #333;
  text-decoration: none;
}
#trip-planner-view #trip-plan-sidebar .change-info #change-list-toggle .fa {
  font-size: 20px;
  vertical-align: top;
  width: 100%;
  text-align: center;
}
#trip-planner-view #trip-plan-sidebar .change-info #change-list-toggle:hover {
  color: gray;
  text-decoration: none;
}
#trip-planner-view #trip-plan-sidebar .change-info #change-list-toggle:hover:after {
  background-color: #ed9350;
}
#trip-planner-view #trip-plan-sidebar .stops {
  list-style: none;
  padding-left: 0;
}
#trip-planner-view #trip-plan-sidebar .stop {
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  padding: 1em;
  margin-bottom: 0.7rem;
}
#trip-planner-view #trip-plan-sidebar .stop .header {
  margin-bottom: 0.7rem;
  display: flex;
}
#trip-planner-view #trip-plan-sidebar .stop:hover {
  cursor: pointer;
  background-color: #f8f8f8;
}
#trip-planner-view #trip-plan-sidebar .stop.selected {
  background-color: #f8f8f8;
}
#trip-planner-view #trip-plan-sidebar .stop .timing {
  color: #a7a8aa;
  font-size: 0.9rem;
  margin: 0.35rem 0;
}
#trip-planner-view #trip-plan-sidebar .stop .stop-info {
  display: flex;
}
#trip-planner-view #trip-plan-sidebar .stop .stop-info .stop-card-icon {
  font-size: 20px;
  padding: 0.5rem;
  line-height: 0;
  color: #a7a8aa;
}
#trip-planner-view #trip-plan-sidebar .stop .stop-info .stop-card-icon .fa {
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
}
#trip-planner-view #trip-plan-sidebar .stop .stop-info .stop-card-icon img {
  width: 24px;
  height: 24px;
}
#trip-planner-view #trip-plan-sidebar .stop .stop-info .stop-card-icon + * {
  flex: 1;
  padding: 0.5rem;
  align-self: center;
}
#trip-planner-view #trip-plan-sidebar .stop .stop-info .stop-marker-icon:hover {
  cursor: pointer;
}
#trip-planner-view #trip-plan-sidebar .stop .time-window time {
  display: block;
}
#trip-planner-view #trip-plan-sidebar .stop .identifiers {
  font-size: 0.9rem;
  display: grid;
  grid-template: auto/10em 1fr;
  margin: 0;
}
#trip-planner-view #trip-plan-sidebar .stop .identifiers .identifier-label {
  grid-column: 1;
  font-weight: normal;
  font-style: italic;
}
#trip-planner-view #trip-plan-sidebar .stop .identifiers .identifier-value {
  grid-column: 2;
}
#trip-planner-view #trip-plan-sidebar .leg-info {
  margin-left: 1.4rem;
  margin-bottom: 0.7rem;
}
#trip-planner-view #trip-plan-sidebar .leg-info .leg-info-item {
  color: #268bd4;
  margin-bottom: 0.35rem;
}
#trip-planner-view #trip-plan-sidebar .leg-info .leg-info-item:hover {
  color: #1b365d;
  cursor: pointer;
}
#trip-planner-view #trip-plan-sidebar .leg-info .leg-info-icon {
  font-size: 16px;
  padding: 0.5rem;
}
#trip-planner-view #trip-plan-sidebar .leg-info .leg-info-label {
  font-size: 0.9rem;
  margin-right: 0.35rem;
}
#trip-planner-view #trip-plan-sidebar .route-options .stop-arrow, #trip-planner-view #trip-plan-sidebar .difficult-maneuvers .stop-arrow {
  margin: 0 0.5rem;
}
#trip-planner-view #trip-plan-sidebar .route-options {
  overflow-y: auto;
}
#trip-planner-view #trip-plan-sidebar .route-options label + .btn-group {
  display: block;
}
#trip-planner-view #trip-plan-sidebar .route-options .plug-options-title {
  font-size: 16px;
  font-weight: bold;
}
#trip-planner-view #trip-plan-sidebar .route-options ul.plug-options {
  list-style: none;
  padding: 0;
}
#trip-planner-view #trip-plan-sidebar .route-options ul.plug-options li {
  padding: 5px;
}
#trip-planner-view #trip-plan-sidebar .route-options ul.plug-options li:nth-child(even) {
  background: #f5f5f5;
}
#trip-planner-view #trip-plan-sidebar .route-options ul.plug-options li > div {
  display: inline-block;
}
#trip-planner-view #trip-plan-sidebar .route-options ul.plug-options li .plug-option {
  width: 100%;
}
#trip-planner-view #trip-plan-sidebar .route-options ul.plug-options li .plug-option-value {
  float: right;
  padding-left: 15px;
}
#trip-planner-view #trip-plan-sidebar .difficult-maneuvers .list-group-item:hover {
  cursor: pointer;
  background-color: #f8f8f8;
}
#trip-planner-view #trip-plan-sidebar .difficult-maneuvers .list-group-item-text {
  font-size: 0.9rem;
}
#trip-planner-view #search-sidebar {
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
}
#trip-planner-view #search-sidebar h4 {
  font-size: 16px;
  margin-top: 0;
}
#trip-planner-view #search-sidebar #route-search-form:last-child {
  margin-bottom: 0;
}
#trip-planner-view #search-sidebar > .panel-body {
  flex: 1;
  overflow-y: auto;
}
#trip-planner-view #search-sidebar .page-navigation {
  text-align: center;
}
#trip-planner-view #search-sidebar .page-navigation a {
  margin: 0 10px;
  cursor: pointer;
  color: #268bd4;
  text-decoration: none;
}
#trip-planner-view #search-sidebar .page-navigation a:hover {
  color: #1b365d;
}
#trip-planner-view #search-sidebar .page-navigation .next-page i {
  margin-left: 0.4em;
}
#trip-planner-view #search-sidebar .page-navigation .page-number {
  font-weight: bold;
}
#trip-planner-view #route-search-results .results {
  padding: 0;
}
#trip-planner-view #route-search-results .route-search-result {
  list-style-type: none;
  padding: 10px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #eee;
}
#trip-planner-view #route-search-results .route-search-result::after {
  display: block;
  content: "";
  clear: both;
}
#trip-planner-view #route-search-results .route-search-result:hover {
  background-color: #f8f8f8;
}
#trip-planner-view #route-search-results .route-search-result a {
  color: #333;
  text-decoration: none;
}
#trip-planner-view #route-search-results .route-search-result a > * {
  flex: 1;
  display: flex;
  flex-direction: row;
}
#trip-planner-view #route-search-results .route-search-result a > * > * {
  line-height: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#trip-planner-view #route-search-results .route-search-result a > * .username, #trip-planner-view #route-search-results .route-search-result a > * .load-reference {
  flex: 1;
}
#trip-planner-view #route-search-results .route-search-result a .load-reference {
  font-weight: bold;
  font-size: 115%;
}
#trip-planner-view #route-search-results .route-search-result a .created-at {
  color: #aaa;
  text-align: right;
}
#trip-planner-view #route-search-results .route-search-result a .created-at-time {
  font-size: 85%;
}
#trip-planner-view #route-search-results .route-search-result a .result-label {
  display: inline-block;
  font-weight: bold;
  width: 30%;
}
#trip-planner-view #route-search-results .route-search-result .engine-info {
  color: #aaa;
  font-size: 85%;
}
#trip-planner-view #dynamic-category-tabs {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
}
#trip-planner-view #dynamic-category-tabs > li > a {
  white-space: nowrap;
}
#trip-planner-view .avoid-status {
  display: inline-block;
  margin: 2px 0 2px 16px;
  font-size: 12px;
  border-radius: 6px;
  padding: 2px 6px;
}
#trip-planner-view .avoid-status.test {
  color: #6941C6;
  border: 1px solid #E9D7FE;
  background-color: #F9F5FF;
}
#trip-planner-view .avoid-status.active {
  color: #067647;
  border: 1px solid #75E0A7;
  background-color: #ECFDF3;
}
#trip-planner-view .avoid-status.inactive {
  color: #B42318;
  border: 1px solid #FECDCA;
  background-color: #FEF3F2;
}
#trip-planner-view .avoid-status.expiring {
  color: #B54708;
  border: 1px solid #FEDF89;
  background-color: #FFFAEB;
}
#trip-planner-view #delete-avoid-modal .modal-dialog, #trip-planner-view #deactivate-avoid-modal .modal-dialog {
  top: 30%;
}
#trip-planner-view #delete-avoid-modal .modal-content, #trip-planner-view #deactivate-avoid-modal .modal-content {
  width: 500px;
}
#trip-planner-view #delete-avoid-modal .modal-header, #trip-planner-view #deactivate-avoid-modal .modal-header {
  display: flex;
  padding: 8px 15px;
}
#trip-planner-view #delete-avoid-modal .modal-header h4, #trip-planner-view #deactivate-avoid-modal .modal-header h4 {
  font-size: 20px;
  margin-right: auto;
}
#trip-planner-view #delete-avoid-modal .modal-body p, #trip-planner-view #deactivate-avoid-modal .modal-body p {
  margin: 0 0 20px 0;
  font-size: 16px;
}
#trip-planner-view #delete-avoid-modal .modal-footer, #trip-planner-view #deactivate-avoid-modal .modal-footer {
  padding: 12px 15px;
}
#trip-planner-view #delete-avoid-modal .modal-footer button, #trip-planner-view #deactivate-avoid-modal .modal-footer button {
  font-size: 16px;
  padding: 7px 13px;
}
#trip-planner-view #delete-avoid-modal .modal-footer button.confirm, #trip-planner-view #deactivate-avoid-modal .modal-footer button.confirm {
  margin-left: 8px;
  background-color: #007AFF;
  border: 1px solid #007AFF;
}
#trip-planner-view #delete-avoid-modal .modal-footer button.confirm:hover, #trip-planner-view #deactivate-avoid-modal .modal-footer button.confirm:hover {
  background-color: #0069D9;
  border-color: #0069D9;
}
#trip-planner-view #delete-avoid-modal .modal-footer button.delete, #trip-planner-view #deactivate-avoid-modal .modal-footer button.delete {
  margin-left: 8px;
  background-color: #DF2525;
  border: 1px solid #DF2525;
}
#trip-planner-view #delete-avoid-modal .modal-footer button.delete:hover, #trip-planner-view #deactivate-avoid-modal .modal-footer button.delete:hover {
  background-color: #F04438;
  border-color: #F04438;
}
#trip-planner-view #delete-avoid-modal .modal-footer button.cancel, #trip-planner-view #deactivate-avoid-modal .modal-footer button.cancel {
  background-color: #FAFAFA;
}
#trip-planner-view #delete-avoid-modal .modal-footer button.cancel:hover, #trip-planner-view #deactivate-avoid-modal .modal-footer button.cancel:hover {
  background-color: #F5F5F5;
}
#trip-planner-view #avoids-sidebar {
  color: #222222;
}
#trip-planner-view #avoids-sidebar .panel-heading {
  padding: 17px 16px;
  display: flex;
  justify-content: space-between;
  vertical-align: middle;
  flex-wrap: wrap;
}
#trip-planner-view #avoids-sidebar .panel-heading .help-link-icon {
  padding-right: 0.2em;
}
#trip-planner-view #avoids-sidebar .panel-heading p, #trip-planner-view #avoids-sidebar .panel-heading .dropdown {
  margin: auto 0;
  font-weight: 500;
}
#trip-planner-view #avoids-sidebar .panel-heading i {
  margin: auto;
}
#trip-planner-view #avoids-sidebar .panel-body {
  position: relative;
  padding: 8px 16px 5px 16px;
  background-color: #FAFAFA;
}
#trip-planner-view #avoids-sidebar .panel-body.no-avoids {
  background-color: #FFFFFF;
  text-align: center;
}
#trip-planner-view #avoids-sidebar .panel-body.no-avoids img {
  width: 152px;
  margin: 12px 0 18px;
}
#trip-planner-view #avoids-sidebar .panel-body.no-avoids .no-avoids-title {
  color: #222222;
  font-size: 16px;
  font-weight: 700;
  line-height: 150%;
  padding: 4px;
}
#trip-planner-view #avoids-sidebar .panel-body.no-avoids p {
  color: #535862;
  font-size: 14px;
  line-height: 150%;
}
#trip-planner-view #avoids-sidebar .panel-body label {
  font-weight: 500;
  line-height: 20px;
  padding-bottom: 2px;
  color: #414651;
}
#trip-planner-view #avoids-sidebar .panel-body #search-filter-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
#trip-planner-view #avoids-sidebar .panel-body #search-filter-group .filter-menu {
  position: absolute;
  z-index: 1000;
  width: 100%;
  background-color: #FFFFFF;
  border-radius: 8px;
  top: 40px;
  padding: 10px 16px;
  box-shadow: 0 2px 2px -1px rgba(10, 13, 18, 0.04), 0 4px 6px -2px rgba(10, 13, 18, 0.03), 0 12px 16px -4px rgba(10, 13, 18, 0.08);
}
#trip-planner-view #avoids-sidebar .panel-body #search-filter-group .filter-menu #status-display-filter {
  font-size: 16px;
  height: 40px;
  padding: 8px 12px;
}
#trip-planner-view #avoids-sidebar .panel-body #search-filter-group #filter-toggle {
  background-color: #FFFFFF;
  border-color: #D5D7DA;
  width: 40px;
  height: 40px;
  margin-left: 10px;
}
#trip-planner-view #avoids-sidebar .panel-body #avoids-search {
  position: relative;
  display: flex;
  vertical-align: middle;
  justify-content: space-between;
  flex: 1;
  width: 100%;
}
#trip-planner-view #avoids-sidebar .panel-body #avoids-search .form-control {
  border-radius: 4px;
  font-size: 16px;
  height: 40px;
  padding: 8px 35px;
}
#trip-planner-view #avoids-sidebar .panel-body #avoids-search .form-control::placeholder {
  color: #717680;
}
#trip-planner-view #avoids-sidebar .panel-body #avoids-search .fa-search {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  display: block;
  width: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 16px;
  color: #717680;
}
#trip-planner-view #avoids-sidebar .panel-body #avoids-search .form-field-clear {
  width: 40px;
  line-height: 40px;
  font-size: 16px;
}
#trip-planner-view #avoids-sidebar .panel-body .current-filter {
  flex-basis: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  vertical-align: middle;
  color: #414651;
  margin: 10px 0 4px 0;
}
#trip-planner-view #avoids-sidebar .panel-body .current-filter .avoid-status {
  padding: 2px 10px;
  margin-left: 6px;
}
#trip-planner-view #avoids-sidebar .panel-body .current-filter .avoid-status .fa-close {
  margin-left: 5px;
  cursor: pointer;
}
#trip-planner-view #avoids-sidebar .panel-body .create-avoid-btn {
  font-size: 16px;
  background-color: #007AFF;
  border: 1px solid #007AFF;
  width: 100%;
  padding: 8px 12px;
  margin: 11px 0;
}
#trip-planner-view #avoids-sidebar .panel-body .create-avoid-btn:not(:disabled):hover {
  background-color: #0069D9;
  border-color: #0069D9;
}
#trip-planner-view #avoids-sidebar .panel-body .create-avoid-btn i {
  font-size: 24px;
  line-height: 16px;
  margin-right: 7px;
}
#trip-planner-view #avoids-sidebar .filter-btns {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
#trip-planner-view #avoids-sidebar .filter-btns .btn {
  font-size: 16px;
}
#trip-planner-view #avoids-sidebar .filter-btns .btn-primary {
  background-color: #007AFF;
  border: 1px solid #007AFF;
}
#trip-planner-view #avoids-sidebar .filter-btns .btn-primary:hover {
  background-color: #0069D9;
  border-color: #0069D9;
}
#trip-planner-view #avoids-sidebar .filter-btns .reset-btn {
  background-color: unset;
  color: #0D6EFD;
}
#trip-planner-view #avoids-sidebar .no-search-results {
  text-align: center;
  color: #535862;
  padding: 30px 20px;
}
#trip-planner-view #avoids-sidebar .no-search-results h1 {
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  margin-bottom: 5px;
}
#trip-planner-view #avoids-sidebar .no-search-results p {
  font-size: 16px;
  line-height: 150%;
}
#trip-planner-view #avoids-sidebar ul#avoids-list {
  height: 100%;
  overflow-y: auto;
}
#trip-planner-view #avoids-sidebar ul#avoids-list .list-group-item {
  display: flex;
  min-height: 72px;
  border-bottom: 1px solid #ddd;
  padding-top: 8px;
}
#trip-planner-view #avoids-sidebar ul#avoids-list .list-group-item.selected {
  background-color: #F5FBFF;
}
#trip-planner-view #avoids-sidebar ul#avoids-list .list-group-item .avoid-count {
  flex: 0 1 16px;
  margin-right: 4px;
}
#trip-planner-view #avoids-sidebar ul#avoids-list .list-group-item .avoid-name-container {
  flex: 1 0 150px;
  margin-right: 10px;
}
#trip-planner-view #avoids-sidebar ul#avoids-list .list-group-item .avoid-name-container .avoid-name {
  word-break: break-word;
}
#trip-planner-view #avoids-sidebar ul#avoids-list .list-group-item .avoid-name, #trip-planner-view #avoids-sidebar ul#avoids-list .list-group-item .avoid-count {
  font-weight: 500;
  line-height: 17px;
  margin-bottom: 6px;
}
#trip-planner-view #avoids-sidebar ul#avoids-list .list-group-item .avoid-updated, #trip-planner-view #avoids-sidebar ul#avoids-list .list-group-item .avoid-expiring {
  font-size: 11px;
  color: #535862;
  line-height: 100%;
  margin: 4px 0 2px 0;
}
#trip-planner-view #avoids-sidebar ul#avoids-list .list-group-item .avoid-status-container, #trip-planner-view #avoids-sidebar ul#avoids-list .list-group-item .avoids-list-options {
  align-self: center;
  margin: 0;
}
#trip-planner-view #avoids-sidebar ul#avoids-list .list-group-item .avoid-status-container {
  flex: 0 1 85px;
}
#trip-planner-view #avoids-sidebar ul#avoids-list .list-group-item .avoid-status-container .avoid-status {
  margin-left: 0;
}
#trip-planner-view #avoids-sidebar ul#avoids-list .list-group-item .avoids-list-options button {
  background-color: unset;
  border-color: #535862;
  width: 35px;
}
#trip-planner-view #avoids-sidebar ul#avoids-list .list-group-item .avoids-list-options i {
  margin: auto;
}
#trip-planner-view #avoids-sidebar ul#avoids-list .list-group-item ul {
  padding-left: 0;
  margin: 8px 0;
}
#trip-planner-view #avoids-sidebar ul#avoids-list .list-group-item ul li {
  font-size: 16px;
  line-height: 150%;
  list-style: none;
  margin: 8px 16px;
  cursor: pointer;
}
#trip-planner-view #avoids-sidebar ul#avoids-list .list-group-item ul li.disabled {
  color: #ADB5BD;
  pointer-events: none;
  cursor: not-allowed;
}
#trip-planner-view #avoids-sidebar #back-to-top {
  display: flex;
  position: fixed;
  font-size: 16px;
  cursor: pointer;
  bottom: 40px;
  left: 132.5px;
  width: 135px;
  height: 38px;
  background-color: #FFFFFF;
  border: 1px solid #D5D7DA;
  border-radius: 23px;
  justify-content: center;
  align-items: center;
  box-shadow: inset 0 -2px 0 0 rgba(10, 13, 18, 0.05), inset 0 0 0 1px rgba(10, 13, 18, 0.18), 0 1px 1px 0 rgba(10, 13, 18, 0.05), 0 5px 17.1px 0 rgba(0, 0, 0, 0.15);
}
#trip-planner-view #avoids-sidebar #back-to-top i {
  padding-right: 10px;
}
#trip-planner-view #avoid-builder-sidebar .panel-heading {
  display: flex;
}
#trip-planner-view #avoid-builder-sidebar .panel-heading .fa-arrow-left {
  cursor: pointer;
  margin-right: 15px;
  align-self: center;
}
#trip-planner-view #avoid-builder-sidebar .panel-heading p {
  margin: 0;
  font-weight: 500;
}
#trip-planner-view #avoid-builder-sidebar .panel-body {
  overflow-y: auto;
  color: #414651;
  padding-top: 25px;
}
#trip-planner-view #avoid-builder-sidebar .panel-body .form-group {
  margin-bottom: 10px;
}
#trip-planner-view #avoid-builder-sidebar .panel-body label {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
}
#trip-planner-view #avoid-builder-sidebar .panel-body label .required {
  color: #DF2525;
  margin-left: 2px;
}
#trip-planner-view #avoid-builder-sidebar .panel-body label i {
  font-size: 16px;
  cursor: pointer;
}
#trip-planner-view #avoid-builder-sidebar .panel-body label .optional {
  font-weight: 400;
}
#trip-planner-view #avoid-builder-sidebar .panel-body code {
  font-size: 14px;
}
#trip-planner-view #avoid-builder-sidebar .panel-body p {
  font-size: 13px;
  font-weight: 400;
  line-height: 120%;
  margin-bottom: 6px;
}
#trip-planner-view #avoid-builder-sidebar .panel-body p.help-block {
  font-size: 14px;
  line-height: 20px;
  color: #535862;
}
#trip-planner-view #avoid-builder-sidebar .panel-body .has-error .form-control, #trip-planner-view #avoid-builder-sidebar .panel-body .has-error .selected {
  border-color: #DF2525;
}
#trip-planner-view #avoid-builder-sidebar .panel-body .has-error .help-block {
  color: #DF2525;
  font-size: 13px;
}
#trip-planner-view #avoid-builder-sidebar .panel-body .form-control {
  min-height: 40px;
  border-radius: 8px;
  font-size: 16px;
  color: #222222;
}
#trip-planner-view #avoid-builder-sidebar .panel-body #address-selector {
  margin-top: 15px;
  margin-bottom: 0;
}
#trip-planner-view #avoid-builder-sidebar .panel-body #address-selector .address-input-group {
  width: 100%;
}
#trip-planner-view #avoid-builder-sidebar .panel-body #address-selector .address-input-group .form-control {
  padding-left: 35px;
}
#trip-planner-view #avoid-builder-sidebar .panel-body #address-selector .address-input-group .fa-map-marker {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  display: block;
  width: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 18px;
  color: #717680;
}
#trip-planner-view #avoid-builder-sidebar .panel-body .route-controls {
  width: 100%;
}
#trip-planner-view #avoid-builder-sidebar .avoid-shape-selector {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 15px 0;
}
#trip-planner-view #avoid-builder-sidebar .avoid-shape-selector label {
  width: 100%;
}
#trip-planner-view #avoid-builder-sidebar .avoid-shape-selector button {
  min-width: 100px;
  margin-right: 8px;
  padding: 4px 8px;
  line-height: 150%;
}
#trip-planner-view #avoid-builder-sidebar .avoid-shape-selector button:hover {
  background-color: #F0F9FF;
}
#trip-planner-view #avoid-builder-sidebar .avoid-shape-selector button img {
  margin-bottom: 2px;
}
#trip-planner-view #avoid-builder-sidebar .avoid-shape-selector .selected {
  color: #007AFF;
  border: 1px solid #007AFF;
  background-color: #F0F9FF;
}
#trip-planner-view #avoid-builder-sidebar #avoid-notes {
  min-width: 100%;
  max-width: 100%;
}
#trip-planner-view #avoid-builder-sidebar #avoid-date-range {
  margin-top: 15px;
}
#trip-planner-view #avoid-builder-sidebar #avoid-date-range .start-date-range, #trip-planner-view #avoid-builder-sidebar #avoid-date-range .end-date-range {
  display: flex;
  flex-direction: row;
  margin-bottom: 2px;
}
#trip-planner-view #avoid-builder-sidebar #avoid-date-range .start-date-range .start-date, #trip-planner-view #avoid-builder-sidebar #avoid-date-range .start-date-range .end-date, #trip-planner-view #avoid-builder-sidebar #avoid-date-range .end-date-range .start-date, #trip-planner-view #avoid-builder-sidebar #avoid-date-range .end-date-range .end-date {
  margin-right: 2%;
  width: 55%;
}
#trip-planner-view #avoid-builder-sidebar #avoid-date-range .start-date-range .start-time, #trip-planner-view #avoid-builder-sidebar #avoid-date-range .start-date-range .end-time, #trip-planner-view #avoid-builder-sidebar #avoid-date-range .end-date-range .start-time, #trip-planner-view #avoid-builder-sidebar #avoid-date-range .end-date-range .end-time {
  width: 45%;
}
#trip-planner-view #avoid-builder-sidebar #avoid-date-range .start-date-range .start-date, #trip-planner-view #avoid-builder-sidebar #avoid-date-range .start-date-range .start-time, #trip-planner-view #avoid-builder-sidebar #avoid-date-range .start-date-range .end-date, #trip-planner-view #avoid-builder-sidebar #avoid-date-range .start-date-range .end-time, #trip-planner-view #avoid-builder-sidebar #avoid-date-range .end-date-range .start-date, #trip-planner-view #avoid-builder-sidebar #avoid-date-range .end-date-range .start-time, #trip-planner-view #avoid-builder-sidebar #avoid-date-range .end-date-range .end-date, #trip-planner-view #avoid-builder-sidebar #avoid-date-range .end-date-range .end-time {
  position: relative;
  margin-bottom: 6px;
}
#trip-planner-view #avoid-builder-sidebar #avoid-date-range .start-date-range .start-date label, #trip-planner-view #avoid-builder-sidebar #avoid-date-range .start-date-range .start-time label, #trip-planner-view #avoid-builder-sidebar #avoid-date-range .start-date-range .end-date label, #trip-planner-view #avoid-builder-sidebar #avoid-date-range .start-date-range .end-time label, #trip-planner-view #avoid-builder-sidebar #avoid-date-range .end-date-range .start-date label, #trip-planner-view #avoid-builder-sidebar #avoid-date-range .end-date-range .start-time label, #trip-planner-view #avoid-builder-sidebar #avoid-date-range .end-date-range .end-date label, #trip-planner-view #avoid-builder-sidebar #avoid-date-range .end-date-range .end-time label {
  margin-bottom: 4px;
}
#trip-planner-view #avoid-builder-sidebar #avoid-date-range .start-date-range .start-date .fa-calendar-check-o, #trip-planner-view #avoid-builder-sidebar #avoid-date-range .start-date-range .start-date .fa-clock-o, #trip-planner-view #avoid-builder-sidebar #avoid-date-range .start-date-range .start-time .fa-calendar-check-o, #trip-planner-view #avoid-builder-sidebar #avoid-date-range .start-date-range .start-time .fa-clock-o, #trip-planner-view #avoid-builder-sidebar #avoid-date-range .start-date-range .end-date .fa-calendar-check-o, #trip-planner-view #avoid-builder-sidebar #avoid-date-range .start-date-range .end-date .fa-clock-o, #trip-planner-view #avoid-builder-sidebar #avoid-date-range .start-date-range .end-time .fa-calendar-check-o, #trip-planner-view #avoid-builder-sidebar #avoid-date-range .start-date-range .end-time .fa-clock-o, #trip-planner-view #avoid-builder-sidebar #avoid-date-range .end-date-range .start-date .fa-calendar-check-o, #trip-planner-view #avoid-builder-sidebar #avoid-date-range .end-date-range .start-date .fa-clock-o, #trip-planner-view #avoid-builder-sidebar #avoid-date-range .end-date-range .start-time .fa-calendar-check-o, #trip-planner-view #avoid-builder-sidebar #avoid-date-range .end-date-range .start-time .fa-clock-o, #trip-planner-view #avoid-builder-sidebar #avoid-date-range .end-date-range .end-date .fa-calendar-check-o, #trip-planner-view #avoid-builder-sidebar #avoid-date-range .end-date-range .end-date .fa-clock-o, #trip-planner-view #avoid-builder-sidebar #avoid-date-range .end-date-range .end-time .fa-calendar-check-o, #trip-planner-view #avoid-builder-sidebar #avoid-date-range .end-date-range .end-time .fa-clock-o {
  position: absolute;
  right: 10px;
  bottom: 9px;
  font-size: 1.2em;
  cursor: pointer;
  background-color: #FFFFFF;
  color: #717680;
  padding: 6px 2px 2px 10px;
}
#trip-planner-view #avoid-builder-sidebar #avoid-date-range .start-date-range .start-date .fa-clock-o, #trip-planner-view #avoid-builder-sidebar #avoid-date-range .start-date-range .start-time .fa-clock-o, #trip-planner-view #avoid-builder-sidebar #avoid-date-range .start-date-range .end-date .fa-clock-o, #trip-planner-view #avoid-builder-sidebar #avoid-date-range .start-date-range .end-time .fa-clock-o, #trip-planner-view #avoid-builder-sidebar #avoid-date-range .end-date-range .start-date .fa-clock-o, #trip-planner-view #avoid-builder-sidebar #avoid-date-range .end-date-range .start-time .fa-clock-o, #trip-planner-view #avoid-builder-sidebar #avoid-date-range .end-date-range .end-date .fa-clock-o, #trip-planner-view #avoid-builder-sidebar #avoid-date-range .end-date-range .end-time .fa-clock-o {
  font-size: 1.4em;
  bottom: 7px;
}
@-moz-document url-prefix() {
  #trip-planner-view #avoid-builder-sidebar #avoid-date-range .start-date-range .start-date .fa-clock-o, #trip-planner-view #avoid-builder-sidebar #avoid-date-range .start-date-range .start-time .fa-clock-o, #trip-planner-view #avoid-builder-sidebar #avoid-date-range .start-date-range .end-date .fa-clock-o, #trip-planner-view #avoid-builder-sidebar #avoid-date-range .start-date-range .end-time .fa-clock-o, #trip-planner-view #avoid-builder-sidebar #avoid-date-range .end-date-range .start-date .fa-clock-o, #trip-planner-view #avoid-builder-sidebar #avoid-date-range .end-date-range .start-time .fa-clock-o, #trip-planner-view #avoid-builder-sidebar #avoid-date-range .end-date-range .end-date .fa-clock-o, #trip-planner-view #avoid-builder-sidebar #avoid-date-range .end-date-range .end-time .fa-clock-o {
    cursor: default;
  }
}
#trip-planner-view #avoid-builder-sidebar #avoid-date-range .start-date-range .start-date.has-error .fa-calendar-check-o, #trip-planner-view #avoid-builder-sidebar #avoid-date-range .start-date-range .start-time.has-error .fa-calendar-check-o, #trip-planner-view #avoid-builder-sidebar #avoid-date-range .start-date-range .end-date.has-error .fa-calendar-check-o, #trip-planner-view #avoid-builder-sidebar #avoid-date-range .start-date-range .end-time.has-error .fa-calendar-check-o, #trip-planner-view #avoid-builder-sidebar #avoid-date-range .end-date-range .start-date.has-error .fa-calendar-check-o, #trip-planner-view #avoid-builder-sidebar #avoid-date-range .end-date-range .start-time.has-error .fa-calendar-check-o, #trip-planner-view #avoid-builder-sidebar #avoid-date-range .end-date-range .end-date.has-error .fa-calendar-check-o, #trip-planner-view #avoid-builder-sidebar #avoid-date-range .end-date-range .end-time.has-error .fa-calendar-check-o {
  bottom: 40px;
}
#trip-planner-view #avoid-builder-sidebar #avoid-date-range .start-date-range .start-date.has-error ~ .start-time .fa-clock-o, #trip-planner-view #avoid-builder-sidebar #avoid-date-range .start-date-range .start-date.has-error ~ .end-time .fa-clock-o, #trip-planner-view #avoid-builder-sidebar #avoid-date-range .start-date-range .start-time.has-error ~ .start-time .fa-clock-o, #trip-planner-view #avoid-builder-sidebar #avoid-date-range .start-date-range .start-time.has-error ~ .end-time .fa-clock-o, #trip-planner-view #avoid-builder-sidebar #avoid-date-range .start-date-range .end-date.has-error ~ .start-time .fa-clock-o, #trip-planner-view #avoid-builder-sidebar #avoid-date-range .start-date-range .end-date.has-error ~ .end-time .fa-clock-o, #trip-planner-view #avoid-builder-sidebar #avoid-date-range .start-date-range .end-time.has-error ~ .start-time .fa-clock-o, #trip-planner-view #avoid-builder-sidebar #avoid-date-range .start-date-range .end-time.has-error ~ .end-time .fa-clock-o, #trip-planner-view #avoid-builder-sidebar #avoid-date-range .end-date-range .start-date.has-error ~ .start-time .fa-clock-o, #trip-planner-view #avoid-builder-sidebar #avoid-date-range .end-date-range .start-date.has-error ~ .end-time .fa-clock-o, #trip-planner-view #avoid-builder-sidebar #avoid-date-range .end-date-range .start-time.has-error ~ .start-time .fa-clock-o, #trip-planner-view #avoid-builder-sidebar #avoid-date-range .end-date-range .start-time.has-error ~ .end-time .fa-clock-o, #trip-planner-view #avoid-builder-sidebar #avoid-date-range .end-date-range .end-date.has-error ~ .start-time .fa-clock-o, #trip-planner-view #avoid-builder-sidebar #avoid-date-range .end-date-range .end-date.has-error ~ .end-time .fa-clock-o, #trip-planner-view #avoid-builder-sidebar #avoid-date-range .end-date-range .end-time.has-error ~ .start-time .fa-clock-o, #trip-planner-view #avoid-builder-sidebar #avoid-date-range .end-date-range .end-time.has-error ~ .end-time .fa-clock-o {
  bottom: 38px;
}
#trip-planner-view #avoid-builder-sidebar #avoid-date-range .start-date-range .start-date input:disabled ~ .fa-clock-o, #trip-planner-view #avoid-builder-sidebar #avoid-date-range .start-date-range .start-date input:disabled ~ .fa-calendar-check-o, #trip-planner-view #avoid-builder-sidebar #avoid-date-range .start-date-range .start-time input:disabled ~ .fa-clock-o, #trip-planner-view #avoid-builder-sidebar #avoid-date-range .start-date-range .start-time input:disabled ~ .fa-calendar-check-o, #trip-planner-view #avoid-builder-sidebar #avoid-date-range .start-date-range .end-date input:disabled ~ .fa-clock-o, #trip-planner-view #avoid-builder-sidebar #avoid-date-range .start-date-range .end-date input:disabled ~ .fa-calendar-check-o, #trip-planner-view #avoid-builder-sidebar #avoid-date-range .start-date-range .end-time input:disabled ~ .fa-clock-o, #trip-planner-view #avoid-builder-sidebar #avoid-date-range .start-date-range .end-time input:disabled ~ .fa-calendar-check-o, #trip-planner-view #avoid-builder-sidebar #avoid-date-range .end-date-range .start-date input:disabled ~ .fa-clock-o, #trip-planner-view #avoid-builder-sidebar #avoid-date-range .end-date-range .start-date input:disabled ~ .fa-calendar-check-o, #trip-planner-view #avoid-builder-sidebar #avoid-date-range .end-date-range .start-time input:disabled ~ .fa-clock-o, #trip-planner-view #avoid-builder-sidebar #avoid-date-range .end-date-range .start-time input:disabled ~ .fa-calendar-check-o, #trip-planner-view #avoid-builder-sidebar #avoid-date-range .end-date-range .end-date input:disabled ~ .fa-clock-o, #trip-planner-view #avoid-builder-sidebar #avoid-date-range .end-date-range .end-date input:disabled ~ .fa-calendar-check-o, #trip-planner-view #avoid-builder-sidebar #avoid-date-range .end-date-range .end-time input:disabled ~ .fa-clock-o, #trip-planner-view #avoid-builder-sidebar #avoid-date-range .end-date-range .end-time input:disabled ~ .fa-calendar-check-o {
  background-color: #eee;
  pointer-events: none;
  cursor: not-allowed;
}
#trip-planner-view #avoid-builder-sidebar .avoid-status-select-container {
  margin-top: 30px;
}
#trip-planner-view #avoid-builder-sidebar .avoid-status-select-container label, #trip-planner-view #avoid-builder-sidebar .avoid-status-select-container p {
  line-height: 24px;
  font-size: 16px;
  margin-bottom: 2px;
}
#trip-planner-view #avoid-builder-sidebar .avoid-status-select-container p {
  color: #535862;
}
#trip-planner-view #avoid-builder-sidebar .avoid-status-select-container.status-selector-disabled * {
  color: #717680;
  cursor: not-allowed;
}
#trip-planner-view #avoid-builder-sidebar .deactivate-avoid {
  display: flex;
  flex-direction: row;
  align-items: center;
  vertical-align: middle;
  flex-wrap: wrap;
  margin-top: 15px;
}
#trip-planner-view #avoid-builder-sidebar .deactivate-avoid label {
  font-size: 16px;
  margin-bottom: 4px;
  font-weight: 400;
}
#trip-planner-view #avoid-builder-sidebar .deactivate-avoid .switch {
  position: relative;
  width: 32px;
  height: 16px;
  margin-right: 8px;
}
#trip-planner-view #avoid-builder-sidebar .deactivate-avoid .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
#trip-planner-view #avoid-builder-sidebar .deactivate-avoid .switch input:checked + .slider {
  background-color: #2196F3;
}
#trip-planner-view #avoid-builder-sidebar .deactivate-avoid .switch input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}
#trip-planner-view #avoid-builder-sidebar .deactivate-avoid .switch input:checked + .slider:before {
  transform: translateX(16px);
  background-color: white;
}
#trip-planner-view #avoid-builder-sidebar .deactivate-avoid .switch input:disabled ~ .slider {
  cursor: not-allowed;
}
#trip-planner-view #avoid-builder-sidebar .deactivate-avoid .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: 0.4s;
  border: 1px solid #ccc;
  border-radius: 32px;
}
#trip-planner-view #avoid-builder-sidebar .deactivate-avoid .slider:before {
  position: absolute;
  content: "";
  height: 12px;
  width: 12px;
  left: 1.5px;
  bottom: 1.5px;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 50%;
}
#trip-planner-view #avoid-builder-sidebar .deactivate-avoid .slider:before {
  bottom: 1.25px;
}
#trip-planner-view #avoid-builder-sidebar .deactivate-avoid.reactivation-disabled * {
  color: #717680;
  cursor: not-allowed;
}
#trip-planner-view #avoid-builder-sidebar .avoid-save-btns {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 15px;
}
#trip-planner-view #avoid-builder-sidebar .avoid-save-btns button {
  width: 47.5%;
}
#trip-planner-view #avoid-builder-sidebar .avoid-save-btns .save-button {
  font-size: 16px;
  background-color: #007AFF;
  border: 1px solid #007AFF;
  padding: 7px 12px;
}
#trip-planner-view #avoid-builder-sidebar .avoid-save-btns .save-button:not(:disabled):hover {
  background-color: #0069D9;
  border-color: #0069D9;
}
#trip-planner-view #avoid-builder-sidebar .avoid-save-btns .delete-avoid {
  cursor: pointer;
  font-size: 16px;
  padding: 8px 16px;
  margin: 13px auto;
  color: #DF2525;
  text-align: center;
}
#trip-planner-view .avoid-polygon-label {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  user-select: none;
}
#trip-planner-view #avoid-details-popout {
  display: none;
  background: #FFFFFF;
  color: #222222;
  margin-left: 15px;
  padding: 12px;
  width: 219px;
  border-radius: 8px;
  box-shadow: 0 2px 2px -1px rgba(10, 13, 18, 0.04), 0 4px 6px -2px rgba(10, 13, 18, 0.03);
}
#trip-planner-view #avoid-details-popout::before {
  content: "";
  position: absolute;
  top: calc(50% - 8px);
  left: -10px;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 10px solid #FFFFFF;
}
#trip-planner-view #avoid-details-popout .details-popout-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}
#trip-planner-view #avoid-details-popout .details-popout-header .avoid-name {
  font-weight: 500;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
#trip-planner-view #avoid-details-popout .details-popout-header .avoid-status {
  margin-left: auto;
}
#trip-planner-view #avoid-details-popout .details-popout-header i {
  margin-left: 10px;
  color: #9D9D9D;
  font-size: 17px;
  margin-left: 10px;
  cursor: pointer;
}
#trip-planner-view #avoid-details-popout p {
  color: #535862;
  font-size: 11px;
  padding: 1px 0;
  margin: 0;
  line-height: 100%;
}
#trip-planner-view #avoid-details-popout .notes {
  padding: 4px 0;
  word-break: break-all;
}
#trip-planner-view #avoid-details-popout .notes p {
  color: #414651;
  font-size: 12px;
  line-height: 110%;
}
#trip-planner-view #avoid-details-popout .details-edit-btn {
  width: 100%;
  color: #0D6EFD;
  border: 1px solid #0D6EFD;
  font-size: 14px;
  margin-top: 6px;
}
#trip-planner-view #avoid-details-popout .details-edit-btn:hover {
  color: #FFFFFF;
  background-color: #0D6EFD;
}
#trip-planner-view .avoid-resize-marker {
  width: 14px;
  height: 14px;
  background-color: rgba(255, 255, 255, 0.5);
  border: 2px solid rgb(5, 44, 101);
  border-radius: 50%;
  left: -7px;
  top: -7px;
}
#trip-planner-view #avoids-footer {
  display: flex;
  flex-direction: row;
  position: fixed;
  z-index: 10;
  width: calc(100% - 400px);
  bottom: 0;
  left: 400px;
  padding: 19px 24px;
  font-size: 12px;
  font-weight: 700;
  background-color: #FFFFFF;
  align-items: center;
  vertical-align: middle;
  justify-content: space-between;
}
#trip-planner-view #avoids-footer ~ #map-pane {
  height: calc(100% - 54px);
}
#trip-planner-view #avoids-footer.has-error {
  padding: 13px 24px;
}
#trip-planner-view #avoids-footer.has-error ~ #map-pane {
  height: calc(100% - 60px);
}
#trip-planner-view #avoids-footer .avoid-limit-error {
  color: #DF2525;
  font-weight: 500;
}
#trip-planner-view #avoids-footer .static-avoid-toggle {
  display: flex;
  flex-direction: row;
  align-items: center;
  vertical-align: middle;
  flex-wrap: wrap;
}
#trip-planner-view #avoids-footer .static-avoid-toggle label {
  font-size: 16px;
  margin-bottom: 4px;
  font-weight: 400;
}
#trip-planner-view #avoids-footer .static-avoid-toggle .switch {
  position: relative;
  width: 32px;
  height: 16px;
  margin-right: 8px;
}
#trip-planner-view #avoids-footer .static-avoid-toggle .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
#trip-planner-view #avoids-footer .static-avoid-toggle .switch input:checked + .slider {
  background-color: #2196F3;
}
#trip-planner-view #avoids-footer .static-avoid-toggle .switch input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}
#trip-planner-view #avoids-footer .static-avoid-toggle .switch input:checked + .slider:before {
  transform: translateX(16px);
  background-color: white;
}
#trip-planner-view #avoids-footer .static-avoid-toggle .switch input:disabled ~ .slider {
  cursor: not-allowed;
}
#trip-planner-view #avoids-footer .static-avoid-toggle .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: 0.4s;
  border: 1px solid #ccc;
  border-radius: 32px;
}
#trip-planner-view #avoids-footer .static-avoid-toggle .slider:before {
  position: absolute;
  content: "";
  height: 12px;
  width: 12px;
  left: 1.5px;
  bottom: 1.5px;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 50%;
}
#trip-planner-view #avoids-footer .static-avoid-toggle label {
  font-size: 12px;
  margin-bottom: 0;
  font-weight: 700;
}

#doc-types-view .doc-type-help {
  font-size: 12px;
}
#doc-types-view fieldset {
  margin-top: 1em;
}
#doc-types-view fieldset legend {
  font-size: 18px;
}
#doc-types-view fieldset:first-child {
  margin: 0;
}
#doc-types-view .doc-formats {
  width: 100%;
  float: right;
  margin-right: 0;
}
#doc-types-view .doc-formats > * {
  width: 21.0526315789%;
  float: left;
  margin-right: 5.2631578947%;
}
#doc-types-view .doctypes {
  display: table;
}
#doc-types-view .doctypes .header {
  font-weight: bold;
}
#doc-types-view .doctypes > * {
  display: table-row;
}
#doc-types-view .doctypes > * > * {
  display: table-cell;
  padding: 0.5em;
}
#doc-types-view .doctypes .checkbox-cell {
  text-align: center;
}
#doc-types-view .doctypes .name {
  width: 20em;
}
#doc-types-view .doctypes .max_pages {
  width: 8em;
}
#doc-types-view .doctypes .max_pages input.form-control {
  display: inline;
}
#doc-types-view .doctypes .hidden-doc-type * {
  color: #ccc;
}
#doc-types-view .save-buttons {
  width: 47.3684210526%;
  float: right;
  margin-right: 0;
}

#guest-mode-view .guest-mode-help {
  font-size: 12px;
}
#guest-mode-view form > .form-group {
  border-top: 1px solid #ddd;
  padding: 15px 10px;
}
#guest-mode-view form .guest-hidden-field {
  display: none;
}
#guest-mode-view form .form-group {
  margin: 0;
}
#guest-mode-view form .form-group:hover {
  background-color: #f5f5f5;
}
#guest-mode-view form .form-group .form-control, #guest-mode-view form .form-group .config-field {
  margin: 0;
}
#guest-mode-view form .form-group .config-field {
  display: inline-block;
  vertical-align: middle;
  width: 80%;
}
#guest-mode-view form .form-group label {
  width: 20%;
}
#guest-mode-view .save-buttons {
  margin-top: 15px;
}

#guest-mode-view .form-group.select-field, #api-view .form-group.select-field, #doc-types-view .form-group.select-field {
  margin-bottom: 0;
}

html#internal-admin, html#internal-admin body, html#internal-admin iframe {
  height: 100%;
  width: 100%;
}
html#internal-admin body {
  margin: 0;
}
html#internal-admin iframe {
  border: 0;
}

.toast {
  color: #fff;
  padding: 10px;
  border-radius: 5px;
  position: fixed;
  bottom: 30px;
  width: 60%;
  left: 20%;
  right: 20%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1;
}
.toast.success-toast {
  background-color: #5CB85C;
  z-index: 1000;
}
.toast.failed-toast {
  background-color: #DF2525;
  z-index: 1000;
}
.toast > i {
  font-size: 2em;
  margin-right: 10px;
}
.toast .toast-message {
  margin-right: auto;
}
.toast .close-toast {
  display: flex;
  justify-content: flex-end;
  cursor: pointer;
}

.copy-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

#references-accordion {
  width: 28.5714285714%;
  float: right;
  margin-right: 0;
  margin-top: 20px;
  position: relative;
  color: #333;
  font-size: 14px;
  font-weight: bold;
  background-color: #fff;
  text-align: left;
}
#references-accordion .accordion-title {
  display: flex;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  justify-content: space-between;
}
#references-accordion .reference-header {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  padding: 5px 5px 5px 10px;
}
#references-accordion .reference-header.expanded {
  color: #144D87;
  background-color: #E2EEFB;
  border: 1px solid #ddd;
}
#references-accordion .reference-body {
  display: flex;
  align-items: center;
  width: 100%;
}
#references-accordion .reference-body.archived-component {
  width: 97%;
}
#references-accordion .reference-body a {
  margin: 0 2px 0 10px;
  color: #333;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
#references-accordion .reference-body .fa-archive {
  margin-left: 0;
}
#references-accordion .arrow {
  color: #888;
  font-size: 1.5em;
}
#references-accordion .referenced-component.active {
  max-height: 105px;
  overflow-y: auto;
}
#references-accordion .referenced-component.active.active {
  border: 1px solid #ddd;
  border-top: none;
}

#congrats-modal-trigger {
  display: none;
}

#congrats-modal .confetti {
  position: absolute;
  z-index: 0;
}

.congrats-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

#agreement-log-downloader {
  display: none;
}

#agreements-link a {
  cursor: pointer;
}

/*# sourceMappingURL=hafgufa.css.map */
