/**
 * tom-select.css (v2.4.3)
 * Copyright (c) contributors
 *
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this
 * file except in compliance with the License. You may obtain a copy of the License at:
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software distributed under
 * the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
 * ANY KIND, either express or implied. See the License for the specific language
 * governing permissions and limitations under the License.
 *
 */
.ts-control {
  border: 1px solid #d0d0d0;
  padding: 8px 8px;
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  box-shadow: none;
  border-radius: 3px;
  display: flex;
  flex-wrap: wrap;
}
.ts-wrapper.multi.has-items .ts-control {
  padding: calc(8px - 2px - 0) 8px calc(8px - 2px - 3px - 0);
}
.full .ts-control {
  background-color: #fff;
}
.disabled .ts-control, .disabled .ts-control * {
  cursor: default !important;
}
.focus .ts-control {
  box-shadow: none;
}
.ts-control > * {
  vertical-align: baseline;
  display: inline-block;
}
.ts-wrapper.multi .ts-control > div {
  cursor: pointer;
  margin: 0 3px 3px 0;
  padding: 2px 6px;
  background: #f2f2f2;
  color: #303030;
  border: 0 solid #d0d0d0;
}
.ts-wrapper.multi .ts-control > div.active {
  background: #e8e8e8;
  color: #303030;
  border: 0 solid #cacaca;
}
.ts-wrapper.multi.disabled .ts-control > div, .ts-wrapper.multi.disabled .ts-control > div.active {
  color: rgb(124.5, 124.5, 124.5);
  background: white;
  border: 0 solid white;
}
.ts-control > input {
  flex: 1 1 auto;
  min-width: 7rem;
  display: inline-block !important;
  padding: 0 !important;
  min-height: 0 !important;
  max-height: none !important;
  max-width: 100% !important;
  margin: 0 !important;
  text-indent: 0 !important;
  border: 0 none !important;
  background: none !important;
  line-height: inherit !important;
  -webkit-user-select: auto !important;
     -moz-user-select: auto !important;
      -ms-user-select: auto !important;
          user-select: auto !important;
  box-shadow: none !important;
}
.ts-control > input::-ms-clear {
  display: none;
}
.ts-control > input:focus {
  outline: none !important;
}
.has-items .ts-control > input {
  margin: 0 4px !important;
}
.ts-control.rtl {
  text-align: right;
}
.ts-control.rtl.single .ts-control:after {
  left: 15px;
  right: auto;
}
.ts-control.rtl .ts-control > input {
  margin: 0 4px 0 -2px !important;
}
.disabled .ts-control {
  opacity: 0.5;
  background-color: #fafafa;
}
.input-hidden .ts-control > input {
  opacity: 0;
  position: absolute;
  left: -10000px;
}

.ts-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 10;
  border: 1px solid #d0d0d0;
  background: #fff;
  margin: 0.25rem 0 0;
  border-top: 0 none;
  box-sizing: border-box;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 3px 3px;
}
.ts-dropdown [data-selectable] {
  cursor: pointer;
  overflow: hidden;
}
.ts-dropdown [data-selectable] .highlight {
  background: rgba(125, 168, 208, 0.2);
  border-radius: 1px;
}
.ts-dropdown .option,
.ts-dropdown .optgroup-header,
.ts-dropdown .no-results,
.ts-dropdown .create {
  padding: 5px 8px;
}
.ts-dropdown .option, .ts-dropdown [data-disabled], .ts-dropdown [data-disabled] [data-selectable].option {
  cursor: inherit;
  opacity: 0.5;
}
.ts-dropdown [data-selectable].option {
  opacity: 1;
  cursor: pointer;
}
.ts-dropdown .optgroup:first-child .optgroup-header {
  border-top: 0 none;
}
.ts-dropdown .optgroup-header {
  color: #303030;
  background: #fff;
  cursor: default;
}
.ts-dropdown .active {
  background-color: #f5fafd;
  color: #495c68;
}
.ts-dropdown .active.create {
  color: #495c68;
}
.ts-dropdown .create {
  color: rgba(48, 48, 48, 0.5);
}
.ts-dropdown .spinner {
  display: inline-block;
  width: 30px;
  height: 30px;
  margin: 5px 8px;
}
.ts-dropdown .spinner::after {
  content: " ";
  display: block;
  width: 24px;
  height: 24px;
  margin: 3px;
  border-radius: 50%;
  border: 5px solid #d0d0d0;
  border-color: #d0d0d0 transparent #d0d0d0 transparent;
  animation: lds-dual-ring 1.2s linear infinite;
}
@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.ts-dropdown-content {
  overflow: hidden auto;
  max-height: 200px;
  scroll-behavior: smooth;
}

.ts-wrapper.plugin-drag_drop .ts-dragging {
  color: transparent !important;
}
.ts-wrapper.plugin-drag_drop .ts-dragging > * {
  visibility: hidden !important;
}

.plugin-checkbox_options:not(.rtl) .option input {
  margin-right: 0.5rem;
}

.plugin-checkbox_options.rtl .option input {
  margin-left: 0.5rem;
}

/* stylelint-disable function-name-case */
.plugin-clear_button {
  --ts-pr-clear-button: 1em;
}
.plugin-clear_button .clear-button {
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: calc(8px - 6px);
  margin-right: 0 !important;
  background: transparent !important;
  transition: opacity 0.5s;
  cursor: pointer;
}
.plugin-clear_button.form-select .clear-button, .plugin-clear_button.single .clear-button {
  right: max(var(--ts-pr-caret), 8px);
}
.plugin-clear_button.focus.has-items .clear-button, .plugin-clear_button:not(.disabled):hover.has-items .clear-button {
  opacity: 1;
}

.ts-wrapper .dropdown-header {
  position: relative;
  padding: 10px 8px;
  border-bottom: 1px solid #d0d0d0;
  background: color-mix(#fff, #d0d0d0, 85%);
  border-radius: 3px 3px 0 0;
}
.ts-wrapper .dropdown-header-close {
  position: absolute;
  right: 8px;
  top: 50%;
  color: #303030;
  opacity: 0.4;
  margin-top: -12px;
  line-height: 20px;
  font-size: 20px !important;
}
.ts-wrapper .dropdown-header-close:hover {
  color: black;
}

.plugin-dropdown_input.focus.dropdown-active .ts-control {
  box-shadow: none;
  border: 1px solid #d0d0d0;
}
.plugin-dropdown_input .dropdown-input {
  border: 1px solid #d0d0d0;
  border-width: 0 0 1px;
  display: block;
  padding: 8px 8px;
  box-shadow: none;
  width: 100%;
  background: transparent;
}
.plugin-dropdown_input .items-placeholder {
  border: 0 none !important;
  box-shadow: none !important;
  width: 100%;
}
.plugin-dropdown_input.has-items .items-placeholder, .plugin-dropdown_input.dropdown-active .items-placeholder {
  display: none !important;
}

.ts-wrapper.plugin-input_autogrow.has-items .ts-control > input {
  min-width: 0;
}
.ts-wrapper.plugin-input_autogrow.has-items.focus .ts-control > input {
  flex: none;
  min-width: 4px;
}
.ts-wrapper.plugin-input_autogrow.has-items.focus .ts-control > input::-ms-input-placeholder {
  color: transparent;
}
.ts-wrapper.plugin-input_autogrow.has-items.focus .ts-control > input::placeholder {
  color: transparent;
}

.ts-dropdown.plugin-optgroup_columns .ts-dropdown-content {
  display: flex;
}
.ts-dropdown.plugin-optgroup_columns .optgroup {
  border-right: 1px solid #f2f2f2;
  border-top: 0 none;
  flex-grow: 1;
  flex-basis: 0;
  min-width: 0;
}
.ts-dropdown.plugin-optgroup_columns .optgroup:last-child {
  border-right: 0 none;
}
.ts-dropdown.plugin-optgroup_columns .optgroup::before {
  display: none;
}
.ts-dropdown.plugin-optgroup_columns .optgroup-header {
  border-top: 0 none;
}

.ts-wrapper.plugin-remove_button .item {
  display: inline-flex;
  align-items: center;
}
.ts-wrapper.plugin-remove_button .item .remove {
  color: inherit;
  text-decoration: none;
  vertical-align: middle;
  display: inline-block;
  padding: 0 6px;
  border-radius: 0 2px 2px 0;
  box-sizing: border-box;
}
.ts-wrapper.plugin-remove_button .item .remove:hover {
  background: rgba(0, 0, 0, 0.05);
}
.ts-wrapper.plugin-remove_button.disabled .item .remove:hover {
  background: none;
}
.ts-wrapper.plugin-remove_button .remove-single {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 23px;
}

.ts-wrapper.plugin-remove_button:not(.rtl) .item {
  padding-right: 0 !important;
}
.ts-wrapper.plugin-remove_button:not(.rtl) .item .remove {
  border-left: 1px solid #d0d0d0;
  margin-left: 6px;
}
.ts-wrapper.plugin-remove_button:not(.rtl) .item.active .remove {
  border-left-color: #cacaca;
}
.ts-wrapper.plugin-remove_button:not(.rtl).disabled .item .remove {
  border-left-color: white;
}

.ts-wrapper.plugin-remove_button.rtl .item {
  padding-left: 0 !important;
}
.ts-wrapper.plugin-remove_button.rtl .item .remove {
  border-right: 1px solid #d0d0d0;
  margin-right: 6px;
}
.ts-wrapper.plugin-remove_button.rtl .item.active .remove {
  border-right-color: #cacaca;
}
.ts-wrapper.plugin-remove_button.rtl.disabled .item .remove {
  border-right-color: white;
}

:root {
  --ts-pr-clear-button: 0px;
  --ts-pr-caret: 0px;
  --ts-pr-min: .75rem;
}

.ts-wrapper.single .ts-control, .ts-wrapper.single .ts-control input {
  cursor: pointer;
}

.ts-control:not(.rtl) {
  padding-right: max(var(--ts-pr-min), var(--ts-pr-clear-button) + var(--ts-pr-caret)) !important;
}

.ts-control.rtl {
  padding-left: max(var(--ts-pr-min), var(--ts-pr-clear-button) + var(--ts-pr-caret)) !important;
}

.ts-wrapper {
  position: relative;
}

.ts-dropdown,
.ts-control,
.ts-control input {
  color: #303030;
  font-family: inherit;
  font-size: 13px;
  line-height: 18px;
}

.ts-control,
.ts-wrapper.single.input-active .ts-control {
  background: #fff;
  cursor: text;
}

.ts-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
          clip-path: inset(50%) !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}
/*# sourceMappingURL=tom-select.css.map */
/*!
 * Bootstrap v3.4.1 (https://getbootstrap.com/)
 * Copyright 2011-2019 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}
audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden],
template {
  display: none;
}
a {
  background-color: transparent;
}
a:active,
a:hover {
  outline: 0;
}
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  -moz-text-decoration: underline dotted;
  text-decoration: underline dotted;
}
b,
strong {
  font-weight: bold;
}
dfn {
  font-style: italic;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
mark {
  background: #ff0;
  color: #000;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
img {
  border: 0;
}
svg:not(:root) {
  overflow: hidden;
}
figure {
  margin: 1em 40px;
}
hr {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}
pre {
  overflow: auto;
}
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}
button {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
button[disabled],
html input[disabled] {
  cursor: default;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
input {
  line-height: normal;
}
input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
input[type="search"] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
legend {
  border: 0;
  padding: 0;
}
textarea {
  overflow: auto;
}
optgroup {
  font-weight: bold;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  padding: 0;
}
/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
@media print {
  *,
  *:before,
  *:after {
    color: #000 !important;
    text-shadow: none !important;
    background: transparent !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: "";
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  .navbar {
    display: none;
  }
  .btn > .caret,
  .dropup > .btn > .caret {
    border-top-color: #000 !important;
  }
  .label {
    border: 1px solid #000;
  }
  .table {
    border-collapse: collapse !important;
  }
  .table td,
  .table th {
    background-color: #fff !important;
  }
  .table-bordered th,
  .table-bordered td {
    border: 1px solid #ddd !important;
  }
}
@font-face {
  font-family: "Glyphicons Halflings";
  src: url(/assets/bootstrap/dist/fonts/glyphicons-halflings-regular-0805fb1fe24235f70a639f67514990e4bfb6d2cfb00ca563ad4b553c240ddc33.eot);
  src: url(/assets/bootstrap/dist/fonts/glyphicons-halflings-regular-0805fb1fe24235f70a639f67514990e4bfb6d2cfb00ca563ad4b553c240ddc33.eot?#iefix) format("embedded-opentype"), url(/assets/bootstrap/dist/fonts/glyphicons-halflings-regular-403acfcf0cbaebd1c28b404eec442cea53642644b3a73f91c5a4ab46859af772.woff2) format("woff2"), url(/assets/bootstrap/dist/fonts/glyphicons-halflings-regular-0703369a358a012c0011843ae337a8a20270c336948a8668df5cb89a8827299b.woff) format("woff"), url(/assets/bootstrap/dist/fonts/glyphicons-halflings-regular-7c9caa5f4e16169b0129fdf93c84e85ad14d6c107eb1b0ad60b542daf01ee1f0.ttf) format("truetype"), url(/assets/bootstrap/dist/fonts/glyphicons-halflings-regular-22d0c88a49d7d0ebe45627143a601061a32a46a9b9afd2dc7f457436f5f15f6e.svg#glyphicons_halflingsregular) format("svg");
}
.glyphicon {
  position: relative;
  top: 1px;
  display: inline-block;
  font-family: "Glyphicons Halflings";
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.glyphicon-asterisk:before {
  content: "\002a";
}
.glyphicon-plus:before {
  content: "\002b";
}
.glyphicon-euro:before,
.glyphicon-eur:before {
  content: "\20ac";
}
.glyphicon-minus:before {
  content: "\2212";
}
.glyphicon-cloud:before {
  content: "\2601";
}
.glyphicon-envelope:before {
  content: "\2709";
}
.glyphicon-pencil:before {
  content: "\270f";
}
.glyphicon-glass:before {
  content: "\e001";
}
.glyphicon-music:before {
  content: "\e002";
}
.glyphicon-search:before {
  content: "\e003";
}
.glyphicon-heart:before {
  content: "\e005";
}
.glyphicon-star:before {
  content: "\e006";
}
.glyphicon-star-empty:before {
  content: "\e007";
}
.glyphicon-user:before {
  content: "\e008";
}
.glyphicon-film:before {
  content: "\e009";
}
.glyphicon-th-large:before {
  content: "\e010";
}
.glyphicon-th:before {
  content: "\e011";
}
.glyphicon-th-list:before {
  content: "\e012";
}
.glyphicon-ok:before {
  content: "\e013";
}
.glyphicon-remove:before {
  content: "\e014";
}
.glyphicon-zoom-in:before {
  content: "\e015";
}
.glyphicon-zoom-out:before {
  content: "\e016";
}
.glyphicon-off:before {
  content: "\e017";
}
.glyphicon-signal:before {
  content: "\e018";
}
.glyphicon-cog:before {
  content: "\e019";
}
.glyphicon-trash:before {
  content: "\e020";
}
.glyphicon-home:before {
  content: "\e021";
}
.glyphicon-file:before {
  content: "\e022";
}
.glyphicon-time:before {
  content: "\e023";
}
.glyphicon-road:before {
  content: "\e024";
}
.glyphicon-download-alt:before {
  content: "\e025";
}
.glyphicon-download:before {
  content: "\e026";
}
.glyphicon-upload:before {
  content: "\e027";
}
.glyphicon-inbox:before {
  content: "\e028";
}
.glyphicon-play-circle:before {
  content: "\e029";
}
.glyphicon-repeat:before {
  content: "\e030";
}
.glyphicon-refresh:before {
  content: "\e031";
}
.glyphicon-list-alt:before {
  content: "\e032";
}
.glyphicon-lock:before {
  content: "\e033";
}
.glyphicon-flag:before {
  content: "\e034";
}
.glyphicon-headphones:before {
  content: "\e035";
}
.glyphicon-volume-off:before {
  content: "\e036";
}
.glyphicon-volume-down:before {
  content: "\e037";
}
.glyphicon-volume-up:before {
  content: "\e038";
}
.glyphicon-qrcode:before {
  content: "\e039";
}
.glyphicon-barcode:before {
  content: "\e040";
}
.glyphicon-tag:before {
  content: "\e041";
}
.glyphicon-tags:before {
  content: "\e042";
}
.glyphicon-book:before {
  content: "\e043";
}
.glyphicon-bookmark:before {
  content: "\e044";
}
.glyphicon-print:before {
  content: "\e045";
}
.glyphicon-camera:before {
  content: "\e046";
}
.glyphicon-font:before {
  content: "\e047";
}
.glyphicon-bold:before {
  content: "\e048";
}
.glyphicon-italic:before {
  content: "\e049";
}
.glyphicon-text-height:before {
  content: "\e050";
}
.glyphicon-text-width:before {
  content: "\e051";
}
.glyphicon-align-left:before {
  content: "\e052";
}
.glyphicon-align-center:before {
  content: "\e053";
}
.glyphicon-align-right:before {
  content: "\e054";
}
.glyphicon-align-justify:before {
  content: "\e055";
}
.glyphicon-list:before {
  content: "\e056";
}
.glyphicon-indent-left:before {
  content: "\e057";
}
.glyphicon-indent-right:before {
  content: "\e058";
}
.glyphicon-facetime-video:before {
  content: "\e059";
}
.glyphicon-picture:before {
  content: "\e060";
}
.glyphicon-map-marker:before {
  content: "\e062";
}
.glyphicon-adjust:before {
  content: "\e063";
}
.glyphicon-tint:before {
  content: "\e064";
}
.glyphicon-edit:before {
  content: "\e065";
}
.glyphicon-share:before {
  content: "\e066";
}
.glyphicon-check:before {
  content: "\e067";
}
.glyphicon-move:before {
  content: "\e068";
}
.glyphicon-step-backward:before {
  content: "\e069";
}
.glyphicon-fast-backward:before {
  content: "\e070";
}
.glyphicon-backward:before {
  content: "\e071";
}
.glyphicon-play:before {
  content: "\e072";
}
.glyphicon-pause:before {
  content: "\e073";
}
.glyphicon-stop:before {
  content: "\e074";
}
.glyphicon-forward:before {
  content: "\e075";
}
.glyphicon-fast-forward:before {
  content: "\e076";
}
.glyphicon-step-forward:before {
  content: "\e077";
}
.glyphicon-eject:before {
  content: "\e078";
}
.glyphicon-chevron-left:before {
  content: "\e079";
}
.glyphicon-chevron-right:before {
  content: "\e080";
}
.glyphicon-plus-sign:before {
  content: "\e081";
}
.glyphicon-minus-sign:before {
  content: "\e082";
}
.glyphicon-remove-sign:before {
  content: "\e083";
}
.glyphicon-ok-sign:before {
  content: "\e084";
}
.glyphicon-question-sign:before {
  content: "\e085";
}
.glyphicon-info-sign:before {
  content: "\e086";
}
.glyphicon-screenshot:before {
  content: "\e087";
}
.glyphicon-remove-circle:before {
  content: "\e088";
}
.glyphicon-ok-circle:before {
  content: "\e089";
}
.glyphicon-ban-circle:before {
  content: "\e090";
}
.glyphicon-arrow-left:before {
  content: "\e091";
}
.glyphicon-arrow-right:before {
  content: "\e092";
}
.glyphicon-arrow-up:before {
  content: "\e093";
}
.glyphicon-arrow-down:before {
  content: "\e094";
}
.glyphicon-share-alt:before {
  content: "\e095";
}
.glyphicon-resize-full:before {
  content: "\e096";
}
.glyphicon-resize-small:before {
  content: "\e097";
}
.glyphicon-exclamation-sign:before {
  content: "\e101";
}
.glyphicon-gift:before {
  content: "\e102";
}
.glyphicon-leaf:before {
  content: "\e103";
}
.glyphicon-fire:before {
  content: "\e104";
}
.glyphicon-eye-open:before {
  content: "\e105";
}
.glyphicon-eye-close:before {
  content: "\e106";
}
.glyphicon-warning-sign:before {
  content: "\e107";
}
.glyphicon-plane:before {
  content: "\e108";
}
.glyphicon-calendar:before {
  content: "\e109";
}
.glyphicon-random:before {
  content: "\e110";
}
.glyphicon-comment:before {
  content: "\e111";
}
.glyphicon-magnet:before {
  content: "\e112";
}
.glyphicon-chevron-up:before {
  content: "\e113";
}
.glyphicon-chevron-down:before {
  content: "\e114";
}
.glyphicon-retweet:before {
  content: "\e115";
}
.glyphicon-shopping-cart:before {
  content: "\e116";
}
.glyphicon-folder-close:before {
  content: "\e117";
}
.glyphicon-folder-open:before {
  content: "\e118";
}
.glyphicon-resize-vertical:before {
  content: "\e119";
}
.glyphicon-resize-horizontal:before {
  content: "\e120";
}
.glyphicon-hdd:before {
  content: "\e121";
}
.glyphicon-bullhorn:before {
  content: "\e122";
}
.glyphicon-bell:before {
  content: "\e123";
}
.glyphicon-certificate:before {
  content: "\e124";
}
.glyphicon-thumbs-up:before {
  content: "\e125";
}
.glyphicon-thumbs-down:before {
  content: "\e126";
}
.glyphicon-hand-right:before {
  content: "\e127";
}
.glyphicon-hand-left:before {
  content: "\e128";
}
.glyphicon-hand-up:before {
  content: "\e129";
}
.glyphicon-hand-down:before {
  content: "\e130";
}
.glyphicon-circle-arrow-right:before {
  content: "\e131";
}
.glyphicon-circle-arrow-left:before {
  content: "\e132";
}
.glyphicon-circle-arrow-up:before {
  content: "\e133";
}
.glyphicon-circle-arrow-down:before {
  content: "\e134";
}
.glyphicon-globe:before {
  content: "\e135";
}
.glyphicon-wrench:before {
  content: "\e136";
}
.glyphicon-tasks:before {
  content: "\e137";
}
.glyphicon-filter:before {
  content: "\e138";
}
.glyphicon-briefcase:before {
  content: "\e139";
}
.glyphicon-fullscreen:before {
  content: "\e140";
}
.glyphicon-dashboard:before {
  content: "\e141";
}
.glyphicon-paperclip:before {
  content: "\e142";
}
.glyphicon-heart-empty:before {
  content: "\e143";
}
.glyphicon-link:before {
  content: "\e144";
}
.glyphicon-phone:before {
  content: "\e145";
}
.glyphicon-pushpin:before {
  content: "\e146";
}
.glyphicon-usd:before {
  content: "\e148";
}
.glyphicon-gbp:before {
  content: "\e149";
}
.glyphicon-sort:before {
  content: "\e150";
}
.glyphicon-sort-by-alphabet:before {
  content: "\e151";
}
.glyphicon-sort-by-alphabet-alt:before {
  content: "\e152";
}
.glyphicon-sort-by-order:before {
  content: "\e153";
}
.glyphicon-sort-by-order-alt:before {
  content: "\e154";
}
.glyphicon-sort-by-attributes:before {
  content: "\e155";
}
.glyphicon-sort-by-attributes-alt:before {
  content: "\e156";
}
.glyphicon-unchecked:before {
  content: "\e157";
}
.glyphicon-expand:before {
  content: "\e158";
}
.glyphicon-collapse-down:before {
  content: "\e159";
}
.glyphicon-collapse-up:before {
  content: "\e160";
}
.glyphicon-log-in:before {
  content: "\e161";
}
.glyphicon-flash:before {
  content: "\e162";
}
.glyphicon-log-out:before {
  content: "\e163";
}
.glyphicon-new-window:before {
  content: "\e164";
}
.glyphicon-record:before {
  content: "\e165";
}
.glyphicon-save:before {
  content: "\e166";
}
.glyphicon-open:before {
  content: "\e167";
}
.glyphicon-saved:before {
  content: "\e168";
}
.glyphicon-import:before {
  content: "\e169";
}
.glyphicon-export:before {
  content: "\e170";
}
.glyphicon-send:before {
  content: "\e171";
}
.glyphicon-floppy-disk:before {
  content: "\e172";
}
.glyphicon-floppy-saved:before {
  content: "\e173";
}
.glyphicon-floppy-remove:before {
  content: "\e174";
}
.glyphicon-floppy-save:before {
  content: "\e175";
}
.glyphicon-floppy-open:before {
  content: "\e176";
}
.glyphicon-credit-card:before {
  content: "\e177";
}
.glyphicon-transfer:before {
  content: "\e178";
}
.glyphicon-cutlery:before {
  content: "\e179";
}
.glyphicon-header:before {
  content: "\e180";
}
.glyphicon-compressed:before {
  content: "\e181";
}
.glyphicon-earphone:before {
  content: "\e182";
}
.glyphicon-phone-alt:before {
  content: "\e183";
}
.glyphicon-tower:before {
  content: "\e184";
}
.glyphicon-stats:before {
  content: "\e185";
}
.glyphicon-sd-video:before {
  content: "\e186";
}
.glyphicon-hd-video:before {
  content: "\e187";
}
.glyphicon-subtitles:before {
  content: "\e188";
}
.glyphicon-sound-stereo:before {
  content: "\e189";
}
.glyphicon-sound-dolby:before {
  content: "\e190";
}
.glyphicon-sound-5-1:before {
  content: "\e191";
}
.glyphicon-sound-6-1:before {
  content: "\e192";
}
.glyphicon-sound-7-1:before {
  content: "\e193";
}
.glyphicon-copyright-mark:before {
  content: "\e194";
}
.glyphicon-registration-mark:before {
  content: "\e195";
}
.glyphicon-cloud-download:before {
  content: "\e197";
}
.glyphicon-cloud-upload:before {
  content: "\e198";
}
.glyphicon-tree-conifer:before {
  content: "\e199";
}
.glyphicon-tree-deciduous:before {
  content: "\e200";
}
.glyphicon-cd:before {
  content: "\e201";
}
.glyphicon-save-file:before {
  content: "\e202";
}
.glyphicon-open-file:before {
  content: "\e203";
}
.glyphicon-level-up:before {
  content: "\e204";
}
.glyphicon-copy:before {
  content: "\e205";
}
.glyphicon-paste:before {
  content: "\e206";
}
.glyphicon-alert:before {
  content: "\e209";
}
.glyphicon-equalizer:before {
  content: "\e210";
}
.glyphicon-king:before {
  content: "\e211";
}
.glyphicon-queen:before {
  content: "\e212";
}
.glyphicon-pawn:before {
  content: "\e213";
}
.glyphicon-bishop:before {
  content: "\e214";
}
.glyphicon-knight:before {
  content: "\e215";
}
.glyphicon-baby-formula:before {
  content: "\e216";
}
.glyphicon-tent:before {
  content: "\26fa";
}
.glyphicon-blackboard:before {
  content: "\e218";
}
.glyphicon-bed:before {
  content: "\e219";
}
.glyphicon-apple:before {
  content: "\f8ff";
}
.glyphicon-erase:before {
  content: "\e221";
}
.glyphicon-hourglass:before {
  content: "\231b";
}
.glyphicon-lamp:before {
  content: "\e223";
}
.glyphicon-duplicate:before {
  content: "\e224";
}
.glyphicon-piggy-bank:before {
  content: "\e225";
}
.glyphicon-scissors:before {
  content: "\e226";
}
.glyphicon-bitcoin:before {
  content: "\e227";
}
.glyphicon-btc:before {
  content: "\e227";
}
.glyphicon-xbt:before {
  content: "\e227";
}
.glyphicon-yen:before {
  content: "\00a5";
}
.glyphicon-jpy:before {
  content: "\00a5";
}
.glyphicon-ruble:before {
  content: "\20bd";
}
.glyphicon-rub:before {
  content: "\20bd";
}
.glyphicon-scale:before {
  content: "\e230";
}
.glyphicon-ice-lolly:before {
  content: "\e231";
}
.glyphicon-ice-lolly-tasted:before {
  content: "\e232";
}
.glyphicon-education:before {
  content: "\e233";
}
.glyphicon-option-horizontal:before {
  content: "\e234";
}
.glyphicon-option-vertical:before {
  content: "\e235";
}
.glyphicon-menu-hamburger:before {
  content: "\e236";
}
.glyphicon-modal-window:before {
  content: "\e237";
}
.glyphicon-oil:before {
  content: "\e238";
}
.glyphicon-grain:before {
  content: "\e239";
}
.glyphicon-sunglasses:before {
  content: "\e240";
}
.glyphicon-text-size:before {
  content: "\e241";
}
.glyphicon-text-color:before {
  content: "\e242";
}
.glyphicon-text-background:before {
  content: "\e243";
}
.glyphicon-object-align-top:before {
  content: "\e244";
}
.glyphicon-object-align-bottom:before {
  content: "\e245";
}
.glyphicon-object-align-horizontal:before {
  content: "\e246";
}
.glyphicon-object-align-left:before {
  content: "\e247";
}
.glyphicon-object-align-vertical:before {
  content: "\e248";
}
.glyphicon-object-align-right:before {
  content: "\e249";
}
.glyphicon-triangle-right:before {
  content: "\e250";
}
.glyphicon-triangle-left:before {
  content: "\e251";
}
.glyphicon-triangle-bottom:before {
  content: "\e252";
}
.glyphicon-triangle-top:before {
  content: "\e253";
}
.glyphicon-console:before {
  content: "\e254";
}
.glyphicon-superscript:before {
  content: "\e255";
}
.glyphicon-subscript:before {
  content: "\e256";
}
.glyphicon-menu-left:before {
  content: "\e257";
}
.glyphicon-menu-right:before {
  content: "\e258";
}
.glyphicon-menu-down:before {
  content: "\e259";
}
.glyphicon-menu-up:before {
  content: "\e260";
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  font-size: 10px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.42857143;
  color: #333333;
  background-color: #fff;
}
input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
a {
  color: #337ab7;
  text-decoration: none;
}
a:hover,
a:focus {
  color: #23527c;
  text-decoration: underline;
}
a:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
figure {
  margin: 0;
}
img {
  vertical-align: middle;
}
.img-responsive,
.thumbnail > img,
.thumbnail a > img,
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  display: block;
  max-width: 100%;
  height: auto;
}
.img-rounded {
  border-radius: 6px;
}
.img-thumbnail {
  padding: 4px;
  line-height: 1.42857143;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  max-width: 100%;
  height: auto;
}
.img-circle {
  border-radius: 50%;
}
hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #eeeeee;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}
[role="button"] {
  cursor: pointer;
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  color: inherit;
}
h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small,
.h1 small,
.h2 small,
.h3 small,
.h4 small,
.h5 small,
.h6 small,
h1 .small,
h2 .small,
h3 .small,
h4 .small,
h5 .small,
h6 .small,
.h1 .small,
.h2 .small,
.h3 .small,
.h4 .small,
.h5 .small,
.h6 .small {
  font-weight: 400;
  line-height: 1;
  color: #777777;
}
h1,
.h1,
h2,
.h2,
h3,
.h3 {
  margin-top: 20px;
  margin-bottom: 10px;
}
h1 small,
.h1 small,
h2 small,
.h2 small,
h3 small,
.h3 small,
h1 .small,
.h1 .small,
h2 .small,
.h2 .small,
h3 .small,
.h3 .small {
  font-size: 65%;
}
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  margin-top: 10px;
  margin-bottom: 10px;
}
h4 small,
.h4 small,
h5 small,
.h5 small,
h6 small,
.h6 small,
h4 .small,
.h4 .small,
h5 .small,
.h5 .small,
h6 .small,
.h6 .small {
  font-size: 75%;
}
h1,
.h1 {
  font-size: 36px;
}
h2,
.h2 {
  font-size: 30px;
}
h3,
.h3 {
  font-size: 24px;
}
h4,
.h4 {
  font-size: 18px;
}
h5,
.h5 {
  font-size: 14px;
}
h6,
.h6 {
  font-size: 12px;
}
p {
  margin: 0 0 10px;
}
.lead {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .lead {
    font-size: 21px;
  }
}
small,
.small {
  font-size: 85%;
}
mark,
.mark {
  padding: 0.2em;
  background-color: #fcf8e3;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.text-justify {
  text-align: justify;
}
.text-nowrap {
  white-space: nowrap;
}
.text-lowercase {
  text-transform: lowercase;
}
.text-uppercase {
  text-transform: uppercase;
}
.text-capitalize {
  text-transform: capitalize;
}
.text-muted {
  color: #777777;
}
.text-primary {
  color: #337ab7;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #286090;
}
.text-success {
  color: #3c763d;
}
a.text-success:hover,
a.text-success:focus {
  color: #2b542c;
}
.text-info {
  color: #31708f;
}
a.text-info:hover,
a.text-info:focus {
  color: #245269;
}
.text-warning {
  color: #8a6d3b;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #66512c;
}
.text-danger {
  color: #a94442;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #843534;
}
.bg-primary {
  color: #fff;
  background-color: #337ab7;
}
a.bg-primary:hover,
a.bg-primary:focus {
  background-color: #286090;
}
.bg-success {
  background-color: #dff0d8;
}
a.bg-success:hover,
a.bg-success:focus {
  background-color: #c1e2b3;
}
.bg-info {
  background-color: #d9edf7;
}
a.bg-info:hover,
a.bg-info:focus {
  background-color: #afd9ee;
}
.bg-warning {
  background-color: #fcf8e3;
}
a.bg-warning:hover,
a.bg-warning:focus {
  background-color: #f7ecb5;
}
.bg-danger {
  background-color: #f2dede;
}
a.bg-danger:hover,
a.bg-danger:focus {
  background-color: #e4b9b9;
}
.page-header {
  padding-bottom: 9px;
  margin: 40px 0 20px;
  border-bottom: 1px solid #eeeeee;
}
ul,
ol {
  margin-top: 0;
  margin-bottom: 10px;
}
ul ul,
ol ul,
ul ol,
ol ol {
  margin-bottom: 0;
}
.list-unstyled {
  padding-left: 0;
  list-style: none;
}
.list-inline {
  padding-left: 0;
  list-style: none;
  margin-left: -5px;
}
.list-inline > li {
  display: inline-block;
  padding-right: 5px;
  padding-left: 5px;
}
dl {
  margin-top: 0;
  margin-bottom: 20px;
}
dt,
dd {
  line-height: 1.42857143;
}
dt {
  font-weight: 700;
}
dd {
  margin-left: 0;
}
@media (min-width: 768px) {
  .dl-horizontal dt {
    float: left;
    width: 160px;
    clear: left;
    text-align: right;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .dl-horizontal dd {
    margin-left: 180px;
  }
}
abbr[title],
abbr[data-original-title] {
  cursor: help;
}
.initialism {
  font-size: 90%;
  text-transform: uppercase;
}
blockquote {
  padding: 10px 20px;
  margin: 0 0 20px;
  font-size: 17.5px;
  border-left: 5px solid #eeeeee;
}
blockquote p:last-child,
blockquote ul:last-child,
blockquote ol:last-child {
  margin-bottom: 0;
}
blockquote footer,
blockquote small,
blockquote .small {
  display: block;
  font-size: 80%;
  line-height: 1.42857143;
  color: #777777;
}
blockquote footer:before,
blockquote small:before,
blockquote .small:before {
  content: "\2014 \00A0";
}
.blockquote-reverse,
blockquote.pull-right {
  padding-right: 15px;
  padding-left: 0;
  text-align: right;
  border-right: 5px solid #eeeeee;
  border-left: 0;
}
.blockquote-reverse footer:before,
blockquote.pull-right footer:before,
.blockquote-reverse small:before,
blockquote.pull-right small:before,
.blockquote-reverse .small:before,
blockquote.pull-right .small:before {
  content: "";
}
.blockquote-reverse footer:after,
blockquote.pull-right footer:after,
.blockquote-reverse small:after,
blockquote.pull-right small:after,
.blockquote-reverse .small:after,
blockquote.pull-right .small:after {
  content: "\00A0 \2014";
}
address {
  margin-bottom: 20px;
  font-style: normal;
  line-height: 1.42857143;
}
code,
kbd,
pre,
samp {
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
}
code {
  padding: 2px 4px;
  font-size: 90%;
  color: #c7254e;
  background-color: #f9f2f4;
  border-radius: 4px;
}
kbd {
  padding: 2px 4px;
  font-size: 90%;
  color: #fff;
  background-color: #333;
  border-radius: 3px;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
}
kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: 700;
  -webkit-box-shadow: none;
  box-shadow: none;
}
pre {
  display: block;
  padding: 9.5px;
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.42857143;
  color: #333333;
  word-break: break-all;
  word-wrap: break-word;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  border-radius: 4px;
}
pre code {
  padding: 0;
  font-size: inherit;
  color: inherit;
  white-space: pre-wrap;
  background-color: transparent;
  border-radius: 0;
}
.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}
.container {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}
.container-fluid {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
.row {
  margin-right: -15px;
  margin-left: -15px;
}
.row-no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.row-no-gutters [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}
.col-xs-1,
.col-sm-1,
.col-md-1,
.col-lg-1,
.col-xs-2,
.col-sm-2,
.col-md-2,
.col-lg-2,
.col-xs-3,
.col-sm-3,
.col-md-3,
.col-lg-3,
.col-xs-4,
.col-sm-4,
.col-md-4,
.col-lg-4,
.col-xs-5,
.col-sm-5,
.col-md-5,
.col-lg-5,
.col-xs-6,
.col-sm-6,
.col-md-6,
.col-lg-6,
.col-xs-7,
.col-sm-7,
.col-md-7,
.col-lg-7,
.col-xs-8,
.col-sm-8,
.col-md-8,
.col-lg-8,
.col-xs-9,
.col-sm-9,
.col-md-9,
.col-lg-9,
.col-xs-10,
.col-sm-10,
.col-md-10,
.col-lg-10,
.col-xs-11,
.col-sm-11,
.col-md-11,
.col-lg-11,
.col-xs-12,
.col-sm-12,
.col-md-12,
.col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}
.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12 {
  float: left;
}
.col-xs-12 {
  width: 100%;
}
.col-xs-11 {
  width: 91.66666667%;
}
.col-xs-10 {
  width: 83.33333333%;
}
.col-xs-9 {
  width: 75%;
}
.col-xs-8 {
  width: 66.66666667%;
}
.col-xs-7 {
  width: 58.33333333%;
}
.col-xs-6 {
  width: 50%;
}
.col-xs-5 {
  width: 41.66666667%;
}
.col-xs-4 {
  width: 33.33333333%;
}
.col-xs-3 {
  width: 25%;
}
.col-xs-2 {
  width: 16.66666667%;
}
.col-xs-1 {
  width: 8.33333333%;
}
.col-xs-pull-12 {
  right: 100%;
}
.col-xs-pull-11 {
  right: 91.66666667%;
}
.col-xs-pull-10 {
  right: 83.33333333%;
}
.col-xs-pull-9 {
  right: 75%;
}
.col-xs-pull-8 {
  right: 66.66666667%;
}
.col-xs-pull-7 {
  right: 58.33333333%;
}
.col-xs-pull-6 {
  right: 50%;
}
.col-xs-pull-5 {
  right: 41.66666667%;
}
.col-xs-pull-4 {
  right: 33.33333333%;
}
.col-xs-pull-3 {
  right: 25%;
}
.col-xs-pull-2 {
  right: 16.66666667%;
}
.col-xs-pull-1 {
  right: 8.33333333%;
}
.col-xs-pull-0 {
  right: auto;
}
.col-xs-push-12 {
  left: 100%;
}
.col-xs-push-11 {
  left: 91.66666667%;
}
.col-xs-push-10 {
  left: 83.33333333%;
}
.col-xs-push-9 {
  left: 75%;
}
.col-xs-push-8 {
  left: 66.66666667%;
}
.col-xs-push-7 {
  left: 58.33333333%;
}
.col-xs-push-6 {
  left: 50%;
}
.col-xs-push-5 {
  left: 41.66666667%;
}
.col-xs-push-4 {
  left: 33.33333333%;
}
.col-xs-push-3 {
  left: 25%;
}
.col-xs-push-2 {
  left: 16.66666667%;
}
.col-xs-push-1 {
  left: 8.33333333%;
}
.col-xs-push-0 {
  left: auto;
}
.col-xs-offset-12 {
  margin-left: 100%;
}
.col-xs-offset-11 {
  margin-left: 91.66666667%;
}
.col-xs-offset-10 {
  margin-left: 83.33333333%;
}
.col-xs-offset-9 {
  margin-left: 75%;
}
.col-xs-offset-8 {
  margin-left: 66.66666667%;
}
.col-xs-offset-7 {
  margin-left: 58.33333333%;
}
.col-xs-offset-6 {
  margin-left: 50%;
}
.col-xs-offset-5 {
  margin-left: 41.66666667%;
}
.col-xs-offset-4 {
  margin-left: 33.33333333%;
}
.col-xs-offset-3 {
  margin-left: 25%;
}
.col-xs-offset-2 {
  margin-left: 16.66666667%;
}
.col-xs-offset-1 {
  margin-left: 8.33333333%;
}
.col-xs-offset-0 {
  margin-left: 0%;
}
@media (min-width: 768px) {
  .col-sm-1,
  .col-sm-2,
  .col-sm-3,
  .col-sm-4,
  .col-sm-5,
  .col-sm-6,
  .col-sm-7,
  .col-sm-8,
  .col-sm-9,
  .col-sm-10,
  .col-sm-11,
  .col-sm-12 {
    float: left;
  }
  .col-sm-12 {
    width: 100%;
  }
  .col-sm-11 {
    width: 91.66666667%;
  }
  .col-sm-10 {
    width: 83.33333333%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-8 {
    width: 66.66666667%;
  }
  .col-sm-7 {
    width: 58.33333333%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-5 {
    width: 41.66666667%;
  }
  .col-sm-4 {
    width: 33.33333333%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-2 {
    width: 16.66666667%;
  }
  .col-sm-1 {
    width: 8.33333333%;
  }
  .col-sm-pull-12 {
    right: 100%;
  }
  .col-sm-pull-11 {
    right: 91.66666667%;
  }
  .col-sm-pull-10 {
    right: 83.33333333%;
  }
  .col-sm-pull-9 {
    right: 75%;
  }
  .col-sm-pull-8 {
    right: 66.66666667%;
  }
  .col-sm-pull-7 {
    right: 58.33333333%;
  }
  .col-sm-pull-6 {
    right: 50%;
  }
  .col-sm-pull-5 {
    right: 41.66666667%;
  }
  .col-sm-pull-4 {
    right: 33.33333333%;
  }
  .col-sm-pull-3 {
    right: 25%;
  }
  .col-sm-pull-2 {
    right: 16.66666667%;
  }
  .col-sm-pull-1 {
    right: 8.33333333%;
  }
  .col-sm-pull-0 {
    right: auto;
  }
  .col-sm-push-12 {
    left: 100%;
  }
  .col-sm-push-11 {
    left: 91.66666667%;
  }
  .col-sm-push-10 {
    left: 83.33333333%;
  }
  .col-sm-push-9 {
    left: 75%;
  }
  .col-sm-push-8 {
    left: 66.66666667%;
  }
  .col-sm-push-7 {
    left: 58.33333333%;
  }
  .col-sm-push-6 {
    left: 50%;
  }
  .col-sm-push-5 {
    left: 41.66666667%;
  }
  .col-sm-push-4 {
    left: 33.33333333%;
  }
  .col-sm-push-3 {
    left: 25%;
  }
  .col-sm-push-2 {
    left: 16.66666667%;
  }
  .col-sm-push-1 {
    left: 8.33333333%;
  }
  .col-sm-push-0 {
    left: auto;
  }
  .col-sm-offset-12 {
    margin-left: 100%;
  }
  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-sm-offset-0 {
    margin-left: 0%;
  }
}
@media (min-width: 992px) {
  .col-md-1,
  .col-md-2,
  .col-md-3,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7,
  .col-md-8,
  .col-md-9,
  .col-md-10,
  .col-md-11,
  .col-md-12 {
    float: left;
  }
  .col-md-12 {
    width: 100%;
  }
  .col-md-11 {
    width: 91.66666667%;
  }
  .col-md-10 {
    width: 83.33333333%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-8 {
    width: 66.66666667%;
  }
  .col-md-7 {
    width: 58.33333333%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-5 {
    width: 41.66666667%;
  }
  .col-md-4 {
    width: 33.33333333%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-2 {
    width: 16.66666667%;
  }
  .col-md-1 {
    width: 8.33333333%;
  }
  .col-md-pull-12 {
    right: 100%;
  }
  .col-md-pull-11 {
    right: 91.66666667%;
  }
  .col-md-pull-10 {
    right: 83.33333333%;
  }
  .col-md-pull-9 {
    right: 75%;
  }
  .col-md-pull-8 {
    right: 66.66666667%;
  }
  .col-md-pull-7 {
    right: 58.33333333%;
  }
  .col-md-pull-6 {
    right: 50%;
  }
  .col-md-pull-5 {
    right: 41.66666667%;
  }
  .col-md-pull-4 {
    right: 33.33333333%;
  }
  .col-md-pull-3 {
    right: 25%;
  }
  .col-md-pull-2 {
    right: 16.66666667%;
  }
  .col-md-pull-1 {
    right: 8.33333333%;
  }
  .col-md-pull-0 {
    right: auto;
  }
  .col-md-push-12 {
    left: 100%;
  }
  .col-md-push-11 {
    left: 91.66666667%;
  }
  .col-md-push-10 {
    left: 83.33333333%;
  }
  .col-md-push-9 {
    left: 75%;
  }
  .col-md-push-8 {
    left: 66.66666667%;
  }
  .col-md-push-7 {
    left: 58.33333333%;
  }
  .col-md-push-6 {
    left: 50%;
  }
  .col-md-push-5 {
    left: 41.66666667%;
  }
  .col-md-push-4 {
    left: 33.33333333%;
  }
  .col-md-push-3 {
    left: 25%;
  }
  .col-md-push-2 {
    left: 16.66666667%;
  }
  .col-md-push-1 {
    left: 8.33333333%;
  }
  .col-md-push-0 {
    left: auto;
  }
  .col-md-offset-12 {
    margin-left: 100%;
  }
  .col-md-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-md-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-md-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-md-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-md-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-md-offset-0 {
    margin-left: 0%;
  }
}
@media (min-width: 1200px) {
  .col-lg-1,
  .col-lg-2,
  .col-lg-3,
  .col-lg-4,
  .col-lg-5,
  .col-lg-6,
  .col-lg-7,
  .col-lg-8,
  .col-lg-9,
  .col-lg-10,
  .col-lg-11,
  .col-lg-12 {
    float: left;
  }
  .col-lg-12 {
    width: 100%;
  }
  .col-lg-11 {
    width: 91.66666667%;
  }
  .col-lg-10 {
    width: 83.33333333%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-8 {
    width: 66.66666667%;
  }
  .col-lg-7 {
    width: 58.33333333%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-5 {
    width: 41.66666667%;
  }
  .col-lg-4 {
    width: 33.33333333%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-2 {
    width: 16.66666667%;
  }
  .col-lg-1 {
    width: 8.33333333%;
  }
  .col-lg-pull-12 {
    right: 100%;
  }
  .col-lg-pull-11 {
    right: 91.66666667%;
  }
  .col-lg-pull-10 {
    right: 83.33333333%;
  }
  .col-lg-pull-9 {
    right: 75%;
  }
  .col-lg-pull-8 {
    right: 66.66666667%;
  }
  .col-lg-pull-7 {
    right: 58.33333333%;
  }
  .col-lg-pull-6 {
    right: 50%;
  }
  .col-lg-pull-5 {
    right: 41.66666667%;
  }
  .col-lg-pull-4 {
    right: 33.33333333%;
  }
  .col-lg-pull-3 {
    right: 25%;
  }
  .col-lg-pull-2 {
    right: 16.66666667%;
  }
  .col-lg-pull-1 {
    right: 8.33333333%;
  }
  .col-lg-pull-0 {
    right: auto;
  }
  .col-lg-push-12 {
    left: 100%;
  }
  .col-lg-push-11 {
    left: 91.66666667%;
  }
  .col-lg-push-10 {
    left: 83.33333333%;
  }
  .col-lg-push-9 {
    left: 75%;
  }
  .col-lg-push-8 {
    left: 66.66666667%;
  }
  .col-lg-push-7 {
    left: 58.33333333%;
  }
  .col-lg-push-6 {
    left: 50%;
  }
  .col-lg-push-5 {
    left: 41.66666667%;
  }
  .col-lg-push-4 {
    left: 33.33333333%;
  }
  .col-lg-push-3 {
    left: 25%;
  }
  .col-lg-push-2 {
    left: 16.66666667%;
  }
  .col-lg-push-1 {
    left: 8.33333333%;
  }
  .col-lg-push-0 {
    left: auto;
  }
  .col-lg-offset-12 {
    margin-left: 100%;
  }
  .col-lg-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-lg-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-lg-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-lg-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-lg-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-lg-offset-0 {
    margin-left: 0%;
  }
}
table {
  background-color: transparent;
}
table col[class*="col-"] {
  position: static;
  display: table-column;
  float: none;
}
table td[class*="col-"],
table th[class*="col-"] {
  position: static;
  display: table-cell;
  float: none;
}
caption {
  padding-top: 8px;
  padding-bottom: 8px;
  color: #777777;
  text-align: left;
}
th {
  text-align: left;
}
.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
}
.table > thead > tr > th,
.table > tbody > tr > th,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > tbody > tr > td,
.table > tfoot > tr > td {
  padding: 8px;
  line-height: 1.42857143;
  vertical-align: top;
  border-top: 1px solid #ddd;
}
.table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 2px solid #ddd;
}
.table > caption + thead > tr:first-child > th,
.table > colgroup + thead > tr:first-child > th,
.table > thead:first-child > tr:first-child > th,
.table > caption + thead > tr:first-child > td,
.table > colgroup + thead > tr:first-child > td,
.table > thead:first-child > tr:first-child > td {
  border-top: 0;
}
.table > tbody + tbody {
  border-top: 2px solid #ddd;
}
.table .table {
  background-color: #fff;
}
.table-condensed > thead > tr > th,
.table-condensed > tbody > tr > th,
.table-condensed > tfoot > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > td {
  padding: 5px;
}
.table-bordered {
  border: 1px solid #ddd;
}
.table-bordered > thead > tr > th,
.table-bordered > tbody > tr > th,
.table-bordered > tfoot > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > td {
  border: 1px solid #ddd;
}
.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td {
  border-bottom-width: 2px;
}
.table-striped > tbody > tr:nth-of-type(odd) {
  background-color: #f9f9f9;
}
.table-hover > tbody > tr:hover {
  background-color: #f5f5f5;
}
.table > thead > tr > td.active,
.table > tbody > tr > td.active,
.table > tfoot > tr > td.active,
.table > thead > tr > th.active,
.table > tbody > tr > th.active,
.table > tfoot > tr > th.active,
.table > thead > tr.active > td,
.table > tbody > tr.active > td,
.table > tfoot > tr.active > td,
.table > thead > tr.active > th,
.table > tbody > tr.active > th,
.table > tfoot > tr.active > th {
  background-color: #f5f5f5;
}
.table-hover > tbody > tr > td.active:hover,
.table-hover > tbody > tr > th.active:hover,
.table-hover > tbody > tr.active:hover > td,
.table-hover > tbody > tr:hover > .active,
.table-hover > tbody > tr.active:hover > th {
  background-color: #e8e8e8;
}
.table > thead > tr > td.success,
.table > tbody > tr > td.success,
.table > tfoot > tr > td.success,
.table > thead > tr > th.success,
.table > tbody > tr > th.success,
.table > tfoot > tr > th.success,
.table > thead > tr.success > td,
.table > tbody > tr.success > td,
.table > tfoot > tr.success > td,
.table > thead > tr.success > th,
.table > tbody > tr.success > th,
.table > tfoot > tr.success > th {
  background-color: #dff0d8;
}
.table-hover > tbody > tr > td.success:hover,
.table-hover > tbody > tr > th.success:hover,
.table-hover > tbody > tr.success:hover > td,
.table-hover > tbody > tr:hover > .success,
.table-hover > tbody > tr.success:hover > th {
  background-color: #d0e9c6;
}
.table > thead > tr > td.info,
.table > tbody > tr > td.info,
.table > tfoot > tr > td.info,
.table > thead > tr > th.info,
.table > tbody > tr > th.info,
.table > tfoot > tr > th.info,
.table > thead > tr.info > td,
.table > tbody > tr.info > td,
.table > tfoot > tr.info > td,
.table > thead > tr.info > th,
.table > tbody > tr.info > th,
.table > tfoot > tr.info > th {
  background-color: #d9edf7;
}
.table-hover > tbody > tr > td.info:hover,
.table-hover > tbody > tr > th.info:hover,
.table-hover > tbody > tr.info:hover > td,
.table-hover > tbody > tr:hover > .info,
.table-hover > tbody > tr.info:hover > th {
  background-color: #c4e3f3;
}
.table > thead > tr > td.warning,
.table > tbody > tr > td.warning,
.table > tfoot > tr > td.warning,
.table > thead > tr > th.warning,
.table > tbody > tr > th.warning,
.table > tfoot > tr > th.warning,
.table > thead > tr.warning > td,
.table > tbody > tr.warning > td,
.table > tfoot > tr.warning > td,
.table > thead > tr.warning > th,
.table > tbody > tr.warning > th,
.table > tfoot > tr.warning > th {
  background-color: #fcf8e3;
}
.table-hover > tbody > tr > td.warning:hover,
.table-hover > tbody > tr > th.warning:hover,
.table-hover > tbody > tr.warning:hover > td,
.table-hover > tbody > tr:hover > .warning,
.table-hover > tbody > tr.warning:hover > th {
  background-color: #faf2cc;
}
.table > thead > tr > td.danger,
.table > tbody > tr > td.danger,
.table > tfoot > tr > td.danger,
.table > thead > tr > th.danger,
.table > tbody > tr > th.danger,
.table > tfoot > tr > th.danger,
.table > thead > tr.danger > td,
.table > tbody > tr.danger > td,
.table > tfoot > tr.danger > td,
.table > thead > tr.danger > th,
.table > tbody > tr.danger > th,
.table > tfoot > tr.danger > th {
  background-color: #f2dede;
}
.table-hover > tbody > tr > td.danger:hover,
.table-hover > tbody > tr > th.danger:hover,
.table-hover > tbody > tr.danger:hover > td,
.table-hover > tbody > tr:hover > .danger,
.table-hover > tbody > tr.danger:hover > th {
  background-color: #ebcccc;
}
.table-responsive {
  min-height: 0.01%;
  overflow-x: auto;
}
@media screen and (max-width: 767px) {
  .table-responsive {
    width: 100%;
    margin-bottom: 15px;
    overflow-y: hidden;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    border: 1px solid #ddd;
  }
  .table-responsive > .table {
    margin-bottom: 0;
  }
  .table-responsive > .table > thead > tr > th,
  .table-responsive > .table > tbody > tr > th,
  .table-responsive > .table > tfoot > tr > th,
  .table-responsive > .table > thead > tr > td,
  .table-responsive > .table > tbody > tr > td,
  .table-responsive > .table > tfoot > tr > td {
    white-space: nowrap;
  }
  .table-responsive > .table-bordered {
    border: 0;
  }
  .table-responsive > .table-bordered > thead > tr > th:first-child,
  .table-responsive > .table-bordered > tbody > tr > th:first-child,
  .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  .table-responsive > .table-bordered > thead > tr > td:first-child,
  .table-responsive > .table-bordered > tbody > tr > td:first-child,
  .table-responsive > .table-bordered > tfoot > tr > td:first-child {
    border-left: 0;
  }
  .table-responsive > .table-bordered > thead > tr > th:last-child,
  .table-responsive > .table-bordered > tbody > tr > th:last-child,
  .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  .table-responsive > .table-bordered > thead > tr > td:last-child,
  .table-responsive > .table-bordered > tbody > tr > td:last-child,
  .table-responsive > .table-bordered > tfoot > tr > td:last-child {
    border-right: 0;
  }
  .table-responsive > .table-bordered > tbody > tr:last-child > th,
  .table-responsive > .table-bordered > tfoot > tr:last-child > th,
  .table-responsive > .table-bordered > tbody > tr:last-child > td,
  .table-responsive > .table-bordered > tfoot > tr:last-child > td {
    border-bottom: 0;
  }
}
fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}
legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 20px;
  font-size: 21px;
  line-height: inherit;
  color: #333333;
  border: 0;
  border-bottom: 1px solid #e5e5e5;
}
label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: 700;
}
input[type="search"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
input[type="radio"],
input[type="checkbox"] {
  margin: 4px 0 0;
  margin-top: 1px \9;
  line-height: normal;
}
input[type="radio"][disabled],
input[type="checkbox"][disabled],
input[type="radio"].disabled,
input[type="checkbox"].disabled,
fieldset[disabled] input[type="radio"],
fieldset[disabled] input[type="checkbox"] {
  cursor: not-allowed;
}
input[type="file"] {
  display: block;
}
input[type="range"] {
  display: block;
  width: 100%;
}
select[multiple],
select[size] {
  height: auto;
}
input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
output {
  display: block;
  padding-top: 7px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555555;
}
.form-control {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
}
.form-control:focus {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, 0.6);
}
.form-control::-moz-placeholder {
  color: #999;
  opacity: 1;
}
.form-control:-ms-input-placeholder {
  color: #999;
}
.form-control::-webkit-input-placeholder {
  color: #999;
}
.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}
.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
  background-color: #eeeeee;
  opacity: 1;
}
.form-control[disabled],
fieldset[disabled] .form-control {
  cursor: not-allowed;
}
textarea.form-control {
  height: auto;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  input[type="date"].form-control,
  input[type="time"].form-control,
  input[type="datetime-local"].form-control,
  input[type="month"].form-control {
    line-height: 34px;
  }
  input[type="date"].input-sm,
  input[type="time"].input-sm,
  input[type="datetime-local"].input-sm,
  input[type="month"].input-sm,
  .input-group-sm input[type="date"],
  .input-group-sm input[type="time"],
  .input-group-sm input[type="datetime-local"],
  .input-group-sm input[type="month"] {
    line-height: 30px;
  }
  input[type="date"].input-lg,
  input[type="time"].input-lg,
  input[type="datetime-local"].input-lg,
  input[type="month"].input-lg,
  .input-group-lg input[type="date"],
  .input-group-lg input[type="time"],
  .input-group-lg input[type="datetime-local"],
  .input-group-lg input[type="month"] {
    line-height: 46px;
  }
}
.form-group {
  margin-bottom: 15px;
}
.radio,
.checkbox {
  position: relative;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
}
.radio.disabled label,
.checkbox.disabled label,
fieldset[disabled] .radio label,
fieldset[disabled] .checkbox label {
  cursor: not-allowed;
}
.radio label,
.checkbox label {
  min-height: 20px;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: 400;
  cursor: pointer;
}
.radio input[type="radio"],
.radio-inline input[type="radio"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
  position: absolute;
  margin-top: 4px \9;
  margin-left: -20px;
}
.radio + .radio,
.checkbox + .checkbox {
  margin-top: -5px;
}
.radio-inline,
.checkbox-inline {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: 400;
  vertical-align: middle;
  cursor: pointer;
}
.radio-inline.disabled,
.checkbox-inline.disabled,
fieldset[disabled] .radio-inline,
fieldset[disabled] .checkbox-inline {
  cursor: not-allowed;
}
.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline {
  margin-top: 0;
  margin-left: 10px;
}
.form-control-static {
  min-height: 34px;
  padding-top: 7px;
  padding-bottom: 7px;
  margin-bottom: 0;
}
.form-control-static.input-lg,
.form-control-static.input-sm {
  padding-right: 0;
  padding-left: 0;
}
.input-sm {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
select.input-sm {
  height: 30px;
  line-height: 30px;
}
textarea.input-sm,
select[multiple].input-sm {
  height: auto;
}
.form-group-sm .form-control {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
.form-group-sm select.form-control {
  height: 30px;
  line-height: 30px;
}
.form-group-sm textarea.form-control,
.form-group-sm select[multiple].form-control {
  height: auto;
}
.form-group-sm .form-control-static {
  height: 30px;
  min-height: 32px;
  padding: 6px 10px;
  font-size: 12px;
  line-height: 1.5;
}
.input-lg {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}
select.input-lg {
  height: 46px;
  line-height: 46px;
}
textarea.input-lg,
select[multiple].input-lg {
  height: auto;
}
.form-group-lg .form-control {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}
.form-group-lg select.form-control {
  height: 46px;
  line-height: 46px;
}
.form-group-lg textarea.form-control,
.form-group-lg select[multiple].form-control {
  height: auto;
}
.form-group-lg .form-control-static {
  height: 46px;
  min-height: 38px;
  padding: 11px 16px;
  font-size: 18px;
  line-height: 1.3333333;
}
.has-feedback {
  position: relative;
}
.has-feedback .form-control {
  padding-right: 42.5px;
}
.form-control-feedback {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: block;
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  pointer-events: none;
}
.input-lg + .form-control-feedback,
.input-group-lg + .form-control-feedback,
.form-group-lg .form-control + .form-control-feedback {
  width: 46px;
  height: 46px;
  line-height: 46px;
}
.input-sm + .form-control-feedback,
.input-group-sm + .form-control-feedback,
.form-group-sm .form-control + .form-control-feedback {
  width: 30px;
  height: 30px;
  line-height: 30px;
}
.has-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline,
.has-success.radio label,
.has-success.checkbox label,
.has-success.radio-inline label,
.has-success.checkbox-inline label {
  color: #3c763d;
}
.has-success .form-control {
  border-color: #3c763d;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-success .form-control:focus {
  border-color: #2b542c;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
}
.has-success .input-group-addon {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #3c763d;
}
.has-success .form-control-feedback {
  color: #3c763d;
}
.has-warning .help-block,
.has-warning .control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline,
.has-warning.radio label,
.has-warning.checkbox label,
.has-warning.radio-inline label,
.has-warning.checkbox-inline label {
  color: #8a6d3b;
}
.has-warning .form-control {
  border-color: #8a6d3b;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-warning .form-control:focus {
  border-color: #66512c;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
}
.has-warning .input-group-addon {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #8a6d3b;
}
.has-warning .form-control-feedback {
  color: #8a6d3b;
}
.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline,
.has-error.radio label,
.has-error.checkbox label,
.has-error.radio-inline label,
.has-error.checkbox-inline label {
  color: #a94442;
}
.has-error .form-control {
  border-color: #a94442;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-error .form-control:focus {
  border-color: #843534;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
}
.has-error .input-group-addon {
  color: #a94442;
  background-color: #f2dede;
  border-color: #a94442;
}
.has-error .form-control-feedback {
  color: #a94442;
}
.has-feedback label ~ .form-control-feedback {
  top: 25px;
}
.has-feedback label.sr-only ~ .form-control-feedback {
  top: 0;
}
.help-block {
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #737373;
}
@media (min-width: 768px) {
  .form-inline .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .form-inline .form-control-static {
    display: inline-block;
  }
  .form-inline .input-group {
    display: inline-table;
    vertical-align: middle;
  }
  .form-inline .input-group .input-group-addon,
  .form-inline .input-group .input-group-btn,
  .form-inline .input-group .form-control {
    width: auto;
  }
  .form-inline .input-group > .form-control {
    width: 100%;
  }
  .form-inline .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .radio,
  .form-inline .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .radio label,
  .form-inline .checkbox label {
    padding-left: 0;
  }
  .form-inline .radio input[type="radio"],
  .form-inline .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0;
  }
  .form-inline .has-feedback .form-control-feedback {
    top: 0;
  }
}
.form-horizontal .radio,
.form-horizontal .checkbox,
.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline {
  padding-top: 7px;
  margin-top: 0;
  margin-bottom: 0;
}
.form-horizontal .radio,
.form-horizontal .checkbox {
  min-height: 27px;
}
.form-horizontal .form-group {
  margin-right: -15px;
  margin-left: -15px;
}
@media (min-width: 768px) {
  .form-horizontal .control-label {
    padding-top: 7px;
    margin-bottom: 0;
    text-align: right;
  }
}
.form-horizontal .has-feedback .form-control-feedback {
  right: 15px;
}
@media (min-width: 768px) {
  .form-horizontal .form-group-lg .control-label {
    padding-top: 11px;
    font-size: 18px;
  }
}
@media (min-width: 768px) {
  .form-horizontal .form-group-sm .control-label {
    padding-top: 6px;
    font-size: 12px;
  }
}
.btn {
  display: inline-block;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.btn:hover,
.btn:focus,
.btn.focus {
  color: #333;
  text-decoration: none;
}
.btn:active,
.btn.active {
  background-image: none;
  outline: 0;
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
  cursor: not-allowed;
  filter: alpha(opacity=65);
  opacity: 0.65;
  -webkit-box-shadow: none;
  box-shadow: none;
}
a.btn.disabled,
fieldset[disabled] a.btn {
  pointer-events: none;
}
.btn-default {
  color: #333;
  background-color: #fff;
  border-color: #ccc;
}
.btn-default:focus,
.btn-default.focus {
  color: #333;
  background-color: #e6e6e6;
  border-color: #8c8c8c;
}
.btn-default:hover {
  color: #333;
  background-color: #e6e6e6;
  border-color: #adadad;
}
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
  color: #333;
  background-color: #e6e6e6;
  background-image: none;
  border-color: #adadad;
}
.btn-default:active:hover,
.btn-default.active:hover,
.open > .dropdown-toggle.btn-default:hover,
.btn-default:active:focus,
.btn-default.active:focus,
.open > .dropdown-toggle.btn-default:focus,
.btn-default:active.focus,
.btn-default.active.focus,
.open > .dropdown-toggle.btn-default.focus {
  color: #333;
  background-color: #d4d4d4;
  border-color: #8c8c8c;
}
.btn-default.disabled:hover,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default:hover,
.btn-default.disabled:focus,
.btn-default[disabled]:focus,
fieldset[disabled] .btn-default:focus,
.btn-default.disabled.focus,
.btn-default[disabled].focus,
fieldset[disabled] .btn-default.focus {
  background-color: #fff;
  border-color: #ccc;
}
.btn-default .badge {
  color: #fff;
  background-color: #333;
}
.btn-primary {
  color: #fff;
  background-color: #337ab7;
  border-color: #2e6da4;
}
.btn-primary:focus,
.btn-primary.focus {
  color: #fff;
  background-color: #286090;
  border-color: #122b40;
}
.btn-primary:hover {
  color: #fff;
  background-color: #286090;
  border-color: #204d74;
}
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
  color: #fff;
  background-color: #286090;
  background-image: none;
  border-color: #204d74;
}
.btn-primary:active:hover,
.btn-primary.active:hover,
.open > .dropdown-toggle.btn-primary:hover,
.btn-primary:active:focus,
.btn-primary.active:focus,
.open > .dropdown-toggle.btn-primary:focus,
.btn-primary:active.focus,
.btn-primary.active.focus,
.open > .dropdown-toggle.btn-primary.focus {
  color: #fff;
  background-color: #204d74;
  border-color: #122b40;
}
.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled.focus,
.btn-primary[disabled].focus,
fieldset[disabled] .btn-primary.focus {
  background-color: #337ab7;
  border-color: #2e6da4;
}
.btn-primary .badge {
  color: #337ab7;
  background-color: #fff;
}
.btn-success {
  color: #fff;
  background-color: #5cb85c;
  border-color: #4cae4c;
}
.btn-success:focus,
.btn-success.focus {
  color: #fff;
  background-color: #449d44;
  border-color: #255625;
}
.btn-success:hover {
  color: #fff;
  background-color: #449d44;
  border-color: #398439;
}
.btn-success:active,
.btn-success.active,
.open > .dropdown-toggle.btn-success {
  color: #fff;
  background-color: #449d44;
  background-image: none;
  border-color: #398439;
}
.btn-success:active:hover,
.btn-success.active:hover,
.open > .dropdown-toggle.btn-success:hover,
.btn-success:active:focus,
.btn-success.active:focus,
.open > .dropdown-toggle.btn-success:focus,
.btn-success:active.focus,
.btn-success.active.focus,
.open > .dropdown-toggle.btn-success.focus {
  color: #fff;
  background-color: #398439;
  border-color: #255625;
}
.btn-success.disabled:hover,
.btn-success[disabled]:hover,
fieldset[disabled] .btn-success:hover,
.btn-success.disabled:focus,
.btn-success[disabled]:focus,
fieldset[disabled] .btn-success:focus,
.btn-success.disabled.focus,
.btn-success[disabled].focus,
fieldset[disabled] .btn-success.focus {
  background-color: #5cb85c;
  border-color: #4cae4c;
}
.btn-success .badge {
  color: #5cb85c;
  background-color: #fff;
}
.btn-info {
  color: #fff;
  background-color: #5bc0de;
  border-color: #46b8da;
}
.btn-info:focus,
.btn-info.focus {
  color: #fff;
  background-color: #31b0d5;
  border-color: #1b6d85;
}
.btn-info:hover {
  color: #fff;
  background-color: #31b0d5;
  border-color: #269abc;
}
.btn-info:active,
.btn-info.active,
.open > .dropdown-toggle.btn-info {
  color: #fff;
  background-color: #31b0d5;
  background-image: none;
  border-color: #269abc;
}
.btn-info:active:hover,
.btn-info.active:hover,
.open > .dropdown-toggle.btn-info:hover,
.btn-info:active:focus,
.btn-info.active:focus,
.open > .dropdown-toggle.btn-info:focus,
.btn-info:active.focus,
.btn-info.active.focus,
.open > .dropdown-toggle.btn-info.focus {
  color: #fff;
  background-color: #269abc;
  border-color: #1b6d85;
}
.btn-info.disabled:hover,
.btn-info[disabled]:hover,
fieldset[disabled] .btn-info:hover,
.btn-info.disabled:focus,
.btn-info[disabled]:focus,
fieldset[disabled] .btn-info:focus,
.btn-info.disabled.focus,
.btn-info[disabled].focus,
fieldset[disabled] .btn-info.focus {
  background-color: #5bc0de;
  border-color: #46b8da;
}
.btn-info .badge {
  color: #5bc0de;
  background-color: #fff;
}
.btn-warning {
  color: #fff;
  background-color: #f0ad4e;
  border-color: #eea236;
}
.btn-warning:focus,
.btn-warning.focus {
  color: #fff;
  background-color: #ec971f;
  border-color: #985f0d;
}
.btn-warning:hover {
  color: #fff;
  background-color: #ec971f;
  border-color: #d58512;
}
.btn-warning:active,
.btn-warning.active,
.open > .dropdown-toggle.btn-warning {
  color: #fff;
  background-color: #ec971f;
  background-image: none;
  border-color: #d58512;
}
.btn-warning:active:hover,
.btn-warning.active:hover,
.open > .dropdown-toggle.btn-warning:hover,
.btn-warning:active:focus,
.btn-warning.active:focus,
.open > .dropdown-toggle.btn-warning:focus,
.btn-warning:active.focus,
.btn-warning.active.focus,
.open > .dropdown-toggle.btn-warning.focus {
  color: #fff;
  background-color: #d58512;
  border-color: #985f0d;
}
.btn-warning.disabled:hover,
.btn-warning[disabled]:hover,
fieldset[disabled] .btn-warning:hover,
.btn-warning.disabled:focus,
.btn-warning[disabled]:focus,
fieldset[disabled] .btn-warning:focus,
.btn-warning.disabled.focus,
.btn-warning[disabled].focus,
fieldset[disabled] .btn-warning.focus {
  background-color: #f0ad4e;
  border-color: #eea236;
}
.btn-warning .badge {
  color: #f0ad4e;
  background-color: #fff;
}
.btn-danger {
  color: #fff;
  background-color: #d9534f;
  border-color: #d43f3a;
}
.btn-danger:focus,
.btn-danger.focus {
  color: #fff;
  background-color: #c9302c;
  border-color: #761c19;
}
.btn-danger:hover {
  color: #fff;
  background-color: #c9302c;
  border-color: #ac2925;
}
.btn-danger:active,
.btn-danger.active,
.open > .dropdown-toggle.btn-danger {
  color: #fff;
  background-color: #c9302c;
  background-image: none;
  border-color: #ac2925;
}
.btn-danger:active:hover,
.btn-danger.active:hover,
.open > .dropdown-toggle.btn-danger:hover,
.btn-danger:active:focus,
.btn-danger.active:focus,
.open > .dropdown-toggle.btn-danger:focus,
.btn-danger:active.focus,
.btn-danger.active.focus,
.open > .dropdown-toggle.btn-danger.focus {
  color: #fff;
  background-color: #ac2925;
  border-color: #761c19;
}
.btn-danger.disabled:hover,
.btn-danger[disabled]:hover,
fieldset[disabled] .btn-danger:hover,
.btn-danger.disabled:focus,
.btn-danger[disabled]:focus,
fieldset[disabled] .btn-danger:focus,
.btn-danger.disabled.focus,
.btn-danger[disabled].focus,
fieldset[disabled] .btn-danger.focus {
  background-color: #d9534f;
  border-color: #d43f3a;
}
.btn-danger .badge {
  color: #d9534f;
  background-color: #fff;
}
.btn-link {
  font-weight: 400;
  color: #337ab7;
  border-radius: 0;
}
.btn-link,
.btn-link:active,
.btn-link.active,
.btn-link[disabled],
fieldset[disabled] .btn-link {
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.btn-link,
.btn-link:hover,
.btn-link:focus,
.btn-link:active {
  border-color: transparent;
}
.btn-link:hover,
.btn-link:focus {
  color: #23527c;
  text-decoration: underline;
  background-color: transparent;
}
.btn-link[disabled]:hover,
fieldset[disabled] .btn-link:hover,
.btn-link[disabled]:focus,
fieldset[disabled] .btn-link:focus {
  color: #777777;
  text-decoration: none;
}
.btn-lg,
.btn-group-lg > .btn {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}
.btn-sm,
.btn-group-sm > .btn {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
.btn-xs,
.btn-group-xs > .btn {
  padding: 1px 5px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
.btn-block {
  display: block;
  width: 100%;
}
.btn-block + .btn-block {
  margin-top: 5px;
}
input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
  width: 100%;
}
.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}
.fade.in {
  opacity: 1;
}
.collapse {
  display: none;
}
.collapse.in {
  display: block;
}
tr.collapse.in {
  display: table-row;
}
tbody.collapse.in {
  display: table-row-group;
}
.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition-property: height, visibility;
  -o-transition-property: height, visibility;
  transition-property: height, visibility;
  -webkit-transition-duration: 0.35s;
  -o-transition-duration: 0.35s;
  transition-duration: 0.35s;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
}
.caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px dashed;
  border-top: 4px solid \9;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}
.dropup,
.dropdown {
  position: relative;
}
.dropdown-toggle:focus {
  outline: 0;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  font-size: 14px;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
}
.dropdown-menu.pull-right {
  right: 0;
  left: auto;
}
.dropdown-menu .divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}
.dropdown-menu > li > a {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: 400;
  line-height: 1.42857143;
  color: #333333;
  white-space: nowrap;
}
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
  color: #262626;
  text-decoration: none;
  background-color: #f5f5f5;
}
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
  color: #fff;
  text-decoration: none;
  background-color: #337ab7;
  outline: 0;
}
.dropdown-menu > .disabled > a,
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
  color: #777777;
}
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
  text-decoration: none;
  cursor: not-allowed;
  background-color: transparent;
  background-image: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}
.open > .dropdown-menu {
  display: block;
}
.open > a {
  outline: 0;
}
.dropdown-menu-right {
  right: 0;
  left: auto;
}
.dropdown-menu-left {
  right: auto;
  left: 0;
}
.dropdown-header {
  display: block;
  padding: 3px 20px;
  font-size: 12px;
  line-height: 1.42857143;
  color: #777777;
  white-space: nowrap;
}
.dropdown-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 990;
}
.pull-right > .dropdown-menu {
  right: 0;
  left: auto;
}
.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
  content: "";
  border-top: 0;
  border-bottom: 4px dashed;
  border-bottom: 4px solid \9;
}
.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 2px;
}
@media (min-width: 768px) {
  .navbar-right .dropdown-menu {
    right: 0;
    left: auto;
  }
  .navbar-right .dropdown-menu-left {
    right: auto;
    left: 0;
  }
}
.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  float: left;
}
.btn-group > .btn:hover,
.btn-group-vertical > .btn:hover,
.btn-group > .btn:focus,
.btn-group-vertical > .btn:focus,
.btn-group > .btn:active,
.btn-group-vertical > .btn:active,
.btn-group > .btn.active,
.btn-group-vertical > .btn.active {
  z-index: 2;
}
.btn-group .btn + .btn,
.btn-group .btn + .btn-group,
.btn-group .btn-group + .btn,
.btn-group .btn-group + .btn-group {
  margin-left: -1px;
}
.btn-toolbar {
  margin-left: -5px;
}
.btn-toolbar .btn,
.btn-toolbar .btn-group,
.btn-toolbar .input-group {
  float: left;
}
.btn-toolbar > .btn,
.btn-toolbar > .btn-group,
.btn-toolbar > .input-group {
  margin-left: 5px;
}
.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  border-radius: 0;
}
.btn-group > .btn:first-child {
  margin-left: 0;
}
.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.btn-group > .btn:last-child:not(:first-child),
.btn-group > .dropdown-toggle:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group > .btn-group {
  float: left;
}
.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}
.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
  outline: 0;
}
.btn-group > .btn + .dropdown-toggle {
  padding-right: 8px;
  padding-left: 8px;
}
.btn-group > .btn-lg + .dropdown-toggle {
  padding-right: 12px;
  padding-left: 12px;
}
.btn-group.open .dropdown-toggle {
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.btn-group.open .dropdown-toggle.btn-link {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.btn .caret {
  margin-left: 0;
}
.btn-lg .caret {
  border-width: 5px 5px 0;
  border-bottom-width: 0;
}
.dropup .btn-lg .caret {
  border-width: 0 5px 5px;
}
.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group,
.btn-group-vertical > .btn-group > .btn {
  display: block;
  float: none;
  width: 100%;
  max-width: 100%;
}
.btn-group-vertical > .btn-group > .btn {
  float: none;
}
.btn-group-vertical > .btn + .btn,
.btn-group-vertical > .btn + .btn-group,
.btn-group-vertical > .btn-group + .btn,
.btn-group-vertical > .btn-group + .btn-group {
  margin-top: -1px;
  margin-left: 0;
}
.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
  border-radius: 0;
}
.btn-group-vertical > .btn:first-child:not(:last-child) {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn:last-child:not(:first-child) {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.btn-group-justified {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
}
.btn-group-justified > .btn,
.btn-group-justified > .btn-group {
  display: table-cell;
  float: none;
  width: 1%;
}
.btn-group-justified > .btn-group .btn {
  width: 100%;
}
.btn-group-justified > .btn-group .dropdown-menu {
  left: auto;
}
[data-toggle="buttons"] > .btn input[type="radio"],
[data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
[data-toggle="buttons"] > .btn input[type="checkbox"],
[data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}
.input-group {
  position: relative;
  display: table;
  border-collapse: separate;
}
.input-group[class*="col-"] {
  float: none;
  padding-right: 0;
  padding-left: 0;
}
.input-group .form-control {
  position: relative;
  z-index: 2;
  float: left;
  width: 100%;
  margin-bottom: 0;
}
.input-group .form-control:focus {
  z-index: 3;
}
.input-group-lg > .form-control,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .btn {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}
select.input-group-lg > .form-control,
select.input-group-lg > .input-group-addon,
select.input-group-lg > .input-group-btn > .btn {
  height: 46px;
  line-height: 46px;
}
textarea.input-group-lg > .form-control,
textarea.input-group-lg > .input-group-addon,
textarea.input-group-lg > .input-group-btn > .btn,
select[multiple].input-group-lg > .form-control,
select[multiple].input-group-lg > .input-group-addon,
select[multiple].input-group-lg > .input-group-btn > .btn {
  height: auto;
}
.input-group-sm > .form-control,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .btn {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
select.input-group-sm > .form-control,
select.input-group-sm > .input-group-addon,
select.input-group-sm > .input-group-btn > .btn {
  height: 30px;
  line-height: 30px;
}
textarea.input-group-sm > .form-control,
textarea.input-group-sm > .input-group-addon,
textarea.input-group-sm > .input-group-btn > .btn,
select[multiple].input-group-sm > .form-control,
select[multiple].input-group-sm > .input-group-addon,
select[multiple].input-group-sm > .input-group-btn > .btn {
  height: auto;
}
.input-group-addon,
.input-group-btn,
.input-group .form-control {
  display: table-cell;
}
.input-group-addon:not(:first-child):not(:last-child),
.input-group-btn:not(:first-child):not(:last-child),
.input-group .form-control:not(:first-child):not(:last-child) {
  border-radius: 0;
}
.input-group-addon,
.input-group-btn {
  width: 1%;
  white-space: nowrap;
  vertical-align: middle;
}
.input-group-addon {
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  color: #555555;
  text-align: center;
  background-color: #eeeeee;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.input-group-addon.input-sm {
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 3px;
}
.input-group-addon.input-lg {
  padding: 10px 16px;
  font-size: 18px;
  border-radius: 6px;
}
.input-group-addon input[type="radio"],
.input-group-addon input[type="checkbox"] {
  margin-top: 0;
}
.input-group .form-control:first-child,
.input-group-addon:first-child,
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group > .btn,
.input-group-btn:first-child > .dropdown-toggle,
.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group-addon:first-child {
  border-right: 0;
}
.input-group .form-control:last-child,
.input-group-addon:last-child,
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group > .btn,
.input-group-btn:last-child > .dropdown-toggle,
.input-group-btn:first-child > .btn:not(:first-child),
.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.input-group-addon:last-child {
  border-left: 0;
}
.input-group-btn {
  position: relative;
  font-size: 0;
  white-space: nowrap;
}
.input-group-btn > .btn {
  position: relative;
}
.input-group-btn > .btn + .btn {
  margin-left: -1px;
}
.input-group-btn > .btn:hover,
.input-group-btn > .btn:focus,
.input-group-btn > .btn:active {
  z-index: 2;
}
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group {
  margin-right: -1px;
}
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group {
  z-index: 2;
  margin-left: -1px;
}
.nav {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.nav > li {
  position: relative;
  display: block;
}
.nav > li > a {
  position: relative;
  display: block;
  padding: 10px 15px;
}
.nav > li > a:hover,
.nav > li > a:focus {
  text-decoration: none;
  background-color: #eeeeee;
}
.nav > li.disabled > a {
  color: #777777;
}
.nav > li.disabled > a:hover,
.nav > li.disabled > a:focus {
  color: #777777;
  text-decoration: none;
  cursor: not-allowed;
  background-color: transparent;
}
.nav .open > a,
.nav .open > a:hover,
.nav .open > a:focus {
  background-color: #eeeeee;
  border-color: #337ab7;
}
.nav .nav-divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}
.nav > li > a > img {
  max-width: none;
}
.nav-tabs {
  border-bottom: 1px solid #ddd;
}
.nav-tabs > li {
  float: left;
  margin-bottom: -1px;
}
.nav-tabs > li > a {
  margin-right: 2px;
  line-height: 1.42857143;
  border: 1px solid transparent;
  border-radius: 4px 4px 0 0;
}
.nav-tabs > li > a:hover {
  border-color: #eeeeee #eeeeee #ddd;
}
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
  color: #555555;
  cursor: default;
  background-color: #fff;
  border: 1px solid #ddd;
  border-bottom-color: transparent;
}
.nav-tabs.nav-justified {
  width: 100%;
  border-bottom: 0;
}
.nav-tabs.nav-justified > li {
  float: none;
}
.nav-tabs.nav-justified > li > a {
  margin-bottom: 5px;
  text-align: center;
}
.nav-tabs.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}
@media (min-width: 768px) {
  .nav-tabs.nav-justified > li {
    display: table-cell;
    width: 1%;
  }
  .nav-tabs.nav-justified > li > a {
    margin-bottom: 0;
  }
}
.nav-tabs.nav-justified > li > a {
  margin-right: 0;
  border-radius: 4px;
}
.nav-tabs.nav-justified > .active > a,
.nav-tabs.nav-justified > .active > a:hover,
.nav-tabs.nav-justified > .active > a:focus {
  border: 1px solid #ddd;
}
@media (min-width: 768px) {
  .nav-tabs.nav-justified > li > a {
    border-bottom: 1px solid #ddd;
    border-radius: 4px 4px 0 0;
  }
  .nav-tabs.nav-justified > .active > a,
  .nav-tabs.nav-justified > .active > a:hover,
  .nav-tabs.nav-justified > .active > a:focus {
    border-bottom-color: #fff;
  }
}
.nav-pills > li {
  float: left;
}
.nav-pills > li > a {
  border-radius: 4px;
}
.nav-pills > li + li {
  margin-left: 2px;
}
.nav-pills > li.active > a,
.nav-pills > li.active > a:hover,
.nav-pills > li.active > a:focus {
  color: #fff;
  background-color: #337ab7;
}
.nav-stacked > li {
  float: none;
}
.nav-stacked > li + li {
  margin-top: 2px;
  margin-left: 0;
}
.nav-justified {
  width: 100%;
}
.nav-justified > li {
  float: none;
}
.nav-justified > li > a {
  margin-bottom: 5px;
  text-align: center;
}
.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}
@media (min-width: 768px) {
  .nav-justified > li {
    display: table-cell;
    width: 1%;
  }
  .nav-justified > li > a {
    margin-bottom: 0;
  }
}
.nav-tabs-justified {
  border-bottom: 0;
}
.nav-tabs-justified > li > a {
  margin-right: 0;
  border-radius: 4px;
}
.nav-tabs-justified > .active > a,
.nav-tabs-justified > .active > a:hover,
.nav-tabs-justified > .active > a:focus {
  border: 1px solid #ddd;
}
@media (min-width: 768px) {
  .nav-tabs-justified > li > a {
    border-bottom: 1px solid #ddd;
    border-radius: 4px 4px 0 0;
  }
  .nav-tabs-justified > .active > a,
  .nav-tabs-justified > .active > a:hover,
  .nav-tabs-justified > .active > a:focus {
    border-bottom-color: #fff;
  }
}
.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}
.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.navbar {
  position: relative;
  min-height: 50px;
  margin-bottom: 20px;
  border: 1px solid transparent;
}
@media (min-width: 768px) {
  .navbar {
    border-radius: 4px;
  }
}
@media (min-width: 768px) {
  .navbar-header {
    float: left;
  }
}
.navbar-collapse {
  padding-right: 15px;
  padding-left: 15px;
  overflow-x: visible;
  border-top: 1px solid transparent;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  -webkit-overflow-scrolling: touch;
}
.navbar-collapse.in {
  overflow-y: auto;
}
@media (min-width: 768px) {
  .navbar-collapse {
    width: auto;
    border-top: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  .navbar-collapse.collapse {
    display: block !important;
    height: auto !important;
    padding-bottom: 0;
    overflow: visible !important;
  }
  .navbar-collapse.in {
    overflow-y: visible;
  }
  .navbar-fixed-top .navbar-collapse,
  .navbar-static-top .navbar-collapse,
  .navbar-fixed-bottom .navbar-collapse {
    padding-right: 0;
    padding-left: 0;
  }
}
.navbar-fixed-top,
.navbar-fixed-bottom {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1030;
}
.navbar-fixed-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
  max-height: 340px;
}
@media (max-device-width: 480px) and (orientation: landscape) {
  .navbar-fixed-top .navbar-collapse,
  .navbar-fixed-bottom .navbar-collapse {
    max-height: 200px;
  }
}
@media (min-width: 768px) {
  .navbar-fixed-top,
  .navbar-fixed-bottom {
    border-radius: 0;
  }
}
.navbar-fixed-top {
  top: 0;
  border-width: 0 0 1px;
}
.navbar-fixed-bottom {
  bottom: 0;
  margin-bottom: 0;
  border-width: 1px 0 0;
}
.container > .navbar-header,
.container-fluid > .navbar-header,
.container > .navbar-collapse,
.container-fluid > .navbar-collapse {
  margin-right: -15px;
  margin-left: -15px;
}
@media (min-width: 768px) {
  .container > .navbar-header,
  .container-fluid > .navbar-header,
  .container > .navbar-collapse,
  .container-fluid > .navbar-collapse {
    margin-right: 0;
    margin-left: 0;
  }
}
.navbar-static-top {
  z-index: 1000;
  border-width: 0 0 1px;
}
@media (min-width: 768px) {
  .navbar-static-top {
    border-radius: 0;
  }
}
.navbar-brand {
  float: left;
  height: 50px;
  padding: 15px 15px;
  font-size: 18px;
  line-height: 20px;
}
.navbar-brand:hover,
.navbar-brand:focus {
  text-decoration: none;
}
.navbar-brand > img {
  display: block;
}
@media (min-width: 768px) {
  .navbar > .container .navbar-brand,
  .navbar > .container-fluid .navbar-brand {
    margin-left: -15px;
  }
}
.navbar-toggle {
  position: relative;
  float: right;
  padding: 9px 10px;
  margin-right: 15px;
  margin-top: 8px;
  margin-bottom: 8px;
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}
.navbar-toggle:focus {
  outline: 0;
}
.navbar-toggle .icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px;
}
.navbar-toggle .icon-bar + .icon-bar {
  margin-top: 4px;
}
@media (min-width: 768px) {
  .navbar-toggle {
    display: none;
  }
}
.navbar-nav {
  margin: 7.5px -15px;
}
.navbar-nav > li > a {
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 20px;
}
@media (max-width: 767px) {
  .navbar-nav .open .dropdown-menu {
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    background-color: transparent;
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  .navbar-nav .open .dropdown-menu > li > a,
  .navbar-nav .open .dropdown-menu .dropdown-header {
    padding: 5px 15px 5px 25px;
  }
  .navbar-nav .open .dropdown-menu > li > a {
    line-height: 20px;
  }
  .navbar-nav .open .dropdown-menu > li > a:hover,
  .navbar-nav .open .dropdown-menu > li > a:focus {
    background-image: none;
  }
}
@media (min-width: 768px) {
  .navbar-nav {
    float: left;
    margin: 0;
  }
  .navbar-nav > li {
    float: left;
  }
  .navbar-nav > li > a {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
.navbar-form {
  padding: 10px 15px;
  margin-right: -15px;
  margin-left: -15px;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  margin-top: 8px;
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .navbar-form .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .navbar-form .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .navbar-form .form-control-static {
    display: inline-block;
  }
  .navbar-form .input-group {
    display: inline-table;
    vertical-align: middle;
  }
  .navbar-form .input-group .input-group-addon,
  .navbar-form .input-group .input-group-btn,
  .navbar-form .input-group .form-control {
    width: auto;
  }
  .navbar-form .input-group > .form-control {
    width: 100%;
  }
  .navbar-form .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
  .navbar-form .radio,
  .navbar-form .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .navbar-form .radio label,
  .navbar-form .checkbox label {
    padding-left: 0;
  }
  .navbar-form .radio input[type="radio"],
  .navbar-form .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0;
  }
  .navbar-form .has-feedback .form-control-feedback {
    top: 0;
  }
}
@media (max-width: 767px) {
  .navbar-form .form-group {
    margin-bottom: 5px;
  }
  .navbar-form .form-group:last-child {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .navbar-form {
    width: auto;
    padding-top: 0;
    padding-bottom: 0;
    margin-right: 0;
    margin-left: 0;
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
}
.navbar-nav > li > .dropdown-menu {
  margin-top: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
  margin-bottom: 0;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.navbar-btn {
  margin-top: 8px;
  margin-bottom: 8px;
}
.navbar-btn.btn-sm {
  margin-top: 10px;
  margin-bottom: 10px;
}
.navbar-btn.btn-xs {
  margin-top: 14px;
  margin-bottom: 14px;
}
.navbar-text {
  margin-top: 15px;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .navbar-text {
    float: left;
    margin-right: 15px;
    margin-left: 15px;
  }
}
@media (min-width: 768px) {
  .navbar-left {
    float: left !important;
  }
  .navbar-right {
    float: right !important;
    margin-right: -15px;
  }
  .navbar-right ~ .navbar-right {
    margin-right: 0;
  }
}
.navbar-default {
  background-color: #f8f8f8;
  border-color: #e7e7e7;
}
.navbar-default .navbar-brand {
  color: #777;
}
.navbar-default .navbar-brand:hover,
.navbar-default .navbar-brand:focus {
  color: #5e5e5e;
  background-color: transparent;
}
.navbar-default .navbar-text {
  color: #777;
}
.navbar-default .navbar-nav > li > a {
  color: #777;
}
.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
  color: #333;
  background-color: transparent;
}
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
  color: #555;
  background-color: #e7e7e7;
}
.navbar-default .navbar-nav > .disabled > a,
.navbar-default .navbar-nav > .disabled > a:hover,
.navbar-default .navbar-nav > .disabled > a:focus {
  color: #ccc;
  background-color: transparent;
}
.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:hover,
.navbar-default .navbar-nav > .open > a:focus {
  color: #555;
  background-color: #e7e7e7;
}
@media (max-width: 767px) {
  .navbar-default .navbar-nav .open .dropdown-menu > li > a {
    color: #777;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
  .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #333;
    background-color: transparent;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a,
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #555;
    background-color: #e7e7e7;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #ccc;
    background-color: transparent;
  }
}
.navbar-default .navbar-toggle {
  border-color: #ddd;
}
.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
  background-color: #ddd;
}
.navbar-default .navbar-toggle .icon-bar {
  background-color: #888;
}
.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
  border-color: #e7e7e7;
}
.navbar-default .navbar-link {
  color: #777;
}
.navbar-default .navbar-link:hover {
  color: #333;
}
.navbar-default .btn-link {
  color: #777;
}
.navbar-default .btn-link:hover,
.navbar-default .btn-link:focus {
  color: #333;
}
.navbar-default .btn-link[disabled]:hover,
fieldset[disabled] .navbar-default .btn-link:hover,
.navbar-default .btn-link[disabled]:focus,
fieldset[disabled] .navbar-default .btn-link:focus {
  color: #ccc;
}
.navbar-inverse {
  background-color: #222;
  border-color: #080808;
}
.navbar-inverse .navbar-brand {
  color: #9d9d9d;
}
.navbar-inverse .navbar-brand:hover,
.navbar-inverse .navbar-brand:focus {
  color: #fff;
  background-color: transparent;
}
.navbar-inverse .navbar-text {
  color: #9d9d9d;
}
.navbar-inverse .navbar-nav > li > a {
  color: #9d9d9d;
}
.navbar-inverse .navbar-nav > li > a:hover,
.navbar-inverse .navbar-nav > li > a:focus {
  color: #fff;
  background-color: transparent;
}
.navbar-inverse .navbar-nav > .active > a,
.navbar-inverse .navbar-nav > .active > a:hover,
.navbar-inverse .navbar-nav > .active > a:focus {
  color: #fff;
  background-color: #080808;
}
.navbar-inverse .navbar-nav > .disabled > a,
.navbar-inverse .navbar-nav > .disabled > a:hover,
.navbar-inverse .navbar-nav > .disabled > a:focus {
  color: #444;
  background-color: transparent;
}
.navbar-inverse .navbar-nav > .open > a,
.navbar-inverse .navbar-nav > .open > a:hover,
.navbar-inverse .navbar-nav > .open > a:focus {
  color: #fff;
  background-color: #080808;
}
@media (max-width: 767px) {
  .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
    border-color: #080808;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
    background-color: #080808;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
    color: #9d9d9d;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #fff;
    background-color: transparent;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #fff;
    background-color: #080808;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #444;
    background-color: transparent;
  }
}
.navbar-inverse .navbar-toggle {
  border-color: #333;
}
.navbar-inverse .navbar-toggle:hover,
.navbar-inverse .navbar-toggle:focus {
  background-color: #333;
}
.navbar-inverse .navbar-toggle .icon-bar {
  background-color: #fff;
}
.navbar-inverse .navbar-collapse,
.navbar-inverse .navbar-form {
  border-color: #101010;
}
.navbar-inverse .navbar-link {
  color: #9d9d9d;
}
.navbar-inverse .navbar-link:hover {
  color: #fff;
}
.navbar-inverse .btn-link {
  color: #9d9d9d;
}
.navbar-inverse .btn-link:hover,
.navbar-inverse .btn-link:focus {
  color: #fff;
}
.navbar-inverse .btn-link[disabled]:hover,
fieldset[disabled] .navbar-inverse .btn-link:hover,
.navbar-inverse .btn-link[disabled]:focus,
fieldset[disabled] .navbar-inverse .btn-link:focus {
  color: #444;
}
.breadcrumb {
  padding: 8px 15px;
  margin-bottom: 20px;
  list-style: none;
  background-color: #f5f5f5;
  border-radius: 4px;
}
.breadcrumb > li {
  display: inline-block;
}
.breadcrumb > li + li:before {
  padding: 0 5px;
  color: #ccc;
  content: "/\00a0";
}
.breadcrumb > .active {
  color: #777777;
}
.pagination {
  display: inline-block;
  padding-left: 0;
  margin: 20px 0;
  border-radius: 4px;
}
.pagination > li {
  display: inline;
}
.pagination > li > a,
.pagination > li > span {
  position: relative;
  float: left;
  padding: 6px 12px;
  margin-left: -1px;
  line-height: 1.42857143;
  color: #337ab7;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #ddd;
}
.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
  z-index: 2;
  color: #23527c;
  background-color: #eeeeee;
  border-color: #ddd;
}
.pagination > li:first-child > a,
.pagination > li:first-child > span {
  margin-left: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.pagination > li:last-child > a,
.pagination > li:last-child > span {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
  z-index: 3;
  color: #fff;
  cursor: default;
  background-color: #337ab7;
  border-color: #337ab7;
}
.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
  color: #777777;
  cursor: not-allowed;
  background-color: #fff;
  border-color: #ddd;
}
.pagination-lg > li > a,
.pagination-lg > li > span {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
}
.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}
.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}
.pagination-sm > li > a,
.pagination-sm > li > span {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
}
.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}
.pager {
  padding-left: 0;
  margin: 20px 0;
  text-align: center;
  list-style: none;
}
.pager li {
  display: inline;
}
.pager li > a,
.pager li > span {
  display: inline-block;
  padding: 5px 14px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 15px;
}
.pager li > a:hover,
.pager li > a:focus {
  text-decoration: none;
  background-color: #eeeeee;
}
.pager .next > a,
.pager .next > span {
  float: right;
}
.pager .previous > a,
.pager .previous > span {
  float: left;
}
.pager .disabled > a,
.pager .disabled > a:hover,
.pager .disabled > a:focus,
.pager .disabled > span {
  color: #777777;
  cursor: not-allowed;
  background-color: #fff;
}
.label {
  display: inline;
  padding: 0.2em 0.6em 0.3em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25em;
}
a.label:hover,
a.label:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}
.label:empty {
  display: none;
}
.btn .label {
  position: relative;
  top: -1px;
}
.label-default {
  background-color: #777777;
}
.label-default[href]:hover,
.label-default[href]:focus {
  background-color: #5e5e5e;
}
.label-primary {
  background-color: #337ab7;
}
.label-primary[href]:hover,
.label-primary[href]:focus {
  background-color: #286090;
}
.label-success {
  background-color: #5cb85c;
}
.label-success[href]:hover,
.label-success[href]:focus {
  background-color: #449d44;
}
.label-info {
  background-color: #5bc0de;
}
.label-info[href]:hover,
.label-info[href]:focus {
  background-color: #31b0d5;
}
.label-warning {
  background-color: #f0ad4e;
}
.label-warning[href]:hover,
.label-warning[href]:focus {
  background-color: #ec971f;
}
.label-danger {
  background-color: #d9534f;
}
.label-danger[href]:hover,
.label-danger[href]:focus {
  background-color: #c9302c;
}
.badge {
  display: inline-block;
  min-width: 10px;
  padding: 3px 7px;
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  background-color: #777777;
  border-radius: 10px;
}
.badge:empty {
  display: none;
}
.btn .badge {
  position: relative;
  top: -1px;
}
.btn-xs .badge,
.btn-group-xs > .btn .badge {
  top: 0;
  padding: 1px 5px;
}
a.badge:hover,
a.badge:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}
.list-group-item.active > .badge,
.nav-pills > .active > a > .badge {
  color: #337ab7;
  background-color: #fff;
}
.list-group-item > .badge {
  float: right;
}
.list-group-item > .badge + .badge {
  margin-right: 5px;
}
.nav-pills > li > a > .badge {
  margin-left: 3px;
}
.jumbotron {
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 30px;
  color: inherit;
  background-color: #eeeeee;
}
.jumbotron h1,
.jumbotron .h1 {
  color: inherit;
}
.jumbotron p {
  margin-bottom: 15px;
  font-size: 21px;
  font-weight: 200;
}
.jumbotron > hr {
  border-top-color: #d5d5d5;
}
.container .jumbotron,
.container-fluid .jumbotron {
  padding-right: 15px;
  padding-left: 15px;
  border-radius: 6px;
}
.jumbotron .container {
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .jumbotron {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .container .jumbotron,
  .container-fluid .jumbotron {
    padding-right: 60px;
    padding-left: 60px;
  }
  .jumbotron h1,
  .jumbotron .h1 {
    font-size: 63px;
  }
}
.thumbnail {
  display: block;
  padding: 4px;
  margin-bottom: 20px;
  line-height: 1.42857143;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  -webkit-transition: border 0.2s ease-in-out;
  -o-transition: border 0.2s ease-in-out;
  transition: border 0.2s ease-in-out;
}
.thumbnail > img,
.thumbnail a > img {
  margin-right: auto;
  margin-left: auto;
}
a.thumbnail:hover,
a.thumbnail:focus,
a.thumbnail.active {
  border-color: #337ab7;
}
.thumbnail .caption {
  padding: 9px;
  color: #333333;
}
.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
}
.alert h4 {
  margin-top: 0;
  color: inherit;
}
.alert .alert-link {
  font-weight: bold;
}
.alert > p,
.alert > ul {
  margin-bottom: 0;
}
.alert > p + p {
  margin-top: 5px;
}
.alert-dismissable,
.alert-dismissible {
  padding-right: 35px;
}
.alert-dismissable .close,
.alert-dismissible .close {
  position: relative;
  top: -2px;
  right: -21px;
  color: inherit;
}
.alert-success {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}
.alert-success hr {
  border-top-color: #c9e2b3;
}
.alert-success .alert-link {
  color: #2b542c;
}
.alert-info {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1;
}
.alert-info hr {
  border-top-color: #a6e1ec;
}
.alert-info .alert-link {
  color: #245269;
}
.alert-warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
}
.alert-warning hr {
  border-top-color: #f7e1b5;
}
.alert-warning .alert-link {
  color: #66512c;
}
.alert-danger {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}
.alert-danger hr {
  border-top-color: #e4b9c0;
}
.alert-danger .alert-link {
  color: #843534;
}
@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
@-o-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
@keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
.progress {
  height: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  background-color: #f5f5f5;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}
.progress-bar {
  float: left;
  width: 0%;
  height: 100%;
  font-size: 12px;
  line-height: 20px;
  color: #fff;
  text-align: center;
  background-color: #337ab7;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  -webkit-transition: width 0.6s ease;
  -o-transition: width 0.6s ease;
  transition: width 0.6s ease;
}
.progress-striped .progress-bar,
.progress-bar-striped {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  -webkit-background-size: 40px 40px;
  background-size: 40px 40px;
}
.progress.active .progress-bar,
.progress-bar.active {
  -webkit-animation: progress-bar-stripes 2s linear infinite;
  -o-animation: progress-bar-stripes 2s linear infinite;
  animation: progress-bar-stripes 2s linear infinite;
}
.progress-bar-success {
  background-color: #5cb85c;
}
.progress-striped .progress-bar-success {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.progress-bar-info {
  background-color: #5bc0de;
}
.progress-striped .progress-bar-info {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.progress-bar-warning {
  background-color: #f0ad4e;
}
.progress-striped .progress-bar-warning {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.progress-bar-danger {
  background-color: #d9534f;
}
.progress-striped .progress-bar-danger {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.media {
  margin-top: 15px;
}
.media:first-child {
  margin-top: 0;
}
.media,
.media-body {
  overflow: hidden;
  zoom: 1;
}
.media-body {
  width: 10000px;
}
.media-object {
  display: block;
}
.media-object.img-thumbnail {
  max-width: none;
}
.media-right,
.media > .pull-right {
  padding-left: 10px;
}
.media-left,
.media > .pull-left {
  padding-right: 10px;
}
.media-left,
.media-right,
.media-body {
  display: table-cell;
  vertical-align: top;
}
.media-middle {
  vertical-align: middle;
}
.media-bottom {
  vertical-align: bottom;
}
.media-heading {
  margin-top: 0;
  margin-bottom: 5px;
}
.media-list {
  padding-left: 0;
  list-style: none;
}
.list-group {
  padding-left: 0;
  margin-bottom: 20px;
}
.list-group-item {
  position: relative;
  display: block;
  padding: 10px 15px;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid #ddd;
}
.list-group-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.list-group-item:last-child {
  margin-bottom: 0;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.list-group-item.disabled,
.list-group-item.disabled:hover,
.list-group-item.disabled:focus {
  color: #777777;
  cursor: not-allowed;
  background-color: #eeeeee;
}
.list-group-item.disabled .list-group-item-heading,
.list-group-item.disabled:hover .list-group-item-heading,
.list-group-item.disabled:focus .list-group-item-heading {
  color: inherit;
}
.list-group-item.disabled .list-group-item-text,
.list-group-item.disabled:hover .list-group-item-text,
.list-group-item.disabled:focus .list-group-item-text {
  color: #777777;
}
.list-group-item.active,
.list-group-item.active:hover,
.list-group-item.active:focus {
  z-index: 2;
  color: #fff;
  background-color: #337ab7;
  border-color: #337ab7;
}
.list-group-item.active .list-group-item-heading,
.list-group-item.active:hover .list-group-item-heading,
.list-group-item.active:focus .list-group-item-heading,
.list-group-item.active .list-group-item-heading > small,
.list-group-item.active:hover .list-group-item-heading > small,
.list-group-item.active:focus .list-group-item-heading > small,
.list-group-item.active .list-group-item-heading > .small,
.list-group-item.active:hover .list-group-item-heading > .small,
.list-group-item.active:focus .list-group-item-heading > .small {
  color: inherit;
}
.list-group-item.active .list-group-item-text,
.list-group-item.active:hover .list-group-item-text,
.list-group-item.active:focus .list-group-item-text {
  color: #c7ddef;
}
a.list-group-item,
button.list-group-item {
  color: #555;
}
a.list-group-item .list-group-item-heading,
button.list-group-item .list-group-item-heading {
  color: #333;
}
a.list-group-item:hover,
button.list-group-item:hover,
a.list-group-item:focus,
button.list-group-item:focus {
  color: #555;
  text-decoration: none;
  background-color: #f5f5f5;
}
button.list-group-item {
  width: 100%;
  text-align: left;
}
.list-group-item-success {
  color: #3c763d;
  background-color: #dff0d8;
}
a.list-group-item-success,
button.list-group-item-success {
  color: #3c763d;
}
a.list-group-item-success .list-group-item-heading,
button.list-group-item-success .list-group-item-heading {
  color: inherit;
}
a.list-group-item-success:hover,
button.list-group-item-success:hover,
a.list-group-item-success:focus,
button.list-group-item-success:focus {
  color: #3c763d;
  background-color: #d0e9c6;
}
a.list-group-item-success.active,
button.list-group-item-success.active,
a.list-group-item-success.active:hover,
button.list-group-item-success.active:hover,
a.list-group-item-success.active:focus,
button.list-group-item-success.active:focus {
  color: #fff;
  background-color: #3c763d;
  border-color: #3c763d;
}
.list-group-item-info {
  color: #31708f;
  background-color: #d9edf7;
}
a.list-group-item-info,
button.list-group-item-info {
  color: #31708f;
}
a.list-group-item-info .list-group-item-heading,
button.list-group-item-info .list-group-item-heading {
  color: inherit;
}
a.list-group-item-info:hover,
button.list-group-item-info:hover,
a.list-group-item-info:focus,
button.list-group-item-info:focus {
  color: #31708f;
  background-color: #c4e3f3;
}
a.list-group-item-info.active,
button.list-group-item-info.active,
a.list-group-item-info.active:hover,
button.list-group-item-info.active:hover,
a.list-group-item-info.active:focus,
button.list-group-item-info.active:focus {
  color: #fff;
  background-color: #31708f;
  border-color: #31708f;
}
.list-group-item-warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
}
a.list-group-item-warning,
button.list-group-item-warning {
  color: #8a6d3b;
}
a.list-group-item-warning .list-group-item-heading,
button.list-group-item-warning .list-group-item-heading {
  color: inherit;
}
a.list-group-item-warning:hover,
button.list-group-item-warning:hover,
a.list-group-item-warning:focus,
button.list-group-item-warning:focus {
  color: #8a6d3b;
  background-color: #faf2cc;
}
a.list-group-item-warning.active,
button.list-group-item-warning.active,
a.list-group-item-warning.active:hover,
button.list-group-item-warning.active:hover,
a.list-group-item-warning.active:focus,
button.list-group-item-warning.active:focus {
  color: #fff;
  background-color: #8a6d3b;
  border-color: #8a6d3b;
}
.list-group-item-danger {
  color: #a94442;
  background-color: #f2dede;
}
a.list-group-item-danger,
button.list-group-item-danger {
  color: #a94442;
}
a.list-group-item-danger .list-group-item-heading,
button.list-group-item-danger .list-group-item-heading {
  color: inherit;
}
a.list-group-item-danger:hover,
button.list-group-item-danger:hover,
a.list-group-item-danger:focus,
button.list-group-item-danger:focus {
  color: #a94442;
  background-color: #ebcccc;
}
a.list-group-item-danger.active,
button.list-group-item-danger.active,
a.list-group-item-danger.active:hover,
button.list-group-item-danger.active:hover,
a.list-group-item-danger.active:focus,
button.list-group-item-danger.active:focus {
  color: #fff;
  background-color: #a94442;
  border-color: #a94442;
}
.list-group-item-heading {
  margin-top: 0;
  margin-bottom: 5px;
}
.list-group-item-text {
  margin-bottom: 0;
  line-height: 1.3;
}
.panel {
  margin-bottom: 20px;
  background-color: #fff;
  border: 1px solid transparent;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}
.panel-body {
  padding: 15px;
}
.panel-heading {
  padding: 10px 15px;
  border-bottom: 1px solid transparent;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.panel-heading > .dropdown .dropdown-toggle {
  color: inherit;
}
.panel-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  color: inherit;
}
.panel-title > a,
.panel-title > small,
.panel-title > .small,
.panel-title > small > a,
.panel-title > .small > a {
  color: inherit;
}
.panel-footer {
  padding: 10px 15px;
  background-color: #f5f5f5;
  border-top: 1px solid #ddd;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}
.panel > .list-group,
.panel > .panel-collapse > .list-group {
  margin-bottom: 0;
}
.panel > .list-group .list-group-item,
.panel > .panel-collapse > .list-group .list-group-item {
  border-width: 1px 0;
  border-radius: 0;
}
.panel > .list-group:first-child .list-group-item:first-child,
.panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
  border-top: 0;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.panel > .list-group:last-child .list-group-item:last-child,
.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
  border-bottom: 0;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}
.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.panel-heading + .list-group .list-group-item:first-child {
  border-top-width: 0;
}
.list-group + .panel-footer {
  border-top-width: 0;
}
.panel > .table,
.panel > .table-responsive > .table,
.panel > .panel-collapse > .table {
  margin-bottom: 0;
}
.panel > .table caption,
.panel > .table-responsive > .table caption,
.panel > .panel-collapse > .table caption {
  padding-right: 15px;
  padding-left: 15px;
}
.panel > .table:first-child,
.panel > .table-responsive:first-child > .table:first-child {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.panel > .table:first-child > thead:first-child > tr:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
  border-top-left-radius: 3px;
}
.panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
  border-top-right-radius: 3px;
}
.panel > .table:last-child,
.panel > .table-responsive:last-child > .table:last-child {
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}
.panel > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}
.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
  border-bottom-left-radius: 3px;
}
.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
  border-bottom-right-radius: 3px;
}
.panel > .panel-body + .table,
.panel > .panel-body + .table-responsive,
.panel > .table + .panel-body,
.panel > .table-responsive + .panel-body {
  border-top: 1px solid #ddd;
}
.panel > .table > tbody:first-child > tr:first-child th,
.panel > .table > tbody:first-child > tr:first-child td {
  border-top: 0;
}
.panel > .table-bordered,
.panel > .table-responsive > .table-bordered {
  border: 0;
}
.panel > .table-bordered > thead > tr > th:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
.panel > .table-bordered > tbody > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
.panel > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-bordered > thead > tr > td:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
.panel > .table-bordered > tbody > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
.panel > .table-bordered > tfoot > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
  border-left: 0;
}
.panel > .table-bordered > thead > tr > th:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
.panel > .table-bordered > tbody > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
.panel > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-bordered > thead > tr > td:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
.panel > .table-bordered > tbody > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
.panel > .table-bordered > tfoot > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
  border-right: 0;
}
.panel > .table-bordered > thead > tr:first-child > td,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
.panel > .table-bordered > tbody > tr:first-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
.panel > .table-bordered > thead > tr:first-child > th,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
.panel > .table-bordered > tbody > tr:first-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
  border-bottom: 0;
}
.panel > .table-bordered > tbody > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
.panel > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-bordered > tbody > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
.panel > .table-bordered > tfoot > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
  border-bottom: 0;
}
.panel > .table-responsive {
  margin-bottom: 0;
  border: 0;
}
.panel-group {
  margin-bottom: 20px;
}
.panel-group .panel {
  margin-bottom: 0;
  border-radius: 4px;
}
.panel-group .panel + .panel {
  margin-top: 5px;
}
.panel-group .panel-heading {
  border-bottom: 0;
}
.panel-group .panel-heading + .panel-collapse > .panel-body,
.panel-group .panel-heading + .panel-collapse > .list-group {
  border-top: 1px solid #ddd;
}
.panel-group .panel-footer {
  border-top: 0;
}
.panel-group .panel-footer + .panel-collapse .panel-body {
  border-bottom: 1px solid #ddd;
}
.panel-default {
  border-color: #ddd;
}
.panel-default > .panel-heading {
  color: #333333;
  background-color: #f5f5f5;
  border-color: #ddd;
}
.panel-default > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #ddd;
}
.panel-default > .panel-heading .badge {
  color: #f5f5f5;
  background-color: #333333;
}
.panel-default > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #ddd;
}
.panel-primary {
  border-color: #337ab7;
}
.panel-primary > .panel-heading {
  color: #fff;
  background-color: #337ab7;
  border-color: #337ab7;
}
.panel-primary > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #337ab7;
}
.panel-primary > .panel-heading .badge {
  color: #337ab7;
  background-color: #fff;
}
.panel-primary > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #337ab7;
}
.panel-success {
  border-color: #d6e9c6;
}
.panel-success > .panel-heading {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}
.panel-success > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #d6e9c6;
}
.panel-success > .panel-heading .badge {
  color: #dff0d8;
  background-color: #3c763d;
}
.panel-success > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #d6e9c6;
}
.panel-info {
  border-color: #bce8f1;
}
.panel-info > .panel-heading {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1;
}
.panel-info > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #bce8f1;
}
.panel-info > .panel-heading .badge {
  color: #d9edf7;
  background-color: #31708f;
}
.panel-info > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #bce8f1;
}
.panel-warning {
  border-color: #faebcc;
}
.panel-warning > .panel-heading {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
}
.panel-warning > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #faebcc;
}
.panel-warning > .panel-heading .badge {
  color: #fcf8e3;
  background-color: #8a6d3b;
}
.panel-warning > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #faebcc;
}
.panel-danger {
  border-color: #ebccd1;
}
.panel-danger > .panel-heading {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}
.panel-danger > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #ebccd1;
}
.panel-danger > .panel-heading .badge {
  color: #f2dede;
  background-color: #a94442;
}
.panel-danger > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #ebccd1;
}
.embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
}
.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.embed-responsive-16by9 {
  padding-bottom: 56.25%;
}
.embed-responsive-4by3 {
  padding-bottom: 75%;
}
.well {
  min-height: 20px;
  padding: 19px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
}
.well blockquote {
  border-color: #ddd;
  border-color: rgba(0, 0, 0, 0.15);
}
.well-lg {
  padding: 24px;
  border-radius: 6px;
}
.well-sm {
  padding: 9px;
  border-radius: 3px;
}
.close {
  float: right;
  font-size: 21px;
  font-weight: bold;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  filter: alpha(opacity=20);
  opacity: 0.2;
}
.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
  filter: alpha(opacity=50);
  opacity: 0.5;
}
button.close {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.modal-open {
  overflow: hidden;
}
.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}
.modal.fade .modal-dialog {
  -webkit-transform: translate(0, -25%);
  -ms-transform: translate(0, -25%);
  -o-transform: translate(0, -25%);
  transform: translate(0, -25%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out, -o-transform 0.3s ease-out;
}
.modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}
.modal-content {
  position: relative;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  outline: 0;
}
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
}
.modal-backdrop.fade {
  filter: alpha(opacity=0);
  opacity: 0;
}
.modal-backdrop.in {
  filter: alpha(opacity=50);
  opacity: 0.5;
}
.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
}
.modal-header .close {
  margin-top: -2px;
}
.modal-title {
  margin: 0;
  line-height: 1.42857143;
}
.modal-body {
  position: relative;
  padding: 15px;
}
.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}
.modal-footer .btn + .btn {
  margin-bottom: 0;
  margin-left: 5px;
}
.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}
.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}
.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 768px) {
  .modal-dialog {
    width: 600px;
    margin: 30px auto;
  }
  .modal-content {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  }
  .modal-sm {
    width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg {
    width: 900px;
  }
}
.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.42857143;
  line-break: auto;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  white-space: normal;
  font-size: 12px;
  filter: alpha(opacity=0);
  opacity: 0;
}
.tooltip.in {
  filter: alpha(opacity=90);
  opacity: 0.9;
}
.tooltip.top {
  padding: 5px 0;
  margin-top: -3px;
}
.tooltip.right {
  padding: 0 5px;
  margin-left: 3px;
}
.tooltip.bottom {
  padding: 5px 0;
  margin-top: 3px;
}
.tooltip.left {
  padding: 0 5px;
  margin-left: -3px;
}
.tooltip.top .tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
.tooltip.top-left .tooltip-arrow {
  right: 5px;
  bottom: 0;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
.tooltip.top-right .tooltip-arrow {
  bottom: 0;
  left: 5px;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
.tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: #000;
}
.tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: #000;
}
.tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
.tooltip.bottom-left .tooltip-arrow {
  top: 0;
  right: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
.tooltip.bottom-right .tooltip-arrow {
  top: 0;
  left: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
.tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 4px;
}
.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: none;
  max-width: 276px;
  padding: 1px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.42857143;
  line-break: auto;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  white-space: normal;
  font-size: 14px;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.popover.top {
  margin-top: -10px;
}
.popover.right {
  margin-left: 10px;
}
.popover.bottom {
  margin-top: 10px;
}
.popover.left {
  margin-left: -10px;
}
.popover > .arrow {
  border-width: 11px;
}
.popover > .arrow,
.popover > .arrow:after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.popover > .arrow:after {
  content: "";
  border-width: 10px;
}
.popover.top > .arrow {
  bottom: -11px;
  left: 50%;
  margin-left: -11px;
  border-top-color: #999999;
  border-top-color: rgba(0, 0, 0, 0.25);
  border-bottom-width: 0;
}
.popover.top > .arrow:after {
  bottom: 1px;
  margin-left: -10px;
  content: " ";
  border-top-color: #fff;
  border-bottom-width: 0;
}
.popover.right > .arrow {
  top: 50%;
  left: -11px;
  margin-top: -11px;
  border-right-color: #999999;
  border-right-color: rgba(0, 0, 0, 0.25);
  border-left-width: 0;
}
.popover.right > .arrow:after {
  bottom: -10px;
  left: 1px;
  content: " ";
  border-right-color: #fff;
  border-left-width: 0;
}
.popover.bottom > .arrow {
  top: -11px;
  left: 50%;
  margin-left: -11px;
  border-top-width: 0;
  border-bottom-color: #999999;
  border-bottom-color: rgba(0, 0, 0, 0.25);
}
.popover.bottom > .arrow:after {
  top: 1px;
  margin-left: -10px;
  content: " ";
  border-top-width: 0;
  border-bottom-color: #fff;
}
.popover.left > .arrow {
  top: 50%;
  right: -11px;
  margin-top: -11px;
  border-right-width: 0;
  border-left-color: #999999;
  border-left-color: rgba(0, 0, 0, 0.25);
}
.popover.left > .arrow:after {
  right: 1px;
  bottom: -10px;
  content: " ";
  border-right-width: 0;
  border-left-color: #fff;
}
.popover-title {
  padding: 8px 14px;
  margin: 0;
  font-size: 14px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-radius: 5px 5px 0 0;
}
.popover-content {
  padding: 9px 14px;
}
.carousel {
  position: relative;
}
.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.carousel-inner > .item {
  position: relative;
  display: none;
  -webkit-transition: 0.6s ease-in-out left;
  -o-transition: 0.6s ease-in-out left;
  transition: 0.6s ease-in-out left;
}
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  line-height: 1;
}
@media all and (transform-3d), (-webkit-transform-3d) {
  .carousel-inner > .item {
    -webkit-transition: -webkit-transform 0.6s ease-in-out;
    -o-transition: -o-transform 0.6s ease-in-out;
    transition: -webkit-transform 0.6s ease-in-out;
    transition: transform 0.6s ease-in-out;
    transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out, -o-transform 0.6s ease-in-out;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000px;
    perspective: 1000px;
  }
  .carousel-inner > .item.next,
  .carousel-inner > .item.active.right {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    left: 0;
  }
  .carousel-inner > .item.prev,
  .carousel-inner > .item.active.left {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    left: 0;
  }
  .carousel-inner > .item.next.left,
  .carousel-inner > .item.prev.right,
  .carousel-inner > .item.active {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    left: 0;
  }
}
.carousel-inner > .active,
.carousel-inner > .next,
.carousel-inner > .prev {
  display: block;
}
.carousel-inner > .active {
  left: 0;
}
.carousel-inner > .next,
.carousel-inner > .prev {
  position: absolute;
  top: 0;
  width: 100%;
}
.carousel-inner > .next {
  left: 100%;
}
.carousel-inner > .prev {
  left: -100%;
}
.carousel-inner > .next.left,
.carousel-inner > .prev.right {
  left: 0;
}
.carousel-inner > .active.left {
  left: -100%;
}
.carousel-inner > .active.right {
  left: 100%;
}
.carousel-control {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 15%;
  font-size: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  background-color: rgba(0, 0, 0, 0);
  filter: alpha(opacity=50);
  opacity: 0.5;
}
.carousel-control.left {
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.0001)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
  background-repeat: repeat-x;
}
.carousel-control.right {
  right: 0;
  left: auto;
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.5)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
  background-repeat: repeat-x;
}
.carousel-control:hover,
.carousel-control:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  filter: alpha(opacity=90);
  opacity: 0.9;
}
.carousel-control .icon-prev,
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: inline-block;
  margin-top: -10px;
}
.carousel-control .icon-prev,
.carousel-control .glyphicon-chevron-left {
  left: 50%;
  margin-left: -10px;
}
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-right {
  right: 50%;
  margin-right: -10px;
}
.carousel-control .icon-prev,
.carousel-control .icon-next {
  width: 20px;
  height: 20px;
  font-family: serif;
  line-height: 1;
}
.carousel-control .icon-prev:before {
  content: "\2039";
}
.carousel-control .icon-next:before {
  content: "\203a";
}
.carousel-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  z-index: 15;
  width: 60%;
  padding-left: 0;
  margin-left: -30%;
  text-align: center;
  list-style: none;
}
.carousel-indicators li {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 1px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #000 \9;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #fff;
  border-radius: 10px;
}
.carousel-indicators .active {
  width: 12px;
  height: 12px;
  margin: 0;
  background-color: #fff;
}
.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}
.carousel-caption .btn {
  text-shadow: none;
}
@media screen and (min-width: 768px) {
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-prev,
  .carousel-control .icon-next {
    width: 30px;
    height: 30px;
    margin-top: -10px;
    font-size: 30px;
  }
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .icon-prev {
    margin-left: -10px;
  }
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-next {
    margin-right: -10px;
  }
  .carousel-caption {
    right: 20%;
    left: 20%;
    padding-bottom: 30px;
  }
  .carousel-indicators {
    bottom: 20px;
  }
}
.clearfix:before,
.clearfix:after,
.dl-horizontal dd:before,
.dl-horizontal dd:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after,
.form-horizontal .form-group:before,
.form-horizontal .form-group:after,
.btn-toolbar:before,
.btn-toolbar:after,
.btn-group-vertical > .btn-group:before,
.btn-group-vertical > .btn-group:after,
.nav:before,
.nav:after,
.navbar:before,
.navbar:after,
.navbar-header:before,
.navbar-header:after,
.navbar-collapse:before,
.navbar-collapse:after,
.pager:before,
.pager:after,
.panel-body:before,
.panel-body:after,
.modal-header:before,
.modal-header:after,
.modal-footer:before,
.modal-footer:after {
  display: table;
  content: " ";
}
.clearfix:after,
.dl-horizontal dd:after,
.container:after,
.container-fluid:after,
.row:after,
.form-horizontal .form-group:after,
.btn-toolbar:after,
.btn-group-vertical > .btn-group:after,
.nav:after,
.navbar:after,
.navbar-header:after,
.navbar-collapse:after,
.pager:after,
.panel-body:after,
.modal-header:after,
.modal-footer:after {
  clear: both;
}
.center-block {
  display: block;
  margin-right: auto;
  margin-left: auto;
}
.pull-right {
  float: right !important;
}
.pull-left {
  float: left !important;
}
.hide {
  display: none !important;
}
.show {
  display: block !important;
}
.invisible {
  visibility: hidden;
}
.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
.hidden {
  display: none !important;
}
.affix {
  position: fixed;
}
@-ms-viewport {
  width: device-width;
}
.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
  display: none !important;
}
.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important;
}
@media (max-width: 767px) {
  .visible-xs {
    display: block !important;
  }
  table.visible-xs {
    display: table !important;
  }
  tr.visible-xs {
    display: table-row !important;
  }
  th.visible-xs,
  td.visible-xs {
    display: table-cell !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-block {
    display: block !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-inline {
    display: inline !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm {
    display: block !important;
  }
  table.visible-sm {
    display: table !important;
  }
  tr.visible-sm {
    display: table-row !important;
  }
  th.visible-sm,
  td.visible-sm {
    display: table-cell !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-block {
    display: block !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline {
    display: inline !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md {
    display: block !important;
  }
  table.visible-md {
    display: table !important;
  }
  tr.visible-md {
    display: table-row !important;
  }
  th.visible-md,
  td.visible-md {
    display: table-cell !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-block {
    display: block !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline {
    display: inline !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg {
    display: block !important;
  }
  table.visible-lg {
    display: table !important;
  }
  tr.visible-lg {
    display: table-row !important;
  }
  th.visible-lg,
  td.visible-lg {
    display: table-cell !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-block {
    display: block !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-inline {
    display: inline !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-inline-block {
    display: inline-block !important;
  }
}
@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important;
  }
}
.visible-print {
  display: none !important;
}
@media print {
  .visible-print {
    display: block !important;
  }
  table.visible-print {
    display: table !important;
  }
  tr.visible-print {
    display: table-row !important;
  }
  th.visible-print,
  td.visible-print {
    display: table-cell !important;
  }
}
.visible-print-block {
  display: none !important;
}
@media print {
  .visible-print-block {
    display: block !important;
  }
}
.visible-print-inline {
  display: none !important;
}
@media print {
  .visible-print-inline {
    display: inline !important;
  }
}
.visible-print-inline-block {
  display: none !important;
}
@media print {
  .visible-print-inline-block {
    display: inline-block !important;
  }
}
@media print {
  .hidden-print {
    display: none !important;
  }
}
/*# sourceMappingURL=bootstrap.css.map */
/**
 * Bootstrap Multiselect (http://davidstutz.de/bootstrap-multiselect/)
 *
 * Apache License, Version 2.0:
 * Copyright (c) 2012 - 2020 David Stutz
 *
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
 * use this file except in compliance with the License. You may obtain a
 * copy of the License at http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
 * License for the specific language governing permissions and limitations
 * under the License.
 *
 * BSD 3-Clause License:
 * Copyright (c) 2012 - 2020 David Stutz
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are met:
 *    - Redistributions of source code must retain the above copyright notice,
 *      this list of conditions and the following disclaimer.
 *    - Redistributions in binary form must reproduce the above copyright notice,
 *      this list of conditions and the following disclaimer in the documentation
 *      and/or other materials provided with the distribution.
 *    - Neither the name of David Stutz nor the names of its contributors may be
 *      used to endorse or promote products derived from this software without
 *      specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
 * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */
span.multiselect-native-select {
  position: relative;
}
span.multiselect-native-select select {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  height: 1px !important;
  margin: -1px -1px -1px -3px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  left: 50%;
  top: 30px;
}
.multiselect.dropdown-toggle:after {
  display: none;
}
.multiselect-container {
  position: absolute;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.multiselect-container label { font-weight: normal; }
.multiselect-container .multiselect-reset .input-group {
  width: 93%;
}
.multiselect-container > .multiselect-option.dropdown-item,
.multiselect-container .multiselect-group.dropdown-item,
.multiselect-container > .multiselect-option.dropdown-toggle,
.multiselect-container .multiselect-group.dropdown-toggle {
  cursor: pointer;
}
.multiselect-container > .multiselect-option > span,
.multiselect-container .multiselect-group > span {
  padding: 3px 20px;
}
.multiselect-container > .multiselect-option > span > .form-check-label,
.multiselect-container .multiselect-group > span > .form-check-label {
  cursor: pointer;
}
.form-inline .multiselect-container span.form-check {
  padding: 3px 20px 3px 40px;
}
/*! jQuery UI - v1.12.1 - 2016-10-30
* http://jqueryui.com
* Includes: draggable.css, core.css, resizable.css, selectable.css, sortable.css, accordion.css, autocomplete.css, menu.css, button.css, controlgroup.css, checkboxradio.css, datepicker.css, dialog.css, progressbar.css, selectmenu.css, slider.css, spinner.css, tabs.css, tooltip.css, theme.css
* To view and modify this theme, visit http://jqueryui.com/themeroller/?scope=&folderName=base&cornerRadiusShadow=8px&offsetLeftShadow=0px&offsetTopShadow=0px&thicknessShadow=5px&opacityShadow=30&bgImgOpacityShadow=0&bgTextureShadow=flat&bgColorShadow=666666&opacityOverlay=30&bgImgOpacityOverlay=0&bgTextureOverlay=flat&bgColorOverlay=aaaaaa&iconColorError=cc0000&fcError=5f3f3f&borderColorError=f1a899&bgTextureError=flat&bgColorError=fddfdf&iconColorHighlight=777620&fcHighlight=777620&borderColorHighlight=dad55e&bgTextureHighlight=flat&bgColorHighlight=fffa90&iconColorActive=ffffff&fcActive=ffffff&borderColorActive=003eff&bgTextureActive=flat&bgColorActive=007fff&iconColorHover=555555&fcHover=2b2b2b&borderColorHover=cccccc&bgTextureHover=flat&bgColorHover=ededed&iconColorDefault=777777&fcDefault=454545&borderColorDefault=c5c5c5&bgTextureDefault=flat&bgColorDefault=f6f6f6&iconColorContent=444444&fcContent=333333&borderColorContent=dddddd&bgTextureContent=flat&bgColorContent=ffffff&iconColorHeader=444444&fcHeader=333333&borderColorHeader=dddddd&bgTextureHeader=flat&bgColorHeader=e9e9e9&cornerRadius=3px&fwDefault=normal&fsDefault=1em&ffDefault=Arial%2CHelvetica%2Csans-serif
* Copyright jQuery Foundation and other contributors; Licensed MIT */
/* line 7, app/assets/stylesheets/jquery-ui.css.scss */
.ui-draggable-handle {
  -ms-touch-action: none;
  touch-action: none;
}

/* Layout helpers
----------------------------------*/
/* line 13, app/assets/stylesheets/jquery-ui.css.scss */
.ui-helper-hidden {
  display: none;
}

/* line 16, app/assets/stylesheets/jquery-ui.css.scss */
.ui-helper-hidden-accessible {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/* line 26, app/assets/stylesheets/jquery-ui.css.scss */
.ui-helper-reset {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  line-height: 1.3;
  text-decoration: none;
  font-size: 100%;
  list-style: none;
}

/* line 36, app/assets/stylesheets/jquery-ui.css.scss */
.ui-helper-clearfix:before,
.ui-helper-clearfix:after {
  content: "";
  display: table;
  border-collapse: collapse;
}

/* line 42, app/assets/stylesheets/jquery-ui.css.scss */
.ui-helper-clearfix:after {
  clear: both;
}

/* line 45, app/assets/stylesheets/jquery-ui.css.scss */
.ui-helper-zfix {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  opacity: 0;
  filter: Alpha(Opacity=0);
  /* support: IE8 */
}

/* line 55, app/assets/stylesheets/jquery-ui.css.scss */
.ui-front {
  z-index: 100;
}

/* Interaction Cues
----------------------------------*/
/* line 62, app/assets/stylesheets/jquery-ui.css.scss */
.ui-state-disabled {
  cursor: default !important;
  pointer-events: none;
}

/* Icons
----------------------------------*/
/* line 70, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon {
  display: inline-block;
  vertical-align: middle;
  margin-top: -.25em;
  position: relative;
  text-indent: -99999px;
  overflow: hidden;
  background-repeat: no-repeat;
}

/* line 80, app/assets/stylesheets/jquery-ui.css.scss */
.ui-widget-icon-block {
  left: 50%;
  margin-left: -8px;
  display: block;
}

/* Misc visuals
----------------------------------*/
/* Overlays */
/* line 90, app/assets/stylesheets/jquery-ui.css.scss */
.ui-widget-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* line 97, app/assets/stylesheets/jquery-ui.css.scss */
.ui-resizable {
  position: relative;
}

/* line 100, app/assets/stylesheets/jquery-ui.css.scss */
.ui-resizable-handle {
  position: absolute;
  font-size: 0.1px;
  display: block;
  -ms-touch-action: none;
  touch-action: none;
}

/* line 107, app/assets/stylesheets/jquery-ui.css.scss */
.ui-resizable-disabled .ui-resizable-handle,
.ui-resizable-autohide .ui-resizable-handle {
  display: none;
}

/* line 111, app/assets/stylesheets/jquery-ui.css.scss */
.ui-resizable-n {
  cursor: n-resize;
  height: 7px;
  width: 100%;
  top: -5px;
  left: 0;
}

/* line 118, app/assets/stylesheets/jquery-ui.css.scss */
.ui-resizable-s {
  cursor: s-resize;
  height: 7px;
  width: 100%;
  bottom: -5px;
  left: 0;
}

/* line 125, app/assets/stylesheets/jquery-ui.css.scss */
.ui-resizable-e {
  cursor: e-resize;
  width: 7px;
  right: -5px;
  top: 0;
  height: 100%;
}

/* line 132, app/assets/stylesheets/jquery-ui.css.scss */
.ui-resizable-w {
  cursor: w-resize;
  width: 7px;
  left: -5px;
  top: 0;
  height: 100%;
}

/* line 139, app/assets/stylesheets/jquery-ui.css.scss */
.ui-resizable-se {
  cursor: se-resize;
  width: 12px;
  height: 12px;
  right: 1px;
  bottom: 1px;
}

/* line 146, app/assets/stylesheets/jquery-ui.css.scss */
.ui-resizable-sw {
  cursor: sw-resize;
  width: 9px;
  height: 9px;
  left: -5px;
  bottom: -5px;
}

/* line 153, app/assets/stylesheets/jquery-ui.css.scss */
.ui-resizable-nw {
  cursor: nw-resize;
  width: 9px;
  height: 9px;
  left: -5px;
  top: -5px;
}

/* line 160, app/assets/stylesheets/jquery-ui.css.scss */
.ui-resizable-ne {
  cursor: ne-resize;
  width: 9px;
  height: 9px;
  right: -5px;
  top: -5px;
}

/* line 167, app/assets/stylesheets/jquery-ui.css.scss */
.ui-selectable {
  -ms-touch-action: none;
  touch-action: none;
}

/* line 171, app/assets/stylesheets/jquery-ui.css.scss */
.ui-selectable-helper {
  position: absolute;
  z-index: 100;
  border: 1px dotted black;
}

/* line 176, app/assets/stylesheets/jquery-ui.css.scss */
.ui-sortable-handle {
  -ms-touch-action: none;
  touch-action: none;
}

/* line 180, app/assets/stylesheets/jquery-ui.css.scss */
.ui-accordion .ui-accordion-header {
  display: block;
  cursor: pointer;
  position: relative;
  margin: 2px 0 0 0;
  padding: .5em .5em .5em .7em;
  font-size: 100%;
}

/* line 188, app/assets/stylesheets/jquery-ui.css.scss */
.ui-accordion .ui-accordion-content {
  padding: 1em 2.2em;
  border-top: 0;
  overflow: auto;
}

/* line 193, app/assets/stylesheets/jquery-ui.css.scss */
.ui-autocomplete {
  position: absolute;
  top: 0;
  left: 0;
  cursor: default;
}

/* line 199, app/assets/stylesheets/jquery-ui.css.scss */
.ui-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: block;
  outline: 0;
}

/* line 206, app/assets/stylesheets/jquery-ui.css.scss */
.ui-menu .ui-menu {
  position: absolute;
}

/* line 209, app/assets/stylesheets/jquery-ui.css.scss */
.ui-menu .ui-menu-item {
  margin: 0;
  cursor: pointer;
  /* support: IE10, see #8844 */
  list-style-image: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7");
}

/* line 215, app/assets/stylesheets/jquery-ui.css.scss */
.ui-menu .ui-menu-item-wrapper {
  position: relative;
  padding: 3px 1em 3px .4em;
}

/* line 219, app/assets/stylesheets/jquery-ui.css.scss */
.ui-menu .ui-menu-divider {
  margin: 5px 0;
  height: 0;
  font-size: 0;
  line-height: 0;
  border-width: 1px 0 0 0;
}

/* line 226, app/assets/stylesheets/jquery-ui.css.scss */
.ui-menu .ui-state-focus,
.ui-menu .ui-state-active {
  margin: -1px;
}

/* icon support */
/* line 232, app/assets/stylesheets/jquery-ui.css.scss */
.ui-menu-icons {
  position: relative;
}

/* line 235, app/assets/stylesheets/jquery-ui.css.scss */
.ui-menu-icons .ui-menu-item-wrapper {
  padding-left: 2em;
}

/* left-aligned */
/* line 240, app/assets/stylesheets/jquery-ui.css.scss */
.ui-menu .ui-icon {
  position: absolute;
  top: 0;
  bottom: 0;
  left: .2em;
  margin: auto 0;
}

/* right-aligned */
/* line 249, app/assets/stylesheets/jquery-ui.css.scss */
.ui-menu .ui-menu-icon {
  left: auto;
  right: 0;
}

/* line 253, app/assets/stylesheets/jquery-ui.css.scss */
.ui-button {
  padding: .4em 1em;
  display: inline-block;
  position: relative;
  line-height: normal;
  margin-right: .1em;
  cursor: pointer;
  vertical-align: middle;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  /* Support: IE <= 11 */
  overflow: visible;
}

/* line 271, app/assets/stylesheets/jquery-ui.css.scss */
.ui-button,
.ui-button:link,
.ui-button:visited,
.ui-button:hover,
.ui-button:active {
  text-decoration: none;
}

/* to make room for the icon, a width needs to be set here */
/* line 280, app/assets/stylesheets/jquery-ui.css.scss */
.ui-button-icon-only {
  width: 2em;
  box-sizing: border-box;
  text-indent: -9999px;
  white-space: nowrap;
}

/* no icon support for input elements */
/* line 288, app/assets/stylesheets/jquery-ui.css.scss */
input.ui-button.ui-button-icon-only {
  text-indent: 0;
}

/* button icon element(s) */
/* line 293, app/assets/stylesheets/jquery-ui.css.scss */
.ui-button-icon-only .ui-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -8px;
  margin-left: -8px;
}

/* line 301, app/assets/stylesheets/jquery-ui.css.scss */
.ui-button.ui-icon-notext .ui-icon {
  padding: 0;
  width: 2.1em;
  height: 2.1em;
  text-indent: -9999px;
  white-space: nowrap;
}

/* line 310, app/assets/stylesheets/jquery-ui.css.scss */
input.ui-button.ui-icon-notext .ui-icon {
  width: auto;
  height: auto;
  text-indent: 0;
  white-space: normal;
  padding: .4em 1em;
}

/* workarounds */
/* Support: Firefox 5 - 40 */
/* line 320, app/assets/stylesheets/jquery-ui.css.scss */
input.ui-button::-moz-focus-inner,
button.ui-button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/* line 325, app/assets/stylesheets/jquery-ui.css.scss */
.ui-controlgroup {
  vertical-align: middle;
  display: inline-block;
}

/* line 329, app/assets/stylesheets/jquery-ui.css.scss */
.ui-controlgroup > .ui-controlgroup-item {
  float: left;
  margin-left: 0;
  margin-right: 0;
}

/* line 334, app/assets/stylesheets/jquery-ui.css.scss */
.ui-controlgroup > .ui-controlgroup-item:focus,
.ui-controlgroup > .ui-controlgroup-item.ui-visual-focus {
  z-index: 9999;
}

/* line 338, app/assets/stylesheets/jquery-ui.css.scss */
.ui-controlgroup-vertical > .ui-controlgroup-item {
  display: block;
  float: none;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  text-align: left;
}

/* line 346, app/assets/stylesheets/jquery-ui.css.scss */
.ui-controlgroup-vertical .ui-controlgroup-item {
  box-sizing: border-box;
}

/* line 349, app/assets/stylesheets/jquery-ui.css.scss */
.ui-controlgroup .ui-controlgroup-label {
  padding: .4em 1em;
}

/* line 352, app/assets/stylesheets/jquery-ui.css.scss */
.ui-controlgroup .ui-controlgroup-label span {
  font-size: 80%;
}

/* line 355, app/assets/stylesheets/jquery-ui.css.scss */
.ui-controlgroup-horizontal .ui-controlgroup-label + .ui-controlgroup-item {
  border-left: none;
}

/* line 358, app/assets/stylesheets/jquery-ui.css.scss */
.ui-controlgroup-vertical .ui-controlgroup-label + .ui-controlgroup-item {
  border-top: none;
}

/* line 361, app/assets/stylesheets/jquery-ui.css.scss */
.ui-controlgroup-horizontal .ui-controlgroup-label.ui-widget-content {
  border-right: none;
}

/* line 364, app/assets/stylesheets/jquery-ui.css.scss */
.ui-controlgroup-vertical .ui-controlgroup-label.ui-widget-content {
  border-bottom: none;
}

/* Spinner specific style fixes */
/* line 369, app/assets/stylesheets/jquery-ui.css.scss */
.ui-controlgroup-vertical .ui-spinner-input {
  /* Support: IE8 only, Android < 4.4 only */
  width: 75%;
  width: calc( 100% - 2.4em);
}

/* line 375, app/assets/stylesheets/jquery-ui.css.scss */
.ui-controlgroup-vertical .ui-spinner .ui-spinner-up {
  border-top-style: solid;
}

/* line 379, app/assets/stylesheets/jquery-ui.css.scss */
.ui-checkboxradio-label .ui-icon-background {
  box-shadow: inset 1px 1px 1px #ccc;
  border-radius: .12em;
  border: none;
}

/* line 384, app/assets/stylesheets/jquery-ui.css.scss */
.ui-checkboxradio-radio-label .ui-icon-background {
  width: 16px;
  height: 16px;
  border-radius: 1em;
  overflow: visible;
  border: none;
}

/* line 391, app/assets/stylesheets/jquery-ui.css.scss */
.ui-checkboxradio-radio-label.ui-checkboxradio-checked .ui-icon,
.ui-checkboxradio-radio-label.ui-checkboxradio-checked:hover .ui-icon {
  background-image: none;
  width: 8px;
  height: 8px;
  border-width: 4px;
  border-style: solid;
}

/* line 399, app/assets/stylesheets/jquery-ui.css.scss */
.ui-checkboxradio-disabled {
  pointer-events: none;
}

/* line 402, app/assets/stylesheets/jquery-ui.css.scss */
.ui-datepicker {
  width: 17em;
  padding: .2em .2em 0;
  display: none;
}

/* line 407, app/assets/stylesheets/jquery-ui.css.scss */
.ui-datepicker .ui-datepicker-header {
  position: relative;
  padding: .2em 0;
}

/* line 411, app/assets/stylesheets/jquery-ui.css.scss */
.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  position: absolute;
  top: 2px;
  width: 1.8em;
  height: 1.8em;
}

/* line 418, app/assets/stylesheets/jquery-ui.css.scss */
.ui-datepicker .ui-datepicker-prev-hover,
.ui-datepicker .ui-datepicker-next-hover {
  top: 1px;
}

/* line 422, app/assets/stylesheets/jquery-ui.css.scss */
.ui-datepicker .ui-datepicker-prev {
  left: 2px;
}

/* line 425, app/assets/stylesheets/jquery-ui.css.scss */
.ui-datepicker .ui-datepicker-next {
  right: 2px;
}

/* line 428, app/assets/stylesheets/jquery-ui.css.scss */
.ui-datepicker .ui-datepicker-prev-hover {
  left: 1px;
}

/* line 431, app/assets/stylesheets/jquery-ui.css.scss */
.ui-datepicker .ui-datepicker-next-hover {
  right: 1px;
}

/* line 434, app/assets/stylesheets/jquery-ui.css.scss */
.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
  display: block;
  position: absolute;
  left: 50%;
  margin-left: -8px;
  top: 50%;
  margin-top: -8px;
}

/* line 443, app/assets/stylesheets/jquery-ui.css.scss */
.ui-datepicker .ui-datepicker-title {
  margin: 0 2.3em;
  line-height: 1.8em;
  text-align: center;
}

/* line 448, app/assets/stylesheets/jquery-ui.css.scss */
.ui-datepicker .ui-datepicker-title select {
  font-size: 1em;
  margin: 1px 0;
}

/* line 452, app/assets/stylesheets/jquery-ui.css.scss */
.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
  width: 45%;
}

/* line 456, app/assets/stylesheets/jquery-ui.css.scss */
.ui-datepicker table {
  width: 100%;
  font-size: .9em;
  border-collapse: collapse;
  margin: 0 0 .4em;
}

/* line 462, app/assets/stylesheets/jquery-ui.css.scss */
.ui-datepicker th {
  padding: .7em .3em;
  text-align: center;
  font-weight: bold;
  border: 0;
}

/* line 468, app/assets/stylesheets/jquery-ui.css.scss */
.ui-datepicker td {
  border: 0;
  padding: 1px;
}

/* line 472, app/assets/stylesheets/jquery-ui.css.scss */
.ui-datepicker td span,
.ui-datepicker td a {
  display: block;
  padding: .2em;
  text-align: right;
  text-decoration: none;
}

/* line 479, app/assets/stylesheets/jquery-ui.css.scss */
.ui-datepicker .ui-datepicker-buttonpane {
  background-image: none;
  margin: .7em 0 0 0;
  padding: 0 .2em;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
}

/* line 487, app/assets/stylesheets/jquery-ui.css.scss */
.ui-datepicker .ui-datepicker-buttonpane button {
  float: right;
  margin: .5em .2em .4em;
  cursor: pointer;
  padding: .2em .6em .3em .6em;
  width: auto;
  overflow: visible;
}

/* line 495, app/assets/stylesheets/jquery-ui.css.scss */
.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
  float: left;
}

/* with multiple calendars */
/* line 500, app/assets/stylesheets/jquery-ui.css.scss */
.ui-datepicker.ui-datepicker-multi {
  width: auto;
}

/* line 503, app/assets/stylesheets/jquery-ui.css.scss */
.ui-datepicker-multi .ui-datepicker-group {
  float: left;
}

/* line 506, app/assets/stylesheets/jquery-ui.css.scss */
.ui-datepicker-multi .ui-datepicker-group table {
  width: 95%;
  margin: 0 auto .4em;
}

/* line 510, app/assets/stylesheets/jquery-ui.css.scss */
.ui-datepicker-multi-2 .ui-datepicker-group {
  width: 50%;
}

/* line 513, app/assets/stylesheets/jquery-ui.css.scss */
.ui-datepicker-multi-3 .ui-datepicker-group {
  width: 33.3%;
}

/* line 516, app/assets/stylesheets/jquery-ui.css.scss */
.ui-datepicker-multi-4 .ui-datepicker-group {
  width: 25%;
}

/* line 519, app/assets/stylesheets/jquery-ui.css.scss */
.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
  border-left-width: 0;
}

/* line 523, app/assets/stylesheets/jquery-ui.css.scss */
.ui-datepicker-multi .ui-datepicker-buttonpane {
  clear: left;
}

/* line 526, app/assets/stylesheets/jquery-ui.css.scss */
.ui-datepicker-row-break {
  clear: both;
  width: 100%;
  font-size: 0;
}

/* RTL support */
/* line 533, app/assets/stylesheets/jquery-ui.css.scss */
.ui-datepicker-rtl {
  direction: rtl;
}

/* line 536, app/assets/stylesheets/jquery-ui.css.scss */
.ui-datepicker-rtl .ui-datepicker-prev {
  right: 2px;
  left: auto;
}

/* line 540, app/assets/stylesheets/jquery-ui.css.scss */
.ui-datepicker-rtl .ui-datepicker-next {
  left: 2px;
  right: auto;
}

/* line 544, app/assets/stylesheets/jquery-ui.css.scss */
.ui-datepicker-rtl .ui-datepicker-prev:hover {
  right: 1px;
  left: auto;
}

/* line 548, app/assets/stylesheets/jquery-ui.css.scss */
.ui-datepicker-rtl .ui-datepicker-next:hover {
  left: 1px;
  right: auto;
}

/* line 552, app/assets/stylesheets/jquery-ui.css.scss */
.ui-datepicker-rtl .ui-datepicker-buttonpane {
  clear: right;
}

/* line 555, app/assets/stylesheets/jquery-ui.css.scss */
.ui-datepicker-rtl .ui-datepicker-buttonpane button {
  float: left;
}

/* line 558, app/assets/stylesheets/jquery-ui.css.scss */
.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,
.ui-datepicker-rtl .ui-datepicker-group {
  float: right;
}

/* line 562, app/assets/stylesheets/jquery-ui.css.scss */
.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
  border-right-width: 0;
  border-left-width: 1px;
}

/* Icons */
/* line 569, app/assets/stylesheets/jquery-ui.css.scss */
.ui-datepicker .ui-icon {
  display: block;
  text-indent: -99999px;
  overflow: hidden;
  background-repeat: no-repeat;
  left: .5em;
  top: .3em;
}

/* line 577, app/assets/stylesheets/jquery-ui.css.scss */
.ui-dialog {
  position: absolute;
  top: 0;
  left: 0;
  padding: .2em;
  outline: 0;
}

/* line 584, app/assets/stylesheets/jquery-ui.css.scss */
.ui-dialog .ui-dialog-titlebar {
  padding: .4em 1em;
  position: relative;
}

/* line 588, app/assets/stylesheets/jquery-ui.css.scss */
.ui-dialog .ui-dialog-title {
  float: left;
  margin: .1em 0;
  white-space: nowrap;
  width: 90%;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* line 596, app/assets/stylesheets/jquery-ui.css.scss */
.ui-dialog .ui-dialog-titlebar-close {
  position: absolute;
  right: .3em;
  top: 50%;
  width: 20px;
  margin: -10px 0 0 0;
  padding: 1px;
  height: 20px;
}

/* line 605, app/assets/stylesheets/jquery-ui.css.scss */
.ui-dialog .ui-dialog-content {
  position: relative;
  border: 0;
  padding: .5em 1em;
  background: none;
  overflow: auto;
}

/* line 612, app/assets/stylesheets/jquery-ui.css.scss */
.ui-dialog .ui-dialog-buttonpane {
  text-align: left;
  border-width: 1px 0 0 0;
  background-image: none;
  margin-top: .5em;
  padding: .3em 1em .5em .4em;
}

/* line 619, app/assets/stylesheets/jquery-ui.css.scss */
.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
  float: right;
}

/* line 622, app/assets/stylesheets/jquery-ui.css.scss */
.ui-dialog .ui-dialog-buttonpane button {
  margin: .5em .4em .5em 0;
  cursor: pointer;
}

/* line 626, app/assets/stylesheets/jquery-ui.css.scss */
.ui-dialog .ui-resizable-n {
  height: 2px;
  top: 0;
}

/* line 630, app/assets/stylesheets/jquery-ui.css.scss */
.ui-dialog .ui-resizable-e {
  width: 2px;
  right: 0;
}

/* line 634, app/assets/stylesheets/jquery-ui.css.scss */
.ui-dialog .ui-resizable-s {
  height: 2px;
  bottom: 0;
}

/* line 638, app/assets/stylesheets/jquery-ui.css.scss */
.ui-dialog .ui-resizable-w {
  width: 2px;
  left: 0;
}

/* line 642, app/assets/stylesheets/jquery-ui.css.scss */
.ui-dialog .ui-resizable-se,
.ui-dialog .ui-resizable-sw,
.ui-dialog .ui-resizable-ne,
.ui-dialog .ui-resizable-nw {
  width: 7px;
  height: 7px;
}

/* line 649, app/assets/stylesheets/jquery-ui.css.scss */
.ui-dialog .ui-resizable-se {
  right: 0;
  bottom: 0;
}

/* line 653, app/assets/stylesheets/jquery-ui.css.scss */
.ui-dialog .ui-resizable-sw {
  left: 0;
  bottom: 0;
}

/* line 657, app/assets/stylesheets/jquery-ui.css.scss */
.ui-dialog .ui-resizable-ne {
  right: 0;
  top: 0;
}

/* line 661, app/assets/stylesheets/jquery-ui.css.scss */
.ui-dialog .ui-resizable-nw {
  left: 0;
  top: 0;
}

/* line 665, app/assets/stylesheets/jquery-ui.css.scss */
.ui-draggable .ui-dialog-titlebar {
  cursor: move;
}

/* line 668, app/assets/stylesheets/jquery-ui.css.scss */
.ui-progressbar {
  height: 2em;
  text-align: left;
  overflow: hidden;
}

/* line 673, app/assets/stylesheets/jquery-ui.css.scss */
.ui-progressbar .ui-progressbar-value {
  margin: -1px;
  height: 100%;
}

/* line 677, app/assets/stylesheets/jquery-ui.css.scss */
.ui-progressbar .ui-progressbar-overlay {
  background: url("data:image/gif;base64,R0lGODlhKAAoAIABAAAAAP///yH/C05FVFNDQVBFMi4wAwEAAAAh+QQJAQABACwAAAAAKAAoAAACkYwNqXrdC52DS06a7MFZI+4FHBCKoDeWKXqymPqGqxvJrXZbMx7Ttc+w9XgU2FB3lOyQRWET2IFGiU9m1frDVpxZZc6bfHwv4c1YXP6k1Vdy292Fb6UkuvFtXpvWSzA+HycXJHUXiGYIiMg2R6W459gnWGfHNdjIqDWVqemH2ekpObkpOlppWUqZiqr6edqqWQAAIfkECQEAAQAsAAAAACgAKAAAApSMgZnGfaqcg1E2uuzDmmHUBR8Qil95hiPKqWn3aqtLsS18y7G1SzNeowWBENtQd+T1JktP05nzPTdJZlR6vUxNWWjV+vUWhWNkWFwxl9VpZRedYcflIOLafaa28XdsH/ynlcc1uPVDZxQIR0K25+cICCmoqCe5mGhZOfeYSUh5yJcJyrkZWWpaR8doJ2o4NYq62lAAACH5BAkBAAEALAAAAAAoACgAAAKVDI4Yy22ZnINRNqosw0Bv7i1gyHUkFj7oSaWlu3ovC8GxNso5fluz3qLVhBVeT/Lz7ZTHyxL5dDalQWPVOsQWtRnuwXaFTj9jVVh8pma9JjZ4zYSj5ZOyma7uuolffh+IR5aW97cHuBUXKGKXlKjn+DiHWMcYJah4N0lYCMlJOXipGRr5qdgoSTrqWSq6WFl2ypoaUAAAIfkECQEAAQAsAAAAACgAKAAAApaEb6HLgd/iO7FNWtcFWe+ufODGjRfoiJ2akShbueb0wtI50zm02pbvwfWEMWBQ1zKGlLIhskiEPm9R6vRXxV4ZzWT2yHOGpWMyorblKlNp8HmHEb/lCXjcW7bmtXP8Xt229OVWR1fod2eWqNfHuMjXCPkIGNileOiImVmCOEmoSfn3yXlJWmoHGhqp6ilYuWYpmTqKUgAAIfkECQEAAQAsAAAAACgAKAAAApiEH6kb58biQ3FNWtMFWW3eNVcojuFGfqnZqSebuS06w5V80/X02pKe8zFwP6EFWOT1lDFk8rGERh1TTNOocQ61Hm4Xm2VexUHpzjymViHrFbiELsefVrn6XKfnt2Q9G/+Xdie499XHd2g4h7ioOGhXGJboGAnXSBnoBwKYyfioubZJ2Hn0RuRZaflZOil56Zp6iioKSXpUAAAh+QQJAQABACwAAAAAKAAoAAACkoQRqRvnxuI7kU1a1UU5bd5tnSeOZXhmn5lWK3qNTWvRdQxP8qvaC+/yaYQzXO7BMvaUEmJRd3TsiMAgswmNYrSgZdYrTX6tSHGZO73ezuAw2uxuQ+BbeZfMxsexY35+/Qe4J1inV0g4x3WHuMhIl2jXOKT2Q+VU5fgoSUI52VfZyfkJGkha6jmY+aaYdirq+lQAACH5BAkBAAEALAAAAAAoACgAAAKWBIKpYe0L3YNKToqswUlvznigd4wiR4KhZrKt9Upqip61i9E3vMvxRdHlbEFiEXfk9YARYxOZZD6VQ2pUunBmtRXo1Lf8hMVVcNl8JafV38aM2/Fu5V16Bn63r6xt97j09+MXSFi4BniGFae3hzbH9+hYBzkpuUh5aZmHuanZOZgIuvbGiNeomCnaxxap2upaCZsq+1kAACH5BAkBAAEALAAAAAAoACgAAAKXjI8By5zf4kOxTVrXNVlv1X0d8IGZGKLnNpYtm8Lr9cqVeuOSvfOW79D9aDHizNhDJidFZhNydEahOaDH6nomtJjp1tutKoNWkvA6JqfRVLHU/QUfau9l2x7G54d1fl995xcIGAdXqMfBNadoYrhH+Mg2KBlpVpbluCiXmMnZ2Sh4GBqJ+ckIOqqJ6LmKSllZmsoq6wpQAAAh+QQJAQABACwAAAAAKAAoAAAClYx/oLvoxuJDkU1a1YUZbJ59nSd2ZXhWqbRa2/gF8Gu2DY3iqs7yrq+xBYEkYvFSM8aSSObE+ZgRl1BHFZNr7pRCavZ5BW2142hY3AN/zWtsmf12p9XxxFl2lpLn1rseztfXZjdIWIf2s5dItwjYKBgo9yg5pHgzJXTEeGlZuenpyPmpGQoKOWkYmSpaSnqKileI2FAAACH5BAkBAAEALAAAAAAoACgAAAKVjB+gu+jG4kORTVrVhRlsnn2dJ3ZleFaptFrb+CXmO9OozeL5VfP99HvAWhpiUdcwkpBH3825AwYdU8xTqlLGhtCosArKMpvfa1mMRae9VvWZfeB2XfPkeLmm18lUcBj+p5dnN8jXZ3YIGEhYuOUn45aoCDkp16hl5IjYJvjWKcnoGQpqyPlpOhr3aElaqrq56Bq7VAAAOw==");
  height: 100%;
  filter: alpha(opacity=25);
  /* support: IE8 */
  opacity: 0.25;
}

/* line 683, app/assets/stylesheets/jquery-ui.css.scss */
.ui-progressbar-indeterminate .ui-progressbar-value {
  background-image: none;
}

/* line 686, app/assets/stylesheets/jquery-ui.css.scss */
.ui-selectmenu-menu {
  padding: 0;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  display: none;
}

/* line 694, app/assets/stylesheets/jquery-ui.css.scss */
.ui-selectmenu-menu .ui-menu {
  overflow: auto;
  overflow-x: hidden;
  padding-bottom: 1px;
}

/* line 699, app/assets/stylesheets/jquery-ui.css.scss */
.ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup {
  font-size: 1em;
  font-weight: bold;
  line-height: 1.5;
  padding: 2px 0.4em;
  margin: 0.5em 0 0 0;
  height: auto;
  border: 0;
}

/* line 708, app/assets/stylesheets/jquery-ui.css.scss */
.ui-selectmenu-open {
  display: block;
}

/* line 711, app/assets/stylesheets/jquery-ui.css.scss */
.ui-selectmenu-text {
  display: block;
  margin-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* line 717, app/assets/stylesheets/jquery-ui.css.scss */
.ui-selectmenu-button.ui-button {
  text-align: left;
  white-space: nowrap;
  width: 14em;
}

/* line 722, app/assets/stylesheets/jquery-ui.css.scss */
.ui-selectmenu-icon.ui-icon {
  float: right;
  margin-top: 0;
}

/* line 726, app/assets/stylesheets/jquery-ui.css.scss */
.ui-slider {
  position: relative;
  text-align: left;
}

/* line 730, app/assets/stylesheets/jquery-ui.css.scss */
.ui-slider .ui-slider-handle {
  position: absolute;
  z-index: 2;
  width: 1.2em;
  height: 1.2em;
  cursor: default;
  -ms-touch-action: none;
  touch-action: none;
}

/* line 739, app/assets/stylesheets/jquery-ui.css.scss */
.ui-slider .ui-slider-range {
  position: absolute;
  z-index: 1;
  font-size: .7em;
  display: block;
  border: 0;
  background-position: 0 0;
}

/* support: IE8 - See #6727 */
/* line 749, app/assets/stylesheets/jquery-ui.css.scss */
.ui-slider.ui-state-disabled .ui-slider-handle,
.ui-slider.ui-state-disabled .ui-slider-range {
  filter: inherit;
}

/* line 754, app/assets/stylesheets/jquery-ui.css.scss */
.ui-slider-horizontal {
  height: .8em;
}

/* line 757, app/assets/stylesheets/jquery-ui.css.scss */
.ui-slider-horizontal .ui-slider-handle {
  top: -.3em;
  margin-left: -.6em;
}

/* line 761, app/assets/stylesheets/jquery-ui.css.scss */
.ui-slider-horizontal .ui-slider-range {
  top: 0;
  height: 100%;
}

/* line 765, app/assets/stylesheets/jquery-ui.css.scss */
.ui-slider-horizontal .ui-slider-range-min {
  left: 0;
}

/* line 768, app/assets/stylesheets/jquery-ui.css.scss */
.ui-slider-horizontal .ui-slider-range-max {
  right: 0;
}

/* line 772, app/assets/stylesheets/jquery-ui.css.scss */
.ui-slider-vertical {
  width: .8em;
  height: 100px;
}

/* line 776, app/assets/stylesheets/jquery-ui.css.scss */
.ui-slider-vertical .ui-slider-handle {
  left: -.3em;
  margin-left: 0;
  margin-bottom: -.6em;
}

/* line 781, app/assets/stylesheets/jquery-ui.css.scss */
.ui-slider-vertical .ui-slider-range {
  left: 0;
  width: 100%;
}

/* line 785, app/assets/stylesheets/jquery-ui.css.scss */
.ui-slider-vertical .ui-slider-range-min {
  bottom: 0;
}

/* line 788, app/assets/stylesheets/jquery-ui.css.scss */
.ui-slider-vertical .ui-slider-range-max {
  top: 0;
}

/* line 791, app/assets/stylesheets/jquery-ui.css.scss */
.ui-spinner {
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding: 0;
  vertical-align: middle;
}

/* line 798, app/assets/stylesheets/jquery-ui.css.scss */
.ui-spinner-input {
  border: none;
  background: none;
  color: inherit;
  padding: .222em 0;
  margin: .2em 0;
  vertical-align: middle;
  margin-left: .4em;
  margin-right: 2em;
}

/* line 808, app/assets/stylesheets/jquery-ui.css.scss */
.ui-spinner-button {
  width: 1.6em;
  height: 50%;
  font-size: .5em;
  padding: 0;
  margin: 0;
  text-align: center;
  position: absolute;
  cursor: default;
  display: block;
  overflow: hidden;
  right: 0;
}

/* more specificity required here to override default borders */
/* line 822, app/assets/stylesheets/jquery-ui.css.scss */
.ui-spinner a.ui-spinner-button {
  border-top-style: none;
  border-bottom-style: none;
  border-right-style: none;
}

/* line 827, app/assets/stylesheets/jquery-ui.css.scss */
.ui-spinner-up {
  top: 0;
}

/* line 830, app/assets/stylesheets/jquery-ui.css.scss */
.ui-spinner-down {
  bottom: 0;
}

/* line 833, app/assets/stylesheets/jquery-ui.css.scss */
.ui-tabs {
  position: relative;
  /* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */
  padding: .2em;
}

/* line 837, app/assets/stylesheets/jquery-ui.css.scss */
.ui-tabs .ui-tabs-nav {
  margin: 0;
  padding: .2em .2em 0;
}

/* line 841, app/assets/stylesheets/jquery-ui.css.scss */
.ui-tabs .ui-tabs-nav li {
  list-style: none;
  float: left;
  position: relative;
  top: 0;
  margin: 1px .2em 0 0;
  border-bottom-width: 0;
  padding: 0;
  white-space: nowrap;
}

/* line 851, app/assets/stylesheets/jquery-ui.css.scss */
.ui-tabs .ui-tabs-nav .ui-tabs-anchor {
  float: left;
  padding: .5em 1em;
  text-decoration: none;
}

/* line 856, app/assets/stylesheets/jquery-ui.css.scss */
.ui-tabs .ui-tabs-nav li.ui-tabs-active {
  margin-bottom: -1px;
  padding-bottom: 1px;
}

/* line 860, app/assets/stylesheets/jquery-ui.css.scss */
.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor {
  cursor: text;
}

/* line 865, app/assets/stylesheets/jquery-ui.css.scss */
.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor {
  cursor: pointer;
}

/* line 868, app/assets/stylesheets/jquery-ui.css.scss */
.ui-tabs .ui-tabs-panel {
  display: block;
  border-width: 0;
  padding: 1em 1.4em;
  background: none;
}

/* line 874, app/assets/stylesheets/jquery-ui.css.scss */
.ui-tooltip {
  padding: 8px;
  position: absolute;
  z-index: 9999;
  max-width: 300px;
}

/* line 880, app/assets/stylesheets/jquery-ui.css.scss */
body .ui-tooltip {
  border-width: 2px;
}

/* Component containers
----------------------------------*/
/* line 886, app/assets/stylesheets/jquery-ui.css.scss */
.ui-widget {
  font-family: Arial,Helvetica,sans-serif;
  font-size: 1em;
}

/* line 890, app/assets/stylesheets/jquery-ui.css.scss */
.ui-widget .ui-widget {
  font-size: 1em;
}

/* line 893, app/assets/stylesheets/jquery-ui.css.scss */
.ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button {
  font-family: Arial,Helvetica,sans-serif;
  font-size: 1em;
}

/* line 900, app/assets/stylesheets/jquery-ui.css.scss */
.ui-widget.ui-widget-content {
  border: 1px solid #c5c5c5;
}

/* line 903, app/assets/stylesheets/jquery-ui.css.scss */
.ui-widget-content {
  border: 1px solid #dddddd;
  background: #ffffff;
  color: #333333;
}

/* line 908, app/assets/stylesheets/jquery-ui.css.scss */
.ui-widget-content a {
  color: #333333;
}

/* line 911, app/assets/stylesheets/jquery-ui.css.scss */
.ui-widget-header {
  border: 1px solid #dddddd;
  background: #e9e9e9;
  color: #333333;
  font-weight: bold;
}

/* line 917, app/assets/stylesheets/jquery-ui.css.scss */
.ui-widget-header a {
  color: #333333;
}

/* Interaction states
----------------------------------*/
/* line 923, app/assets/stylesheets/jquery-ui.css.scss */
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
  border: 1px solid #c5c5c5;
  background: #f6f6f6;
  font-weight: normal;
  color: #454545;
}

/* line 937, app/assets/stylesheets/jquery-ui.css.scss */
.ui-state-default a,
.ui-state-default a:link,
.ui-state-default a:visited,
a.ui-button,
a.ui-button:link,
a.ui-button:visited,
.ui-button {
  color: #454545;
  text-decoration: none;
}

/* line 947, app/assets/stylesheets/jquery-ui.css.scss */
.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus,
.ui-button:hover,
.ui-button:focus {
  border: 1px solid #cccccc;
  background: #ededed;
  font-weight: normal;
  color: #2b2b2b;
}

/* line 960, app/assets/stylesheets/jquery-ui.css.scss */
.ui-state-hover a,
.ui-state-hover a:hover,
.ui-state-hover a:link,
.ui-state-hover a:visited,
.ui-state-focus a,
.ui-state-focus a:hover,
.ui-state-focus a:link,
.ui-state-focus a:visited,
a.ui-button:hover,
a.ui-button:focus {
  color: #2b2b2b;
  text-decoration: none;
}

/* line 974, app/assets/stylesheets/jquery-ui.css.scss */
.ui-visual-focus {
  box-shadow: 0 0 3px 1px #5e9ed6;
}

/* line 977, app/assets/stylesheets/jquery-ui.css.scss */
.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
  border: 1px solid #003eff;
  background: #007fff;
  font-weight: normal;
  color: #ffffff;
}

/* line 988, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-background,
.ui-state-active .ui-icon-background {
  border: #003eff;
  background-color: #ffffff;
}

/* line 993, app/assets/stylesheets/jquery-ui.css.scss */
.ui-state-active a,
.ui-state-active a:link,
.ui-state-active a:visited {
  color: #ffffff;
  text-decoration: none;
}

/* Interaction Cues
----------------------------------*/
/* line 1002, app/assets/stylesheets/jquery-ui.css.scss */
.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
  border: 1px solid #dad55e;
  background: #fffa90;
  color: #777620;
}

/* line 1009, app/assets/stylesheets/jquery-ui.css.scss */
.ui-state-checked {
  border: 1px solid #dad55e;
  background: #fffa90;
}

/* line 1013, app/assets/stylesheets/jquery-ui.css.scss */
.ui-state-highlight a,
.ui-widget-content .ui-state-highlight a,
.ui-widget-header .ui-state-highlight a {
  color: #777620;
}

/* line 1018, app/assets/stylesheets/jquery-ui.css.scss */
.ui-state-error,
.ui-widget-content .ui-state-error,
.ui-widget-header .ui-state-error {
  border: 1px solid #f1a899;
  background: #fddfdf;
  color: #5f3f3f;
}

/* line 1025, app/assets/stylesheets/jquery-ui.css.scss */
.ui-state-error a,
.ui-widget-content .ui-state-error a,
.ui-widget-header .ui-state-error a {
  color: #5f3f3f;
}

/* line 1030, app/assets/stylesheets/jquery-ui.css.scss */
.ui-state-error-text,
.ui-widget-content .ui-state-error-text,
.ui-widget-header .ui-state-error-text {
  color: #5f3f3f;
}

/* line 1035, app/assets/stylesheets/jquery-ui.css.scss */
.ui-priority-primary,
.ui-widget-content .ui-priority-primary,
.ui-widget-header .ui-priority-primary {
  font-weight: bold;
}

/* line 1040, app/assets/stylesheets/jquery-ui.css.scss */
.ui-priority-secondary,
.ui-widget-content .ui-priority-secondary,
.ui-widget-header .ui-priority-secondary {
  opacity: .7;
  filter: Alpha(Opacity=70);
  /* support: IE8 */
  font-weight: normal;
}

/* line 1047, app/assets/stylesheets/jquery-ui.css.scss */
.ui-state-disabled,
.ui-widget-content .ui-state-disabled,
.ui-widget-header .ui-state-disabled {
  opacity: .35;
  filter: Alpha(Opacity=35);
  /* support: IE8 */
  background-image: none;
}

/* line 1054, app/assets/stylesheets/jquery-ui.css.scss */
.ui-state-disabled .ui-icon {
  filter: Alpha(Opacity=35);
  /* support: IE8 - See #6059 */
}

/* Icons
----------------------------------*/
/* states and images */
/* line 1062, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon {
  width: 16px;
  height: 16px;
}

/* line 1066, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon,
.ui-widget-content .ui-icon {
  background-image: url(/assets/ui-icons_444444_256x240-0de0d1d458ffe37606c330b6e1ee993bfac7d29d8092eb29e42242e516ae9f72.png);
}

/* line 1070, app/assets/stylesheets/jquery-ui.css.scss */
.ui-widget-header .ui-icon {
  background-image: url(/assets/ui-icons_444444_256x240-0de0d1d458ffe37606c330b6e1ee993bfac7d29d8092eb29e42242e516ae9f72.png);
}

/* line 1073, app/assets/stylesheets/jquery-ui.css.scss */
.ui-state-hover .ui-icon,
.ui-state-focus .ui-icon,
.ui-button:hover .ui-icon,
.ui-button:focus .ui-icon {
  background-image: url(/assets/ui-icons_555555_256x240-a0f9f3528773f46cedb45360720e1b81d8a561ee9b345de69061b68e621404eb.png);
}

/* line 1079, app/assets/stylesheets/jquery-ui.css.scss */
.ui-state-active .ui-icon,
.ui-button:active .ui-icon {
  background-image: url(/assets/ui-icons_ffffff_256x240-c692beecd7997762813d4fb6a36b8476a21d0a8789ccebfd7d90dd175586ee39.png);
}

/* line 1083, app/assets/stylesheets/jquery-ui.css.scss */
.ui-state-highlight .ui-icon,
.ui-button .ui-state-highlight.ui-icon {
  background-image: url(/assets/ui-icons_777620_256x240-001154df48b490b8a271aa081853db28ac560533008ffd8a11075528e6c3c718.png);
}

/* line 1087, app/assets/stylesheets/jquery-ui.css.scss */
.ui-state-error .ui-icon,
.ui-state-error-text .ui-icon {
  background-image: url(/assets/ui-icons_cc0000_256x240-55da131d0c32547316600866342c1a2df0e70d87ae8359dddf65ce9c909faa0c.png);
}

/* line 1091, app/assets/stylesheets/jquery-ui.css.scss */
.ui-button .ui-icon {
  background-image: url(/assets/ui-icons_777777_256x240-fb1ecb9115623eb25cd9bd2032422b98410be54c69b1cbee582fb66411b3c308.png);
}

/* positioning */
/* line 1096, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-blank {
  background-position: 16px 16px;
}

/* line 1097, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-caret-1-n {
  background-position: 0 0;
}

/* line 1098, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-caret-1-ne {
  background-position: -16px 0;
}

/* line 1099, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-caret-1-e {
  background-position: -32px 0;
}

/* line 1100, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-caret-1-se {
  background-position: -48px 0;
}

/* line 1101, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-caret-1-s {
  background-position: -65px 0;
}

/* line 1102, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-caret-1-sw {
  background-position: -80px 0;
}

/* line 1103, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-caret-1-w {
  background-position: -96px 0;
}

/* line 1104, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-caret-1-nw {
  background-position: -112px 0;
}

/* line 1105, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-caret-2-n-s {
  background-position: -128px 0;
}

/* line 1106, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-caret-2-e-w {
  background-position: -144px 0;
}

/* line 1107, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-triangle-1-n {
  background-position: 0 -16px;
}

/* line 1108, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-triangle-1-ne {
  background-position: -16px -16px;
}

/* line 1109, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-triangle-1-e {
  background-position: -32px -16px;
}

/* line 1110, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-triangle-1-se {
  background-position: -48px -16px;
}

/* line 1111, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-triangle-1-s {
  background-position: -65px -16px;
}

/* line 1112, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-triangle-1-sw {
  background-position: -80px -16px;
}

/* line 1113, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-triangle-1-w {
  background-position: -96px -16px;
}

/* line 1114, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-triangle-1-nw {
  background-position: -112px -16px;
}

/* line 1115, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-triangle-2-n-s {
  background-position: -128px -16px;
}

/* line 1116, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-triangle-2-e-w {
  background-position: -144px -16px;
}

/* line 1117, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-arrow-1-n {
  background-position: 0 -32px;
}

/* line 1118, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-arrow-1-ne {
  background-position: -16px -32px;
}

/* line 1119, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-arrow-1-e {
  background-position: -32px -32px;
}

/* line 1120, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-arrow-1-se {
  background-position: -48px -32px;
}

/* line 1121, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-arrow-1-s {
  background-position: -65px -32px;
}

/* line 1122, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-arrow-1-sw {
  background-position: -80px -32px;
}

/* line 1123, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-arrow-1-w {
  background-position: -96px -32px;
}

/* line 1124, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-arrow-1-nw {
  background-position: -112px -32px;
}

/* line 1125, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-arrow-2-n-s {
  background-position: -128px -32px;
}

/* line 1126, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-arrow-2-ne-sw {
  background-position: -144px -32px;
}

/* line 1127, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-arrow-2-e-w {
  background-position: -160px -32px;
}

/* line 1128, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-arrow-2-se-nw {
  background-position: -176px -32px;
}

/* line 1129, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-arrowstop-1-n {
  background-position: -192px -32px;
}

/* line 1130, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-arrowstop-1-e {
  background-position: -208px -32px;
}

/* line 1131, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-arrowstop-1-s {
  background-position: -224px -32px;
}

/* line 1132, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-arrowstop-1-w {
  background-position: -240px -32px;
}

/* line 1133, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-arrowthick-1-n {
  background-position: 1px -48px;
}

/* line 1134, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-arrowthick-1-ne {
  background-position: -16px -48px;
}

/* line 1135, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-arrowthick-1-e {
  background-position: -32px -48px;
}

/* line 1136, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-arrowthick-1-se {
  background-position: -48px -48px;
}

/* line 1137, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-arrowthick-1-s {
  background-position: -64px -48px;
}

/* line 1138, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-arrowthick-1-sw {
  background-position: -80px -48px;
}

/* line 1139, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-arrowthick-1-w {
  background-position: -96px -48px;
}

/* line 1140, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-arrowthick-1-nw {
  background-position: -112px -48px;
}

/* line 1141, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-arrowthick-2-n-s {
  background-position: -128px -48px;
}

/* line 1142, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-arrowthick-2-ne-sw {
  background-position: -144px -48px;
}

/* line 1143, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-arrowthick-2-e-w {
  background-position: -160px -48px;
}

/* line 1144, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-arrowthick-2-se-nw {
  background-position: -176px -48px;
}

/* line 1145, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-arrowthickstop-1-n {
  background-position: -192px -48px;
}

/* line 1146, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-arrowthickstop-1-e {
  background-position: -208px -48px;
}

/* line 1147, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-arrowthickstop-1-s {
  background-position: -224px -48px;
}

/* line 1148, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-arrowthickstop-1-w {
  background-position: -240px -48px;
}

/* line 1149, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-arrowreturnthick-1-w {
  background-position: 0 -64px;
}

/* line 1150, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-arrowreturnthick-1-n {
  background-position: -16px -64px;
}

/* line 1151, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-arrowreturnthick-1-e {
  background-position: -32px -64px;
}

/* line 1152, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-arrowreturnthick-1-s {
  background-position: -48px -64px;
}

/* line 1153, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-arrowreturn-1-w {
  background-position: -64px -64px;
}

/* line 1154, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-arrowreturn-1-n {
  background-position: -80px -64px;
}

/* line 1155, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-arrowreturn-1-e {
  background-position: -96px -64px;
}

/* line 1156, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-arrowreturn-1-s {
  background-position: -112px -64px;
}

/* line 1157, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-arrowrefresh-1-w {
  background-position: -128px -64px;
}

/* line 1158, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-arrowrefresh-1-n {
  background-position: -144px -64px;
}

/* line 1159, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-arrowrefresh-1-e {
  background-position: -160px -64px;
}

/* line 1160, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-arrowrefresh-1-s {
  background-position: -176px -64px;
}

/* line 1161, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-arrow-4 {
  background-position: 0 -80px;
}

/* line 1162, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-arrow-4-diag {
  background-position: -16px -80px;
}

/* line 1163, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-extlink {
  background-position: -32px -80px;
}

/* line 1164, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-newwin {
  background-position: -48px -80px;
}

/* line 1165, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-refresh {
  background-position: -64px -80px;
}

/* line 1166, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-shuffle {
  background-position: -80px -80px;
}

/* line 1167, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-transfer-e-w {
  background-position: -96px -80px;
}

/* line 1168, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-transferthick-e-w {
  background-position: -112px -80px;
}

/* line 1169, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-folder-collapsed {
  background-position: 0 -96px;
}

/* line 1170, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-folder-open {
  background-position: -16px -96px;
}

/* line 1171, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-document {
  background-position: -32px -96px;
}

/* line 1172, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-document-b {
  background-position: -48px -96px;
}

/* line 1173, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-note {
  background-position: -64px -96px;
}

/* line 1174, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-mail-closed {
  background-position: -80px -96px;
}

/* line 1175, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-mail-open {
  background-position: -96px -96px;
}

/* line 1176, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-suitcase {
  background-position: -112px -96px;
}

/* line 1177, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-comment {
  background-position: -128px -96px;
}

/* line 1178, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-person {
  background-position: -144px -96px;
}

/* line 1179, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-print {
  background-position: -160px -96px;
}

/* line 1180, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-trash {
  background-position: -176px -96px;
}

/* line 1181, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-locked {
  background-position: -192px -96px;
}

/* line 1182, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-unlocked {
  background-position: -208px -96px;
}

/* line 1183, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-bookmark {
  background-position: -224px -96px;
}

/* line 1184, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-tag {
  background-position: -240px -96px;
}

/* line 1185, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-home {
  background-position: 0 -112px;
}

/* line 1186, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-flag {
  background-position: -16px -112px;
}

/* line 1187, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-calendar {
  background-position: -32px -112px;
}

/* line 1188, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-cart {
  background-position: -48px -112px;
}

/* line 1189, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-pencil {
  background-position: -64px -112px;
}

/* line 1190, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-clock {
  background-position: -80px -112px;
}

/* line 1191, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-disk {
  background-position: -96px -112px;
}

/* line 1192, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-calculator {
  background-position: -112px -112px;
}

/* line 1193, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-zoomin {
  background-position: -128px -112px;
}

/* line 1194, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-zoomout {
  background-position: -144px -112px;
}

/* line 1195, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-search {
  background-position: -160px -112px;
}

/* line 1196, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-wrench {
  background-position: -176px -112px;
}

/* line 1197, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-gear {
  background-position: -192px -112px;
}

/* line 1198, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-heart {
  background-position: -208px -112px;
}

/* line 1199, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-star {
  background-position: -224px -112px;
}

/* line 1200, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-link {
  background-position: -240px -112px;
}

/* line 1201, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-cancel {
  background-position: 0 -128px;
}

/* line 1202, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-plus {
  background-position: -16px -128px;
}

/* line 1203, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-plusthick {
  background-position: -32px -128px;
}

/* line 1204, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-minus {
  background-position: -48px -128px;
}

/* line 1205, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-minusthick {
  background-position: -64px -128px;
}

/* line 1206, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-close {
  background-position: -80px -128px;
}

/* line 1207, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-closethick {
  background-position: -96px -128px;
}

/* line 1208, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-key {
  background-position: -112px -128px;
}

/* line 1209, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-lightbulb {
  background-position: -128px -128px;
}

/* line 1210, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-scissors {
  background-position: -144px -128px;
}

/* line 1211, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-clipboard {
  background-position: -160px -128px;
}

/* line 1212, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-copy {
  background-position: -176px -128px;
}

/* line 1213, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-contact {
  background-position: -192px -128px;
}

/* line 1214, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-image {
  background-position: -208px -128px;
}

/* line 1215, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-video {
  background-position: -224px -128px;
}

/* line 1216, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-script {
  background-position: -240px -128px;
}

/* line 1217, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-alert {
  background-position: 0 -144px;
}

/* line 1218, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-info {
  background-position: -16px -144px;
}

/* line 1219, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-notice {
  background-position: -32px -144px;
}

/* line 1220, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-help {
  background-position: -48px -144px;
}

/* line 1221, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-check {
  background-position: -64px -144px;
}

/* line 1222, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-bullet {
  background-position: -80px -144px;
}

/* line 1223, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-radio-on {
  background-position: -96px -144px;
}

/* line 1224, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-radio-off {
  background-position: -112px -144px;
}

/* line 1225, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-pin-w {
  background-position: -128px -144px;
}

/* line 1226, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-pin-s {
  background-position: -144px -144px;
}

/* line 1227, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-play {
  background-position: 0 -160px;
}

/* line 1228, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-pause {
  background-position: -16px -160px;
}

/* line 1229, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-seek-next {
  background-position: -32px -160px;
}

/* line 1230, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-seek-prev {
  background-position: -48px -160px;
}

/* line 1231, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-seek-end {
  background-position: -64px -160px;
}

/* line 1232, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-seek-start {
  background-position: -80px -160px;
}

/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
/* line 1234, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-seek-first {
  background-position: -80px -160px;
}

/* line 1235, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-stop {
  background-position: -96px -160px;
}

/* line 1236, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-eject {
  background-position: -112px -160px;
}

/* line 1237, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-volume-off {
  background-position: -128px -160px;
}

/* line 1238, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-volume-on {
  background-position: -144px -160px;
}

/* line 1239, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-power {
  background-position: 0 -176px;
}

/* line 1240, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-signal-diag {
  background-position: -16px -176px;
}

/* line 1241, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-signal {
  background-position: -32px -176px;
}

/* line 1242, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-battery-0 {
  background-position: -48px -176px;
}

/* line 1243, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-battery-1 {
  background-position: -64px -176px;
}

/* line 1244, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-battery-2 {
  background-position: -80px -176px;
}

/* line 1245, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-battery-3 {
  background-position: -96px -176px;
}

/* line 1246, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-circle-plus {
  background-position: 0 -192px;
}

/* line 1247, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-circle-minus {
  background-position: -16px -192px;
}

/* line 1248, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-circle-close {
  background-position: -32px -192px;
}

/* line 1249, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-circle-triangle-e {
  background-position: -48px -192px;
}

/* line 1250, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-circle-triangle-s {
  background-position: -64px -192px;
}

/* line 1251, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-circle-triangle-w {
  background-position: -80px -192px;
}

/* line 1252, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-circle-triangle-n {
  background-position: -96px -192px;
}

/* line 1253, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-circle-arrow-e {
  background-position: -112px -192px;
}

/* line 1254, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-circle-arrow-s {
  background-position: -128px -192px;
}

/* line 1255, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-circle-arrow-w {
  background-position: -144px -192px;
}

/* line 1256, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-circle-arrow-n {
  background-position: -160px -192px;
}

/* line 1257, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-circle-zoomin {
  background-position: -176px -192px;
}

/* line 1258, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-circle-zoomout {
  background-position: -192px -192px;
}

/* line 1259, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-circle-check {
  background-position: -208px -192px;
}

/* line 1260, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-circlesmall-plus {
  background-position: 0 -208px;
}

/* line 1261, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-circlesmall-minus {
  background-position: -16px -208px;
}

/* line 1262, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-circlesmall-close {
  background-position: -32px -208px;
}

/* line 1263, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-squaresmall-plus {
  background-position: -48px -208px;
}

/* line 1264, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-squaresmall-minus {
  background-position: -64px -208px;
}

/* line 1265, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-squaresmall-close {
  background-position: -80px -208px;
}

/* line 1266, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-grip-dotted-vertical {
  background-position: 0 -224px;
}

/* line 1267, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-grip-dotted-horizontal {
  background-position: -16px -224px;
}

/* line 1268, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-grip-solid-vertical {
  background-position: -32px -224px;
}

/* line 1269, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-grip-solid-horizontal {
  background-position: -48px -224px;
}

/* line 1270, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-gripsmall-diagonal-se {
  background-position: -64px -224px;
}

/* line 1271, app/assets/stylesheets/jquery-ui.css.scss */
.ui-icon-grip-diagonal-se {
  background-position: -80px -224px;
}

/* Misc visuals
----------------------------------*/
/* Corner radius */
/* line 1278, app/assets/stylesheets/jquery-ui.css.scss */
.ui-corner-all,
.ui-corner-top,
.ui-corner-left,
.ui-corner-tl {
  border-top-left-radius: 3px;
}

/* line 1284, app/assets/stylesheets/jquery-ui.css.scss */
.ui-corner-all,
.ui-corner-top,
.ui-corner-right,
.ui-corner-tr {
  border-top-right-radius: 3px;
}

/* line 1290, app/assets/stylesheets/jquery-ui.css.scss */
.ui-corner-all,
.ui-corner-bottom,
.ui-corner-left,
.ui-corner-bl {
  border-bottom-left-radius: 3px;
}

/* line 1296, app/assets/stylesheets/jquery-ui.css.scss */
.ui-corner-all,
.ui-corner-bottom,
.ui-corner-right,
.ui-corner-br {
  border-bottom-right-radius: 3px;
}

/* Overlays */
/* line 1304, app/assets/stylesheets/jquery-ui.css.scss */
.ui-widget-overlay {
  background: #aaaaaa;
  opacity: .3;
  filter: Alpha(Opacity=30);
  /* support: IE8 */
}

/* line 1309, app/assets/stylesheets/jquery-ui.css.scss */
.ui-widget-shadow {
  -webkit-box-shadow: 0px 0px 5px #666666;
  box-shadow: 0px 0px 5px #666666;
}
.miniColors-trigger {
	height: 22px;
	width: 22px;
	background: url(/images/trigger.png) center no-repeat;
	vertical-align: middle;
	margin: 0 .25em;
	display: inline-block;
	outline: none;
}

.miniColors-selector {
	position: absolute;
	width: 175px;
	height: 150px;
	background: #FFF;
	border: solid 1px #BBB;
	-moz-box-shadow: 0 0 6px rgba(0, 0, 0, .25);
	-webkit-box-shadow: 0 0 6px rgba(0, 0, 0, .25);
	box-shadow: 0 0 6px rgba(0, 0, 0, .25);
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	padding: 5px;
	z-index: 999999;
}

.miniColors-selector.black {
	background: #000;
	border-color: #000;
}

.miniColors-colors {
	position: absolute;
	top: 5px;
	left: 5px;
	width: 150px;
	height: 150px;
	background: url(/images/colors.png) right no-repeat;
	cursor: crosshair;
}

.miniColors-hues {
	position: absolute;
	top: 5px;
	left: 160px;
	width: 20px;
	height: 150px;
	background: url(/images/colors.png) left no-repeat;
	cursor: crosshair;
}

.miniColors-colorPicker {
	position: absolute;
	width: 9px;
	height: 9px;
	border: 1px solid #fff;
	-moz-border-radius: 11px;
	-webkit-border-radius: 11px;
	border-radius: 11px;
}
.miniColors-colorPicker-inner {
	position: absolute;
	top: 0;
	left: 0; 
	width: 7px;
	height: 7px;
	border: 1px solid #000;
	-moz-border-radius: 9px;
	-webkit-border-radius: 9px;
	border-radius: 9px;
}

.miniColors-huePicker {
	position: absolute;
	left: -3px;
	width: 24px;
	height: 1px;
	border: 1px solid #fff;
	border-radius: 2px;
	background: #000;
}
@font-face {
	font-family: 'ProximaNova';
	src: url(/fonts/proximanova-bold-webfont.eot);
	src: local('☺'), url(/fonts/proximanova-bold-webfont.woff) format('woff'), url(/fonts/proximanova-bold-webfont.ttf) format('truetype'), url(/fonts/proximanova-bold-webfont.svg#webfontz1qPafub) format('svg');
	font-weight: bold;
	font-style: normal;
}

@font-face {
	font-family: 'ProximaNova';
	src: url(/fonts/proximanova-boldit-webfont.eot);
	src: local('☺'), url(/fonts/proximanova-boldit-webfont.woff) format('woff'), url(/fonts/proximanova-boldit-webfont.ttf) format('truetype'), url(/fonts/proximanova-boldit-webfont.svg#webfont5tTfkoIG) format('svg');
	font-weight: bold;
	font-style: italic;
}

@font-face {
	font-family: 'ProximaNova';
	src: url(/fonts/proximanova-regitalic-webfont.eot);
	src: local('☺'), url(/fonts/proximanova-regitalic-webfont.woff) format('woff'), url(/fonts/proximanova-regitalic-webfont.ttf) format('truetype'), url(/fonts/proximanova-regitalic-webfont.svg#webfontlEUycIL7) format('svg');
	font-weight: normal;
	font-style: italic;
}

@font-face {
	font-family: 'ProximaNova';
	src: url(/fonts/proximanova-regular-webfont.eot);
	src: local('☺'), url(/fonts/proximanova-regular-webfont.woff) format('woff'), url(/fonts/proximanova-regular-webfont.ttf) format('truetype'), url(/fonts/proximanova-regular-webfont.svg#webfonteIhch6aq) format('svg');
	font-weight: normal;
	font-style: normal;
}

@font-face {
  font-family: 'Optimus';
  src: url(/fonts/optimusprincepssemibold-webfont.eot);
  src: url(/fonts/optimusprincepssemibold-webfont.eot?#iefix) format('embedded-opentype'),
       url(/fonts/optimusprincepssemibold-webfont.woff) format('woff'),
       url(/fonts/optimusprincepssemibold-webfont.ttf) format('truetype'),
       url(/fonts/optimusprincepssemibold-webfont.svg#OptimusPrincepsSemiBoldRg) format('svg');
  font-weight: normal;
  font-style: normal;
}

h5 { font-weight: bold;}
p { line-height: 20px; }
/* line 1, app/assets/stylesheets/maps.css.scss */
#dashboard_map_container {
  display: flex;
  flex-wrap: nowrap;
}

@media (max-width: 480px) {
  /* line 1, app/assets/stylesheets/maps.css.scss */
  #dashboard_map_container {
    flex-wrap: wrap;
  }
}

@media (min-width: 481px) and (max-width: 767px) {
  /* line 1, app/assets/stylesheets/maps.css.scss */
  #dashboard_map_container {
    flex-wrap: wrap;
  }
}

/* line 11, app/assets/stylesheets/maps.css.scss */
#dashboard_map_container .dashboard_sidebar_container {
  overflow: scroll;
  padding: 0 2rem;
  width: 20%;
  min-width: 200px;
  height: 75vh;
  background: #f5f5f5;
}

@media (max-width: 480px) {
  /* line 11, app/assets/stylesheets/maps.css.scss */
  #dashboard_map_container .dashboard_sidebar_container {
    width: 100%;
    height: auto;
    padding: 1rem 2rem;
  }
}

@media (min-width: 481px) and (max-width: 767px) {
  /* line 11, app/assets/stylesheets/maps.css.scss */
  #dashboard_map_container .dashboard_sidebar_container {
    width: 100%;
    height: auto;
    padding: 1rem 2rem;
  }
}

/* line 28, app/assets/stylesheets/maps.css.scss */
#dashboard_map_container .dashboard_sidebar_container .sidebar_content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

@media (max-width: 480px) {
  /* line 28, app/assets/stylesheets/maps.css.scss */
  #dashboard_map_container .dashboard_sidebar_container .sidebar_content {
    flex-wrap: nowrap;
  }
}

@media (min-width: 481px) and (max-width: 767px) {
  /* line 28, app/assets/stylesheets/maps.css.scss */
  #dashboard_map_container .dashboard_sidebar_container .sidebar_content {
    flex-wrap: nowrap;
  }
}

/* line 38, app/assets/stylesheets/maps.css.scss */
#dashboard_map_container .dashboard_sidebar_container .sidebar_content .unit_list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
}

@media (max-width: 480px) {
  /* line 38, app/assets/stylesheets/maps.css.scss */
  #dashboard_map_container .dashboard_sidebar_container .sidebar_content .unit_list {
    flex-wrap: nowrap;
  }
}

@media (min-width: 481px) and (max-width: 767px) {
  /* line 38, app/assets/stylesheets/maps.css.scss */
  #dashboard_map_container .dashboard_sidebar_container .sidebar_content .unit_list {
    flex-wrap: nowrap;
  }
}

/* line 49, app/assets/stylesheets/maps.css.scss */
#dashboard_map_container .dashboard_sidebar_container .sidebar_content .unit_list a.unit_job_link {
  width: 100%;
}

/* line 51, app/assets/stylesheets/maps.css.scss */
#dashboard_map_container .dashboard_sidebar_container .sidebar_content .unit_list a.unit_job_link .unit_details {
  width: auto;
  flex-grow: 1;
}

/* line 56, app/assets/stylesheets/maps.css.scss */
#dashboard_map_container .dashboard_sidebar_container .sidebar_content .unit_list p {
  margin-top: 10px;
}

/* line 60, app/assets/stylesheets/maps.css.scss */
#dashboard_map_container .dashboard_sidebar_container .sidebar_content h4 {
  width: 100%;
  margin-right: 2rem;
}

/* line 66, app/assets/stylesheets/maps.css.scss */
#dashboard_map_container #dashboard_map {
  width: 80%;
  height: 75vh;
}

@media (max-width: 480px) {
  /* line 66, app/assets/stylesheets/maps.css.scss */
  #dashboard_map_container #dashboard_map {
    width: 100%;
  }
}

@media (min-width: 481px) and (max-width: 767px) {
  /* line 66, app/assets/stylesheets/maps.css.scss */
  #dashboard_map_container #dashboard_map {
    width: 100%;
  }
}

/* line 76, app/assets/stylesheets/maps.css.scss */
#dashboard_map_container .marker {
  background-image: url(/assets/maps/marker-icons/mapbox-marker-icon-red-367989a42f4d5d751d89b8cbaf00549ec24bf883a3eded35c6af87d40f4ed76d.svg);
  background-size: cover;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  cursor: pointer;
}

/* line 84, app/assets/stylesheets/maps.css.scss */
#dashboard_map_container .mapboxgl-popup-content {
  max-height: 300px;
  padding: 1rem;
}

/* line 87, app/assets/stylesheets/maps.css.scss */
#dashboard_map_container .mapboxgl-popup-content .map_popup {
  display: flex;
  flex-wrap: nowrap;
  width: 400px;
}

/* line 91, app/assets/stylesheets/maps.css.scss */
#dashboard_map_container .mapboxgl-popup-content .map_popup .map_col {
  flex: 1 auto;
  padding: 1rem;
  overflow: scroll;
  max-height: 289px;
}

/* line 96, app/assets/stylesheets/maps.css.scss */
#dashboard_map_container .mapboxgl-popup-content .map_popup .map_col.job_data {
  min-width: 180px;
}

/* line 97, app/assets/stylesheets/maps.css.scss */
#dashboard_map_container .mapboxgl-popup-content .map_popup .map_col.sensor_data {
  min-width: 220px;
}

/* line 100, app/assets/stylesheets/maps.css.scss */
#dashboard_map_container .mapboxgl-popup-content .sensor_row {
  display: flex;
  flex-wrap: wrap;
  background: #f8f8f8;
  border: 1px solid #e7e7e7;
  border-radius: 5px;
  margin-bottom: 1rem;
  padding: 5px;
}

/* line 108, app/assets/stylesheets/maps.css.scss */
#dashboard_map_container .mapboxgl-popup-content .sensor_row .icon_value_display {
  display: flex;
  width: 100%;
}

/* line 111, app/assets/stylesheets/maps.css.scss */
#dashboard_map_container .mapboxgl-popup-content .sensor_row .icon_value_display .icon {
  margin-right: 1rem;
  width: 30px;
  text-align: center;
}

/* line 116, app/assets/stylesheets/maps.css.scss */
#dashboard_map_container .mapboxgl-popup-content .sensor_row .icon_value_display .value {
  flex: 1;
}

/* line 118, app/assets/stylesheets/maps.css.scss */
#dashboard_map_container .mapboxgl-popup-content .sensor_row .sensor_group_row {
  display: flex;
  width: 100%;
}

/* line 122, app/assets/stylesheets/maps.css.scss */
#dashboard_map_container .mapboxgl-popup-content .sensor_row .sensor_row_cell {
  display: flex;
  width: 100%;
  margin-right: 1rem;
}

/* line 126, app/assets/stylesheets/maps.css.scss */
#dashboard_map_container .mapboxgl-popup-content .sensor_row .sensor_row_cell .sensor_row_cell {
  flex: 1;
}

/* line 132, app/assets/stylesheets/maps.css.scss */
#dashboard_map_container .mapboxgl-popup-content .map_scroll_container {
  overflow: scroll;
  max-height: 283px;
}

/* line 135, app/assets/stylesheets/maps.css.scss */
#dashboard_map_container .mapboxgl-popup-content .map_scroll_container h4 {
  font-size: 16px;
  margin-top: 0;
}

/* line 139, app/assets/stylesheets/maps.css.scss */
#dashboard_map_container .mapboxgl-popup-content .map_scroll_container a {
  font-weight: bold;
}

/* line 141, app/assets/stylesheets/maps.css.scss */
#dashboard_map_container .mapboxgl-popup-content .map_scroll_container a.danger {
  color: red;
}

/* line 142, app/assets/stylesheets/maps.css.scss */
#dashboard_map_container .mapboxgl-popup-content .map_scroll_container a.warning {
  color: #FF9100;
}

/* line 143, app/assets/stylesheets/maps.css.scss */
#dashboard_map_container .mapboxgl-popup-content .map_scroll_container a.primary {
  color: #337ab7;
}

/* line 145, app/assets/stylesheets/maps.css.scss */
#dashboard_map_container .mapboxgl-popup-content .map_scroll_container p {
  line-height: 15px;
}
/* line 5, app/assets/stylesheets/app.css.scss */
.position-static {
  position: static;
}

/* line 6, app/assets/stylesheets/app.css.scss */
.position-relative {
  position: relative;
}

/* line 7, app/assets/stylesheets/app.css.scss */
.position-absolute {
  position: absolute;
}

/* line 8, app/assets/stylesheets/app.css.scss */
.position-fixed {
  position: fixed;
}

/* line 9, app/assets/stylesheets/app.css.scss */
.position-sticky {
  position: sticky;
}

/* line 12, app/assets/stylesheets/app.css.scss */
.align_left {
  text-align: left !important;
}

/* line 13, app/assets/stylesheets/app.css.scss */
.align_right {
  text-align: right !important;
}

/* line 14, app/assets/stylesheets/app.css.scss */
.align_center {
  text-align: center !important;
}

/* line 17, app/assets/stylesheets/app.css.scss */
.background_red {
  background-color: #f2dede;
}

/* line 18, app/assets/stylesheets/app.css.scss */
.background_orange {
  background-color: #fff2e5;
}

/* line 19, app/assets/stylesheets/app.css.scss */
.background_green {
  background-color: #d3ecd4;
}

/* line 20, app/assets/stylesheets/app.css.scss */
.bg-danger {
  background-color: #f2dede !important;
}

/* line 21, app/assets/stylesheets/app.css.scss */
.bg-warning {
  background-color: #fcf8e3 !important;
}

/* line 22, app/assets/stylesheets/app.css.scss */
.bg-info {
  background-color: #d9edf7 !important;
}

/* line 23, app/assets/stylesheets/app.css.scss */
.bg-success {
  background-color: #dff0d8 !important;
}

/* line 26, app/assets/stylesheets/app.css.scss */
.flex_center {
  justify-content: center;
}

/* line 27, app/assets/stylesheets/app.css.scss */
.flex_end {
  justify-content: flex-end;
}

/* line 28, app/assets/stylesheets/app.css.scss */
.d-flex {
  display: flex;
}

/* line 29, app/assets/stylesheets/app.css.scss */
.d-flex-row {
  flex-direction: row;
}

/* line 30, app/assets/stylesheets/app.css.scss */
.d-flex-column {
  flex-direction: column;
}

/* line 31, app/assets/stylesheets/app.css.scss */
.flex-grow-1 {
  flex-grow: 1;
}

/* line 32, app/assets/stylesheets/app.css.scss */
.flex-children-even-size {
  flex: 1 1 0;
}

/* line 33, app/assets/stylesheets/app.css.scss */
.align-items-center {
  align-items: center;
}

/* line 34, app/assets/stylesheets/app.css.scss */
.justify-between {
  justify-content: space-between;
}

/* line 35, app/assets/stylesheets/app.css.scss */
.column-gap-1 {
  column-gap: 1rem;
}

/* line 36, app/assets/stylesheets/app.css.scss */
.column-gap-2 {
  column-gap: 2rem;
}

/* line 39, app/assets/stylesheets/app.css.scss */
.text-large {
  font-weight: bold;
  font-size: 2.5rem;
}

/* line 43, app/assets/stylesheets/app.css.scss */
.text-small {
  font-size: 1.1rem;
}

/* line 46, app/assets/stylesheets/app.css.scss */
.fw-normal {
  font-weight: normal;
}

/* line 49, app/assets/stylesheets/app.css.scss */
.fw-bold {
  font-weight: bold;
}

/* line 54, app/assets/stylesheets/app.css.scss */
.m0 {
  margin: 0;
}

/* line 55, app/assets/stylesheets/app.css.scss */
.mt0 {
  margin-top: 0;
}

/* line 56, app/assets/stylesheets/app.css.scss */
.mt1 {
  margin-top: 1rem !important;
}

/* line 57, app/assets/stylesheets/app.css.scss */
.mt2 {
  margin-top: 2rem !important;
}

/* line 58, app/assets/stylesheets/app.css.scss */
.mt3 {
  margin-top: 3rem !important;
}

/* line 59, app/assets/stylesheets/app.css.scss */
.mt4 {
  margin-top: 4rem !important;
}

/* line 60, app/assets/stylesheets/app.css.scss */
.mt5 {
  margin-top: 5rem !important;
}

/* line 61, app/assets/stylesheets/app.css.scss */
.mt6 {
  margin-top: 6rem !important;
}

/* line 62, app/assets/stylesheets/app.css.scss */
.mr0 {
  margin-right: 0;
}

/* line 63, app/assets/stylesheets/app.css.scss */
.mr1 {
  margin-right: 1rem;
}

/* line 64, app/assets/stylesheets/app.css.scss */
.mr2 {
  margin-right: 2rem;
}

/* line 65, app/assets/stylesheets/app.css.scss */
.mr3 {
  margin-right: 3rem;
}

/* line 66, app/assets/stylesheets/app.css.scss */
.mr4 {
  margin-right: 4rem;
}

/* line 67, app/assets/stylesheets/app.css.scss */
.mr5 {
  margin-right: 5rem;
}

/* line 68, app/assets/stylesheets/app.css.scss */
.mr6 {
  margin-right: 6rem;
}

/* line 69, app/assets/stylesheets/app.css.scss */
.m10 {
  margin-left: 0;
}

/* line 70, app/assets/stylesheets/app.css.scss */
.ml1 {
  margin-left: 1rem;
}

/* line 71, app/assets/stylesheets/app.css.scss */
.ml2 {
  margin-left: 2rem !important;
}

/* line 72, app/assets/stylesheets/app.css.scss */
.ml3 {
  margin-left: 3rem;
}

/* line 73, app/assets/stylesheets/app.css.scss */
.ml4 {
  margin-left: 4rem;
}

/* line 74, app/assets/stylesheets/app.css.scss */
.ml5 {
  margin-left: 5rem;
}

/* line 75, app/assets/stylesheets/app.css.scss */
.ml6 {
  margin-left: 6rem;
}

/* line 76, app/assets/stylesheets/app.css.scss */
.mb0 {
  margin-bottom: 0 !important;
}

/* line 77, app/assets/stylesheets/app.css.scss */
.mb1 {
  margin-bottom: 1rem;
}

/* line 78, app/assets/stylesheets/app.css.scss */
.mb2 {
  margin-bottom: 2rem;
}

/* line 79, app/assets/stylesheets/app.css.scss */
.mb3 {
  margin-bottom: 3rem;
}

/* line 80, app/assets/stylesheets/app.css.scss */
.mb4 {
  margin-bottom: 4rem;
}

/* line 81, app/assets/stylesheets/app.css.scss */
.mb5 {
  margin-bottom: 5rem;
}

/* line 82, app/assets/stylesheets/app.css.scss */
.mb6 {
  margin-bottom: 6rem;
}

/* line 83, app/assets/stylesheets/app.css.scss */
.margin_bottom {
  margin-bottom: 20px;
}

/* line 84, app/assets/stylesheets/app.css.scss */
.no_margin_top {
  margin-top: 0 !important;
}

/* line 87, app/assets/stylesheets/app.css.scss */
.p0 {
  padding: 0;
}

/* line 88, app/assets/stylesheets/app.css.scss */
.pt0 {
  padding-top: 0;
}

/* line 89, app/assets/stylesheets/app.css.scss */
.pt1 {
  padding-top: 1rem;
}

/* line 90, app/assets/stylesheets/app.css.scss */
.pt2 {
  padding-top: 2rem;
}

/* line 91, app/assets/stylesheets/app.css.scss */
.pt3 {
  padding-top: 3rem;
}

/* line 92, app/assets/stylesheets/app.css.scss */
.pb0 {
  padding-bottom: 0;
}

/* line 93, app/assets/stylesheets/app.css.scss */
.pb1 {
  padding-bottom: 1rem;
}

/* line 94, app/assets/stylesheets/app.css.scss */
.pb2 {
  padding-bottom: 2rem;
}

/* line 95, app/assets/stylesheets/app.css.scss */
.pb3 {
  padding-bottom: 3rem;
}

/* line 96, app/assets/stylesheets/app.css.scss */
.pl0 {
  padding-left: 0;
}

/* line 97, app/assets/stylesheets/app.css.scss */
.pl1 {
  padding-left: 1rem;
}

/* line 98, app/assets/stylesheets/app.css.scss */
.pl2 {
  padding-left: 2rem;
}

/* line 99, app/assets/stylesheets/app.css.scss */
.pl3 {
  padding-left: 3rem;
}

/* line 100, app/assets/stylesheets/app.css.scss */
.pr0 {
  padding-right: 0;
}

/* line 101, app/assets/stylesheets/app.css.scss */
.pr1 {
  padding-right: 1rem;
}

/* line 102, app/assets/stylesheets/app.css.scss */
.pr2 {
  padding-right: 2rem;
}

/* line 103, app/assets/stylesheets/app.css.scss */
.pr3 {
  padding-right: 3rem;
}

/* line 108, app/assets/stylesheets/app.css.scss */
.w-1\/2 {
  width: 50%;
}

/* line 109, app/assets/stylesheets/app.css.scss */
.w-1\/3 {
  width: 33.33333333333333%;
}

/* line 110, app/assets/stylesheets/app.css.scss */
.w-2\/3 {
  width: 66.66666666666666%;
}

/* line 111, app/assets/stylesheets/app.css.scss */
.w-1\/4 {
  width: 25%;
}

/* line 112, app/assets/stylesheets/app.css.scss */
.w-3\/4 {
  width: 75%;
}

/* line 113, app/assets/stylesheets/app.css.scss */
.w-1\/5 {
  width: 20%;
}

/* line 114, app/assets/stylesheets/app.css.scss */
.w-1\/6 {
  width: 16.66666666666666%;
}

/* line 115, app/assets/stylesheets/app.css.scss */
.w-2\/5 {
  width: 40%;
}

/* line 116, app/assets/stylesheets/app.css.scss */
.w-3\/5 {
  width: 60%;
}

/* line 117, app/assets/stylesheets/app.css.scss */
.w-4\/5 {
  width: 80%;
}

/* line 118, app/assets/stylesheets/app.css.scss */
.full_width {
  width: 100%;
}

/* line 120, app/assets/stylesheets/app.css.scss */
.border_left {
  border-left: 1px solid #d7d7d7;
}

/* line 121, app/assets/stylesheets/app.css.scss */
.border_right {
  border-right: 1px solid #d7d7d7;
}

/* line 123, app/assets/stylesheets/app.css.scss */
.d-block {
  display: block;
}

/* line 127, app/assets/stylesheets/app.css.scss */
.d-inline-block {
  display: inline-block;
}

/* line 131, app/assets/stylesheets/app.css.scss */
.d-none {
  display: none;
}

/* line 135, app/assets/stylesheets/app.css.scss */
.float-none {
  float: none;
}

/* line 139, app/assets/stylesheets/app.css.scss */
.popover {
  z-index: 1000000;
  position: absolute;
}

/* line 144, app/assets/stylesheets/app.css.scss */
.ck-editor__editable_inline {
  min-height: 400px;
}

/* line 148, app/assets/stylesheets/app.css.scss */
.ui-datepicker {
  z-index: 99999 !important;
}

/* line 149, app/assets/stylesheets/app.css.scss */
.bootstrap-datetimepicker-widget {
  z-index: 99999 !important;
}

/* line 151, app/assets/stylesheets/app.css.scss */
.bootstrap-datetimepicker-widget table td span.tooltips {
  display: none !important;
}

/* line 156, app/assets/stylesheets/app.css.scss */
.mt0 {
  margin-top: 0;
}

/* line 157, app/assets/stylesheets/app.css.scss */
.mt1 {
  margin-top: 1rem !important;
}

/* line 158, app/assets/stylesheets/app.css.scss */
.mt2 {
  margin-top: 2rem !important;
}

/* line 159, app/assets/stylesheets/app.css.scss */
.mt3 {
  margin-top: 3rem !important;
}

/* line 160, app/assets/stylesheets/app.css.scss */
.mr0 {
  margin-right: 0;
}

/* line 161, app/assets/stylesheets/app.css.scss */
.mr1 {
  margin-right: 1rem;
}

/* line 162, app/assets/stylesheets/app.css.scss */
.mr2 {
  margin-right: 2rem;
}

/* line 163, app/assets/stylesheets/app.css.scss */
.mr3 {
  margin-right: 3rem;
}

/* line 164, app/assets/stylesheets/app.css.scss */
.m10 {
  margin-left: 0;
}

/* line 165, app/assets/stylesheets/app.css.scss */
.ml1 {
  margin-left: 1rem;
}

/* line 166, app/assets/stylesheets/app.css.scss */
.ml2 {
  margin-left: 2rem !important;
}

/* line 167, app/assets/stylesheets/app.css.scss */
.ml3 {
  margin-left: 3rem;
}

/* line 169, app/assets/stylesheets/app.css.scss */
.mb0 {
  margin-bottom: 0 !important;
}

/* line 170, app/assets/stylesheets/app.css.scss */
.mb05 {
  margin-bottom: 0.5rem;
}

/* line 171, app/assets/stylesheets/app.css.scss */
.mb1 {
  margin-bottom: 1rem;
}

/* line 172, app/assets/stylesheets/app.css.scss */
.mb2 {
  margin-bottom: 2rem;
}

/* line 173, app/assets/stylesheets/app.css.scss */
.mb3 {
  margin-bottom: 3rem;
}

/* line 175, app/assets/stylesheets/app.css.scss */
.margin_bottom {
  margin-bottom: 20px;
}

/* line 176, app/assets/stylesheets/app.css.scss */
.no_margin_top {
  margin-top: 0 !important;
}

/* line 177, app/assets/stylesheets/app.css.scss */
.full_width {
  width: 100%;
}

/* line 178, app/assets/stylesheets/app.css.scss */
.border_dark {
  border: 1px solid #CCCCCC !important;
}

/* line 179, app/assets/stylesheets/app.css.scss */
.border_left {
  border-left: 1px solid #d7d7d7;
}

/* line 180, app/assets/stylesheets/app.css.scss */
.border_right {
  border-right: 1px solid #d7d7d7;
}

/* line 182, app/assets/stylesheets/app.css.scss */
.cursor-pointer {
  cursor: pointer;
}

/* line 186, app/assets/stylesheets/app.css.scss */
.bg-danger {
  background-color: #f2dede !important;
}

/* line 187, app/assets/stylesheets/app.css.scss */
.bg-warning {
  background-color: #fcf8e3 !important;
}

/* line 188, app/assets/stylesheets/app.css.scss */
.bg-info {
  background-color: #d9edf7 !important;
}

/* line 189, app/assets/stylesheets/app.css.scss */
.bg-success {
  background-color: #dff0d8 !important;
}

/* line 191, app/assets/stylesheets/app.css.scss */
.btn-default.btn-on.active {
  background-color: #5BB75B;
  color: white;
}

/* line 192, app/assets/stylesheets/app.css.scss */
.btn-default.btn-off.active {
  background-color: #DA4F49;
  color: white;
}

/* line 209, app/assets/stylesheets/app.css.scss */
.row_with_flexed_wells {
  flex-wrap: wrap;
}

@media (min-width: 980px) {
  /* line 209, app/assets/stylesheets/app.css.scss */
  .row_with_flexed_wells {
    display: flex;
  }
}

@media (min-width: 1200px) {
  /* line 209, app/assets/stylesheets/app.css.scss */
  .row_with_flexed_wells {
    display: flex;
  }
}

/* line 217, app/assets/stylesheets/app.css.scss */
.row_with_flexed_wells .flexed_well_container {
  flex: 1;
}

@media (min-width: 980px) {
  /* line 217, app/assets/stylesheets/app.css.scss */
  .row_with_flexed_wells .flexed_well_container {
    display: flex;
  }
}

@media (min-width: 1200px) {
  /* line 217, app/assets/stylesheets/app.css.scss */
  .row_with_flexed_wells .flexed_well_container {
    display: flex;
  }
}

/* line 225, app/assets/stylesheets/app.css.scss */
.row_with_flexed_wells .flexed_well_container .well {
  flex: 1;
}

@media (max-width: 480px) {
  /* line 229, app/assets/stylesheets/app.css.scss */
  .row_with_flexed_wells .flexed_well_container.col-xs-1 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 8.333333%;
  }
  /* line 230, app/assets/stylesheets/app.css.scss */
  .row_with_flexed_wells .flexed_well_container.col-xs-2 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 16.666667%;
  }
  /* line 231, app/assets/stylesheets/app.css.scss */
  .row_with_flexed_wells .flexed_well_container.col-xs-3 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 25%;
  }
  /* line 232, app/assets/stylesheets/app.css.scss */
  .row_with_flexed_wells .flexed_well_container.col-xs-4 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 33.333333%;
  }
  /* line 233, app/assets/stylesheets/app.css.scss */
  .row_with_flexed_wells .flexed_well_container.col-xs-5 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 41.666667%;
  }
  /* line 234, app/assets/stylesheets/app.css.scss */
  .row_with_flexed_wells .flexed_well_container.col-xs-6 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 50%;
  }
  /* line 235, app/assets/stylesheets/app.css.scss */
  .row_with_flexed_wells .flexed_well_container.col-xs-7 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 58.333333%;
  }
  /* line 236, app/assets/stylesheets/app.css.scss */
  .row_with_flexed_wells .flexed_well_container.col-xs-8 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 66.666667%;
  }
  /* line 237, app/assets/stylesheets/app.css.scss */
  .row_with_flexed_wells .flexed_well_container.col-xs-9 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 75%;
  }
  /* line 238, app/assets/stylesheets/app.css.scss */
  .row_with_flexed_wells .flexed_well_container.col-xs-10 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 83.333333%;
  }
  /* line 239, app/assets/stylesheets/app.css.scss */
  .row_with_flexed_wells .flexed_well_container.col-xs-11 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 91.666667%;
  }
  /* line 240, app/assets/stylesheets/app.css.scss */
  .row_with_flexed_wells .flexed_well_container.col-xs-12 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 100%;
  }
}

@media (min-width: 481px) and (max-width: 767px) {
  /* line 243, app/assets/stylesheets/app.css.scss */
  .row_with_flexed_wells .flexed_well_container.col-xs-1 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 8.333333%;
  }
  /* line 244, app/assets/stylesheets/app.css.scss */
  .row_with_flexed_wells .flexed_well_container.col-xs-2 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 16.666667%;
  }
  /* line 245, app/assets/stylesheets/app.css.scss */
  .row_with_flexed_wells .flexed_well_container.col-xs-3 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 25%;
  }
  /* line 246, app/assets/stylesheets/app.css.scss */
  .row_with_flexed_wells .flexed_well_container.col-xs-4 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 33.333333%;
  }
  /* line 247, app/assets/stylesheets/app.css.scss */
  .row_with_flexed_wells .flexed_well_container.col-xs-5 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 41.666667%;
  }
  /* line 248, app/assets/stylesheets/app.css.scss */
  .row_with_flexed_wells .flexed_well_container.col-xs-6 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 50%;
  }
  /* line 249, app/assets/stylesheets/app.css.scss */
  .row_with_flexed_wells .flexed_well_container.col-xs-7 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 58.333333%;
  }
  /* line 250, app/assets/stylesheets/app.css.scss */
  .row_with_flexed_wells .flexed_well_container.col-xs-8 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 66.666667%;
  }
  /* line 251, app/assets/stylesheets/app.css.scss */
  .row_with_flexed_wells .flexed_well_container.col-xs-9 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 75%;
  }
  /* line 252, app/assets/stylesheets/app.css.scss */
  .row_with_flexed_wells .flexed_well_container.col-xs-10 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 83.333333%;
  }
  /* line 253, app/assets/stylesheets/app.css.scss */
  .row_with_flexed_wells .flexed_well_container.col-xs-11 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 91.666667%;
  }
  /* line 254, app/assets/stylesheets/app.css.scss */
  .row_with_flexed_wells .flexed_well_container.col-xs-12 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 100%;
  }
}

@media (min-width: 768px) and (max-width: 979px) {
  /* line 258, app/assets/stylesheets/app.css.scss */
  .row_with_flexed_wells .flexed_well_container.col-sm-1 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 8.333333%;
  }
  /* line 259, app/assets/stylesheets/app.css.scss */
  .row_with_flexed_wells .flexed_well_container.col-sm-2 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 16.666667%;
  }
  /* line 260, app/assets/stylesheets/app.css.scss */
  .row_with_flexed_wells .flexed_well_container.col-sm-3 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 25%;
  }
  /* line 261, app/assets/stylesheets/app.css.scss */
  .row_with_flexed_wells .flexed_well_container.col-sm-4 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 33.333333%;
  }
  /* line 262, app/assets/stylesheets/app.css.scss */
  .row_with_flexed_wells .flexed_well_container.col-sm-5 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 41.666667%;
  }
  /* line 263, app/assets/stylesheets/app.css.scss */
  .row_with_flexed_wells .flexed_well_container.col-sm-6 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 50%;
  }
  /* line 264, app/assets/stylesheets/app.css.scss */
  .row_with_flexed_wells .flexed_well_container.col-sm-7 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 58.333333%;
  }
  /* line 265, app/assets/stylesheets/app.css.scss */
  .row_with_flexed_wells .flexed_well_container.col-sm-8 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 66.666667%;
  }
  /* line 266, app/assets/stylesheets/app.css.scss */
  .row_with_flexed_wells .flexed_well_container.col-sm-9 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 75%;
  }
  /* line 267, app/assets/stylesheets/app.css.scss */
  .row_with_flexed_wells .flexed_well_container.col-sm-10 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 83.333333%;
  }
  /* line 268, app/assets/stylesheets/app.css.scss */
  .row_with_flexed_wells .flexed_well_container.col-sm-11 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 91.666667%;
  }
  /* line 269, app/assets/stylesheets/app.css.scss */
  .row_with_flexed_wells .flexed_well_container.col-sm-12 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 100%;
  }
}

@media (min-width: 980px) {
  /* line 273, app/assets/stylesheets/app.css.scss */
  .row_with_flexed_wells .flexed_well_container.col-md-1 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 8.333333%;
  }
  /* line 274, app/assets/stylesheets/app.css.scss */
  .row_with_flexed_wells .flexed_well_container.col-md-2 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 16.666667%;
  }
  /* line 275, app/assets/stylesheets/app.css.scss */
  .row_with_flexed_wells .flexed_well_container.col-md-3 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 25%;
  }
  /* line 276, app/assets/stylesheets/app.css.scss */
  .row_with_flexed_wells .flexed_well_container.col-md-4 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 33.333333%;
  }
  /* line 277, app/assets/stylesheets/app.css.scss */
  .row_with_flexed_wells .flexed_well_container.col-md-5 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 41.666667%;
  }
  /* line 278, app/assets/stylesheets/app.css.scss */
  .row_with_flexed_wells .flexed_well_container.col-md-6 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 50%;
  }
  /* line 279, app/assets/stylesheets/app.css.scss */
  .row_with_flexed_wells .flexed_well_container.col-md-7 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 58.333333%;
  }
  /* line 280, app/assets/stylesheets/app.css.scss */
  .row_with_flexed_wells .flexed_well_container.col-md-8 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 66.666667%;
  }
  /* line 281, app/assets/stylesheets/app.css.scss */
  .row_with_flexed_wells .flexed_well_container.col-md-9 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 75%;
  }
  /* line 282, app/assets/stylesheets/app.css.scss */
  .row_with_flexed_wells .flexed_well_container.col-md-10 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 83.333333%;
  }
  /* line 283, app/assets/stylesheets/app.css.scss */
  .row_with_flexed_wells .flexed_well_container.col-md-11 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 91.666667%;
  }
  /* line 284, app/assets/stylesheets/app.css.scss */
  .row_with_flexed_wells .flexed_well_container.col-md-12 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 100%;
  }
}

@media (min-width: 1200px) {
  /* line 287, app/assets/stylesheets/app.css.scss */
  .row_with_flexed_wells .flexed_well_container.col-lg-1 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 8.333333%;
  }
  /* line 288, app/assets/stylesheets/app.css.scss */
  .row_with_flexed_wells .flexed_well_container.col-lg-2 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 16.666667%;
  }
  /* line 289, app/assets/stylesheets/app.css.scss */
  .row_with_flexed_wells .flexed_well_container.col-lg-3 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 25%;
  }
  /* line 290, app/assets/stylesheets/app.css.scss */
  .row_with_flexed_wells .flexed_well_container.col-lg-4 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 33.333333%;
  }
  /* line 291, app/assets/stylesheets/app.css.scss */
  .row_with_flexed_wells .flexed_well_container.col-lg-5 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 41.666667%;
  }
  /* line 292, app/assets/stylesheets/app.css.scss */
  .row_with_flexed_wells .flexed_well_container.col-lg-6 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 50%;
  }
  /* line 293, app/assets/stylesheets/app.css.scss */
  .row_with_flexed_wells .flexed_well_container.col-lg-7 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 58.333333%;
  }
  /* line 294, app/assets/stylesheets/app.css.scss */
  .row_with_flexed_wells .flexed_well_container.col-lg-8 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 66.666667%;
  }
  /* line 295, app/assets/stylesheets/app.css.scss */
  .row_with_flexed_wells .flexed_well_container.col-lg-9 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 75%;
  }
  /* line 296, app/assets/stylesheets/app.css.scss */
  .row_with_flexed_wells .flexed_well_container.col-lg-10 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 83.333333%;
  }
  /* line 297, app/assets/stylesheets/app.css.scss */
  .row_with_flexed_wells .flexed_well_container.col-lg-11 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 91.666667%;
  }
  /* line 298, app/assets/stylesheets/app.css.scss */
  .row_with_flexed_wells .flexed_well_container.col-lg-12 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 100%;
  }
}

/* line 304, app/assets/stylesheets/app.css.scss */
.side_nav_filter_toggle {
  z-index: 1;
  position: absolute;
  right: 0;
  top: 60px;
  min-height: 20px;
  padding: 5px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: -5px 6px 6px 0 rgba(0, 0, 0, 0.087);
}

/* line 317, app/assets/stylesheets/app.css.scss */
.side_nav_filter_toggle a {
  color: #000;
  padding: 15px;
  display: inline-block;
}

/* line 324, app/assets/stylesheets/app.css.scss */
.warning_container {
  display: inline-block;
  border: 1px solid #d2d2d2;
  background: #fff9e1;
  width: 100%;
  border-radius: 6px;
  margin-bottom: 1rem;
  padding: 0.2rem 1.5rem;
}

/* line 334, app/assets/stylesheets/app.css.scss */
.short_search_results {
  display: none;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 5px;
  position: absolute;
  top: 30px;
  left: 0;
}

/* line 343, app/assets/stylesheets/app.css.scss */
.short_search_results .short_search_result {
  background: #5db85b;
  color: #fff;
  border-radius: 5px;
  padding: 2px 5px;
  margin: 0 0px 5px 0;
  display: inline-block;
}

/* line 352, app/assets/stylesheets/app.css.scss */
.short_search_objects {
  margin-top: 7px;
}

/* line 354, app/assets/stylesheets/app.css.scss */
.short_search_objects .short_search_object {
  background: #e4e2e2;
  border-radius: 5px;
  padding: 2px 5px;
  margin: 0 0px 5px 0;
  display: inline-block;
  color: #000;
}

/* line 364, app/assets/stylesheets/app.css.scss */
body {
  font-family: HelveticaNeue, 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;
  font-size: 14px;
  color: #000;
  background: url(/assets/compass-2323228078ea6dab107c2ae2a5bed49813bd4bac9adce04facad3969ce2e3d11.svg) top right no-repeat;
  background-size: 500px;
  padding-top: 49px;
}

/* line 374, app/assets/stylesheets/app.css.scss */
.ui-autocomplete {
  z-index: 10000 !important;
}

/* line 376, app/assets/stylesheets/app.css.scss */
a.modal_show_hide_toggle {
  display: inline-block;
  color: #a9a9a9;
  padding: 3px 15px;
}

/* line 382, app/assets/stylesheets/app.css.scss */
.modal-dialog.overflow_none .modal-body {
  overflow: unset;
  width: 100%;
  display: inline-block;
  max-height: none;
}

/* line 389, app/assets/stylesheets/app.css.scss */
.modal-body {
  max-height: calc(100vh - 212px);
  overflow-y: auto;
}

/* line 392, app/assets/stylesheets/app.css.scss */
.modal-body .container {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

/* line 399, app/assets/stylesheets/app.css.scss */
.modal-xlg {
  width: 95%;
}

/* line 404, app/assets/stylesheets/app.css.scss */
dl.dl-horizontal.text-left {
  text-align: left;
}

/* line 406, app/assets/stylesheets/app.css.scss */
dl.dl-horizontal.text-left dt {
  text-align: left !important;
}

/* line 409, app/assets/stylesheets/app.css.scss */
dl.dl-horizontal-flexed {
  display: flex;
  flex-wrap: wrap;
}

/* line 412, app/assets/stylesheets/app.css.scss */
dl.dl-horizontal-flexed dt {
  width: 30%;
}

/* line 413, app/assets/stylesheets/app.css.scss */
dl.dl-horizontal-flexed dd {
  margin-left: auto;
  width: 70%;
}

/* line 418, app/assets/stylesheets/app.css.scss */
span.web_link_icon {
  background: url(/assets/web_link_icon-8b5ee9d0d5caf07c6289617fe31e7083a474901a7a9c613b8a78525248dd5ffb.svg) no-repeat;
  display: inline-block;
  background-size: 20px;
  width: 20px;
  height: 20px;
  margin-right: 5px;
  vertical-align: middle;
}

/* line 427, app/assets/stylesheets/app.css.scss */
.navbar-brand {
  padding: 6px 15px;
}

/* line 430, app/assets/stylesheets/app.css.scss */
.navbar-brand img {
  width: 100px;
}

/* line 432, app/assets/stylesheets/app.css.scss */
.navbar-toggle {
  margin-left: 1rem;
}

/* line 435, app/assets/stylesheets/app.css.scss */
ul.icon_nav {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 0;
}

/* line 439, app/assets/stylesheets/app.css.scss */
ul.icon_nav li {
  display: inline-block;
}

/* line 442, app/assets/stylesheets/app.css.scss */
ul.icon_nav li.dropdown ul li {
  width: 100%;
}

/* line 451, app/assets/stylesheets/app.css.scss */
a.link_with_tooltip {
  color: #000;
}

/* line 453, app/assets/stylesheets/app.css.scss */
a.link_with_tooltip h4 {
  font-size: 1.4rem;
  text-decoration: none;
}

/* line 457, app/assets/stylesheets/app.css.scss */
a.link_with_tooltip .fa-info-circle {
  color: #000;
}

/* line 460, app/assets/stylesheets/app.css.scss */
a.link_with_tooltip:hover {
  text-decoration: none;
}

/* line 464, app/assets/stylesheets/app.css.scss */
a.fas {
  color: #000;
}

/* line 467, app/assets/stylesheets/app.css.scss */
a.fas:hover {
  text-decoration: none;
  color: #888888;
}

/* line 471, app/assets/stylesheets/app.css.scss */
#company_colour {
  width: 80%;
  display: inline-block;
}

/* line 472, app/assets/stylesheets/app.css.scss */
.dropdown-menu.align_right {
  right: 0;
  left: auto;
}

/* line 473, app/assets/stylesheets/app.css.scss */
footer {
  display: inline-block;
  width: 100%;
  margin-top: 80px;
  background: #eee;
  padding: 30px 0;
}

/* line 474, app/assets/stylesheets/app.css.scss */
.note {
  font-size: 10;
  color: #999;
}

/* line 475, app/assets/stylesheets/app.css.scss */
.rotate {
  padding-top: 10px;
  float: left;
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
}

/* line 484, app/assets/stylesheets/app.css.scss */
p.append {
  margin: 0 0 15px;
  float: left;
  clear: left;
}

/* line 490, app/assets/stylesheets/app.css.scss */
.scroll_container {
  overflow: scroll;
  display: flex;
  flex-wrap: wrap;
  background: #ececec;
  border-radius: 17px;
  padding: 1rem 1rem 0 1rem;
  border: 1px solid #e3e3e3;
}

/* line 499, app/assets/stylesheets/app.css.scss */
.dark_container {
  display: flex;
  flex-wrap: wrap;
  background: #ececec;
  border-radius: 17px;
  padding: 1rem 1rem 0 1rem;
  border: 1px solid #e3e3e3;
}

/* line 507, app/assets/stylesheets/app.css.scss */
.well .well:last-child {
  margin-bottom: 0rem;
  /* styles */
}

/* line 510, app/assets/stylesheets/app.css.scss */
.well {
  box-shadow: -5px 6px 6px 0 rgba(0, 0, 0, 0.087);
}

/* line 511, app/assets/stylesheets/app.css.scss */
.well .well_title {
  margin-left: -19px;
  margin-right: -19px;
  margin-top: -19px;
  margin-bottom: 19px;
  background: #e3e3e3;
  border-bottom: 1px solid #e5e5e5;
  padding: 3px 19px;
}

/* line 521, app/assets/stylesheets/app.css.scss */
.well h1, .well h2, .well h3, .well h4, .well h5 {
  margin-top: 0;
}

/* line 523, app/assets/stylesheets/app.css.scss */
.well h1.with_button, .well h2.with_button, .well h3.with_button, .well h4.with_button, .well h5.with_button {
  display: inline-block;
}

/* line 527, app/assets/stylesheets/app.css.scss */
.well.dark {
  background-color: #E8E8E8;
}

/* line 528, app/assets/stylesheets/app.css.scss */
.well.light {
  background-color: #fff;
}

/* line 529, app/assets/stylesheets/app.css.scss */
.well.danger {
  background-color: #f2dede;
}

/* line 530, app/assets/stylesheets/app.css.scss */
.well.warning {
  background-color: #fcf8e3;
}

/* line 531, app/assets/stylesheets/app.css.scss */
.well.info {
  background-color: #d9edf7;
}

/* line 532, app/assets/stylesheets/app.css.scss */
.well.success {
  background-color: #dff0d8;
}

/* line 533, app/assets/stylesheets/app.css.scss */
.well.no_shadow {
  box-shadow: none;
}

/* line 534, app/assets/stylesheets/app.css.scss */
.well.dark {
  background-color: #e8e8e8;
}

/* line 540, app/assets/stylesheets/app.css.scss */
.job_search_for_partial_container .job_numbers_response {
  background: #fff;
  border: 1px solid #ccc;
  padding: 5px 5px;
  border-radius: 5px;
  display: none;
}

/* line 546, app/assets/stylesheets/app.css.scss */
.job_search_for_partial_container .job_numbers_response a.job_number {
  background: #5db85b;
  color: #fff;
  border-radius: 5px;
  padding: 5px;
  display: inline-block;
  margin: 2px 5px 2px 0;
}

/* line 555, app/assets/stylesheets/app.css.scss */
.job_search_for_partial_container .job_numbers_added {
  padding: 5px 5px;
  border-radius: 5px;
  display: none;
}

/* line 559, app/assets/stylesheets/app.css.scss */
.job_search_for_partial_container .job_numbers_added a.job_number {
  background: #337ab7;
  color: #fff;
  border-radius: 5px;
  padding: 5px;
  display: inline-block;
  margin: 2px 5px 2px 0;
}

/* line 571, app/assets/stylesheets/app.css.scss */
a.delete_btn {
  width: 20px;
  height: 17px;
  display: inline-block;
  background: url(/assets/delete_icon-65f3d78bce05c32a16a9a3e4b25ae0e9e76182bd1faf492f7ea4b71cd47efd35.svg) no-repeat;
  overflow: hidden;
  text-indent: 9999px;
}

/* line 579, app/assets/stylesheets/app.css.scss */
a.delete_btn_red {
  width: 34px;
  height: 34px;
  display: inline-block;
  background: url(/assets/delete_icon_white-ec7bd7bc6a160aa2a2559580a48d4ede17c96db3e943a3525b42850cc7567d18.svg) #d60000 no-repeat center;
  overflow: hidden;
  text-indent: 9999px;
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 1px solid transparent;
  border-radius: 4px;
  background-size: 22px;
}

/* line 608, app/assets/stylesheets/app.css.scss */
a.issue_navigation_icon {
  position: relative;
  display: inline-block;
  font-size: 22px;
  background: url(/assets/icon_notification-3ebba5710befc08222c12fcf2ebc8572969b5f5f235eee3128a1ce4119d5c82e.png) no-repeat top left;
  background-size: 33px;
  width: 33px;
  height: 33px;
  margin: 7px;
}

/* line 617, app/assets/stylesheets/app.css.scss */
a.issue_navigation_icon span {
  position: absolute;
  bottom: -5px;
  right: 20px;
  background: #ff0101;
  color: #fff;
  padding: 0px 5px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: bold;
  font-family: HelveticaNeue, "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
}

/* line 629, app/assets/stylesheets/app.css.scss */
a.issue_navigation_icon:hover {
  background-position: bottom left;
}

/* line 634, app/assets/stylesheets/app.css.scss */
a.search_icon {
  display: inline-block;
  font-size: 22px;
  background: url(/assets/search_icon-78e94e8a9448fa46d18a324a71cdc0da2f2b8ed193d7563cbc07ef24dedf1d44.png) no-repeat top left;
  background-size: 27px;
  width: 30px;
  height: 33px;
  margin: 7px 0 7px 7px;
  text-indent: 99999px;
  overflow: hidden;
}

/* line 644, app/assets/stylesheets/app.css.scss */
a.search_icon:hover {
  background-position: bottom left;
}

@media (min-width: 1340px) {
  /* line 634, app/assets/stylesheets/app.css.scss */
  a.search_icon {
    display: none;
  }
}

/* line 653, app/assets/stylesheets/app.css.scss */
a.quick_links_btn {
  display: inline-block;
  margin-top: 6px;
  border-radius: 100px;
  text-indent: -99999px;
  width: 35px;
  height: 35px;
  background: url(/assets/plus_icon-28a54380686a6854dda1d71ccd771769682c8dd8770581e211b284d0826582d5.svg) #5cb85c no-repeat center;
  background-size: 20px;
}

/* line 662, app/assets/stylesheets/app.css.scss */
a.quick_links_btn:hover {
  background-color: #449d44 !important;
}

/* line 665, app/assets/stylesheets/app.css.scss */
a.quick_links_btn:focus {
  background-color: #449d44 !important;
}

/* line 669, app/assets/stylesheets/app.css.scss */
a.job_part_options {
  padding: 6px 10px !important;
  border: 1px solid #ccc;
}

/* line 674, app/assets/stylesheets/app.css.scss */
a.link_unlink_style {
  width: 30px;
  height: 34px;
  text-indent: -99999px;
  overflow: hidden;
  background: url(/assets/link_unlink-f561291978d7f3962e4b511d994d2e5b62c39b4472d4d215fda3f1110d25c90b.png) 0px -34px;
  background-size: 22px;
  display: inline-block;
}

/* line 682, app/assets/stylesheets/app.css.scss */
a.link_unlink_style.unlinked {
  background-position: 0px 0px;
}

/* line 685, app/assets/stylesheets/app.css.scss */
a.link_unlink_style.small {
  width: 18px;
  height: 26px;
  margin-top: 3px;
  text-indent: -99999px;
  overflow: hidden;
  background: url(/assets/link_unlink-f561291978d7f3962e4b511d994d2e5b62c39b4472d4d215fda3f1110d25c90b.png) 0px 0px;
  background-size: 17px;
  display: inline-block;
}

/* line 695, app/assets/stylesheets/app.css.scss */
a.link_unlink_style.small.unlinked {
  background-position: 0px -27px;
}

/* line 700, app/assets/stylesheets/app.css.scss */
a.edit_btn {
  width: 20px;
  height: 17px;
  display: inline-block;
  background: url(/assets/edit_icon-19ae44c34d5ab3f2d2af84853e92bbd8416909dae2f1bdd962df251b7669ff98.svg) no-repeat;
  overflow: hidden;
  text-indent: 9999px;
}

/* line 709, app/assets/stylesheets/app.css.scss */
a.show_hide_toggle {
  background: url(/assets/slide_toggle_btn-6520bd050265336d1e3511a212217160b1aebb69848a24a591b090387d6f2f65.png) no-repeat;
  background-position: right 0;
  background-size: 22px;
  padding-right: 35px;
  font-size: 18px;
  font-weight: 500;
  font-weight: 500;
  line-height: 1.1;
  margin-top: 10px;
  margin-bottom: 10px;
  color: #000;
  display: inline-block;
  height: 22px;
}

/* line 723, app/assets/stylesheets/app.css.scss */
a.show_hide_toggle:hover {
  background-position: right -22px;
}

/* line 726, app/assets/stylesheets/app.css.scss */
a.show_hide_toggle.showing {
  background-position: right -60px;
}

/* line 728, app/assets/stylesheets/app.css.scss */
a.show_hide_toggle.showing:hover {
  background-position: right -90px;
}

/* line 734, app/assets/stylesheets/app.css.scss */
div.field_with_errors input,
div.field_with_errors textarea,
div.field_with_errors select {
  border: 1px solid #c00;
}

/* line 741, app/assets/stylesheets/app.css.scss */
.form-inline div.field_with_errors {
  display: inline-block;
}

/* line 744, app/assets/stylesheets/app.css.scss */
div.subnav {
  background: #274375;
  padding: 10px 20px;
}

/* line 749, app/assets/stylesheets/app.css.scss */
.month-selector {
  float: left;
  margin: 0 0 20px 0;
  clear: left;
}

/* line 755, app/assets/stylesheets/app.css.scss */
label.error {
  margin: 0 10px 0 20px;
}

/* line 759, app/assets/stylesheets/app.css.scss */
.colour_code {
  width: 20px;
  height: 20px;
  float: left;
  margin: 0 0 10px 0;
  border: 1px solid #ececec;
  margin: 0 10px 0 0;
  background: #ddd;
}

/* line 767, app/assets/stylesheets/app.css.scss */
.loader {
  text-align: center;
}

/* line 773, app/assets/stylesheets/app.css.scss */
ul.sortable {
  margin: 0 0 10px 10px;
}

/* line 776, app/assets/stylesheets/app.css.scss */
ul.sortable li {
  background: url(/assets/sort_icon-7ddceb05c0f8594368c9f2af31f92ade0d01bb8d7cd2da937e3eeee39fa5e504.png) 0px center no-repeat;
  padding-left: 20px;
  margin: 0 0 10px;
}

/* line 781, app/assets/stylesheets/app.css.scss */
ul.sortable li .title {
  font-weight: bold;
  margin: 0 0 10px;
}

/* FORM FIELDSET */
/* line 787, app/assets/stylesheets/app.css.scss */
form fieldset {
  margin-bottom: 40px;
}

/* line 792, app/assets/stylesheets/app.css.scss */
form fieldset legend {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 20px;
}

/* line 798, app/assets/stylesheets/app.css.scss */
.key {
  width: 100%;
  float: left;
  border: 1px solid #ddd;
  margin: 0 0 20px;
  padding: 20px;
}

/* line 805, app/assets/stylesheets/app.css.scss */
.key .element {
  width: 50%;
  float: left;
}

/* line 809, app/assets/stylesheets/app.css.scss */
.key .element .colour_code {
  width: 10px;
  height: 10px;
}

/* line 813, app/assets/stylesheets/app.css.scss */
.key h2 {
  font-weight: 300;
  font-size: 18px;
  color: #000;
  border-bottom: 1px dotted #ddd;
  padding: 0 0 10px;
  margin: 0 0 20px;
  font-family: 'ProimaNova', 'Helvetica Neue', Arial, sans-serif;
}

/* line 823, app/assets/stylesheets/app.css.scss */
#errorExplanation {
  color: #d00000;
  margin: 10px 0;
}

/* line 825, app/assets/stylesheets/app.css.scss */
div.alert {
  border-radius: 5px;
  padding: 15px;
  border: 1px solid transparent;
  font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
  font-size: 14px;
  line-height: 1.42857143;
}

/* line 832, app/assets/stylesheets/app.css.scss */
div.alert.alert-dismissable .close {
  right: 0;
}

/* line 836, app/assets/stylesheets/app.css.scss */
div.alert.alert-info {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1;
}

/* line 842, app/assets/stylesheets/app.css.scss */
div.alert.alert-warning {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}

/* line 848, app/assets/stylesheets/app.css.scss */
div.alert.alert-amber-warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
}

/* line 854, app/assets/stylesheets/app.css.scss */
p.checkbox_toggles {
  margin: 20px 0 20px 120px;
}

/* line 856, app/assets/stylesheets/app.css.scss */
.scrollable_list {
  overflow-y: scroll;
  max-height: 300px;
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  padding: 1rem;
  margin-bottom: 2rem;
}

/* line 863, app/assets/stylesheets/app.css.scss */
.scrollable_list .list_item {
  margin-top: 5px;
  margin-bottom: 5px;
}

/* line 869, app/assets/stylesheets/app.css.scss */
.filtering {
  animation: changeColor 1s infinite alternate;
}

@keyframes changeColor {
  from {
    background-color: #00A0D6;
  }
  to {
    background-color: #ffffff;
  }
}

/* line 882, app/assets/stylesheets/app.css.scss */
.label {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: normal;
}

/* line 888, app/assets/stylesheets/app.css.scss */
.label a {
  color: #fff;
  font-size: inherit;
  font-weight: inherit;
}

/* line 891, app/assets/stylesheets/app.css.scss */
.fixed-bottom-container {
  position: fixed;
  bottom: 0;
  /* Aligns it to the bottom of the viewport */
  left: 0;
  /* Aligns it to the left of the viewport */
  right: 0;
  /* Spans the container across the entire width */
  z-index: 999;
  /* Ensures it sits on top of other content */
  background: white;
  /* Optional: ensures text and elements are visible on overlapping content */
  padding: 20px;
  /* Optional: adds some spacing inside the container */
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
  /* Optional: adds a shadow for better separation */
  margin-bottom: 0;
}

/* line 903, app/assets/stylesheets/app.css.scss */
.job-status-well {
  padding-left: 0;
  padding-top: 6px !important;
}

/* line 907, app/assets/stylesheets/app.css.scss */
.job-status-well .job-status-group {
  margin-left: 15px;
  margin-right: 15px;
}

/* line 912, app/assets/stylesheets/app.css.scss */
.job-status-well .job-status-container {
  padding-left: 0;
}

/* line 916, app/assets/stylesheets/app.css.scss */
.job-status-well .job-status-row {
  margin-left: 0;
}

/* line 920, app/assets/stylesheets/app.css.scss */
.job-status-well .job-status-options {
  padding-left: 5px;
}

/* line 924, app/assets/stylesheets/app.css.scss */
.job-status-well .job-status-label {
  font-weight: normal;
  color: #333;
  padding-left: 0;
}

/* line 931, app/assets/stylesheets/app.css.scss */
.am-wrapper {
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  vertical-align: top;
  width: 100%;
}

/* line 939, app/assets/stylesheets/app.css.scss */
.pm-wrapper {
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  vertical-align: top;
  width: 100%;
}

/* line 947, app/assets/stylesheets/app.css.scss */
.user-list.ticker {
  display: inline-block;
  padding-left: 100%;
  animation: ticker 10s linear infinite;
}

@keyframes ticker {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* line 961, app/assets/stylesheets/app.css.scss */
.awaiting-approval {
  background: #FCF8E3;
}

/* line 965, app/assets/stylesheets/app.css.scss */
.approved {
  background: #DFF0D8;
}

/* line 969, app/assets/stylesheets/app.css.scss */
.rejected {
  background: #F2DEDE;
}

/* line 973, app/assets/stylesheets/app.css.scss */
.d-flex {
  display: flex;
}

/* line 977, app/assets/stylesheets/app.css.scss */
.xs-flex-none {
  /* Landscape phones and down */
}

@media (max-width: 480px) {
  /* line 977, app/assets/stylesheets/app.css.scss */
  .xs-flex-none {
    display: block;
  }
}

/* line 983, app/assets/stylesheets/app.css.scss */
.sm-flex-none {
  /* Landscape phone to portrait tablet */
}

@media (min-width: 481px) and (max-width: 767px) {
  /* line 983, app/assets/stylesheets/app.css.scss */
  .sm-flex-none {
    display: block;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  /* line 983, app/assets/stylesheets/app.css.scss */
  .sm-flex-none {
    display: block;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  /* line 993, app/assets/stylesheets/app.css.scss */
  .md-flex-none {
    display: block;
  }
}

@media (max-width: 480px) {
  /* line 998, app/assets/stylesheets/app.css.scss */
  .lg-flex-none {
    display: block;
  }
}

/* line 1003, app/assets/stylesheets/app.css.scss */
.flex-wrap {
  flex-wrap: wrap;
}

/* line 1006, app/assets/stylesheets/app.css.scss */
.flex-1 {
  flex: 1;
}

/* line 1010, app/assets/stylesheets/app.css.scss */
.file-field-short {
  max-width: 370px;
  min-width: 120px;
}

/* line 1015, app/assets/stylesheets/app.css.scss */
.motd-wrapper {
  position: relative;
  overflow: hidden;
  height: 2em;
  background-color: #f9f9f9;
  white-space: nowrap;
}

/* line 1023, app/assets/stylesheets/app.css.scss */
.motd-wrapper p {
  position: absolute;
  display: inline-block;
  white-space: nowrap;
  will-change: transform;
  animation: motd-scroll 10s linear infinite;
  margin: 0;
  padding-left: 50%;
}

@keyframes motd-scroll {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-200%);
  }
}

/* line 1042, app/assets/stylesheets/app.css.scss */
.pill {
  color: white;
  display: inline-block;
  height: 23px;
  padding: 0.2rem 1rem;
  border-radius: 5px;
  line-height: 18px;
}

/* line 1051, app/assets/stylesheets/app.css.scss */
.well-rows-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 1rem;
}

/* line 1057, app/assets/stylesheets/app.css.scss */
.well-rows-table tr th, .well-rows-table tr td {
  padding: 1rem;
}

/* line 1059, app/assets/stylesheets/app.css.scss */
.well-rows-table tr th.p0, .well-rows-table tr td.p0 {
  padding: 0;
}

/* line 1064, app/assets/stylesheets/app.css.scss */
.well-rows-table tr:not(:first-child) {
  box-shadow: -5px 6px 6px 0 rgba(0, 0, 0, 0.087);
  background-color: #f5f5f5;
}

/* line 1068, app/assets/stylesheets/app.css.scss */
.well-rows-table tr:not(:first-child) th, .well-rows-table tr:not(:first-child) td {
  border-top: 1px solid #e3e3e3;
  border-bottom: 1px solid #e3e3e3;
}

/* line 1072, app/assets/stylesheets/app.css.scss */
.well-rows-table tr:not(:first-child) th:first-child, .well-rows-table tr:not(:first-child) td:first-child {
  border-left: 1px solid #e3e3e3;
  border-radius: 4px 0 0 4px;
}

/* line 1076, app/assets/stylesheets/app.css.scss */
.well-rows-table tr:not(:first-child) th:last-child, .well-rows-table tr:not(:first-child) td:last-child {
  border-right: 1px solid #e3e3e3;
  border-radius: 0 4px 4px 0;
}

/* line 1082, app/assets/stylesheets/app.css.scss */
.well-rows-table tr.well.dark:not(:first-child) {
  background-color: #E8E8E8;
}

/* line 1086, app/assets/stylesheets/app.css.scss */
.well-rows-table tr.well.no_shadow:not(:first-child) {
  box-shadow: none;
}

/* line 1094, app/assets/stylesheets/app.css.scss */
#main_frame_with_sidebar .container {
  width: 100%;
}

/* line 1099, app/assets/stylesheets/app.css.scss */
.form-label-input-button-row {
  display: flex;
  flex-direction: row;
}

/* line 1103, app/assets/stylesheets/app.css.scss */
.form-label-input-button-row label {
  width: 25%;
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
  float: left;
}

/* line 1112, app/assets/stylesheets/app.css.scss */
.form-label-input-button-row div.field_with_errors:not(.mb1 > div) {
  width: 25%;
}

/* line 1115, app/assets/stylesheets/app.css.scss */
.form-label-input-button-row div.field_with_errors:not(.mb1 > div) label {
  width: 100%;
}

/* line 1120, app/assets/stylesheets/app.css.scss */
.form-label-input-button-row div:not(.field_with_errors) {
  width: auto;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
  float: left;
  flex-grow: 100;
}

/* line 1129, app/assets/stylesheets/app.css.scss */
.form-label-input-button-row a {
  height: 34px;
  margin-right: 2rem;
}
/* Landscape phones and down */
@media (max-width: 480px) {
  /* line 4, app/assets/stylesheets/app_responsive.css.scss */
  .navbar-toggle {
    display: block;
  }
}

/* Landscape phone to portrait tablet */
@media (min-width: 481px) and (max-width: 767px) {
  /* line 9, app/assets/stylesheets/app_responsive.css.scss */
  .nav > li > a {
    padding: 10px 15px;
  }
  /* line 10, app/assets/stylesheets/app_responsive.css.scss */
  .navbar-toggle {
    display: block;
  }
}

@media (min-width: 768px) and (max-width: 979px) {
  /* line 14, app/assets/stylesheets/app_responsive.css.scss */
  .nav > li > a {
    padding: 10px 15px;
  }
  /* line 15, app/assets/stylesheets/app_responsive.css.scss */
  .navbar-toggle {
    display: block;
  }
  /* line 16, app/assets/stylesheets/app_responsive.css.scss */
  .container > .navbar-header,
.container-fluid > .navbar-header,
.container > .navbar-collapse,
.container-fluid > .navbar-collapse {
    margin-right: -15px;
    margin-left: -15px;
  }
  /* line 23, app/assets/stylesheets/app_responsive.css.scss */
  .navbar-collapse.in {
    overflow-y: scroll !important;
  }
}

@media (min-width: 980px) {
  /* line 27, app/assets/stylesheets/app_responsive.css.scss */
  .nav > li > a {
    padding: 15px 5px;
  }
  /* line 28, app/assets/stylesheets/app_responsive.css.scss */
  .navbar-collapse {
    max-height: 340px !important;
  }
}

@media (min-width: 1200px) {
  /* line 32, app/assets/stylesheets/app_responsive.css.scss */
  .nav > li > a {
    padding: 15px 10px;
  }
}

@media (max-width: 991px) {
  /* line 37, app/assets/stylesheets/app_responsive.css.scss */
  .navbar-header {
    float: none;
  }
  /* line 40, app/assets/stylesheets/app_responsive.css.scss */
  .navbar-toggle {
    display: block;
  }
  /* line 43, app/assets/stylesheets/app_responsive.css.scss */
  .navbar-collapse {
    border-top: 1px solid transparent;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
    padding: 15px !important;
  }
  /* line 48, app/assets/stylesheets/app_responsive.css.scss */
  .navbar-collapse.collapse {
    display: none !important;
  }
  /* line 51, app/assets/stylesheets/app_responsive.css.scss */
  .navbar-nav {
    float: none !important;
    margin: 7.5px -15px;
  }
  /* line 55, app/assets/stylesheets/app_responsive.css.scss */
  .navbar-nav > li {
    float: none;
  }
  /* line 58, app/assets/stylesheets/app_responsive.css.scss */
  .navbar-nav > li > a {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  /* line 62, app/assets/stylesheets/app_responsive.css.scss */
  .navbar-text {
    float: none;
    margin: 15px 0;
  }
  /* since 3.1.0 */
  /* line 67, app/assets/stylesheets/app_responsive.css.scss */
  .navbar-collapse.collapse.in {
    display: block !important;
  }
  /* line 70, app/assets/stylesheets/app_responsive.css.scss */
  .collapsing {
    overflow: hidden !important;
  }
}
/* line 2, app/assets/stylesheets/sidebar_navigation.scss */
.with_sidebar .navbar {
  margin-bottom: 0;
}

/* line 5, app/assets/stylesheets/sidebar_navigation.scss */
.with_sidebar footer {
  margin-top: 0;
}

/* line 8, app/assets/stylesheets/sidebar_navigation.scss */
.with_sidebar .row_with_sidebar {
  display: flex;
  justify-content: flex-start;
  flex-wrap: nowrap;
}

/* line 13, app/assets/stylesheets/sidebar_navigation.scss */
.with_sidebar .sidebar_nav_container {
  position: relative;
}

@media (max-width: 480px) {
  /* line 13, app/assets/stylesheets/sidebar_navigation.scss */
  .with_sidebar .sidebar_nav_container {
    position: fixed;
    display: none;
    top: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: 2;
  }
}

@media (min-width: 481px) and (max-width: 767px) {
  /* line 13, app/assets/stylesheets/sidebar_navigation.scss */
  .with_sidebar .sidebar_nav_container {
    position: fixed;
    display: none;
    top: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: 2;
  }
}

@media (min-width: 768px) and (max-width: 979px) {
  /* line 13, app/assets/stylesheets/sidebar_navigation.scss */
  .with_sidebar .sidebar_nav_container {
    position: relative;
    display: flex;
  }
}

@media (min-width: 980px) {
  /* line 13, app/assets/stylesheets/sidebar_navigation.scss */
  .with_sidebar .sidebar_nav_container {
    position: relative;
    display: flex;
  }
}

@media (min-width: 1200px) {
  /* line 13, app/assets/stylesheets/sidebar_navigation.scss */
  .with_sidebar .sidebar_nav_container {
    position: relative;
    display: flex;
  }
}

/* line 49, app/assets/stylesheets/sidebar_navigation.scss */
.with_sidebar .sidebar_nav_container .sidebar {
  display: block;
  min-width: 250px;
  background-color: #274375;
  color: #fff;
  position: relative;
}

@media (max-width: 480px) {
  /* line 49, app/assets/stylesheets/sidebar_navigation.scss */
  .with_sidebar .sidebar_nav_container .sidebar {
    padding: 74px 20px 20px 20px;
    position: absolute;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    overflow: scroll;
  }
}

@media (min-width: 481px) and (max-width: 767px) {
  /* line 49, app/assets/stylesheets/sidebar_navigation.scss */
  .with_sidebar .sidebar_nav_container .sidebar {
    padding: 74px 20px 20px 20px;
    position: absolute;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    overflow: scroll;
  }
}

@media (min-width: 768px) and (max-width: 979px) {
  /* line 49, app/assets/stylesheets/sidebar_navigation.scss */
  .with_sidebar .sidebar_nav_container .sidebar {
    padding: 20px;
    position: relative;
  }
}

@media (min-width: 980px) {
  /* line 49, app/assets/stylesheets/sidebar_navigation.scss */
  .with_sidebar .sidebar_nav_container .sidebar {
    padding: 20px;
    position: relative;
  }
}

@media (min-width: 1200px) {
  /* line 49, app/assets/stylesheets/sidebar_navigation.scss */
  .with_sidebar .sidebar_nav_container .sidebar {
    padding: 20px;
    position: relative;
  }
}

/* line 87, app/assets/stylesheets/sidebar_navigation.scss */
.with_sidebar .sidebar_nav_container .sidebar ul {
  padding: 0;
  list-style: none;
  margin-top: 3rem;
}

@media (max-width: 480px) {
  /* line 87, app/assets/stylesheets/sidebar_navigation.scss */
  .with_sidebar .sidebar_nav_container .sidebar ul {
    margin-bottom: 3rem;
  }
}

@media (min-width: 481px) and (max-width: 767px) {
  /* line 87, app/assets/stylesheets/sidebar_navigation.scss */
  .with_sidebar .sidebar_nav_container .sidebar ul {
    margin-bottom: 3rem;
  }
}

/* line 98, app/assets/stylesheets/sidebar_navigation.scss */
.with_sidebar .sidebar_nav_container .sidebar ul li a {
  color: #fff;
  border-left: solid 3px transparent;
  padding: 1.2rem 1rem 1.2rem 2rem;
  display: flex;
}

/* line 103, app/assets/stylesheets/sidebar_navigation.scss */
.with_sidebar .sidebar_nav_container .sidebar ul li a:hover, .with_sidebar .sidebar_nav_container .sidebar ul li a.selected {
  color: #ACC9FD;
  text-decoration: none;
  border-left: solid 3px #fff;
}

/* line 109, app/assets/stylesheets/sidebar_navigation.scss */
.with_sidebar .sidebar_nav_container .sidebar ul li ul {
  margin-top: 0;
}

@media (max-width: 480px) {
  /* line 109, app/assets/stylesheets/sidebar_navigation.scss */
  .with_sidebar .sidebar_nav_container .sidebar ul li ul {
    margin-bottom: 0;
  }
}

@media (min-width: 481px) and (max-width: 767px) {
  /* line 109, app/assets/stylesheets/sidebar_navigation.scss */
  .with_sidebar .sidebar_nav_container .sidebar ul li ul {
    margin-bottom: 0;
  }
}

/* line 118, app/assets/stylesheets/sidebar_navigation.scss */
.with_sidebar .sidebar_nav_container .sidebar ul li ul li a {
  margin-left: 20px;
  font-size: 12px;
}

/* line 122, app/assets/stylesheets/sidebar_navigation.scss */
.with_sidebar .sidebar_nav_container .sidebar ul li ul li a:hover, .with_sidebar .sidebar_nav_container .sidebar ul li ul li a.selected {
  color: #ACC9FD;
  text-decoration: none;
}

@media (max-width: 767px) {
  /* line 109, app/assets/stylesheets/sidebar_navigation.scss */
  .with_sidebar .sidebar_nav_container .sidebar ul li ul {
    left: auto;
  }
}

@media (max-width: 767px) {
  /* line 49, app/assets/stylesheets/sidebar_navigation.scss */
  .with_sidebar .sidebar_nav_container .sidebar {
    left: calc(0px - 100vw);
  }
}

/* line 138, app/assets/stylesheets/sidebar_navigation.scss */
.with_sidebar .sidebar_nav_container .sidebar .close_sidebar_navigation {
  font-size: 20px;
  color: #fff;
  position: absolute;
  right: 20px;
  top: 32px;
}

/* line 148, app/assets/stylesheets/sidebar_navigation.scss */
.with_sidebar .main {
  flex: auto;
  padding: 1rem 2rem;
  margin-bottom: 6rem;
}
/* line 2, app/assets/stylesheets/footer_navigation.scss */
.with_sidebar .footer_navigation_container {
  position: fixed;
  background: #274375;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  box-shadow: 0px 2px 14px 6px #00000069;
  z-index: 1030;
}

/* line 10, app/assets/stylesheets/footer_navigation.scss */
.with_sidebar .footer_navigation_container ul.footer_nav {
  list-style: none;
  padding: 0;
  margin-bottom: 0;
  display: flex;
  justify-content: space-between;
}

/* line 17, app/assets/stylesheets/footer_navigation.scss */
.with_sidebar .footer_navigation_container ul.footer_nav li a {
  font-size: 40px;
  color: #fff;
}

/* line 20, app/assets/stylesheets/footer_navigation.scss */
.with_sidebar .footer_navigation_container ul.footer_nav li a:hover {
  text-decoration: none;
}
/* line 2, app/assets/stylesheets/jobs.css.scss */
a.unit_job_link {
  width: 250px;
  margin-right: 1rem;
  display: flex;
  flex-wrap: nowrap;
  margin-bottom: 1rem;
  position: relative;
  text-decoration: none;
}

@media (max-width: 480px) {
  /* line 2, app/assets/stylesheets/jobs.css.scss */
  a.unit_job_link {
    margin-right: 2rem;
  }
}

@media (min-width: 481px) and (max-width: 767px) {
  /* line 2, app/assets/stylesheets/jobs.css.scss */
  a.unit_job_link {
    margin-right: 2rem;
  }
}

/* line 16, app/assets/stylesheets/jobs.css.scss */
a.unit_job_link .company_circle {
  width: 40px;
  height: 40px;
  border-radius: 100px;
  text-align: center;
  padding-top: 12px;
  font-size: 16px;
  color: #fff;
  margin-right: 1rem;
  flex-shrink: 0;
}

/* line 27, app/assets/stylesheets/jobs.css.scss */
a.unit_job_link .unit_details {
  width: 197px;
  padding: 2px 6px 4px 6px;
  overflow: hidden;
}

@media (max-width: 480px) {
  /* line 27, app/assets/stylesheets/jobs.css.scss */
  a.unit_job_link .unit_details {
    width: 200px;
  }
}

@media (min-width: 481px) and (max-width: 767px) {
  /* line 27, app/assets/stylesheets/jobs.css.scss */
  a.unit_job_link .unit_details {
    width: 200px;
  }
}

/* line 37, app/assets/stylesheets/jobs.css.scss */
a.unit_job_link .unit_details .unit_name {
  font-weight: bold;
  margin-bottom: 3px;
  margin-top: 4px;
  overflow: hidden;
}

/* line 42, app/assets/stylesheets/jobs.css.scss */
a.unit_job_link .unit_details .unit_name.priority_a {
  color: red;
}

/* line 43, app/assets/stylesheets/jobs.css.scss */
a.unit_job_link .unit_details .unit_name.priority_b {
  color: #FF9100;
}

@media (max-width: 480px) {
  /* line 37, app/assets/stylesheets/jobs.css.scss */
  a.unit_job_link .unit_details .unit_name {
    width: 150px;
  }
}

@media (min-width: 481px) and (max-width: 767px) {
  /* line 37, app/assets/stylesheets/jobs.css.scss */
  a.unit_job_link .unit_details .unit_name {
    width: 150px;
  }
}

/* line 51, app/assets/stylesheets/jobs.css.scss */
a.unit_job_link .unit_details .date_display {
  color: #9f9f9f;
  font-size: 12px;
  margin-bottom: 4px;
}

/* line 56, app/assets/stylesheets/jobs.css.scss */
a.unit_job_link .unit_details .status_display {
  color: #9f9f9f;
  font-size: 12px;
}

/* line 61, app/assets/stylesheets/jobs.css.scss */
a.unit_job_link:hover {
  text-decoration: none;
}

/* line 63, app/assets/stylesheets/jobs.css.scss */
a.unit_job_link:hover .unit_details {
  background: #d6d6d6;
  border-radius: 5px;
}

/* line 66, app/assets/stylesheets/jobs.css.scss */
a.unit_job_link:hover .unit_details .date_display {
  color: #797676;
  text-decoration: none;
}

/* line 70, app/assets/stylesheets/jobs.css.scss */
a.unit_job_link:hover .unit_details .status_display {
  color: #797676;
}

/* line 75, app/assets/stylesheets/jobs.css.scss */
a.unit_job_link.active {
  text-decoration: none;
}

/* line 77, app/assets/stylesheets/jobs.css.scss */
a.unit_job_link.active .unit_details {
  background: #d6d6d6;
  border-radius: 5px;
}

/* line 80, app/assets/stylesheets/jobs.css.scss */
a.unit_job_link.active .unit_details .date_display {
  color: #797676;
  text-decoration: none;
}

/* line 84, app/assets/stylesheets/jobs.css.scss */
a.unit_job_link.active .unit_details .status_display {
  color: #797676;
}
/*a.btn {
  float: left;
  display: block;
  margin: 2px 8px 10px 0;
}

div.field a.btn {
  float: none;
  display: inline-block;
  margin: 2px 0 0 8px;
}*/
/* line 13, app/assets/stylesheets/forms.css.scss */
textarea.form-control {
  height: 50px;
}

/* line 15, app/assets/stylesheets/forms.css.scss */
.sensor_alerts_datetimepicker {
  max-width: 180px;
  display: inline-block;
  margin-right: 10px;
}

@media (max-width: 768px) {
  /* line 15, app/assets/stylesheets/forms.css.scss */
  .sensor_alerts_datetimepicker {
    max-width: 150px;
  }
}

/* line 26, app/assets/stylesheets/forms.css.scss */
#filter_form .form-group select {
  width: 163px;
  /* Landscape phone to portrait tablet */
}

@media (max-width: 480px) {
  /* line 26, app/assets/stylesheets/forms.css.scss */
  #filter_form .form-group select {
    width: 100%;
  }
}

@media (min-width: 481px) and (max-width: 767px) {
  /* line 26, app/assets/stylesheets/forms.css.scss */
  #filter_form .form-group select {
    width: 100%;
  }
}

/* line 51, app/assets/stylesheets/forms.css.scss */
form.inline_form {
  display: inline-block;
}

/* line 52, app/assets/stylesheets/forms.css.scss */
form.new_report a {
  text-decoration: none;
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: normal;
  line-height: 1.428571429;
  color: #333333;
  white-space: nowrap;
}

/* line 63, app/assets/stylesheets/forms.css.scss */
input[type="radio"],
input[type="checkbox"] {
  margin-right: 1rem;
}

/* line 68, app/assets/stylesheets/forms.css.scss */
.toggle {
  --width: 50px;
  --height: calc(var(--width) / 2);
  --border-radius: calc(var(--height) / 2);
  display: inline-block;
  cursor: pointer;
}

/* line 77, app/assets/stylesheets/forms.css.scss */
.toggle__input {
  display: none;
}

/* line 81, app/assets/stylesheets/forms.css.scss */
.toggle__fill {
  position: relative;
  width: var(--width);
  height: var(--height);
  border-radius: var(--border-radius);
  background: #dddddd;
  transition: background 0.2s;
}

/* line 90, app/assets/stylesheets/forms.css.scss */
.toggle__input:checked ~ .toggle__fill {
  background: #009578;
}

/* line 94, app/assets/stylesheets/forms.css.scss */
.toggle__fill::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: var(--height);
  width: var(--height);
  background: #ffffff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  border-radius: var(--border-radius);
  transition: transform 0.2s;
}

/* line 107, app/assets/stylesheets/forms.css.scss */
.toggle__input:checked ~ .toggle__fill::after {
  transform: translateX(var(--height));
}

/* line 112, app/assets/stylesheets/forms.css.scss */
.premium_hours_field,
.regular_hours_field,
.travel_time_field {
  width: 129px;
  display: inline-block;
  vertical-align: top;
}

/* line 120, app/assets/stylesheets/forms.css.scss */
.multi-select {
  padding: 0;
}

/* line 122, app/assets/stylesheets/forms.css.scss */
.multi-select button {
  border: none;
}

/* line 123, app/assets/stylesheets/forms.css.scss */
.multi-select .ms-choice > span {
  padding-left: 15px;
  padding-top: 3px;
}

/* line 127, app/assets/stylesheets/forms.css.scss */
.multi-select .ms-drop {
  background: #e0dfdb;
  border: 1px solid #c6c5c5;
  padding: 0.75rem 0px 1rem;
}

/* line 131, app/assets/stylesheets/forms.css.scss */
.multi-select .ms-drop ul > li {
  padding: .5rem 2rem 0rem 2rem;
}

/* line 133, app/assets/stylesheets/forms.css.scss */
.multi-select .ms-drop ul > li span {
  margin-left: 1rem;
}

/* line 139, app/assets/stylesheets/forms.css.scss */
.filtering_by_notice {
  width: 100%;
  background: #6397c4;
  display: flex;
  border-radius: 5px;
  margin: 1rem 0 0 0;
  padding: 1rem 0;
  color: #fff;
}

/* line 147, app/assets/stylesheets/forms.css.scss */
.filtering_by_notice h4 {
  margin: 0;
  font-size: 14px;
  font-weight: bold;
}
/* Landscape phones and down */
@media (max-width: 480px) {
  /* line 3, app/assets/stylesheets/forms_responsive.css.scss */
  #filter_form .form-group select {
    width: 100%;
  }
  /* line 4, app/assets/stylesheets/forms_responsive.css.scss */
  #filter_form .form-group input[type=text],
#filter_form .form-group input[type=select] {
    width: 100%;
  }
}

/* Landscape phone to portrait tablet */
@media (min-width: 481px) and (max-width: 767px) {
  /* line 12, app/assets/stylesheets/forms_responsive.css.scss */
  #filter_form .form-group select {
    width: 100%;
  }
  /* line 13, app/assets/stylesheets/forms_responsive.css.scss */
  #filter_form .form-group input[type=text],
#filter_form .form-group input[type=select] {
    width: 100%;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  /* line 20, app/assets/stylesheets/forms_responsive.css.scss */
  #filter_form .form-group select {
    width: 167px;
  }
  /* line 21, app/assets/stylesheets/forms_responsive.css.scss */
  #filter_form .form-group input[type=text],
#filter_form .form-group input[type=select] {
    width: 167px;
  }
  /* line 25, app/assets/stylesheets/forms_responsive.css.scss */
  .form-inline .form-control, .navbar-form .form-control {
    width: 143px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  /* line 29, app/assets/stylesheets/forms_responsive.css.scss */
  #filter_form .form-group select {
    width: 222px;
  }
  /* line 30, app/assets/stylesheets/forms_responsive.css.scss */
  #filter_form .form-group input[type=text],
#filter_form .form-group input[type=select] {
    width: 222px;
  }
  /* line 34, app/assets/stylesheets/forms_responsive.css.scss */
  .form-inline .form-control, .navbar-form .form-control {
    width: 143px;
  }
}

@media (min-width: 1200px) {
  /* line 38, app/assets/stylesheets/forms_responsive.css.scss */
  #filter_form .form-group select {
    width: 272px;
  }
  /* line 39, app/assets/stylesheets/forms_responsive.css.scss */
  #filter_form .form-group input[type=text],
#filter_form .form-group input[type=select] {
    width: 272px;
  }
  /* line 43, app/assets/stylesheets/forms_responsive.css.scss */
  .form-inline .form-control, .navbar-form .form-control {
    width: auto;
  }
}
/* line 1, app/assets/stylesheets/icons.scss */
.icon_pdf {
  background: url(/assets/icon_pdf-45b95756a07c2bfa3996aa19dbac5efc85173eaeab45306c1218008d980840c5.png) no-repeat;
  width: 20px;
  height: 25px;
  display: inline-block;
  background-size: 20px;
  vertical-align: middle;
  margin-right: 5px;
}

/* line 11, app/assets/stylesheets/icons.scss */
.link_with_icon {
  padding-left: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  vertical-align: middle;
  color: #333;
  margin-right: 30px;
  margin-bottom: 10px;
  line-height: 16px;
  min-height: 37px;
}

/* line 22, app/assets/stylesheets/icons.scss */
.link_with_icon span {
  flex: auto;
}

/* line 25, app/assets/stylesheets/icons.scss */
.link_with_icon small {
  flex: auto;
}

/* line 28, app/assets/stylesheets/icons.scss */
.link_with_icon p {
  margin-bottom: 0;
}

/* line 31, app/assets/stylesheets/icons.scss */
.link_with_icon.pdf {
  background: url(/assets/icon_pdf-45b95756a07c2bfa3996aa19dbac5efc85173eaeab45306c1218008d980840c5.png) no-repeat 0 8px;
  background-size: 20px;
}

/* line 35, app/assets/stylesheets/icons.scss */
.link_with_icon.without_date {
  padding-top: 12px;
}
@media (max-width: 480px) {
  /* line 3, app/assets/stylesheets/tables.css.scss */
  .scroll_when_sm {
    overflow: scroll;
  }
  /* line 5, app/assets/stylesheets/tables.css.scss */
  .scroll_when_sm .scrollable_table_container {
    width: 1600px;
  }
}

/* Landscape phone to portrait tablet */
@media (min-width: 481px) and (max-width: 767px) {
  /* line 13, app/assets/stylesheets/tables.css.scss */
  .scroll_when_sm {
    overflow: scroll;
  }
  /* line 15, app/assets/stylesheets/tables.css.scss */
  .scroll_when_sm .scrollable_table_container {
    width: 1600px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  /* line 22, app/assets/stylesheets/tables.css.scss */
  .scroll_when_sm {
    overflow: unset;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  /* line 26, app/assets/stylesheets/tables.css.scss */
  .scroll_when_sm {
    overflow: unset;
  }
}

@media (min-width: 1200px) {
  /* line 30, app/assets/stylesheets/tables.css.scss */
  .scroll_when_sm {
    overflow: unset;
  }
}

/* line 33, app/assets/stylesheets/tables.css.scss */
table.full_width {
  width: 90%;
  margin: 0 auto;
  text-align: left;
}

/* line 34, app/assets/stylesheets/tables.css.scss */
.highlight {
  background: #d8f0d8;
}

/* line 35, app/assets/stylesheets/tables.css.scss */
.table-striped > tbody > tr.highlight:nth-of-type(odd) {
  background: #d8f0d8;
}

/* line 36, app/assets/stylesheets/tables.css.scss */
tr {
  transition: background-color 500ms ease-out;
}

/* line 38, app/assets/stylesheets/tables.css.scss */
tr.orange {
  background: #ffdeb0 !important;
}

/* line 39, app/assets/stylesheets/tables.css.scss */
tr.green {
  background: #d3ecd4 !important;
}

/* line 40, app/assets/stylesheets/tables.css.scss */
tr.blue {
  background: #addeeb !important;
}

/* line 41, app/assets/stylesheets/tables.css.scss */
tr.red1 {
  background: #ffcccc !important;
}

/* line 42, app/assets/stylesheets/tables.css.scss */
tr.red2 {
  background: #ffa3a3 !important;
}

/* line 43, app/assets/stylesheets/tables.css.scss */
tr.red3 {
  background: #ff5b5b !important;
}

/* line 44, app/assets/stylesheets/tables.css.scss */
tr.red4 {
  background: #ff0000 !important;
}

/* line 45, app/assets/stylesheets/tables.css.scss */
tr.grey {
  background: #b1b1b1 !important;
}

/* line 46, app/assets/stylesheets/tables.css.scss */
tr.this_service {
  font-weight: bold;
}

/* line 48, app/assets/stylesheets/tables.css.scss */
tr.related_service + tr.unrelated_service {
  border-top: 2px solid #0427a6;
  position: relative;
}

/* line 54, app/assets/stylesheets/tables.css.scss */
td.orange {
  background: #ffdeb0 !important;
}

/* line 55, app/assets/stylesheets/tables.css.scss */
td.green {
  background: #d3ecd4 !important;
}

/* line 56, app/assets/stylesheets/tables.css.scss */
td.blue {
  background: #addeeb !important;
}

/* line 57, app/assets/stylesheets/tables.css.scss */
td.red1 {
  background: #ffcccc !important;
}

/* line 58, app/assets/stylesheets/tables.css.scss */
td.red2 {
  background: #ffa3a3 !important;
}

/* line 59, app/assets/stylesheets/tables.css.scss */
td.red3 {
  background: #ff5b5b !important;
}

/* line 60, app/assets/stylesheets/tables.css.scss */
td.red4 {
  background: #ff0000 !important;
}

/* line 61, app/assets/stylesheets/tables.css.scss */
td.this_service {
  font-weight: bold;
}

/* line 63, app/assets/stylesheets/tables.css.scss */
td.sub_row_icon {
  background: url(/assets/sub_row_icon-b6fdb7285192552d16e9cb5ea7136a0dfd70fcdf8e63afe8c5823d6600aa1696.png) no-repeat 70px 11px;
  background-size: 22px;
}

/* line 67, app/assets/stylesheets/tables.css.scss */
td.cost_field {
  display: flex;
  width: 130px;
  height: 57px;
  align-items: flex-start;
}

/* line 72, app/assets/stylesheets/tables.css.scss */
td.cost_field .link_unlink {
  width: 30px;
}

/* line 81, app/assets/stylesheets/tables.css.scss */
table.totals_table tr td {
  font-weight: bold;
}

/* line 87, app/assets/stylesheets/tables.css.scss */
table.table-text-small {
  font-size: 12px;
}

/* line 89, app/assets/stylesheets/tables.css.scss */
table.table-text-small .form-control {
  font-size: 12px;
}

/* line 95, app/assets/stylesheets/tables.css.scss */
table.table-text-small .form-control {
  height: 24px;
  padding: 2px 2px;
}

/* line 99, app/assets/stylesheets/tables.css.scss */
table.table-text-small a.link_unlink {
  width: 20px;
  height: 24px;
  text-indent: -99999px;
  overflow: hidden;
  background: url(/assets/link_unlink-f561291978d7f3962e4b511d994d2e5b62c39b4472d4d215fda3f1110d25c90b.png) 0px 0px;
  background-size: 15px;
  display: inline-block;
}

/* line 111, app/assets/stylesheets/tables.css.scss */
.tablerow-tooltip {
  position: absolute;
  left: -158px;
  top: -13px;
  width: 158px;
  background: #0427a6;
  color: #fff;
  padding: 2px 10px;
  font-weight: 300;
}

/* line 122, app/assets/stylesheets/tables.css.scss */
.site_matrix_container {
  padding: 0;
  overflow-x: scroll;
  padding-bottom: 300px;
}

/* line 127, app/assets/stylesheets/tables.css.scss */
.site_matrix_container table.site_matrix_table th.site_matrix_head {
  vertical-align: top;
}

/* line 128, app/assets/stylesheets/tables.css.scss */
.site_matrix_container table.site_matrix_table th.unit_registration {
  min-width: 200px;
  width: 200px;
}

/* line 129, app/assets/stylesheets/tables.css.scss */
.site_matrix_container table.site_matrix_table th.site_matrix_head:first-child {
  height: 60px;
  position: absolute;
  min-width: 200px;
  background: #fff;
  left: 0;
  padding-left: 20px;
  width: 200px;
  border-right: 1px solid #ddd;
  z-index: 1030;
}

/* line 141, app/assets/stylesheets/tables.css.scss */
.site_matrix_container table.site_matrix_table thead th.spacer {
  width: 300px;
}

/* line 145, app/assets/stylesheets/tables.css.scss */
.site_matrix_container table.site_matrix_table tbody tr td.site_matrix_td {
  height: 60px;
  position: relative;
  min-width: 130px;
  border-right: 1px solid #b9b9b9;
}

/* line 150, app/assets/stylesheets/tables.css.scss */
.site_matrix_container table.site_matrix_table tbody tr td.site_matrix_td.orange {
  background: #ffdeb0;
}

/* line 151, app/assets/stylesheets/tables.css.scss */
.site_matrix_container table.site_matrix_table tbody tr td.site_matrix_td.green {
  background: #d3ecd4;
}

/* line 152, app/assets/stylesheets/tables.css.scss */
.site_matrix_container table.site_matrix_table tbody tr td.site_matrix_td.red {
  background: #f8a0a0;
}

/* line 153, app/assets/stylesheets/tables.css.scss */
.site_matrix_container table.site_matrix_table tbody tr td.site_matrix_td.blank {
  background: #bbb;
  border-right: 1px solid #a7a5a5;
}

/* line 155, app/assets/stylesheets/tables.css.scss */
.site_matrix_container table.site_matrix_table tbody tr:first-child th.site_matrix_head {
  border-top: none;
}

/* line 160, app/assets/stylesheets/tables.css.scss */
.site_matrix_container table.site_matrix_table tbody tr:last-child td {
  border-bottom: 1px solid #a7a5a5;
}

/* line 165, app/assets/stylesheets/tables.css.scss */
.sub_table {
  width: 100%;
}

/* line 168, app/assets/stylesheets/tables.css.scss */
.sub_table tr td {
  padding: 8px;
}
/* index.html.erb */
/* line 4, app/assets/stylesheets/companies.css.scss */
div.unit h5 a,
div.form h5 a,
div.user h5 a {
  padding: 0 0 0 24px;
}

/* line 11, app/assets/stylesheets/companies.css.scss */
div.form h5 a {
  background: url(/assets/ico/form-d19fa7a3dfc7dff5d489e0598f7850e735bf172275f7ce45baad4759624328e6.png) center left no-repeat;
}

/* line 15, app/assets/stylesheets/companies.css.scss */
div.unit h5 a {
  background: url(/assets/ico/unit-84c15018e9a09d0351ec6f5d90441427b5a11610a7f46495e1f5536f0bb0c238.png) center left no-repeat;
}

/* line 19, app/assets/stylesheets/companies.css.scss */
div.user h5 a {
  background: url(/assets/ico/user-4ddcdc307cca8aba8ebbc8a1616ccc609a35ece3252df3b91631dc1dea23eb45.png) center left no-repeat;
}

/* line 23, app/assets/stylesheets/companies.css.scss */
div.unit h5 a:hover,
div.form h5 a:hover,
div.user h5 a:hover {
  text-decoration: none;
}
/*!
 * FullCalendar v3.0.1 Stylesheet
 * Docs & License: http://fullcalendar.io/
 * (c) 2016 Adam Shaw
 */

.fc-day-grid-event.popover_move_down + .popover {
	top:10px !important;
}
.fc-day-grid-event.popover_move_down + .popover.right .arrow {
	top:17px;
}
.fc-day-grid-event.popover_move_down + .popover.left .arrow {
	top:17px;
}

.fc {
	direction: ltr;
	text-align: left;
}

.fc-rtl {
	text-align: right;
}

body .fc { /* extra precedence to overcome jqui */
	font-size: 1em;
}


/* Colors
--------------------------------------------------------------------------------------------------*/

.fc-unthemed th,
.fc-unthemed td,
.fc-unthemed thead,
.fc-unthemed tbody,
.fc-unthemed .fc-divider,
.fc-unthemed .fc-row,
.fc-unthemed .fc-content, /* for gutter border */
.fc-unthemed .fc-popover,
.fc-unthemed .fc-list-view,
.fc-unthemed .fc-list-heading td {
	border-color: #ddd;
}

.fc-unthemed .fc-popover {
	background-color: #fff;
}

.fc-unthemed .fc-divider,
.fc-unthemed .fc-popover .fc-header,
.fc-unthemed .fc-list-heading td {
	background: #eee;
}

.fc-unthemed .fc-popover .fc-header .fc-close {
	color: #666;
}

.fc-unthemed .fc-today {
	background: #fcf8e3;
}

.fc-highlight { /* when user is selecting cells */
	background: #bce8f1;
	opacity: .3;
}

.fc-bgevent { /* default look for background events */
	background: rgb(143, 223, 130);
	opacity: .3;
}

.fc-nonbusiness { /* default look for non-business-hours areas */
	/* will inherit .fc-bgevent's styles */
	background: #d7d7d7;
}


/* Icons (inline elements with styled text that mock arrow icons)
--------------------------------------------------------------------------------------------------*/

.fc-icon {
	display: inline-block;
	height: 1em;
	line-height: 1em;
	font-size: 1em;
	text-align: center;
	overflow: hidden;
	font-family: "Courier New", Courier, monospace;

	/* don't allow browser text-selection */
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	}

/*
Acceptable font-family overrides for individual icons:
	"Arial", sans-serif
	"Times New Roman", serif

NOTE: use percentage font sizes or else old IE chokes
*/

.fc-icon:after {
	position: relative;
}

.fc-icon-left-single-arrow:after {
	content: "\02039";
	font-weight: bold;
	font-size: 200%;
	top: -7%;
}

.fc-icon-right-single-arrow:after {
	content: "\0203A";
	font-weight: bold;
	font-size: 200%;
	top: -7%;
}

.fc-icon-left-double-arrow:after {
	content: "\000AB";
	font-size: 160%;
	top: -7%;
}

.fc-icon-right-double-arrow:after {
	content: "\000BB";
	font-size: 160%;
	top: -7%;
}

.fc-icon-left-triangle:after {
	content: "\25C4";
	font-size: 125%;
	top: 3%;
}

.fc-icon-right-triangle:after {
	content: "\25BA";
	font-size: 125%;
	top: 3%;
}

.fc-icon-down-triangle:after {
	content: "\25BC";
	font-size: 125%;
	top: 2%;
}

.fc-icon-x:after {
	content: "\000D7";
	font-size: 200%;
	top: 6%;
}


/* Buttons (styled <button> tags, normalized to work cross-browser)
--------------------------------------------------------------------------------------------------*/

.fc button {
	/* force height to include the border and padding */
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;

	/* dimensions */
	margin: 0;
	height: 2.1em;
	padding: 0 .6em;

	/* text & cursor */
	font-size: 1em; /* normalize */
	white-space: nowrap;
	cursor: pointer;
}

/* Firefox has an annoying inner border */
.fc button::-moz-focus-inner { margin: 0; padding: 0; }
	
.fc-state-default { /* non-theme */
	border: 1px solid;
}

.fc-state-default.fc-corner-left { /* non-theme */
	border-top-left-radius: 4px;
	border-bottom-left-radius: 4px;
}

.fc-state-default.fc-corner-right { /* non-theme */
	border-top-right-radius: 4px;
	border-bottom-right-radius: 4px;
}

/* icons in buttons */

.fc button .fc-icon { /* non-theme */
	position: relative;
	top: -0.05em; /* seems to be a good adjustment across browsers */
	margin: 0 .2em;
	vertical-align: middle;
}
	
/*
  button states
  borrowed from twitter bootstrap (http://twitter.github.com/bootstrap/)
*/

.fc-state-default {
	background-color: #f5f5f5;
	background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));
	background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
	background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
	background-image: linear-gradient(to bottom, #ffffff, #e6e6e6);
	background-repeat: repeat-x;
	border-color: #e6e6e6 #e6e6e6 #bfbfbf;
	border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
	color: #333;
	text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
}

.fc-state-hover,
.fc-state-down,
.fc-state-active,
.fc-state-disabled {
	color: #333333;
	background-color: #e6e6e6;
}

.fc-state-hover {
	color: #333333;
	text-decoration: none;
	background-position: 0 -15px;
	-webkit-transition: background-position 0.1s linear;
	   -moz-transition: background-position 0.1s linear;
	     -o-transition: background-position 0.1s linear;
	        transition: background-position 0.1s linear;
}

.fc-state-down,
.fc-state-active {
	background-color: #cccccc;
	background-image: none;
	box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
}

.fc-state-disabled {
	cursor: default;
	background-image: none;
	opacity: 0.65;
	box-shadow: none;
}


/* Buttons Groups
--------------------------------------------------------------------------------------------------*/

.fc-button-group {
	display: inline-block;
}

/*
every button that is not first in a button group should scootch over one pixel and cover the
previous button's border...
*/

.fc .fc-button-group > * { /* extra precedence b/c buttons have margin set to zero */
	float: left;
	margin: 0 0 0 -1px;
}

.fc .fc-button-group > :first-child { /* same */
	margin-left: 0;
}


/* Popover
--------------------------------------------------------------------------------------------------*/

.fc-popover {
	position: absolute;
	box-shadow: 0 2px 6px rgba(0,0,0,.15);
}

.fc-popover .fc-header { /* TODO: be more consistent with fc-head/fc-body */
	padding: 2px 4px;
}

.fc-popover .fc-header .fc-title {
	margin: 0 2px;
}

.fc-popover .fc-header .fc-close {
	cursor: pointer;
}

.fc-ltr .fc-popover .fc-header .fc-title,
.fc-rtl .fc-popover .fc-header .fc-close {
	float: left;
}

.fc-rtl .fc-popover .fc-header .fc-title,
.fc-ltr .fc-popover .fc-header .fc-close {
	float: right;
}

/* unthemed */

.fc-unthemed .fc-popover {
	border-width: 1px;
	border-style: solid;
}

.fc-unthemed .fc-popover .fc-header .fc-close {
	font-size: .9em;
	margin-top: 2px;
}

/* jqui themed */

.fc-popover > .ui-widget-header + .ui-widget-content {
	border-top: 0; /* where they meet, let the header have the border */
}


/* Misc Reusable Components
--------------------------------------------------------------------------------------------------*/

.fc-divider {
	border-style: solid;
	border-width: 1px;
}

hr.fc-divider {
	height: 0;
	margin: 0;
	padding: 0 0 2px; /* height is unreliable across browsers, so use padding */
	border-width: 1px 0;
}

.fc-clear {
	clear: both;
}

.fc-bg,
.fc-bgevent-skeleton,
.fc-highlight-skeleton,
.fc-helper-skeleton {
	/* these element should always cling to top-left/right corners */
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
}

.fc-bg {
	bottom: 0; /* strech bg to bottom edge */
}

.fc-bg table {
	height: 100%; /* strech bg to bottom edge */
}


/* Tables
--------------------------------------------------------------------------------------------------*/

.fc table {
	width: 100%;
	box-sizing: border-box; /* fix scrollbar issue in firefox */
	table-layout: fixed;
	border-collapse: collapse;
	border-spacing: 0;
	font-size: 1em; /* normalize cross-browser */
}

.fc th {
	text-align: center;
}

.fc th,
.fc td {
	border-style: solid;
	border-width: 1px;
	padding: 0;
	vertical-align: top;
}

.fc td.fc-today {
	border-style: double; /* overcome neighboring borders */
}


/* Internal Nav Links
--------------------------------------------------------------------------------------------------*/

a[data-goto] {
	cursor: pointer;
}

a[data-goto]:hover {
	text-decoration: underline;
}


/* Fake Table Rows
--------------------------------------------------------------------------------------------------*/

.fc .fc-row { /* extra precedence to overcome themes w/ .ui-widget-content forcing a 1px border */
	/* no visible border by default. but make available if need be (scrollbar width compensation) */
	border-style: solid;
	border-width: 0;
}

.fc-row.fc-week { padding-bottom: 200px;}

.fc-row table {
	/* don't put left/right border on anything within a fake row.
	   the outer tbody will worry about this */
	border-left: 0 hidden transparent;
	border-right: 0 hidden transparent;

	/* no bottom borders on rows */
	border-bottom: 0 hidden transparent; 
}

.fc-row:first-child table {
	border-top: 0 hidden transparent; /* no top border on first row */
}


/* Day Row (used within the header and the DayGrid)
--------------------------------------------------------------------------------------------------*/

.fc-row {
	position: relative;
}

.fc-row .fc-bg {
	z-index: 1;
}

/* highlighting cells & background event skeleton */

.fc-row .fc-bgevent-skeleton,
.fc-row .fc-highlight-skeleton {
	bottom: 0; /* stretch skeleton to bottom of row */
}

.fc-row .fc-bgevent-skeleton table,
.fc-row .fc-highlight-skeleton table {
	height: 100%; /* stretch skeleton to bottom of row */
}

.fc-row .fc-highlight-skeleton td,
.fc-row .fc-bgevent-skeleton td {
	border-color: transparent;
}

.fc-row .fc-bgevent-skeleton {
	z-index: 2;

}

.fc-row .fc-highlight-skeleton {
	z-index: 3;
}

/*
row content (which contains day/week numbers and events) as well as "helper" (which contains
temporary rendered events).
*/

.fc-row .fc-content-skeleton {
	position: relative;
	z-index: 4;
	padding-bottom: 2px; /* matches the space above the events */
}

.fc-row .fc-helper-skeleton {
	z-index: 5;
}

.fc-row .fc-content-skeleton td,
.fc-row .fc-helper-skeleton td {
	/* see-through to the background below */
	background: none; /* in case <td>s are globally styled */
	border-color: transparent;

	/* don't put a border between events and/or the day number */
	border-bottom: 0;
}

.fc-row .fc-content-skeleton tbody td, /* cells with events inside (so NOT the day number cell) */
.fc-row .fc-helper-skeleton tbody td {
	/* don't put a border between event cells */
	border-top: 0;
}


/* Scrolling Container
--------------------------------------------------------------------------------------------------*/

.fc-scroller {
	-webkit-overflow-scrolling: touch;
}

/* TODO: move to agenda/basic */
.fc-scroller > .fc-day-grid,
.fc-scroller > .fc-time-grid {
	position: relative; /* re-scope all positions */
	width: 100%; /* hack to force re-sizing this inner element when scrollbars appear/disappear */
}


/* Global Event Styles
--------------------------------------------------------------------------------------------------*/

.fc-event {
	position: relative; /* for resize handle and other inner positioning */
	display: block; /* make the <a> tag block */
	font-size: .85em;
	line-height: 1.3;
	border-radius: 3px;
	border: 1px solid #3a87ad; /* default BORDER color */
	font-weight: normal; /* undo jqui's ui-widget-header bold */
}

.fc-event,
.fc-event-dot {
	background-color: #3a87ad; /* default BACKGROUND color */
}

/* overpower some of bootstrap's and jqui's styles on <a> tags */
.fc-event,
.fc-event:hover,
.ui-widget .fc-event {
	color: #fff; /* default TEXT color */
	text-decoration: none; /* if <a> has an href */
}

.fc-event[href],
.fc-event.fc-draggable {
	cursor: pointer; /* give events with links and draggable events a hand mouse pointer */
}

.fc-not-allowed, /* causes a "warning" cursor. applied on body */
.fc-not-allowed .fc-event { /* to override an event's custom cursor */
	cursor: not-allowed;
}

.fc-event .fc-bg { /* the generic .fc-bg already does position */
	z-index: 1;
	background: #fff;
	opacity: .25;
}

.fc-event .fc-content {
	position: relative;
	z-index: 2;
}

/* resizer (cursor AND touch devices) */

.fc-event .fc-resizer {
	position: absolute;
	z-index: 4;
}

/* resizer (touch devices) */

.fc-event .fc-resizer {
	display: none;
}

.fc-event.fc-allow-mouse-resize .fc-resizer,
.fc-event.fc-selected .fc-resizer {
	/* only show when hovering or selected (with touch) */
	display: block;
}

/* hit area */

.fc-event.fc-selected .fc-resizer:before {
	/* 40x40 touch area */
	content: "";
	position: absolute;
	z-index: 9999; /* user of this util can scope within a lower z-index */
	top: 50%;
	left: 50%;
	width: 40px;
	height: 40px;
	margin-left: -20px;
	margin-top: -20px;
}


/* Event Selection (only for touch devices)
--------------------------------------------------------------------------------------------------*/

.fc-event.fc-selected {
	z-index: 9999 !important; /* overcomes inline z-index */
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.fc-event.fc-selected.fc-dragging {
	box-shadow: 0 2px 7px rgba(0, 0, 0, 0.3);
}


/* Horizontal Events
--------------------------------------------------------------------------------------------------*/

/* bigger touch area when selected */
.fc-h-event.fc-selected:before {
	content: "";
	position: absolute;
	z-index: 3; /* below resizers */
	top: -10px;
	bottom: -10px;
	left: 0;
	right: 0;
}

/* events that are continuing to/from another week. kill rounded corners and butt up against edge */

.fc-ltr .fc-h-event.fc-not-start,
.fc-rtl .fc-h-event.fc-not-end {
	margin-left: 0;
	border-left-width: 0;
	padding-left: 1px; /* replace the border with padding */
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}

.fc-ltr .fc-h-event.fc-not-end,
.fc-rtl .fc-h-event.fc-not-start {
	margin-right: 0;
	border-right-width: 0;
	padding-right: 1px; /* replace the border with padding */
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}

/* resizer (cursor AND touch devices) */

/* left resizer  */
.fc-ltr .fc-h-event .fc-start-resizer,
.fc-rtl .fc-h-event .fc-end-resizer {
	cursor: w-resize;
	left: -1px; /* overcome border */
}

/* right resizer */
.fc-ltr .fc-h-event .fc-end-resizer,
.fc-rtl .fc-h-event .fc-start-resizer {
	cursor: e-resize;
	right: -1px; /* overcome border */
}

/* resizer (mouse devices) */

.fc-h-event.fc-allow-mouse-resize .fc-resizer {
	width: 7px;
	top: -1px; /* overcome top border */
	bottom: -1px; /* overcome bottom border */
}

/* resizer (touch devices) */

.fc-h-event.fc-selected .fc-resizer {
	/* 8x8 little dot */
	border-radius: 4px;
	border-width: 1px;
	width: 6px;
	height: 6px;
	border-style: solid;
	border-color: inherit;
	background: #fff;
	/* vertically center */
	top: 50%;
	margin-top: -4px;
}

/* left resizer  */
.fc-ltr .fc-h-event.fc-selected .fc-start-resizer,
.fc-rtl .fc-h-event.fc-selected .fc-end-resizer {
	margin-left: -4px; /* centers the 8x8 dot on the left edge */
}

/* right resizer */
.fc-ltr .fc-h-event.fc-selected .fc-end-resizer,
.fc-rtl .fc-h-event.fc-selected .fc-start-resizer {
	margin-right: -4px; /* centers the 8x8 dot on the right edge */
}


/* DayGrid events
----------------------------------------------------------------------------------------------------
We use the full "fc-day-grid-event" class instead of using descendants because the event won't
be a descendant of the grid when it is being dragged.
*/

.fc-day-grid-event {
	margin: 1px 2px 0; /* spacing between events and edges */
	padding: 0 1px;
}

tr:first-child > td > .fc-day-grid-event {
	margin-top: 2px; /* a little bit more space before the first event */
}

.fc-day-grid-event.fc-selected:after {
	content: "";
	position: absolute;
	z-index: 1; /* same z-index as fc-bg, behind text */
	/* overcome the borders */
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
	/* darkening effect */
	background: #000;
	opacity: .25;
}

.fc-day-grid-event .fc-content { /* force events to be one-line tall */
	white-space: nowrap;
	overflow: hidden;
}

.fc-day-grid-event .fc-time {
	font-weight: bold;
}

/* resizer (cursor devices) */

/* left resizer  */
.fc-ltr .fc-day-grid-event.fc-allow-mouse-resize .fc-start-resizer,
.fc-rtl .fc-day-grid-event.fc-allow-mouse-resize .fc-end-resizer {
	margin-left: -2px; /* to the day cell's edge */
}

/* right resizer */
.fc-ltr .fc-day-grid-event.fc-allow-mouse-resize .fc-end-resizer,
.fc-rtl .fc-day-grid-event.fc-allow-mouse-resize .fc-start-resizer {
	margin-right: -2px; /* to the day cell's edge */
}


/* Event Limiting
--------------------------------------------------------------------------------------------------*/

/* "more" link that represents hidden events */

a.fc-more {
	margin: 1px 3px;
	font-size: .85em;
	cursor: pointer;
	text-decoration: none;
}

a.fc-more:hover {
	text-decoration: underline;
}

.fc-limited { /* rows and cells that are hidden because of a "more" link */
	display: none;
}

/* popover that appears when "more" link is clicked */

.fc-day-grid .fc-row {
	z-index: 1; /* make the "more" popover one higher than this */
}

.fc-more-popover {
	z-index: 2;
	width: 220px;
}

.fc-more-popover .fc-event-container {
	padding: 10px;
}


/* Now Indicator
--------------------------------------------------------------------------------------------------*/

.fc-now-indicator {
	position: absolute;
	border: 0 solid red;
}


/* Utilities
--------------------------------------------------------------------------------------------------*/

.fc-unselectable {
	-webkit-user-select: none;
	 -khtml-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
	-webkit-touch-callout: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}



/* Toolbar
--------------------------------------------------------------------------------------------------*/

.fc-toolbar {
	text-align: center;
	margin-bottom: 1em;
}

.fc-toolbar .fc-left {
	float: left;
}

.fc-toolbar .fc-right {
	float: right;
}

.fc-toolbar .fc-center {
	display: inline-block;
}

/* the things within each left/right/center section */
.fc .fc-toolbar > * > * { /* extra precedence to override button border margins */
	float: left;
	margin-left: .75em;
}

/* the first thing within each left/center/right section */
.fc .fc-toolbar > * > :first-child { /* extra precedence to override button border margins */
	margin-left: 0;
}
	
/* title text */

.fc-toolbar h2 {
	margin: 0;
}

/* button layering (for border precedence) */

.fc-toolbar button {
	position: relative;
}

.fc-toolbar .fc-state-hover,
.fc-toolbar .ui-state-hover {
	z-index: 2;
}
	
.fc-toolbar .fc-state-down {
	z-index: 3;
}

.fc-toolbar .fc-state-active,
.fc-toolbar .ui-state-active {
	z-index: 4;
}

.fc-toolbar button:focus {
	z-index: 5;
}


/* View Structure
--------------------------------------------------------------------------------------------------*/

/* undo twitter bootstrap's box-sizing rules. normalizes positioning techniques */
/* don't do this for the toolbar because we'll want bootstrap to style those buttons as some pt */
.fc-view-container *,
.fc-view-container *:before,
.fc-view-container *:after {
	-webkit-box-sizing: content-box;
	   -moz-box-sizing: content-box;
	        box-sizing: content-box;
}

.fc-view, /* scope positioning and z-index's for everything within the view */
.fc-view > table { /* so dragged elements can be above the view's main element */
	position: relative;
	z-index: 1;
}



/* BasicView
--------------------------------------------------------------------------------------------------*/

/* day row structure */

.fc-basicWeek-view .fc-content-skeleton,
.fc-basicDay-view .fc-content-skeleton {
	/* there may be week numbers in these views, so no padding-top */
	padding-bottom: 1em; /* ensure a space at bottom of cell for user selecting/clicking */
}

.fc-basic-view .fc-body .fc-row {
	min-height: 4em; /* ensure that all rows are at least this tall */
}

/* a "rigid" row will take up a constant amount of height because content-skeleton is absolute */

.fc-row.fc-rigid {
	overflow: hidden;
}

.fc-row.fc-rigid .fc-content-skeleton {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
}

/* week and day number styling */

.fc-day-top.fc-other-month {
	opacity: 0.3;
}

.fc-basic-view .fc-week-number,
.fc-basic-view .fc-day-number {
	padding: 2px;
}

.fc-basic-view th.fc-week-number,
.fc-basic-view th.fc-day-number {
	padding: 0 2px; /* column headers can't have as much v space */
}

.fc-ltr .fc-basic-view .fc-day-top .fc-day-number { float: right; }
.fc-rtl .fc-basic-view .fc-day-top .fc-day-number { float: left; }

.fc-ltr .fc-basic-view .fc-day-top .fc-week-number { float: left; border-radius: 0 0 3px 0; }
.fc-rtl .fc-basic-view .fc-day-top .fc-week-number { float: right; border-radius: 0 0 0 3px; }

.fc-basic-view .fc-day-top .fc-week-number {
	min-width: 1.5em;
	text-align: center;
	background-color: #f2f2f2;
	color: #808080;
}

/* when week/day number have own column */

.fc-basic-view td.fc-week-number {
	text-align: center;
}

.fc-basic-view td.fc-week-number > * {
	/* work around the way we do column resizing and ensure a minimum width */
	display: inline-block;
	min-width: 1.25em;
}


/* AgendaView all-day area
--------------------------------------------------------------------------------------------------*/

.fc-agenda-view .fc-day-grid {
	position: relative;
	z-index: 2; /* so the "more.." popover will be over the time grid */
}

.fc-agenda-view .fc-day-grid .fc-row {
	min-height: 3em; /* all-day section will never get shorter than this */
}

.fc-agenda-view .fc-day-grid .fc-row .fc-content-skeleton {
	padding-bottom: 1em; /* give space underneath events for clicking/selecting days */
}


/* TimeGrid axis running down the side (for both the all-day area and the slot area)
--------------------------------------------------------------------------------------------------*/

.fc .fc-axis { /* .fc to overcome default cell styles */
	vertical-align: middle;
	padding: 0 4px;
	white-space: nowrap;
}

.fc-ltr .fc-axis {
	text-align: right;
}

.fc-rtl .fc-axis {
	text-align: left;
}

.ui-widget td.fc-axis {
	font-weight: normal; /* overcome jqui theme making it bold */
}


/* TimeGrid Structure
--------------------------------------------------------------------------------------------------*/

.fc-time-grid-container, /* so scroll container's z-index is below all-day */
.fc-time-grid { /* so slats/bg/content/etc positions get scoped within here */
	position: relative;
	z-index: 1;
}

.fc-time-grid {
	min-height: 100%; /* so if height setting is 'auto', .fc-bg stretches to fill height */
}

.fc-time-grid table { /* don't put outer borders on slats/bg/content/etc */
	border: 0 hidden transparent;
}

.fc-time-grid > .fc-bg {
	z-index: 1;
}

.fc-time-grid .fc-slats,
.fc-time-grid > hr { /* the <hr> AgendaView injects when grid is shorter than scroller */
	position: relative;
	z-index: 2;
}

.fc-time-grid .fc-content-col {
	position: relative; /* because now-indicator lives directly inside */
}

.fc-time-grid .fc-content-skeleton {
	position: absolute;
	z-index: 3;
	top: 0;
	left: 0;
	right: 0;
}

/* divs within a cell within the fc-content-skeleton */

.fc-time-grid .fc-business-container {
	position: relative;
	z-index: 1;
}

.fc-time-grid .fc-bgevent-container {
	position: relative;
	z-index: 2;
}

.fc-time-grid .fc-highlight-container {
	position: relative;
	z-index: 3;
}

.fc-time-grid .fc-event-container {
	position: relative;
	z-index: 4;
}

.fc-time-grid .fc-now-indicator-line {
	z-index: 5;
}

.fc-time-grid .fc-helper-container { /* also is fc-event-container */
	position: relative;
	z-index: 6;
}


/* TimeGrid Slats (lines that run horizontally)
--------------------------------------------------------------------------------------------------*/

.fc-time-grid .fc-slats td {
	height: 1.5em;
	border-bottom: 0; /* each cell is responsible for its top border */
}

.fc-time-grid .fc-slats .fc-minor td {
	border-top-style: dotted;
}

.fc-time-grid .fc-slats .ui-widget-content { /* for jqui theme */
	background: none; /* see through to fc-bg */
}


/* TimeGrid Highlighting Slots
--------------------------------------------------------------------------------------------------*/

.fc-time-grid .fc-highlight-container { /* a div within a cell within the fc-highlight-skeleton */
	position: relative; /* scopes the left/right of the fc-highlight to be in the column */
}

.fc-time-grid .fc-highlight {
	position: absolute;
	left: 0;
	right: 0;
	/* top and bottom will be in by JS */
}


/* TimeGrid Event Containment
--------------------------------------------------------------------------------------------------*/

.fc-ltr .fc-time-grid .fc-event-container { /* space on the sides of events for LTR (default) */
	margin: 0 2.5% 0 2px;
}

.fc-rtl .fc-time-grid .fc-event-container { /* space on the sides of events for RTL */
	margin: 0 2px 0 2.5%;
}

.fc-time-grid .fc-event,
.fc-time-grid .fc-bgevent {
	position: absolute;
	z-index: 1; /* scope inner z-index's */
}

.fc-time-grid .fc-bgevent {
	/* background events always span full width */
	left: 0;
	right: 0;
}


/* Generic Vertical Event
--------------------------------------------------------------------------------------------------*/

.fc-v-event.fc-not-start { /* events that are continuing from another day */
	/* replace space made by the top border with padding */
	border-top-width: 0;
	padding-top: 1px;

	/* remove top rounded corners */
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}

.fc-v-event.fc-not-end {
	/* replace space made by the top border with padding */
	border-bottom-width: 0;
	padding-bottom: 1px;

	/* remove bottom rounded corners */
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}


/* TimeGrid Event Styling
----------------------------------------------------------------------------------------------------
We use the full "fc-time-grid-event" class instead of using descendants because the event won't
be a descendant of the grid when it is being dragged.
*/

.fc-time-grid-event {
	overflow: hidden; /* don't let the bg flow over rounded corners */
}

.fc-time-grid-event.fc-selected {
	/* need to allow touch resizers to extend outside event's bounding box */
	/* common fc-selected styles hide the fc-bg, so don't need this anyway */
	overflow: visible;
}

.fc-time-grid-event.fc-selected .fc-bg {
	display: none; /* hide semi-white background, to appear darker */
}

.fc-time-grid-event .fc-content {
	overflow: hidden; /* for when .fc-selected */
}

.fc-time-grid-event .fc-time,
.fc-time-grid-event .fc-title {
	padding: 0 1px;
}

.fc-time-grid-event .fc-time {
	font-size: .85em;
	white-space: nowrap;
}

/* short mode, where time and title are on the same line */

.fc-time-grid-event.fc-short .fc-content {
	/* don't wrap to second line (now that contents will be inline) */
	white-space: nowrap;
}

.fc-time-grid-event.fc-short .fc-time,
.fc-time-grid-event.fc-short .fc-title {
	/* put the time and title on the same line */
	display: inline-block;
	vertical-align: top;
}

.fc-time-grid-event.fc-short .fc-time span {
	display: none; /* don't display the full time text... */
}

.fc-time-grid-event.fc-short .fc-time:before {
	content: attr(data-start); /* ...instead, display only the start time */
}

.fc-time-grid-event.fc-short .fc-time:after {
	content: "\000A0-\000A0"; /* seperate with a dash, wrapped in nbsp's */
}

.fc-time-grid-event.fc-short .fc-title {
	font-size: .85em; /* make the title text the same size as the time */
	padding: 0; /* undo padding from above */
}

/* resizer (cursor device) */

.fc-time-grid-event.fc-allow-mouse-resize .fc-resizer {
	left: 0;
	right: 0;
	bottom: 0;
	height: 8px;
	overflow: hidden;
	line-height: 8px;
	font-size: 11px;
	font-family: monospace;
	text-align: center;
	cursor: s-resize;
}

.fc-time-grid-event.fc-allow-mouse-resize .fc-resizer:after {
	content: "=";
}

/* resizer (touch device) */

.fc-time-grid-event.fc-selected .fc-resizer {
	/* 10x10 dot */
	border-radius: 5px;
	border-width: 1px;
	width: 8px;
	height: 8px;
	border-style: solid;
	border-color: inherit;
	background: #fff;
	/* horizontally center */
	left: 50%;
	margin-left: -5px;
	/* center on the bottom edge */
	bottom: -5px;
}


/* Now Indicator
--------------------------------------------------------------------------------------------------*/

.fc-time-grid .fc-now-indicator-line {
	border-top-width: 1px;
	left: 0;
	right: 0;
}

/* arrow on axis */

.fc-time-grid .fc-now-indicator-arrow {
	margin-top: -5px; /* vertically center on top coordinate */
}

.fc-ltr .fc-time-grid .fc-now-indicator-arrow {
	left: 0;
	/* triangle pointing right... */
	border-width: 5px 0 5px 6px;
	border-top-color: transparent;
	border-bottom-color: transparent;
}

.fc-rtl .fc-time-grid .fc-now-indicator-arrow {
	right: 0;
	/* triangle pointing left... */
	border-width: 5px 6px 5px 0;
	border-top-color: transparent;
	border-bottom-color: transparent;
}



/* List View
--------------------------------------------------------------------------------------------------*/

/* possibly reusable */

.fc-event-dot {
	display: inline-block;
	width: 10px;
	height: 10px;
	border-radius: 5px;
}

/* view wrapper */

.fc-rtl .fc-list-view {
	direction: rtl; /* unlike core views, leverage browser RTL */
}

.fc-list-view {
	border-width: 1px;
	border-style: solid;
}

/* table resets */

.fc .fc-list-table {
	table-layout: auto; /* for shrinkwrapping cell content */
}

.fc-list-table td {
	border-width: 1px 0 0;
	padding: 8px 14px;
}

.fc-list-table tr:first-child td {
	border-top-width: 0;
}

/* day headings with the list */

.fc-list-heading {
	border-bottom-width: 1px;
}

.fc-list-heading td {
	font-weight: bold;
}

.fc-ltr .fc-list-heading-main { float: left; }
.fc-ltr .fc-list-heading-alt { float: right; }

.fc-rtl .fc-list-heading-main { float: right; }
.fc-rtl .fc-list-heading-alt { float: left; }

/* event list items */

.fc-list-item.fc-has-url {
	cursor: pointer; /* whole row will be clickable */
}

.fc-list-item:hover td {
	background-color: #f5f5f5;
}

.fc-list-item-marker,
.fc-list-item-time {
	white-space: nowrap;
	width: 1px;
}

/* make the dot closer to the event title */
.fc-ltr .fc-list-item-marker { padding-right: 0; }
.fc-rtl .fc-list-item-marker { padding-left: 0; }

.fc-list-item-title a {
	/* every event title cell has an <a> tag */
	text-decoration: none;
	color: inherit;
}

.fc-list-item-title a[href]:hover {
	/* hover effect only on titles with hrefs */
	text-decoration: underline;
}

/* message when no events */

.fc-list-empty-wrap2 {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.fc-list-empty-wrap1 {
	width: 100%;
	height: 100%;
	display: table;
}

.fc-list-empty {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
}

.fc-unthemed .fc-list-empty { /* theme will provide own background */
	background-color: #eee;
}
@charset "UTF-8";
@media (min-width: 1600px) {
  /* line 1, app/assets/stylesheets/scheduling.scss */
  .schedule-filter-select-flex-container {
    display: flex;
    flex-direction: row;
    column-gap: 2rem;
  }
}

/* line 9, app/assets/stylesheets/scheduling.scss */
.schedule-filter-select-container {
  flex: 1 1 0;
  max-width: 500px;
  margin-bottom: 1rem;
}

@media (min-width: 1600px) {
  /* line 9, app/assets/stylesheets/scheduling.scss */
  .schedule-filter-select-container {
    margin-bottom: 0;
  }
}

/* line 19, app/assets/stylesheets/scheduling.scss */
.schedule-create-and-key-container a {
  margin-bottom: 1rem;
}

@media (min-width: 1600px) {
  /* line 18, app/assets/stylesheets/scheduling.scss */
  .schedule-create-and-key-container {
    display: flex;
    flex-direction: row;
  }
  /* line 26, app/assets/stylesheets/scheduling.scss */
  .schedule-create-and-key-container a {
    margin-bottom: 0;
  }
}

/* line 32, app/assets/stylesheets/scheduling.scss */
.schedule-key-container {
  display: flex;
  flex-direction: row;
  flex-grow: 1;
  align-items: center;
  column-gap: 1rem;
  flex-wrap: wrap;
}

@media (min-width: 1600px) {
  /* line 32, app/assets/stylesheets/scheduling.scss */
  .schedule-key-container {
    justify-content: center;
  }
}

/* line 44, app/assets/stylesheets/scheduling.scss */
.schedule-key-container .pill {
  margin: 1rem 0;
}

@media (min-width: 1600px) {
  /* line 44, app/assets/stylesheets/scheduling.scss */
  .schedule-key-container .pill {
    margin: 0;
  }
}

/* line 52, app/assets/stylesheets/scheduling.scss */
.fc {
  --fc-highlight-color: yellow;
}

/* line 57, app/assets/stylesheets/scheduling.scss */
#calendar_schedule, #calendar_unit, #calendar_location_schedule {
  --schedule-navbar-height: 50px;
  --schedule-fc-toolbar-height: 52px;
  /* Highlight the day labels */
}

/* line 61, app/assets/stylesheets/scheduling.scss */
#calendar_schedule th, #calendar_unit th, #calendar_location_schedule th {
  border: none;
}

/* line 65, app/assets/stylesheets/scheduling.scss */
#calendar_schedule td, #calendar_unit td, #calendar_location_schedule td {
  border: none;
  border-bottom: 10px solid transparent;
}

/* line 70, app/assets/stylesheets/scheduling.scss */
#calendar_schedule tbody .fc-datagrid-cell-frame, #calendar_unit tbody .fc-datagrid-cell-frame, #calendar_location_schedule tbody .fc-datagrid-cell-frame {
  padding: 1rem 2rem;
  position: relative;
  min-height: 60px !important;
  display: flex;
  align-items: center;
}

/* line 76, app/assets/stylesheets/scheduling.scss */
#calendar_schedule tbody .fc-datagrid-cell-frame::after, #calendar_unit tbody .fc-datagrid-cell-frame::after, #calendar_location_schedule tbody .fc-datagrid-cell-frame::after {
  content: "+";
  color: #fff;
  position: absolute;
  display: flex;
  top: 0;
  left: 0;
  width: 20px;
  height: 100%;
  background-color: #35b361;
  margin-right: 10px;
  cursor: pointer;
  /* vertical-align: baseline; */
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  border-radius: 5px 0 0 5px;
}

/* line 96, app/assets/stylesheets/scheduling.scss */
#calendar_schedule tbody .fc-resource .fc-datagrid-cell-frame, #calendar_unit tbody .fc-resource .fc-datagrid-cell-frame, #calendar_location_schedule tbody .fc-resource .fc-datagrid-cell-frame {
  min-height: 89px !important;
}

/* line 100, app/assets/stylesheets/scheduling.scss */
#calendar_schedule tbody .location-container .fc-datagrid-cell-frame::after, #calendar_unit tbody .location-container .fc-datagrid-cell-frame::after, #calendar_location_schedule tbody .location-container .fc-datagrid-cell-frame::after {
  content: "";
  cursor: auto;
}

/* line 105, app/assets/stylesheets/scheduling.scss */
#calendar_schedule .fc-datagrid-cell.unit-container, #calendar_unit .fc-datagrid-cell.unit-container, #calendar_location_schedule .fc-datagrid-cell.unit-container {
  cursor: pointer;
}

/* line 108, app/assets/stylesheets/scheduling.scss */
#calendar_schedule .fc-datagrid-cell.unit-container a, #calendar_unit .fc-datagrid-cell.unit-container a, #calendar_location_schedule .fc-datagrid-cell.unit-container a {
  text-decoration: unset;
  color: inherit;
}

/* line 114, app/assets/stylesheets/scheduling.scss */
#calendar_schedule a.fc-scrollgrid-sync-inner:hover, #calendar_schedule a.fc-col-header-cell-cushion:hover, #calendar_schedule a.fc-daygrid-day-number:hover, #calendar_unit a.fc-scrollgrid-sync-inner:hover, #calendar_unit a.fc-col-header-cell-cushion:hover, #calendar_unit a.fc-daygrid-day-number:hover, #calendar_location_schedule a.fc-scrollgrid-sync-inner:hover, #calendar_location_schedule a.fc-col-header-cell-cushion:hover, #calendar_location_schedule a.fc-daygrid-day-number:hover {
  text-decoration: none;
}

/* line 118, app/assets/stylesheets/scheduling.scss */
#calendar_schedule .fc-daygrid-day, #calendar_unit .fc-daygrid-day, #calendar_location_schedule .fc-daygrid-day {
  background-color: #FFFFFF !important;
  border: 1px #DDDDDD solid;
}

/* line 124, app/assets/stylesheets/scheduling.scss */
#calendar_schedule .fc-weekend:not(.fc-day-today), #calendar_unit .fc-weekend:not(.fc-day-today), #calendar_location_schedule .fc-weekend:not(.fc-day-today) {
  background-color: #f5f5f5 !important;
}

/* line 129, app/assets/stylesheets/scheduling.scss */
#calendar_schedule .fc-weekend-label, #calendar_unit .fc-weekend-label, #calendar_location_schedule .fc-weekend-label {
  background-color: #f5f5f5 !important;
  font-weight: bold;
}

/* line 134, app/assets/stylesheets/scheduling.scss */
#calendar_schedule .booking-event-selected, #calendar_unit .booking-event-selected, #calendar_location_schedule .booking-event-selected {
  outline: 2px dashed #FFFFFF;
  outline-offset: -3px;
}

/* line 139, app/assets/stylesheets/scheduling.scss */
#calendar_schedule .fc-existing-booking-day, #calendar_schedule .fc-pad-or-location-booking-day, #calendar_unit .fc-existing-booking-day, #calendar_unit .fc-pad-or-location-booking-day, #calendar_location_schedule .fc-existing-booking-day, #calendar_location_schedule .fc-pad-or-location-booking-day {
  position: relative;
}

/* line 142, app/assets/stylesheets/scheduling.scss */
#calendar_schedule .fc-existing-booking-day .fc-existing-booking-pill, #calendar_schedule .fc-existing-booking-day .fc-pad-or-location-booking-pill, #calendar_schedule .fc-pad-or-location-booking-day .fc-existing-booking-pill, #calendar_schedule .fc-pad-or-location-booking-day .fc-pad-or-location-booking-pill, #calendar_unit .fc-existing-booking-day .fc-existing-booking-pill, #calendar_unit .fc-existing-booking-day .fc-pad-or-location-booking-pill, #calendar_unit .fc-pad-or-location-booking-day .fc-existing-booking-pill, #calendar_unit .fc-pad-or-location-booking-day .fc-pad-or-location-booking-pill, #calendar_location_schedule .fc-existing-booking-day .fc-existing-booking-pill, #calendar_location_schedule .fc-existing-booking-day .fc-pad-or-location-booking-pill, #calendar_location_schedule .fc-pad-or-location-booking-day .fc-existing-booking-pill, #calendar_location_schedule .fc-pad-or-location-booking-day .fc-pad-or-location-booking-pill {
  position: absolute;
  bottom: 2px;
  color: white;
  height: 15px;
  width: 15px;
  border-radius: 5px;
  font-size: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* line 154, app/assets/stylesheets/scheduling.scss */
#calendar_schedule .fc-existing-booking-day .fc-existing-booking-pill span, #calendar_schedule .fc-existing-booking-day .fc-pad-or-location-booking-pill span, #calendar_schedule .fc-pad-or-location-booking-day .fc-existing-booking-pill span, #calendar_schedule .fc-pad-or-location-booking-day .fc-pad-or-location-booking-pill span, #calendar_unit .fc-existing-booking-day .fc-existing-booking-pill span, #calendar_unit .fc-existing-booking-day .fc-pad-or-location-booking-pill span, #calendar_unit .fc-pad-or-location-booking-day .fc-existing-booking-pill span, #calendar_unit .fc-pad-or-location-booking-day .fc-pad-or-location-booking-pill span, #calendar_location_schedule .fc-existing-booking-day .fc-existing-booking-pill span, #calendar_location_schedule .fc-existing-booking-day .fc-pad-or-location-booking-pill span, #calendar_location_schedule .fc-pad-or-location-booking-day .fc-existing-booking-pill span, #calendar_location_schedule .fc-pad-or-location-booking-day .fc-pad-or-location-booking-pill span {
  pointer-events: none;
}

/* line 159, app/assets/stylesheets/scheduling.scss */
#calendar_schedule .fc-existing-booking-day .fc-existing-booking-pill, #calendar_schedule .fc-pad-or-location-booking-day .fc-existing-booking-pill, #calendar_unit .fc-existing-booking-day .fc-existing-booking-pill, #calendar_unit .fc-pad-or-location-booking-day .fc-existing-booking-pill, #calendar_location_schedule .fc-existing-booking-day .fc-existing-booking-pill, #calendar_location_schedule .fc-pad-or-location-booking-day .fc-existing-booking-pill {
  left: 2px;
  background-color: #28A746;
}

/* line 164, app/assets/stylesheets/scheduling.scss */
#calendar_schedule .fc-existing-booking-day .fc-pad-or-location-booking-pill, #calendar_schedule .fc-pad-or-location-booking-day .fc-pad-or-location-booking-pill, #calendar_unit .fc-existing-booking-day .fc-pad-or-location-booking-pill, #calendar_unit .fc-pad-or-location-booking-day .fc-pad-or-location-booking-pill, #calendar_location_schedule .fc-existing-booking-day .fc-pad-or-location-booking-pill, #calendar_location_schedule .fc-pad-or-location-booking-day .fc-pad-or-location-booking-pill {
  right: 2px;
  background-color: #D9534F;
}

/* line 170, app/assets/stylesheets/scheduling.scss */
#calendar_schedule .fc-scrollgrid-sync-inner, #calendar_schedule .fc-col-header-cell-cushion, #calendar_schedule .fc-daygrid-day-number, #calendar_unit .fc-scrollgrid-sync-inner, #calendar_unit .fc-col-header-cell-cushion, #calendar_unit .fc-daygrid-day-number, #calendar_location_schedule .fc-scrollgrid-sync-inner, #calendar_location_schedule .fc-col-header-cell-cushion, #calendar_location_schedule .fc-daygrid-day-number {
  color: #333 !important;
}

/* line 174, app/assets/stylesheets/scheduling.scss */
#calendar_schedule .fc-timeline .fc-timeline-slot-frame .fc-slot-date, #calendar_unit .fc-timeline .fc-timeline-slot-frame .fc-slot-date, #calendar_location_schedule .fc-timeline .fc-timeline-slot-frame .fc-slot-date {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* line 180, app/assets/stylesheets/scheduling.scss */
#calendar_schedule .fc-timeline .fc-slot-date__day-number, #calendar_unit .fc-timeline .fc-slot-date__day-number, #calendar_location_schedule .fc-timeline .fc-slot-date__day-number {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.1;
}

/* line 186, app/assets/stylesheets/scheduling.scss */
#calendar_schedule .fc-timeline .fc-slot-date__weekday, #calendar_unit .fc-timeline .fc-slot-date__weekday, #calendar_location_schedule .fc-timeline .fc-slot-date__weekday {
  font-size: 1.4rem;
  font-weight: 400;
  color: #666;
  margin-top: 0.1rem;
}

/* line 193, app/assets/stylesheets/scheduling.scss */
#calendar_schedule .fc-timeline .fc-slot-date__month, #calendar_unit .fc-timeline .fc-slot-date__month, #calendar_location_schedule .fc-timeline .fc-slot-date__month {
  font-size: 1.2rem;
  font-weight: 400;
  color: #666;
  margin-top: 0.1rem;
}

/* line 200, app/assets/stylesheets/scheduling.scss */
#calendar_schedule .fc-timeline-event:not(.fc-event-start)::after,
#calendar_schedule .fc-timeline-event:not(.fc-event-end)::after, #calendar_unit .fc-timeline-event:not(.fc-event-start)::after,
#calendar_unit .fc-timeline-event:not(.fc-event-end)::after, #calendar_location_schedule .fc-timeline-event:not(.fc-event-start)::after,
#calendar_location_schedule .fc-timeline-event:not(.fc-event-end)::after {
  display: none !important;
}

/* line 205, app/assets/stylesheets/scheduling.scss */
#calendar_schedule .fc-event, #calendar_unit .fc-event, #calendar_location_schedule .fc-event {
  border-radius: 10px;
  background-color: #3fa6e2;
}

/* line 208, app/assets/stylesheets/scheduling.scss */
#calendar_schedule .fc-event:not(.fc-suggested-or-new-event), #calendar_unit .fc-event:not(.fc-suggested-or-new-event), #calendar_location_schedule .fc-event:not(.fc-suggested-or-new-event) {
  position: relative;
  overflow: hidden;
  border-width: 0 !important;
}

/* line 213, app/assets/stylesheets/scheduling.scss */
#calendar_schedule .fc-event.fc-event-continues-to-next, #calendar_unit .fc-event.fc-event-continues-to-next, #calendar_location_schedule .fc-event.fc-event-continues-to-next {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

/* line 217, app/assets/stylesheets/scheduling.scss */
#calendar_schedule .fc-event.fc-event-continues-from-prev, #calendar_unit .fc-event.fc-event-continues-from-prev, #calendar_location_schedule .fc-event.fc-event-continues-from-prev {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

/* line 222, app/assets/stylesheets/scheduling.scss */
#calendar_schedule .fc-event.fc-flash-event::before, #calendar_unit .fc-event.fc-flash-event::before, #calendar_location_schedule .fc-event.fc-flash-event::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 10px;
  background: repeating-linear-gradient(-45deg, var(--flash-to), var(--flash-to) 10px, var(--flash-from) 10px, var(--flash-from) 20px);
  z-index: 0;
}

/* line 237, app/assets/stylesheets/scheduling.scss */
#calendar_schedule .fc-event.fc-flash-event::after, #calendar_unit .fc-event.fc-flash-event::after, #calendar_location_schedule .fc-event.fc-flash-event::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.05) 45%, rgba(0, 0, 0, 0.1));
  z-index: 0;
  pointer-events: none;
}

/* line 252, app/assets/stylesheets/scheduling.scss */
#calendar_schedule .fc-event.fc-job-alert, #calendar_unit .fc-event.fc-job-alert, #calendar_location_schedule .fc-event.fc-job-alert {
  border-radius: 5px;
  margin-top: 0;
  margin-bottom: 0;
  height: auto;
}

/* line 260, app/assets/stylesheets/scheduling.scss */
#calendar_schedule .fc-event-main, #calendar_unit .fc-event-main, #calendar_location_schedule .fc-event-main {
  height: auto;
  min-height: 70px;
  padding: 1rem;
  position: relative;
  z-index: 1;
}

/* line 272, app/assets/stylesheets/scheduling.scss */
#calendar_schedule .fc-event-main.priority, #calendar_unit .fc-event-main.priority, #calendar_location_schedule .fc-event-main.priority {
  height: 4px;
  padding: 0;
  animation: priority-flash 1.2s ease-in-out infinite;
  border-radius: 5px;
}

/* line 280, app/assets/stylesheets/scheduling.scss */
#calendar_schedule .booking-event__pad, #calendar_unit .booking-event__pad, #calendar_location_schedule .booking-event__pad {
  font-size: 1em;
  opacity: 0.95;
}

/* line 285, app/assets/stylesheets/scheduling.scss */
#calendar_schedule .booking-event__tags, #calendar_unit .booking-event__tags, #calendar_location_schedule .booking-event__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1rem;
}

/* line 292, app/assets/stylesheets/scheduling.scss */
#calendar_schedule .booking-event__tag-pill, #calendar_unit .booking-event__tag-pill, #calendar_location_schedule .booking-event__tag-pill {
  font-size: 0.85em;
  padding: 0.2rem 0.6rem;
}

@keyframes priority-flash {
  0% {
    background-color: #fabbbb;
  }
  25% {
    background-color: #ff0000;
  }
  /* fade in */
  50% {
    background-color: #ff0000;
  }
  /* hold */
  75% {
    background-color: #fabbbb;
  }
  /* hold */
  100% {
    background-color: #fabbbb;
  }
  /* fade out */
}

@keyframes fc-flash-between {
  0% {
    background-color: var(--flash-from);
  }
  25% {
    background-color: var(--flash-to);
  }
  50% {
    background-color: var(--flash-to);
  }
  75% {
    background-color: var(--flash-from);
  }
  100% {
    background-color: var(--flash-from);
  }
}

/* line 313, app/assets/stylesheets/scheduling.scss */
#calendar_schedule .fc-timeline-lane-frame, #calendar_unit .fc-timeline-lane-frame, #calendar_location_schedule .fc-timeline-lane-frame {
  min-height: 60px !important;
}

/* line 317, app/assets/stylesheets/scheduling.scss */
#calendar_schedule .fc-timeline-lane.fc-resource .fc-timeline-lane-frame, #calendar_unit .fc-timeline-lane.fc-resource .fc-timeline-lane-frame, #calendar_location_schedule .fc-timeline-lane.fc-resource .fc-timeline-lane-frame {
  min-height: 89px !important;
}

/* line 321, app/assets/stylesheets/scheduling.scss */
#calendar_schedule .fc-scrollgrid, #calendar_unit .fc-scrollgrid, #calendar_location_schedule .fc-scrollgrid {
  border: none;
}

/* line 325, app/assets/stylesheets/scheduling.scss */
#calendar_schedule .fc-resource .fc-datagrid-cell-frame, #calendar_unit .fc-resource .fc-datagrid-cell-frame, #calendar_location_schedule .fc-resource .fc-datagrid-cell-frame {
  border: 1px solid #d1d1d1d1;
  border-right: none;
  border-radius: 10px 0 0 10px;
}

/* line 331, app/assets/stylesheets/scheduling.scss */
#calendar_schedule .unit-container, #calendar_schedule .location-container, #calendar_unit .unit-container, #calendar_unit .location-container, #calendar_location_schedule .unit-container, #calendar_location_schedule .location-container {
  position: relative;
}

/* line 333, app/assets/stylesheets/scheduling.scss */
#calendar_schedule .unit-container.resource-has-double-bookings:not(.location-has-pads-and-standalone-bookings), #calendar_schedule .location-container.resource-has-double-bookings:not(.location-has-pads-and-standalone-bookings), #calendar_unit .unit-container.resource-has-double-bookings:not(.location-has-pads-and-standalone-bookings), #calendar_unit .location-container.resource-has-double-bookings:not(.location-has-pads-and-standalone-bookings), #calendar_location_schedule .unit-container.resource-has-double-bookings:not(.location-has-pads-and-standalone-bookings), #calendar_location_schedule .location-container.resource-has-double-bookings:not(.location-has-pads-and-standalone-bookings) {
  background: repeating-linear-gradient(-45deg, #FFD1D0, #FFD1D0 10px, #FFFFFF 10px, #FFFFFF 20px);
  border-radius: 40px 0 0 40px;
}

/* line 337, app/assets/stylesheets/scheduling.scss */
#calendar_schedule .unit-container.location-has-pads-and-standalone-bookings:not(.resource-has-double-bookings), #calendar_schedule .location-container.location-has-pads-and-standalone-bookings:not(.resource-has-double-bookings), #calendar_unit .unit-container.location-has-pads-and-standalone-bookings:not(.resource-has-double-bookings), #calendar_unit .location-container.location-has-pads-and-standalone-bookings:not(.resource-has-double-bookings), #calendar_location_schedule .unit-container.location-has-pads-and-standalone-bookings:not(.resource-has-double-bookings), #calendar_location_schedule .location-container.location-has-pads-and-standalone-bookings:not(.resource-has-double-bookings) {
  background: repeating-linear-gradient(-45deg, #FFFFFF, #FFFFFF 10px, #B8E4F0 10px, #B8E4F0 20px);
  border-radius: 40px 0 0 40px;
}

/* line 341, app/assets/stylesheets/scheduling.scss */
#calendar_schedule .unit-container.resource-has-double-bookings.location-has-pads-and-standalone-bookings, #calendar_schedule .location-container.resource-has-double-bookings.location-has-pads-and-standalone-bookings, #calendar_unit .unit-container.resource-has-double-bookings.location-has-pads-and-standalone-bookings, #calendar_unit .location-container.resource-has-double-bookings.location-has-pads-and-standalone-bookings, #calendar_location_schedule .unit-container.resource-has-double-bookings.location-has-pads-and-standalone-bookings, #calendar_location_schedule .location-container.resource-has-double-bookings.location-has-pads-and-standalone-bookings {
  background: repeating-linear-gradient(-45deg, #FFD1D0, #FFD1D0 10px, #B8E4F0 10px, #B8E4F0 20px);
  border-radius: 40px 0 0 40px;
}

/* line 346, app/assets/stylesheets/scheduling.scss */
#calendar_schedule .unit-container .fc-datagrid-cell-main, #calendar_schedule .location-container .fc-datagrid-cell-main, #calendar_unit .unit-container .fc-datagrid-cell-main, #calendar_unit .location-container .fc-datagrid-cell-main, #calendar_location_schedule .unit-container .fc-datagrid-cell-main, #calendar_location_schedule .location-container .fc-datagrid-cell-main {
  font-weight: 700;
}

/* line 351, app/assets/stylesheets/scheduling.scss */
#calendar_schedule .location-resource-label, #calendar_unit .location-resource-label, #calendar_location_schedule .location-resource-label {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.3;
}

/* line 358, app/assets/stylesheets/scheduling.scss */
#calendar_schedule .location-resource-label__location, #calendar_unit .location-resource-label__location, #calendar_location_schedule .location-resource-label__location {
  font-weight: 600;
}

/* line 362, app/assets/stylesheets/scheduling.scss */
#calendar_schedule .location-resource-label__pad, #calendar_unit .location-resource-label__pad, #calendar_location_schedule .location-resource-label__pad {
  font-size: 0.9em;
  color: #666;
  padding-left: 0.5rem;
  font-weight: 600;
}

/* line 369, app/assets/stylesheets/scheduling.scss */
#calendar_schedule .unit-resource-label, #calendar_unit .unit-resource-label, #calendar_location_schedule .unit-resource-label {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.3;
}

/* line 376, app/assets/stylesheets/scheduling.scss */
#calendar_schedule .unit-resource-label__unit, #calendar_unit .unit-resource-label__unit, #calendar_location_schedule .unit-resource-label__unit {
  font-weight: 600;
}

/* line 380, app/assets/stylesheets/scheduling.scss */
#calendar_schedule .unit-resource-label__type, #calendar_unit .unit-resource-label__type, #calendar_location_schedule .unit-resource-label__type {
  font-size: 0.9em;
  color: #666;
}

/* line 385, app/assets/stylesheets/scheduling.scss */
#calendar_schedule .pad-arrow, #calendar_unit .pad-arrow, #calendar_location_schedule .pad-arrow {
  margin-right: 0.3rem;
  font-weight: 600;
}

/* line 390, app/assets/stylesheets/scheduling.scss */
#calendar_schedule .fc-resource-warning-pill, #calendar_unit .fc-resource-warning-pill, #calendar_location_schedule .fc-resource-warning-pill {
  position: absolute;
  top: 7px;
  left: 29px;
  color: white;
  height: 15px;
  width: 15px;
  border-radius: 5px;
  font-size: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #D9534F;
  box-shadow: 0 0 2px white;
}

/* line 405, app/assets/stylesheets/scheduling.scss */
#calendar_schedule .fc-resource-warning-pill span, #calendar_unit .fc-resource-warning-pill span, #calendar_location_schedule .fc-resource-warning-pill span {
  pointer-events: none;
}

/* line 410, app/assets/stylesheets/scheduling.scss */
#calendar_schedule .fc-button, #calendar_unit .fc-button, #calendar_location_schedule .fc-button {
  background: none;
  border-color: #d1d1d1d1;
  color: #333;
  line-height: 17px;
}

/* line 416, app/assets/stylesheets/scheduling.scss */
#calendar_schedule .fc-button span, #calendar_unit .fc-button span, #calendar_location_schedule .fc-button span {
  font-size: 1.2em;
  color: #8f8f8f;
}

/* line 422, app/assets/stylesheets/scheduling.scss */
#calendar_schedule .fc-button.fc-button-active, #calendar_unit .fc-button.fc-button-active, #calendar_location_schedule .fc-button.fc-button-active {
  background: #e9ecef;
  border-color: #bfc6ce;
}

/* line 427, app/assets/stylesheets/scheduling.scss */
#calendar_schedule .fc-header-toolbar, #calendar_unit .fc-header-toolbar, #calendar_location_schedule .fc-header-toolbar {
  position: sticky;
  top: var(--schedule-navbar-height);
  z-index: 1025;
  background: #fff;
  margin-bottom: 0;
  padding-top: 8px;
  padding-bottom: 18px;
}

/* line 437, app/assets/stylesheets/scheduling.scss */
#calendar_schedule .fc-scrollgrid-section-header, #calendar_unit .fc-scrollgrid-section-header, #calendar_location_schedule .fc-scrollgrid-section-header {
  position: sticky;
  top: calc(var(--schedule-navbar-height) + var(--schedule-fc-toolbar-height));
  z-index: 1020;
  background: #fff;
}

/* line 448, app/assets/stylesheets/scheduling.scss */
#calendar_unit .fc-header-toolbar,
.location-schedule-calendar-view #calendar_location_schedule .fc-header-toolbar {
  position: static !important;
}

/* line 452, app/assets/stylesheets/scheduling.scss */
#calendar_unit .fc-scrollgrid-section-header,
.location-schedule-calendar-view #calendar_location_schedule .fc-scrollgrid-section-header {
  position: static !important;
}

/* line 456, app/assets/stylesheets/scheduling.scss */
#calendar_unit .fc-sticky,
.location-schedule-calendar-view #calendar_location_schedule .fc-sticky {
  position: static !important;
}

/* line 462, app/assets/stylesheets/scheduling.scss */
#calendar_unit .fc-scrollgrid-section-sticky {
  position: static !important;
  top: auto !important;
}

/* line 467, app/assets/stylesheets/scheduling.scss */
#calendar_unit .fc-scrollgrid-section-sticky > * {
  position: static !important;
  top: auto !important;
}

/* line 473, app/assets/stylesheets/scheduling.scss */
.fc-legend-pill {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: white;
  height: 15px;
  width: 15px;
  border-radius: 5px;
  font-size: 12px;
  vertical-align: middle;
}

/* line 484, app/assets/stylesheets/scheduling.scss */
.fc-legend-pill.fc-legend-pill--warning {
  background-color: #D9534F;
}

/* line 490, app/assets/stylesheets/scheduling.scss */
#calendar_location_schedule .fc-daygrid-day {
  position: relative;
}

/* line 494, app/assets/stylesheets/scheduling.scss */
#calendar_location_schedule .fc-outside-schedule-pill {
  position: absolute;
  bottom: 2px;
  right: 2px;
  color: white;
  height: 15px;
  width: 15px;
  border-radius: 5px;
  font-size: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #D9534F;
  box-shadow: 0 0 2px white;
}

/* line 509, app/assets/stylesheets/scheduling.scss */
#calendar_location_schedule .fc-outside-schedule-pill span {
  pointer-events: none;
}

/* line 514, app/assets/stylesheets/scheduling.scss */
#calendar_location_schedule .fc-other-schedule-booking {
  opacity: 0.4;
  pointer-events: auto;
  cursor: pointer;
}

/* line 523, app/assets/stylesheets/scheduling.scss */
.schedule-settings-form .scheduling-settings-name-and-description-inputs label {
  display: block;
}

/* line 526, app/assets/stylesheets/scheduling.scss */
.schedule-settings-form .scheduling-settings-name-and-description-inputs input {
  width: 240px;
}

/* line 531, app/assets/stylesheets/scheduling.scss */
.schedule-settings-form .helper-text {
  font-size: 1rem;
  margin-top: 0.4rem;
}

/* line 538, app/assets/stylesheets/scheduling.scss */
.frequency_pattern_form input[type="radio"], .frequency_pattern_form input[type="checkbox"] {
  margin-right: 0;
}

/* line 542, app/assets/stylesheets/scheduling.scss */
.frequency_pattern_form label[for="frequency_set"], .frequency_pattern_form label[for="bank_holidays_bookable"], .frequency_pattern_form label[for="yes_radio"] {
  margin-right: 1rem;
}

/* line 546, app/assets/stylesheets/scheduling.scss */
.frequency_pattern_form #days_per_period {
  width: 5rem;
}

/* line 550, app/assets/stylesheets/scheduling.scss */
.frequency_pattern_form #period {
  height: 26px;
}

/* line 554, app/assets/stylesheets/scheduling.scss */
.frequency_pattern_form .frequency-pattern-day-checkbox {
  margin-right: 1rem;
}

@media (min-width: 500px) {
  /* line 554, app/assets/stylesheets/scheduling.scss */
  .frequency_pattern_form .frequency-pattern-day-checkbox {
    margin-right: 2rem;
  }
}

/* line 562, app/assets/stylesheets/scheduling.scss */
.frequency_pattern_form .frequency-pattern-options {
  display: block;
}

@media (min-width: 500px) {
  /* line 562, app/assets/stylesheets/scheduling.scss */
  .frequency_pattern_form .frequency-pattern-options {
    display: inline-block;
  }
}

/* line 571, app/assets/stylesheets/scheduling.scss */
#create-new-location-schedule-view .d-flex, #create-new-booking-view .d-flex, #create-new-constraint-view .d-flex {
  display: block;
}

@media (min-width: 1300px) {
  /* line 571, app/assets/stylesheets/scheduling.scss */
  #create-new-location-schedule-view .d-flex, #create-new-booking-view .d-flex, #create-new-constraint-view .d-flex {
    display: flex;
  }
}

/* line 576, app/assets/stylesheets/scheduling.scss */
#create-new-location-schedule-view .d-flex .w-1\/4, #create-new-location-schedule-view .d-flex .w-1\/5, #create-new-location-schedule-view .d-flex .w-1\/6, #create-new-booking-view .d-flex .w-1\/4, #create-new-booking-view .d-flex .w-1\/5, #create-new-booking-view .d-flex .w-1\/6, #create-new-constraint-view .d-flex .w-1\/4, #create-new-constraint-view .d-flex .w-1\/5, #create-new-constraint-view .d-flex .w-1\/6 {
  width: 300px;
  margin-bottom: 1rem;
}

@media (min-width: 1300px) {
  /* line 576, app/assets/stylesheets/scheduling.scss */
  #create-new-location-schedule-view .d-flex .w-1\/4, #create-new-location-schedule-view .d-flex .w-1\/5, #create-new-location-schedule-view .d-flex .w-1\/6, #create-new-booking-view .d-flex .w-1\/4, #create-new-booking-view .d-flex .w-1\/5, #create-new-booking-view .d-flex .w-1\/6, #create-new-constraint-view .d-flex .w-1\/4, #create-new-constraint-view .d-flex .w-1\/5, #create-new-constraint-view .d-flex .w-1\/6 {
    margin-bottom: 0;
  }
}

@media (min-width: 1300px) {
  /* line 583, app/assets/stylesheets/scheduling.scss */
  #create-new-location-schedule-view .d-flex .w-1\/4, #create-new-booking-view .d-flex .w-1\/4, #create-new-constraint-view .d-flex .w-1\/4 {
    width: calc(25% - 1.2rem);
  }
}

@media (min-width: 1300px) {
  /* line 588, app/assets/stylesheets/scheduling.scss */
  #create-new-location-schedule-view .d-flex .w-1\/5, #create-new-booking-view .d-flex .w-1\/5, #create-new-constraint-view .d-flex .w-1\/5 {
    width: calc(20% - 1.2rem);
  }
}

@media (min-width: 1300px) {
  /* line 593, app/assets/stylesheets/scheduling.scss */
  #create-new-location-schedule-view .d-flex .w-1\/6, #create-new-booking-view .d-flex .w-1\/6, #create-new-constraint-view .d-flex .w-1\/6 {
    width: calc(16.66666666666666% - 1.2rem);
  }
}

/* line 598, app/assets/stylesheets/scheduling.scss */
#create-new-location-schedule-view .d-flex label, #create-new-booking-view .d-flex label, #create-new-constraint-view .d-flex label {
  width: 80px;
}

/* line 603, app/assets/stylesheets/scheduling.scss */
#create-new-location-schedule-view .create-new-location-schedule-view-pads-container, #create-new-booking-view .create-new-location-schedule-view-pads-container, #create-new-constraint-view .create-new-location-schedule-view-pads-container {
  display: none;
}

@media (min-width: 768px) {
  /* line 610, app/assets/stylesheets/scheduling.scss */
  #edit_unit_scheduling_section div.col-sm-3 {
    width: 75%;
  }
}

@media (min-width: 1200px) {
  /* line 615, app/assets/stylesheets/scheduling.scss */
  #edit_unit_scheduling_section div.col-sm-3 {
    width: 25%;
  }
}

/* line 622, app/assets/stylesheets/scheduling.scss */
#edit_location_scheduling_section_address_area > div:not(:first-child) {
  margin-top: 2rem;
}

@media (min-width: 1200px) {
  /* line 621, app/assets/stylesheets/scheduling.scss */
  #edit_location_scheduling_section_address_area {
    display: flex;
    flex-direction: row;
    row-gap: 1rem;
    justify-content: space-between;
  }
  /* line 632, app/assets/stylesheets/scheduling.scss */
  #edit_location_scheduling_section_address_area > div {
    width: calc(50% - 0.5rem);
  }
  /* line 635, app/assets/stylesheets/scheduling.scss */
  #edit_location_scheduling_section_address_area > div:not(:first-child) {
    margin-top: 0;
  }
}

@media (min-width: 1200px) {
  /* line 643, app/assets/stylesheets/scheduling.scss */
  .constraints_or_unit_properties_matrix_checkbox_area.constraints_or_unit_properties_matrix_checkbox_area_wells {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    row-gap: 1rem;
    justify-content: space-between;
  }
  /* line 651, app/assets/stylesheets/scheduling.scss */
  .constraints_or_unit_properties_matrix_checkbox_area.constraints_or_unit_properties_matrix_checkbox_area_wells div {
    width: calc(50% - 0.5rem);
  }
}

/* line 657, app/assets/stylesheets/scheduling.scss */
.constraints_or_unit_properties_matrix_checkbox_area .constraints_or_unit_properties_matrix_checkbox_area_grid_container {
  display: grid;
  grid-template-columns: max-content auto;
}

/* line 661, app/assets/stylesheets/scheduling.scss */
.constraints_or_unit_properties_matrix_checkbox_area .constraints_or_unit_properties_matrix_checkbox_area_grid_container .constraints_or_unit_properties_matrix_checkbox_area_grid_container_title_div {
  align-self: center;
}

/* line 663, app/assets/stylesheets/scheduling.scss */
.constraints_or_unit_properties_matrix_checkbox_area .constraints_or_unit_properties_matrix_checkbox_area_grid_container .constraints_or_unit_properties_matrix_checkbox_area_grid_container_title_div h5 {
  margin-bottom: 5px;
}

/* line 668, app/assets/stylesheets/scheduling.scss */
.constraints_or_unit_properties_matrix_checkbox_area .constraints_or_unit_properties_matrix_checkbox_area_grid_container span {
  display: block;
}

@media (min-width: 1000px) {
  /* line 668, app/assets/stylesheets/scheduling.scss */
  .constraints_or_unit_properties_matrix_checkbox_area .constraints_or_unit_properties_matrix_checkbox_area_grid_container span {
    display: inline-block;
  }
}

/* line 676, app/assets/stylesheets/scheduling.scss */
.constraints_or_unit_properties_matrix_checkbox_area span {
  display: inline-block;
}

/* line 680, app/assets/stylesheets/scheduling.scss */
.constraints_or_unit_properties_matrix_checkbox_area label {
  font-weight: normal;
  transform: translate(0, -1px);
}

/* line 687, app/assets/stylesheets/scheduling.scss */
#create-new-location-schedule-view .create-new-location-schedule-view-frequency-pattern-container {
  position: relative;
}

/* line 689, app/assets/stylesheets/scheduling.scss */
#create-new-location-schedule-view .create-new-location-schedule-view-frequency-pattern-container .create-new-location-schedule-view-frequency-pattern-description {
  display: none;
  line-height: 14px;
  margin-top: 3px;
}

@media (min-width: 1300px) {
  /* line 689, app/assets/stylesheets/scheduling.scss */
  #create-new-location-schedule-view .create-new-location-schedule-view-frequency-pattern-container .create-new-location-schedule-view-frequency-pattern-description {
    position: absolute;
  }
}

/* line 699, app/assets/stylesheets/scheduling.scss */
#create-new-location-schedule-view .create-new-location-schedule-view-frequency-pattern-description-space-giver {
  width: 100%;
  height: 0;
  display: none;
}

@media (min-width: 1300px) {
  /* line 699, app/assets/stylesheets/scheduling.scss */
  #create-new-location-schedule-view .create-new-location-schedule-view-frequency-pattern-description-space-giver {
    display: block;
  }
}

/* line 708, app/assets/stylesheets/scheduling.scss */
#create-new-location-schedule-view .create-new-location-schedule-view-location-and-pads-matrix-container {
  display: none;
  border-bottom: 1px solid #e3e3e3;
}

@media (min-width: 1300px) {
  /* line 712, app/assets/stylesheets/scheduling.scss */
  #create-new-location-schedule-view .create-new-location-schedule-view-location-and-pads-matrix-container span {
    margin-right: 4rem;
    margin-bottom: 4px;
  }
}

/* line 718, app/assets/stylesheets/scheduling.scss */
#create-new-location-schedule-view .create-new-location-schedule-view-location-and-pads-matrix-container a {
  width: fit-content;
}

/* line 721, app/assets/stylesheets/scheduling.scss */
#create-new-location-schedule-view .create-new-location-schedule-view-location-and-pads-matrix-container a:not(.d-none) {
  display: block;
}

@media (min-width: 1300px) {
  /* line 721, app/assets/stylesheets/scheduling.scss */
  #create-new-location-schedule-view .create-new-location-schedule-view-location-and-pads-matrix-container a:not(.d-none) {
    display: inline-block;
  }
}

/* line 731, app/assets/stylesheets/scheduling.scss */
#create-new-location-schedule-view .unit-search-results-constraint-attribute-container {
  color: #777777;
}

/* line 736, app/assets/stylesheets/scheduling.scss */
.unit-detail-match {
  color: #28A746;
  font-weight: bold;
}

/* line 741, app/assets/stylesheets/scheduling.scss */
.unit-detail-mismatch {
  color: #DC3545;
  font-weight: bold;
}

/* line 746, app/assets/stylesheets/scheduling.scss */
.unit-distance-low, .billed-yes {
  color: #28A746;
}

/* line 750, app/assets/stylesheets/scheduling.scss */
.unit-distance-medium {
  color: #D88C02;
}

/* line 754, app/assets/stylesheets/scheduling.scss */
.unit-distance-long, .billed-no {
  color: #DC3545;
}

@media (min-width: 600px) {
  /* line 758, app/assets/stylesheets/scheduling.scss */
  .unit-with-suggested-bookings-view-top-line-container {
    display: flex;
    flex-direction: row;
  }
}

/* line 764, app/assets/stylesheets/scheduling.scss */
.unit-with-suggested-bookings-view-top-line-container > div {
  width: 100%;
}

@media (min-width: 600px) {
  /* line 764, app/assets/stylesheets/scheduling.scss */
  .unit-with-suggested-bookings-view-top-line-container > div {
    width: calc(50% - 10px);
  }
}

/* line 772, app/assets/stylesheets/scheduling.scss */
.unit-with-suggested-bookings-view-location-container {
  margin-right: 20px;
}

@media (min-width: 768px) {
  /* line 772, app/assets/stylesheets/scheduling.scss */
  .unit-with-suggested-bookings-view-location-container {
    display: flex;
    flex-direction: row;
  }
}

/* line 780, app/assets/stylesheets/scheduling.scss */
.unit-with-suggested-bookings-view-location-address-container {
  width: calc(50% - 20px);
  margin-right: 20px;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  /* line 780, app/assets/stylesheets/scheduling.scss */
  .unit-with-suggested-bookings-view-location-address-container {
    margin-bottom: 0;
  }
}

/* line 789, app/assets/stylesheets/scheduling.scss */
.unit-with-suggested-bookings-view-map-container {
  width: 100%;
}

@media (min-width: 768px) {
  /* line 789, app/assets/stylesheets/scheduling.scss */
  .unit-with-suggested-bookings-view-map-container {
    width: 50%;
  }
}

/* line 794, app/assets/stylesheets/scheduling.scss */
.unit-with-suggested-bookings-view-map-container #unit_map {
  min-height: 150px;
}

@media (min-width: 768px) {
  /* line 794, app/assets/stylesheets/scheduling.scss */
  .unit-with-suggested-bookings-view-map-container #unit_map {
    height: 100%;
  }
}

/* line 802, app/assets/stylesheets/scheduling.scss */
.unit-with-suggested-bookings-view-constraints-container {
  margin-top: 20px;
  color: #777777;
}

@media (min-width: 600px) {
  /* line 802, app/assets/stylesheets/scheduling.scss */
  .unit-with-suggested-bookings-view-constraints-container {
    margin-top: 0;
  }
}

/* line 809, app/assets/stylesheets/scheduling.scss */
.unit-with-suggested-bookings-view-constraints-container h4 {
  color: #000000;
}

/* line 813, app/assets/stylesheets/scheduling.scss */
.unit-with-suggested-bookings-view-constraints-container strong {
  color: #000000;
}

/* line 818, app/assets/stylesheets/scheduling.scss */
.suggested-bookings-save-button-well {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
}

/* line 825, app/assets/stylesheets/scheduling.scss */
.suggested-bookings-save-disabled-explanation {
  display: inline-block;
  color: #DC3545;
  margin: 7px 0;
}

/* line 831, app/assets/stylesheets/scheduling.scss */
.fc-event {
  border-width: 2px !important;
  border-style: solid !important;
  border-color: transparent !important;
}

/* line 836, app/assets/stylesheets/scheduling.scss */
.fc-event.fc-suggested-or-new-event {
  border-color: black !important;
  position: relative;
}

/* line 842, app/assets/stylesheets/scheduling.scss */
.fc-new-event-tag {
  position: absolute;
  z-index: 10;
  width: 32px;
  font-size: 10px;
  text-align: center;
  border-color: black;
  border-style: solid;
  border-width: 2px;
  height: 32px;
  border-radius: 100%;
  bottom: -10px;
  right: calc(50% - 16px);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  background-color: #f8d24a;
  color: black;
}

/* line 864, app/assets/stylesheets/scheduling.scss */
.location-schedule-unit-search-view .fc-event:not(.fc-suggested-or-new-event) {
  opacity: 0.6;
  transition: opacity 0.3s;
}

/* line 867, app/assets/stylesheets/scheduling.scss */
.location-schedule-unit-search-view .fc-event:not(.fc-suggested-or-new-event):hover {
  opacity: 1;
}

/* line 874, app/assets/stylesheets/scheduling.scss */
.location-schedules-list-view .satisfaction-pill {
  min-width: 130px;
  text-align: center;
  height: auto;
}

/* line 881, app/assets/stylesheets/scheduling.scss */
.ts-wrapper .ts-control > .item {
  background: #EFEFEF;
  padding: 4px 10px;
  border-radius: 4px;
}

/* line 887, app/assets/stylesheets/scheduling.scss */
.ts-dropdown {
  z-index: 2000;
}

/* line 891, app/assets/stylesheets/scheduling.scss */
.scheduling-constraint-attributes-in-use-indicator {
  height: 34px;
  margin-right: 2rem;
  padding-top: 6px;
  width: 77px;
}

/* line 898, app/assets/stylesheets/scheduling.scss */
.scheduling-unit-property-attributes-in-use-indicator {
  height: 34px;
  margin-right: 2rem;
  padding-top: 6px;
  width: 77px;
}

@media (max-width: 1000px) {
  /* line 905, app/assets/stylesheets/scheduling.scss */
  .scheduling-multiple-booking-details-table {
    overflow-x: scroll;
    min-width: 1000px;
  }
}

/* line 912, app/assets/stylesheets/scheduling.scss */
#scheduling-booking-details-modal-content .modal-footer .btn + .btn {
  margin-left: 0;
}

/* line 914, app/assets/stylesheets/scheduling.scss */
#scheduling-booking-details-modal-content .modal-footer .btn + .btn:last-of-type {
  margin-left: 6px;
}

/* line 919, app/assets/stylesheets/scheduling.scss */
.hint {
  color: white;
  background-color: #0070c0;
  height: 15px;
  width: 15px;
  border-radius: 5px;
  font-size: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* line 930, app/assets/stylesheets/scheduling.scss */
.hint span {
  pointer-events: none;
}

/* line 935, app/assets/stylesheets/scheduling.scss */
.fc-timeline-event:not(.fc-event-start)::before,
.fc-timeline-event:not(.fc-event-start)::after,
.fc-timeline-event:not(.fc-event-end)::before,
.fc-timeline-event:not(.fc-event-end)::after {
  display: none !important;
  border: none !important;
  content: none !important;
}

/* line 944, app/assets/stylesheets/scheduling.scss */
.fc-event.fc-event-continues-from-prev .fc-event-main::before {
  content: "◀";
  position: absolute;
  left: 4px;
  top: 80%;
  transform: translateY(-50%);
  font-size: 10px;
  color: white;
  z-index: 10;
}

/* line 955, app/assets/stylesheets/scheduling.scss */
.fc-event.fc-event-continues-to-next .fc-event-main::after {
  content: "▶";
  position: absolute;
  right: 4px;
  top: 80%;
  transform: translateY(-50%);
  font-size: 10px;
  color: white;
  z-index: 10;
}

/* line 967, app/assets/stylesheets/scheduling.scss */
.loading_placeholder_rolling_elipsis span {
  opacity: 0;
  display: inline-block;
  animation-delay: 0s;
}

/* line 972, app/assets/stylesheets/scheduling.scss */
.loading_placeholder_rolling_elipsis span:nth-child(1) {
  animation: fadeIn1 2s infinite;
}

/* line 975, app/assets/stylesheets/scheduling.scss */
.loading_placeholder_rolling_elipsis span:nth-child(2) {
  animation: fadeIn2 2s infinite;
}

/* line 978, app/assets/stylesheets/scheduling.scss */
.loading_placeholder_rolling_elipsis span:nth-child(3) {
  animation: fadeIn3 2s infinite;
}

@keyframes fadeIn1 {
  0% {
    opacity: 0;
  }
  24% {
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn2 {
  0% {
    opacity: 0;
  }
  49% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn3 {
  0% {
    opacity: 0;
  }
  74% {
    opacity: 0;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

/* line 1004, app/assets/stylesheets/scheduling.scss */
.loading-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: 1026;
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding-top: 125px;
}

/* line 1017, app/assets/stylesheets/scheduling.scss */
.loading-overlay .loading-overlay-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* line 1024, app/assets/stylesheets/scheduling.scss */
.loading-overlay .loading-spinner {
  display: inline-block;
  width: 100px;
  height: 100px;
}

/* line 1030, app/assets/stylesheets/scheduling.scss */
.loading-overlay .loading-spinner::after {
  content: " ";
  display: block;
  width: 95px;
  height: 95px;
  margin: 3px;
  border-radius: 50%;
  border: 5px solid #284275;
  border-color: #284275 transparent #284275 transparent;
  animation: loading-spinner-dual-ring 1.2s linear infinite;
}

@keyframes loading-spinner-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* line 1051, app/assets/stylesheets/scheduling.scss */
.loading-overlay p {
  display: none;
}

/* line 1056, app/assets/stylesheets/scheduling.scss */
#calendar_top_level_container {
  position: relative;
}

/* line 1060, app/assets/stylesheets/scheduling.scss */
.fc-timeline-slot-lane--date-loading {
  animation: date-loading-pulse 1.5s ease-in-out infinite;
  background-color: #ffff008a;
}

@keyframes date-loading-pulse {
  0%, 100% {
    background-color: transparent;
  }
  50% {
    background-color: #ffff008a;
  }
}
/* line 3, app/assets/stylesheets/dashboard.css.scss */
.company_list_container .company_list {
  width: 100%;
  column-count: 4;
  column-width: auto;
}

/* line 8, app/assets/stylesheets/dashboard.css.scss */
.company_list_container .company_list .company {
  display: inline-block;
  width: 100%;
  margin-bottom: 5px;
}

/* line 12, app/assets/stylesheets/dashboard.css.scss */
.company_list_container .company_list .company .colour_circle {
  float: left;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  color: #fff;
  padding-top: 4px;
  text-align: center;
  font-size: 12px;
}

/* line 22, app/assets/stylesheets/dashboard.css.scss */
.company_list_container .company_list .company .company_name {
  display: inline-block;
  margin: 2px 0 0 12px;
}

/* line 32, app/assets/stylesheets/dashboard.css.scss */
.fc-event {
  background: none;
  border: none;
  color: #333;
  margin-bottom: 5px;
}

/* line 33, app/assets/stylesheets/dashboard.css.scss */
.fc-event:hover {
  color: #3fa6e2;
}

/* line 34, app/assets/stylesheets/dashboard.css.scss */
.fc-event:hover span.assigned_engineer {
  color: #3fa6e2;
}

/* line 35, app/assets/stylesheets/dashboard.css.scss */
.fc-event.orange .fc-title {
  color: #ffa142;
}

/* line 36, app/assets/stylesheets/dashboard.css.scss */
.fc-event.red .fc-title {
  color: #ff0000;
  font-weight: bold;
}

/* line 37, app/assets/stylesheets/dashboard.css.scss */
.fc-event.green .fc-title {
  color: #07cc0f;
}

/* line 39, app/assets/stylesheets/dashboard.css.scss */
.fc-title {
  float: left;
  margin-top: -2px;
}

/* line 40, app/assets/stylesheets/dashboard.css.scss */
span.assigned_engineer {
  color: #bdbdbd;
  font-size: 11px;
  float: left;
  margin-top: -3px;
  font-weight: normal;
}

/* line 41, app/assets/stylesheets/dashboard.css.scss */
#calendar .colour_circle {
  float: left;
  width: 23px;
  height: 18px;
  border-radius: 50%;
  display: inline-block;
  margin: 0 5px 0 0;
  text-align: center;
  color: #fff;
  padding-top: 5px;
}

/* line 42, app/assets/stylesheets/dashboard.css.scss */
#priority_calendar .colour_circle {
  float: left;
  width: 23px;
  height: 18px;
  border-radius: 50%;
  display: inline-block;
  margin: 0 5px 0 0;
  text-align: center;
  color: #fff;
  padding-top: 5px;
}

/* line 43, app/assets/stylesheets/dashboard.css.scss */
.fc-slats {
  display: none;
}

/* line 46, app/assets/stylesheets/dashboard.css.scss */
.new-view .stat-display {
  text-align: center;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 10px);
}

/* line 54, app/assets/stylesheets/dashboard.css.scss */
.new-view h3 {
  font-size: 1.3em;
}

/* line 58, app/assets/stylesheets/dashboard.css.scss */
.stat-display {
  font-size: 0.7em;
  /* 16px */
  line-height: 1em;
  font-weight: 500;
}

/* line 62, app/assets/stylesheets/dashboard.css.scss */
.stat-display a {
  color: white;
}

/* line 66, app/assets/stylesheets/dashboard.css.scss */
.stat-display a span {
  color: white;
  font-size: 3.125em;
  /* 50px / 16px */
  font-weight: 500;
}

/* line 71, app/assets/stylesheets/dashboard.css.scss */
.stat-display .overdue {
  margin-top: 0.5em;
}

/* line 73, app/assets/stylesheets/dashboard.css.scss */
.stat-display .overdue a span {
  font-size: 1.75em;
  /* 28px / 16px */
  font-weight: 500;
}

/* line 79, app/assets/stylesheets/dashboard.css.scss */
.stat-display .acceptable {
  margin-top: 2.5em;
  /* 30px / 16px */
}

/* line 81, app/assets/stylesheets/dashboard.css.scss */
.stat-display .acceptable a span {
  line-height: 1em;
  font-size: 3em;
  /* 40px / 16px */
  font-weight: 500;
}

/* line 88, app/assets/stylesheets/dashboard.css.scss */
.stat-display .unscheduled {
  margin-bottom: 1.25em;
  /* 20px / 16px */
  font-size: 0.875em;
  /* 14px / 16px */
}

/* line 91, app/assets/stylesheets/dashboard.css.scss */
.stat-display .unscheduled a span {
  font-size: 1.125em;
  /* 16px / 16px */
  font-weight: 500;
}

/* line 97, app/assets/stylesheets/dashboard.css.scss */
.stat-display .atRisk {
  margin-top: 3.7em;
  /* 35px / 16px */
}

/* line 99, app/assets/stylesheets/dashboard.css.scss */
.stat-display .atRisk a span {
  font-size: 2em;
  /* 38px / 16px */
}

/* line 108, app/assets/stylesheets/dashboard.css.scss */
.risk-indicator {
  display: inline-block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  font-weight: bold;
  color: white;
}

/* line 119, app/assets/stylesheets/dashboard.css.scss */
.risk-indicator.green {
  background-color: green;
}

/* line 123, app/assets/stylesheets/dashboard.css.scss */
.risk-indicator.amber {
  background-color: orange;
}

/* line 127, app/assets/stylesheets/dashboard.css.scss */
.risk-indicator.red {
  background-color: red;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}

/* line 143, app/assets/stylesheets/dashboard.css.scss */
#overdue_A_value, #acceptable_A_value, #at_risk_A_value, #unassigned_A_value, #unscheduled_A_value,
#overdue_B_value, #acceptable_B_value, #at_risk_B_value, #unassigned_B_value, #unscheduled_B_value,
#overdue_C_value, #acceptable_C_value, #at_risk_C_value, #unassigned_C_value, #unscheduled_C_value,
#overdue_D_value, #acceptable_D_value, #at_risk_D_value, #unassigned_D_value, #unscheduled_D_value {
  font-weight: bold;
}

/* line 150, app/assets/stylesheets/dashboard.css.scss */
.bounce-animation {
  animation: bounce 1s;
}

/* line 154, app/assets/stylesheets/dashboard.css.scss */
.dials {
  margin-bottom: 20px;
}
/* line 1, app/assets/stylesheets/dashboard_call_center.css.scss */
.call_center_dash_container {
  display: flex;
  flex-wrap: wrap;
}

/* line 5, app/assets/stylesheets/dashboard_call_center.css.scss */
.call_center_dash_container .call_center_data_container {
  display: flex;
}

/* line 7, app/assets/stylesheets/dashboard_call_center.css.scss */
.call_center_dash_container .call_center_data_container .well {
  width: 100%;
}

/* line 14, app/assets/stylesheets/dashboard_call_center.css.scss */
#call_center_updates .update_container {
  width: 19%;
  display: inline-block;
  padding: 0.25em;
}

/* line 18, app/assets/stylesheets/dashboard_call_center.css.scss */
#call_center_updates .update_container .progress_section {
  position: relative;
  display: inline-block;
  width: 100%;
  aspect-ratio: 1;
}

/* line 23, app/assets/stylesheets/dashboard_call_center.css.scss */
#call_center_updates .update_container .progress_section .bg_circle {
  position: absolute;
  top: 3px;
  left: 5px;
  width: 90%;
  height: 90%;
  border-radius: 50%;
}

/* line 31, app/assets/stylesheets/dashboard_call_center.css.scss */
#call_center_updates .update_container .progress_section .text_container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
}

/* line 39, app/assets/stylesheets/dashboard_call_center.css.scss */
#call_center_updates .update_container .progress_section .text_container p {
  margin: 0;
  font-size: 1.5em;
}

/* line 45, app/assets/stylesheets/dashboard_call_center.css.scss */
#call_center_updates .update_container.two_col {
  width: 49%;
}

/* line 52, app/assets/stylesheets/dashboard_call_center.css.scss */
.call_center_speech_bubbles .speech_bubble_container .svg-container {
  position: relative;
  display: inline-block;
  width: 100%;
  aspect-ratio: 1;
}

/* line 57, app/assets/stylesheets/dashboard_call_center.css.scss */
.call_center_speech_bubbles .speech_bubble_container .svg-container .bg_square {
  position: absolute;
  top: 0.3em;
  left: 0.25em;
  width: 90%;
  height: 64%;
  border-radius: 10%;
}

/* line 65, app/assets/stylesheets/dashboard_call_center.css.scss */
.call_center_speech_bubbles .speech_bubble_container .svg-container .text_container {
  position: absolute;
  top: 35%;
  left: 45%;
  transform: translate(-50%, -50%);
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
}

/* line 73, app/assets/stylesheets/dashboard_call_center.css.scss */
.call_center_speech_bubbles .speech_bubble_container .svg-container .text_container p {
  margin: 0;
  font-size: 1.5em;
}

/* line 83, app/assets/stylesheets/dashboard_call_center.css.scss */
#call_center_escalations .escalation_container .svg-container {
  position: relative;
  display: inline-block;
  width: 100%;
  aspect-ratio: 1;
}

/* line 88, app/assets/stylesheets/dashboard_call_center.css.scss */
#call_center_escalations .escalation_container .svg-container .bg_square {
  position: absolute;
  top: 0.3em;
  left: 0.25em;
  width: 90%;
  height: 64%;
  border-radius: 10%;
}

/* line 96, app/assets/stylesheets/dashboard_call_center.css.scss */
#call_center_escalations .escalation_container .svg-container .text_container {
  position: absolute;
  top: 35%;
  left: 45%;
  transform: translate(-50%, -50%);
  font-size: 1rem;
  font-weight: bold;
  color: white;
}

/* line 104, app/assets/stylesheets/dashboard_call_center.css.scss */
#call_center_escalations .escalation_container .svg-container .text_container p {
  margin: 0;
  font-size: 2em;
}

/* line 114, app/assets/stylesheets/dashboard_call_center.css.scss */
#call_center_downtime .downtime_container .svg-container {
  position: relative;
  display: inline-block;
  width: 100%;
  aspect-ratio: 1;
}

/* line 119, app/assets/stylesheets/dashboard_call_center.css.scss */
#call_center_downtime .downtime_container .svg-container .bg_square {
  position: absolute;
  top: 0.3em;
  left: 0.25em;
  width: 90%;
  height: 64%;
  border-radius: 10%;
}

/* line 127, app/assets/stylesheets/dashboard_call_center.css.scss */
#call_center_downtime .downtime_container .svg-container .text_container {
  position: absolute;
  top: 35%;
  left: 45%;
  transform: translate(-50%, -50%);
  font-size: 1rem;
  font-weight: bold;
  color: white;
}

/* line 135, app/assets/stylesheets/dashboard_call_center.css.scss */
#call_center_downtime .downtime_container .svg-container .text_container p {
  margin: 0;
  font-size: 1.5em;
}

/* line 145, app/assets/stylesheets/dashboard_call_center.css.scss */
#call_center_enquiries .enquiry_container .svg-container {
  position: relative;
  display: inline-block;
  width: 100%;
  aspect-ratio: 1;
}

/* line 150, app/assets/stylesheets/dashboard_call_center.css.scss */
#call_center_enquiries .enquiry_container .svg-container .bg_square {
  position: absolute;
  top: 0.3em;
  left: 0.25em;
  width: 90%;
  height: 64%;
  border-radius: 10%;
}

/* line 158, app/assets/stylesheets/dashboard_call_center.css.scss */
#call_center_enquiries .enquiry_container .svg-container .text_container {
  position: absolute;
  top: 35%;
  left: 45%;
  transform: translate(-50%, -50%);
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
}

/* line 166, app/assets/stylesheets/dashboard_call_center.css.scss */
#call_center_enquiries .enquiry_container .svg-container .text_container p {
  margin: 0;
  font-size: 1.5em;
}
/* Landscape phones and down */
@media (max-width: 480px) {
  /* line 3, app/assets/stylesheets/dashboard_responsive.css.scss */
  .company_list {
    column-count: 1;
    column-width: auto;
  }
}

/* Landscape phone to portrait tablet */
@media (min-width: 481px) and (max-width: 767px) {
  /* line 12, app/assets/stylesheets/dashboard_responsive.css.scss */
  .company_list {
    column-count: 2;
    column-width: auto;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  /* line 19, app/assets/stylesheets/dashboard_responsive.css.scss */
  .company_list {
    column-count: 3;
    column-width: auto;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  /* line 26, app/assets/stylesheets/dashboard_responsive.css.scss */
  .company_list {
    column-count: 3;
    column-width: auto;
  }
}

@media (min-width: 1200px) {
  /* line 33, app/assets/stylesheets/dashboard_responsive.css.scss */
  .company_list {
    column-count: 4;
    column-width: auto;
  }
}
/* line 1, app/assets/stylesheets/services.css.scss */
.fc-event.service {
  border: 2px solid #5aba59;
  border-radius: 16px;
  background: #5aba59;
  color: #fff;
}

/* line 8, app/assets/stylesheets/services.css.scss */
.fc-event.service .fc-content span.colour_circle {
  border: 2px solid #fff;
}

/* line 10, app/assets/stylesheets/services.css.scss */
.fc-event.service .fc-content .fc-title {
  margin: 0;
}

/* line 12, app/assets/stylesheets/services.css.scss */
.fc-event.service .fc-content .fc-title .assigned_engineer {
  color: #dcdcdc;
}

/* line 20, app/assets/stylesheets/services.css.scss */
.fc-event.service.job {
  background: #dedede;
  color: #333;
}

/* line 23, app/assets/stylesheets/services.css.scss */
.fc-event.service.job .fc-content .fc-title .assigned_engineer {
  color: #333;
}

/* line 25, app/assets/stylesheets/services.css.scss */
.fc-event.service.job.unrelated {
  background: #dedede;
  color: #333;
  border-color: #458bc9;
}

/* line 29, app/assets/stylesheets/services.css.scss */
.fc-event.service.job.unrelated .fc-content .fc-title .assigned_engineer {
  color: #333;
}
/* line 1, app/assets/stylesheets/pop_overs.scss */
a.pop_over_unit_data_btn,
a.pop_over_job_data_btn,
a.pop_over_job_change_data_btn {
  color: #000;
}

/* line 8, app/assets/stylesheets/pop_overs.scss */
.pop_over .pop_over_container {
  background: #000;
  border-radius: 10px;
  padding: 10px;
  position: absolute;
  display: none;
}

/* line 15, app/assets/stylesheets/pop_overs.scss */
.pop_over .pop_over_container .tab-content {
  height: 239px;
  overflow: scroll;
}

/* line 18, app/assets/stylesheets/pop_overs.scss */
.pop_over .pop_over_container .tab-content .tab-pane {
  padding: 1rem 0;
}

/* line 25, app/assets/stylesheets/pop_overs.scss */
.pop_over {
  position: relative;
}

/* line 27, app/assets/stylesheets/pop_overs.scss */
.pop_over .arrow {
  background: url(/assets/pop_over_arrow-7589d369560a44c14457add5573f4fcdb0f7993a730ef79c681d27d958aef039.png) no-repeat;
  width: 31px;
  height: 72px;
  position: absolute;
  left: -28px;
  top: 7px;
  background-size: 31px 72px;
}

/* line 36, app/assets/stylesheets/pop_overs.scss */
#unit_data_pop_over.pop_over {
  left: 200px;
}

/* line 38, app/assets/stylesheets/pop_overs.scss */
#unit_data_pop_over.pop_over .pop_over_container {
  width: calc(100vw - 300px);
}

/* line 42, app/assets/stylesheets/pop_overs.scss */
#job_data_pop_over.pop_over {
  left: 200px;
}

/* line 44, app/assets/stylesheets/pop_overs.scss */
#job_data_pop_over.pop_over .pop_over_container {
  width: calc(100vw - 300px);
}

/* line 48, app/assets/stylesheets/pop_overs.scss */
#job_change_data_pop_over.pop_over {
  left: 100px;
}

/* line 51, app/assets/stylesheets/pop_overs.scss */
#job_change_data_pop_over.pop_over .pop_over_container {
  width: calc(100vw - 400px);
  max-width: 1200px;
}

/* line 56, app/assets/stylesheets/pop_overs.scss */
.pop_over.absolute {
  position: absolute;
}

/* line 59, app/assets/stylesheets/pop_overs.scss */
.pop_over .loading_overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 9px;
}

/* line 66, app/assets/stylesheets/pop_overs.scss */
.pop_over .loading_overlay img.loading_icon {
  width: 26px;
  margin: 0 auto;
  display: block;
  top: 123px;
  position: absolute;
  left: 0;
  right: 0;
}

/* line 76, app/assets/stylesheets/pop_overs.scss */
.pop_over span.previous_job_status {
  display: inline-block;
  width: 25px;
  height: 60px;
  position: absolute;
  top: -8px;
  left: -8px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #b3b3b3;
}

/* line 85, app/assets/stylesheets/pop_overs.scss */
.pop_over span.previous_job_status.orange {
  background: #ffdeb0;
}

/* line 86, app/assets/stylesheets/pop_overs.scss */
.pop_over span.previous_job_status.green {
  background: #d3ecd4;
}

/* line 87, app/assets/stylesheets/pop_overs.scss */
.pop_over span.previous_job_status.blue {
  background: #addeeb;
}

/* line 88, app/assets/stylesheets/pop_overs.scss */
.pop_over span.previous_job_status.red1 {
  background: #ffcccc;
}

/* line 89, app/assets/stylesheets/pop_overs.scss */
.pop_over span.previous_job_status.red2 {
  background: #ffa3a3;
}

/* line 90, app/assets/stylesheets/pop_overs.scss */
.pop_over span.previous_job_status.red3 {
  background: #ff5b5b;
}

/* line 91, app/assets/stylesheets/pop_overs.scss */
.pop_over span.previous_job_status.red4 {
  background: #ff0000;
}

/* line 92, app/assets/stylesheets/pop_overs.scss */
.pop_over span.previous_job_status.grey {
  background: #b1b1b1;
}

/* line 94, app/assets/stylesheets/pop_overs.scss */
.pop_over .pop_over_container {
  width: 450px;
  height: 310px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 10px;
  position: absolute;
  display: none;
  z-index: 99999;
  box-shadow: 5px 5px 19px #888888;
}

/* line 105, app/assets/stylesheets/pop_overs.scss */
.pop_over .pop_over_container table.pop_over_table {
  color: #000;
}

/* line 110, app/assets/stylesheets/pop_overs.scss */
.pop_over .pop_over_container table.pop_over_table tr td {
  height: 23px;
}

/* line 112, app/assets/stylesheets/pop_overs.scss */
.pop_over .pop_over_container table.pop_over_table tr td span.status_colour {
  display: inline-block;
  width: 10px;
  height: 10px;
}

/* line 116, app/assets/stylesheets/pop_overs.scss */
.pop_over .pop_over_container table.pop_over_table tr td span.status_colour.orange {
  background: #ffdeb0;
}

/* line 117, app/assets/stylesheets/pop_overs.scss */
.pop_over .pop_over_container table.pop_over_table tr td span.status_colour.green {
  background: #d3ecd4;
}

/* line 118, app/assets/stylesheets/pop_overs.scss */
.pop_over .pop_over_container table.pop_over_table tr td span.status_colour.blue {
  background: #addeeb;
}

/* line 119, app/assets/stylesheets/pop_overs.scss */
.pop_over .pop_over_container table.pop_over_table tr td span.status_colour.red1 {
  background: #ffcccc;
}

/* line 120, app/assets/stylesheets/pop_overs.scss */
.pop_over .pop_over_container table.pop_over_table tr td span.status_colour.red2 {
  background: #ffa3a3;
}

/* line 121, app/assets/stylesheets/pop_overs.scss */
.pop_over .pop_over_container table.pop_over_table tr td span.status_colour.red3 {
  background: #ff5b5b;
}

/* line 122, app/assets/stylesheets/pop_overs.scss */
.pop_over .pop_over_container table.pop_over_table tr td span.status_colour.red4 {
  background: #ff0000;
}

/* line 127, app/assets/stylesheets/pop_overs.scss */
.pop_over .pop_over_container .tab-content {
  height: 239px;
  overflow: scroll;
}

/* line 130, app/assets/stylesheets/pop_overs.scss */
.pop_over .pop_over_container .tab-content .tab-pane {
  padding: 1rem 0;
}

/* line 134, app/assets/stylesheets/pop_overs.scss */
.pop_over .pop_over_container .data_area {
  height: 290px;
  overflow: scroll;
}

/* line 139, app/assets/stylesheets/pop_overs.scss */
.pop_over .service_warning {
  padding: 1rem;
  border-radius: 5px;
  margin-bottom: 1rem;
  border: 1px solid #ddd;
}

/* line 145, app/assets/stylesheets/pop_overs.scss */
.pop_over.with_previous_service_status {
  padding-left: 25px;
}
/* line 1, app/assets/stylesheets/data_popovers.scss */
.data_popover {
  position: absolute;
}

/* line 3, app/assets/stylesheets/data_popovers.scss */
.data_popover .arrow {
  background: url(/assets/pop_over_arrow-7589d369560a44c14457add5573f4fcdb0f7993a730ef79c681d27d958aef039.png) no-repeat;
  width: 31px;
  height: 72px;
  position: absolute;
  left: 118px;
  top: -51px;
  transform: rotate(90deg);
  background-size: 31px 72px;
}

/* line 14, app/assets/stylesheets/data_popovers.scss */
.data_popover .data_popover_container {
  width: 300px;
  height: 310px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 10px;
  position: absolute;
  z-index: 99999;
  box-shadow: 5px 5px 19px #888888;
}

/* line 25, app/assets/stylesheets/data_popovers.scss */
.data_popover .data_popover_container table.popover_table {
  color: #000;
}

/* line 30, app/assets/stylesheets/data_popovers.scss */
.data_popover .data_popover_container table.popover_table tr td {
  height: 23px;
}

/* line 32, app/assets/stylesheets/data_popovers.scss */
.data_popover .data_popover_container table.popover_table tr td span.status_colour {
  display: inline-block;
  width: 10px;
  height: 10px;
}

/* line 36, app/assets/stylesheets/data_popovers.scss */
.data_popover .data_popover_container table.popover_table tr td span.status_colour.orange {
  background: #ffdeb0;
}

/* line 37, app/assets/stylesheets/data_popovers.scss */
.data_popover .data_popover_container table.popover_table tr td span.status_colour.green {
  background: #d3ecd4;
}

/* line 38, app/assets/stylesheets/data_popovers.scss */
.data_popover .data_popover_container table.popover_table tr td span.status_colour.blue {
  background: #addeeb;
}

/* line 39, app/assets/stylesheets/data_popovers.scss */
.data_popover .data_popover_container table.popover_table tr td span.status_colour.red1 {
  background: #ffcccc;
}

/* line 40, app/assets/stylesheets/data_popovers.scss */
.data_popover .data_popover_container table.popover_table tr td span.status_colour.red2 {
  background: #ffa3a3;
}

/* line 41, app/assets/stylesheets/data_popovers.scss */
.data_popover .data_popover_container table.popover_table tr td span.status_colour.red3 {
  background: #ff5b5b;
}

/* line 42, app/assets/stylesheets/data_popovers.scss */
.data_popover .data_popover_container table.popover_table tr td span.status_colour.red4 {
  background: #ff0000;
}

/* line 47, app/assets/stylesheets/data_popovers.scss */
.data_popover .data_popover_container .data_popover_body {
  height: 290px;
  overflow: scroll;
}
/* line 1, app/assets/stylesheets/sidebar.scss */
.sidebar_container {
  width: 100%;
  height: 100vh;
  background: #33333380;
  position: fixed;
  top: 0;
  left: 0px;
  right: 0;
  bottom: 0;
  display: none;
  z-index: 99999;
}

/* line 12, app/assets/stylesheets/sidebar.scss */
.sidebar_container .sidebar {
  display: none;
  position: fixed;
  top: 0px;
  left: 0;
  height: calc(100vh);
  width: 300px;
  background: #274374;
  z-index: 99999;
}

/* line 21, app/assets/stylesheets/sidebar.scss */
.sidebar_container .sidebar .loader {
  display: inline-block;
  width: 100%;
  margin: 1rem 0;
}

/* line 26, app/assets/stylesheets/sidebar.scss */
.sidebar_container .sidebar .title_bar {
  width: 100%;
  height: 57px;
  padding: 10px 0px 0 10px;
  font-size: 16px;
  font-weight: bold;
  border-bottom: 1px solid #ddd;
  color: #fff;
  line-height: 17px;
}

/* line 35, app/assets/stylesheets/sidebar.scss */
.sidebar_container .sidebar .title_bar .title {
  display: inline-block;
  height: 57px;
  width: 266px;
  vertical-align: bottom;
}

/* line 41, app/assets/stylesheets/sidebar.scss */
.sidebar_container .sidebar .title_bar a#sidebar_close_btn {
  display: inline-block;
  text-indent: 999999px;
  overflow: hidden;
  width: 18px;
  height: 18px;
  background: url(/assets/close-51c4a33dfdcc866f60163b97cdfadcfbd81e1dfdd5d6ab9e4c93f8b39a57d4bf.png) no-repeat;
  float: right;
  margin: 0px 5px 0 0;
}

/* line 52, app/assets/stylesheets/sidebar.scss */
.sidebar_container .sidebar .sidebar_scroll {
  height: calc(100vh - 57px - 2rem);
  overflow: scroll;
}

/* line 55, app/assets/stylesheets/sidebar.scss */
.sidebar_container .sidebar .sidebar_scroll .sidebar_content {
  padding: 2rem 0 2rem 0;
}

/* line 57, app/assets/stylesheets/sidebar.scss */
.sidebar_container .sidebar .sidebar_scroll .sidebar_content p {
  padding-left: 2rem;
  padding-right: 2rem;
  color: #fff;
}

/* line 62, app/assets/stylesheets/sidebar.scss */
.sidebar_container .sidebar .sidebar_scroll .sidebar_content h2 {
  margin-top: 0;
}

/* line 63, app/assets/stylesheets/sidebar.scss */
.sidebar_container .sidebar .sidebar_scroll .sidebar_content .intro {
  margin-bottom: 2rem;
}

/* line 67, app/assets/stylesheets/sidebar.scss */
.sidebar_container .sidebar .sidebar_scroll .sidebar_content ul {
  list-style: none;
  padding-left: 0;
}

/* line 70, app/assets/stylesheets/sidebar.scss */
.sidebar_container .sidebar .sidebar_scroll .sidebar_content ul li {
  margin-bottom: 1rem;
}

/* line 72, app/assets/stylesheets/sidebar.scss */
.sidebar_container .sidebar .sidebar_scroll .sidebar_content ul li a {
  line-height: 17px;
  display: inline-block;
  width: 100%;
  color: #fff;
  padding: 1rem 20px 1rem 2rem;
  background: url(/assets/arrow_icon_white-a81e5a9768b4264827e8958a27257c2623bb554ef16382c1b9e0b850c4265b9a.svg) no-repeat right;
  background-position: 275px;
  background-size: 20px;
  text-decoration: none;
}

/* line 82, app/assets/stylesheets/sidebar.scss */
.sidebar_container .sidebar .sidebar_scroll .sidebar_content ul li a:hover {
  background: url(/assets/arrow_icon_white-a81e5a9768b4264827e8958a27257c2623bb554ef16382c1b9e0b850c4265b9a.svg) #3c5e9a no-repeat right;
  background-size: 20px;
  background-position: 275px;
}
/* line 2, app/assets/stylesheets/sortable.scss */
ul.sortable_header,
ul.sortable {
  width: 100%;
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  margin-left: 0;
}

/* line 10, app/assets/stylesheets/sortable.scss */
ul.sortable_header li,
ul.sortable li {
  background-color: #fff;
  width: 100%;
  padding: 7px 0 7px 20px;
  border-bottom: 1px solid #ddd;
  margin: 0;
}

/* line 16, app/assets/stylesheets/sortable.scss */
ul.sortable_header li .list_element,
ul.sortable li .list_element {
  display: inline-block;
}

/* line 19, app/assets/stylesheets/sortable.scss */
ul.sortable_header li .list_actions,
ul.sortable li .list_actions {
  display: inline-block;
}

/* line 22, app/assets/stylesheets/sortable.scss */
ul.sortable_header li.head,
ul.sortable li.head {
  font-weight: bold;
  background-image: none;
}

/* line 26, app/assets/stylesheets/sortable.scss */
ul.sortable_header li:nth-child(even),
ul.sortable li:nth-child(even) {
  background-color: #f9f9f9;
}

/* line 32, app/assets/stylesheets/sortable.scss */
.sortable_header {
  margin-bottom: 0;
}

/* line 34, app/assets/stylesheets/sortable.scss */
.sortable_header li {
  background-color: #f9f9f9 !important;
  font-weight: bold;
  padding: 25px 0 14px 20px !important;
  border-top: 1px solid #ddd;
}

/* line 44, app/assets/stylesheets/sortable.scss */
.card_list {
  width: 100%;
}

/* line 46, app/assets/stylesheets/sortable.scss */
.card_list .card {
  padding: 6px;
  margin-bottom: 7px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #f5f5f5;
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  transition: background-color 1s ease;
  flex-wrap: wrap;
}

/* line 58, app/assets/stylesheets/sortable.scss */
.card_list .card .card_row {
  display: flex;
  flex: 100%;
  align-items: center;
}

/* line 62, app/assets/stylesheets/sortable.scss */
.card_list .card .card_row.flex_start {
  align-items: flex-start;
}

/* line 66, app/assets/stylesheets/sortable.scss */
.card_list .card .handle {
  width: 30px;
}

/* line 67, app/assets/stylesheets/sortable.scss */
.card_list .card .icon {
  margin: 0 10px;
  width: 30px;
}

/* line 70, app/assets/stylesheets/sortable.scss */
.card_list .card .icon img {
  width: 100%;
  max-height: 30px;
}

/* line 75, app/assets/stylesheets/sortable.scss */
.card_list .card .cell {
  flex: 1;
  padding: 2px 5px;
}

/* line 77, app/assets/stylesheets/sortable.scss */
.card_list .card .cell.flex_0 {
  flex: 0;
}

/* line 81, app/assets/stylesheets/sortable.scss */
.card_list .card.highlight {
  background: #d8f0d8;
}

/* line 84, app/assets/stylesheets/sortable.scss */
.card_list .card.light {
  background: #ffffff;
}

/* line 86, app/assets/stylesheets/sortable.scss */
.card_list .card.light small {
  color: #989898;
}

/* line 90, app/assets/stylesheets/sortable.scss */
.card_list .card.dark {
  background: #e8e8e8;
}

/* line 95, app/assets/stylesheets/sortable.scss */
.card_list.max-height-scrollable {
  max-height: 350px;
  overflow: scroll;
}
/* line 1, app/assets/stylesheets/search.scss */
ul.search_list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

/* line 5, app/assets/stylesheets/search.scss */
ul.search_list li {
  margin: 0 0 1rem 0;
}

/* line 10, app/assets/stylesheets/search.scss */
.search_form_container {
  display: none;
}

@media (min-width: 1340px) {
  /* line 10, app/assets/stylesheets/search.scss */
  .search_form_container {
    display: inline-block;
    margin-top: 1rem;
  }
}

/* line 18, app/assets/stylesheets/search.scss */
.search_form_container_small {
  position: fixed;
  z-index: 3;
  width: 100%;
  height: 56px;
  top: 50px;
  overflow: hidden;
  display: none;
}

/* line 26, app/assets/stylesheets/search.scss */
.search_form_container_small .search_form {
  background: #e3e3e3;
  padding: 1rem;
  text-align: center;
  position: absolute;
  z-index: 2;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

@media (max-width: 480px) {
  /* line 26, app/assets/stylesheets/search.scss */
  .search_form_container_small .search_form {
    right: calc(0px - 100vw);
    width: 100%;
  }
  /* line 37, app/assets/stylesheets/search.scss */
  .search_form_container_small .search_form .search_field {
    width: 195px;
    display: inline-block;
  }
}

@media (min-width: 481px) and (max-width: 767px) {
  /* line 26, app/assets/stylesheets/search.scss */
  .search_form_container_small .search_form {
    right: calc(0px - 100vw);
    width: 100%;
  }
  /* line 46, app/assets/stylesheets/search.scss */
  .search_form_container_small .search_form .search_field {
    width: 300px;
    display: inline-block;
  }
}

@media (min-width: 768px) and (max-width: 979px) {
  /* line 26, app/assets/stylesheets/search.scss */
  .search_form_container_small .search_form {
    right: -380px;
    width: 380px;
  }
  /* line 55, app/assets/stylesheets/search.scss */
  .search_form_container_small .search_form .search_field {
    width: 244px;
    display: inline-block;
  }
}

@media (min-width: 980px) {
  /* line 26, app/assets/stylesheets/search.scss */
  .search_form_container_small .search_form {
    right: -380px;
    width: 380px;
  }
  /* line 64, app/assets/stylesheets/search.scss */
  .search_form_container_small .search_form .search_field {
    width: 244px;
    display: inlnie-block;
  }
}

@media (min-width: 1200px) {
  /* line 26, app/assets/stylesheets/search.scss */
  .search_form_container_small .search_form {
    right: -380px;
    width: 380px;
  }
  /* line 73, app/assets/stylesheets/search.scss */
  .search_form_container_small .search_form .search_field {
    width: 244px;
    display: inline-block;
  }
}

/* line 81, app/assets/stylesheets/search.scss */
.search-results-form-container {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  margin-top: 3rem;
  border-radius: 0.8rem;
  height: 8rem;
}

@media (min-width: 1340px) {
  /* line 81, app/assets/stylesheets/search.scss */
  .search-results-form-container {
    margin-top: 4rem;
  }
}
/* line 1, app/assets/stylesheets/labels.scss */
.link_icon {
  width: 20px;
}

/* line 2, app/assets/stylesheets/labels.scss */
.link {
  text-decoration: underline;
}

/* line 5, app/assets/stylesheets/labels.scss */
.label_a4_page {
  width: 100%;
}

/* line 7, app/assets/stylesheets/labels.scss */
.label_a4_page .header {
  width: 100%;
  margin: 2rem;
}

/* line 10, app/assets/stylesheets/labels.scss */
.label_a4_page .header .column {
  display: inline-block;
  vertical-align: top;
}

/* line 13, app/assets/stylesheets/labels.scss */
.label_a4_page .header .column.left {
  width: 400px;
}

/* line 16, app/assets/stylesheets/labels.scss */
.label_a4_page .header .column.right {
  width: 300px;
}

/* line 23, app/assets/stylesheets/labels.scss */
.label_a4_page.in_partnership_with img.client_logo {
  width: auto;
  max-width: 300px;
  max-height: 73px;
}

/* line 30, app/assets/stylesheets/labels.scss */
.label_a4 {
  display: inline-block;
  padding: 10px;
  width: 380px;
  height: 154px;
  margin: 0;
}

/* line 36, app/assets/stylesheets/labels.scss */
.label_a4 .quest_logo {
  width: 100px;
  display: inline-block;
  margin-bottom: 10px;
}

/* line 40, app/assets/stylesheets/labels.scss */
.label_a4 .quest_logo img {
  width: 100%;
}

/* line 44, app/assets/stylesheets/labels.scss */
.label_a4 .column {
  display: inline-block;
  vertical-align: top;
}

/* line 48, app/assets/stylesheets/labels.scss */
.label_a4 .column.left {
  width: 203px;
}

/* line 51, app/assets/stylesheets/labels.scss */
.label_a4 .column.right {
  width: 130px;
}

/* line 55, app/assets/stylesheets/labels.scss */
.label_a4 .content {
  width: 100%;
  display: inline-block;
  padding-right: 5px;
}

/* line 59, app/assets/stylesheets/labels.scss */
.label_a4 .content .link_icon {
  width: 20px;
}

/* line 60, app/assets/stylesheets/labels.scss */
.label_a4 .content .link {
  text-decoration: underline;
}

/* line 61, app/assets/stylesheets/labels.scss */
.label_a4 .content p {
  font-size: 12px;
  line-height: 14px;
}

/* line 66, app/assets/stylesheets/labels.scss */
.label_a4 .content .out_of_hours p {
  font-size: 11px;
  line-height: 13px;
}

/* line 72, app/assets/stylesheets/labels.scss */
.label_a4 .qr_code {
  display: inline-block;
  width: 100%;
  margin-bottom: 10px;
}

/* line 76, app/assets/stylesheets/labels.scss */
.label_a4 .qr_code img {
  width: 100%;
}

/* line 80, app/assets/stylesheets/labels.scss */
.label_a4 .client_logo {
  width: 100%;
  height: 65px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

/* line 90, app/assets/stylesheets/labels.scss */
.label_a4 .client_logo img {
  max-width: 100%;
  max-height: 100%;
}

/* line 99, app/assets/stylesheets/labels.scss */
.label_50mm_page {
  width: 100%;
}

/* line 102, app/assets/stylesheets/labels.scss */
.label_50mm {
  display: inline-block;
  padding: 10px;
  width: 359px;
  height: 230px;
  border: 1px solid #333;
  margin: 0;
}

/* line 109, app/assets/stylesheets/labels.scss */
.label_50mm .quest_logo {
  width: 100px;
  display: inline-block;
  margin-bottom: 10px;
}

/* line 113, app/assets/stylesheets/labels.scss */
.label_50mm .quest_logo img {
  width: 100%;
}

/* line 117, app/assets/stylesheets/labels.scss */
.label_50mm .column {
  display: inline-block;
  vertical-align: top;
}

/* line 121, app/assets/stylesheets/labels.scss */
.label_50mm .column.left {
  width: 203px;
}

/* line 124, app/assets/stylesheets/labels.scss */
.label_50mm .column.right {
  width: 130px;
}

/* line 128, app/assets/stylesheets/labels.scss */
.label_50mm .content {
  width: 100%;
  display: inline-block;
  padding-right: 5px;
}

/* line 132, app/assets/stylesheets/labels.scss */
.label_50mm .content p {
  font-size: 12px;
  line-height: 14px;
}

/* line 137, app/assets/stylesheets/labels.scss */
.label_50mm .content .out_of_hours p {
  font-size: 11px;
  line-height: 13px;
}

/* line 143, app/assets/stylesheets/labels.scss */
.label_50mm .qr_code {
  display: inline-block;
  width: 100%;
  margin-bottom: 10px;
}

/* line 147, app/assets/stylesheets/labels.scss */
.label_50mm .qr_code img {
  width: 100%;
}

/* line 151, app/assets/stylesheets/labels.scss */
.label_50mm .client_logo {
  width: 100%;
  height: 65px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

/* line 161, app/assets/stylesheets/labels.scss */
.label_50mm .client_logo img {
  max-width: 100%;
  max-height: 100%;
}

/* line 167, app/assets/stylesheets/labels.scss */
.label_50mm.in_partnership_with .quest_logo {
  width: 100%;
}

/* line 169, app/assets/stylesheets/labels.scss */
.label_50mm.in_partnership_with .quest_logo img {
  width: auto;
  max-width: 160px;
  max-height: 73px;
}

/* line 176, app/assets/stylesheets/labels.scss */
.label_50mm.in_partnership_with .column.left {
  width: 173px;
}

/* line 179, app/assets/stylesheets/labels.scss */
.label_50mm.in_partnership_with .column.right {
  width: 160px;
  text-align: right;
}

/* line 184, app/assets/stylesheets/labels.scss */
.label_50mm.in_partnership_with .qr_code {
  width: 100%;
  max-width: 110px;
}

/* line 187, app/assets/stylesheets/labels.scss */
.label_50mm.in_partnership_with .qr_code img {
  width: 100%;
}

/* line 191, app/assets/stylesheets/labels.scss */
.label_50mm.in_partnership_with .item_code {
  display: inline-block;
  height: 47px;
}

/* line 195, app/assets/stylesheets/labels.scss */
.label_50mm.in_partnership_with .client_logo {
  max-width: 100px;
  float: right;
}

/* line 205, app/assets/stylesheets/labels.scss */
.label_54x101mm_page {
  width: 100%;
}

/* line 208, app/assets/stylesheets/labels.scss */
.label_54x101mm {
  display: inline-block;
  padding: 10px 0 10px 2px;
  width: 359px;
  height: 195px;
  margin: 0;
}

/* line 214, app/assets/stylesheets/labels.scss */
.label_54x101mm .quest_logo {
  width: 100px;
  display: inline-block;
  margin-bottom: 10px;
}

/* line 218, app/assets/stylesheets/labels.scss */
.label_54x101mm .quest_logo img {
  width: 100%;
}

/* line 222, app/assets/stylesheets/labels.scss */
.label_54x101mm .column {
  display: inline-block;
  vertical-align: top;
}

/* line 226, app/assets/stylesheets/labels.scss */
.label_54x101mm .column.left {
  width: 235px;
}

/* line 229, app/assets/stylesheets/labels.scss */
.label_54x101mm .column.right {
  width: 108px;
}

/* line 233, app/assets/stylesheets/labels.scss */
.label_54x101mm .content {
  width: 100%;
  display: inline-block;
  padding-right: 5px;
}

/* line 237, app/assets/stylesheets/labels.scss */
.label_54x101mm .content p {
  font-size: 10px;
  line-height: 12px;
}

/* line 242, app/assets/stylesheets/labels.scss */
.label_54x101mm .content .out_of_hours p {
  font-size: 11px;
  line-height: 13px;
}

/* line 248, app/assets/stylesheets/labels.scss */
.label_54x101mm .qr_code {
  display: inline-block;
  width: 100%;
  margin-bottom: 10px;
}

/* line 252, app/assets/stylesheets/labels.scss */
.label_54x101mm .qr_code img {
  width: 100%;
}

/* line 256, app/assets/stylesheets/labels.scss */
.label_54x101mm .client_logo {
  width: 100%;
  height: 65px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

/* line 266, app/assets/stylesheets/labels.scss */
.label_54x101mm .client_logo img {
  max-width: 100%;
  max-height: 100%;
}

/* line 272, app/assets/stylesheets/labels.scss */
.label_54x101mm.in_partnership_with .quest_logo {
  width: 100%;
}

/* line 274, app/assets/stylesheets/labels.scss */
.label_54x101mm.in_partnership_with .quest_logo img {
  width: auto;
  max-width: 160px;
  max-height: 39px;
}

/* line 281, app/assets/stylesheets/labels.scss */
.label_54x101mm.in_partnership_with .column.left {
  width: 155px;
}

/* line 284, app/assets/stylesheets/labels.scss */
.label_54x101mm.in_partnership_with .column.right {
  width: 188px;
  text-align: right;
}

/* line 289, app/assets/stylesheets/labels.scss */
.label_54x101mm.in_partnership_with .qr_code {
  width: 100%;
  max-width: 90px;
}

/* line 292, app/assets/stylesheets/labels.scss */
.label_54x101mm.in_partnership_with .qr_code img {
  width: 100%;
}

/* line 296, app/assets/stylesheets/labels.scss */
.label_54x101mm.in_partnership_with .item_code {
  display: inline-block;
  width: 100%;
  height: 37px;
  font-size: 12px;
}

/* line 302, app/assets/stylesheets/labels.scss */
.label_54x101mm.in_partnership_with .client_logo {
  max-width: 90px;
  float: right;
  height: 36px;
}
/* line 1, app/assets/stylesheets/lightbox.scss */
body.lb-disable-scrolling {
  overflow: hidden;
}

/* line 5, app/assets/stylesheets/lightbox.scss */
.lightboxOverlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: black;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
  display: none;
}

/* line 16, app/assets/stylesheets/lightbox.scss */
.lightbox {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 10000;
  text-align: center;
  line-height: 0;
  font-weight: normal;
  outline: none;
}

/* line 27, app/assets/stylesheets/lightbox.scss */
.lightbox .lb-image {
  display: block;
  height: auto;
  max-width: inherit;
  max-height: none;
  border-radius: 3px;
  /* Image border */
  border: 4px solid white;
}

/* line 38, app/assets/stylesheets/lightbox.scss */
.lightbox a img {
  border: none;
}

/* line 42, app/assets/stylesheets/lightbox.scss */
.lb-outerContainer {
  position: relative;
  *zoom: 1;
  width: 250px;
  height: 250px;
  margin: 0 auto;
  border-radius: 4px;
  /* Background color behind image.
     This is visible during transitions. */
  background-color: white;
}

/* line 55, app/assets/stylesheets/lightbox.scss */
.lb-outerContainer:after {
  content: "";
  display: table;
  clear: both;
}

/* line 61, app/assets/stylesheets/lightbox.scss */
.lb-loader {
  position: absolute;
  top: 43%;
  left: 0;
  height: 25%;
  width: 100%;
  text-align: center;
  line-height: 0;
}

/* line 71, app/assets/stylesheets/lightbox.scss */
.lb-cancel {
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 auto;
  background: url(/assets/lightbox/loading-75e769420867efb9e78cb0f964320ba4ea9e28bd68de9c426d8ab6976ac2269f.gif) no-repeat;
}

/* line 79, app/assets/stylesheets/lightbox.scss */
.lb-nav {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10;
}

/* line 88, app/assets/stylesheets/lightbox.scss */
.lb-container > .nav {
  left: 0;
}

/* line 92, app/assets/stylesheets/lightbox.scss */
.lb-nav a {
  outline: none;
  background-image: url("data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==");
}

/* line 97, app/assets/stylesheets/lightbox.scss */
.lb-prev, .lb-next {
  height: 100%;
  cursor: pointer;
  display: block;
}

/* line 103, app/assets/stylesheets/lightbox.scss */
.lb-nav a.lb-prev {
  width: 34%;
  left: 0;
  float: left;
  background: url(/assets/lightbox/prev-2b2be4888b161ea2f9bfd20953f8bc5e2edd81715d6c082f84708233b6b71fb3.png) left 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s;
}

/* line 116, app/assets/stylesheets/lightbox.scss */
.lb-nav a.lb-prev:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

/* line 121, app/assets/stylesheets/lightbox.scss */
.lb-nav a.lb-next {
  width: 64%;
  right: 0;
  float: right;
  background: url(/assets/lightbox/next-f1420aa16734f4dedea7622021690418e775825e0afd4cb0e81873bcad102165.png) right 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s;
}

/* line 134, app/assets/stylesheets/lightbox.scss */
.lb-nav a.lb-next:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

/* line 139, app/assets/stylesheets/lightbox.scss */
.lb-dataContainer {
  margin: 0 auto;
  padding-top: 5px;
  *zoom: 1;
  width: 100%;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

/* line 148, app/assets/stylesheets/lightbox.scss */
.lb-dataContainer:after {
  content: "";
  display: table;
  clear: both;
}

/* line 154, app/assets/stylesheets/lightbox.scss */
.lb-data {
  padding: 0 4px;
  color: #ccc;
}

/* line 159, app/assets/stylesheets/lightbox.scss */
.lb-data .lb-details {
  width: 85%;
  float: left;
  text-align: left;
  line-height: 1.1em;
}

/* line 166, app/assets/stylesheets/lightbox.scss */
.lb-data .lb-caption {
  font-size: 13px;
  font-weight: bold;
  line-height: 1em;
}

/* line 172, app/assets/stylesheets/lightbox.scss */
.lb-data .lb-caption a {
  color: #4ae;
}

/* line 176, app/assets/stylesheets/lightbox.scss */
.lb-data .lb-number {
  display: block;
  clear: left;
  padding-bottom: 1em;
  font-size: 12px;
  color: #999999;
}

/* line 184, app/assets/stylesheets/lightbox.scss */
.lb-data .lb-close {
  display: block;
  float: right;
  width: 30px;
  height: 30px;
  background: url(/assets/lightbox/close-c43f332b55f7810a3532cc0d7e1d696a7f283cebb6de910063d2bc835fdbffe3.png) top right no-repeat;
  text-align: right;
  outline: none;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

/* line 200, app/assets/stylesheets/lightbox.scss */
.lb-data .lb-close:hover {
  cursor: pointer;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}
/* line 1, app/assets/stylesheets/updates.css.scss */
.updates_list {
  display: inline-block;
  width: 100%;
  max-height: 600px;
  overflow: scroll;
}

/* line 6, app/assets/stylesheets/updates.css.scss */
.updates_list .update {
  border-radius: 5px;
  background: #fff;
  border: 1px solid #d5d5d5;
  padding: 10px;
  margin-bottom: 10px;
}

/* line 12, app/assets/stylesheets/updates.css.scss */
.updates_list .update .header {
  display: inline-block;
  width: 100%;
}

/* line 15, app/assets/stylesheets/updates.css.scss */
.updates_list .update .header .date_author {
  width: 80%;
  display: inline-block;
  font-size: 12px;
  color: #949494;
  margin-bottom: 10px;
}

/* line 22, app/assets/stylesheets/updates.css.scss */
.updates_list .update .header .actions {
  float: right;
  display: inline-block;
  vertical-align: top;
  text-align: right;
}

/* line 29, app/assets/stylesheets/updates.css.scss */
.updates_list .update form textarea {
  height: 200px;
}
/* line 1, app/assets/stylesheets/form_requirements.css.scss */
.asset_form_requirements {
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  padding: 1rem 2rem;
  margin-top: 4rem;
  margin-bottom: 1rem;
}
/* line 1, app/assets/stylesheets/job_changes.css.scss */
.job_change_caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 8px dashed;
  border-top: 8px solid;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
}
/* line 2, app/assets/stylesheets/users.css.scss */
.notification_type_fields {
  display: inline;
}
/* line 2, app/assets/stylesheets/purchase_orders.css.scss */
.purchase_order_search_container,
.job_search_container {
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 10px;
  margin-bottom: 3rem;
  background: #e6e6e6;
}

/* line 9, app/assets/stylesheets/purchase_orders.css.scss */
.purchase_order_search_container .purchase_order_search_form,
.purchase_order_search_container .job_search_form,
.job_search_container .purchase_order_search_form,
.job_search_container .job_search_form {
  width: 100%;
  display: inline-block;
  border-bottom: 1px solid #ccc;
}

/* line 15, app/assets/stylesheets/purchase_orders.css.scss */
.purchase_order_search_container .purchase_order_table_container,
.purchase_order_search_container .purchase_order_table_container,
.job_search_container .purchase_order_table_container,
.job_search_container .purchase_order_table_container {
  max-height: 300px;
  overflow: scroll;
}

/* line 23, app/assets/stylesheets/purchase_orders.css.scss */
.purchase_order_invoice_totals {
  display: inline-block;
  text-align: center;
  width: 100%;
  font-weight: bold;
  font-size: 2.5rem;
}

/* line 29, app/assets/stylesheets/purchase_orders.css.scss */
.purchase_order_invoice_totals .amount_required {
  display: inline-block;
  margin-right: 2rem;
}

/* line 33, app/assets/stylesheets/purchase_orders.css.scss */
.purchase_order_invoice_totals .amount_selected {
  display: inline-block;
}

/* line 35, app/assets/stylesheets/purchase_orders.css.scss */
.purchase_order_invoice_totals .amount_selected.matched {
  color: #04bd00;
}

/* line 38, app/assets/stylesheets/purchase_orders.css.scss */
.purchase_order_invoice_totals .amount_selected.unmatched {
  color: #cb0700;
}

/* line 43, app/assets/stylesheets/purchase_orders.css.scss */
.new_purchase_order_modal_total {
  text-align: center;
  font-weight: bold;
  font-size: 2.5rem;
}
/* line 1, app/assets/stylesheets/nested_modal.css.scss */
.nested_modal {
  position: fixed;
  right: 0;
  left: 0;
  top: 100px;
  z-index: 999;
}
/* line 2, app/assets/stylesheets/receipts.css.scss */
.transaction_search_container {
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 10px;
  margin-bottom: 3rem;
  background: #e6e6e6;
}

/* line 8, app/assets/stylesheets/receipts.css.scss */
.transaction_search_container .transaction_search_table_container {
  max-height: 300px;
  overflow: scroll;
}

/* line 15, app/assets/stylesheets/receipts.css.scss */
input.not_matched {
  background-color: #f4efd2;
}
/* line 2, app/assets/stylesheets/transactions.css.scss */
.receipt_search_container {
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 10px;
  margin-bottom: 3rem;
  background: #e6e6e6;
}

/* line 8, app/assets/stylesheets/transactions.css.scss */
.receipt_search_container .receipt_search_table_container {
  max-height: 300px;
  overflow: scroll;
}

/* line 15, app/assets/stylesheets/transactions.css.scss */
input.not_matched {
  background-color: #f4efd2;
}

/* line 19, app/assets/stylesheets/transactions.css.scss */
.transaction_receipt_totals {
  display: inline-block;
  text-align: center;
  width: 100%;
  font-weight: bold;
  font-size: 2.5rem;
}

/* line 25, app/assets/stylesheets/transactions.css.scss */
.transaction_receipt_totals .amount_required {
  display: inline-block;
  margin-right: 2rem;
}

/* line 29, app/assets/stylesheets/transactions.css.scss */
.transaction_receipt_totals .amount_selected {
  display: inline-block;
}

/* line 31, app/assets/stylesheets/transactions.css.scss */
.transaction_receipt_totals .amount_selected.matched {
  color: #04bd00;
}

/* line 34, app/assets/stylesheets/transactions.css.scss */
.transaction_receipt_totals .amount_selected.unmatched {
  color: #cb0700;
}
/* line 1, app/assets/stylesheets/table_sorting.css.scss */
th.sortable {
  cursor: pointer;
  white-space: nowrap;
}

/* line 5, app/assets/stylesheets/table_sorting.css.scss */
th.sortable.active::after {
  content: "";
  display: inline-block;
  width: 21px;
  height: 16px;
  background: url(/assets/arrow_icon-ded96ad774657d326cbd49c73deb4faef60971feae225426e3e5e137715812b2.svg) no-repeat center;
  background-size: 12px;
  vertical-align: bottom;
  margin-left: 3px;
}

/* line 16, app/assets/stylesheets/table_sorting.css.scss */
th.sortable.active.sort_asc::after {
  transform: rotate(-90deg);
}

/* line 21, app/assets/stylesheets/table_sorting.css.scss */
th.sortable.active.sort_desc::after {
  transform: rotate(90deg);
}

/* line 27, app/assets/stylesheets/table_sorting.css.scss */
th.sortable:hover {
  color: #337ab7;
}
/* line 1, app/assets/stylesheets/quotes.css.scss */
.pricing_details {
  border: none;
  min-width: 100px;
  display: inline-block;
  text-align: left;
}

/* line 12, app/assets/stylesheets/quotes.css.scss */
.approval_superuser_label {
  margin-bottom: 10px;
}
/* line 1, app/assets/stylesheets/days_times_picker.css.scss */
.days_times_picker {
  width: 100%;
  margin-top: 3rem;
}

@media (max-width: 480px) {
  /* line 1, app/assets/stylesheets/days_times_picker.css.scss */
  .days_times_picker {
    display: block;
  }
}

@media (min-width: 481px) and (max-width: 767px) {
  /* line 1, app/assets/stylesheets/days_times_picker.css.scss */
  .days_times_picker {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (min-width: 768px) and (max-width: 979px) {
  /* line 1, app/assets/stylesheets/days_times_picker.css.scss */
  .days_times_picker {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (min-width: 980px) {
  /* line 1, app/assets/stylesheets/days_times_picker.css.scss */
  .days_times_picker {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (min-width: 1200px) {
  /* line 1, app/assets/stylesheets/days_times_picker.css.scss */
  .days_times_picker {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
}

/* line 30, app/assets/stylesheets/days_times_picker.css.scss */
.days_times_picker .day {
  width: 100%;
}

@media (max-width: 480px) {
  /* line 30, app/assets/stylesheets/days_times_picker.css.scss */
  .days_times_picker .day {
    display: block;
    margin-bottom: 2rem;
  }
}

@media (min-width: 481px) and (max-width: 767px) {
  /* line 30, app/assets/stylesheets/days_times_picker.css.scss */
  .days_times_picker .day {
    display: block;
    margin-bottom: 2rem;
  }
}

@media (min-width: 768px) and (max-width: 979px) {
  /* line 30, app/assets/stylesheets/days_times_picker.css.scss */
  .days_times_picker .day {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    margin: 0 0 0.5rem 0;
    justify-content: center;
  }
}

@media (min-width: 980px) {
  /* line 30, app/assets/stylesheets/days_times_picker.css.scss */
  .days_times_picker .day {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    margin: 0 0 0.5rem 0;
    justify-content: center;
  }
}

@media (min-width: 1200px) {
  /* line 30, app/assets/stylesheets/days_times_picker.css.scss */
  .days_times_picker .day {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    margin: 0 0 0.5rem 0;
    justify-content: center;
  }
}

/* line 69, app/assets/stylesheets/days_times_picker.css.scss */
.days_times_picker .day .name {
  min-width: 100px;
  display: inline-block;
  text-align: right;
  padding: 0 1rem;
  font-weight: bold;
}

@media (max-width: 480px) {
  /* line 69, app/assets/stylesheets/days_times_picker.css.scss */
  .days_times_picker .day .name {
    text-align: left;
  }
}

@media (min-width: 481px) and (max-width: 767px) {
  /* line 69, app/assets/stylesheets/days_times_picker.css.scss */
  .days_times_picker .day .name {
    text-align: left;
  }
}

@media (min-width: 768px) and (max-width: 979px) {
  /* line 69, app/assets/stylesheets/days_times_picker.css.scss */
  .days_times_picker .day .name {
    width: 100%;
    text-align: left;
  }
}

/* line 86, app/assets/stylesheets/days_times_picker.css.scss */
.days_times_picker .day .all_day_opt {
  text-align: right;
  margin-right: 2rem;
}

@media (max-width: 480px) {
  /* line 86, app/assets/stylesheets/days_times_picker.css.scss */
  .days_times_picker .day .all_day_opt {
    text-align: left;
    margin-bottom: 1rem;
  }
}

@media (min-width: 481px) and (max-width: 767px) {
  /* line 86, app/assets/stylesheets/days_times_picker.css.scss */
  .days_times_picker .day .all_day_opt {
    text-align: left;
    margin-bottom: 1rem;
  }
}

/* line 97, app/assets/stylesheets/days_times_picker.css.scss */
.days_times_picker .day .all_day_opt input[type="checkbox"] {
  margin: 0 0.5rem 0 0;
}

/* line 101, app/assets/stylesheets/days_times_picker.css.scss */
.days_times_picker .day .am_opt,
.days_times_picker .day .pm_opt {
  display: flex;
  align-items: center;
  position: relative;
}

@media (max-width: 480px) {
  /* line 101, app/assets/stylesheets/days_times_picker.css.scss */
  .days_times_picker .day .am_opt,
.days_times_picker .day .pm_opt {
    margin-bottom: 1rem;
  }
}

@media (min-width: 481px) and (max-width: 767px) {
  /* line 101, app/assets/stylesheets/days_times_picker.css.scss */
  .days_times_picker .day .am_opt,
.days_times_picker .day .pm_opt {
    margin-bottom: 1rem;
  }
}

/* line 113, app/assets/stylesheets/days_times_picker.css.scss */
.days_times_picker .day .display_am:after {
  content: "AM";
  position: absolute;
  top: -20px;
  left: 10px;
  font-weight: bold;
}

@media (max-width: 480px) {
  /* line 113, app/assets/stylesheets/days_times_picker.css.scss */
  .days_times_picker .day .display_am:after {
    display: none;
  }
}

@media (min-width: 481px) and (max-width: 767px) {
  /* line 113, app/assets/stylesheets/days_times_picker.css.scss */
  .days_times_picker .day .display_am:after {
    display: none;
  }
}

/* line 126, app/assets/stylesheets/days_times_picker.css.scss */
.days_times_picker .day .display_pm:after {
  content: "PM";
  position: absolute;
  top: -20px;
  left: 10px;
  font-weight: bold;
}

@media (max-width: 480px) {
  /* line 126, app/assets/stylesheets/days_times_picker.css.scss */
  .days_times_picker .day .display_pm:after {
    display: none;
  }
}

@media (min-width: 481px) and (max-width: 767px) {
  /* line 126, app/assets/stylesheets/days_times_picker.css.scss */
  .days_times_picker .day .display_pm:after {
    display: none;
  }
}

/* line 139, app/assets/stylesheets/days_times_picker.css.scss */
.days_times_picker .day input[type="checkbox"] {
  margin: 0;
}

/* line 142, app/assets/stylesheets/days_times_picker.css.scss */
.days_times_picker .day label {
  margin: 0 1rem;
}

/* line 145, app/assets/stylesheets/days_times_picker.css.scss */
.days_times_picker .day .time_range_select {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s, -webkit-box-shadow ease-inz-out .15s;
  margin-right: 2rem;
}

@media (max-width: 480px) {
  /* line 145, app/assets/stylesheets/days_times_picker.css.scss */
  .days_times_picker .day .time_range_select {
    text-align: center;
  }
}

@media (min-width: 481px) and (max-width: 767px) {
  /* line 145, app/assets/stylesheets/days_times_picker.css.scss */
  .days_times_picker .day .time_range_select {
    text-align: center;
  }
}

@media (min-width: 768px) and (max-width: 979px) {
  /* line 145, app/assets/stylesheets/days_times_picker.css.scss */
  .days_times_picker .day .time_range_select {
    margin-right: 0;
  }
}

/* line 175, app/assets/stylesheets/days_times_picker.css.scss */
.days_times_picker .day .time_range_select.disabled {
  background: #e9e9e9;
}

/* line 178, app/assets/stylesheets/days_times_picker.css.scss */
.days_times_picker .day .time_range_select select {
  border: none;
  background: none;
}

/* line 181, app/assets/stylesheets/days_times_picker.css.scss */
.days_times_picker .day .time_range_select select:focus-visible {
  outline: none;
}
/* line 1, app/assets/stylesheets/job_timing.scss */
.job_timing {
  padding: 1rem;
}

/* line 4, app/assets/stylesheets/job_timing.scss */
.job_timing .timer {
  max-width: 100px;
  padding: 5px;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
}
/* line 2, app/assets/stylesheets/timesheets.scss */
.timesheets_table .travel_started {
  width: 120px;
}

/* line 3, app/assets/stylesheets/timesheets.scss */
.timesheets_table .arrived {
  width: 120px;
}

/* line 4, app/assets/stylesheets/timesheets.scss */
.timesheets_table .finished {
  width: 120px;
}

/* line 5, app/assets/stylesheets/timesheets.scss */
.timesheets_table .total {
  width: 120px;
}

/* line 6, app/assets/stylesheets/timesheets.scss */
.timesheets_table .delete_action {
  width: 105px;
}

/* line 8, app/assets/stylesheets/timesheets.scss */
.timesheets_table tbody td {
  position: relative;
}

/* line 13, app/assets/stylesheets/timesheets.scss */
dl.day_total_dl dt {
  width: 40px;
}

/* line 14, app/assets/stylesheets/timesheets.scss */
dl.day_total_dl dd {
  margin-left: 60px;
}

/* line 16, app/assets/stylesheets/timesheets.scss */
.timesheet_on_call_header {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 30px;
  margin-bottom: 1rem;
}

/* line 23, app/assets/stylesheets/timesheets.scss */
.timesheet_on_call_header h4 {
  margin: 0 2rem 0 0;
  font-weight: bold;
}

/* line 27, app/assets/stylesheets/timesheets.scss */
.timesheet_on_call_header span.label_name {
  font-size: 1.6rem;
  font-weight: bold;
  margin-right: 1rem;
}

/* line 33, app/assets/stylesheets/timesheets.scss */
.timesheet_on_call_header span.label_name:active {
  color: #009578;
}

/* line 37, app/assets/stylesheets/timesheets.scss */
.timesheet_on_call_header .toggle {
  margin: 0 2rem 0 0;
}

/* line 42, app/assets/stylesheets/timesheets.scss */
.timesheet_on_call_select {
  width: 182px;
}

/* line 46, app/assets/stylesheets/timesheets.scss */
.hour_min_text {
  font-weight: bold;
  font-size: 1.5rem;
}
/* line 2, app/assets/stylesheets/timings.scss */
.timesheets_table .updated_by {
  width: 100px;
}

/* line 3, app/assets/stylesheets/timings.scss */
.timesheets_table .job_number {
  width: 217px;
}

/* line 4, app/assets/stylesheets/timings.scss */
.timesheets_table .on_call {
  width: 182px;
}

/* line 5, app/assets/stylesheets/timings.scss */
.timesheets_table .travel_started {
  width: 90px;
}

/* line 6, app/assets/stylesheets/timings.scss */
.timesheets_table .arrived {
  width: 90px;
}

/* line 7, app/assets/stylesheets/timings.scss */
.timesheets_table .finished {
  width: 90px;
}

/* line 8, app/assets/stylesheets/timings.scss */
.timesheets_table .lunch {
  width: 120px;
}

/* line 9, app/assets/stylesheets/timings.scss */
.timesheets_table .total {
  width: 170px;
}

/* line 10, app/assets/stylesheets/timings.scss */
.timesheets_table .actions {
  width: 200px;
}

/* line 12, app/assets/stylesheets/timings.scss */
.timesheets_table tbody td {
  position: relative;
}

/* line 17, app/assets/stylesheets/timings.scss */
.hour_min_text {
  font-weight: bold;
  font-size: 1.5rem;
}

/* line 23, app/assets/stylesheets/timings.scss */
.timing_fields .total {
  padding-top: 6px;
}

/* line 24, app/assets/stylesheets/timings.scss */
.timing_fields .timing_total {
  padding-top: 6px;
  font-weight: bold;
}

/* line 28, app/assets/stylesheets/timings.scss */
.timing_fields .timing_label_replacement {
  text-align: right;
  height: 34px;
  padding-top: 6px;
}

/* line 32, app/assets/stylesheets/timings.scss */
.timing_fields .timing_label_replacement input {
  margin-left: 1rem;
  margin-right: 0;
}
/* line 1, app/assets/stylesheets/service_audit.css.scss */
.progress_sections {
  width: 100%;
}

/* line 4, app/assets/stylesheets/service_audit.css.scss */
.progress_sections .progress_section {
  --progress-bar-width: 130px;
  --progress-bar-height: 130px;
  --font-size: 2.5rem;
  width: auto;
  display: inline-block;
  padding: 0 0.5rem;
  border-right: 1px solid #ccc;
}

@media screen and (max-width: 1200px) {
  /* line 4, app/assets/stylesheets/service_audit.css.scss */
  .progress_sections .progress_section {
    --progress-bar-width: 117px;
    --progress-bar-height: 117px;
    --font-size: 2rem;
  }
}

@media screen and (max-width: 995px) {
  /* line 4, app/assets/stylesheets/service_audit.css.scss */
  .progress_sections .progress_section {
    --progress-bar-width: 140px;
    --progress-bar-height: 140px;
    --font-size: 2rem;
    margin-bottom: 1rem;
  }
}

@media (min-width: 481px) and (max-width: 767px) {
  /* line 4, app/assets/stylesheets/service_audit.css.scss */
  .progress_sections .progress_section {
    --progress-bar-width: 179px;
    --progress-bar-height: 179px;
    --font-size: 3rem;
    margin-bottom: 1rem;
  }
}

@media (min-width: 481px) and (max-width: 767px) {
  /* line 29, app/assets/stylesheets/service_audit.css.scss */
  .progress_sections .progress_section.xs-no-divide {
    border: none;
  }
}

/* line 34, app/assets/stylesheets/service_audit.css.scss */
.progress_sections .progress_section.last {
  border: none;
}

/* line 35, app/assets/stylesheets/service_audit.css.scss */
.progress_sections .progress_section .progress-container {
  position: relative;
  width: var(--progress-bar-width);
  height: var(--progress-bar-height);
  margin: 0 1rem;
  text-align: center;
  display: inline-block;
}

@media screen and (max-width: 1200px) {
  /* line 35, app/assets/stylesheets/service_audit.css.scss */
  .progress_sections .progress_section .progress-container {
    margin: 0 0rem;
  }
}

@media screen and (max-width: 995px) {
  /* line 35, app/assets/stylesheets/service_audit.css.scss */
  .progress_sections .progress_section .progress-container {
    margin: 0 1rem;
  }
}

@media (min-width: 481px) and (max-width: 767px) {
  /* line 35, app/assets/stylesheets/service_audit.css.scss */
  .progress_sections .progress_section .progress-container {
    margin: 0 1rem;
  }
}

/* line 51, app/assets/stylesheets/service_audit.css.scss */
.progress_sections .progress_section .progress-container.left-twin {
  margin-right: 0;
}

@media (min-width: 481px) and (max-width: 767px) {
  /* line 51, app/assets/stylesheets/service_audit.css.scss */
  .progress_sections .progress_section .progress-container.left-twin {
    margin-right: 1rem;
  }
}

/* line 57, app/assets/stylesheets/service_audit.css.scss */
.progress_sections .progress_section .progress-container.right-twin {
  margin-left: 0;
}

@media (min-width: 481px) and (max-width: 767px) {
  /* line 57, app/assets/stylesheets/service_audit.css.scss */
  .progress_sections .progress_section .progress-container.right-twin {
    margin-left: 1rem;
  }
}

/* line 63, app/assets/stylesheets/service_audit.css.scss */
.progress_sections .progress_section .progress-container .circular-progress {
  width: var(--progress-bar-width);
  height: var(--progress-bar-height);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* line 70, app/assets/stylesheets/service_audit.css.scss */
.progress_sections .progress_section .progress-container .circular-progress .inner-circle {
  position: absolute;
  width: calc(var(--progress-bar-width) - 20px);
  height: calc(var(--progress-bar-height) - 20px);
  border-radius: 50%;
  background-color: lightgrey;
}

/* line 76, app/assets/stylesheets/service_audit.css.scss */
.progress_sections .progress_section .progress-container .circular-progress .inner-circle p {
  font-size: 2rem;
  position: relative;
  top: 15px;
  font-weight: 700;
}

@media screen and (max-width: 1200px) {
  /* line 76, app/assets/stylesheets/service_audit.css.scss */
  .progress_sections .progress_section .progress-container .circular-progress .inner-circle p {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 995px) {
  /* line 76, app/assets/stylesheets/service_audit.css.scss */
  .progress_sections .progress_section .progress-container .circular-progress .inner-circle p {
    font-size: 2rem;
  }
}

@media (min-width: 481px) and (max-width: 767px) {
  /* line 76, app/assets/stylesheets/service_audit.css.scss */
  .progress_sections .progress_section .progress-container .circular-progress .inner-circle p {
    font-size: 3rem;
    top: 27px;
  }
}

/* line 94, app/assets/stylesheets/service_audit.css.scss */
.progress_sections .progress_section .progress-container .circular-progress .percentage {
  position: relative;
  font-size: var(--font-size);
  color: rgba(0, 0, 0, 0.8);
  font-weight: 600;
}

@media screen and (max-width: 1200px) {
  /* line 94, app/assets/stylesheets/service_audit.css.scss */
  .progress_sections .progress_section .progress-container .circular-progress .percentage {
    margin-bottom: 5px;
  }
}

@media screen and (max-width: 995px) {
  /* line 94, app/assets/stylesheets/service_audit.css.scss */
  .progress_sections .progress_section .progress-container .circular-progress .percentage {
    margin-bottom: 10px;
  }
}

@media (min-width: 481px) and (max-width: 767px) {
  /* line 94, app/assets/stylesheets/service_audit.css.scss */
  .progress_sections .progress_section .progress-container .circular-progress .percentage {
    margin-bottom: 10px;
  }
}

/* line 111, app/assets/stylesheets/service_audit.css.scss */
.progress_sections .progress_section .progress-container .bottom-text {
  position: absolute;
  top: 80px;
  left: 15px;
  font-size: 1.05rem;
  font-weight: 700;
  width: 100px;
  overflow: visible;
  line-height: 1;
}

@media screen and (max-width: 1200px) {
  /* line 111, app/assets/stylesheets/service_audit.css.scss */
  .progress_sections .progress_section .progress-container .bottom-text {
    font-size: 1rem;
    top: 72px;
    left: 8px;
  }
}

@media screen and (max-width: 995px) {
  /* line 111, app/assets/stylesheets/service_audit.css.scss */
  .progress_sections .progress_section .progress-container .bottom-text {
    font-size: 1.05rem;
    top: 80px;
    left: 15px;
  }
}

@media (min-width: 481px) and (max-width: 767px) {
  /* line 111, app/assets/stylesheets/service_audit.css.scss */
  .progress_sections .progress_section .progress-container .bottom-text {
    font-size: 1.45rem;
    top: 108px;
    left: 38px;
  }
}
/* line 1, app/assets/stylesheets/timing_changes.css.scss */
a.timing_changes_link {
  color: #000;
  text-decoration: none;
  padding: 8px 0;
}

/* line 6, app/assets/stylesheets/timing_changes.css.scss */
.timing_change_history_container {
  background: #eee;
  border-radius: 5px;
  padding: 5px;
  margin-bottom: 1rem;
}

/* line 11, app/assets/stylesheets/timing_changes.css.scss */
.timing_change_history_container .date {
  color: #a39e9e;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
/* line 1, app/assets/stylesheets/rayleigh_connect.css.scss */
.sensor_connection {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

@media (max-width: 767px) {
  /* line 1, app/assets/stylesheets/rayleigh_connect.css.scss */
  .sensor_connection {
    margin-top: 1rem;
  }
}

@media (min-width: 979px) {
  /* line 1, app/assets/stylesheets/rayleigh_connect.css.scss */
  .sensor_connection {
    justify-content: center;
  }
}

@media (min-width: 980px) {
  /* line 1, app/assets/stylesheets/rayleigh_connect.css.scss */
  .sensor_connection {
    justify-content: flex-end;
  }
}

/* line 14, app/assets/stylesheets/rayleigh_connect.css.scss */
.sensor_connection i.sensor_icon {
  width: 45px;
  height: 32px;
  margin-right: 1rem;
  background: url(/assets/connection-88692facace8d79cc415cb3973db2c5d809736b2f4c2e18d55d605d4e5908428.svg) center left no-repeat;
}

/* line 23, app/assets/stylesheets/rayleigh_connect.css.scss */
.card_list.sensor_list .sensor_group_row {
  display: flex;
  border: 1px solid #d4d4d4;
  padding: 6px;
  border-radius: 5px;
  margin-bottom: 5px;
  background: #f5f5f5;
}

/* line 31, app/assets/stylesheets/rayleigh_connect.css.scss */
.card_list.sensor_list .sensor_group_list {
  width: 100%;
}

/* line 34, app/assets/stylesheets/rayleigh_connect.css.scss */
.card_list.sensor_list .sensor_association_list {
  width: 100%;
}

/* line 36, app/assets/stylesheets/rayleigh_connect.css.scss */
.card_list.sensor_list .sensor_association_list .card_row {
  margin: 1px 0;
}

/* line 42, app/assets/stylesheets/rayleigh_connect.css.scss */
.sensor-unit-info {
  text-align: left;
}

@media (min-width: 980px) {
  /* line 42, app/assets/stylesheets/rayleigh_connect.css.scss */
  .sensor-unit-info {
    text-align: right;
  }
}

@media (max-width: 979px) {
  /* line 48, app/assets/stylesheets/rayleigh_connect.css.scss */
  .sensor-unit-info .sensor_connection {
    justify-content: flex-start;
  }
}
/* line 1, app/assets/stylesheets/units.css.scss */
.warranty_display {
  margin-left: 2rem;
}

/* line 3, app/assets/stylesheets/units.css.scss */
.sensor_list_display {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}

/* line 8, app/assets/stylesheets/units.css.scss */
.sensor_list_display .sensor_display {
  flex: 1 209px;
  margin-left: 10px;
  margin-right: 10px;
  margin-bottom: 2rem;
  padding: 10px 10px;
  background: #f5f5f5;
  box-shadow: -5px 6px 6px 0 rgba(0, 0, 0, 0.087);
  border: 1px solid #e3e3e3;
  border-radius: 4px;
}

/* line 18, app/assets/stylesheets/units.css.scss */
.sensor_list_display .sensor_display .display_name {
  margin-bottom: 1rem;
}

/* line 20, app/assets/stylesheets/units.css.scss */
.sensor_list_display .sensor_display .display_name h6 {
  margin: 0;
}

/* line 22, app/assets/stylesheets/units.css.scss */
.sensor_list_display .sensor_display .icon_value_display {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}

/* line 26, app/assets/stylesheets/units.css.scss */
.sensor_list_display .sensor_display .icon_value_display .icon {
  margin-right: 1rem;
}

/* line 27, app/assets/stylesheets/units.css.scss */
.sensor_list_display .sensor_display .icon_value_display .value {
  flex: 1;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
}

/* line 34, app/assets/stylesheets/units.css.scss */
.sensor_list_display .sensor_display.with_associations {
  flex: 1 400px;
}

/* line 36, app/assets/stylesheets/units.css.scss */
.sensor_list_display .sensor_display.with_associations .icon_value_display {
  margin-bottom: 1rem;
}

/* line 39, app/assets/stylesheets/units.css.scss */
.sensor_list_display .sensor_display.with_associations .sensor_group_list {
  display: flex;
}

/* line 41, app/assets/stylesheets/units.css.scss */
.sensor_list_display .sensor_display.with_associations .sensor_group_list .sensor_group_association {
  flex: 1;
}

/* line 50, app/assets/stylesheets/units.css.scss */
.card_list.unit_list .card_row {
  display: grid;
  grid-template-columns: 200px 220px 1fr 50px;
  column-gap: 12px;
  align-items: center;
}

/* line 57, app/assets/stylesheets/units.css.scss */
.card_list.unit_list .cell {
  white-space: nowrap;
  min-width: 0;
}

/* line 62, app/assets/stylesheets/units.css.scss */
.card_list.unit_list .card_row > .cell:first-child {
  overflow: hidden;
  text-overflow: ellipsis;
}
/* line 2, app/assets/stylesheets/enquiry_responses.scss */
.response.from_me {
  background-color: #daf8d8;
  margin-right: 2rem;
}

/* line 6, app/assets/stylesheets/enquiry_responses.scss */
.response.from_other {
  background-color: #d8eeff;
  margin-left: 2rem;
}

/* line 10, app/assets/stylesheets/enquiry_responses.scss */
.response.system_change {
  background-color: #E8E8E8;
}
/* line 1, app/assets/stylesheets/card_lists.scss */
.card_list {
  width: 100%;
}

/* line 3, app/assets/stylesheets/card_lists.scss */
.card_list .card {
  padding: 6px;
  margin-bottom: 7px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #f5f5f5;
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  transition: background-color 1s ease;
  flex-wrap: wrap;
}

/* line 15, app/assets/stylesheets/card_lists.scss */
.card_list .card .card_row {
  display: flex;
  flex: 100%;
  align-items: center;
  flex-wrap: wrap;
}

/* line 20, app/assets/stylesheets/card_lists.scss */
.card_list .card .card_row.flex_start {
  align-items: flex-start;
}

/* line 24, app/assets/stylesheets/card_lists.scss */
.card_list .card .handle {
  width: 30px;
}

/* line 25, app/assets/stylesheets/card_lists.scss */
.card_list .card .icon {
  margin: 0 10px;
  width: 30px;
}

/* line 28, app/assets/stylesheets/card_lists.scss */
.card_list .card .icon img {
  width: 100%;
  max-height: 30px;
}

/* line 33, app/assets/stylesheets/card_lists.scss */
.card_list .card .cell {
  flex: 1;
  padding: 2px 5px;
}

@media (max-width: 480px) {
  /* line 33, app/assets/stylesheets/card_lists.scss */
  .card_list .card .cell {
    flex-basis: 100%;
  }
}

@media (min-width: 481px) and (max-width: 767px) {
  /* line 33, app/assets/stylesheets/card_lists.scss */
  .card_list .card .cell {
    flex-basis: 100%;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  /* line 33, app/assets/stylesheets/card_lists.scss */
  .card_list .card .cell {
    flex-basis: 100%;
  }
}

/* line 45, app/assets/stylesheets/card_lists.scss */
.card_list .card .cell.flex_0 {
  flex: 0;
}

/* line 49, app/assets/stylesheets/card_lists.scss */
.card_list .card.dark {
  background: #e8e8e8;
}

/* line 52, app/assets/stylesheets/card_lists.scss */
.card_list .card.highlight {
  background: #d8f0d8;
}

/* line 55, app/assets/stylesheets/card_lists.scss */
.card_list .card.header {
  background: none;
  border: none;
  font-weight: bold;
}

@media (max-width: 480px) {
  /* line 55, app/assets/stylesheets/card_lists.scss */
  .card_list .card.header {
    display: none;
  }
}

@media (max-width: 480px) {
  /* line 63, app/assets/stylesheets/card_lists.scss */
  .card_list .card .actions {
    flex-basis: 100%;
  }
}
.mapboxgl-map{font:12px/20px Helvetica Neue,Arial,Helvetica,sans-serif;overflow:hidden;position:relative;-webkit-tap-highlight-color:rgb(0 0 0/0)}.mapboxgl-canvas{position:absolute;left:0;top:0}.mapboxgl-map:-webkit-full-screen{width:100%;height:100%}.mapboxgl-canary{background-color:salmon}.mapboxgl-canvas-container.mapboxgl-interactive,.mapboxgl-ctrl-group button.mapboxgl-ctrl-compass{cursor:grab;-webkit-user-select:none;user-select:none}.mapboxgl-canvas-container.mapboxgl-interactive.mapboxgl-track-pointer{cursor:pointer}.mapboxgl-canvas-container.mapboxgl-interactive:active,.mapboxgl-ctrl-group button.mapboxgl-ctrl-compass:active{cursor:grabbing}.mapboxgl-canvas-container.mapboxgl-touch-zoom-rotate,.mapboxgl-canvas-container.mapboxgl-touch-zoom-rotate .mapboxgl-canvas{touch-action:pan-x pan-y}.mapboxgl-canvas-container.mapboxgl-touch-drag-pan,.mapboxgl-canvas-container.mapboxgl-touch-drag-pan .mapboxgl-canvas{touch-action:pinch-zoom}.mapboxgl-canvas-container.mapboxgl-touch-zoom-rotate.mapboxgl-touch-drag-pan,.mapboxgl-canvas-container.mapboxgl-touch-zoom-rotate.mapboxgl-touch-drag-pan .mapboxgl-canvas{touch-action:none}.mapboxgl-ctrl-bottom-left,.mapboxgl-ctrl-bottom-right,.mapboxgl-ctrl-top-left,.mapboxgl-ctrl-top-right{position:absolute;pointer-events:none;z-index:2}.mapboxgl-ctrl-top-left{top:0;left:0}.mapboxgl-ctrl-top-right{top:0;right:0}.mapboxgl-ctrl-bottom-left{bottom:0;left:0}.mapboxgl-ctrl-bottom-right{right:0;bottom:0}.mapboxgl-ctrl{clear:both;pointer-events:auto;transform:translate(0)}.mapboxgl-ctrl-top-left .mapboxgl-ctrl{margin:10px 0 0 10px;float:left}.mapboxgl-ctrl-top-right .mapboxgl-ctrl{margin:10px 10px 0 0;float:right}.mapboxgl-ctrl-bottom-left .mapboxgl-ctrl{margin:0 0 10px 10px;float:left}.mapboxgl-ctrl-bottom-right .mapboxgl-ctrl{margin:0 10px 10px 0;float:right}.mapboxgl-ctrl-group{border-radius:4px;background:#fff}.mapboxgl-ctrl-group:not(:empty){box-shadow:0 0 0 2px rgb(0 0 0/10%)}@media (-ms-high-contrast:active){.mapboxgl-ctrl-group:not(:empty){box-shadow:0 0 0 2px ButtonText}}.mapboxgl-ctrl-group button{width:29px;height:29px;display:block;padding:0;outline:none;border:0;box-sizing:border-box;background-color:transparent;cursor:pointer;overflow:hidden}.mapboxgl-ctrl-group button+button{border-top:1px solid #ddd}.mapboxgl-ctrl button .mapboxgl-ctrl-icon{display:block;width:100%;height:100%;background-repeat:no-repeat;background-position:50%}@media (-ms-high-contrast:active){.mapboxgl-ctrl-icon{background-color:transparent}.mapboxgl-ctrl-group button+button{border-top:1px solid ButtonText}}.mapboxgl-ctrl-attrib-button:focus,.mapboxgl-ctrl-group button:focus{box-shadow:0 0 2px 2px rgb(0 150 255/100%)}.mapboxgl-ctrl button:disabled{cursor:not-allowed}.mapboxgl-ctrl button:disabled .mapboxgl-ctrl-icon{opacity:.25}.mapboxgl-ctrl-group button:first-child{border-radius:4px 4px 0 0}.mapboxgl-ctrl-group button:last-child{border-radius:0 0 4px 4px}.mapboxgl-ctrl-group button:only-child{border-radius:inherit}.mapboxgl-ctrl button:not(:disabled):hover{background-color:rgb(0 0 0/5%)}.mapboxgl-ctrl-group button:focus:focus-visible{box-shadow:0 0 2px 2px rgb(0 150 255/100%)}.mapboxgl-ctrl-group button:focus:not(:focus-visible){box-shadow:none}.mapboxgl-ctrl button.mapboxgl-ctrl-zoom-out .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 29 29' xmlns='http://www.w3.org/2000/svg' fill='%23333'%3E %3Cpath d='M10 13c-.75 0-1.5.75-1.5 1.5S9.25 16 10 16h9c.75 0 1.5-.75 1.5-1.5S19.75 13 19 13h-9z'/%3E %3C/svg%3E")}.mapboxgl-ctrl button.mapboxgl-ctrl-zoom-in .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 29 29' xmlns='http://www.w3.org/2000/svg' fill='%23333'%3E %3Cpath d='M14.5 8.5c-.75 0-1.5.75-1.5 1.5v3h-3c-.75 0-1.5.75-1.5 1.5S9.25 16 10 16h3v3c0 .75.75 1.5 1.5 1.5S16 19.75 16 19v-3h3c.75 0 1.5-.75 1.5-1.5S19.75 13 19 13h-3v-3c0-.75-.75-1.5-1.5-1.5z'/%3E %3C/svg%3E")}@media (-ms-high-contrast:active){.mapboxgl-ctrl button.mapboxgl-ctrl-zoom-out .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 29 29' xmlns='http://www.w3.org/2000/svg' fill='%23fff'%3E %3Cpath d='M10 13c-.75 0-1.5.75-1.5 1.5S9.25 16 10 16h9c.75 0 1.5-.75 1.5-1.5S19.75 13 19 13h-9z'/%3E %3C/svg%3E")}.mapboxgl-ctrl button.mapboxgl-ctrl-zoom-in .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 29 29' xmlns='http://www.w3.org/2000/svg' fill='%23fff'%3E %3Cpath d='M14.5 8.5c-.75 0-1.5.75-1.5 1.5v3h-3c-.75 0-1.5.75-1.5 1.5S9.25 16 10 16h3v3c0 .75.75 1.5 1.5 1.5S16 19.75 16 19v-3h3c.75 0 1.5-.75 1.5-1.5S19.75 13 19 13h-3v-3c0-.75-.75-1.5-1.5-1.5z'/%3E %3C/svg%3E")}}@media (-ms-high-contrast:black-on-white){.mapboxgl-ctrl button.mapboxgl-ctrl-zoom-out .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 29 29' xmlns='http://www.w3.org/2000/svg' fill='%23000'%3E %3Cpath d='M10 13c-.75 0-1.5.75-1.5 1.5S9.25 16 10 16h9c.75 0 1.5-.75 1.5-1.5S19.75 13 19 13h-9z'/%3E %3C/svg%3E")}.mapboxgl-ctrl button.mapboxgl-ctrl-zoom-in .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 29 29' xmlns='http://www.w3.org/2000/svg' fill='%23000'%3E %3Cpath d='M14.5 8.5c-.75 0-1.5.75-1.5 1.5v3h-3c-.75 0-1.5.75-1.5 1.5S9.25 16 10 16h3v3c0 .75.75 1.5 1.5 1.5S16 19.75 16 19v-3h3c.75 0 1.5-.75 1.5-1.5S19.75 13 19 13h-3v-3c0-.75-.75-1.5-1.5-1.5z'/%3E %3C/svg%3E")}}.mapboxgl-ctrl button.mapboxgl-ctrl-fullscreen .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 29 29' xmlns='http://www.w3.org/2000/svg' fill='%23333'%3E %3Cpath d='M24 16v5.5c0 1.75-.75 2.5-2.5 2.5H16v-1l3-1.5-4-5.5 1-1 5.5 4 1.5-3h1zM6 16l1.5 3 5.5-4 1 1-4 5.5 3 1.5v1H7.5C5.75 24 5 23.25 5 21.5V16h1zm7-11v1l-3 1.5 4 5.5-1 1-5.5-4L6 13H5V7.5C5 5.75 5.75 5 7.5 5H13zm11 2.5c0-1.75-.75-2.5-2.5-2.5H16v1l3 1.5-4 5.5 1 1 5.5-4 1.5 3h1V7.5z'/%3E %3C/svg%3E")}.mapboxgl-ctrl button.mapboxgl-ctrl-shrink .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 29 29' xmlns='http://www.w3.org/2000/svg'%3E %3Cpath d='M18.5 16c-1.75 0-2.5.75-2.5 2.5V24h1l1.5-3 5.5 4 1-1-4-5.5 3-1.5v-1h-5.5zM13 18.5c0-1.75-.75-2.5-2.5-2.5H5v1l3 1.5L4 24l1 1 5.5-4 1.5 3h1v-5.5zm3-8c0 1.75.75 2.5 2.5 2.5H24v-1l-3-1.5L25 5l-1-1-5.5 4L17 5h-1v5.5zM10.5 13c1.75 0 2.5-.75 2.5-2.5V5h-1l-1.5 3L5 4 4 5l4 5.5L5 12v1h5.5z'/%3E %3C/svg%3E")}@media (-ms-high-contrast:active){.mapboxgl-ctrl button.mapboxgl-ctrl-fullscreen .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 29 29' xmlns='http://www.w3.org/2000/svg' fill='%23fff'%3E %3Cpath d='M24 16v5.5c0 1.75-.75 2.5-2.5 2.5H16v-1l3-1.5-4-5.5 1-1 5.5 4 1.5-3h1zM6 16l1.5 3 5.5-4 1 1-4 5.5 3 1.5v1H7.5C5.75 24 5 23.25 5 21.5V16h1zm7-11v1l-3 1.5 4 5.5-1 1-5.5-4L6 13H5V7.5C5 5.75 5.75 5 7.5 5H13zm11 2.5c0-1.75-.75-2.5-2.5-2.5H16v1l3 1.5-4 5.5 1 1 5.5-4 1.5 3h1V7.5z'/%3E %3C/svg%3E")}.mapboxgl-ctrl button.mapboxgl-ctrl-shrink .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 29 29' xmlns='http://www.w3.org/2000/svg' fill='%23fff'%3E %3Cpath d='M18.5 16c-1.75 0-2.5.75-2.5 2.5V24h1l1.5-3 5.5 4 1-1-4-5.5 3-1.5v-1h-5.5zM13 18.5c0-1.75-.75-2.5-2.5-2.5H5v1l3 1.5L4 24l1 1 5.5-4 1.5 3h1v-5.5zm3-8c0 1.75.75 2.5 2.5 2.5H24v-1l-3-1.5L25 5l-1-1-5.5 4L17 5h-1v5.5zM10.5 13c1.75 0 2.5-.75 2.5-2.5V5h-1l-1.5 3L5 4 4 5l4 5.5L5 12v1h5.5z'/%3E %3C/svg%3E")}}@media (-ms-high-contrast:black-on-white){.mapboxgl-ctrl button.mapboxgl-ctrl-fullscreen .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 29 29' xmlns='http://www.w3.org/2000/svg' fill='%23000'%3E %3Cpath d='M24 16v5.5c0 1.75-.75 2.5-2.5 2.5H16v-1l3-1.5-4-5.5 1-1 5.5 4 1.5-3h1zM6 16l1.5 3 5.5-4 1 1-4 5.5 3 1.5v1H7.5C5.75 24 5 23.25 5 21.5V16h1zm7-11v1l-3 1.5 4 5.5-1 1-5.5-4L6 13H5V7.5C5 5.75 5.75 5 7.5 5H13zm11 2.5c0-1.75-.75-2.5-2.5-2.5H16v1l3 1.5-4 5.5 1 1 5.5-4 1.5 3h1V7.5z'/%3E %3C/svg%3E")}.mapboxgl-ctrl button.mapboxgl-ctrl-shrink .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 29 29' xmlns='http://www.w3.org/2000/svg' fill='%23000'%3E %3Cpath d='M18.5 16c-1.75 0-2.5.75-2.5 2.5V24h1l1.5-3 5.5 4 1-1-4-5.5 3-1.5v-1h-5.5zM13 18.5c0-1.75-.75-2.5-2.5-2.5H5v1l3 1.5L4 24l1 1 5.5-4 1.5 3h1v-5.5zm3-8c0 1.75.75 2.5 2.5 2.5H24v-1l-3-1.5L25 5l-1-1-5.5 4L17 5h-1v5.5zM10.5 13c1.75 0 2.5-.75 2.5-2.5V5h-1l-1.5 3L5 4 4 5l4 5.5L5 12v1h5.5z'/%3E %3C/svg%3E")}}.mapboxgl-ctrl button.mapboxgl-ctrl-compass .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 29 29' xmlns='http://www.w3.org/2000/svg' fill='%23333'%3E %3Cpath d='M10.5 14l4-8 4 8h-8z'/%3E %3Cpath id='south' d='M10.5 16l4 8 4-8h-8z' fill='%23ccc'/%3E %3C/svg%3E")}@media (-ms-high-contrast:active){.mapboxgl-ctrl button.mapboxgl-ctrl-compass .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 29 29' xmlns='http://www.w3.org/2000/svg' fill='%23fff'%3E %3Cpath d='M10.5 14l4-8 4 8h-8z'/%3E %3Cpath id='south' d='M10.5 16l4 8 4-8h-8z' fill='%23999'/%3E %3C/svg%3E")}}@media (-ms-high-contrast:black-on-white){.mapboxgl-ctrl button.mapboxgl-ctrl-compass .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 29 29' xmlns='http://www.w3.org/2000/svg' fill='%23000'%3E %3Cpath d='M10.5 14l4-8 4 8h-8z'/%3E %3Cpath id='south' d='M10.5 16l4 8 4-8h-8z' fill='%23ccc'/%3E %3C/svg%3E")}}.mapboxgl-ctrl button.mapboxgl-ctrl-geolocate .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%23333'%3E %3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E %3Ccircle id='dot' cx='10' cy='10' r='2'/%3E %3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' display='none'/%3E %3C/svg%3E")}.mapboxgl-ctrl button.mapboxgl-ctrl-geolocate:disabled .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%23aaa'%3E %3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E %3Ccircle id='dot' cx='10' cy='10' r='2'/%3E %3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' fill='red'/%3E %3C/svg%3E")}.mapboxgl-ctrl button.mapboxgl-ctrl-geolocate.mapboxgl-ctrl-geolocate-active .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%2333b5e5'%3E %3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E %3Ccircle id='dot' cx='10' cy='10' r='2'/%3E %3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' display='none'/%3E %3C/svg%3E")}.mapboxgl-ctrl button.mapboxgl-ctrl-geolocate.mapboxgl-ctrl-geolocate-active-error .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%23e58978'%3E %3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E %3Ccircle id='dot' cx='10' cy='10' r='2'/%3E %3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' display='none'/%3E %3C/svg%3E")}.mapboxgl-ctrl button.mapboxgl-ctrl-geolocate.mapboxgl-ctrl-geolocate-background .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%2333b5e5'%3E %3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E %3Ccircle id='dot' cx='10' cy='10' r='2' display='none'/%3E %3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' display='none'/%3E %3C/svg%3E")}.mapboxgl-ctrl button.mapboxgl-ctrl-geolocate.mapboxgl-ctrl-geolocate-background-error .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%23e54e33'%3E %3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E %3Ccircle id='dot' cx='10' cy='10' r='2' display='none'/%3E %3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' display='none'/%3E %3C/svg%3E")}.mapboxgl-ctrl button.mapboxgl-ctrl-geolocate.mapboxgl-ctrl-geolocate-waiting .mapboxgl-ctrl-icon{animation:mapboxgl-spin 2s linear infinite}@media (-ms-high-contrast:active){.mapboxgl-ctrl button.mapboxgl-ctrl-geolocate .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%23fff'%3E %3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E %3Ccircle id='dot' cx='10' cy='10' r='2'/%3E %3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' display='none'/%3E %3C/svg%3E")}.mapboxgl-ctrl button.mapboxgl-ctrl-geolocate:disabled .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%23999'%3E %3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E %3Ccircle id='dot' cx='10' cy='10' r='2'/%3E %3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' fill='red'/%3E %3C/svg%3E")}.mapboxgl-ctrl button.mapboxgl-ctrl-geolocate.mapboxgl-ctrl-geolocate-active .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%2333b5e5'%3E %3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E %3Ccircle id='dot' cx='10' cy='10' r='2'/%3E %3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' display='none'/%3E %3C/svg%3E")}.mapboxgl-ctrl button.mapboxgl-ctrl-geolocate.mapboxgl-ctrl-geolocate-active-error .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%23e58978'%3E %3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E %3Ccircle id='dot' cx='10' cy='10' r='2'/%3E %3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' display='none'/%3E %3C/svg%3E")}.mapboxgl-ctrl button.mapboxgl-ctrl-geolocate.mapboxgl-ctrl-geolocate-background .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%2333b5e5'%3E %3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E %3Ccircle id='dot' cx='10' cy='10' r='2' display='none'/%3E %3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' display='none'/%3E %3C/svg%3E")}.mapboxgl-ctrl button.mapboxgl-ctrl-geolocate.mapboxgl-ctrl-geolocate-background-error .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%23e54e33'%3E %3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E %3Ccircle id='dot' cx='10' cy='10' r='2' display='none'/%3E %3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' display='none'/%3E %3C/svg%3E")}}@media (-ms-high-contrast:black-on-white){.mapboxgl-ctrl button.mapboxgl-ctrl-geolocate .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%23000'%3E %3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E %3Ccircle id='dot' cx='10' cy='10' r='2'/%3E %3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' display='none'/%3E %3C/svg%3E")}.mapboxgl-ctrl button.mapboxgl-ctrl-geolocate:disabled .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%23666'%3E %3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E %3Ccircle id='dot' cx='10' cy='10' r='2'/%3E %3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' fill='red'/%3E %3C/svg%3E")}}@keyframes mapboxgl-spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}a.mapboxgl-ctrl-logo{width:88px;height:23px;margin:0 0 -4px -4px;display:block;background-repeat:no-repeat;cursor:pointer;overflow:hidden;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='88' height='23' viewBox='0 0 88 23' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' fill-rule='evenodd'%3E %3Cdefs%3E %3Cpath id='logo' d='M11.5 2.25c5.105 0 9.25 4.145 9.25 9.25s-4.145 9.25-9.25 9.25-9.25-4.145-9.25-9.25 4.145-9.25 9.25-9.25zM6.997 15.983c-.051-.338-.828-5.802 2.233-8.873a4.395 4.395 0 013.13-1.28c1.27 0 2.49.51 3.39 1.42.91.9 1.42 2.12 1.42 3.39 0 1.18-.449 2.301-1.28 3.13C12.72 16.93 7 16 7 16l-.003-.017zM15.3 10.5l-2 .8-.8 2-.8-2-2-.8 2-.8.8-2 .8 2 2 .8z'/%3E %3Cpath id='text' d='M50.63 8c.13 0 .23.1.23.23V9c.7-.76 1.7-1.18 2.73-1.18 2.17 0 3.95 1.85 3.95 4.17s-1.77 4.19-3.94 4.19c-1.04 0-2.03-.43-2.74-1.18v3.77c0 .13-.1.23-.23.23h-1.4c-.13 0-.23-.1-.23-.23V8.23c0-.12.1-.23.23-.23h1.4zm-3.86.01c.01 0 .01 0 .01-.01.13 0 .22.1.22.22v7.55c0 .12-.1.23-.23.23h-1.4c-.13 0-.23-.1-.23-.23V15c-.7.76-1.69 1.19-2.73 1.19-2.17 0-3.94-1.87-3.94-4.19 0-2.32 1.77-4.19 3.94-4.19 1.03 0 2.02.43 2.73 1.18v-.75c0-.12.1-.23.23-.23h1.4zm26.375-.19a4.24 4.24 0 00-4.16 3.29c-.13.59-.13 1.19 0 1.77a4.233 4.233 0 004.17 3.3c2.35 0 4.26-1.87 4.26-4.19 0-2.32-1.9-4.17-4.27-4.17zM60.63 5c.13 0 .23.1.23.23v3.76c.7-.76 1.7-1.18 2.73-1.18 1.88 0 3.45 1.4 3.84 3.28.13.59.13 1.2 0 1.8-.39 1.88-1.96 3.29-3.84 3.29-1.03 0-2.02-.43-2.73-1.18v.77c0 .12-.1.23-.23.23h-1.4c-.13 0-.23-.1-.23-.23V5.23c0-.12.1-.23.23-.23h1.4zm-34 11h-1.4c-.13 0-.23-.11-.23-.23V8.22c.01-.13.1-.22.23-.22h1.4c.13 0 .22.11.23.22v.68c.5-.68 1.3-1.09 2.16-1.1h.03c1.09 0 2.09.6 2.6 1.55.45-.95 1.4-1.55 2.44-1.56 1.62 0 2.93 1.25 2.9 2.78l.03 5.2c0 .13-.1.23-.23.23h-1.41c-.13 0-.23-.11-.23-.23v-4.59c0-.98-.74-1.71-1.62-1.71-.8 0-1.46.7-1.59 1.62l.01 4.68c0 .13-.11.23-.23.23h-1.41c-.13 0-.23-.11-.23-.23v-4.59c0-.98-.74-1.71-1.62-1.71-.85 0-1.54.79-1.6 1.8v4.5c0 .13-.1.23-.23.23zm53.615 0h-1.61c-.04 0-.08-.01-.12-.03-.09-.06-.13-.19-.06-.28l2.43-3.71-2.39-3.65a.213.213 0 01-.03-.12c0-.12.09-.21.21-.21h1.61c.13 0 .24.06.3.17l1.41 2.37 1.4-2.37a.34.34 0 01.3-.17h1.6c.04 0 .08.01.12.03.09.06.13.19.06.28l-2.37 3.65 2.43 3.7c0 .05.01.09.01.13 0 .12-.09.21-.21.21h-1.61c-.13 0-.24-.06-.3-.17l-1.44-2.42-1.44 2.42a.34.34 0 01-.3.17zm-7.12-1.49c-1.33 0-2.42-1.12-2.42-2.51 0-1.39 1.08-2.52 2.42-2.52 1.33 0 2.42 1.12 2.42 2.51 0 1.39-1.08 2.51-2.42 2.52zm-19.865 0c-1.32 0-2.39-1.11-2.42-2.48v-.07c.02-1.38 1.09-2.49 2.4-2.49 1.32 0 2.41 1.12 2.41 2.51 0 1.39-1.07 2.52-2.39 2.53zm-8.11-2.48c-.01 1.37-1.09 2.47-2.41 2.47s-2.42-1.12-2.42-2.51c0-1.39 1.08-2.52 2.4-2.52 1.33 0 2.39 1.11 2.41 2.48l.02.08zm18.12 2.47c-1.32 0-2.39-1.11-2.41-2.48v-.06c.02-1.38 1.09-2.48 2.41-2.48s2.42 1.12 2.42 2.51c0 1.39-1.09 2.51-2.42 2.51z'/%3E %3C/defs%3E %3Cmask id='clip'%3E %3Crect x='0' y='0' width='100%25' height='100%25' fill='white'/%3E %3Cuse xlink:href='%23logo'/%3E %3Cuse xlink:href='%23text'/%3E %3C/mask%3E %3Cg id='outline' opacity='0.3' stroke='%23000' stroke-width='3'%3E %3Ccircle mask='url(/%23clip)' cx='11.5' cy='11.5' r='9.25'/%3E %3Cuse xlink:href='%23text' mask='url(/%23clip)'/%3E %3C/g%3E %3Cg id='fill' opacity='0.9' fill='%23fff'%3E %3Cuse xlink:href='%23logo'/%3E %3Cuse xlink:href='%23text'/%3E %3C/g%3E %3C/svg%3E")}a.mapboxgl-ctrl-logo.mapboxgl-compact{width:23px}@media (-ms-high-contrast:active){a.mapboxgl-ctrl-logo{background-color:transparent;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='88' height='23' viewBox='0 0 88 23' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' fill-rule='evenodd'%3E %3Cdefs%3E %3Cpath id='logo' d='M11.5 2.25c5.105 0 9.25 4.145 9.25 9.25s-4.145 9.25-9.25 9.25-9.25-4.145-9.25-9.25 4.145-9.25 9.25-9.25zM6.997 15.983c-.051-.338-.828-5.802 2.233-8.873a4.395 4.395 0 013.13-1.28c1.27 0 2.49.51 3.39 1.42.91.9 1.42 2.12 1.42 3.39 0 1.18-.449 2.301-1.28 3.13C12.72 16.93 7 16 7 16l-.003-.017zM15.3 10.5l-2 .8-.8 2-.8-2-2-.8 2-.8.8-2 .8 2 2 .8z'/%3E %3Cpath id='text' d='M50.63 8c.13 0 .23.1.23.23V9c.7-.76 1.7-1.18 2.73-1.18 2.17 0 3.95 1.85 3.95 4.17s-1.77 4.19-3.94 4.19c-1.04 0-2.03-.43-2.74-1.18v3.77c0 .13-.1.23-.23.23h-1.4c-.13 0-.23-.1-.23-.23V8.23c0-.12.1-.23.23-.23h1.4zm-3.86.01c.01 0 .01 0 .01-.01.13 0 .22.1.22.22v7.55c0 .12-.1.23-.23.23h-1.4c-.13 0-.23-.1-.23-.23V15c-.7.76-1.69 1.19-2.73 1.19-2.17 0-3.94-1.87-3.94-4.19 0-2.32 1.77-4.19 3.94-4.19 1.03 0 2.02.43 2.73 1.18v-.75c0-.12.1-.23.23-.23h1.4zm26.375-.19a4.24 4.24 0 00-4.16 3.29c-.13.59-.13 1.19 0 1.77a4.233 4.233 0 004.17 3.3c2.35 0 4.26-1.87 4.26-4.19 0-2.32-1.9-4.17-4.27-4.17zM60.63 5c.13 0 .23.1.23.23v3.76c.7-.76 1.7-1.18 2.73-1.18 1.88 0 3.45 1.4 3.84 3.28.13.59.13 1.2 0 1.8-.39 1.88-1.96 3.29-3.84 3.29-1.03 0-2.02-.43-2.73-1.18v.77c0 .12-.1.23-.23.23h-1.4c-.13 0-.23-.1-.23-.23V5.23c0-.12.1-.23.23-.23h1.4zm-34 11h-1.4c-.13 0-.23-.11-.23-.23V8.22c.01-.13.1-.22.23-.22h1.4c.13 0 .22.11.23.22v.68c.5-.68 1.3-1.09 2.16-1.1h.03c1.09 0 2.09.6 2.6 1.55.45-.95 1.4-1.55 2.44-1.56 1.62 0 2.93 1.25 2.9 2.78l.03 5.2c0 .13-.1.23-.23.23h-1.41c-.13 0-.23-.11-.23-.23v-4.59c0-.98-.74-1.71-1.62-1.71-.8 0-1.46.7-1.59 1.62l.01 4.68c0 .13-.11.23-.23.23h-1.41c-.13 0-.23-.11-.23-.23v-4.59c0-.98-.74-1.71-1.62-1.71-.85 0-1.54.79-1.6 1.8v4.5c0 .13-.1.23-.23.23zm53.615 0h-1.61c-.04 0-.08-.01-.12-.03-.09-.06-.13-.19-.06-.28l2.43-3.71-2.39-3.65a.213.213 0 01-.03-.12c0-.12.09-.21.21-.21h1.61c.13 0 .24.06.3.17l1.41 2.37 1.4-2.37a.34.34 0 01.3-.17h1.6c.04 0 .08.01.12.03.09.06.13.19.06.28l-2.37 3.65 2.43 3.7c0 .05.01.09.01.13 0 .12-.09.21-.21.21h-1.61c-.13 0-.24-.06-.3-.17l-1.44-2.42-1.44 2.42a.34.34 0 01-.3.17zm-7.12-1.49c-1.33 0-2.42-1.12-2.42-2.51 0-1.39 1.08-2.52 2.42-2.52 1.33 0 2.42 1.12 2.42 2.51 0 1.39-1.08 2.51-2.42 2.52zm-19.865 0c-1.32 0-2.39-1.11-2.42-2.48v-.07c.02-1.38 1.09-2.49 2.4-2.49 1.32 0 2.41 1.12 2.41 2.51 0 1.39-1.07 2.52-2.39 2.53zm-8.11-2.48c-.01 1.37-1.09 2.47-2.41 2.47s-2.42-1.12-2.42-2.51c0-1.39 1.08-2.52 2.4-2.52 1.33 0 2.39 1.11 2.41 2.48l.02.08zm18.12 2.47c-1.32 0-2.39-1.11-2.41-2.48v-.06c.02-1.38 1.09-2.48 2.41-2.48s2.42 1.12 2.42 2.51c0 1.39-1.09 2.51-2.42 2.51z'/%3E %3C/defs%3E %3Cmask id='clip'%3E %3Crect x='0' y='0' width='100%25' height='100%25' fill='white'/%3E %3Cuse xlink:href='%23logo'/%3E %3Cuse xlink:href='%23text'/%3E %3C/mask%3E %3Cg id='outline' opacity='1' stroke='%23000' stroke-width='3'%3E %3Ccircle mask='url(/%23clip)' cx='11.5' cy='11.5' r='9.25'/%3E %3Cuse xlink:href='%23text' mask='url(/%23clip)'/%3E %3C/g%3E %3Cg id='fill' opacity='1' fill='%23fff'%3E %3Cuse xlink:href='%23logo'/%3E %3Cuse xlink:href='%23text'/%3E %3C/g%3E %3C/svg%3E")}}@media (-ms-high-contrast:black-on-white){a.mapboxgl-ctrl-logo{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='88' height='23' viewBox='0 0 88 23' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' fill-rule='evenodd'%3E %3Cdefs%3E %3Cpath id='logo' d='M11.5 2.25c5.105 0 9.25 4.145 9.25 9.25s-4.145 9.25-9.25 9.25-9.25-4.145-9.25-9.25 4.145-9.25 9.25-9.25zM6.997 15.983c-.051-.338-.828-5.802 2.233-8.873a4.395 4.395 0 013.13-1.28c1.27 0 2.49.51 3.39 1.42.91.9 1.42 2.12 1.42 3.39 0 1.18-.449 2.301-1.28 3.13C12.72 16.93 7 16 7 16l-.003-.017zM15.3 10.5l-2 .8-.8 2-.8-2-2-.8 2-.8.8-2 .8 2 2 .8z'/%3E %3Cpath id='text' d='M50.63 8c.13 0 .23.1.23.23V9c.7-.76 1.7-1.18 2.73-1.18 2.17 0 3.95 1.85 3.95 4.17s-1.77 4.19-3.94 4.19c-1.04 0-2.03-.43-2.74-1.18v3.77c0 .13-.1.23-.23.23h-1.4c-.13 0-.23-.1-.23-.23V8.23c0-.12.1-.23.23-.23h1.4zm-3.86.01c.01 0 .01 0 .01-.01.13 0 .22.1.22.22v7.55c0 .12-.1.23-.23.23h-1.4c-.13 0-.23-.1-.23-.23V15c-.7.76-1.69 1.19-2.73 1.19-2.17 0-3.94-1.87-3.94-4.19 0-2.32 1.77-4.19 3.94-4.19 1.03 0 2.02.43 2.73 1.18v-.75c0-.12.1-.23.23-.23h1.4zm26.375-.19a4.24 4.24 0 00-4.16 3.29c-.13.59-.13 1.19 0 1.77a4.233 4.233 0 004.17 3.3c2.35 0 4.26-1.87 4.26-4.19 0-2.32-1.9-4.17-4.27-4.17zM60.63 5c.13 0 .23.1.23.23v3.76c.7-.76 1.7-1.18 2.73-1.18 1.88 0 3.45 1.4 3.84 3.28.13.59.13 1.2 0 1.8-.39 1.88-1.96 3.29-3.84 3.29-1.03 0-2.02-.43-2.73-1.18v.77c0 .12-.1.23-.23.23h-1.4c-.13 0-.23-.1-.23-.23V5.23c0-.12.1-.23.23-.23h1.4zm-34 11h-1.4c-.13 0-.23-.11-.23-.23V8.22c.01-.13.1-.22.23-.22h1.4c.13 0 .22.11.23.22v.68c.5-.68 1.3-1.09 2.16-1.1h.03c1.09 0 2.09.6 2.6 1.55.45-.95 1.4-1.55 2.44-1.56 1.62 0 2.93 1.25 2.9 2.78l.03 5.2c0 .13-.1.23-.23.23h-1.41c-.13 0-.23-.11-.23-.23v-4.59c0-.98-.74-1.71-1.62-1.71-.8 0-1.46.7-1.59 1.62l.01 4.68c0 .13-.11.23-.23.23h-1.41c-.13 0-.23-.11-.23-.23v-4.59c0-.98-.74-1.71-1.62-1.71-.85 0-1.54.79-1.6 1.8v4.5c0 .13-.1.23-.23.23zm53.615 0h-1.61c-.04 0-.08-.01-.12-.03-.09-.06-.13-.19-.06-.28l2.43-3.71-2.39-3.65a.213.213 0 01-.03-.12c0-.12.09-.21.21-.21h1.61c.13 0 .24.06.3.17l1.41 2.37 1.4-2.37a.34.34 0 01.3-.17h1.6c.04 0 .08.01.12.03.09.06.13.19.06.28l-2.37 3.65 2.43 3.7c0 .05.01.09.01.13 0 .12-.09.21-.21.21h-1.61c-.13 0-.24-.06-.3-.17l-1.44-2.42-1.44 2.42a.34.34 0 01-.3.17zm-7.12-1.49c-1.33 0-2.42-1.12-2.42-2.51 0-1.39 1.08-2.52 2.42-2.52 1.33 0 2.42 1.12 2.42 2.51 0 1.39-1.08 2.51-2.42 2.52zm-19.865 0c-1.32 0-2.39-1.11-2.42-2.48v-.07c.02-1.38 1.09-2.49 2.4-2.49 1.32 0 2.41 1.12 2.41 2.51 0 1.39-1.07 2.52-2.39 2.53zm-8.11-2.48c-.01 1.37-1.09 2.47-2.41 2.47s-2.42-1.12-2.42-2.51c0-1.39 1.08-2.52 2.4-2.52 1.33 0 2.39 1.11 2.41 2.48l.02.08zm18.12 2.47c-1.32 0-2.39-1.11-2.41-2.48v-.06c.02-1.38 1.09-2.48 2.41-2.48s2.42 1.12 2.42 2.51c0 1.39-1.09 2.51-2.42 2.51z'/%3E %3C/defs%3E %3Cmask id='clip'%3E %3Crect x='0' y='0' width='100%25' height='100%25' fill='white'/%3E %3Cuse xlink:href='%23logo'/%3E %3Cuse xlink:href='%23text'/%3E %3C/mask%3E %3Cg id='outline' opacity='1' stroke='%23fff' stroke-width='3' fill='%23fff'%3E %3Ccircle mask='url(/%23clip)' cx='11.5' cy='11.5' r='9.25'/%3E %3Cuse xlink:href='%23text' mask='url(/%23clip)'/%3E %3C/g%3E %3Cg id='fill' opacity='1' fill='%23000'%3E %3Cuse xlink:href='%23logo'/%3E %3Cuse xlink:href='%23text'/%3E %3C/g%3E %3C/svg%3E")}}.mapboxgl-ctrl.mapboxgl-ctrl-attrib{padding:0 5px;background-color:rgb(255 255 255/50%);margin:0}@media screen{.mapboxgl-ctrl-attrib.mapboxgl-compact{min-height:20px;padding:2px 24px 2px 0;margin:10px;position:relative;background-color:#fff;border-radius:12px}.mapboxgl-ctrl-attrib.mapboxgl-compact-show{padding:2px 28px 2px 8px;visibility:visible}.mapboxgl-ctrl-bottom-left>.mapboxgl-ctrl-attrib.mapboxgl-compact-show,.mapboxgl-ctrl-top-left>.mapboxgl-ctrl-attrib.mapboxgl-compact-show{padding:2px 8px 2px 28px;border-radius:12px}.mapboxgl-ctrl-attrib.mapboxgl-compact .mapboxgl-ctrl-attrib-inner{display:none}.mapboxgl-ctrl-attrib-button{display:none;cursor:pointer;position:absolute;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='24' height='24' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill-rule='evenodd'%3E %3Cpath d='M4 10a6 6 0 1 0 12 0 6 6 0 1 0-12 0m5-3a1 1 0 1 0 2 0 1 1 0 1 0-2 0m0 3a1 1 0 1 1 2 0v3a1 1 0 1 1-2 0'/%3E %3C/svg%3E");background-color:rgb(255 255 255/50%);width:24px;height:24px;box-sizing:border-box;border-radius:12px;outline:none;top:0;right:0;border:0}.mapboxgl-ctrl-bottom-left .mapboxgl-ctrl-attrib-button,.mapboxgl-ctrl-top-left .mapboxgl-ctrl-attrib-button{left:0}.mapboxgl-ctrl-attrib.mapboxgl-compact-show .mapboxgl-ctrl-attrib-inner,.mapboxgl-ctrl-attrib.mapboxgl-compact .mapboxgl-ctrl-attrib-button{display:block}.mapboxgl-ctrl-attrib.mapboxgl-compact-show .mapboxgl-ctrl-attrib-button{background-color:rgb(0 0 0/5%)}.mapboxgl-ctrl-bottom-right>.mapboxgl-ctrl-attrib.mapboxgl-compact:after{bottom:0;right:0}.mapboxgl-ctrl-top-right>.mapboxgl-ctrl-attrib.mapboxgl-compact:after{top:0;right:0}.mapboxgl-ctrl-top-left>.mapboxgl-ctrl-attrib.mapboxgl-compact:after{top:0;left:0}.mapboxgl-ctrl-bottom-left>.mapboxgl-ctrl-attrib.mapboxgl-compact:after{bottom:0;left:0}}@media screen and (-ms-high-contrast:active){.mapboxgl-ctrl-attrib.mapboxgl-compact:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='24' height='24' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill-rule='evenodd' fill='%23fff'%3E %3Cpath d='M4 10a6 6 0 1 0 12 0 6 6 0 1 0-12 0m5-3a1 1 0 1 0 2 0 1 1 0 1 0-2 0m0 3a1 1 0 1 1 2 0v3a1 1 0 1 1-2 0'/%3E %3C/svg%3E")}}@media screen and (-ms-high-contrast:black-on-white){.mapboxgl-ctrl-attrib.mapboxgl-compact:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='24' height='24' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill-rule='evenodd'%3E %3Cpath d='M4 10a6 6 0 1 0 12 0 6 6 0 1 0-12 0m5-3a1 1 0 1 0 2 0 1 1 0 1 0-2 0m0 3a1 1 0 1 1 2 0v3a1 1 0 1 1-2 0'/%3E %3C/svg%3E")}}.mapboxgl-ctrl-attrib a{color:rgb(0 0 0/75%);text-decoration:none}.mapboxgl-ctrl-attrib a:hover{color:inherit;text-decoration:underline}.mapboxgl-ctrl-attrib .mapbox-improve-map{font-weight:700;margin-left:2px}.mapboxgl-attrib-empty{display:none}.mapboxgl-ctrl-scale{background-color:rgb(255 255 255/75%);font-size:10px;border:2px solid #333;border-top:#333;padding:0 5px;color:#333;box-sizing:border-box;white-space:nowrap}.mapboxgl-popup{position:absolute;top:0;left:0;display:flex;will-change:transform;pointer-events:none}.mapboxgl-popup-anchor-top,.mapboxgl-popup-anchor-top-left,.mapboxgl-popup-anchor-top-right{flex-direction:column}.mapboxgl-popup-anchor-bottom,.mapboxgl-popup-anchor-bottom-left,.mapboxgl-popup-anchor-bottom-right{flex-direction:column-reverse}.mapboxgl-popup-anchor-left{flex-direction:row}.mapboxgl-popup-anchor-right{flex-direction:row-reverse}.mapboxgl-popup-tip{width:0;height:0;border:10px solid transparent;z-index:1}.mapboxgl-popup-anchor-top .mapboxgl-popup-tip{align-self:center;border-top:none;border-bottom-color:#fff}.mapboxgl-popup-anchor-top-left .mapboxgl-popup-tip{align-self:flex-start;border-top:none;border-left:none;border-bottom-color:#fff}.mapboxgl-popup-anchor-top-right .mapboxgl-popup-tip{align-self:flex-end;border-top:none;border-right:none;border-bottom-color:#fff}.mapboxgl-popup-anchor-bottom .mapboxgl-popup-tip{align-self:center;border-bottom:none;border-top-color:#fff}.mapboxgl-popup-anchor-bottom-left .mapboxgl-popup-tip{align-self:flex-start;border-bottom:none;border-left:none;border-top-color:#fff}.mapboxgl-popup-anchor-bottom-right .mapboxgl-popup-tip{align-self:flex-end;border-bottom:none;border-right:none;border-top-color:#fff}.mapboxgl-popup-anchor-left .mapboxgl-popup-tip{align-self:center;border-left:none;border-right-color:#fff}.mapboxgl-popup-anchor-right .mapboxgl-popup-tip{align-self:center;border-right:none;border-left-color:#fff}.mapboxgl-popup-close-button{position:absolute;right:0;top:0;border:0;border-radius:0 3px 0 0;cursor:pointer;background-color:transparent}.mapboxgl-popup-close-button:hover{background-color:rgb(0 0 0/5%)}.mapboxgl-popup-content{position:relative;background:#fff;border-radius:3px;box-shadow:0 1px 2px rgb(0 0 0/10%);padding:10px 10px 15px;pointer-events:auto}.mapboxgl-popup-anchor-top-left .mapboxgl-popup-content{border-top-left-radius:0}.mapboxgl-popup-anchor-top-right .mapboxgl-popup-content{border-top-right-radius:0}.mapboxgl-popup-anchor-bottom-left .mapboxgl-popup-content{border-bottom-left-radius:0}.mapboxgl-popup-anchor-bottom-right .mapboxgl-popup-content{border-bottom-right-radius:0}.mapboxgl-popup-track-pointer{display:none}.mapboxgl-popup-track-pointer *{pointer-events:none;user-select:none}.mapboxgl-map:hover .mapboxgl-popup-track-pointer{display:flex}.mapboxgl-map:active .mapboxgl-popup-track-pointer{display:none}.mapboxgl-marker{position:absolute;top:0;left:0;will-change:transform;opacity:1;transition:opacity .2s}.mapboxgl-user-location-dot,.mapboxgl-user-location-dot:before{background-color:#1da1f2;width:15px;height:15px;border-radius:50%}.mapboxgl-user-location-dot:before{content:"";position:absolute;animation:mapboxgl-user-location-dot-pulse 2s infinite}.mapboxgl-user-location-dot:after{border-radius:50%;border:2px solid #fff;content:"";height:19px;left:-2px;position:absolute;top:-2px;width:19px;box-sizing:border-box;box-shadow:0 0 3px rgb(0 0 0/35%)}.mapboxgl-user-location-show-heading .mapboxgl-user-location-heading{width:0;height:0}.mapboxgl-user-location-show-heading .mapboxgl-user-location-heading:after,.mapboxgl-user-location-show-heading .mapboxgl-user-location-heading:before{content:"";border-bottom:7.5px solid #4aa1eb;position:absolute}.mapboxgl-user-location-show-heading .mapboxgl-user-location-heading:before{border-left:7.5px solid transparent;transform:translateY(-28px) skewY(-20deg)}.mapboxgl-user-location-show-heading .mapboxgl-user-location-heading:after{border-right:7.5px solid transparent;transform:translate(7.5px,-28px) skewY(20deg)}@keyframes mapboxgl-user-location-dot-pulse{0%{transform:scale(1);opacity:1}70%{transform:scale(3);opacity:0}to{transform:scale(1);opacity:0}}.mapboxgl-user-location-dot-stale{background-color:#aaa}.mapboxgl-user-location-dot-stale:after{display:none}.mapboxgl-user-location-accuracy-circle{background-color:rgba(29,161,242,.2);width:1px;height:1px;border-radius:100%}.mapboxgl-crosshair,.mapboxgl-crosshair .mapboxgl-interactive,.mapboxgl-crosshair .mapboxgl-interactive:active{cursor:crosshair}.mapboxgl-boxzoom{position:absolute;top:0;left:0;width:0;height:0;background:#fff;border:2px dotted #202020;opacity:.5}@media print{.mapbox-improve-map{display:none}}.mapboxgl-scroll-zoom-blocker,.mapboxgl-touch-pan-blocker{color:#fff;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif;justify-content:center;text-align:center;position:absolute;display:flex;align-items:center;top:0;left:0;width:100%;height:100%;background:rgb(0 0 0/70%);opacity:0;pointer-events:none;transition:opacity .75s ease-in-out;transition-delay:1s}.mapboxgl-scroll-zoom-blocker-show,.mapboxgl-touch-pan-blocker-show{opacity:1;transition:opacity .1s ease-in-out}.mapboxgl-canvas-container.mapboxgl-touch-pan-blocker-override.mapboxgl-scrollable-page,.mapboxgl-canvas-container.mapboxgl-touch-pan-blocker-override.mapboxgl-scrollable-page .mapboxgl-canvas{touch-action:pan-x pan-y}

/* Override default control style */
.mapbox-gl-draw_ctrl-bottom-left,
.mapbox-gl-draw_ctrl-top-left {
  margin-left:0;
  border-radius:0 4px 4px 0;
}
.mapbox-gl-draw_ctrl-top-right,
.mapbox-gl-draw_ctrl-bottom-right {
  margin-right:0;
  border-radius:4px 0 0 4px;
}

.mapbox-gl-draw_ctrl-draw-btn {
  border-color:rgba(0,0,0,0.9);
  color:rgba(255,255,255,0.5);
  width:30px;
  height:30px;
}

.mapbox-gl-draw_ctrl-draw-btn.active,
.mapbox-gl-draw_ctrl-draw-btn.active:hover {
  background-color:rgb(0 0 0/5%);
}
.mapbox-gl-draw_ctrl-draw-btn {
  background-repeat: no-repeat;
  background-position: center;
}

.mapbox-gl-draw_point {
  background-image: url('data:image/svg+xml;utf8,%3Csvg xmlns="http://www.w3.org/2000/svg" width="20" height="20">%3Cpath d="m10 2c-3.3 0-6 2.7-6 6s6 9 6 9 6-5.7 6-9-2.7-6-6-6zm0 2c2.1 0 3.8 1.7 3.8 3.8 0 1.5-1.8 3.9-2.9 5.2h-1.7c-1.1-1.4-2.9-3.8-2.9-5.2-.1-2.1 1.6-3.8 3.7-3.8z"/>%3C/svg>');
}
.mapbox-gl-draw_polygon {
  background-image: url('data:image/svg+xml;utf8,%3Csvg xmlns="http://www.w3.org/2000/svg" width="20" height="20">%3Cpath d="m15 12.3v-4.6c.6-.3 1-1 1-1.7 0-1.1-.9-2-2-2-.7 0-1.4.4-1.7 1h-4.6c-.3-.6-1-1-1.7-1-1.1 0-2 .9-2 2 0 .7.4 1.4 1 1.7v4.6c-.6.3-1 1-1 1.7 0 1.1.9 2 2 2 .7 0 1.4-.4 1.7-1h4.6c.3.6 1 1 1.7 1 1.1 0 2-.9 2-2 0-.7-.4-1.4-1-1.7zm-8-.3v-4l1-1h4l1 1v4l-1 1h-4z"/>%3C/svg>');
}
.mapbox-gl-draw_line {
  background-image: url('data:image/svg+xml;utf8,%3Csvg xmlns="http://www.w3.org/2000/svg" width="20" height="20">%3Cpath d="m13.5 3.5c-1.4 0-2.5 1.1-2.5 2.5 0 .3 0 .6.2.9l-3.8 3.8c-.3-.1-.6-.2-.9-.2-1.4 0-2.5 1.1-2.5 2.5s1.1 2.5 2.5 2.5 2.5-1.1 2.5-2.5c0-.3 0-.6-.2-.9l3.8-3.8c.3.1.6.2.9.2 1.4 0 2.5-1.1 2.5-2.5s-1.1-2.5-2.5-2.5z"/>%3C/svg>');
}
.mapbox-gl-draw_trash {
  background-image: url('data:image/svg+xml;utf8,%3Csvg xmlns="http://www.w3.org/2000/svg" width="20" height="20">%3Cpath d="M10,3.4 c-0.8,0-1.5,0.5-1.8,1.2H5l-1,1v1h12v-1l-1-1h-3.2C11.5,3.9,10.8,3.4,10,3.4z M5,8v7c0,1,1,2,2,2h6c1,0,2-1,2-2V8h-2v5.5h-1.5V8h-3 v5.5H7V8H5z"/>%3C/svg>');
}
.mapbox-gl-draw_uncombine {
  background-image: url('data:image/svg+xml;utf8,%3Csvg xmlns="http://www.w3.org/2000/svg" width="20" height="20">%3Cpath d="m12 2c-.3 0-.5.1-.7.3l-1 1c-.4.4-.4 1 0 1.4l1 1c.4.4 1 .4 1.4 0l1-1c.4-.4.4-1 0-1.4l-1-1c-.2-.2-.4-.3-.7-.3zm4 4c-.3 0-.5.1-.7.3l-1 1c-.4.4-.4 1 0 1.4l1 1c.4.4 1 .4 1.4 0l1-1c.4-.4.4-1 0-1.4l-1-1c-.2-.2-.4-.3-.7-.3zm-7 1c-1 0-1 1-.5 1.5.3.3 1 1 1 1l-1 1s-.5.5 0 1 1 0 1 0l1-1 1 1c.5.5 1.5.5 1.5-.5v-4zm-5 3c-.3 0-.5.1-.7.3l-1 1c-.4.4-.4 1 0 1.4l4.9 4.9c.4.4 1 .4 1.4 0l1-1c.4-.4.4-1 0-1.4l-4.9-4.9c-.1-.2-.4-.3-.7-.3z"/>%3C/svg>');
}
.mapbox-gl-draw_combine {
  background-image: url('data:image/svg+xml;utf8,%3Csvg xmlns="http://www.w3.org/2000/svg" width="20" height="20">%3Cpath d="M12.1,2c-0.3,0-0.5,0.1-0.7,0.3l-1,1c-0.4,0.4-0.4,1,0,1.4l4.9,4.9c0.4,0.4,1,0.4,1.4,0l1-1 c0.4-0.4,0.4-1,0-1.4l-4.9-4.9C12.6,2.1,12.3,2,12.1,2z M8,8C7,8,7,9,7.5,9.5c0.3,0.3,1,1,1,1l-1,1c0,0-0.5,0.5,0,1s1,0,1,0l1-1l1,1 C11,13,12,13,12,12V8H8z M4,10c-0.3,0-0.5,0.1-0.7,0.3l-1,1c-0.4,0.4-0.4,1,0,1.4l1,1c0.4,0.4,1,0.4,1.4,0l1-1c0.4-0.4,0.4-1,0-1.4 l-1-1C4.5,10.1,4.3,10,4,10z M8,14c-0.3,0-0.5,0.1-0.7,0.3l-1,1c-0.4,0.4-0.4,1,0,1.4l1,1c0.4,0.4,1,0.4,1.4,0l1-1 c0.4-0.4,0.4-1,0-1.4l-1-1C8.5,14.1,8.3,14,8,14z"/>%3C/svg>');
}

.mapboxgl-map.mouse-pointer .mapboxgl-canvas-container.mapboxgl-interactive {
  cursor: pointer;
}
.mapboxgl-map.mouse-move .mapboxgl-canvas-container.mapboxgl-interactive {
  cursor: move;
}
.mapboxgl-map.mouse-add .mapboxgl-canvas-container.mapboxgl-interactive {
  cursor: crosshair;
}
.mapboxgl-map.mouse-move.mode-direct_select .mapboxgl-canvas-container.mapboxgl-interactive {
  cursor: grab;
  cursor: -moz-grab;
  cursor: -webkit-grab;
}
.mapboxgl-map.mode-direct_select.feature-vertex.mouse-move .mapboxgl-canvas-container.mapboxgl-interactive {
  cursor: move;
}
.mapboxgl-map.mode-direct_select.feature-midpoint.mouse-pointer .mapboxgl-canvas-container.mapboxgl-interactive {
  cursor: cell;
}
.mapboxgl-map.mode-direct_select.feature-feature.mouse-move .mapboxgl-canvas-container.mapboxgl-interactive {
  cursor: move;
}
.mapboxgl-map.mode-static.mouse-pointer  .mapboxgl-canvas-container.mapboxgl-interactive {
  cursor: grab;
  cursor: -moz-grab;
  cursor: -webkit-grab;
}

.mapbox-gl-draw_boxselect {
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    background: rgba(0,0,0,.1);
    border: 2px dotted #fff;
    opacity: 0.5;
}
/*




















































 */
