@charset "UTF-8";
/*

 */
/*! X-editable - v1.5.1 
* In-place editing with Twitter Bootstrap, jQuery UI or pure jQuery
* http://github.com/vitalets/x-editable
* Copyright (c) 2013 Vitaliy Potapov; Licensed MIT */
@import url(//fonts.googleapis.com/css?family=Lato:300);
@import url(//fonts.googleapis.com/css?family=Lato:400);
@import url(//fonts.googleapis.com/css?family=Kaushan+Script);
/* line 6, vendor/assets/stylesheets/awesometheme/bootstrap-editable.css.scss */
.editableform {
  margin-bottom: 0;
  /* overwrites bootstrap margin */
}

/* line 10, vendor/assets/stylesheets/awesometheme/bootstrap-editable.css.scss */
.editableform .control-group {
  margin-bottom: 0;
  /* overwrites bootstrap margin */
  white-space: nowrap;
  /* prevent wrapping buttons on new line */
  line-height: 20px;
  /* overwriting bootstrap line-height. See #133 */
}

/* 
  BS3 width:1005 for inputs breaks editable form in popup 
  See: https://github.com/vitalets/x-editable/issues/393
*/
/* line 20, vendor/assets/stylesheets/awesometheme/bootstrap-editable.css.scss */
.editableform .form-control {
  width: auto;
}

/* line 24, vendor/assets/stylesheets/awesometheme/bootstrap-editable.css.scss */
.editable-buttons {
  display: inline-block;
  /* should be inline to take effect of parent's white-space: nowrap */
  vertical-align: top;
  margin-left: 7px;
  /* inline-block emulation for IE7*/
  zoom: 1;
  *display: inline;
}

/* line 33, vendor/assets/stylesheets/awesometheme/bootstrap-editable.css.scss */
.editable-buttons.editable-buttons-bottom {
  display: block;
  margin-top: 7px;
  margin-left: 0;
}

/* line 39, vendor/assets/stylesheets/awesometheme/bootstrap-editable.css.scss */
.editable-input {
  vertical-align: top;
  display: inline-block;
  /* should be inline to take effect of parent's white-space: nowrap */
  width: auto;
  /* bootstrap-responsive has width: 100% that breakes layout */
  white-space: normal;
  /* reset white-space decalred in parent*/
  /* display-inline emulation for IE7*/
  zoom: 1;
  *display: inline;
}

/* line 49, vendor/assets/stylesheets/awesometheme/bootstrap-editable.css.scss */
.editable-buttons .editable-cancel {
  margin-left: 7px;
}

/*for jquery-ui buttons need set height to look more pretty*/
/* line 54, vendor/assets/stylesheets/awesometheme/bootstrap-editable.css.scss */
.editable-buttons button.ui-button-icon-only {
  height: 24px;
  width: 30px;
}

/* line 59, vendor/assets/stylesheets/awesometheme/bootstrap-editable.css.scss */
.editableform-loading {
  background: url(/assets/awesometheme/loading-6f1c9a2c9e4932c71d86ded184887c41e4f8db70d5eecbca3b8a51a1c807adc3.gif) center center no-repeat;
  height: 25px;
  width: auto;
  min-width: 25px;
}

/* line 66, vendor/assets/stylesheets/awesometheme/bootstrap-editable.css.scss */
.editable-inline .editableform-loading {
  background-position: left 5px;
}

/* line 70, vendor/assets/stylesheets/awesometheme/bootstrap-editable.css.scss */
.editable-error-block {
  max-width: 300px;
  margin: 5px 0 0 0;
  width: auto;
  white-space: normal;
}

/*add padding for jquery ui*/
/* line 78, vendor/assets/stylesheets/awesometheme/bootstrap-editable.css.scss */
.editable-error-block.ui-state-error {
  padding: 3px;
}

/* line 82, vendor/assets/stylesheets/awesometheme/bootstrap-editable.css.scss */
.editable-error {
  color: red;
}

/* ---- For specific types ---- */
/* line 88, vendor/assets/stylesheets/awesometheme/bootstrap-editable.css.scss */
.editableform .editable-date {
  padding: 0;
  margin: 0;
  float: left;
}

/* move datepicker icon to center of add-on button. See https://github.com/vitalets/x-editable/issues/183 */
/* line 95, vendor/assets/stylesheets/awesometheme/bootstrap-editable.css.scss */
.editable-inline .add-on .icon-th {
  margin-top: 3px;
  margin-left: 1px;
}

/* checklist vertical alignment */
/* line 102, vendor/assets/stylesheets/awesometheme/bootstrap-editable.css.scss */
.editable-checklist label input[type="checkbox"],
.editable-checklist label span {
  vertical-align: middle;
  margin: 0;
}

/* line 108, vendor/assets/stylesheets/awesometheme/bootstrap-editable.css.scss */
.editable-checklist label {
  white-space: nowrap;
}

/* set exact width of textarea to fit buttons toolbar */
/* line 113, vendor/assets/stylesheets/awesometheme/bootstrap-editable.css.scss */
.editable-wysihtml5 {
  width: 566px;
  height: 250px;
}

/* clear button shown as link in date inputs */
/* line 119, vendor/assets/stylesheets/awesometheme/bootstrap-editable.css.scss */
.editable-clear {
  clear: both;
  font-size: 0.9em;
  text-decoration: none;
  text-align: right;
}

/* IOS-style clear button for text inputs */
/* line 127, vendor/assets/stylesheets/awesometheme/bootstrap-editable.css.scss */
.editable-clear-x {
  background: url(/assets/awesometheme/clear-f8be614091b91809de65cd902bae9b3d4cd0aaa5f6a936b9458862ff4f79c98b.png) center center no-repeat;
  display: block;
  width: 13px;
  height: 13px;
  position: absolute;
  opacity: 0.6;
  z-index: 100;
  top: 50%;
  right: 6px;
  margin-top: -6px;
}

/* line 142, vendor/assets/stylesheets/awesometheme/bootstrap-editable.css.scss */
.editable-clear-x:hover {
  opacity: 1;
}

/* line 146, vendor/assets/stylesheets/awesometheme/bootstrap-editable.css.scss */
.editable-pre-wrapped {
  white-space: pre-wrap;
}

/* line 149, vendor/assets/stylesheets/awesometheme/bootstrap-editable.css.scss */
.editable-container.editable-popup {
  max-width: none !important;
  /* without this rule poshytip/tooltip does not stretch */
}

/* line 153, vendor/assets/stylesheets/awesometheme/bootstrap-editable.css.scss */
.editable-container.popover {
  width: auto;
  /* without this rule popover does not stretch */
}

/* line 157, vendor/assets/stylesheets/awesometheme/bootstrap-editable.css.scss */
.editable-container.editable-inline {
  display: inline-block;
  vertical-align: middle;
  width: auto;
  /* inline-block emulation for IE7*/
  zoom: 1;
  *display: inline;
}

/* line 166, vendor/assets/stylesheets/awesometheme/bootstrap-editable.css.scss */
.editable-container.ui-widget {
  font-size: inherit;
  /* jqueryui widget font 1.1em too big, overwrite it */
  z-index: 9990;
  /* should be less than select2 dropdown z-index to close dropdown first when click */
}

/* line 170, vendor/assets/stylesheets/awesometheme/bootstrap-editable.css.scss */
.editable-click,
a.editable-click,
a.editable-click:hover {
  text-decoration: none;
  border-bottom: dashed 1px #0088cc;
}

/* line 177, vendor/assets/stylesheets/awesometheme/bootstrap-editable.css.scss */
.editable-click.editable-disabled,
a.editable-click.editable-disabled,
a.editable-click.editable-disabled:hover {
  color: #585858;
  cursor: default;
  border-bottom: none;
}

/* line 185, vendor/assets/stylesheets/awesometheme/bootstrap-editable.css.scss */
.editable-empty, .editable-empty:hover, .editable-empty:focus {
  font-style: italic;
  color: #DD1144;
  /* border-bottom: none; */
  text-decoration: none;
}

/* line 192, vendor/assets/stylesheets/awesometheme/bootstrap-editable.css.scss */
.editable-unsaved {
  font-weight: bold;
}

/* line 196, vendor/assets/stylesheets/awesometheme/bootstrap-editable.css.scss */
.editable-unsaved:after {
  /*    content: '*'*/
}

/* line 200, vendor/assets/stylesheets/awesometheme/bootstrap-editable.css.scss */
.editable-bg-transition {
  -webkit-transition: background-color 1400ms ease-out;
  -moz-transition: background-color 1400ms ease-out;
  -o-transition: background-color 1400ms ease-out;
  -ms-transition: background-color 1400ms ease-out;
  transition: background-color 1400ms ease-out;
}

/*see https://github.com/vitalets/x-editable/issues/139 */
/* line 209, vendor/assets/stylesheets/awesometheme/bootstrap-editable.css.scss */
.form-horizontal .editable {
  padding-top: 5px;
  display: inline-block;
}

/*!
 * Datepicker for Bootstrap
 *
 * Copyright 2012 Stefan Petre
 * Improvements by Andrew Rowls
 * Licensed under the Apache License v2.0
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 */
/* line 225, vendor/assets/stylesheets/awesometheme/bootstrap-editable.css.scss */
.datepicker {
  padding: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  direction: ltr;
  /*.dow {
		border-top: 1px solid #ddd !important;
	}*/
}

/* line 236, vendor/assets/stylesheets/awesometheme/bootstrap-editable.css.scss */
.datepicker-inline {
  width: 220px;
}

/* line 239, vendor/assets/stylesheets/awesometheme/bootstrap-editable.css.scss */
.datepicker.datepicker-rtl {
  direction: rtl;
}

/* line 242, vendor/assets/stylesheets/awesometheme/bootstrap-editable.css.scss */
.datepicker.datepicker-rtl table tr td span {
  float: right;
}

/* line 245, vendor/assets/stylesheets/awesometheme/bootstrap-editable.css.scss */
.datepicker-dropdown {
  top: 0;
  left: 0;
}

/* line 249, vendor/assets/stylesheets/awesometheme/bootstrap-editable.css.scss */
.datepicker-dropdown:before {
  content: '';
  display: inline-block;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #ccc;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: -7px;
  left: 6px;
}

/* line 260, vendor/assets/stylesheets/awesometheme/bootstrap-editable.css.scss */
.datepicker-dropdown:after {
  content: '';
  display: inline-block;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #ffffff;
  position: absolute;
  top: -6px;
  left: 7px;
}

/* line 270, vendor/assets/stylesheets/awesometheme/bootstrap-editable.css.scss */
.datepicker > div {
  display: none;
}

/* line 273, vendor/assets/stylesheets/awesometheme/bootstrap-editable.css.scss */
.datepicker.days div.datepicker-days {
  display: block;
}

/* line 276, vendor/assets/stylesheets/awesometheme/bootstrap-editable.css.scss */
.datepicker.months div.datepicker-months {
  display: block;
}

/* line 279, vendor/assets/stylesheets/awesometheme/bootstrap-editable.css.scss */
.datepicker.years div.datepicker-years {
  display: block;
}

/* line 282, vendor/assets/stylesheets/awesometheme/bootstrap-editable.css.scss */
.datepicker table {
  margin: 0;
}

/* line 285, vendor/assets/stylesheets/awesometheme/bootstrap-editable.css.scss */
.datepicker td,
.datepicker th {
  text-align: center;
  width: 20px;
  height: 20px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  border: none;
}

/* line 295, vendor/assets/stylesheets/awesometheme/bootstrap-editable.css.scss */
.table-striped .datepicker table tr td,
.table-striped .datepicker table tr th {
  background-color: transparent;
}

/* line 299, vendor/assets/stylesheets/awesometheme/bootstrap-editable.css.scss */
.datepicker table tr td.day:hover {
  background: #eeeeee;
  cursor: pointer;
}

/* line 303, vendor/assets/stylesheets/awesometheme/bootstrap-editable.css.scss */
.datepicker table tr td.old,
.datepicker table tr td.new {
  color: #999999;
}

/* line 307, vendor/assets/stylesheets/awesometheme/bootstrap-editable.css.scss */
.datepicker table tr td.disabled,
.datepicker table tr td.disabled:hover {
  background: none;
  color: #999999;
  cursor: default;
}

/* line 313, vendor/assets/stylesheets/awesometheme/bootstrap-editable.css.scss */
.datepicker table tr td.today,
.datepicker table tr td.today:hover,
.datepicker table tr td.today.disabled,
.datepicker table tr td.today.disabled:hover {
  background-color: #fde19a;
  background-image: -moz-linear-gradient(top, #fdd49a, #fdf59a);
  background-image: -ms-linear-gradient(top, #fdd49a, #fdf59a);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fdd49a), to(#fdf59a));
  background-image: -webkit-linear-gradient(top, #fdd49a, #fdf59a);
  background-image: -o-linear-gradient(top, #fdd49a, #fdf59a);
  background-image: linear-gradient(top, #fdd49a, #fdf59a);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fdd49a', endColorstr='#fdf59a', GradientType=0);
  border-color: #fdf59a #fdf59a #fbed50;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  color: #000;
}

/* line 331, vendor/assets/stylesheets/awesometheme/bootstrap-editable.css.scss */
.datepicker table tr td.today:hover,
.datepicker table tr td.today:hover:hover,
.datepicker table tr td.today.disabled:hover,
.datepicker table tr td.today.disabled:hover:hover,
.datepicker table tr td.today:active,
.datepicker table tr td.today:hover:active,
.datepicker table tr td.today.disabled:active,
.datepicker table tr td.today.disabled:hover:active,
.datepicker table tr td.today.active,
.datepicker table tr td.today.active:hover,
.datepicker table tr td.today.disabled.active,
.datepicker table tr td.today.disabled.active:hover,
.datepicker table tr td.today.disabled,
.datepicker table tr td.today.disabled:hover,
.datepicker table tr td.today.disabled.disabled,
.datepicker table tr td.today.disabled.disabled:hover,
.datepicker table tr td.today[disabled],
.datepicker table tr td.today[disabled]:hover,
.datepicker table tr td.today.disabled[disabled],
.datepicker table tr td.today.disabled[disabled]:hover {
  background-color: #fdf59a;
}

/* line 353, vendor/assets/stylesheets/awesometheme/bootstrap-editable.css.scss */
.datepicker table tr td.today:active,
.datepicker table tr td.today:hover:active,
.datepicker table tr td.today.disabled:active,
.datepicker table tr td.today.disabled:hover:active,
.datepicker table tr td.today.active,
.datepicker table tr td.today.active:hover,
.datepicker table tr td.today.disabled.active,
.datepicker table tr td.today.disabled.active:hover {
  background-color: #fbf069 \9;
}

/* line 363, vendor/assets/stylesheets/awesometheme/bootstrap-editable.css.scss */
.datepicker table tr td.today:hover:hover {
  color: #000;
}

/* line 366, vendor/assets/stylesheets/awesometheme/bootstrap-editable.css.scss */
.datepicker table tr td.today.active:hover {
  color: #fff;
}

/* line 369, vendor/assets/stylesheets/awesometheme/bootstrap-editable.css.scss */
.datepicker table tr td.range,
.datepicker table tr td.range:hover,
.datepicker table tr td.range.disabled,
.datepicker table tr td.range.disabled:hover {
  background: #eeeeee;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}

/* line 378, vendor/assets/stylesheets/awesometheme/bootstrap-editable.css.scss */
.datepicker table tr td.range.today,
.datepicker table tr td.range.today:hover,
.datepicker table tr td.range.today.disabled,
.datepicker table tr td.range.today.disabled:hover {
  background-color: #f3d17a;
  background-image: -moz-linear-gradient(top, #f3c17a, #f3e97a);
  background-image: -ms-linear-gradient(top, #f3c17a, #f3e97a);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f3c17a), to(#f3e97a));
  background-image: -webkit-linear-gradient(top, #f3c17a, #f3e97a);
  background-image: -o-linear-gradient(top, #f3c17a, #f3e97a);
  background-image: linear-gradient(top, #f3c17a, #f3e97a);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f3c17a', endColorstr='#f3e97a', GradientType=0);
  border-color: #f3e97a #f3e97a #edde34;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}

/* line 398, vendor/assets/stylesheets/awesometheme/bootstrap-editable.css.scss */
.datepicker table tr td.range.today:hover,
.datepicker table tr td.range.today:hover:hover,
.datepicker table tr td.range.today.disabled:hover,
.datepicker table tr td.range.today.disabled:hover:hover,
.datepicker table tr td.range.today:active,
.datepicker table tr td.range.today:hover:active,
.datepicker table tr td.range.today.disabled:active,
.datepicker table tr td.range.today.disabled:hover:active,
.datepicker table tr td.range.today.active,
.datepicker table tr td.range.today.active:hover,
.datepicker table tr td.range.today.disabled.active,
.datepicker table tr td.range.today.disabled.active:hover,
.datepicker table tr td.range.today.disabled,
.datepicker table tr td.range.today.disabled:hover,
.datepicker table tr td.range.today.disabled.disabled,
.datepicker table tr td.range.today.disabled.disabled:hover,
.datepicker table tr td.range.today[disabled],
.datepicker table tr td.range.today[disabled]:hover,
.datepicker table tr td.range.today.disabled[disabled],
.datepicker table tr td.range.today.disabled[disabled]:hover {
  background-color: #f3e97a;
}

/* line 420, vendor/assets/stylesheets/awesometheme/bootstrap-editable.css.scss */
.datepicker table tr td.range.today:active,
.datepicker table tr td.range.today:hover:active,
.datepicker table tr td.range.today.disabled:active,
.datepicker table tr td.range.today.disabled:hover:active,
.datepicker table tr td.range.today.active,
.datepicker table tr td.range.today.active:hover,
.datepicker table tr td.range.today.disabled.active,
.datepicker table tr td.range.today.disabled.active:hover {
  background-color: #efe24b \9;
}

/* line 430, vendor/assets/stylesheets/awesometheme/bootstrap-editable.css.scss */
.datepicker table tr td.selected,
.datepicker table tr td.selected:hover,
.datepicker table tr td.selected.disabled,
.datepicker table tr td.selected.disabled:hover {
  background-color: #9e9e9e;
  background-image: -moz-linear-gradient(top, #b3b3b3, #808080);
  background-image: -ms-linear-gradient(top, #b3b3b3, #808080);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#b3b3b3), to(#808080));
  background-image: -webkit-linear-gradient(top, #b3b3b3, #808080);
  background-image: -o-linear-gradient(top, #b3b3b3, #808080);
  background-image: linear-gradient(top, #b3b3b3, #808080);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#b3b3b3', endColorstr='#808080', GradientType=0);
  border-color: #808080 #808080 #595959;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}

/* line 449, vendor/assets/stylesheets/awesometheme/bootstrap-editable.css.scss */
.datepicker table tr td.selected:hover,
.datepicker table tr td.selected:hover:hover,
.datepicker table tr td.selected.disabled:hover,
.datepicker table tr td.selected.disabled:hover:hover,
.datepicker table tr td.selected:active,
.datepicker table tr td.selected:hover:active,
.datepicker table tr td.selected.disabled:active,
.datepicker table tr td.selected.disabled:hover:active,
.datepicker table tr td.selected.active,
.datepicker table tr td.selected.active:hover,
.datepicker table tr td.selected.disabled.active,
.datepicker table tr td.selected.disabled.active:hover,
.datepicker table tr td.selected.disabled,
.datepicker table tr td.selected.disabled:hover,
.datepicker table tr td.selected.disabled.disabled,
.datepicker table tr td.selected.disabled.disabled:hover,
.datepicker table tr td.selected[disabled],
.datepicker table tr td.selected[disabled]:hover,
.datepicker table tr td.selected.disabled[disabled],
.datepicker table tr td.selected.disabled[disabled]:hover {
  background-color: #808080;
}

/* line 471, vendor/assets/stylesheets/awesometheme/bootstrap-editable.css.scss */
.datepicker table tr td.selected:active,
.datepicker table tr td.selected:hover:active,
.datepicker table tr td.selected.disabled:active,
.datepicker table tr td.selected.disabled:hover:active,
.datepicker table tr td.selected.active,
.datepicker table tr td.selected.active:hover,
.datepicker table tr td.selected.disabled.active,
.datepicker table tr td.selected.disabled.active:hover {
  background-color: #666666 \9;
}

/* line 481, vendor/assets/stylesheets/awesometheme/bootstrap-editable.css.scss */
.datepicker table tr td.active,
.datepicker table tr td.active:hover,
.datepicker table tr td.active.disabled,
.datepicker table tr td.active.disabled:hover {
  background-color: #006dcc;
  background-image: -moz-linear-gradient(top, #0088cc, #0044cc);
  background-image: -ms-linear-gradient(top, #0088cc, #0044cc);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0044cc));
  background-image: -webkit-linear-gradient(top, #0088cc, #0044cc);
  background-image: -o-linear-gradient(top, #0088cc, #0044cc);
  background-image: linear-gradient(top, #0088cc, #0044cc);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0088cc', endColorstr='#0044cc', GradientType=0);
  border-color: #0044cc #0044cc #002a80;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}

/* line 500, vendor/assets/stylesheets/awesometheme/bootstrap-editable.css.scss */
.datepicker table tr td.active:hover,
.datepicker table tr td.active:hover:hover,
.datepicker table tr td.active.disabled:hover,
.datepicker table tr td.active.disabled:hover:hover,
.datepicker table tr td.active:active,
.datepicker table tr td.active:hover:active,
.datepicker table tr td.active.disabled:active,
.datepicker table tr td.active.disabled:hover:active,
.datepicker table tr td.active.active,
.datepicker table tr td.active.active:hover,
.datepicker table tr td.active.disabled.active,
.datepicker table tr td.active.disabled.active:hover,
.datepicker table tr td.active.disabled,
.datepicker table tr td.active.disabled:hover,
.datepicker table tr td.active.disabled.disabled,
.datepicker table tr td.active.disabled.disabled:hover,
.datepicker table tr td.active[disabled],
.datepicker table tr td.active[disabled]:hover,
.datepicker table tr td.active.disabled[disabled],
.datepicker table tr td.active.disabled[disabled]:hover {
  background-color: #0044cc;
}

/* line 522, vendor/assets/stylesheets/awesometheme/bootstrap-editable.css.scss */
.datepicker table tr td.active:active,
.datepicker table tr td.active:hover:active,
.datepicker table tr td.active.disabled:active,
.datepicker table tr td.active.disabled:hover:active,
.datepicker table tr td.active.active,
.datepicker table tr td.active.active:hover,
.datepicker table tr td.active.disabled.active,
.datepicker table tr td.active.disabled.active:hover {
  background-color: #003399 \9;
}

/* line 532, vendor/assets/stylesheets/awesometheme/bootstrap-editable.css.scss */
.datepicker table tr td span {
  display: block;
  width: 23%;
  height: 54px;
  line-height: 54px;
  float: left;
  margin: 1%;
  cursor: pointer;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

/* line 544, vendor/assets/stylesheets/awesometheme/bootstrap-editable.css.scss */
.datepicker table tr td span:hover {
  background: #eeeeee;
}

/* line 547, vendor/assets/stylesheets/awesometheme/bootstrap-editable.css.scss */
.datepicker table tr td span.disabled,
.datepicker table tr td span.disabled:hover {
  background: none;
  color: #999999;
  cursor: default;
}

/* line 553, vendor/assets/stylesheets/awesometheme/bootstrap-editable.css.scss */
.datepicker table tr td span.active,
.datepicker table tr td span.active:hover,
.datepicker table tr td span.active.disabled,
.datepicker table tr td span.active.disabled:hover {
  background-color: #006dcc;
  background-image: -moz-linear-gradient(top, #0088cc, #0044cc);
  background-image: -ms-linear-gradient(top, #0088cc, #0044cc);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0044cc));
  background-image: -webkit-linear-gradient(top, #0088cc, #0044cc);
  background-image: -o-linear-gradient(top, #0088cc, #0044cc);
  background-image: linear-gradient(top, #0088cc, #0044cc);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0088cc', endColorstr='#0044cc', GradientType=0);
  border-color: #0044cc #0044cc #002a80;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}

/* line 572, vendor/assets/stylesheets/awesometheme/bootstrap-editable.css.scss */
.datepicker table tr td span.active:hover,
.datepicker table tr td span.active:hover:hover,
.datepicker table tr td span.active.disabled:hover,
.datepicker table tr td span.active.disabled:hover:hover,
.datepicker table tr td span.active:active,
.datepicker table tr td span.active:hover:active,
.datepicker table tr td span.active.disabled:active,
.datepicker table tr td span.active.disabled:hover:active,
.datepicker table tr td span.active.active,
.datepicker table tr td span.active.active:hover,
.datepicker table tr td span.active.disabled.active,
.datepicker table tr td span.active.disabled.active:hover,
.datepicker table tr td span.active.disabled,
.datepicker table tr td span.active.disabled:hover,
.datepicker table tr td span.active.disabled.disabled,
.datepicker table tr td span.active.disabled.disabled:hover,
.datepicker table tr td span.active[disabled],
.datepicker table tr td span.active[disabled]:hover,
.datepicker table tr td span.active.disabled[disabled],
.datepicker table tr td span.active.disabled[disabled]:hover {
  background-color: #0044cc;
}

/* line 594, vendor/assets/stylesheets/awesometheme/bootstrap-editable.css.scss */
.datepicker table tr td span.active:active,
.datepicker table tr td span.active:hover:active,
.datepicker table tr td span.active.disabled:active,
.datepicker table tr td span.active.disabled:hover:active,
.datepicker table tr td span.active.active,
.datepicker table tr td span.active.active:hover,
.datepicker table tr td span.active.disabled.active,
.datepicker table tr td span.active.disabled.active:hover {
  background-color: #003399 \9;
}

/* line 604, vendor/assets/stylesheets/awesometheme/bootstrap-editable.css.scss */
.datepicker table tr td span.old,
.datepicker table tr td span.new {
  color: #999999;
}

/* line 608, vendor/assets/stylesheets/awesometheme/bootstrap-editable.css.scss */
.datepicker th.datepicker-switch {
  width: 145px;
}

/* line 611, vendor/assets/stylesheets/awesometheme/bootstrap-editable.css.scss */
.datepicker thead tr:first-child th,
.datepicker tfoot tr th {
  cursor: pointer;
}

/* line 615, vendor/assets/stylesheets/awesometheme/bootstrap-editable.css.scss */
.datepicker thead tr:first-child th:hover,
.datepicker tfoot tr th:hover {
  background: #eeeeee;
}

/* line 619, vendor/assets/stylesheets/awesometheme/bootstrap-editable.css.scss */
.datepicker .cw {
  font-size: 10px;
  width: 12px;
  padding: 0 2px 0 5px;
  vertical-align: middle;
}

/* line 625, vendor/assets/stylesheets/awesometheme/bootstrap-editable.css.scss */
.datepicker thead tr:first-child th.cw {
  cursor: default;
  background-color: transparent;
}

/* line 629, vendor/assets/stylesheets/awesometheme/bootstrap-editable.css.scss */
.input-append.date .add-on i,
.input-prepend.date .add-on i {
  display: block;
  cursor: pointer;
  width: 16px;
  height: 16px;
}

/* line 636, vendor/assets/stylesheets/awesometheme/bootstrap-editable.css.scss */
.input-daterange input {
  text-align: center;
}

/* line 639, vendor/assets/stylesheets/awesometheme/bootstrap-editable.css.scss */
.input-daterange input:first-child {
  -webkit-border-radius: 3px 0 0 3px;
  -moz-border-radius: 3px 0 0 3px;
  border-radius: 3px 0 0 3px;
}

/* line 644, vendor/assets/stylesheets/awesometheme/bootstrap-editable.css.scss */
.input-daterange input:last-child {
  -webkit-border-radius: 0 3px 3px 0;
  -moz-border-radius: 0 3px 3px 0;
  border-radius: 0 3px 3px 0;
}

/* line 649, vendor/assets/stylesheets/awesometheme/bootstrap-editable.css.scss */
.input-daterange .add-on {
  display: inline-block;
  width: auto;
  min-width: 16px;
  height: 18px;
  padding: 4px 5px;
  font-weight: normal;
  line-height: 18px;
  text-align: center;
  text-shadow: 0 1px 0 #ffffff;
  vertical-align: middle;
  background-color: #eeeeee;
  border: 1px solid #ccc;
  margin-left: -5px;
  margin-right: -5px;
}

/*!
 * 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 */
/* line 9, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

/* line 19, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body {
  margin: 0;
}

/* line 33, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/* line 54, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

/* line 67, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
audio:not([controls]) {
  display: none;
  height: 0;
}

/* line 77, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
[hidden],
template {
  display: none;
}

/* line 89, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
a {
  background-color: transparent;
}

/* line 98, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
a:active,
a:hover {
  outline: 0;
}

/* line 111, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}

/* line 121, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
b,
strong {
  font-weight: bold;
}

/* line 130, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
dfn {
  font-style: italic;
}

/* line 139, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* line 148, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
mark {
  background: #ff0;
  color: #000;
}

/* line 157, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
small {
  font-size: 80%;
}

/* line 165, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

/* line 173, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
sup {
  top: -0.5em;
}

/* line 177, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
sub {
  bottom: -0.25em;
}

/* line 188, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
img {
  border: 0;
}

/* line 196, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
svg:not(:root) {
  overflow: hidden;
}

/* line 207, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
figure {
  margin: 1em 40px;
}

/* line 215, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
hr {
  box-sizing: content-box;
  height: 0;
}

/* line 224, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
pre {
  overflow: auto;
}

/* line 232, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* line 255, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

/* line 269, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
button {
  overflow: visible;
}

/* line 280, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
button,
select {
  text-transform: none;
}

/* line 293, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

/* line 305, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
button[disabled],
html input[disabled] {
  cursor: default;
}

/* line 314, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/* line 325, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
input {
  line-height: normal;
}

/* line 337, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

/* line 349, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/* line 359, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
input[type="search"] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
}

/* line 370, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/* line 379, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/* line 390, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
legend {
  border: 0;
  padding: 0;
}

/* line 399, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
textarea {
  overflow: auto;
}

/* line 408, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
optgroup {
  font-weight: bold;
}

/* line 419, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* line 424, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
td,
th {
  padding: 0;
}

/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
@media print {
  /* line 9, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_print.scss */
  *,
*:before,
*:after {
    color: #000 !important;
    text-shadow: none !important;
    background: transparent !important;
    box-shadow: none !important;
  }
  /* line 18, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_print.scss */
  a,
a:visited {
    text-decoration: underline;
  }
  /* line 23, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_print.scss */
  a[href]:after {
    content: " (" attr(href) ")";
  }
  /* line 27, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_print.scss */
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  /* line 33, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_print.scss */
  a[href^="#"]:after,
a[href^="javascript:"]:after {
    content: "";
  }
  /* line 38, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_print.scss */
  pre,
blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  /* line 44, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_print.scss */
  thead {
    display: table-header-group;
  }
  /* line 48, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_print.scss */
  tr,
img {
    page-break-inside: avoid;
  }
  /* line 53, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_print.scss */
  img {
    max-width: 100% !important;
  }
  /* line 57, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_print.scss */
  p,
h2,
h3 {
    orphans: 3;
    widows: 3;
  }
  /* line 64, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_print.scss */
  h2,
h3 {
    page-break-after: avoid;
  }
  /* line 72, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_print.scss */
  .navbar {
    display: none;
  }
  /* line 77, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_print.scss */
  .btn > .caret,
.dropup > .btn > .caret {
    border-top-color: #000 !important;
  }
  /* line 81, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_print.scss */
  .label {
    border: 1px solid #000;
  }
  /* line 85, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_print.scss */
  .table {
    border-collapse: collapse !important;
  }
  /* line 88, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_print.scss */
  .table td,
.table th {
    background-color: #fff !important;
  }
  /* line 94, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_print.scss */
  .table-bordered th,
.table-bordered td {
    border: 1px solid #ddd !important;
  }
}

@font-face {
  font-family: "Glyphicons Halflings";
  src: url(/../fonts/bootstrap/glyphicons-halflings-regular.eot);
  src: url(/../fonts/bootstrap/glyphicons-halflings-regular.eot?#iefix) format("embedded-opentype"), url(/../fonts/bootstrap/glyphicons-halflings-regular.woff2) format("woff2"), url(/../fonts/bootstrap/glyphicons-halflings-regular.woff) format("woff"), url(/../fonts/bootstrap/glyphicons-halflings-regular.ttf) format("truetype"), url(/../fonts/bootstrap/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format("svg");
}

/* line 24, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.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;
}

/* line 37, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-asterisk:before {
  content: "\002a";
}

/* line 38, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-plus:before {
  content: "\002b";
}

/* line 40, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-euro:before,
.glyphicon-eur:before {
  content: "\20ac";
}

/* line 41, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-minus:before {
  content: "\2212";
}

/* line 42, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-cloud:before {
  content: "\2601";
}

/* line 43, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-envelope:before {
  content: "\2709";
}

/* line 44, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-pencil:before {
  content: "\270f";
}

/* line 45, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-glass:before {
  content: "\e001";
}

/* line 46, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-music:before {
  content: "\e002";
}

/* line 47, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-search:before {
  content: "\e003";
}

/* line 48, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-heart:before {
  content: "\e005";
}

/* line 49, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-star:before {
  content: "\e006";
}

/* line 50, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-star-empty:before {
  content: "\e007";
}

/* line 51, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-user:before {
  content: "\e008";
}

/* line 52, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-film:before {
  content: "\e009";
}

/* line 53, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-th-large:before {
  content: "\e010";
}

/* line 54, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-th:before {
  content: "\e011";
}

/* line 55, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-th-list:before {
  content: "\e012";
}

/* line 56, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-ok:before {
  content: "\e013";
}

/* line 57, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-remove:before {
  content: "\e014";
}

/* line 58, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-zoom-in:before {
  content: "\e015";
}

/* line 59, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-zoom-out:before {
  content: "\e016";
}

/* line 60, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-off:before {
  content: "\e017";
}

/* line 61, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-signal:before {
  content: "\e018";
}

/* line 62, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-cog:before {
  content: "\e019";
}

/* line 63, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-trash:before {
  content: "\e020";
}

/* line 64, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-home:before {
  content: "\e021";
}

/* line 65, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-file:before {
  content: "\e022";
}

/* line 66, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-time:before {
  content: "\e023";
}

/* line 67, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-road:before {
  content: "\e024";
}

/* line 68, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-download-alt:before {
  content: "\e025";
}

/* line 69, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-download:before {
  content: "\e026";
}

/* line 70, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-upload:before {
  content: "\e027";
}

/* line 71, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-inbox:before {
  content: "\e028";
}

/* line 72, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-play-circle:before {
  content: "\e029";
}

/* line 73, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-repeat:before {
  content: "\e030";
}

/* line 74, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-refresh:before {
  content: "\e031";
}

/* line 75, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-list-alt:before {
  content: "\e032";
}

/* line 76, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-lock:before {
  content: "\e033";
}

/* line 77, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-flag:before {
  content: "\e034";
}

/* line 78, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-headphones:before {
  content: "\e035";
}

/* line 79, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-volume-off:before {
  content: "\e036";
}

/* line 80, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-volume-down:before {
  content: "\e037";
}

/* line 81, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-volume-up:before {
  content: "\e038";
}

/* line 82, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-qrcode:before {
  content: "\e039";
}

/* line 83, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-barcode:before {
  content: "\e040";
}

/* line 84, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-tag:before {
  content: "\e041";
}

/* line 85, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-tags:before {
  content: "\e042";
}

/* line 86, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-book:before {
  content: "\e043";
}

/* line 87, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-bookmark:before {
  content: "\e044";
}

/* line 88, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-print:before {
  content: "\e045";
}

/* line 89, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-camera:before {
  content: "\e046";
}

/* line 90, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-font:before {
  content: "\e047";
}

/* line 91, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-bold:before {
  content: "\e048";
}

/* line 92, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-italic:before {
  content: "\e049";
}

/* line 93, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-text-height:before {
  content: "\e050";
}

/* line 94, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-text-width:before {
  content: "\e051";
}

/* line 95, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-align-left:before {
  content: "\e052";
}

/* line 96, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-align-center:before {
  content: "\e053";
}

/* line 97, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-align-right:before {
  content: "\e054";
}

/* line 98, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-align-justify:before {
  content: "\e055";
}

/* line 99, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-list:before {
  content: "\e056";
}

/* line 100, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-indent-left:before {
  content: "\e057";
}

/* line 101, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-indent-right:before {
  content: "\e058";
}

/* line 102, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-facetime-video:before {
  content: "\e059";
}

/* line 103, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-picture:before {
  content: "\e060";
}

/* line 104, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-map-marker:before {
  content: "\e062";
}

/* line 105, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-adjust:before {
  content: "\e063";
}

/* line 106, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-tint:before {
  content: "\e064";
}

/* line 107, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-edit:before {
  content: "\e065";
}

/* line 108, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-share:before {
  content: "\e066";
}

/* line 109, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-check:before {
  content: "\e067";
}

/* line 110, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-move:before {
  content: "\e068";
}

/* line 111, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-step-backward:before {
  content: "\e069";
}

/* line 112, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-fast-backward:before {
  content: "\e070";
}

/* line 113, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-backward:before {
  content: "\e071";
}

/* line 114, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-play:before {
  content: "\e072";
}

/* line 115, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-pause:before {
  content: "\e073";
}

/* line 116, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-stop:before {
  content: "\e074";
}

/* line 117, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-forward:before {
  content: "\e075";
}

/* line 118, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-fast-forward:before {
  content: "\e076";
}

/* line 119, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-step-forward:before {
  content: "\e077";
}

/* line 120, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-eject:before {
  content: "\e078";
}

/* line 121, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-chevron-left:before {
  content: "\e079";
}

/* line 122, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-chevron-right:before {
  content: "\e080";
}

/* line 123, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-plus-sign:before {
  content: "\e081";
}

/* line 124, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-minus-sign:before {
  content: "\e082";
}

/* line 125, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-remove-sign:before {
  content: "\e083";
}

/* line 126, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-ok-sign:before {
  content: "\e084";
}

/* line 127, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-question-sign:before {
  content: "\e085";
}

/* line 128, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-info-sign:before {
  content: "\e086";
}

/* line 129, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-screenshot:before {
  content: "\e087";
}

/* line 130, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-remove-circle:before {
  content: "\e088";
}

/* line 131, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-ok-circle:before {
  content: "\e089";
}

/* line 132, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-ban-circle:before {
  content: "\e090";
}

/* line 133, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-arrow-left:before {
  content: "\e091";
}

/* line 134, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-arrow-right:before {
  content: "\e092";
}

/* line 135, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-arrow-up:before {
  content: "\e093";
}

/* line 136, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-arrow-down:before {
  content: "\e094";
}

/* line 137, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-share-alt:before {
  content: "\e095";
}

/* line 138, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-resize-full:before {
  content: "\e096";
}

/* line 139, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-resize-small:before {
  content: "\e097";
}

/* line 140, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-exclamation-sign:before {
  content: "\e101";
}

/* line 141, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-gift:before {
  content: "\e102";
}

/* line 142, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-leaf:before {
  content: "\e103";
}

/* line 143, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-fire:before {
  content: "\e104";
}

/* line 144, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-eye-open:before {
  content: "\e105";
}

/* line 145, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-eye-close:before {
  content: "\e106";
}

/* line 146, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-warning-sign:before {
  content: "\e107";
}

/* line 147, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-plane:before {
  content: "\e108";
}

/* line 148, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-calendar:before {
  content: "\e109";
}

/* line 149, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-random:before {
  content: "\e110";
}

/* line 150, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-comment:before {
  content: "\e111";
}

/* line 151, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-magnet:before {
  content: "\e112";
}

/* line 152, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-chevron-up:before {
  content: "\e113";
}

/* line 153, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-chevron-down:before {
  content: "\e114";
}

/* line 154, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-retweet:before {
  content: "\e115";
}

/* line 155, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-shopping-cart:before {
  content: "\e116";
}

/* line 156, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-folder-close:before {
  content: "\e117";
}

/* line 157, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-folder-open:before {
  content: "\e118";
}

/* line 158, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-resize-vertical:before {
  content: "\e119";
}

/* line 159, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-resize-horizontal:before {
  content: "\e120";
}

/* line 160, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-hdd:before {
  content: "\e121";
}

/* line 161, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-bullhorn:before {
  content: "\e122";
}

/* line 162, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-bell:before {
  content: "\e123";
}

/* line 163, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-certificate:before {
  content: "\e124";
}

/* line 164, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-thumbs-up:before {
  content: "\e125";
}

/* line 165, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-thumbs-down:before {
  content: "\e126";
}

/* line 166, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-hand-right:before {
  content: "\e127";
}

/* line 167, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-hand-left:before {
  content: "\e128";
}

/* line 168, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-hand-up:before {
  content: "\e129";
}

/* line 169, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-hand-down:before {
  content: "\e130";
}

/* line 170, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-circle-arrow-right:before {
  content: "\e131";
}

/* line 171, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-circle-arrow-left:before {
  content: "\e132";
}

/* line 172, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-circle-arrow-up:before {
  content: "\e133";
}

/* line 173, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-circle-arrow-down:before {
  content: "\e134";
}

/* line 174, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-globe:before {
  content: "\e135";
}

/* line 175, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-wrench:before {
  content: "\e136";
}

/* line 176, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-tasks:before {
  content: "\e137";
}

/* line 177, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-filter:before {
  content: "\e138";
}

/* line 178, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-briefcase:before {
  content: "\e139";
}

/* line 179, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-fullscreen:before {
  content: "\e140";
}

/* line 180, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-dashboard:before {
  content: "\e141";
}

/* line 181, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-paperclip:before {
  content: "\e142";
}

/* line 182, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-heart-empty:before {
  content: "\e143";
}

/* line 183, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-link:before {
  content: "\e144";
}

/* line 184, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-phone:before {
  content: "\e145";
}

/* line 185, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-pushpin:before {
  content: "\e146";
}

/* line 186, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-usd:before {
  content: "\e148";
}

/* line 187, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-gbp:before {
  content: "\e149";
}

/* line 188, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-sort:before {
  content: "\e150";
}

/* line 189, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-sort-by-alphabet:before {
  content: "\e151";
}

/* line 190, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-sort-by-alphabet-alt:before {
  content: "\e152";
}

/* line 191, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-sort-by-order:before {
  content: "\e153";
}

/* line 192, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-sort-by-order-alt:before {
  content: "\e154";
}

/* line 193, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-sort-by-attributes:before {
  content: "\e155";
}

/* line 194, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-sort-by-attributes-alt:before {
  content: "\e156";
}

/* line 195, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-unchecked:before {
  content: "\e157";
}

/* line 196, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-expand:before {
  content: "\e158";
}

/* line 197, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-collapse-down:before {
  content: "\e159";
}

/* line 198, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-collapse-up:before {
  content: "\e160";
}

/* line 199, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-log-in:before {
  content: "\e161";
}

/* line 200, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-flash:before {
  content: "\e162";
}

/* line 201, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-log-out:before {
  content: "\e163";
}

/* line 202, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-new-window:before {
  content: "\e164";
}

/* line 203, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-record:before {
  content: "\e165";
}

/* line 204, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-save:before {
  content: "\e166";
}

/* line 205, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-open:before {
  content: "\e167";
}

/* line 206, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-saved:before {
  content: "\e168";
}

/* line 207, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-import:before {
  content: "\e169";
}

/* line 208, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-export:before {
  content: "\e170";
}

/* line 209, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-send:before {
  content: "\e171";
}

/* line 210, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-floppy-disk:before {
  content: "\e172";
}

/* line 211, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-floppy-saved:before {
  content: "\e173";
}

/* line 212, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-floppy-remove:before {
  content: "\e174";
}

/* line 213, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-floppy-save:before {
  content: "\e175";
}

/* line 214, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-floppy-open:before {
  content: "\e176";
}

/* line 215, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-credit-card:before {
  content: "\e177";
}

/* line 216, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-transfer:before {
  content: "\e178";
}

/* line 217, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-cutlery:before {
  content: "\e179";
}

/* line 218, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-header:before {
  content: "\e180";
}

/* line 219, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-compressed:before {
  content: "\e181";
}

/* line 220, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-earphone:before {
  content: "\e182";
}

/* line 221, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-phone-alt:before {
  content: "\e183";
}

/* line 222, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-tower:before {
  content: "\e184";
}

/* line 223, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-stats:before {
  content: "\e185";
}

/* line 224, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-sd-video:before {
  content: "\e186";
}

/* line 225, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-hd-video:before {
  content: "\e187";
}

/* line 226, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-subtitles:before {
  content: "\e188";
}

/* line 227, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-sound-stereo:before {
  content: "\e189";
}

/* line 228, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-sound-dolby:before {
  content: "\e190";
}

/* line 229, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-sound-5-1:before {
  content: "\e191";
}

/* line 230, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-sound-6-1:before {
  content: "\e192";
}

/* line 231, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-sound-7-1:before {
  content: "\e193";
}

/* line 232, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-copyright-mark:before {
  content: "\e194";
}

/* line 233, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-registration-mark:before {
  content: "\e195";
}

/* line 234, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-cloud-download:before {
  content: "\e197";
}

/* line 235, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-cloud-upload:before {
  content: "\e198";
}

/* line 236, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-tree-conifer:before {
  content: "\e199";
}

/* line 237, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-tree-deciduous:before {
  content: "\e200";
}

/* line 238, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-cd:before {
  content: "\e201";
}

/* line 239, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-save-file:before {
  content: "\e202";
}

/* line 240, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-open-file:before {
  content: "\e203";
}

/* line 241, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-level-up:before {
  content: "\e204";
}

/* line 242, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-copy:before {
  content: "\e205";
}

/* line 243, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-paste:before {
  content: "\e206";
}

/* line 252, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-alert:before {
  content: "\e209";
}

/* line 253, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-equalizer:before {
  content: "\e210";
}

/* line 254, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-king:before {
  content: "\e211";
}

/* line 255, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-queen:before {
  content: "\e212";
}

/* line 256, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-pawn:before {
  content: "\e213";
}

/* line 257, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-bishop:before {
  content: "\e214";
}

/* line 258, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-knight:before {
  content: "\e215";
}

/* line 259, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-baby-formula:before {
  content: "\e216";
}

/* line 260, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-tent:before {
  content: "\26fa";
}

/* line 261, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-blackboard:before {
  content: "\e218";
}

/* line 262, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-bed:before {
  content: "\e219";
}

/* line 263, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-apple:before {
  content: "\f8ff";
}

/* line 264, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-erase:before {
  content: "\e221";
}

/* line 265, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-hourglass:before {
  content: "\231b";
}

/* line 266, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-lamp:before {
  content: "\e223";
}

/* line 267, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-duplicate:before {
  content: "\e224";
}

/* line 268, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-piggy-bank:before {
  content: "\e225";
}

/* line 269, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-scissors:before {
  content: "\e226";
}

/* line 270, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-bitcoin:before {
  content: "\e227";
}

/* line 271, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-btc:before {
  content: "\e227";
}

/* line 272, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-xbt:before {
  content: "\e227";
}

/* line 273, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-yen:before {
  content: "\00a5";
}

/* line 274, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-jpy:before {
  content: "\00a5";
}

/* line 275, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-ruble:before {
  content: "\20bd";
}

/* line 276, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-rub:before {
  content: "\20bd";
}

/* line 277, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-scale:before {
  content: "\e230";
}

/* line 278, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-ice-lolly:before {
  content: "\e231";
}

/* line 279, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-ice-lolly-tasted:before {
  content: "\e232";
}

/* line 280, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-education:before {
  content: "\e233";
}

/* line 281, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-option-horizontal:before {
  content: "\e234";
}

/* line 282, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-option-vertical:before {
  content: "\e235";
}

/* line 283, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-menu-hamburger:before {
  content: "\e236";
}

/* line 284, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-modal-window:before {
  content: "\e237";
}

/* line 285, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-oil:before {
  content: "\e238";
}

/* line 286, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-grain:before {
  content: "\e239";
}

/* line 287, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-sunglasses:before {
  content: "\e240";
}

/* line 288, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-text-size:before {
  content: "\e241";
}

/* line 289, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-text-color:before {
  content: "\e242";
}

/* line 290, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-text-background:before {
  content: "\e243";
}

/* line 291, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-object-align-top:before {
  content: "\e244";
}

/* line 292, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-object-align-bottom:before {
  content: "\e245";
}

/* line 293, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-object-align-horizontal:before {
  content: "\e246";
}

/* line 294, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-object-align-left:before {
  content: "\e247";
}

/* line 295, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-object-align-vertical:before {
  content: "\e248";
}

/* line 296, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-object-align-right:before {
  content: "\e249";
}

/* line 297, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-triangle-right:before {
  content: "\e250";
}

/* line 298, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-triangle-left:before {
  content: "\e251";
}

/* line 299, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-triangle-bottom:before {
  content: "\e252";
}

/* line 300, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-triangle-top:before {
  content: "\e253";
}

/* line 301, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-console:before {
  content: "\e254";
}

/* line 302, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-superscript:before {
  content: "\e255";
}

/* line 303, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-subscript:before {
  content: "\e256";
}

/* line 304, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-menu-left:before {
  content: "\e257";
}

/* line 305, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-menu-right:before {
  content: "\e258";
}

/* line 306, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-menu-down:before {
  content: "\e259";
}

/* line 307, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-menu-up:before {
  content: "\e260";
}

/* line 11, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_scaffolding.scss */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 14, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_scaffolding.scss */
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 22, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_scaffolding.scss */
html {
  font-size: 10px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* line 27, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_scaffolding.scss */
body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.428571429;
  color: #333333;
  background-color: #fff;
}

/* line 36, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_scaffolding.scss */
input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

/* line 48, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_scaffolding.scss */
a {
  color: #337ab7;
  text-decoration: none;
}

/* line 52, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_scaffolding.scss */
a:hover, a:focus {
  color: #23527c;
  text-decoration: underline;
}

/* line 58, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_scaffolding.scss */
a:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

/* line 69, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_scaffolding.scss */
figure {
  margin: 0;
}

/* line 76, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_scaffolding.scss */
img {
  vertical-align: middle;
}

/* line 81, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_scaffolding.scss */
.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}

/* line 86, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_scaffolding.scss */
.img-rounded {
  border-radius: 6px;
}

/* line 93, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_scaffolding.scss */
.img-thumbnail {
  padding: 4px;
  line-height: 1.428571429;
  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;
}

/* line 106, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_scaffolding.scss */
.img-circle {
  border-radius: 50%;
}

/* line 113, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_scaffolding.scss */
hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #eeeeee;
}

/* line 125, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_scaffolding.scss */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* line 141, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_scaffolding.scss */
.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

/* line 159, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_scaffolding.scss */
[role="button"] {
  cursor: pointer;
}

/* line 9, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  color: inherit;
}

/* line 16, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
h1 small,
h1 .small, h2 small,
h2 .small, h3 small,
h3 .small, h4 small,
h4 .small, h5 small,
h5 .small, h6 small,
h6 .small,
.h1 small,
.h1 .small, .h2 small,
.h2 .small, .h3 small,
.h3 .small, .h4 small,
.h4 .small, .h5 small,
.h5 .small, .h6 small,
.h6 .small {
  font-weight: 400;
  line-height: 1;
  color: #777777;
}

/* line 24, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
h1, .h1,
h2, .h2,
h3, .h3 {
  margin-top: 20px;
  margin-bottom: 10px;
}

/* line 30, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
h1 small,
h1 .small, .h1 small,
.h1 .small,
h2 small,
h2 .small, .h2 small,
.h2 .small,
h3 small,
h3 .small, .h3 small,
.h3 .small {
  font-size: 65%;
}

/* line 35, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
h4, .h4,
h5, .h5,
h6, .h6 {
  margin-top: 10px;
  margin-bottom: 10px;
}

/* line 41, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
h4 small,
h4 .small, .h4 small,
.h4 .small,
h5 small,
h5 .small, .h5 small,
.h5 .small,
h6 small,
h6 .small, .h6 small,
.h6 .small {
  font-size: 75%;
}

/* line 47, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
h1, .h1 {
  font-size: 36px;
}

/* line 48, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
h2, .h2 {
  font-size: 30px;
}

/* line 49, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
h3, .h3 {
  font-size: 24px;
}

/* line 50, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
h4, .h4 {
  font-size: 18px;
}

/* line 51, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
h5, .h5 {
  font-size: 14px;
}

/* line 52, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
h6, .h6 {
  font-size: 12px;
}

/* line 58, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
p {
  margin: 0 0 10px;
}

/* line 62, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
.lead {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
}

@media (min-width: 480px) {
  /* line 62, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
  .lead {
    font-size: 21px;
  }
}

/* line 78, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
small,
.small {
  font-size: 85%;
}

/* line 83, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
mark,
.mark {
  padding: .2em;
  background-color: #fcf8e3;
}

/* line 90, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
.text-left {
  text-align: left;
}

/* line 91, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
.text-right {
  text-align: right;
}

/* line 92, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
.text-center {
  text-align: center;
}

/* line 93, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
.text-justify {
  text-align: justify;
}

/* line 94, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
.text-nowrap {
  white-space: nowrap;
}

/* line 97, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
.text-lowercase {
  text-transform: lowercase;
}

/* line 98, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
.text-uppercase, .initialism {
  text-transform: uppercase;
}

/* line 99, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
.text-capitalize {
  text-transform: capitalize;
}

/* line 102, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
.text-muted {
  color: #777777;
}

/* line 5, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
.text-primary {
  color: #337ab7;
}

/* line 8, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
a.text-primary:hover,
a.text-primary:focus {
  color: #286090;
}

/* line 5, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
.text-success {
  color: #3c763d;
}

/* line 8, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
a.text-success:hover,
a.text-success:focus {
  color: #2b542c;
}

/* line 5, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
.text-info {
  color: #31708f;
}

/* line 8, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
a.text-info:hover,
a.text-info:focus {
  color: #245269;
}

/* line 5, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
.text-warning {
  color: #8a6d3b;
}

/* line 8, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
a.text-warning:hover,
a.text-warning:focus {
  color: #66512c;
}

/* line 5, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
.text-danger {
  color: #a94442;
}

/* line 8, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
a.text-danger:hover,
a.text-danger:focus {
  color: #843534;
}

/* line 119, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
.bg-primary {
  color: #fff;
}

/* line 5, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
.bg-primary {
  background-color: #337ab7;
}

/* line 8, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
a.bg-primary:hover,
a.bg-primary:focus {
  background-color: #286090;
}

/* line 5, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
.bg-success {
  background-color: #dff0d8;
}

/* line 8, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
a.bg-success:hover,
a.bg-success:focus {
  background-color: #c1e2b3;
}

/* line 5, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
.bg-info {
  background-color: #d9edf7;
}

/* line 8, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
a.bg-info:hover,
a.bg-info:focus {
  background-color: #afd9ee;
}

/* line 5, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
.bg-warning {
  background-color: #fcf8e3;
}

/* line 8, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
a.bg-warning:hover,
a.bg-warning:focus {
  background-color: #f7ecb5;
}

/* line 5, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
.bg-danger {
  background-color: #f2dede;
}

/* line 8, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
a.bg-danger:hover,
a.bg-danger:focus {
  background-color: #e4b9b9;
}

/* line 138, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
.page-header {
  padding-bottom: 9px;
  margin: 40px 0 20px;
  border-bottom: 1px solid #eeeeee;
}

/* line 149, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
ul,
ol {
  margin-top: 0;
  margin-bottom: 10px;
}

/* line 153, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
ul ul,
ul ol,
ol ul,
ol ol {
  margin-bottom: 0;
}

/* line 167, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
.list-unstyled {
  padding-left: 0;
  list-style: none;
}

/* line 173, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
.list-inline {
  padding-left: 0;
  list-style: none;
  margin-left: -5px;
}

/* line 177, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
.list-inline > li {
  display: inline-block;
  padding-right: 5px;
  padding-left: 5px;
}

/* line 185, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
dl {
  margin-top: 0;
  margin-bottom: 20px;
}

/* line 189, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
dt,
dd {
  line-height: 1.428571429;
}

/* line 193, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
dt {
  font-weight: 700;
}

/* line 196, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
dd {
  margin-left: 0;
}

/* line 14, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.dl-horizontal dd:before, .dl-horizontal dd:after {
  display: table;
  content: " ";
}

/* line 19, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.dl-horizontal dd:after {
  clear: both;
}

@media (min-width: 768px) {
  /* line 211, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
  .dl-horizontal dt {
    float: left;
    width: 160px;
    clear: left;
    text-align: right;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  /* line 218, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
  .dl-horizontal dd {
    margin-left: 180px;
  }
}

/* line 230, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
abbr[title],
abbr[data-original-title] {
  cursor: help;
}

/* line 235, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
.initialism {
  font-size: 90%;
}

/* line 241, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
blockquote {
  padding: 10px 20px;
  margin: 0 0 20px;
  font-size: 17.5px;
  border-left: 5px solid #eeeeee;
}

/* line 250, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
blockquote p:last-child,
blockquote ul:last-child,
blockquote ol:last-child {
  margin-bottom: 0;
}

/* line 257, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
blockquote footer,
blockquote small,
blockquote .small {
  display: block;
  font-size: 80%;
  line-height: 1.428571429;
  color: #777777;
}

/* line 265, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
blockquote footer:before,
blockquote small:before,
blockquote .small:before {
  content: "\2014 \00A0";
}

/* line 274, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
.blockquote-reverse,
blockquote.pull-right {
  padding-right: 15px;
  padding-left: 0;
  text-align: right;
  border-right: 5px solid #eeeeee;
  border-left: 0;
}

/* line 286, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
.blockquote-reverse footer:before,
.blockquote-reverse small:before,
.blockquote-reverse .small:before,
blockquote.pull-right footer:before,
blockquote.pull-right small:before,
blockquote.pull-right .small:before {
  content: "";
}

/* line 287, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
.blockquote-reverse footer:after,
.blockquote-reverse small:after,
.blockquote-reverse .small:after,
blockquote.pull-right footer:after,
blockquote.pull-right small:after,
blockquote.pull-right .small:after {
  content: "\00A0 \2014";
}

/* line 294, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
address {
  margin-bottom: 20px;
  font-style: normal;
  line-height: 1.428571429;
}

/* line 7, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_code.scss */
code,
kbd,
pre,
samp {
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
}

/* line 15, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_code.scss */
code {
  padding: 2px 4px;
  font-size: 90%;
  color: #c7254e;
  background-color: #f9f2f4;
  border-radius: 4px;
}

/* line 24, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_code.scss */
kbd {
  padding: 2px 4px;
  font-size: 90%;
  color: #fff;
  background-color: #333;
  border-radius: 3px;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
}

/* line 32, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_code.scss */
kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: 700;
  box-shadow: none;
}

/* line 41, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_code.scss */
pre {
  display: block;
  padding: 9.5px;
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.428571429;
  color: #333333;
  word-break: break-all;
  word-wrap: break-word;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* line 55, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_code.scss */
pre code {
  padding: 0;
  font-size: inherit;
  color: inherit;
  white-space: pre-wrap;
  background-color: transparent;
  border-radius: 0;
}

/* line 66, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_code.scss */
.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}

/* line 10, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_grid.scss */
.container {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

/* line 14, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.container:before, .container:after {
  display: table;
  content: " ";
}

/* line 19, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.container:after {
  clear: both;
}

@media (min-width: 480px) {
  /* line 10, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_grid.scss */
  .container {
    width: 750px;
  }
}

@media (min-width: 768px) {
  /* line 10, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_grid.scss */
  .container {
    width: 970px;
  }
}

@media (min-width: 992px) {
  /* line 10, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_grid.scss */
  .container {
    width: 1170px;
  }
}

/* line 30, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_grid.scss */
.container-fluid {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

/* line 14, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.container-fluid:before, .container-fluid:after {
  display: table;
  content: " ";
}

/* line 19, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.container-fluid:after {
  clear: both;
}

/* line 39, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_grid.scss */
.row {
  margin-right: -15px;
  margin-left: -15px;
}

/* line 14, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.row:before, .row:after {
  display: table;
  content: " ";
}

/* line 19, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.row:after {
  clear: both;
}

/* line 43, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_grid.scss */
.row-no-gutters {
  margin-right: 0;
  margin-left: 0;
}

/* line 47, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_grid.scss */
.row-no-gutters [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}

/* line 11, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.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;
}

/* line 27, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.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;
}

/* line 35, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-1 {
  width: 8.3333333333%;
}

/* line 35, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-2 {
  width: 16.6666666667%;
}

/* line 35, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-3 {
  width: 25%;
}

/* line 35, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-4 {
  width: 33.3333333333%;
}

/* line 35, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-5 {
  width: 41.6666666667%;
}

/* line 35, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-6 {
  width: 50%;
}

/* line 35, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-7 {
  width: 58.3333333333%;
}

/* line 35, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-8 {
  width: 66.6666666667%;
}

/* line 35, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-9 {
  width: 75%;
}

/* line 35, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-10 {
  width: 83.3333333333%;
}

/* line 35, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-11 {
  width: 91.6666666667%;
}

/* line 35, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-12 {
  width: 100%;
}

/* line 55, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-0 {
  right: auto;
}

/* line 50, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-1 {
  right: 8.3333333333%;
}

/* line 50, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-2 {
  right: 16.6666666667%;
}

/* line 50, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-3 {
  right: 25%;
}

/* line 50, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-4 {
  right: 33.3333333333%;
}

/* line 50, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-5 {
  right: 41.6666666667%;
}

/* line 50, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-6 {
  right: 50%;
}

/* line 50, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-7 {
  right: 58.3333333333%;
}

/* line 50, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-8 {
  right: 66.6666666667%;
}

/* line 50, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-9 {
  right: 75%;
}

/* line 50, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-10 {
  right: 83.3333333333%;
}

/* line 50, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-11 {
  right: 91.6666666667%;
}

/* line 50, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-12 {
  right: 100%;
}

/* line 45, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-0 {
  left: auto;
}

/* line 40, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-1 {
  left: 8.3333333333%;
}

/* line 40, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-2 {
  left: 16.6666666667%;
}

/* line 40, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-3 {
  left: 25%;
}

/* line 40, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-4 {
  left: 33.3333333333%;
}

/* line 40, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-5 {
  left: 41.6666666667%;
}

/* line 40, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-6 {
  left: 50%;
}

/* line 40, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-7 {
  left: 58.3333333333%;
}

/* line 40, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-8 {
  left: 66.6666666667%;
}

/* line 40, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-9 {
  left: 75%;
}

/* line 40, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-10 {
  left: 83.3333333333%;
}

/* line 40, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-11 {
  left: 91.6666666667%;
}

/* line 40, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-12 {
  left: 100%;
}

/* line 60, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-0 {
  margin-left: 0%;
}

/* line 60, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-1 {
  margin-left: 8.3333333333%;
}

/* line 60, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-2 {
  margin-left: 16.6666666667%;
}

/* line 60, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-3 {
  margin-left: 25%;
}

/* line 60, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-4 {
  margin-left: 33.3333333333%;
}

/* line 60, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-5 {
  margin-left: 41.6666666667%;
}

/* line 60, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-6 {
  margin-left: 50%;
}

/* line 60, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-7 {
  margin-left: 58.3333333333%;
}

/* line 60, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-8 {
  margin-left: 66.6666666667%;
}

/* line 60, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-9 {
  margin-left: 75%;
}

/* line 60, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-10 {
  margin-left: 83.3333333333%;
}

/* line 60, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-11 {
  margin-left: 91.6666666667%;
}

/* line 60, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-12 {
  margin-left: 100%;
}

@media (min-width: 480px) {
  /* line 27, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .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;
  }
  /* line 35, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-1 {
    width: 8.3333333333%;
  }
  /* line 35, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-2 {
    width: 16.6666666667%;
  }
  /* line 35, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-3 {
    width: 25%;
  }
  /* line 35, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-4 {
    width: 33.3333333333%;
  }
  /* line 35, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-5 {
    width: 41.6666666667%;
  }
  /* line 35, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-6 {
    width: 50%;
  }
  /* line 35, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-7 {
    width: 58.3333333333%;
  }
  /* line 35, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-8 {
    width: 66.6666666667%;
  }
  /* line 35, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-9 {
    width: 75%;
  }
  /* line 35, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-10 {
    width: 83.3333333333%;
  }
  /* line 35, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-11 {
    width: 91.6666666667%;
  }
  /* line 35, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-12 {
    width: 100%;
  }
  /* line 55, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-0 {
    right: auto;
  }
  /* line 50, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-1 {
    right: 8.3333333333%;
  }
  /* line 50, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-2 {
    right: 16.6666666667%;
  }
  /* line 50, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-3 {
    right: 25%;
  }
  /* line 50, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-4 {
    right: 33.3333333333%;
  }
  /* line 50, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-5 {
    right: 41.6666666667%;
  }
  /* line 50, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-6 {
    right: 50%;
  }
  /* line 50, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-7 {
    right: 58.3333333333%;
  }
  /* line 50, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-8 {
    right: 66.6666666667%;
  }
  /* line 50, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-9 {
    right: 75%;
  }
  /* line 50, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-10 {
    right: 83.3333333333%;
  }
  /* line 50, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-11 {
    right: 91.6666666667%;
  }
  /* line 50, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-12 {
    right: 100%;
  }
  /* line 45, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-0 {
    left: auto;
  }
  /* line 40, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-1 {
    left: 8.3333333333%;
  }
  /* line 40, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-2 {
    left: 16.6666666667%;
  }
  /* line 40, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-3 {
    left: 25%;
  }
  /* line 40, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-4 {
    left: 33.3333333333%;
  }
  /* line 40, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-5 {
    left: 41.6666666667%;
  }
  /* line 40, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-6 {
    left: 50%;
  }
  /* line 40, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-7 {
    left: 58.3333333333%;
  }
  /* line 40, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-8 {
    left: 66.6666666667%;
  }
  /* line 40, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-9 {
    left: 75%;
  }
  /* line 40, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-10 {
    left: 83.3333333333%;
  }
  /* line 40, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-11 {
    left: 91.6666666667%;
  }
  /* line 40, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-12 {
    left: 100%;
  }
  /* line 60, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-0 {
    margin-left: 0%;
  }
  /* line 60, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-1 {
    margin-left: 8.3333333333%;
  }
  /* line 60, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-2 {
    margin-left: 16.6666666667%;
  }
  /* line 60, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  /* line 60, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-4 {
    margin-left: 33.3333333333%;
  }
  /* line 60, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-5 {
    margin-left: 41.6666666667%;
  }
  /* line 60, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  /* line 60, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-7 {
    margin-left: 58.3333333333%;
  }
  /* line 60, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-8 {
    margin-left: 66.6666666667%;
  }
  /* line 60, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  /* line 60, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-10 {
    margin-left: 83.3333333333%;
  }
  /* line 60, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-11 {
    margin-left: 91.6666666667%;
  }
  /* line 60, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-12 {
    margin-left: 100%;
  }
}

@media (min-width: 768px) {
  /* line 27, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .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;
  }
  /* line 35, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-1 {
    width: 8.3333333333%;
  }
  /* line 35, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-2 {
    width: 16.6666666667%;
  }
  /* line 35, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-3 {
    width: 25%;
  }
  /* line 35, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-4 {
    width: 33.3333333333%;
  }
  /* line 35, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-5 {
    width: 41.6666666667%;
  }
  /* line 35, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-6 {
    width: 50%;
  }
  /* line 35, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-7 {
    width: 58.3333333333%;
  }
  /* line 35, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-8 {
    width: 66.6666666667%;
  }
  /* line 35, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-9 {
    width: 75%;
  }
  /* line 35, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-10 {
    width: 83.3333333333%;
  }
  /* line 35, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-11 {
    width: 91.6666666667%;
  }
  /* line 35, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-12 {
    width: 100%;
  }
  /* line 55, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-0 {
    right: auto;
  }
  /* line 50, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-1 {
    right: 8.3333333333%;
  }
  /* line 50, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-2 {
    right: 16.6666666667%;
  }
  /* line 50, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-3 {
    right: 25%;
  }
  /* line 50, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-4 {
    right: 33.3333333333%;
  }
  /* line 50, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-5 {
    right: 41.6666666667%;
  }
  /* line 50, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-6 {
    right: 50%;
  }
  /* line 50, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-7 {
    right: 58.3333333333%;
  }
  /* line 50, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-8 {
    right: 66.6666666667%;
  }
  /* line 50, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-9 {
    right: 75%;
  }
  /* line 50, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-10 {
    right: 83.3333333333%;
  }
  /* line 50, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-11 {
    right: 91.6666666667%;
  }
  /* line 50, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-12 {
    right: 100%;
  }
  /* line 45, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-0 {
    left: auto;
  }
  /* line 40, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-1 {
    left: 8.3333333333%;
  }
  /* line 40, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-2 {
    left: 16.6666666667%;
  }
  /* line 40, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-3 {
    left: 25%;
  }
  /* line 40, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-4 {
    left: 33.3333333333%;
  }
  /* line 40, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-5 {
    left: 41.6666666667%;
  }
  /* line 40, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-6 {
    left: 50%;
  }
  /* line 40, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-7 {
    left: 58.3333333333%;
  }
  /* line 40, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-8 {
    left: 66.6666666667%;
  }
  /* line 40, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-9 {
    left: 75%;
  }
  /* line 40, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-10 {
    left: 83.3333333333%;
  }
  /* line 40, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-11 {
    left: 91.6666666667%;
  }
  /* line 40, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-12 {
    left: 100%;
  }
  /* line 60, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-0 {
    margin-left: 0%;
  }
  /* line 60, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-1 {
    margin-left: 8.3333333333%;
  }
  /* line 60, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-2 {
    margin-left: 16.6666666667%;
  }
  /* line 60, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-3 {
    margin-left: 25%;
  }
  /* line 60, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-4 {
    margin-left: 33.3333333333%;
  }
  /* line 60, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-5 {
    margin-left: 41.6666666667%;
  }
  /* line 60, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-6 {
    margin-left: 50%;
  }
  /* line 60, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-7 {
    margin-left: 58.3333333333%;
  }
  /* line 60, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-8 {
    margin-left: 66.6666666667%;
  }
  /* line 60, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-9 {
    margin-left: 75%;
  }
  /* line 60, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-10 {
    margin-left: 83.3333333333%;
  }
  /* line 60, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-11 {
    margin-left: 91.6666666667%;
  }
  /* line 60, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-12 {
    margin-left: 100%;
  }
}

@media (min-width: 992px) {
  /* line 27, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .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;
  }
  /* line 35, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-1 {
    width: 8.3333333333%;
  }
  /* line 35, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-2 {
    width: 16.6666666667%;
  }
  /* line 35, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-3 {
    width: 25%;
  }
  /* line 35, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-4 {
    width: 33.3333333333%;
  }
  /* line 35, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-5 {
    width: 41.6666666667%;
  }
  /* line 35, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-6 {
    width: 50%;
  }
  /* line 35, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-7 {
    width: 58.3333333333%;
  }
  /* line 35, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-8 {
    width: 66.6666666667%;
  }
  /* line 35, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-9 {
    width: 75%;
  }
  /* line 35, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-10 {
    width: 83.3333333333%;
  }
  /* line 35, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-11 {
    width: 91.6666666667%;
  }
  /* line 35, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-12 {
    width: 100%;
  }
  /* line 55, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-0 {
    right: auto;
  }
  /* line 50, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-1 {
    right: 8.3333333333%;
  }
  /* line 50, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-2 {
    right: 16.6666666667%;
  }
  /* line 50, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-3 {
    right: 25%;
  }
  /* line 50, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-4 {
    right: 33.3333333333%;
  }
  /* line 50, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-5 {
    right: 41.6666666667%;
  }
  /* line 50, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-6 {
    right: 50%;
  }
  /* line 50, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-7 {
    right: 58.3333333333%;
  }
  /* line 50, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-8 {
    right: 66.6666666667%;
  }
  /* line 50, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-9 {
    right: 75%;
  }
  /* line 50, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-10 {
    right: 83.3333333333%;
  }
  /* line 50, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-11 {
    right: 91.6666666667%;
  }
  /* line 50, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-12 {
    right: 100%;
  }
  /* line 45, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-0 {
    left: auto;
  }
  /* line 40, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-1 {
    left: 8.3333333333%;
  }
  /* line 40, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-2 {
    left: 16.6666666667%;
  }
  /* line 40, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-3 {
    left: 25%;
  }
  /* line 40, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-4 {
    left: 33.3333333333%;
  }
  /* line 40, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-5 {
    left: 41.6666666667%;
  }
  /* line 40, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-6 {
    left: 50%;
  }
  /* line 40, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-7 {
    left: 58.3333333333%;
  }
  /* line 40, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-8 {
    left: 66.6666666667%;
  }
  /* line 40, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-9 {
    left: 75%;
  }
  /* line 40, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-10 {
    left: 83.3333333333%;
  }
  /* line 40, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-11 {
    left: 91.6666666667%;
  }
  /* line 40, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-12 {
    left: 100%;
  }
  /* line 60, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-0 {
    margin-left: 0%;
  }
  /* line 60, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-1 {
    margin-left: 8.3333333333%;
  }
  /* line 60, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-2 {
    margin-left: 16.6666666667%;
  }
  /* line 60, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  /* line 60, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-4 {
    margin-left: 33.3333333333%;
  }
  /* line 60, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-5 {
    margin-left: 41.6666666667%;
  }
  /* line 60, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  /* line 60, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-7 {
    margin-left: 58.3333333333%;
  }
  /* line 60, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-8 {
    margin-left: 66.6666666667%;
  }
  /* line 60, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  /* line 60, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-10 {
    margin-left: 83.3333333333%;
  }
  /* line 60, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-11 {
    margin-left: 91.6666666667%;
  }
  /* line 60, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-12 {
    margin-left: 100%;
  }
}

/* line 6, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
table {
  background-color: transparent;
}

/* line 13, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
table col[class*="col-"] {
  position: static;
  display: table-column;
  float: none;
}

/* line 21, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
table td[class*="col-"],
table th[class*="col-"] {
  position: static;
  display: table-cell;
  float: none;
}

/* line 29, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
caption {
  padding-top: 8px;
  padding-bottom: 8px;
  color: #777777;
  text-align: left;
}

/* line 36, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
th {
  text-align: left;
}

/* line 43, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
}

/* line 52, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
.table > thead > tr > th,
.table > thead > tr > td,
.table > tbody > tr > th,
.table > tbody > tr > td,
.table > tfoot > tr > th,
.table > tfoot > tr > td {
  padding: 8px;
  line-height: 1.428571429;
  vertical-align: top;
  border-top: 1px solid #ddd;
}

/* line 62, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
.table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 2px solid #ddd;
}

/* line 71, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
.table > caption + thead > tr:first-child > th,
.table > caption + thead > tr:first-child > td,
.table > colgroup + thead > tr:first-child > th,
.table > colgroup + thead > tr:first-child > td,
.table > thead:first-child > tr:first-child > th,
.table > thead:first-child > tr:first-child > td {
  border-top: 0;
}

/* line 78, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
.table > tbody + tbody {
  border-top: 2px solid #ddd;
}

/* line 83, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
.table .table {
  background-color: #fff;
}

/* line 96, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
.table-condensed > thead > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > th,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > th,
.table-condensed > tfoot > tr > td {
  padding: 5px;
}

/* line 109, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
.table-bordered {
  border: 1px solid #ddd;
}

/* line 115, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > th,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > th,
.table-bordered > tfoot > tr > td {
  border: 1px solid #ddd;
}

/* line 122, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td {
  border-bottom-width: 2px;
}

/* line 135, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
.table-striped > tbody > tr:nth-of-type(odd) {
  background-color: #f9f9f9;
}

/* line 146, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
.table-hover > tbody > tr:hover {
  background-color: #f5f5f5;
}

/* line 9, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */
.table > thead > tr > td.active,
.table > thead > tr > th.active, .table > thead > tr.active > td, .table > thead > tr.active > th,
.table > tbody > tr > td.active,
.table > tbody > tr > th.active,
.table > tbody > tr.active > td,
.table > tbody > tr.active > th,
.table > tfoot > tr > td.active,
.table > tfoot > tr > th.active,
.table > tfoot > tr.active > td,
.table > tfoot > tr.active > th {
  background-color: #f5f5f5;
}

/* line 17, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */
.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;
}

/* line 9, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */
.table > thead > tr > td.success,
.table > thead > tr > th.success, .table > thead > tr.success > td, .table > thead > tr.success > th,
.table > tbody > tr > td.success,
.table > tbody > tr > th.success,
.table > tbody > tr.success > td,
.table > tbody > tr.success > th,
.table > tfoot > tr > td.success,
.table > tfoot > tr > th.success,
.table > tfoot > tr.success > td,
.table > tfoot > tr.success > th {
  background-color: #dff0d8;
}

/* line 17, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */
.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;
}

/* line 9, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */
.table > thead > tr > td.info,
.table > thead > tr > th.info, .table > thead > tr.info > td, .table > thead > tr.info > th,
.table > tbody > tr > td.info,
.table > tbody > tr > th.info,
.table > tbody > tr.info > td,
.table > tbody > tr.info > th,
.table > tfoot > tr > td.info,
.table > tfoot > tr > th.info,
.table > tfoot > tr.info > td,
.table > tfoot > tr.info > th {
  background-color: #d9edf7;
}

/* line 17, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */
.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;
}

/* line 9, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */
.table > thead > tr > td.warning,
.table > thead > tr > th.warning, .table > thead > tr.warning > td, .table > thead > tr.warning > th,
.table > tbody > tr > td.warning,
.table > tbody > tr > th.warning,
.table > tbody > tr.warning > td,
.table > tbody > tr.warning > th,
.table > tfoot > tr > td.warning,
.table > tfoot > tr > th.warning,
.table > tfoot > tr.warning > td,
.table > tfoot > tr.warning > th {
  background-color: #fcf8e3;
}

/* line 17, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */
.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;
}

/* line 9, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */
.table > thead > tr > td.danger,
.table > thead > tr > th.danger, .table > thead > tr.danger > td, .table > thead > tr.danger > th,
.table > tbody > tr > td.danger,
.table > tbody > tr > th.danger,
.table > tbody > tr.danger > td,
.table > tbody > tr.danger > th,
.table > tfoot > tr > td.danger,
.table > tfoot > tr > th.danger,
.table > tfoot > tr.danger > td,
.table > tfoot > tr.danger > th {
  background-color: #f2dede;
}

/* line 17, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */
.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;
}

/* line 171, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
.table-responsive {
  min-height: .01%;
  overflow-x: auto;
}

@media screen and (max-width: 479px) {
  /* line 171, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
  .table-responsive {
    width: 100%;
    margin-bottom: 15px;
    overflow-y: hidden;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    border: 1px solid #ddd;
  }
  /* line 183, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
  .table-responsive > .table {
    margin-bottom: 0;
  }
  /* line 191, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
  .table-responsive > .table > thead > tr > th,
.table-responsive > .table > thead > tr > td,
.table-responsive > .table > tbody > tr > th,
.table-responsive > .table > tbody > tr > td,
.table-responsive > .table > tfoot > tr > th,
.table-responsive > .table > tfoot > tr > td {
    white-space: nowrap;
  }
  /* line 200, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
  .table-responsive > .table-bordered {
    border: 0;
  }
  /* line 208, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
  .table-responsive > .table-bordered > thead > tr > th:first-child,
.table-responsive > .table-bordered > thead > tr > td:first-child,
.table-responsive > .table-bordered > tbody > tr > th:first-child,
.table-responsive > .table-bordered > tbody > tr > td:first-child,
.table-responsive > .table-bordered > tfoot > tr > th:first-child,
.table-responsive > .table-bordered > tfoot > tr > td:first-child {
    border-left: 0;
  }
  /* line 212, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
  .table-responsive > .table-bordered > thead > tr > th:last-child,
.table-responsive > .table-bordered > thead > tr > td:last-child,
.table-responsive > .table-bordered > tbody > tr > th:last-child,
.table-responsive > .table-bordered > tbody > tr > td:last-child,
.table-responsive > .table-bordered > tfoot > tr > th:last-child,
.table-responsive > .table-bordered > tfoot > tr > td:last-child {
    border-right: 0;
  }
  /* line 225, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
  .table-responsive > .table-bordered > tbody > tr:last-child > th,
.table-responsive > .table-bordered > tbody > tr:last-child > td,
.table-responsive > .table-bordered > tfoot > tr:last-child > th,
.table-responsive > .table-bordered > tfoot > tr:last-child > td {
    border-bottom: 0;
  }
}

/* line 10, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

/* line 20, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
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;
}

/* line 32, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: 700;
}

/* line 46, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
input[type="search"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
}

/* line 61, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
input[type="radio"],
input[type="checkbox"] {
  margin: 4px 0 0;
  margin-top: 1px \9;
  line-height: normal;
}

/* line 71, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
input[type="radio"][disabled], input.disabled[type="radio"], fieldset[disabled] input[type="radio"],
input[type="checkbox"][disabled],
input.disabled[type="checkbox"], fieldset[disabled] input[type="checkbox"] {
  cursor: not-allowed;
}

/* line 78, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
input[type="file"] {
  display: block;
}

/* line 83, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
input[type="range"] {
  display: block;
  width: 100%;
}

/* line 89, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
select[multiple],
select[size] {
  height: auto;
}

/* line 95, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

/* line 102, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
output {
  display: block;
  padding-top: 7px;
  font-size: 14px;
  line-height: 1.428571429;
  color: #555555;
}

/* line 133, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
.form-control {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.428571429;
  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 0.15s, box-shadow ease-in-out 0.15s;
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

/* line 57, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
.form-control:focus {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}

/* line 103, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_vendor-prefixes.scss */
.form-control::-moz-placeholder {
  color: #999;
  opacity: 1;
}

/* line 107, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_vendor-prefixes.scss */
.form-control:-ms-input-placeholder {
  color: #999;
}

/* line 108, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_vendor-prefixes.scss */
.form-control::-webkit-input-placeholder {
  color: #999;
}

/* line 155, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}

/* line 165, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
  background-color: #eeeeee;
  opacity: 1;
}

/* line 172, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
.form-control[disabled], fieldset[disabled] .form-control {
  cursor: not-allowed;
}

/* line 181, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
textarea.form-control {
  height: auto;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  /* line 200, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  input.form-control[type="date"],
input.form-control[type="time"],
input.form-control[type="datetime-local"],
input.form-control[type="month"] {
    line-height: 34px;
  }
  /* line 204, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  input.input-sm[type="date"], .input-group-sm > .form-control[type="date"],
.input-group-sm > .input-group-addon[type="date"],
.input-group-sm > .input-group-btn > .btn[type="date"], .input-group-sm input[type="date"],
input.input-sm[type="time"],
.input-group-sm > .form-control[type="time"],
.input-group-sm > .input-group-addon[type="time"],
.input-group-sm > .input-group-btn > .btn[type="time"], .input-group-sm input[type="time"],
input.input-sm[type="datetime-local"],
.input-group-sm > .form-control[type="datetime-local"],
.input-group-sm > .input-group-addon[type="datetime-local"],
.input-group-sm > .input-group-btn > .btn[type="datetime-local"], .input-group-sm input[type="datetime-local"],
input.input-sm[type="month"],
.input-group-sm > .form-control[type="month"],
.input-group-sm > .input-group-addon[type="month"],
.input-group-sm > .input-group-btn > .btn[type="month"], .input-group-sm input[type="month"] {
    line-height: 30px;
  }
  /* line 209, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  input.input-lg[type="date"], .input-group-lg > .form-control[type="date"],
.input-group-lg > .input-group-addon[type="date"],
.input-group-lg > .input-group-btn > .btn[type="date"], .input-group-lg input[type="date"],
input.input-lg[type="time"],
.input-group-lg > .form-control[type="time"],
.input-group-lg > .input-group-addon[type="time"],
.input-group-lg > .input-group-btn > .btn[type="time"], .input-group-lg input[type="time"],
input.input-lg[type="datetime-local"],
.input-group-lg > .form-control[type="datetime-local"],
.input-group-lg > .input-group-addon[type="datetime-local"],
.input-group-lg > .input-group-btn > .btn[type="datetime-local"], .input-group-lg input[type="datetime-local"],
input.input-lg[type="month"],
.input-group-lg > .form-control[type="month"],
.input-group-lg > .input-group-addon[type="month"],
.input-group-lg > .input-group-btn > .btn[type="month"], .input-group-lg input[type="month"] {
    line-height: 46px;
  }
}

/* line 222, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
.form-group {
  margin-bottom: 15px;
}

/* line 231, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
.radio,
.checkbox {
  position: relative;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
}

/* line 241, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
.radio.disabled label, fieldset[disabled] .radio label,
.checkbox.disabled label, fieldset[disabled] .checkbox label {
  cursor: not-allowed;
}

/* line 246, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
.radio label,
.checkbox label {
  min-height: 20px;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: 400;
  cursor: pointer;
}

/* line 254, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
.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;
}

/* line 263, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
.radio + .radio,
.checkbox + .checkbox {
  margin-top: -5px;
}

/* line 269, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
.radio-inline,
.checkbox-inline {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: 400;
  vertical-align: middle;
  cursor: pointer;
}

/* line 280, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
.radio-inline.disabled, fieldset[disabled] .radio-inline,
.checkbox-inline.disabled, fieldset[disabled] .checkbox-inline {
  cursor: not-allowed;
}

/* line 285, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline {
  margin-top: 0;
  margin-left: 10px;
}

/* line 297, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
.form-control-static {
  min-height: 34px;
  padding-top: 7px;
  padding-bottom: 7px;
  margin-bottom: 0;
}

/* line 305, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
.form-control-static.input-lg, .input-group-lg > .form-control-static.form-control,
.input-group-lg > .form-control-static.input-group-addon,
.input-group-lg > .input-group-btn > .form-control-static.btn, .form-control-static.input-sm, .input-group-sm > .form-control-static.form-control,
.input-group-sm > .form-control-static.input-group-addon,
.input-group-sm > .input-group-btn > .form-control-static.btn {
  padding-right: 0;
  padding-left: 0;
}

/* line 71, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
.input-sm, .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;
}

/* line 79, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
select.input-sm, .input-group-sm > select.form-control,
.input-group-sm > select.input-group-addon,
.input-group-sm > .input-group-btn > select.btn {
  height: 30px;
  line-height: 30px;
}

/* line 84, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
textarea.input-sm, .input-group-sm > textarea.form-control,
.input-group-sm > textarea.input-group-addon,
.input-group-sm > .input-group-btn > textarea.btn,
select.input-sm[multiple],
.input-group-sm > .form-control[multiple],
.input-group-sm > .input-group-addon[multiple],
.input-group-sm > .input-group-btn > .btn[multiple] {
  height: auto;
}

/* line 323, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
.form-group-sm .form-control {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}

/* line 330, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
.form-group-sm select.form-control {
  height: 30px;
  line-height: 30px;
}

/* line 334, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
.form-group-sm textarea.form-control,
.form-group-sm select.form-control[multiple] {
  height: auto;
}

/* line 338, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
.form-group-sm .form-control-static {
  height: 30px;
  min-height: 32px;
  padding: 6px 10px;
  font-size: 12px;
  line-height: 1.5;
}

/* line 71, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
.input-lg, .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;
}

/* line 79, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
select.input-lg, .input-group-lg > select.form-control,
.input-group-lg > select.input-group-addon,
.input-group-lg > .input-group-btn > select.btn {
  height: 46px;
  line-height: 46px;
}

/* line 84, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
textarea.input-lg, .input-group-lg > textarea.form-control,
.input-group-lg > textarea.input-group-addon,
.input-group-lg > .input-group-btn > textarea.btn,
select.input-lg[multiple],
.input-group-lg > .form-control[multiple],
.input-group-lg > .input-group-addon[multiple],
.input-group-lg > .input-group-btn > .btn[multiple] {
  height: auto;
}

/* line 349, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
.form-group-lg .form-control {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}

/* line 356, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
.form-group-lg select.form-control {
  height: 46px;
  line-height: 46px;
}

/* line 360, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
.form-group-lg textarea.form-control,
.form-group-lg select.form-control[multiple] {
  height: auto;
}

/* line 364, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
.form-group-lg .form-control-static {
  height: 46px;
  min-height: 38px;
  padding: 11px 16px;
  font-size: 18px;
  line-height: 1.3333333;
}

/* line 378, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
.has-feedback {
  position: relative;
}

/* line 383, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
.has-feedback .form-control {
  padding-right: 42.5px;
}

/* line 388, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
.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;
}

/* line 400, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
.input-lg + .form-control-feedback, .input-group-lg > .form-control + .form-control-feedback,
.input-group-lg > .input-group-addon + .form-control-feedback,
.input-group-lg > .input-group-btn > .btn + .form-control-feedback,
.input-group-lg + .form-control-feedback,
.form-group-lg .form-control + .form-control-feedback {
  width: 46px;
  height: 46px;
  line-height: 46px;
}

/* line 407, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
.input-sm + .form-control-feedback, .input-group-sm > .form-control + .form-control-feedback,
.input-group-sm > .input-group-addon + .form-control-feedback,
.input-group-sm > .input-group-btn > .btn + .form-control-feedback,
.input-group-sm + .form-control-feedback,
.form-group-sm .form-control + .form-control-feedback {
  width: 30px;
  height: 30px;
  line-height: 30px;
}

/* line 8, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
.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;
}

/* line 21, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
.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);
}

/* line 24, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
.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;
}

/* line 31, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
.has-success .input-group-addon {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #3c763d;
}

/* line 37, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
.has-success .form-control-feedback {
  color: #3c763d;
}

/* line 8, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
.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;
}

/* line 21, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
.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);
}

/* line 24, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
.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;
}

/* line 31, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
.has-warning .input-group-addon {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #8a6d3b;
}

/* line 37, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
.has-warning .form-control-feedback {
  color: #8a6d3b;
}

/* line 8, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
.has-error .help-block, .field_with_errors .help-block,
.has-error .control-label,
.field_with_errors .control-label,
.has-error .radio,
.field_with_errors .radio,
.has-error .checkbox,
.field_with_errors .checkbox,
.has-error .radio-inline,
.field_with_errors .radio-inline,
.has-error .checkbox-inline,
.field_with_errors .checkbox-inline, .has-error.radio label, .radio.field_with_errors label, .has-error.checkbox label, .checkbox.field_with_errors label, .has-error.radio-inline label, .radio-inline.field_with_errors label, .has-error.checkbox-inline label, .checkbox-inline.field_with_errors label {
  color: #a94442;
}

/* line 21, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
.has-error .form-control, .field_with_errors .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);
}

/* line 24, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
.has-error .form-control:focus, .field_with_errors .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;
}

/* line 31, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
.has-error .input-group-addon, .field_with_errors .input-group-addon {
  color: #a94442;
  background-color: #f2dede;
  border-color: #a94442;
}

/* line 37, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
.has-error .form-control-feedback, .field_with_errors .form-control-feedback {
  color: #a94442;
}

/* line 429, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
.has-feedback label ~ .form-control-feedback {
  top: 25px;
}

/* line 432, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
.has-feedback label.sr-only ~ .form-control-feedback {
  top: 0;
}

/* line 443, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
.help-block {
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #737373;
}

@media (min-width: 480px) {
  /* line 468, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  .form-inline .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  /* line 475, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  /* line 482, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  .form-inline .form-control-static {
    display: inline-block;
  }
  /* line 486, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  .form-inline .input-group {
    display: inline-table;
    vertical-align: middle;
  }
  /* line 490, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  .form-inline .input-group .input-group-addon,
.form-inline .input-group .input-group-btn,
.form-inline .input-group .form-control {
    width: auto;
  }
  /* line 498, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  .form-inline .input-group > .form-control {
    width: 100%;
  }
  /* line 502, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  .form-inline .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
  /* line 509, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  .form-inline .radio,
.form-inline .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }
  /* line 516, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  .form-inline .radio label,
.form-inline .checkbox label {
    padding-left: 0;
  }
  /* line 520, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  .form-inline .radio input[type="radio"],
.form-inline .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0;
  }
  /* line 527, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  .form-inline .has-feedback .form-control-feedback {
    top: 0;
  }
}

/* line 549, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
.form-horizontal .radio,
.form-horizontal .checkbox,
.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline {
  padding-top: 7px;
  margin-top: 0;
  margin-bottom: 0;
}

/* line 559, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
.form-horizontal .radio,
.form-horizontal .checkbox {
  min-height: 27px;
}

/* line 565, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
.form-horizontal .form-group {
  margin-right: -15px;
  margin-left: -15px;
}

/* line 14, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.form-horizontal .form-group:before, .form-horizontal .form-group:after {
  display: table;
  content: " ";
}

/* line 19, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.form-horizontal .form-group:after {
  clear: both;
}

@media (min-width: 480px) {
  /* line 572, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  .form-horizontal .control-label {
    padding-top: 7px;
    margin-bottom: 0;
    text-align: right;
  }
}

/* line 583, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
.form-horizontal .has-feedback .form-control-feedback {
  right: 15px;
}

@media (min-width: 480px) {
  /* line 593, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  .form-horizontal .form-group-lg .control-label {
    padding-top: 11px;
    font-size: 18px;
  }
}

@media (min-width: 480px) {
  /* line 601, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  .form-horizontal .form-group-sm .control-label {
    padding-top: 6px;
    font-size: 12px;
  }
}

/* line 9, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
.btn {
  display: inline-block;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.428571429;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* line 26, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
.btn:focus, .btn.focus, .btn:active:focus, .btn.focus:active, .btn.active:focus, .btn.active.focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

/* line 32, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
.btn:hover, .btn:focus, .btn.focus {
  color: #333;
  text-decoration: none;
}

/* line 39, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
.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);
}

/* line 46, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
.btn.disabled, .btn[disabled], fieldset[disabled] .btn {
  cursor: not-allowed;
  filter: alpha(opacity=65);
  opacity: 0.65;
  -webkit-box-shadow: none;
  box-shadow: none;
}

/* line 58, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
a.btn.disabled, fieldset[disabled] a.btn {
  pointer-events: none;
}

/* line 68, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
.btn-default {
  color: #333;
  background-color: #fff;
  border-color: #ccc;
}

/* line 11, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-default:focus, .btn-default.focus {
  color: #333;
  background-color: #e6e6e6;
  border-color: #8c8c8c;
}

/* line 17, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-default:hover {
  color: #333;
  background-color: #e6e6e6;
  border-color: #adadad;
}

/* line 22, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-default:active, .btn-default.active, .open > .btn-default.dropdown-toggle {
  color: #333;
  background-color: #e6e6e6;
  background-image: none;
  border-color: #adadad;
}

/* line 30, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-default:active:hover, .btn-default:active:focus, .btn-default.focus:active, .btn-default.active:hover, .btn-default.active:focus, .btn-default.active.focus, .open > .btn-default.dropdown-toggle:hover, .open > .btn-default.dropdown-toggle:focus, .open > .btn-default.dropdown-toggle.focus {
  color: #333;
  background-color: #d4d4d4;
  border-color: #8c8c8c;
}

/* line 41, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-default.disabled:hover, .btn-default.disabled:focus, .btn-default.disabled.focus, .btn-default[disabled]:hover, .btn-default[disabled]:focus, .btn-default.focus[disabled], fieldset[disabled] .btn-default:hover, fieldset[disabled] .btn-default:focus, fieldset[disabled] .btn-default.focus {
  background-color: #fff;
  border-color: #ccc;
}

/* line 49, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-default .badge {
  color: #fff;
  background-color: #333;
}

/* line 71, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
.btn-primary {
  color: #fff;
  background-color: #337ab7;
  border-color: #2e6da4;
}

/* line 11, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-primary:focus, .btn-primary.focus {
  color: #fff;
  background-color: #286090;
  border-color: #122b40;
}

/* line 17, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-primary:hover {
  color: #fff;
  background-color: #286090;
  border-color: #204d74;
}

/* line 22, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-primary:active, .btn-primary.active, .open > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #286090;
  background-image: none;
  border-color: #204d74;
}

/* line 30, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-primary:active:hover, .btn-primary:active:focus, .btn-primary.focus:active, .btn-primary.active:hover, .btn-primary.active:focus, .btn-primary.active.focus, .open > .btn-primary.dropdown-toggle:hover, .open > .btn-primary.dropdown-toggle:focus, .open > .btn-primary.dropdown-toggle.focus {
  color: #fff;
  background-color: #204d74;
  border-color: #122b40;
}

/* line 41, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-primary.disabled:hover, .btn-primary.disabled:focus, .btn-primary.disabled.focus, .btn-primary[disabled]:hover, .btn-primary[disabled]:focus, .btn-primary.focus[disabled], fieldset[disabled] .btn-primary:hover, fieldset[disabled] .btn-primary:focus, fieldset[disabled] .btn-primary.focus {
  background-color: #337ab7;
  border-color: #2e6da4;
}

/* line 49, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-primary .badge {
  color: #337ab7;
  background-color: #fff;
}

/* line 75, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
.btn-success {
  color: #fff;
  background-color: #5cb85c;
  border-color: #4cae4c;
}

/* line 11, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-success:focus, .btn-success.focus {
  color: #fff;
  background-color: #449d44;
  border-color: #255625;
}

/* line 17, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-success:hover {
  color: #fff;
  background-color: #449d44;
  border-color: #398439;
}

/* line 22, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-success:active, .btn-success.active, .open > .btn-success.dropdown-toggle {
  color: #fff;
  background-color: #449d44;
  background-image: none;
  border-color: #398439;
}

/* line 30, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-success:active:hover, .btn-success:active:focus, .btn-success.focus:active, .btn-success.active:hover, .btn-success.active:focus, .btn-success.active.focus, .open > .btn-success.dropdown-toggle:hover, .open > .btn-success.dropdown-toggle:focus, .open > .btn-success.dropdown-toggle.focus {
  color: #fff;
  background-color: #398439;
  border-color: #255625;
}

/* line 41, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-success.disabled:hover, .btn-success.disabled:focus, .btn-success.disabled.focus, .btn-success[disabled]:hover, .btn-success[disabled]:focus, .btn-success.focus[disabled], fieldset[disabled] .btn-success:hover, fieldset[disabled] .btn-success:focus, fieldset[disabled] .btn-success.focus {
  background-color: #5cb85c;
  border-color: #4cae4c;
}

/* line 49, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-success .badge {
  color: #5cb85c;
  background-color: #fff;
}

/* line 79, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
.btn-info {
  color: #fff;
  background-color: #5bc0de;
  border-color: #46b8da;
}

/* line 11, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-info:focus, .btn-info.focus {
  color: #fff;
  background-color: #31b0d5;
  border-color: #1b6d85;
}

/* line 17, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-info:hover {
  color: #fff;
  background-color: #31b0d5;
  border-color: #269abc;
}

/* line 22, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-info:active, .btn-info.active, .open > .btn-info.dropdown-toggle {
  color: #fff;
  background-color: #31b0d5;
  background-image: none;
  border-color: #269abc;
}

/* line 30, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-info:active:hover, .btn-info:active:focus, .btn-info.focus:active, .btn-info.active:hover, .btn-info.active:focus, .btn-info.active.focus, .open > .btn-info.dropdown-toggle:hover, .open > .btn-info.dropdown-toggle:focus, .open > .btn-info.dropdown-toggle.focus {
  color: #fff;
  background-color: #269abc;
  border-color: #1b6d85;
}

/* line 41, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-info.disabled:hover, .btn-info.disabled:focus, .btn-info.disabled.focus, .btn-info[disabled]:hover, .btn-info[disabled]:focus, .btn-info.focus[disabled], fieldset[disabled] .btn-info:hover, fieldset[disabled] .btn-info:focus, fieldset[disabled] .btn-info.focus {
  background-color: #5bc0de;
  border-color: #46b8da;
}

/* line 49, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-info .badge {
  color: #5bc0de;
  background-color: #fff;
}

/* line 83, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
.btn-warning {
  color: #fff;
  background-color: #f0ad4e;
  border-color: #eea236;
}

/* line 11, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-warning:focus, .btn-warning.focus {
  color: #fff;
  background-color: #ec971f;
  border-color: #985f0d;
}

/* line 17, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-warning:hover {
  color: #fff;
  background-color: #ec971f;
  border-color: #d58512;
}

/* line 22, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-warning:active, .btn-warning.active, .open > .btn-warning.dropdown-toggle {
  color: #fff;
  background-color: #ec971f;
  background-image: none;
  border-color: #d58512;
}

/* line 30, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-warning:active:hover, .btn-warning:active:focus, .btn-warning.focus:active, .btn-warning.active:hover, .btn-warning.active:focus, .btn-warning.active.focus, .open > .btn-warning.dropdown-toggle:hover, .open > .btn-warning.dropdown-toggle:focus, .open > .btn-warning.dropdown-toggle.focus {
  color: #fff;
  background-color: #d58512;
  border-color: #985f0d;
}

/* line 41, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-warning.disabled:hover, .btn-warning.disabled:focus, .btn-warning.disabled.focus, .btn-warning[disabled]:hover, .btn-warning[disabled]:focus, .btn-warning.focus[disabled], fieldset[disabled] .btn-warning:hover, fieldset[disabled] .btn-warning:focus, fieldset[disabled] .btn-warning.focus {
  background-color: #f0ad4e;
  border-color: #eea236;
}

/* line 49, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-warning .badge {
  color: #f0ad4e;
  background-color: #fff;
}

/* line 87, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
.btn-danger {
  color: #fff;
  background-color: #d9534f;
  border-color: #d43f3a;
}

/* line 11, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-danger:focus, .btn-danger.focus {
  color: #fff;
  background-color: #c9302c;
  border-color: #761c19;
}

/* line 17, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-danger:hover {
  color: #fff;
  background-color: #c9302c;
  border-color: #ac2925;
}

/* line 22, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-danger:active, .btn-danger.active, .open > .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #c9302c;
  background-image: none;
  border-color: #ac2925;
}

/* line 30, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-danger:active:hover, .btn-danger:active:focus, .btn-danger.focus:active, .btn-danger.active:hover, .btn-danger.active:focus, .btn-danger.active.focus, .open > .btn-danger.dropdown-toggle:hover, .open > .btn-danger.dropdown-toggle:focus, .open > .btn-danger.dropdown-toggle.focus {
  color: #fff;
  background-color: #ac2925;
  border-color: #761c19;
}

/* line 41, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-danger.disabled:hover, .btn-danger.disabled:focus, .btn-danger.disabled.focus, .btn-danger[disabled]:hover, .btn-danger[disabled]:focus, .btn-danger.focus[disabled], fieldset[disabled] .btn-danger:hover, fieldset[disabled] .btn-danger:focus, fieldset[disabled] .btn-danger.focus {
  background-color: #d9534f;
  border-color: #d43f3a;
}

/* line 49, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-danger .badge {
  color: #d9534f;
  background-color: #fff;
}

/* line 96, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
.btn-link {
  font-weight: 400;
  color: #337ab7;
  border-radius: 0;
}

/* line 101, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
.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;
}

/* line 109, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
.btn-link, .btn-link:hover, .btn-link:focus, .btn-link:active {
  border-color: transparent;
}

/* line 115, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
.btn-link:hover, .btn-link:focus {
  color: #23527c;
  text-decoration: underline;
  background-color: transparent;
}

/* line 123, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
.btn-link[disabled]:hover, .btn-link[disabled]:focus, fieldset[disabled] .btn-link:hover, fieldset[disabled] .btn-link:focus {
  color: #777777;
  text-decoration: none;
}

/* line 135, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
.btn-lg, .btn-group-lg > .btn {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}

/* line 139, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
.btn-sm, .btn-group-sm > .btn {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}

/* line 143, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
.btn-xs, .btn-group-xs > .btn {
  padding: 1px 5px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}

/* line 151, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
.btn-block {
  display: block;
  width: 100%;
}

/* line 157, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
.btn-block + .btn-block {
  margin-top: 5px;
}

/* line 165, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
input.btn-block[type="submit"],
input.btn-block[type="reset"],
input.btn-block[type="button"] {
  width: 100%;
}

/* line 10, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_component-animations.scss */
.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}

/* line 14, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_component-animations.scss */
.fade.in {
  opacity: 1;
}

/* line 19, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_component-animations.scss */
.collapse {
  display: none;
}

/* line 22, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_component-animations.scss */
.collapse.in {
  display: block;
}

/* line 27, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_component-animations.scss */
tr.collapse.in {
  display: table-row;
}

/* line 29, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_component-animations.scss */
tbody.collapse.in {
  display: table-row-group;
}

/* line 31, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_component-animations.scss */
.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition-property: height, visibility;
  transition-property: height, visibility;
  -webkit-transition-duration: 0.35s;
  transition-duration: 0.35s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}

/* line 7, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
.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;
}

/* line 20, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropup,
.dropdown {
  position: relative;
}

/* line 26, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropdown-toggle:focus {
  outline: 0;
}

/* line 31, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
.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);
}

/* line 54, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropdown-menu.pull-right {
  right: 0;
  left: auto;
}

/* line 60, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropdown-menu .divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}

/* line 65, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropdown-menu > li > a {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: 400;
  line-height: 1.428571429;
  color: #333333;
  white-space: nowrap;
}

/* line 74, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {
  color: #262626;
  text-decoration: none;
  background-color: #f5f5f5;
}

/* line 85, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, .dropdown-menu > .active > a:focus {
  color: #fff;
  text-decoration: none;
  background-color: #337ab7;
  outline: 0;
}

/* line 100, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropdown-menu > .disabled > a, .dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus {
  color: #777777;
}

/* line 107, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
.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);
}

/* line 120, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
.open > .dropdown-menu {
  display: block;
}

/* line 125, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
.open > a {
  outline: 0;
}

/* line 134, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropdown-menu-right {
  right: 0;
  left: auto;
}

/* line 144, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropdown-menu-left {
  right: auto;
  left: 0;
}

/* line 150, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropdown-header {
  display: block;
  padding: 3px 20px;
  font-size: 12px;
  line-height: 1.428571429;
  color: #777777;
  white-space: nowrap;
}

/* line 160, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropdown-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 990;
}

/* line 170, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
.pull-right > .dropdown-menu {
  right: 0;
  left: auto;
}

/* line 183, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
  content: "";
  border-top: 0;
  border-bottom: 4px dashed;
  border-bottom: 4px solid \9;
}

/* line 190, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 2px;
}

@media (min-width: 768px) {
  /* line 204, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
  .navbar-right .dropdown-menu {
    right: 0;
    left: auto;
  }
  /* line 209, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
  .navbar-right .dropdown-menu-left {
    left: 0;
    right: auto;
  }
}

/* line 6, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}

/* line 11, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  float: left;
}

/* line 15, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group > .btn:hover, .btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active,
.btn-group-vertical > .btn:hover,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn.active {
  z-index: 2;
}

/* line 26, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group .btn + .btn,
.btn-group .btn + .btn-group,
.btn-group .btn-group + .btn,
.btn-group .btn-group + .btn-group {
  margin-left: -1px;
}

/* line 35, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-toolbar {
  margin-left: -5px;
}

/* line 14, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.btn-toolbar:before, .btn-toolbar:after {
  display: table;
  content: " ";
}

/* line 19, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.btn-toolbar:after {
  clear: both;
}

/* line 39, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-toolbar .btn,
.btn-toolbar .btn-group,
.btn-toolbar .input-group {
  float: left;
}

/* line 44, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-toolbar > .btn,
.btn-toolbar > .btn-group,
.btn-toolbar > .input-group {
  margin-left: 5px;
}

/* line 51, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  border-radius: 0;
}

/* line 56, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group > .btn:first-child {
  margin-left: 0;
}

/* line 58, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

/* line 63, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.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;
}

/* line 69, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group > .btn-group {
  float: left;
}

/* line 72, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}

/* line 76, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.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;
}

/* line 81, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

/* line 86, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
  outline: 0;
}

/* line 105, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group > .btn + .dropdown-toggle {
  padding-right: 8px;
  padding-left: 8px;
}

/* line 109, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group > .btn-lg + .dropdown-toggle, .btn-group-lg.btn-group > .btn + .dropdown-toggle {
  padding-right: 12px;
  padding-left: 12px;
}

/* line 116, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.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);
}

/* line 120, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group.open .dropdown-toggle.btn-link {
  -webkit-box-shadow: none;
  box-shadow: none;
}

/* line 127, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.btn .caret {
  margin-left: 0;
}

/* line 131, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-lg .caret, .btn-group-lg > .btn .caret {
  border-width: 5px 5px 0;
  border-bottom-width: 0;
}

/* line 136, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.dropup .btn-lg .caret, .dropup .btn-group-lg > .btn .caret {
  border-width: 0 5px 5px;
}

/* line 145, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group,
.btn-group-vertical > .btn-group > .btn {
  display: block;
  float: none;
  width: 100%;
  max-width: 100%;
}

/* line 14, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.btn-group-vertical > .btn-group:before, .btn-group-vertical > .btn-group:after {
  display: table;
  content: " ";
}

/* line 19, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.btn-group-vertical > .btn-group:after {
  clear: both;
}

/* line 157, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group-vertical > .btn-group > .btn {
  float: none;
}

/* line 162, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.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;
}

/* line 172, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
  border-radius: 0;
}

/* line 175, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.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;
}

/* line 179, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.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;
}

/* line 184, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}

/* line 188, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.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;
}

/* line 193, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

/* line 201, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group-justified {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
}

/* line 206, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group-justified > .btn,
.btn-group-justified > .btn-group {
  display: table-cell;
  float: none;
  width: 1%;
}

/* line 212, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group-justified > .btn-group .btn {
  width: 100%;
}

/* line 216, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group-justified > .btn-group .dropdown-menu {
  left: auto;
}

/* line 237, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
[data-toggle="buttons"] > .btn input[type="radio"],
[data-toggle="buttons"] > .btn input[type="checkbox"],
[data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
[data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}

/* line 7, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group {
  position: relative;
  display: table;
  border-collapse: separate;
}

/* line 13, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group[class*="col-"] {
  float: none;
  padding-right: 0;
  padding-left: 0;
}

/* line 19, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group .form-control {
  position: relative;
  z-index: 2;
  float: left;
  width: 100%;
  margin-bottom: 0;
}

/* line 33, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group .form-control:focus {
  z-index: 3;
}

/* line 58, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group-addon,
.input-group-btn,
.input-group .form-control {
  display: table-cell;
}

/* line 63, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
.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;
}

/* line 68, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group-addon,
.input-group-btn {
  width: 1%;
  white-space: nowrap;
  vertical-align: middle;
}

/* line 77, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
.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;
}

/* line 89, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group-addon.input-sm,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .input-group-addon.btn {
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 3px;
}

/* line 94, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group-addon.input-lg,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .input-group-addon.btn {
  padding: 10px 16px;
  font-size: 18px;
  border-radius: 6px;
}

/* line 101, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group-addon input[type="radio"],
.input-group-addon input[type="checkbox"] {
  margin-top: 0;
}

/* line 108, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
.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;
}

/* line 117, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group-addon:first-child {
  border-right: 0;
}

/* line 120, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
.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;
}

/* line 129, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group-addon:last-child {
  border-left: 0;
}

/* line 135, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group-btn {
  position: relative;
  font-size: 0;
  white-space: nowrap;
}

/* line 144, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group-btn > .btn {
  position: relative;
}

/* line 146, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group-btn > .btn + .btn {
  margin-left: -1px;
}

/* line 150, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group-btn > .btn:hover, .input-group-btn > .btn:focus, .input-group-btn > .btn:active {
  z-index: 2;
}

/* line 159, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group {
  margin-right: -1px;
}

/* line 165, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group {
  z-index: 2;
  margin-left: -1px;
}

/* line 9, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

/* line 14, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.nav:before, .nav:after {
  display: table;
  content: " ";
}

/* line 19, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.nav:after {
  clear: both;
}

/* line 15, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav > li {
  position: relative;
  display: block;
}

/* line 19, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav > li > a {
  position: relative;
  display: block;
  padding: 10px 15px;
}

/* line 23, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav > li > a:hover, .nav > li > a:focus {
  text-decoration: none;
  background-color: #eeeeee;
}

/* line 31, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav > li.disabled > a {
  color: #777777;
}

/* line 34, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav > li.disabled > a:hover, .nav > li.disabled > a:focus {
  color: #777777;
  text-decoration: none;
  cursor: not-allowed;
  background-color: transparent;
}

/* line 46, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav .open > a, .nav .open > a:hover, .nav .open > a:focus {
  background-color: #eeeeee;
  border-color: #337ab7;
}

/* line 59, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav .nav-divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}

/* line 66, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav > li > a > img {
  max-width: none;
}

/* line 76, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav-tabs {
  border-bottom: 1px solid #ddd;
}

/* line 78, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav-tabs > li {
  float: left;
  margin-bottom: -1px;
}

/* line 84, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav-tabs > li > a {
  margin-right: 2px;
  line-height: 1.428571429;
  border: 1px solid transparent;
  border-radius: 4px 4px 0 0;
}

/* line 89, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav-tabs > li > a:hover {
  border-color: #eeeeee #eeeeee #ddd;
}

/* line 96, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.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;
}

/* line 118, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav-pills > li {
  float: left;
}

/* line 122, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav-pills > li > a {
  border-radius: 4px;
}

/* line 125, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav-pills > li + li {
  margin-left: 2px;
}

/* line 131, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus {
  color: #fff;
  background-color: #337ab7;
}

/* line 144, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav-stacked > li {
  float: none;
}

/* line 146, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav-stacked > li + li {
  margin-top: 2px;
  margin-left: 0;
}

/* line 160, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav-justified, .nav-tabs.nav-justified {
  width: 100%;
}

/* line 163, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav-justified > li, .nav-tabs.nav-justified > li {
  float: none;
}

/* line 165, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav-justified > li > a, .nav-tabs.nav-justified > li > a {
  margin-bottom: 5px;
  text-align: center;
}

/* line 171, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}

@media (min-width: 480px) {
  /* line 177, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
  .nav-justified > li, .nav-tabs.nav-justified > li {
    display: table-cell;
    width: 1%;
  }
  /* line 180, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
  .nav-justified > li > a, .nav-tabs.nav-justified > li > a {
    margin-bottom: 0;
  }
}

/* line 190, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav-tabs-justified, .nav-tabs.nav-justified {
  border-bottom: 0;
}

/* line 193, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a {
  margin-right: 0;
  border-radius: 4px;
}

/* line 199, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a,
.nav-tabs-justified > .active > a:hover,
.nav-tabs-justified > .active > a:focus {
  border: 1px solid #ddd;
}

@media (min-width: 480px) {
  /* line 206, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
  .nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a {
    border-bottom: 1px solid #ddd;
    border-radius: 4px 4px 0 0;
  }
  /* line 210, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
  .nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a,
.nav-tabs-justified > .active > a:hover,
.nav-tabs-justified > .active > a:focus {
    border-bottom-color: #fff;
  }
}

/* line 224, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.tab-content > .tab-pane {
  display: none;
}

/* line 227, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.tab-content > .active {
  display: block;
}

/* line 237, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

/* line 11, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar {
  position: relative;
  min-height: 50px;
  margin-bottom: 20px;
  border: 1px solid transparent;
}

/* line 14, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.navbar:before, .navbar:after {
  display: table;
  content: " ";
}

/* line 19, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.navbar:after {
  clear: both;
}

@media (min-width: 768px) {
  /* line 11, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar {
    border-radius: 4px;
  }
}

/* line 14, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.navbar-header:before, .navbar-header:after {
  display: table;
  content: " ";
}

/* line 19, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.navbar-header:after {
  clear: both;
}

@media (min-width: 768px) {
  /* line 31, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-header {
    float: left;
  }
}

/* line 50, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-collapse {
  padding-right: 15px;
  padding-left: 15px;
  overflow-x: visible;
  border-top: 1px solid transparent;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  -webkit-overflow-scrolling: touch;
}

/* line 14, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.navbar-collapse:before, .navbar-collapse:after {
  display: table;
  content: " ";
}

/* line 19, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.navbar-collapse:after {
  clear: both;
}

/* line 59, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-collapse.in {
  overflow-y: auto;
}

@media (min-width: 768px) {
  /* line 50, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-collapse {
    width: auto;
    border-top: 0;
    box-shadow: none;
  }
  /* line 68, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-collapse.collapse {
    display: block !important;
    height: auto !important;
    padding-bottom: 0;
    overflow: visible !important;
  }
  /* line 75, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-collapse.in {
    overflow-y: visible;
  }
  /* line 81, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-fixed-top .navbar-collapse, .navbar-static-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse {
    padding-right: 0;
    padding-left: 0;
  }
}

/* line 90, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-fixed-top,
.navbar-fixed-bottom {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1030;
}

/* line 92, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-fixed-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
  max-height: 340px;
}

@media (max-device-width: 480px) and (orientation: landscape) {
  /* line 92, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-fixed-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
    max-height: 200px;
  }
}

@media (min-width: 768px) {
  /* line 90, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-fixed-top,
.navbar-fixed-bottom {
    border-radius: 0;
  }
}

/* line 112, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-fixed-top {
  top: 0;
  border-width: 0 0 1px;
}

/* line 116, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-fixed-bottom {
  bottom: 0;
  margin-bottom: 0;
  border-width: 1px 0 0;
}

/* line 129, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.container > .navbar-header,
.container > .navbar-collapse,
.container-fluid > .navbar-header,
.container-fluid > .navbar-collapse {
  margin-right: -15px;
  margin-left: -15px;
}

@media (min-width: 768px) {
  /* line 129, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .container > .navbar-header,
.container > .navbar-collapse,
.container-fluid > .navbar-header,
.container-fluid > .navbar-collapse {
    margin-right: 0;
    margin-left: 0;
  }
}

/* line 149, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-static-top {
  z-index: 1000;
  border-width: 0 0 1px;
}

@media (min-width: 768px) {
  /* line 149, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-static-top {
    border-radius: 0;
  }
}

/* line 161, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-brand {
  float: left;
  height: 50px;
  padding: 15px 15px;
  font-size: 18px;
  line-height: 20px;
}

/* line 168, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-brand:hover, .navbar-brand:focus {
  text-decoration: none;
}

/* line 173, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-brand > img {
  display: block;
}

@media (min-width: 768px) {
  /* line 178, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar > .container .navbar-brand, .navbar > .container-fluid .navbar-brand {
    margin-left: -15px;
  }
}

/* line 191, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.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;
}

/* line 204, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-toggle:focus {
  outline: 0;
}

/* line 209, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-toggle .icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px;
}

/* line 215, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-toggle .icon-bar + .icon-bar {
  margin-top: 4px;
}

@media (min-width: 768px) {
  /* line 191, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-toggle {
    display: none;
  }
}

/* line 230, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-nav {
  margin: 7.5px -15px;
}

/* line 233, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-nav > li > a {
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 20px;
}

@media (max-width: 767px) {
  /* line 241, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-nav .open .dropdown-menu {
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    background-color: transparent;
    border: 0;
    box-shadow: none;
  }
  /* line 249, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-nav .open .dropdown-menu > li > a,
.navbar-nav .open .dropdown-menu .dropdown-header {
    padding: 5px 15px 5px 25px;
  }
  /* line 253, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-nav .open .dropdown-menu > li > a {
    line-height: 20px;
  }
  /* line 255, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-nav .open .dropdown-menu > li > a:focus {
    background-image: none;
  }
}

@media (min-width: 768px) {
  /* line 230, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-nav {
    float: left;
    margin: 0;
  }
  /* line 268, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-nav > li {
    float: left;
  }
  /* line 270, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-nav > li > a {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}

/* line 284, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.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: 480px) {
  /* line 468, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  .navbar-form .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  /* line 475, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  .navbar-form .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  /* line 482, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  .navbar-form .form-control-static {
    display: inline-block;
  }
  /* line 486, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  .navbar-form .input-group {
    display: inline-table;
    vertical-align: middle;
  }
  /* line 490, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  .navbar-form .input-group .input-group-addon,
.navbar-form .input-group .input-group-btn,
.navbar-form .input-group .form-control {
    width: auto;
  }
  /* line 498, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  .navbar-form .input-group > .form-control {
    width: 100%;
  }
  /* line 502, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  .navbar-form .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
  /* line 509, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  .navbar-form .radio,
.navbar-form .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }
  /* line 516, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  .navbar-form .radio label,
.navbar-form .checkbox label {
    padding-left: 0;
  }
  /* line 520, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  .navbar-form .radio input[type="radio"],
.navbar-form .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0;
  }
  /* line 527, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  .navbar-form .has-feedback .form-control-feedback {
    top: 0;
  }
}

@media (max-width: 767px) {
  /* line 296, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-form .form-group {
    margin-bottom: 5px;
  }
  /* line 300, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-form .form-group:last-child {
    margin-bottom: 0;
  }
}

@media (min-width: 768px) {
  /* line 284, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .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;
  }
}

/* line 325, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-nav > li > .dropdown-menu {
  margin-top: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

/* line 330, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.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;
}

/* line 341, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-btn {
  margin-top: 8px;
  margin-bottom: 8px;
}

/* line 344, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-btn.btn-sm, .btn-group-sm > .navbar-btn.btn {
  margin-top: 10px;
  margin-bottom: 10px;
}

/* line 347, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-btn.btn-xs, .btn-group-xs > .navbar-btn.btn {
  margin-top: 14px;
  margin-bottom: 14px;
}

/* line 357, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-text {
  margin-top: 15px;
  margin-bottom: 15px;
}

@media (min-width: 768px) {
  /* line 357, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-text {
    float: left;
    margin-right: 15px;
    margin-left: 15px;
  }
}

@media (min-width: 768px) {
  /* line 377, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-left {
    float: left !important;
  }
  /* line 380, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-right {
    float: right !important;
    margin-right: -15px;
  }
  /* line 384, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-right ~ .navbar-right {
    margin-right: 0;
  }
}

/* line 395, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default {
  background-color: #f8f8f8;
  border-color: #e7e7e7;
}

/* line 399, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-brand {
  color: #777;
}

/* line 401, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus {
  color: #5e5e5e;
  background-color: transparent;
}

/* line 408, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-text {
  color: #777;
}

/* line 413, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-nav > li > a {
  color: #777;
}

/* line 416, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus {
  color: #333;
  background-color: transparent;
}

/* line 423, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.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;
}

/* line 431, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.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;
}

/* line 442, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.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) {
  /* line 453, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-default .navbar-nav .open .dropdown-menu > li > a {
    color: #777;
  }
  /* line 455, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .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;
  }
  /* line 462, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .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;
  }
  /* line 470, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .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;
  }
}

/* line 481, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-toggle {
  border-color: #ddd;
}

/* line 483, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
  background-color: #ddd;
}

/* line 487, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-toggle .icon-bar {
  background-color: #888;
}

/* line 492, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
  border-color: #e7e7e7;
}

/* line 502, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-link {
  color: #777;
}

/* line 504, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-link:hover {
  color: #333;
}

/* line 509, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .btn-link {
  color: #777;
}

/* line 511, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .btn-link:hover, .navbar-default .btn-link:focus {
  color: #333;
}

/* line 517, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .btn-link[disabled]:hover, .navbar-default .btn-link[disabled]:focus, fieldset[disabled] .navbar-default .btn-link:hover, fieldset[disabled] .navbar-default .btn-link:focus {
  color: #ccc;
}

/* line 527, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse {
  background-color: #222;
  border-color: #090909;
}

/* line 531, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-brand {
  color: #9d9d9d;
}

/* line 533, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-brand:hover, .navbar-inverse .navbar-brand:focus {
  color: #fff;
  background-color: transparent;
}

/* line 540, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-text {
  color: #9d9d9d;
}

/* line 545, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-nav > li > a {
  color: #9d9d9d;
}

/* line 548, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-nav > li > a:hover, .navbar-inverse .navbar-nav > li > a:focus {
  color: #fff;
  background-color: transparent;
}

/* line 555, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse .navbar-nav > .active > a:focus {
  color: #fff;
  background-color: #090909;
}

/* line 563, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.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;
}

/* line 573, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:hover, .navbar-inverse .navbar-nav > .open > a:focus {
  color: #fff;
  background-color: #090909;
}

@media (max-width: 767px) {
  /* line 584, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
    border-color: #090909;
  }
  /* line 587, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
    background-color: #090909;
  }
  /* line 590, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
    color: #9d9d9d;
  }
  /* line 592, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .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;
  }
  /* line 599, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .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: #090909;
  }
  /* line 607, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .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;
  }
}

/* line 619, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-toggle {
  border-color: #333;
}

/* line 621, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-toggle:hover, .navbar-inverse .navbar-toggle:focus {
  background-color: #333;
}

/* line 625, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-toggle .icon-bar {
  background-color: #fff;
}

/* line 630, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-collapse,
.navbar-inverse .navbar-form {
  border-color: #101010;
}

/* line 635, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-link {
  color: #9d9d9d;
}

/* line 637, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-link:hover {
  color: #fff;
}

/* line 642, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .btn-link {
  color: #9d9d9d;
}

/* line 644, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .btn-link:hover, .navbar-inverse .btn-link:focus {
  color: #fff;
}

/* line 650, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .btn-link[disabled]:hover, .navbar-inverse .btn-link[disabled]:focus, fieldset[disabled] .navbar-inverse .btn-link:hover, fieldset[disabled] .navbar-inverse .btn-link:focus {
  color: #444;
}

/* line 6, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_breadcrumbs.scss */
.breadcrumb {
  padding: 8px 15px;
  margin-bottom: 20px;
  list-style: none;
  background-color: #f5f5f5;
  border-radius: 4px;
}

/* line 13, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_breadcrumbs.scss */
.breadcrumb > li {
  display: inline-block;
}

/* line 16, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_breadcrumbs.scss */
.breadcrumb > li + li:before {
  padding: 0 5px;
  color: #ccc;
  content: "/ ";
}

/* line 25, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_breadcrumbs.scss */
.breadcrumb > .active {
  color: #777777;
}

/* line 4, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pagination.scss */
.pagination {
  display: inline-block;
  padding-left: 0;
  margin: 20px 0;
  border-radius: 4px;
}

/* line 10, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pagination.scss */
.pagination > li {
  display: inline;
}

/* line 12, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pagination.scss */
.pagination > li > a,
.pagination > li > span {
  position: relative;
  float: left;
  padding: 6px 12px;
  margin-left: -1px;
  line-height: 1.428571429;
  color: #337ab7;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #ddd;
}

/* line 24, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pagination.scss */
.pagination > li > a:hover, .pagination > li > a:focus,
.pagination > li > span:hover,
.pagination > li > span:focus {
  z-index: 2;
  color: #23527c;
  background-color: #eeeeee;
  border-color: #ddd;
}

/* line 33, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pagination.scss */
.pagination > li:first-child > a,
.pagination > li:first-child > span {
  margin-left: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

/* line 40, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pagination.scss */
.pagination > li:last-child > a,
.pagination > li:last-child > span {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

/* line 49, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pagination.scss */
.pagination > .active > a, .pagination > .active > a:hover, .pagination > .active > a:focus,
.pagination > .active > span,
.pagination > .active > span:hover,
.pagination > .active > span:focus {
  z-index: 3;
  color: #fff;
  cursor: default;
  background-color: #337ab7;
  border-color: #337ab7;
}

/* line 61, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pagination.scss */
.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;
}

/* line 5, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_pagination.scss */
.pagination-lg > li > a,
.pagination-lg > li > span {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
}

/* line 12, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_pagination.scss */
.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}

/* line 18, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_pagination.scss */
.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}

/* line 5, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_pagination.scss */
.pagination-sm > li > a,
.pagination-sm > li > span {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
}

/* line 12, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_pagination.scss */
.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}

/* line 18, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_pagination.scss */
.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}

/* line 6, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pager.scss */
.pager {
  padding-left: 0;
  margin: 20px 0;
  text-align: center;
  list-style: none;
}

/* line 14, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.pager:before, .pager:after {
  display: table;
  content: " ";
}

/* line 19, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.pager:after {
  clear: both;
}

/* line 12, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pager.scss */
.pager li {
  display: inline;
}

/* line 14, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pager.scss */
.pager li > a,
.pager li > span {
  display: inline-block;
  padding: 5px 14px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 15px;
}

/* line 23, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pager.scss */
.pager li > a:hover,
.pager li > a:focus {
  text-decoration: none;
  background-color: #eeeeee;
}

/* line 31, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pager.scss */
.pager .next > a,
.pager .next > span {
  float: right;
}

/* line 38, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pager.scss */
.pager .previous > a,
.pager .previous > span {
  float: left;
}

/* line 45, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pager.scss */
.pager .disabled > a,
.pager .disabled > a:hover,
.pager .disabled > a:focus,
.pager .disabled > span {
  color: #777777;
  cursor: not-allowed;
  background-color: #fff;
}

/* line 5, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_labels.scss */
.label {
  display: inline;
  padding: .2em .6em .3em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: .25em;
}

/* line 20, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_labels.scss */
.label:empty {
  display: none;
}

/* line 25, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_labels.scss */
.btn .label {
  position: relative;
  top: -1px;
}

/* line 33, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_labels.scss */
a.label:hover, a.label:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

/* line 44, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_labels.scss */
.label-default {
  background-color: #777777;
}

/* line 7, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_labels.scss */
.label-default[href]:hover, .label-default[href]:focus {
  background-color: #5e5e5e;
}

/* line 48, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_labels.scss */
.label-primary {
  background-color: #337ab7;
}

/* line 7, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_labels.scss */
.label-primary[href]:hover, .label-primary[href]:focus {
  background-color: #286090;
}

/* line 52, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_labels.scss */
.label-success {
  background-color: #5cb85c;
}

/* line 7, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_labels.scss */
.label-success[href]:hover, .label-success[href]:focus {
  background-color: #449d44;
}

/* line 56, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_labels.scss */
.label-info {
  background-color: #5bc0de;
}

/* line 7, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_labels.scss */
.label-info[href]:hover, .label-info[href]:focus {
  background-color: #31b0d5;
}

/* line 60, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_labels.scss */
.label-warning {
  background-color: #f0ad4e;
}

/* line 7, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_labels.scss */
.label-warning[href]:hover, .label-warning[href]:focus {
  background-color: #ec971f;
}

/* line 64, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_labels.scss */
.label-danger {
  background-color: #d9534f;
}

/* line 7, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_labels.scss */
.label-danger[href]:hover, .label-danger[href]:focus {
  background-color: #c9302c;
}

/* line 7, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_badges.scss */
.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;
}

/* line 22, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_badges.scss */
.badge:empty {
  display: none;
}

/* line 27, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_badges.scss */
.btn .badge {
  position: relative;
  top: -1px;
}

/* line 32, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_badges.scss */
.btn-xs .badge, .btn-group-xs > .btn .badge {
  top: 0;
  padding: 1px 5px;
}

/* line 41, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_badges.scss */
.list-group-item.active > .badge, .nav-pills > .active > a > .badge {
  color: #337ab7;
  background-color: #fff;
}

/* line 47, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_badges.scss */
.list-group-item > .badge {
  float: right;
}

/* line 51, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_badges.scss */
.list-group-item > .badge + .badge {
  margin-right: 5px;
}

/* line 55, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_badges.scss */
.nav-pills > li > a > .badge {
  margin-left: 3px;
}

/* line 62, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_badges.scss */
a.badge:hover, a.badge:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

/* line 6, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_jumbotron.scss */
.jumbotron {
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 30px;
  color: inherit;
  background-color: #eeeeee;
}

/* line 13, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_jumbotron.scss */
.jumbotron h1,
.jumbotron .h1 {
  color: inherit;
}

/* line 18, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_jumbotron.scss */
.jumbotron p {
  margin-bottom: 15px;
  font-size: 21px;
  font-weight: 200;
}

/* line 24, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_jumbotron.scss */
.jumbotron > hr {
  border-top-color: #d5d5d5;
}

/* line 28, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_jumbotron.scss */
.container .jumbotron, .container-fluid .jumbotron {
  padding-right: 15px;
  padding-left: 15px;
  border-radius: 6px;
}

/* line 35, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_jumbotron.scss */
.jumbotron .container {
  max-width: 100%;
}

@media screen and (min-width: 480px) {
  /* line 6, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_jumbotron.scss */
  .jumbotron {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  /* line 43, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_jumbotron.scss */
  .container .jumbotron, .container-fluid .jumbotron {
    padding-right: 60px;
    padding-left: 60px;
  }
  /* line 49, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_jumbotron.scss */
  .jumbotron h1,
.jumbotron .h1 {
    font-size: 63px;
  }
}

/* line 7, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_thumbnails.scss */
.thumbnail {
  display: block;
  padding: 4px;
  margin-bottom: 20px;
  line-height: 1.428571429;
  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;
}

/* line 17, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_thumbnails.scss */
.thumbnail > img,
.thumbnail a > img {
  display: block;
  max-width: 100%;
  height: auto;
  margin-right: auto;
  margin-left: auto;
}

/* line 27, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_thumbnails.scss */
.thumbnail .caption {
  padding: 9px;
  color: #333333;
}

/* line 34, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_thumbnails.scss */
a.thumbnail:hover,
a.thumbnail:focus,
a.thumbnail.active {
  border-color: #337ab7;
}

/* line 9, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_alerts.scss */
.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
}

/* line 16, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_alerts.scss */
.alert h4 {
  margin-top: 0;
  color: inherit;
}

/* line 22, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_alerts.scss */
.alert .alert-link {
  font-weight: bold;
}

/* line 27, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_alerts.scss */
.alert > p,
.alert > ul {
  margin-bottom: 0;
}

/* line 32, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_alerts.scss */
.alert > p + p {
  margin-top: 5px;
}

/* line 42, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_alerts.scss */
.alert-dismissable,
.alert-dismissible {
  padding-right: 35px;
}

/* line 47, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_alerts.scss */
.alert-dismissable .close,
.alert-dismissible .close {
  position: relative;
  top: -2px;
  right: -21px;
  color: inherit;
}

/* line 59, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_alerts.scss */
.alert-success {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}

/* line 8, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_alerts.scss */
.alert-success hr {
  border-top-color: #c9e2b3;
}

/* line 12, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_alerts.scss */
.alert-success .alert-link {
  color: #2b542c;
}

/* line 63, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_alerts.scss */
.alert-info {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1;
}

/* line 8, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_alerts.scss */
.alert-info hr {
  border-top-color: #a6e1ec;
}

/* line 12, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_alerts.scss */
.alert-info .alert-link {
  color: #245269;
}

/* line 67, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_alerts.scss */
.alert-warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
}

/* line 8, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_alerts.scss */
.alert-warning hr {
  border-top-color: #f7e1b5;
}

/* line 12, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_alerts.scss */
.alert-warning .alert-link {
  color: #66512c;
}

/* line 71, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_alerts.scss */
.alert-danger {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}

/* line 8, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_alerts.scss */
.alert-danger hr {
  border-top-color: #e4b9c0;
}

/* line 12, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_alerts.scss */
.alert-danger .alert-link {
  color: #843534;
}

@-webkit-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;
  }
}

/* line 26, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_progress-bars.scss */
.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);
}

/* line 36, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_progress-bars.scss */
.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;
}

/* line 54, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_progress-bars.scss */
.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);
  background-size: 40px 40px;
}

/* line 64, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_progress-bars.scss */
.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;
}

/* line 73, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_progress-bars.scss */
.progress-bar-success {
  background-color: #5cb85c;
}

/* line 7, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_progress-bar.scss */
.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);
}

/* line 77, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_progress-bars.scss */
.progress-bar-info {
  background-color: #5bc0de;
}

/* line 7, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_progress-bar.scss */
.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);
}

/* line 81, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_progress-bars.scss */
.progress-bar-warning {
  background-color: #f0ad4e;
}

/* line 7, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_progress-bar.scss */
.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);
}

/* line 85, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_progress-bars.scss */
.progress-bar-danger {
  background-color: #d9534f;
}

/* line 7, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_progress-bar.scss */
.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);
}

/* line 1, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_media.scss */
.media {
  margin-top: 15px;
}

/* line 5, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_media.scss */
.media:first-child {
  margin-top: 0;
}

/* line 10, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_media.scss */
.media,
.media-body {
  overflow: hidden;
  zoom: 1;
}

/* line 16, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_media.scss */
.media-body {
  width: 10000px;
}

/* line 20, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_media.scss */
.media-object {
  display: block;
}

/* line 24, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_media.scss */
.media-object.img-thumbnail {
  max-width: none;
}

/* line 29, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_media.scss */
.media-right,
.media > .pull-right {
  padding-left: 10px;
}

/* line 34, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_media.scss */
.media-left,
.media > .pull-left {
  padding-right: 10px;
}

/* line 39, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_media.scss */
.media-left,
.media-right,
.media-body {
  display: table-cell;
  vertical-align: top;
}

/* line 46, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_media.scss */
.media-middle {
  vertical-align: middle;
}

/* line 50, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_media.scss */
.media-bottom {
  vertical-align: bottom;
}

/* line 55, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_media.scss */
.media-heading {
  margin-top: 0;
  margin-bottom: 5px;
}

/* line 63, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_media.scss */
.media-list {
  padding-left: 0;
  list-style: none;
}

/* line 10, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
.list-group {
  padding-left: 0;
  margin-bottom: 20px;
}

/* line 21, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item {
  position: relative;
  display: block;
  padding: 10px 15px;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid #ddd;
}

/* line 31, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

/* line 34, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item:last-child {
  margin-bottom: 0;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}

/* line 40, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item.disabled, .list-group-item.disabled:hover, .list-group-item.disabled:focus {
  color: #777777;
  cursor: not-allowed;
  background-color: #eeeeee;
}

/* line 48, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
.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;
}

/* line 51, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
.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;
}

/* line 57, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
.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;
}

/* line 66, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item.active .list-group-item-heading,
.list-group-item.active .list-group-item-heading > small,
.list-group-item.active .list-group-item-heading > .small, .list-group-item.active:hover .list-group-item-heading,
.list-group-item.active:hover .list-group-item-heading > small,
.list-group-item.active:hover .list-group-item-heading > .small, .list-group-item.active:focus .list-group-item-heading,
.list-group-item.active:focus .list-group-item-heading > small,
.list-group-item.active:focus .list-group-item-heading > .small {
  color: inherit;
}

/* line 71, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
.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;
}

/* line 83, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
a.list-group-item,
button.list-group-item {
  color: #555;
}

/* line 87, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
a.list-group-item .list-group-item-heading,
button.list-group-item .list-group-item-heading {
  color: #333;
}

/* line 92, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
a.list-group-item:hover, a.list-group-item:focus,
button.list-group-item:hover,
button.list-group-item:focus {
  color: #555;
  text-decoration: none;
  background-color: #f5f5f5;
}

/* line 100, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
button.list-group-item {
  width: 100%;
  text-align: left;
}

/* line 4, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
.list-group-item-success {
  color: #3c763d;
  background-color: #dff0d8;
}

/* line 11, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-success,
button.list-group-item-success {
  color: #3c763d;
}

/* line 14, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-success .list-group-item-heading,
button.list-group-item-success .list-group-item-heading {
  color: inherit;
}

/* line 18, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-success:hover, a.list-group-item-success:focus,
button.list-group-item-success:hover,
button.list-group-item-success:focus {
  color: #3c763d;
  background-color: #d0e9c6;
}

/* line 23, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-success.active, a.list-group-item-success.active:hover, a.list-group-item-success.active:focus,
button.list-group-item-success.active,
button.list-group-item-success.active:hover,
button.list-group-item-success.active:focus {
  color: #fff;
  background-color: #3c763d;
  border-color: #3c763d;
}

/* line 4, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
.list-group-item-info {
  color: #31708f;
  background-color: #d9edf7;
}

/* line 11, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-info,
button.list-group-item-info {
  color: #31708f;
}

/* line 14, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-info .list-group-item-heading,
button.list-group-item-info .list-group-item-heading {
  color: inherit;
}

/* line 18, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-info:hover, a.list-group-item-info:focus,
button.list-group-item-info:hover,
button.list-group-item-info:focus {
  color: #31708f;
  background-color: #c4e3f3;
}

/* line 23, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-info.active, a.list-group-item-info.active:hover, a.list-group-item-info.active:focus,
button.list-group-item-info.active,
button.list-group-item-info.active:hover,
button.list-group-item-info.active:focus {
  color: #fff;
  background-color: #31708f;
  border-color: #31708f;
}

/* line 4, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
.list-group-item-warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
}

/* line 11, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-warning,
button.list-group-item-warning {
  color: #8a6d3b;
}

/* line 14, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-warning .list-group-item-heading,
button.list-group-item-warning .list-group-item-heading {
  color: inherit;
}

/* line 18, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-warning:hover, a.list-group-item-warning:focus,
button.list-group-item-warning:hover,
button.list-group-item-warning:focus {
  color: #8a6d3b;
  background-color: #faf2cc;
}

/* line 23, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-warning.active, a.list-group-item-warning.active:hover, a.list-group-item-warning.active:focus,
button.list-group-item-warning.active,
button.list-group-item-warning.active:hover,
button.list-group-item-warning.active:focus {
  color: #fff;
  background-color: #8a6d3b;
  border-color: #8a6d3b;
}

/* line 4, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
.list-group-item-danger {
  color: #a94442;
  background-color: #f2dede;
}

/* line 11, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-danger,
button.list-group-item-danger {
  color: #a94442;
}

/* line 14, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-danger .list-group-item-heading,
button.list-group-item-danger .list-group-item-heading {
  color: inherit;
}

/* line 18, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-danger:hover, a.list-group-item-danger:focus,
button.list-group-item-danger:hover,
button.list-group-item-danger:focus {
  color: #a94442;
  background-color: #ebcccc;
}

/* line 23, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-danger.active, a.list-group-item-danger.active:hover, a.list-group-item-danger.active:focus,
button.list-group-item-danger.active,
button.list-group-item-danger.active:hover,
button.list-group-item-danger.active:focus {
  color: #fff;
  background-color: #a94442;
  border-color: #a94442;
}

/* line 121, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item-heading {
  margin-top: 0;
  margin-bottom: 5px;
}

/* line 125, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item-text {
  margin-bottom: 0;
  line-height: 1.3;
}

/* line 7, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.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);
}

/* line 16, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel-body {
  padding: 15px;
}

/* line 14, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.panel-body:before, .panel-body:after {
  display: table;
  content: " ";
}

/* line 19, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.panel-body:after {
  clear: both;
}

/* line 22, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel-heading {
  padding: 10px 15px;
  border-bottom: 1px solid transparent;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}

/* line 27, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel-heading > .dropdown .dropdown-toggle {
  color: inherit;
}

/* line 33, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  color: inherit;
}

/* line 39, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel-title > a,
.panel-title > small,
.panel-title > .small,
.panel-title > small > a,
.panel-title > .small > a {
  color: inherit;
}

/* line 49, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel-footer {
  padding: 10px 15px;
  background-color: #f5f5f5;
  border-top: 1px solid #ddd;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

/* line 63, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel > .list-group,
.panel > .panel-collapse > .list-group {
  margin-bottom: 0;
}

/* line 67, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel > .list-group .list-group-item,
.panel > .panel-collapse > .list-group .list-group-item {
  border-width: 1px 0;
  border-radius: 0;
}

/* line 74, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.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;
}

/* line 82, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.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;
}

/* line 89, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

/* line 96, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel-heading + .list-group .list-group-item:first-child {
  border-top-width: 0;
}

/* line 100, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.list-group + .panel-footer {
  border-top-width: 0;
}

/* line 110, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table,
.panel > .table-responsive > .table,
.panel > .panel-collapse > .table {
  margin-bottom: 0;
}

/* line 115, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table caption,
.panel > .table-responsive > .table caption,
.panel > .panel-collapse > .table caption {
  padding-right: 15px;
  padding-left: 15px;
}

/* line 121, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table:first-child,
.panel > .table-responsive:first-child > .table:first-child {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}

/* line 127, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel > .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 > thead: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;
}

/* line 131, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .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 th:first-child,
.panel > .table-responsive:first-child > .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 th:first-child {
  border-top-left-radius: 3px;
}

/* line 135, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .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 th:last-child,
.panel > .table-responsive:first-child > .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 th:last-child {
  border-top-right-radius: 3px;
}

/* line 143, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table:last-child,
.panel > .table-responsive:last-child > .table:last-child {
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

/* line 149, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel > .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 > tbody: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;
}

/* line 153, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .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 th:first-child,
.panel > .table-responsive:last-child > .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 th:first-child {
  border-bottom-left-radius: 3px;
}

/* line 157, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .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 th:last-child,
.panel > .table-responsive:last-child > .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 th:last-child {
  border-bottom-right-radius: 3px;
}

/* line 164, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel > .panel-body + .table,
.panel > .panel-body + .table-responsive,
.panel > .table + .panel-body,
.panel > .table-responsive + .panel-body {
  border-top: 1px solid #ddd;
}

/* line 170, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table > tbody:first-child > tr:first-child th,
.panel > .table > tbody:first-child > tr:first-child td {
  border-top: 0;
}

/* line 174, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table-bordered,
.panel > .table-responsive > .table-bordered {
  border: 0;
}

/* line 181, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table-bordered > thead > tr > th:first-child,
.panel > .table-bordered > thead > tr > td:first-child,
.panel > .table-bordered > tbody > tr > th:first-child,
.panel > .table-bordered > tbody > tr > td:first-child,
.panel > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-bordered > tfoot > tr > td:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
  border-left: 0;
}

/* line 185, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table-bordered > thead > tr > th:last-child,
.panel > .table-bordered > thead > tr > td:last-child,
.panel > .table-bordered > tbody > tr > th:last-child,
.panel > .table-bordered > tbody > tr > td:last-child,
.panel > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-bordered > tfoot > tr > td:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
  border-right: 0;
}

/* line 194, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table-bordered > thead > tr:first-child > td,
.panel > .table-bordered > thead > tr:first-child > th,
.panel > .table-bordered > tbody > tr:first-child > td,
.panel > .table-bordered > tbody > tr:first-child > th,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
  border-bottom: 0;
}

/* line 203, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table-bordered > tbody > tr:last-child > td,
.panel > .table-bordered > tbody > tr:last-child > th,
.panel > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-bordered > tfoot > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
  border-bottom: 0;
}

/* line 210, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table-responsive {
  margin-bottom: 0;
  border: 0;
}

/* line 222, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel-group {
  margin-bottom: 20px;
}

/* line 226, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel-group .panel {
  margin-bottom: 0;
  border-radius: 4px;
}

/* line 230, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel-group .panel + .panel {
  margin-top: 5px;
}

/* line 235, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel-group .panel-heading {
  border-bottom: 0;
}

/* line 238, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel-group .panel-heading + .panel-collapse > .panel-body,
.panel-group .panel-heading + .panel-collapse > .list-group {
  border-top: 1px solid #ddd;
}

/* line 244, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel-group .panel-footer {
  border-top: 0;
}

/* line 246, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel-group .panel-footer + .panel-collapse .panel-body {
  border-bottom: 1px solid #ddd;
}

/* line 254, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel-default {
  border-color: #ddd;
}

/* line 6, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-default > .panel-heading {
  color: #333333;
  background-color: #f5f5f5;
  border-color: #ddd;
}

/* line 11, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-default > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #ddd;
}

/* line 14, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-default > .panel-heading .badge {
  color: #f5f5f5;
  background-color: #333333;
}

/* line 20, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-default > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #ddd;
}

/* line 257, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel-primary {
  border-color: #337ab7;
}

/* line 6, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-primary > .panel-heading {
  color: #fff;
  background-color: #337ab7;
  border-color: #337ab7;
}

/* line 11, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-primary > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #337ab7;
}

/* line 14, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-primary > .panel-heading .badge {
  color: #337ab7;
  background-color: #fff;
}

/* line 20, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-primary > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #337ab7;
}

/* line 260, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel-success {
  border-color: #d6e9c6;
}

/* line 6, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-success > .panel-heading {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}

/* line 11, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-success > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #d6e9c6;
}

/* line 14, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-success > .panel-heading .badge {
  color: #dff0d8;
  background-color: #3c763d;
}

/* line 20, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-success > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #d6e9c6;
}

/* line 263, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel-info {
  border-color: #bce8f1;
}

/* line 6, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-info > .panel-heading {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1;
}

/* line 11, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-info > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #bce8f1;
}

/* line 14, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-info > .panel-heading .badge {
  color: #d9edf7;
  background-color: #31708f;
}

/* line 20, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-info > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #bce8f1;
}

/* line 266, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel-warning {
  border-color: #faebcc;
}

/* line 6, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-warning > .panel-heading {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
}

/* line 11, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-warning > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #faebcc;
}

/* line 14, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-warning > .panel-heading .badge {
  color: #fcf8e3;
  background-color: #8a6d3b;
}

/* line 20, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-warning > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #faebcc;
}

/* line 269, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel-danger {
  border-color: #ebccd1;
}

/* line 6, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-danger > .panel-heading {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}

/* line 11, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-danger > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #ebccd1;
}

/* line 14, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-danger > .panel-heading .badge {
  color: #f2dede;
  background-color: #a94442;
}

/* line 20, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-danger > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #ebccd1;
}

/* line 5, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-embed.scss */
.embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
}

/* line 12, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-embed.scss */
.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;
}

/* line 28, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-embed.scss */
.embed-responsive-16by9 {
  padding-bottom: 56.25%;
}

/* line 33, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-embed.scss */
.embed-responsive-4by3 {
  padding-bottom: 75%;
}

/* line 7, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_wells.scss */
.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);
}

/* line 15, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_wells.scss */
.well blockquote {
  border-color: #ddd;
  border-color: rgba(0, 0, 0, 0.15);
}

/* line 22, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_wells.scss */
.well-lg {
  padding: 24px;
  border-radius: 6px;
}

/* line 26, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_wells.scss */
.well-sm {
  padding: 9px;
  border-radius: 3px;
}

/* line 6, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_close.scss */
.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;
}

/* line 15, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_close.scss */
.close:hover, .close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
  filter: alpha(opacity=50);
  opacity: 0.5;
}

/* line 30, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_close.scss */
button.close {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  appearance: none;
}

/* line 11, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
.modal-open {
  overflow: hidden;
}

/* line 16, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}

/* line 32, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
.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;
  -moz-transition: -moz-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
}

/* line 36, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
.modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}

/* line 38, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

/* line 44, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}

/* line 51, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
.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;
}

/* line 64, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
}

/* line 73, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
.modal-backdrop.fade {
  filter: alpha(opacity=0);
  opacity: 0;
}

/* line 74, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
.modal-backdrop.in {
  filter: alpha(opacity=50);
  opacity: 0.5;
}

/* line 79, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
}

/* line 14, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.modal-header:before, .modal-header:after {
  display: table;
  content: " ";
}

/* line 19, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.modal-header:after {
  clear: both;
}

/* line 85, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
.modal-header .close {
  margin-top: -2px;
}

/* line 90, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
.modal-title {
  margin: 0;
  line-height: 1.428571429;
}

/* line 97, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
.modal-body {
  position: relative;
  padding: 15px;
}

/* line 103, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}

/* line 14, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.modal-footer:before, .modal-footer:after {
  display: table;
  content: " ";
}

/* line 19, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.modal-footer:after {
  clear: both;
}

/* line 110, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
.modal-footer .btn + .btn {
  margin-bottom: 0;
  margin-left: 5px;
}

/* line 115, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}

/* line 119, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}

/* line 125, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 480px) {
  /* line 136, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
  .modal-dialog {
    width: 600px;
    margin: 30px auto;
  }
  /* line 140, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
  .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);
  }
  /* line 145, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
  .modal-sm {
    width: 300px;
  }
}

@media (min-width: 768px) {
  /* line 149, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
  .modal-lg {
    width: 900px;
  }
}

/* line 7, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
.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.428571429;
  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;
}

/* line 18, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.in {
  filter: alpha(opacity=90);
  opacity: 0.9;
}

/* line 19, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.top {
  padding: 5px 0;
  margin-top: -3px;
}

/* line 23, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.right {
  padding: 0 5px;
  margin-left: 3px;
}

/* line 27, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.bottom {
  padding: 5px 0;
  margin-top: 3px;
}

/* line 31, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.left {
  padding: 0 5px;
  margin-left: -3px;
}

/* line 37, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.top .tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}

/* line 44, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.top-left .tooltip-arrow {
  right: 5px;
  bottom: 0;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}

/* line 51, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.top-right .tooltip-arrow {
  bottom: 0;
  left: 5px;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}

/* line 58, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: #000;
}

/* line 65, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: #000;
}

/* line 72, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}

/* line 79, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.bottom-left .tooltip-arrow {
  top: 0;
  right: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}

/* line 86, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.bottom-right .tooltip-arrow {
  top: 0;
  left: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}

/* line 96, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 4px;
}

/* line 106, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}

/* line 6, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
.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.428571429;
  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);
}

/* line 26, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
.popover.top {
  margin-top: -10px;
}

/* line 27, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
.popover.right {
  margin-left: 10px;
}

/* line 28, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
.popover.bottom {
  margin-top: 10px;
}

/* line 29, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
.popover.left {
  margin-left: -10px;
}

/* line 33, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
.popover > .arrow {
  border-width: 11px;
}

/* line 36, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
.popover > .arrow, .popover > .arrow:after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}

/* line 46, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
.popover > .arrow:after {
  content: "";
  border-width: 10px;
}

/* line 52, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
.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;
}

/* line 59, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
.popover.top > .arrow:after {
  bottom: 1px;
  margin-left: -10px;
  content: " ";
  border-top-color: #fff;
  border-bottom-width: 0;
}

/* line 67, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
.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;
}

/* line 74, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
.popover.right > .arrow:after {
  bottom: -10px;
  left: 1px;
  content: " ";
  border-right-color: #fff;
  border-left-width: 0;
}

/* line 82, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
.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);
}

/* line 89, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
.popover.bottom > .arrow:after {
  top: 1px;
  margin-left: -10px;
  content: " ";
  border-top-width: 0;
  border-bottom-color: #fff;
}

/* line 98, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
.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);
}

/* line 105, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
.popover.left > .arrow:after {
  right: 1px;
  bottom: -10px;
  content: " ";
  border-right-width: 0;
  border-left-color: #fff;
}

/* line 115, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
.popover-title {
  padding: 8px 14px;
  margin: 0;
  font-size: 14px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-radius: 5px 5px 0 0;
}

/* line 124, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
.popover-content {
  padding: 9px 14px;
}

/* line 7, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
.carousel {
  position: relative;
}

/* line 11, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* line 16, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
.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;
}

/* line 22, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  display: block;
  max-width: 100%;
  height: auto;
  line-height: 1;
}

@media all and (transform-3d), (-webkit-transform-3d) {
  /* line 16, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
  .carousel-inner > .item {
    -webkit-transition: -webkit-transform 0.6s ease-in-out;
    -moz-transition: -moz-transform 0.6s ease-in-out;
    -o-transition: -o-transform 0.6s ease-in-out;
    transition: transform 0.6s ease-in-out;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000px;
    -moz-perspective: 1000px;
    perspective: 1000px;
  }
  /* line 34, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
  .carousel-inner > .item.next, .carousel-inner > .item.active.right {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    left: 0;
  }
  /* line 39, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
  .carousel-inner > .item.prev, .carousel-inner > .item.active.left {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    left: 0;
  }
  /* line 44, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
  .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;
  }
}

/* line 53, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-inner > .active,
.carousel-inner > .next,
.carousel-inner > .prev {
  display: block;
}

/* line 59, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-inner > .active {
  left: 0;
}

/* line 63, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-inner > .next,
.carousel-inner > .prev {
  position: absolute;
  top: 0;
  width: 100%;
}

/* line 70, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-inner > .next {
  left: 100%;
}

/* line 73, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-inner > .prev {
  left: -100%;
}

/* line 76, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-inner > .next.left,
.carousel-inner > .prev.right {
  left: 0;
}

/* line 81, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-inner > .active.left {
  left: -100%;
}

/* line 84, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-inner > .active.right {
  left: 100%;
}

/* line 93, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
.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;
}

/* line 109, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
.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: 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;
}

/* line 112, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
.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: 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;
}

/* line 119, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-control:hover, .carousel-control:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  filter: alpha(opacity=90);
  opacity: 0.9;
}

/* line 128, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
.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;
}

/* line 138, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-control .icon-prev,
.carousel-control .glyphicon-chevron-left {
  left: 50%;
  margin-left: -10px;
}

/* line 143, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-right {
  right: 50%;
  margin-right: -10px;
}

/* line 148, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-control .icon-prev,
.carousel-control .icon-next {
  width: 20px;
  height: 20px;
  font-family: serif;
  line-height: 1;
}

/* line 157, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-control .icon-prev:before {
  content: "\2039";
}

/* line 162, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-control .icon-next:before {
  content: "\203a";
}

/* line 173, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
.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;
}

/* line 184, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
.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;
}

/* line 207, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-indicators .active {
  width: 12px;
  height: 12px;
  margin: 0;
  background-color: #fff;
}

/* line 218, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
.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);
}

/* line 230, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-caption .btn {
  text-shadow: none;
}

@media screen and (min-width: 480px) {
  /* line 241, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
  .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;
  }
  /* line 250, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
  .carousel-control .glyphicon-chevron-left,
.carousel-control .icon-prev {
    margin-left: -10px;
  }
  /* line 254, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
  .carousel-control .glyphicon-chevron-right,
.carousel-control .icon-next {
    margin-right: -10px;
  }
  /* line 261, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
  .carousel-caption {
    right: 20%;
    left: 20%;
    padding-bottom: 30px;
  }
  /* line 268, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
  .carousel-indicators {
    bottom: 20px;
  }
}

/* line 14, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.clearfix:before, .clearfix:after {
  display: table;
  content: " ";
}

/* line 19, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.clearfix:after {
  clear: both;
}

/* line 12, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_utilities.scss */
.center-block {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

/* line 15, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_utilities.scss */
.pull-right {
  float: right !important;
}

/* line 18, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_utilities.scss */
.pull-left {
  float: left !important;
}

/* line 27, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_utilities.scss */
.hide {
  display: none !important;
}

/* line 30, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_utilities.scss */
.show {
  display: block !important;
}

/* line 33, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_utilities.scss */
.invisible {
  visibility: hidden;
}

/* line 36, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_utilities.scss */
.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

/* line 45, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_utilities.scss */
.hidden {
  display: none !important;
}

/* line 53, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_utilities.scss */
.affix {
  position: fixed;
}

@-ms-viewport {
  width: device-width;
}

/* line 13, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
.visible-xs {
  display: none !important;
}

/* line 13, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
.visible-sm {
  display: none !important;
}

/* line 13, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
.visible-md {
  display: none !important;
}

/* line 13, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
.visible-lg {
  display: none !important;
}

/* line 36, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
.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: 479px) {
  /* line 3, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  .visible-xs {
    display: block !important;
  }
  /* line 6, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  table.visible-xs {
    display: table !important;
  }
  /* line 7, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  tr.visible-xs {
    display: table-row !important;
  }
  /* line 8, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  th.visible-xs,
td.visible-xs {
    display: table-cell !important;
  }
}

@media (max-width: 479px) {
  /* line 54, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-xs-block {
    display: block !important;
  }
}

@media (max-width: 479px) {
  /* line 59, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-xs-inline {
    display: inline !important;
  }
}

@media (max-width: 479px) {
  /* line 64, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-xs-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  /* line 3, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  .visible-sm {
    display: block !important;
  }
  /* line 6, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  table.visible-sm {
    display: table !important;
  }
  /* line 7, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  tr.visible-sm {
    display: table-row !important;
  }
  /* line 8, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  th.visible-sm,
td.visible-sm {
    display: table-cell !important;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  /* line 73, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-sm-block {
    display: block !important;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  /* line 78, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-sm-inline {
    display: inline !important;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  /* line 83, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-sm-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  /* line 3, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  .visible-md {
    display: block !important;
  }
  /* line 6, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  table.visible-md {
    display: table !important;
  }
  /* line 7, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  tr.visible-md {
    display: table-row !important;
  }
  /* line 8, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  th.visible-md,
td.visible-md {
    display: table-cell !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  /* line 92, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-md-block {
    display: block !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  /* line 97, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-md-inline {
    display: inline !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  /* line 102, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-md-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 992px) {
  /* line 3, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  .visible-lg {
    display: block !important;
  }
  /* line 6, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  table.visible-lg {
    display: table !important;
  }
  /* line 7, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  tr.visible-lg {
    display: table-row !important;
  }
  /* line 8, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  th.visible-lg,
td.visible-lg {
    display: table-cell !important;
  }
}

@media (min-width: 992px) {
  /* line 111, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-lg-block {
    display: block !important;
  }
}

@media (min-width: 992px) {
  /* line 116, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-lg-inline {
    display: inline !important;
  }
}

@media (min-width: 992px) {
  /* line 121, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-lg-inline-block {
    display: inline-block !important;
  }
}

@media (max-width: 479px) {
  /* line 13, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  .hidden-xs {
    display: none !important;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  /* line 13, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  .hidden-sm {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  /* line 13, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  .hidden-md {
    display: none !important;
  }
}

@media (min-width: 992px) {
  /* line 13, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  .hidden-lg {
    display: none !important;
  }
}

/* line 13, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
.visible-print {
  display: none !important;
}

@media print {
  /* line 3, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  .visible-print {
    display: block !important;
  }
  /* line 6, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  table.visible-print {
    display: table !important;
  }
  /* line 7, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  tr.visible-print {
    display: table-row !important;
  }
  /* line 8, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  th.visible-print,
td.visible-print {
    display: table-cell !important;
  }
}

/* line 155, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
.visible-print-block {
  display: none !important;
}

@media print {
  /* line 155, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-print-block {
    display: block !important;
  }
}

/* line 162, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
.visible-print-inline {
  display: none !important;
}

@media print {
  /* line 162, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-print-inline {
    display: inline !important;
  }
}

/* line 169, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
.visible-print-inline-block {
  display: none !important;
}

@media print {
  /* line 169, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-print-inline-block {
    display: inline-block !important;
  }
}

@media print {
  /* line 13, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  .hidden-print {
    display: none !important;
  }
}

/* line 9, vendor/assets/stylesheets/awesometheme/bootstrap-mods.css.scss */
pre {
  white-space: pre-wrap;
}

/* line 13, vendor/assets/stylesheets/awesometheme/bootstrap-mods.css.scss */
textarea {
  overflow: auto;
  vertical-align: top;
}

/* line 18, vendor/assets/stylesheets/awesometheme/bootstrap-mods.css.scss */
output {
  vertical-align: middle;
}

/* line 22, vendor/assets/stylesheets/awesometheme/bootstrap-mods.css.scss */
.form-control {
  vertical-align: middle;
}

/* line 26, vendor/assets/stylesheets/awesometheme/bootstrap-mods.css.scss */
.radio, .checkbox {
  vertical-align: middle;
}

/* line 30, vendor/assets/stylesheets/awesometheme/bootstrap-mods.css.scss */
.radio label, .checkbox label {
  margin-bottom: 0;
}

/* line 35, vendor/assets/stylesheets/awesometheme/bootstrap-mods.css.scss */
body .nav > a:hover {
  background-color: #00b2c0;
}

/* line 39, vendor/assets/stylesheets/awesometheme/bootstrap-mods.css.scss */
.btn {
  -o-user-select: none;
}

/* line 43, vendor/assets/stylesheets/awesometheme/bootstrap-mods.css.scss */
.jumbotron {
  font-size: 21px;
  font-weight: 200;
  line-height: 2.1428571435;
}

/* line 49, vendor/assets/stylesheets/awesometheme/bootstrap-mods.css.scss */
.jumbotron h1, .jumbotron .h1 {
  line-height: 1;
}

/* line 53, vendor/assets/stylesheets/awesometheme/bootstrap-mods.css.scss */
.thumbnail > img, .thumbnail a > img {
  display: block;
  height: auto;
  max-width: 100%;
}

/* line 59, vendor/assets/stylesheets/awesometheme/bootstrap-mods.css.scss */
.modal-dialog {
  z-index: 1050;
}

/* line 63, vendor/assets/stylesheets/awesometheme/bootstrap-mods.css.scss */
.carousel-inner > .item > img, .carousel-inner > .item > a > img {
  display: block;
  height: auto;
  max-width: 100%;
}

/* line 75, vendor/assets/stylesheets/awesometheme/bootstrap-mods.css.scss */
header.navbar {
  background: #fff;
  border-radius: 0;
  color: white;
}

/* line 79, vendor/assets/stylesheets/awesometheme/bootstrap-mods.css.scss */
header.navbar a {
  color: white;
}

/* line 83, vendor/assets/stylesheets/awesometheme/bootstrap-mods.css.scss */
.nav-no-collapse ul li a {
  color: white;
}

/* line 87, vendor/assets/stylesheets/awesometheme/bootstrap-mods.css.scss */
.header-user-info {
  float: right;
  text-align: right;
  color: #808080;
  padding-right: 15px;
}

/* line 88, vendor/assets/stylesheets/awesometheme/bootstrap-mods.css.scss */
h3.company-brand {
  margin: 0;
  padding: 2px 0;
}

/* line 89, vendor/assets/stylesheets/awesometheme/bootstrap-mods.css.scss */
#header_clock {
  padding-top: 15px;
  font-size: 12px;
}

/* line 90, vendor/assets/stylesheets/awesometheme/bootstrap-mods.css.scss */
.nav-no-collapse ul li a.account {
  color: #00B3BE;
}

/* line 93, vendor/assets/stylesheets/awesometheme/bootstrap-mods.css.scss */
.nav-no-collapse ul li a.account:hover, .nav-no-collapse ul li a.account:focus {
  background: none;
  color: #000;
}

/* line 94, vendor/assets/stylesheets/awesometheme/bootstrap-mods.css.scss */
.nav-no-collapse ul li a.account span:hover {
  color: #007777;
}

/* line 98, vendor/assets/stylesheets/awesometheme/bootstrap-mods.css.scss */
.modal-header .close {
  opacity: 1.0 !important;
  padding: 6px;
  background-color: #00b2c0;
  display: block;
}

/* line 101, vendor/assets/stylesheets/awesometheme/bootstrap-mods.css.scss */
.modal-header .close:hover {
  opacity: 0.2 !important;
}

/*
 * Timepicker Component for Twitter Bootstrap
 *
 * Copyright 2013 Joris de Wit
 *
 * Contributors https://github.com/jdewit/bootstrap-timepicker/graphs/contributors
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */
/* Calendar Widget
=================================================================== */
/* line 16, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.calendar {
  background: white;
}

/* line 18, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.calendar .calendar-details {
  height: 400px;
  width: 33%;
  background: #00b2c0;
  float: left;
  color: white;
  font-weight: 300px;
  position: relative;
}

/* line 26, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.calendar .calendar-details .day {
  font-size: 20px;
  margin: 150px 10px 0px 10px;
  text-transform: uppercase;
}

/* line 31, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.calendar .calendar-details .date {
  font-size: 20px;
  margin: 5px 10px 0px 10px;
  text-transform: uppercase;
}

/* line 36, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.calendar .calendar-details .events {
  margin: 25px 10px 0px -30px;
}

/* line 38, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.calendar .calendar-details .events ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* line 44, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.calendar .calendar-details .add-event {
  width: 90%;
  margin: 0 5%;
  position: absolute;
  bottom: 10px;
  border-bottom: 1px solid #62bce8;
}

/* line 50, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.calendar .calendar-details .add-event i {
  color: #8fcfee;
}

/* line 53, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.calendar .calendar-details .add-event input {
  width: 80%;
  color: white;
  border: 0;
  font-size: 12px;
  margin: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

/* line 65, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.calendar .calendar-small {
  width: 67%;
  float: right;
}

/* line 70, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.calendar .fc td, .calendar .fc th {
  padding: 0.4em;
  vertical-align: middle;
  font-weight: normal;
}

/* line 76, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.calendar .fc-widget-header, .calendar .fc-widget-content {
  border: 1px solid transparent;
}

/* line 79, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.calendar .fc-content {
  margin: 50px 30px 30px 30px;
  text-transform: uppercase;
}

/* line 83, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.calendar .fc-state-default {
  background: white;
  border: none;
  color: #c7cbd5;
  text-shadow: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

/* line 92, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.calendar .fc-state-hover, .calendar .fc-state-down, .calendar .fc-state-active, .calendar .fc-state-disabled {
  color: #383e4b;
  background: white;
}

/* line 96, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.calendar .fc-day-number {
  display: block;
  width: 28px;
  margin: -5px auto;
  padding: 5px !important;
}

/* line 102, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.calendar .fc-state-highlight {
  background: transparent;
}

/* line 104, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.calendar .fc-state-highlight .fc-day-number {
  background: #00b2c0;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  color: white;
}

/* line 112, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.calendar .event {
  background: #00b2c0;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  color: white;
}

/* line 120, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.calendar .fc-grid .fc-day-number {
  float: none;
  padding: 0 2px;
  text-align: center;
}

/* line 125, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.calendar .fc-grid .fc-other-month .fc-day-number {
  opacity: 1;
  filter: alpha(opacity=1);
  color: #c7cbd5;
}

/* line 131, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.calendar .fc-event {
  border: 0;
  height: 1px;
  background: #c7cbd5;
}

/* line 135, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.calendar .fc-event .fc-event-inner {
  display: none;
}

/* line 141, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.bootstrap-timepicker {
  position: relative;
}

/* line 143, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.bootstrap-timepicker.pull-right .bootstrap-timepicker-widget.dropdown-menu {
  left: auto;
  right: 0;
}

/* line 146, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.bootstrap-timepicker.pull-right .bootstrap-timepicker-widget.dropdown-menu:before {
  left: auto;
  right: 12px;
}

/* line 150, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.bootstrap-timepicker.pull-right .bootstrap-timepicker-widget.dropdown-menu:after {
  left: auto;
  right: 13px;
}

/* line 155, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.bootstrap-timepicker .input-group-addon {
  cursor: pointer;
  -webkit-border-radius: 4px 0px 0px 4px !important;
  border-radius: 4px 0px 0px 4px !important;
  border-right: 0px;
}

/* line 164, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.bootstrap-timepicker-widget.dropdown-menu {
  padding: 2px 3px 2px 2px;
  margin-left: 54px;
}

/* line 167, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.bootstrap-timepicker-widget.dropdown-menu.open {
  display: inline-block;
}

/* line 170, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.bootstrap-timepicker-widget.dropdown-menu:before {
  border-bottom: 7px solid rgba(0, 0, 0, 0.2);
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  content: "";
  display: inline-block;
  left: 9px;
  position: absolute;
  top: -7px;
}

/* line 180, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.bootstrap-timepicker-widget.dropdown-menu:after {
  border-bottom: 6px solid #FFFFFF;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  content: "";
  display: inline-block;
  left: 10px;
  position: absolute;
  top: -6px;
}

/* line 191, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.bootstrap-timepicker-widget a.btn, .bootstrap-timepicker-widget input {
  border-radius: 4px;
}

/* line 194, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.bootstrap-timepicker-widget table {
  width: 100%;
  margin: 0;
}

/* line 197, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.bootstrap-timepicker-widget table td {
  text-align: center;
  height: 30px;
  margin: 0;
  padding: 2px;
}

/* line 202, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.bootstrap-timepicker-widget table td:not(.separator) {
  min-width: 30px;
}

/* line 205, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.bootstrap-timepicker-widget table td span {
  width: 100%;
}

/* line 208, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.bootstrap-timepicker-widget table td a {
  border: 1px transparent solid;
  width: 100%;
  display: inline-block;
  margin: 0;
  padding: 8px 0;
  outline: 0;
  color: #333;
}

/* line 216, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.bootstrap-timepicker-widget table td a:hover {
  text-decoration: none;
  background-color: #eee;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  border-color: #ddd;
}

/* line 224, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.bootstrap-timepicker-widget table td a i {
  margin-top: 2px;
}

/* line 228, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.bootstrap-timepicker-widget table td input {
  width: 25px;
  margin: 0;
  text-align: center;
  border: 1px solid #c7cbd5;
}

/* line 236, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.bootstrap-timepicker-widget .modal-content {
  padding: 4px;
}

@media (min-width: 767px) {
  /* line 242, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
  .bootstrap-timepicker-widget.modal {
    width: 200px;
    margin-left: -100px;
  }
}

@media (max-width: 767px) {
  /* line 249, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
  .bootstrap-timepicker {
    width: 100%;
  }
  /* line 251, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
  .bootstrap-timepicker .dropdown-menu {
    width: 100%;
  }
}

/*
 * Stylesheet for the Date Range Picker, for use with Bootstrap 3.x
 *
 * Copyright 2013 Dan Grossman ( http://www.dangrossman.info )
 * Licensed under the Apache License v2.0
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Built for http://www.improvely.com
 */
/* line 267, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.daterangepicker {
  position: absolute;
  background: #fff;
  top: 100px;
  left: 20px;
  padding: 4px;
  margin-top: 1px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

/* line 268, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.daterangepicker.dropdown-menu {
  max-width: none;
}

/* line 272, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.daterangepicker.opensleft .ranges, .daterangepicker.opensleft .calendar {
  float: left;
  margin: 4px;
}

/* line 278, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.daterangepicker.opensright .ranges, .daterangepicker.opensright .calendar {
  float: right;
  margin: 4px;
}

/* line 283, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.daterangepicker .ranges {
  width: 160px;
  text-align: left;
}

/* line 286, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.daterangepicker .ranges .range_inputs > div {
  float: left;
}

/* line 288, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.daterangepicker .ranges .range_inputs > div:nth-child(2) {
  padding-left: 11px;
}

/* line 293, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.daterangepicker .calendar {
  display: none;
  max-width: 270px;
}

/* line 296, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.daterangepicker .calendar th, .daterangepicker .calendar td {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  white-space: nowrap;
  text-align: center;
  min-width: 32px;
}

/* line 304, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.daterangepicker .ranges label {
  color: #333;
  display: block;
  font-size: 11px;
  font-weight: normal;
  height: 20px;
  line-height: 20px;
  margin-bottom: 2px;
  text-shadow: #fff 1px 1px 0px;
  text-transform: uppercase;
  width: 74px;
}

/* line 316, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.daterangepicker .ranges input {
  font-size: 11px;
}

/* line 319, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.daterangepicker .ranges .input-mini {
  background-color: #eee;
  border: 1px solid #ccc;
  border-radius: 4px;
  color: #555;
  display: block;
  font-size: 11px;
  height: 30px;
  line-height: 30px;
  vertical-align: middle;
  margin: 0 0 10px 0;
  padding: 0 6px;
  width: 74px;
}

/* line 333, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.daterangepicker .ranges ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* line 338, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.daterangepicker .ranges li {
  font-size: 13px;
  background: #f5f5f5;
  border: 1px solid #f5f5f5;
  color: #08c;
  padding: 3px 12px;
  margin-bottom: 8px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  cursor: pointer;
}

/* line 349, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.daterangepicker .ranges li.active, .daterangepicker .ranges li:hover {
  background: #08c;
  border: 1px solid #08c;
  color: #fff;
}

/* line 356, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.daterangepicker .calendar-date {
  border: 1px solid #ddd;
  padding: 4px;
  border-radius: 4px;
  background: #fff;
}

/* line 362, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.daterangepicker .calendar-time {
  text-align: center;
  margin: 8px auto 0 auto;
  line-height: 30px;
}

/* line 377, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.daterangepicker.opensleft:before {
  position: absolute;
  top: -7px;
  right: 9px;
  display: inline-block;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #ccc;
  border-left: 7px solid transparent;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  content: '';
}

/* line 388, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.daterangepicker.opensleft:after {
  position: absolute;
  top: -6px;
  right: 10px;
  display: inline-block;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #fff;
  border-left: 6px solid transparent;
  content: '';
}

/* line 400, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.daterangepicker.opensright:before {
  position: absolute;
  top: -7px;
  left: 9px;
  display: inline-block;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #ccc;
  border-left: 7px solid transparent;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  content: '';
}

/* line 411, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.daterangepicker.opensright:after {
  position: absolute;
  top: -6px;
  left: 10px;
  display: inline-block;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #fff;
  border-left: 6px solid transparent;
  content: '';
}

/* line 422, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.daterangepicker table {
  width: 100%;
  margin: 0;
}

/* line 426, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.daterangepicker td, .daterangepicker th {
  text-align: center;
  width: 20px;
  height: 20px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
}

/* line 437, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.daterangepicker td.off, .daterangepicker td.disabled {
  color: #999;
}

/* line 440, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.daterangepicker td.available:hover {
  background: #eee;
}

/* line 444, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.daterangepicker th.available:hover {
  background: #eee;
}

/* line 448, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.daterangepicker td.in-range {
  background: #ebf4f8;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}

/* line 454, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.daterangepicker td.active {
  background-color: #00b2c0;
  border-color: #3071a9;
  color: #fff;
}

/* line 458, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.daterangepicker td.active:hover {
  background-color: #00b2c0;
  border-color: #3071a9;
  color: #fff;
}

/* line 464, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.daterangepicker td.week {
  font-size: 80%;
  color: #ccc;
}

/* line 469, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.daterangepicker th.week {
  font-size: 80%;
  color: #ccc;
}

/* line 474, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.daterangepicker select.monthselect, .daterangepicker select.yearselect {
  font-size: 12px;
  padding: 1px;
  height: auto;
  margin: 0;
  cursor: default;
}

/* line 481, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.daterangepicker select.monthselect {
  margin-right: 2%;
  width: 56%;
}

/* line 485, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.daterangepicker select.yearselect {
  width: 40%;
}

/* line 488, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.daterangepicker select.hourselect, .daterangepicker select.minuteselect, .daterangepicker select.ampmselect {
  width: 50px;
  margin-bottom: 0;
}

/*
 * Datepicker for Bootstrap
 *
 * Copyright 2012 Stefan Petre
 * Improvements by Andrew Rowls
 * Licensed under the Apache License v2.0
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 */
/* line 505, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.datepicker {
  padding: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  direction: ltr;
  /*.dow {
    border-top: 1px solid #ddd !important;
  }*/
}

/* line 516, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.datepicker-inline {
  width: 220px;
}

/* line 520, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.datepicker.datepicker-rtl {
  direction: rtl;
}

/* line 522, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.datepicker.datepicker-rtl table tr td span {
  float: right;
}

/* line 527, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.datepicker-dropdown {
  top: 0;
  left: 0;
}

/* line 530, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.datepicker-dropdown:before {
  content: '';
  display: inline-block;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #ccc;
  border-top: 0;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  position: absolute;
}

/* line 540, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.datepicker-dropdown:after {
  content: '';
  display: inline-block;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid white;
  border-top: 0;
  position: absolute;
}

/* line 550, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.datepicker-dropdown.datepicker-orient-left:before {
  left: 6px;
}

/* line 553, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.datepicker-dropdown.datepicker-orient-left:after {
  left: 7px;
}

/* line 558, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.datepicker-dropdown.datepicker-orient-right:before {
  right: 6px;
}

/* line 561, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.datepicker-dropdown.datepicker-orient-right:after {
  right: 7px;
}

/* line 566, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.datepicker-dropdown.datepicker-orient-top:before {
  top: -7px;
}

/* line 569, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.datepicker-dropdown.datepicker-orient-top:after {
  top: -6px;
}

/* line 574, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.datepicker-dropdown.datepicker-orient-bottom:before {
  bottom: -7px;
  border-bottom: 0;
  border-top: 7px solid #999;
}

/* line 579, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.datepicker-dropdown.datepicker-orient-bottom:after {
  bottom: -6px;
  border-bottom: 0;
  border-top: 6px solid white;
}

/* line 588, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.datepicker > div {
  display: none;
}

/* line 591, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.datepicker.days div.datepicker-days, .datepicker.months div.datepicker-months, .datepicker.years div.datepicker-years {
  display: block;
}

/* line 594, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.datepicker table {
  margin: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* line 603, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.datepicker td, .datepicker th {
  text-align: center;
  width: 20px;
  height: 20px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  border: none;
}

/* line 615, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.table-striped .datepicker table tr td, .table-striped .datepicker table tr th {
  background-color: transparent;
}

/* line 622, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.datepicker table tr td.day:hover {
  background: #eee;
  cursor: pointer;
}

/* line 626, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.datepicker table tr td.old, .datepicker table tr td.new {
  color: #383e4b;
}

/* line 629, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.datepicker table tr td.disabled {
  background: none;
  color: #f9f9f9;
  cursor: default;
}

/* line 633, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.datepicker table tr td.disabled:hover {
  background: none;
  color: #f9f9f9;
  cursor: default;
}

/* line 639, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.datepicker table tr td.today {
  background: #00b2c0;
  color: #000;
}

/* line 642, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.datepicker table tr td.today:hover {
  background: #00b2c0;
  color: #000;
}

/* line 646, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.datepicker table tr td.today.disabled {
  background: #00b2c0;
  color: #000;
}

/* line 649, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.datepicker table tr td.today.disabled:hover {
  background: #00b2c0;
  color: #000;
}

/* line 654, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.datepicker table tr td.today:hover:hover {
  color: #000;
}

/* line 657, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.datepicker table tr td.today.active:hover {
  color: #fff;
}

/* line 661, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.datepicker table tr td.range {
  background: #eee;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}

/* line 666, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.datepicker table tr td.range:hover {
  background: #eee;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}

/* line 672, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.datepicker table tr td.range.disabled {
  background: #eee;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}

/* line 677, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.datepicker table tr td.range.disabled:hover {
  background: #eee;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}

/* line 684, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.datepicker table tr td.range.today {
  background: #f3c17a;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}

/* line 689, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.datepicker table tr td.range.today:hover {
  background: #f3c17a;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}

/* line 695, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.datepicker table tr td.range.today.disabled {
  background: #f3c17a;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}

/* line 700, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.datepicker table tr td.range.today.disabled:hover {
  background: #f3c17a;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}

/* line 709, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.datepicker table tr td.selected {
  background: #f9f9f9;
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}

/* line 713, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.datepicker table tr td.selected:hover {
  background: #f9f9f9;
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}

/* line 718, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.datepicker table tr td.selected.disabled {
  background: #f9f9f9;
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}

/* line 722, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.datepicker table tr td.selected.disabled:hover {
  background: #f9f9f9;
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}

/* line 729, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.datepicker table tr td.active {
  background: #00b2c0;
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}

/* line 733, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.datepicker table tr td.active:hover {
  background: #00b2c0;
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}

/* line 738, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.datepicker table tr td.active.disabled {
  background: #00b2c0;
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}

/* line 742, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.datepicker table tr td.active.disabled:hover {
  background: #00b2c0;
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}

/* line 749, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.datepicker table tr td span {
  display: block;
  width: 23%;
  height: 54px;
  line-height: 54px;
  float: left;
  margin: 1%;
  cursor: pointer;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

/* line 760, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.datepicker table tr td span:hover {
  background: #eee;
}

/* line 763, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.datepicker table tr td span.disabled {
  background: none;
  color: #f9f9f9;
  cursor: default;
}

/* line 767, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.datepicker table tr td span.disabled:hover {
  background: none;
  color: #f9f9f9;
  cursor: default;
}

/* line 773, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.datepicker table tr td span.active {
  background: #00b2c0;
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}

/* line 777, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.datepicker table tr td span.active:hover {
  background: #00b2c0;
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}

/* line 782, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.datepicker table tr td span.active.disabled {
  background: #00b2c0;
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}

/* line 786, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.datepicker table tr td span.active.disabled:hover {
  background: #00b2c0;
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}

/* line 793, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.datepicker table tr td span.old, .datepicker table tr td span.new {
  color: #f9f9f9;
}

/* line 798, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.datepicker th.datepicker-switch {
  width: 145px;
}

/* line 801, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.datepicker thead tr:first-child th, .datepicker tfoot tr th {
  cursor: pointer;
}

/* line 804, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.datepicker thead tr:first-child th:hover, .datepicker tfoot tr th:hover {
  background: #eee;
}

/* line 807, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.datepicker .cw {
  font-size: 10px;
  width: 12px;
  padding: 0 2px 0 5px;
  vertical-align: middle;
}

/* line 813, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.datepicker thead tr:first-child th.cw {
  cursor: default;
  background-color: transparent;
}

/* line 819, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.input-append.date .add-on i, .input-prepend.date .add-on i {
  display: block;
  cursor: pointer;
  width: 16px;
  height: 16px;
}

/* line 827, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.input-daterange input {
  text-align: center;
}

/* line 829, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.input-daterange input:first-child {
  -webkit-border-radius: 3px 0 0 3px;
  -moz-border-radius: 3px 0 0 3px;
  border-radius: 3px 0 0 3px;
}

/* line 834, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.input-daterange input:last-child {
  -webkit-border-radius: 0 3px 3px 0;
  -moz-border-radius: 0 3px 3px 0;
  border-radius: 0 3px 3px 0;
}

/* line 840, vendor/assets/stylesheets/awesometheme/calendar-styles.css.scss */
.input-daterange .add-on {
  display: inline-block;
  width: auto;
  min-width: 16px;
  height: 18px;
  padding: 4px 5px;
  font-weight: normal;
  line-height: 18px;
  text-align: center;
  text-shadow: 0 1px 0 white;
  vertical-align: middle;
  background-color: #eee;
  border: 1px solid #ccc;
  margin-left: -5px;
  margin-right: -5px;
}

/*!
 * Author: Łukasz Holeczek
 * Template: SimpliQ - Flat & Responsive Bootstrap Admin Template
 * Version: 2.1.1
 * Bootstrap version: 3.0.2
 * Copyright 2013 creativeLabs
 * www: http://bootstrapmaster.com
 * mail: lukasz@bootstrapmaster.com
 * You can buy this theme on WrapBootstrap: https://wrapbootstrap.com/theme/simpliq-flat-responsive-admin-template-WB0N1X0T1
 * You can find our other themes on: https://bootstrapmaster.com
 */
/*

Contents

    1.    Basic
    2.    Typography - Blockquote
    3.    Main Colors
    4.    Header Section
    5.    Buttons
    6.    Tabs
    7.    Forms
    8.    Notifications & Labels
    9.    Calendar Widget
    10.
    11.

*/
/* Basic
=================================================================== */
/*primary color*/
/* line 37, vendor/assets/stylesheets/awesometheme/style.css.scss */
body table .hidden-sm {
  display: table-cell !important;
}

/* line 40, vendor/assets/stylesheets/awesometheme/style.css.scss */
body table .hidden-xs {
  display: table-cell !important;
}

/* line 43, vendor/assets/stylesheets/awesometheme/style.css.scss */
body table .hidden-md {
  display: table-cell !important;
}

/* line 47, vendor/assets/stylesheets/awesometheme/style.css.scss */
.no-space [class*="span"] {
  margin-left: 0;
}

/* line 50, vendor/assets/stylesheets/awesometheme/style.css.scss */
.noMarginLeft {
  margin-left: 0px !important;
}

/* line 54, vendor/assets/stylesheets/awesometheme/style.css.scss */
.noPadding {
  padding: 0px !important;
}

/* line 58, vendor/assets/stylesheets/awesometheme/style.css.scss */
body {
  background: #fff;
  color: #383e4b;
  border: none;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  margin: 0;
  padding: 0;
}

/* line 69, vendor/assets/stylesheets/awesometheme/style.css.scss */
a {
  color: #383e4b;
}

/* line 73, vendor/assets/stylesheets/awesometheme/style.css.scss */
h1 {
  font-size: 32px;
  line-height: 32px;
  font-weight: 300;
}

/* line 79, vendor/assets/stylesheets/awesometheme/style.css.scss */
h2 {
  font-size: 16px;
  line-height: 16px;
  font-weight: 300;
}

/* line 85, vendor/assets/stylesheets/awesometheme/style.css.scss */
h3 {
  font-size: 15px;
  line-height: 15px;
}

/* line 90, vendor/assets/stylesheets/awesometheme/style.css.scss */
h4 {
  font-size: 14px;
  line-height: 14px;
}

/* line 95, vendor/assets/stylesheets/awesometheme/style.css.scss */
h5 {
  font-size: 13px;
  line-height: 13px;
}

/* line 100, vendor/assets/stylesheets/awesometheme/style.css.scss */
h6 {
  font-size: 12px;
  line-height: 12px;
}

/* line 105, vendor/assets/stylesheets/awesometheme/style.css.scss */
#content {
  min-height: 100%;
  padding: 20px 20px;
  position: relative;
  background: #fff;
}

/* line 110, vendor/assets/stylesheets/awesometheme/style.css.scss */
#content.full {
  width: 100% !important;
  margin-left: 0px !important;
}

/* line 116, vendor/assets/stylesheets/awesometheme/style.css.scss */
.panel {
  border: none;
}

/* line 118, vendor/assets/stylesheets/awesometheme/style.css.scss */
.well {
  border: 1px solid #ddd;
  background-color: #f6f6f6;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}

/* line 129, vendor/assets/stylesheets/awesometheme/style.css.scss */
.box {
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-box-shadow: 0px 1px 0px 1px #e4e6eb;
  -moz-box-shadow: 0px 1px 0px 1px #e4e6eb;
  box-shadow: 0px 1px 0px 1px #e4e6eb;
  margin: 0px 0px 30px 0px;
}

/* line 137, vendor/assets/stylesheets/awesometheme/style.css.scss */
.box.noOverflow {
  overflow: hidden;
}

/* line 140, vendor/assets/stylesheets/awesometheme/style.css.scss */
.box .box-header {
  background: #00b2c0;
  color: white;
  font-size: 16px;
  overflow: hidden;
  -webkit-border-radius: 2px 2px 0 0;
  -moz-border-radius: 2px 2px 0 0;
  border-radius: 2px 2px 0 0;
}

/* line 148, vendor/assets/stylesheets/awesometheme/style.css.scss */
.box .box-header h2 {
  float: left;
  padding: 10px 0px;
  margin: 0px 0px 0px 20px;
}

/* line 152, vendor/assets/stylesheets/awesometheme/style.css.scss */
.box .box-header h2 i {
  background: black;
  color: white;
  padding: 12px 0px;
  width: 46px;
  display: inline-block;
  text-align: center;
  margin: -10px 20px -10px -20px;
}

/* line 162, vendor/assets/stylesheets/awesometheme/style.css.scss */
.box .box-header .box-icon {
  float: right;
}

/* line 165, vendor/assets/stylesheets/awesometheme/style.css.scss */
.box .box-header .box-icon i {
  display: inline-block;
  height: 40px;
  line-height: 40px;
  color: white;
  text-align: center;
  width: 36px;
  padding: 10px 0px;
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -ms-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
  opacity: .8;
  filter: alpha(opacity=80);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
  border-left: 1px solid #00b2c0;
  text-decoration: none;
}

/* line 183, vendor/assets/stylesheets/awesometheme/style.css.scss */
.box .box-header .box-icon i:hover {
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

/* line 191, vendor/assets/stylesheets/awesometheme/style.css.scss */
.box .box-content {
  padding: 0;
  background: white;
}

/* line 194, vendor/assets/stylesheets/awesometheme/style.css.scss */
.box .box-content .form-horizontal {
  margin-top: 0 !important;
  margin-bottom: 6px !important;
  max-width: none !important;
}

/* Typography - Blockquote
=================================================================== */
/* line 205, vendor/assets/stylesheets/awesometheme/style.css.scss */
blockquote {
  background: url(/assets/simpliq/quote-03bbcfe88d563cbc36eb1934f259588a76b8f14c0f2821ac00b8c70fcecba658.png) no-repeat 0px 10px;
  font-style: italic;
  border-left: none;
  padding: 0 0 0 30px;
}

/* Main Colors
=================================================================== */
/* line 215, vendor/assets/stylesheets/awesometheme/style.css.scss */
.blue {
  color: #00b2c0;
}

/* line 219, vendor/assets/stylesheets/awesometheme/style.css.scss */
.lightBlue {
  color: #67c2ef;
}

/* line 223, vendor/assets/stylesheets/awesometheme/style.css.scss */
.green {
  color: #bdea74;
}

/* line 227, vendor/assets/stylesheets/awesometheme/style.css.scss */
.darkGreen {
  color: #78cd51;
}

/* line 231, vendor/assets/stylesheets/awesometheme/style.css.scss */
.pink {
  color: #e84c8a;
}

/* line 235, vendor/assets/stylesheets/awesometheme/style.css.scss */
.orange {
  color: #fa603d;
}

/* line 239, vendor/assets/stylesheets/awesometheme/style.css.scss */
.lightOrange {
  color: #fabb3d;
}

/* line 243, vendor/assets/stylesheets/awesometheme/style.css.scss */
.red {
  color: #ff5454;
}

/* line 247, vendor/assets/stylesheets/awesometheme/style.css.scss */
.yellow {
  color: #eae874;
}

/* line 251, vendor/assets/stylesheets/awesometheme/style.css.scss */
.white {
  color: white;
}

/* line 255, vendor/assets/stylesheets/awesometheme/style.css.scss */
.grey {
  color: #c7cbd5;
}

/* line 260, vendor/assets/stylesheets/awesometheme/style.css.scss */
.backgroundColor.blue, .backgroundColorTitle.blue {
  background: #00b2c0;
}

/* line 263, vendor/assets/stylesheets/awesometheme/style.css.scss */
.backgroundColor.lightBlue, .backgroundColorTitle.lightBlue {
  background: #67c2ef;
}

/* line 266, vendor/assets/stylesheets/awesometheme/style.css.scss */
.backgroundColor.green, .backgroundColorTitle.green {
  background: #bdea74;
}

/* line 269, vendor/assets/stylesheets/awesometheme/style.css.scss */
.backgroundColor.darkGreen, .backgroundColorTitle.darkGreen {
  background: #78cd51;
}

/* line 272, vendor/assets/stylesheets/awesometheme/style.css.scss */
.backgroundColor.pink, .backgroundColorTitle.pink {
  background: #e84c8a;
}

/* line 275, vendor/assets/stylesheets/awesometheme/style.css.scss */
.backgroundColor.orange, .backgroundColorTitle.orange {
  background: #fa603d;
}

/* line 278, vendor/assets/stylesheets/awesometheme/style.css.scss */
.backgroundColor.lightOrange, .backgroundColorTitle.lightOrange {
  background: #fabb3d;
}

/* line 281, vendor/assets/stylesheets/awesometheme/style.css.scss */
.backgroundColor.red, .backgroundColorTitle.red {
  background: #ff5454;
}

/* line 284, vendor/assets/stylesheets/awesometheme/style.css.scss */
.backgroundColor.yellow, .backgroundColorTitle.yellow {
  background: #eae874;
}

/* line 287, vendor/assets/stylesheets/awesometheme/style.css.scss */
.backgroundColor.white, .backgroundColorTitle.white {
  background: white;
}

/* line 290, vendor/assets/stylesheets/awesometheme/style.css.scss */
.backgroundColor.grey, .backgroundColorTitle.grey {
  background: #c7cbd5;
}

/* line 295, vendor/assets/stylesheets/awesometheme/style.css.scss */
.clearfix {
  *zoom: 1;
}

/* line 297, vendor/assets/stylesheets/awesometheme/style.css.scss */
.clearfix:before {
  display: table;
  content: "";
  line-height: 0;
}

/* line 302, vendor/assets/stylesheets/awesometheme/style.css.scss */
.clearfix:after {
  display: table;
  content: "";
  line-height: 0;
  clear: both;
}

/* Header Section
=================================================================== */
/* line 315, vendor/assets/stylesheets/awesometheme/style.css.scss */
ul.notifications li, ul.tasks li, ul.messages li {
  min-width: 260px;
}

/* line 318, vendor/assets/stylesheets/awesometheme/style.css.scss */
ul.notifications li .avatar img, ul.tasks li .avatar img {
  float: left;
  height: 40px;
  width: 40px;
  margin-top: 5px;
  margin-right: 10px;
  -webkit-border-radius: 50em;
  -moz-border-radius: 50em;
  border-radius: 50em;
}

/* line 329, vendor/assets/stylesheets/awesometheme/style.css.scss */
ul.messages li .avatar img {
  float: left;
  height: 40px;
  width: 40px;
  margin-top: 5px;
  margin-right: 10px;
  -webkit-border-radius: 50em;
  -moz-border-radius: 50em;
  border-radius: 50em;
}

/* line 339, vendor/assets/stylesheets/awesometheme/style.css.scss */
ul.messages li .header {
  display: block;
}

/* line 341, vendor/assets/stylesheets/awesometheme/style.css.scss */
ul.messages li .header .from {
  font-size: 12px;
  font-weight: bold;
}

/* line 348, vendor/assets/stylesheets/awesometheme/style.css.scss */
ul.notifications li .icon {
  margin: -5px 10px -5px -10px !important;
  padding: 7px 10px 9px 10px;
  color: white;
  width: 40px;
  display: inline-block;
  text-align: center;
}

/* line 355, vendor/assets/stylesheets/awesometheme/style.css.scss */
ul.notifications li .icon.blue {
  background: #00b2c0;
}

/* line 358, vendor/assets/stylesheets/awesometheme/style.css.scss */
ul.notifications li .icon.lightBlue {
  background: #67c2ef;
}

/* line 361, vendor/assets/stylesheets/awesometheme/style.css.scss */
ul.notifications li .icon.green {
  background: #bdea74;
}

/* line 364, vendor/assets/stylesheets/awesometheme/style.css.scss */
ul.notifications li .icon.darkGreen {
  background: #78cd51;
}

/* line 367, vendor/assets/stylesheets/awesometheme/style.css.scss */
ul.notifications li .icon.pink {
  background: #e84c8a;
}

/* line 370, vendor/assets/stylesheets/awesometheme/style.css.scss */
ul.notifications li .icon.orange {
  background: #fa603d;
}

/* line 373, vendor/assets/stylesheets/awesometheme/style.css.scss */
ul.notifications li .icon.lightOrange {
  background: #fabb3d;
}

/* line 376, vendor/assets/stylesheets/awesometheme/style.css.scss */
ul.notifications li .icon.red {
  background: #ff5454;
}

/* line 379, vendor/assets/stylesheets/awesometheme/style.css.scss */
ul.notifications li .icon.yellow {
  background: #eae874;
}

/* line 382, vendor/assets/stylesheets/awesometheme/style.css.scss */
ul.notifications li .icon.white {
  background: white;
}

/* line 385, vendor/assets/stylesheets/awesometheme/style.css.scss */
ul.notifications li .icon.grey {
  background: #c7cbd5;
}

/* line 389, vendor/assets/stylesheets/awesometheme/style.css.scss */
ul.notifications li .time {
  font-size: 11px;
  font-weight: bold;
  font-style: italic;
  position: absolute;
  right: 5px;
}

/* line 397, vendor/assets/stylesheets/awesometheme/style.css.scss */
ul.tasks li .header .percent, ul.messages li .header .time {
  font-size: 11px;
  font-weight: bold;
  font-style: italic;
  position: absolute;
  right: 5px;
}

/* line 404, vendor/assets/stylesheets/awesometheme/style.css.scss */
ul.tasks li .title {
  font-size: 12px;
}

/* line 408, vendor/assets/stylesheets/awesometheme/style.css.scss */
ul.notifications li .message {
  font-size: 12px;
}

/* line 411, vendor/assets/stylesheets/awesometheme/style.css.scss */
ul.notifications li.warning a {
  color: #fa603d;
}

/* line 415, vendor/assets/stylesheets/awesometheme/style.css.scss */
ul.messages li .message {
  font-size: 11px;
}

/* Buttons
=================================================================== */
/* line 424, vendor/assets/stylesheets/awesometheme/style.css.scss */
.btn {
  border: none;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  text-shadow: none;
  background: #d6d9e0;
}

/* line 431, vendor/assets/stylesheets/awesometheme/style.css.scss */
.btn i {
  margin-top: 2px;
}

/* line 436, vendor/assets/stylesheets/awesometheme/style.css.scss */
.btn-primary {
  color: #ffffff;
  background: #00b2c0;
}

/* line 439, vendor/assets/stylesheets/awesometheme/style.css.scss */
.btn-primary:hover, .btn-primary.disabled, .btn-primary[disabled] {
  background-color: black;
}

/* line 442, vendor/assets/stylesheets/awesometheme/style.css.scss */
.btn-primary:active, .btn-primary.active {
  background-color: #1c89be;
}

/* line 447, vendor/assets/stylesheets/awesometheme/style.css.scss */
.btn-warning {
  color: #ffffff;
  background: #fabb3d;
}

/* line 450, vendor/assets/stylesheets/awesometheme/style.css.scss */
.btn-warning:hover, .btn-warning.disabled, .btn-warning[disabled] {
  background-color: #f9aa0b;
}

/* line 453, vendor/assets/stylesheets/awesometheme/style.css.scss */
.btn-warning:active, .btn-warning.active {
  background-color: #f4a406;
}

/* line 458, vendor/assets/stylesheets/awesometheme/style.css.scss */
.btn-danger {
  color: #ffffff;
  background: #ff5454;
}

/* line 461, vendor/assets/stylesheets/awesometheme/style.css.scss */
.btn-danger:hover, .btn-danger.disabled, .btn-danger[disabled] {
  background-color: #ff2121;
}

/* line 464, vendor/assets/stylesheets/awesometheme/style.css.scss */
.btn-danger:active, .btn-danger.active {
  background-color: #ff1717;
}

/* line 469, vendor/assets/stylesheets/awesometheme/style.css.scss */
.btn-success {
  color: #ffffff;
  background: #78cd51;
}

/* line 472, vendor/assets/stylesheets/awesometheme/style.css.scss */
.btn-success:hover, .btn-success.disabled, .btn-success[disabled] {
  background-color: #5db734;
}

/* line 475, vendor/assets/stylesheets/awesometheme/style.css.scss */
.btn-success:active, .btn-success.active {
  background-color: #59af32;
}

/* line 480, vendor/assets/stylesheets/awesometheme/style.css.scss */
.btn-info {
  color: #ffffff;
  background: #67c2ef;
}

/* line 483, vendor/assets/stylesheets/awesometheme/style.css.scss */
.btn-info:hover, .btn-info.disabled, .btn-info[disabled] {
  background-color: #39afea;
}

/* line 486, vendor/assets/stylesheets/awesometheme/style.css.scss */
.btn-info:active, .btn-info.active {
  background-color: #30ace9;
}

/* line 491, vendor/assets/stylesheets/awesometheme/style.css.scss */
.btn-inverse {
  color: #ffffff;
  background: #444444;
}

/* line 494, vendor/assets/stylesheets/awesometheme/style.css.scss */
.btn-inverse:hover, .btn-inverse.disabled, .btn-inverse[disabled] {
  background-color: #2b2b2b;
}

/* line 497, vendor/assets/stylesheets/awesometheme/style.css.scss */
.btn-inverse:active, .btn-inverse.active {
  background-color: #252525;
}

/* Tabs
=================================================================== */
/* line 509, vendor/assets/stylesheets/awesometheme/style.css.scss */
.tab-menu.nav-tabs {
  margin-top: -48px;
  border-bottom: none;
}

/* line 513, vendor/assets/stylesheets/awesometheme/style.css.scss */
.tab-menu.nav-tabs > li {
  float: right;
  margin-bottom: -1px;
}

/* line 516, vendor/assets/stylesheets/awesometheme/style.css.scss */
.tab-menu.nav-tabs > li > a {
  padding-top: 11px;
  padding-bottom: 11px;
  line-height: 16px;
  margin-left: -3px;
  border: none;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  color: white;
}

/* line 526, vendor/assets/stylesheets/awesometheme/style.css.scss */
.tab-menu.nav-tabs > li > a:hover {
  background: black;
}

/* line 531, vendor/assets/stylesheets/awesometheme/style.css.scss */
.tab-menu.nav-tabs > .active > a {
  border: none;
  color: #00b2c0;
  cursor: default;
  background: white;
}

/* line 536, vendor/assets/stylesheets/awesometheme/style.css.scss */
.tab-menu.nav-tabs > .active > a:hover {
  border: none;
  background: white;
}

/* Forms
=================================================================== */
/* line 547, vendor/assets/stylesheets/awesometheme/style.css.scss */
input[placeholder], [placeholder], *[placeholder] {
  DISABLE-color: white !important;
}

/* line 551, vendor/assets/stylesheets/awesometheme/style.css.scss */
input:-moz-placeholder, textarea:-moz-placeholder, input:-ms-input-placeholder, textarea:-ms-input-placeholder, input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  DISABLE-color: white;
}

/* line 555, vendor/assets/stylesheets/awesometheme/style.css.scss */
.add-on, textarea {
  border-color: #e4e6eb !important;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

/* line 566, vendor/assets/stylesheets/awesometheme/style.css.scss */
input[type="text"], input[type="password"], input[type="datetime"], input[type="datetime-local"], input[type="date"], input[type="month"], input[type="time"], input[type="week"], input[type="number"], input[type="email"], input[type="url"], input[type="search"], input[type="tel"], input[type="color"], input[type="file"] {
  border-color: #e4e6eb !important;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

/* line 577, vendor/assets/stylesheets/awesometheme/style.css.scss */
.uneditable-input {
  border-color: #e4e6eb !important;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

/* line 587, vendor/assets/stylesheets/awesometheme/style.css.scss */
textarea {
  border: 1px solid #e4e6eb;
}

/* line 591, vendor/assets/stylesheets/awesometheme/style.css.scss */
.input-group-addon {
  border-color: #e4e6eb !important;
}

/* line 595, vendor/assets/stylesheets/awesometheme/style.css.scss */
.limiterBox {
  border: 1px solid #c7cbd5;
  border-top: none;
  background-color: #c7cbd5;
  padding: 3px 6px;
  font-size: 10px;
  color: white;
  opacity: .9;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

/* line 608, vendor/assets/stylesheets/awesometheme/style.css.scss */
.editor {
  max-height: 250px;
  height: 250px;
  background-color: white;
  border-collapse: separate;
  border: 1px solid #e4e6eb !important;
  padding: 4px;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  overflow: scroll;
  outline: none;
  margin-top: 20px;
}

/* line 626, vendor/assets/stylesheets/awesometheme/style.css.scss */
div[data-role="editor-toolbar"] {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* line 633, vendor/assets/stylesheets/awesometheme/style.css.scss */
.dropdown-menu a {
  cursor: pointer;
}

/* Notifications & Labels
=================================================================== */
/* line 640, vendor/assets/stylesheets/awesometheme/style.css.scss */
.notification {
  position: absolute;
  top: -12px;
  right: -12px;
  line-height: 16px;
  height: 16px;
  padding: 6px 10px;
  color: white !important;
  -webkit-border-radius: 50em;
  -moz-border-radius: 50em;
  border-radius: 50em;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

/* line 654, vendor/assets/stylesheets/awesometheme/style.css.scss */
.notification.small {
  padding: 2px 7px;
  color: white !important;
  border-width: 1px;
  border-style: solid;
  -webkit-border-radius: 50em;
  -moz-border-radius: 50em;
  border-radius: 50em;
}

/* line 662, vendor/assets/stylesheets/awesometheme/style.css.scss */
.notification.small.blue {
  background: #00b2c0;
}

/* line 666, vendor/assets/stylesheets/awesometheme/style.css.scss */
.notification.blue {
  background: #00b2c0;
}

/* line 669, vendor/assets/stylesheets/awesometheme/style.css.scss */
.notification.small.yellow, .notification.yellow {
  background: #eae874;
}

/* line 672, vendor/assets/stylesheets/awesometheme/style.css.scss */
.notification.small.red, .notification.red {
  background: #ff5454;
}

/* line 675, vendor/assets/stylesheets/awesometheme/style.css.scss */
.notification.small.green, .notification.green {
  background: #78cd51;
}

/* line 678, vendor/assets/stylesheets/awesometheme/style.css.scss */
.notification.small.orange, .notification.orange {
  background: #fabb3d;
}

/* line 681, vendor/assets/stylesheets/awesometheme/style.css.scss */
.notification.small.red, .notification.red {
  background: #ff5454;
}

/* line 686, vendor/assets/stylesheets/awesometheme/style.css.scss */
.label, .badge {
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  font-size: 12px;
  padding: 3px 6px;
  border: none;
  text-shadow: none;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

/* line 698, vendor/assets/stylesheets/awesometheme/style.css.scss */
.label {
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}

/* line 704, vendor/assets/stylesheets/awesometheme/style.css.scss */
.label-important, .badge-important, .label-important[href], .badge-important[href] {
  background: #ff5454;
}

/* line 708, vendor/assets/stylesheets/awesometheme/style.css.scss */
.label-warning, .badge-warning, .label-warning[href], .badge-warning[href] {
  background: #fabb3d;
}

/* line 712, vendor/assets/stylesheets/awesometheme/style.css.scss */
.label-success, .badge-success, .label-success[href], .badge-success[href] {
  background: #78cd51;
}

/* line 716, vendor/assets/stylesheets/awesometheme/style.css.scss */
.label-info, .badge-info, .label-info[href], .badge-info[href] {
  background: #67c2ef;
}

/* line 720, vendor/assets/stylesheets/awesometheme/style.css.scss */
body.modal-open {
  margin-right: 0px;
}

/* line 725, vendor/assets/stylesheets/awesometheme/style.css.scss */
.modal-open .navbar-fixed-top, .modal-open .navbar-fixed-bottom {
  margin-right: 0px;
}

/* App Tag

*/
/* line 735, vendor/assets/stylesheets/awesometheme/style.css.scss */
.download-app-tag {
  color: #383E4B;
  display: block;
  margin-top: 10px;
}

/* Footer
=================================================================== */
/* line 745, vendor/assets/stylesheets/awesometheme/style.css.scss */
footer {
  border-top: 4px solid #51555A;
  color: white;
  margin: 0 !important;
  font-size: 11px;
}

/* line 751, vendor/assets/stylesheets/awesometheme/style.css.scss */
footer a {
  color: white;
  font-weight: bold;
}

/* Masonry Gallery
=================================================================== */
/* line 761, vendor/assets/stylesheets/awesometheme/style.css.scss */
.masonry-thumb {
  display: inline-block;
  vertical-align: top;
  margin-bottom: 6px;
}

/* Icons
=================================================================== */
/* line 772, vendor/assets/stylesheets/awesometheme/style.css.scss */
.the-icons {
  list-style: none;
}

/* line 776, vendor/assets/stylesheets/awesometheme/style.css.scss */
.glyphicons-icon-list div {
  margin: 10px 0;
}

/* line 778, vendor/assets/stylesheets/awesometheme/style.css.scss */
.glyphicons-icon-list div span {
  font-size: 10px;
}

/* line 781, vendor/assets/stylesheets/awesometheme/style.css.scss */
.glyphicons-icon-list div strong {
  font-size: 10px;
  margin-top: -5px;
  display: block;
}

/* line 789, vendor/assets/stylesheets/awesometheme/style.css.scss */
.fontawesome-icon-list div {
  margin: 5px 0;
}

/* line 792, vendor/assets/stylesheets/awesometheme/style.css.scss */
.fontawesome-icon-list .fa {
  width: 20px;
  text-align: center;
  margin-right: 10px;
}

/* File manager
=================================================================== */
/* line 802, vendor/assets/stylesheets/awesometheme/style.css.scss */
.elfinder .elfinder-button {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

/*
 * Copyright (c) 2013 Thibaut Courouble
 * http://www.cssflow.com
 *
 * Licensed under the MIT License:
 * http://www.opensource.org/licenses/mit-license.php
 */
/* line 816, vendor/assets/stylesheets/awesometheme/style.css.scss */
.switch {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 56px;
  height: 20px;
  padding: 3px;
  background-color: white;
  border-radius: 18px;
  box-shadow: inset 0 -1px white, inset 0 1px 1px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

/* line 832, vendor/assets/stylesheets/awesometheme/style.css.scss */
.switch-input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

/* line 839, vendor/assets/stylesheets/awesometheme/style.css.scss */
.switch-label {
  position: relative;
  display: block;
  height: inherit;
  font-size: 10px;
  text-transform: uppercase;
  background: #f9f9f9;
  border-radius: inherit;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.12), inset 0 0 2px rgba(0, 0, 0, 0.15);
  -webkit-transition: 0.15s ease-out;
  -moz-transition: 0.15s ease-out;
  -o-transition: 0.15s ease-out;
  transition: 0.15s ease-out;
  -webkit-transition-property: opacity background;
  -moz-transition-property: opacity background;
  -o-transition-property: opacity background;
  transition-property: opacity background;
}

/* line 856, vendor/assets/stylesheets/awesometheme/style.css.scss */
.switch-label:before, .switch-label:after {
  position: absolute;
  top: 50%;
  margin-top: -0.5em;
  line-height: 1;
  -webkit-transition: inherit;
  -moz-transition: inherit;
  -o-transition: inherit;
  transition: inherit;
}

/* line 866, vendor/assets/stylesheets/awesometheme/style.css.scss */
.switch-label:before {
  content: attr(data-off);
  right: 11px;
  color: #aaa;
  text-shadow: 0 1px rgba(255, 255, 255, 0.5);
}

/* line 872, vendor/assets/stylesheets/awesometheme/style.css.scss */
.switch-label:after {
  content: attr(data-on);
  left: 11px;
  color: white;
  text-shadow: 0 1px rgba(0, 0, 0, 0.2);
  opacity: 0;
}

/* line 881, vendor/assets/stylesheets/awesometheme/style.css.scss */
.switch-input:checked ~ .switch-label {
  background: #c7cbd5;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15), inset 0 0 3px rgba(0, 0, 0, 0.2);
}

/* line 884, vendor/assets/stylesheets/awesometheme/style.css.scss */
.switch-input:checked ~ .switch-label:before {
  opacity: 0;
}

/* line 887, vendor/assets/stylesheets/awesometheme/style.css.scss */
.switch-input:checked ~ .switch-label:after {
  opacity: 1;
}

/* line 892, vendor/assets/stylesheets/awesometheme/style.css.scss */
.switch-handle {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 18px;
  height: 18px;
  background: white;
  border-radius: 10px;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
  background-image: -webkit-linear-gradient(top, white 40%, #f0f0f0);
  background-image: -moz-linear-gradient(top, white 40%, #f0f0f0);
  background-image: -o-linear-gradient(top, white 40%, #f0f0f0);
  background-image: linear-gradient(to bottom, white 40%, #f0f0f0);
  -webkit-transition: left 0.15s ease-out;
  -moz-transition: left 0.15s ease-out;
  -o-transition: left 0.15s ease-out;
  transition: left 0.15s ease-out;
}

/* line 909, vendor/assets/stylesheets/awesometheme/style.css.scss */
.switch-handle:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -6px 0 0 -6px;
  width: 12px;
  height: 12px;
  background: #f9f9f9;
  border-radius: 6px;
  box-shadow: inset 0 1px rgba(0, 0, 0, 0.02);
  background-image: -webkit-linear-gradient(top, #eeeeee, white);
  background-image: -moz-linear-gradient(top, #eeeeee, white);
  background-image: -o-linear-gradient(top, #eeeeee, white);
  background-image: linear-gradient(to bottom, #eeeeee, white);
}

/* line 927, vendor/assets/stylesheets/awesometheme/style.css.scss */
.switch-input:checked ~ .switch-handle {
  left: 40px;
  box-shadow: -1px 1px 5px rgba(0, 0, 0, 0.2);
}

/* line 932, vendor/assets/stylesheets/awesometheme/style.css.scss */
.switch-primary > .switch-input:checked ~ .switch-label {
  background: #00b2c0;
}

/* line 936, vendor/assets/stylesheets/awesometheme/style.css.scss */
.switch-success > .switch-input:checked ~ .switch-label {
  background: #78cd51;
}

/* line 940, vendor/assets/stylesheets/awesometheme/style.css.scss */
.switch-warning > .switch-input:checked ~ .switch-label {
  background: #fabb3d;
}

/* line 944, vendor/assets/stylesheets/awesometheme/style.css.scss */
.switch-important > .switch-input:checked ~ .switch-label {
  background: #ff5454;
}

/* line 948, vendor/assets/stylesheets/awesometheme/style.css.scss */
.switch-info > .switch-input:checked ~ .switch-label {
  background: #67c2ef;
}

/* line 952, vendor/assets/stylesheets/awesometheme/style.css.scss */
.switch-danger > .switch-input:checked ~ .switch-label {
  background: #d9534f;
}

/* line 956, vendor/assets/stylesheets/awesometheme/style.css.scss */
.switch-title {
  padding: 3px 6px;
  display: inline-block;
}

/* line 963, vendor/assets/stylesheets/awesometheme/style.css.scss */
div.dataTables_length label {
  font-weight: normal;
  float: left;
  text-align: left;
}

/* line 968, vendor/assets/stylesheets/awesometheme/style.css.scss */
div.dataTables_length select {
  width: 75px;
}

/* line 972, vendor/assets/stylesheets/awesometheme/style.css.scss */
div.dataTables_filter label {
  font-weight: normal;
  float: right;
}

/* line 976, vendor/assets/stylesheets/awesometheme/style.css.scss */
div.dataTables_info {
  padding-top: 8px;
}

/* line 979, vendor/assets/stylesheets/awesometheme/style.css.scss */
div.dataTables_paginate {
  float: right;
  margin: 0;
}

/* line 982, vendor/assets/stylesheets/awesometheme/style.css.scss */
div.dataTables_paginate ul.pagination {
  margin: 2px;
}

/* line 989, vendor/assets/stylesheets/awesometheme/style.css.scss */
table.table {
  clear: both;
  margin-top: 6px !important;
  margin-bottom: 6px !important;
  max-width: none !important;
}

/* line 994, vendor/assets/stylesheets/awesometheme/style.css.scss */
table.table .btn {
  margin: 1px 1px;
}

/* line 998, vendor/assets/stylesheets/awesometheme/style.css.scss */
table.table thead .sorting, table.table thead .sorting_asc, table.table thead .sorting_desc, table.table thead .sorting_asc_disabled, table.table thead .sorting_desc_disabled {
  cursor: pointer;
}

/* line 1001, vendor/assets/stylesheets/awesometheme/style.css.scss */
table.table thead .sorting {
  background: url(/assets/simpliq/sort_both-04c63d38111bbc1de87f63f01469c19c5c4b10a0d7e9756b5c82a801fa766039.png) no-repeat center right;
}

/* line 1004, vendor/assets/stylesheets/awesometheme/style.css.scss */
table.table thead .sorting_asc {
  background: url(/assets/simpliq/sort_asc-d21b43975b389ef74eacf35b3d7d84e61a3c82fdfce2e071934d3f652e40a2aa.png) no-repeat center right;
}

/* line 1007, vendor/assets/stylesheets/awesometheme/style.css.scss */
table.table thead .sorting_desc {
  background: url(/assets/simpliq/sort_desc-474f1070bed1ba04a1668a7b8da406ca80d88b5ae56fdd2a24f015659b47a090.png) no-repeat center right;
}

/* line 1010, vendor/assets/stylesheets/awesometheme/style.css.scss */
table.table thead .sorting_asc_disabled {
  background: url(/assets/simpliq/sort_asc_disabled-bd10ea19ff7eb671e84cc56b37256a3bacfcb8481e50337ed7e265fc5f537a5b.png) no-repeat center right;
}

/* line 1013, vendor/assets/stylesheets/awesometheme/style.css.scss */
table.table thead .sorting_desc_disabled {
  background: url(/assets/simpliq/sort_desc_disabled-fd6656cc661f8edc87428b35bd41a469ad0e18f6d52c4ca70b1ebcd303fe1c9a.png) no-repeat center right;
}

/* line 1018, vendor/assets/stylesheets/awesometheme/style.css.scss */
table.dataTable th:active {
  outline: none;
}

/* Scrolling */
/* line 1026, vendor/assets/stylesheets/awesometheme/style.css.scss */
div.dataTables_scrollHead table {
  margin-bottom: 0 !important;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

/* line 1031, vendor/assets/stylesheets/awesometheme/style.css.scss */
div.dataTables_scrollHead table thead tr:last-child th:first-child, div.dataTables_scrollHead table thead tr:last-child td:first-child {
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

/* line 1038, vendor/assets/stylesheets/awesometheme/style.css.scss */
div.dataTables_scrollBody table {
  border-top: none;
  margin-bottom: 0 !important;
}

/* line 1043, vendor/assets/stylesheets/awesometheme/style.css.scss */
div.dataTables_scrollBody tbody tr:first-child th, div.dataTables_scrollBody tbody tr:first-child td {
  border-top: none;
}

/* line 1048, vendor/assets/stylesheets/awesometheme/style.css.scss */
div.dataTables_scrollFoot table {
  border-top: none;
}

/*
 * TableTools styles
 */
/* line 1058, vendor/assets/stylesheets/awesometheme/style.css.scss */
.table tbody tr.active td, .table tbody tr.active th {
  background-color: #08C;
  color: white;
}

/* line 1063, vendor/assets/stylesheets/awesometheme/style.css.scss */
.table tbody tr.active:hover td, .table tbody tr.active:hover th {
  background-color: #0075b0 !important;
}

/* line 1070, vendor/assets/stylesheets/awesometheme/style.css.scss */
.table-striped tbody tr.active:nth-child(odd) td, .table-striped tbody tr.active:nth-child(odd) th {
  background-color: #017ebc;
}

/* line 1075, vendor/assets/stylesheets/awesometheme/style.css.scss */
table.DTTT_selectable tbody tr {
  cursor: pointer;
}

/* line 1079, vendor/assets/stylesheets/awesometheme/style.css.scss */
div.DTTT .btn {
  color: #333 !important;
  font-size: 12px;
}

/* line 1082, vendor/assets/stylesheets/awesometheme/style.css.scss */
div.DTTT .btn:hover {
  text-decoration: none !important;
}

/* line 1087, vendor/assets/stylesheets/awesometheme/style.css.scss */
ul.DTTT_dropdown.dropdown-menu {
  z-index: 2003;
}

/* line 1089, vendor/assets/stylesheets/awesometheme/style.css.scss */
ul.DTTT_dropdown.dropdown-menu a {
  color: #333 !important;
  /* needed only when demo_page.css is included */
}

/* line 1093, vendor/assets/stylesheets/awesometheme/style.css.scss */
ul.DTTT_dropdown.dropdown-menu li {
  position: relative;
}

/* line 1095, vendor/assets/stylesheets/awesometheme/style.css.scss */
ul.DTTT_dropdown.dropdown-menu li:hover a {
  background-color: #0088cc;
  color: white !important;
}

/* TableTools information display */
/* line 1106, vendor/assets/stylesheets/awesometheme/style.css.scss */
div.DTTT_print_info.modal {
  height: 150px;
  margin-top: -75px;
  text-align: center;
}

/* line 1111, vendor/assets/stylesheets/awesometheme/style.css.scss */
div.DTTT_print_info h6 {
  font-weight: normal;
  font-size: 28px;
  line-height: 28px;
  margin: 1em;
}

/* line 1117, vendor/assets/stylesheets/awesometheme/style.css.scss */
div.DTTT_print_info p {
  font-size: 14px;
  line-height: 20px;
}

/* line 1122, vendor/assets/stylesheets/awesometheme/style.css.scss */
div.DTFC_LeftHeadWrapper table, div.DTFC_LeftFootWrapper table, div.DTFC_RightHeadWrapper table, div.DTFC_RightFootWrapper table {
  background-color: white;
}

/*
 * FixedColumns styles
 */
/* line 1131, vendor/assets/stylesheets/awesometheme/style.css.scss */
table.DTFC_Cloned tr.even {
  background-color: white;
}

/* line 1136, vendor/assets/stylesheets/awesometheme/style.css.scss */
div.DTFC_RightHeadWrapper table, div.DTFC_LeftHeadWrapper table {
  margin-bottom: 0 !important;
  border-top-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

/* line 1143, vendor/assets/stylesheets/awesometheme/style.css.scss */
div.DTFC_RightHeadWrapper table thead tr:last-child th:first-child, div.DTFC_RightHeadWrapper table thead tr:last-child td:first-child {
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

/* line 1149, vendor/assets/stylesheets/awesometheme/style.css.scss */
div.DTFC_LeftHeadWrapper table thead tr:last-child th:first-child, div.DTFC_LeftHeadWrapper table thead tr:last-child td:first-child {
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

/* line 1154, vendor/assets/stylesheets/awesometheme/style.css.scss */
div.DTFC_RightBodyWrapper table, div.DTFC_LeftBodyWrapper table {
  border-top: none;
  margin-bottom: 0 !important;
}

/* line 1159, vendor/assets/stylesheets/awesometheme/style.css.scss */
div.DTFC_RightBodyWrapper tbody tr:first-child th, div.DTFC_RightBodyWrapper tbody tr:first-child td {
  border-top: none;
}

/* line 1164, vendor/assets/stylesheets/awesometheme/style.css.scss */
div.DTFC_LeftBodyWrapper tbody tr:first-child th, div.DTFC_LeftBodyWrapper tbody tr:first-child td {
  border-top: none;
}

/* line 1168, vendor/assets/stylesheets/awesometheme/style.css.scss */
div.DTFC_RightFootWrapper table, div.DTFC_LeftFootWrapper table {
  border-top: none;
}

/* Nestable
=================================================================== */
/* line 1177, vendor/assets/stylesheets/awesometheme/style.css.scss */
.dd {
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
  line-height: 20px;
}

/* line 1187, vendor/assets/stylesheets/awesometheme/style.css.scss */
.dd-list {
  display: block;
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}

/* line 1193, vendor/assets/stylesheets/awesometheme/style.css.scss */
.dd-list .dd-list {
  padding-left: 30px;
}

/* line 1198, vendor/assets/stylesheets/awesometheme/style.css.scss */
.dd-collapsed .dd-list {
  display: none;
}

/* line 1202, vendor/assets/stylesheets/awesometheme/style.css.scss */
.dd-item, .dd-empty, .dd-placeholder {
  display: block;
  position: relative;
  margin: 0;
  padding: 0;
  min-height: 20px;
  font-size: 13px;
  line-height: 20px;
}

/* line 1212, vendor/assets/stylesheets/awesometheme/style.css.scss */
.dd-handle {
  display: block;
  height: 30px;
  margin: 5px 0;
  padding: 5px 10px;
  text-decoration: none;
  font-weight: bold;
  border: 1px solid #c7cbd5;
  background: #f6f6f8;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 1227, vendor/assets/stylesheets/awesometheme/style.css.scss */
.dd-handle:hover {
  color: #00b2c0;
  background: white;
}

/* line 1231, vendor/assets/stylesheets/awesometheme/style.css.scss */
.dd-handle .icon {
  float: right;
  font-size: 16px;
  margin-left: 10px;
}

/* line 1235, vendor/assets/stylesheets/awesometheme/style.css.scss */
.dd-handle .icon:hover {
  text-decoration: none;
}

/* line 1241, vendor/assets/stylesheets/awesometheme/style.css.scss */
.dd-item > button {
  display: block;
  position: relative;
  cursor: pointer;
  float: left;
  width: 25px;
  height: 20px;
  margin: 5px 0;
  padding: 0;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  border: 0;
  background: transparent;
  font-size: 12px;
  line-height: 1;
  text-align: center;
  font-weight: bold;
}

/* line 1259, vendor/assets/stylesheets/awesometheme/style.css.scss */
.dd-item > button:before {
  content: '+';
  display: block;
  position: absolute;
  width: 100%;
  text-align: center;
  text-indent: 0;
}

/* line 1267, vendor/assets/stylesheets/awesometheme/style.css.scss */
.dd-item > button[data-action="collapse"]:before {
  content: '-';
}

/* line 1272, vendor/assets/stylesheets/awesometheme/style.css.scss */
.dd-placeholder {
  margin: 5px 0;
  padding: 0;
  min-height: 30px;
  background: #f2fbff;
  border: 1px dashed #b6bcbf;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 1283, vendor/assets/stylesheets/awesometheme/style.css.scss */
.dd-empty {
  margin: 5px 0;
  padding: 0;
  min-height: 30px;
  background: #f2fbff;
  border: 1px dashed #b6bcbf;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px dashed #bbb;
  min-height: 100px;
  background-color: #e5e5e5;
  background-size: 60px 60px;
  background-position: 0 0, 30px 30px;
}

/* line 1299, vendor/assets/stylesheets/awesometheme/style.css.scss */
.dd-dragel {
  position: absolute;
  pointer-events: none;
  z-index: 9999;
}

/* line 1303, vendor/assets/stylesheets/awesometheme/style.css.scss */
.dd-dragel > .dd-item .dd-handle {
  margin-top: 0;
}

/* line 1306, vendor/assets/stylesheets/awesometheme/style.css.scss */
.dd-dragel .dd-handle {
  -webkit-box-shadow: 2px 4px 6px 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 2px 4px 6px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 2px 4px 6px 0 rgba(0, 0, 0, 0.1);
}

/* Nestable Extras
=================================================================== */
/* line 1316, vendor/assets/stylesheets/awesometheme/style.css.scss */
.nestable-lists {
  display: block;
  clear: both;
  padding: 30px 0;
  width: 100%;
  border: 0;
  border-top: 2px solid #ddd;
  border-bottom: 2px solid #ddd;
}

/* line 1326, vendor/assets/stylesheets/awesometheme/style.css.scss */
#nestable-menu {
  padding: 0;
  margin: 20px 0;
}

/* line 1331, vendor/assets/stylesheets/awesometheme/style.css.scss */
#nestable-output, #nestable2-output {
  width: 100%;
  height: 7em;
  font-size: 0.75em;
  line-height: 1.333333em;
  font-family: Consolas, monospace;
  padding: 5px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 1344, vendor/assets/stylesheets/awesometheme/style.css.scss */
#nestable2 .dd-handle {
  color: white;
  border: 1px solid #c7cbd5;
  background: #c7cbd5;
}

/* line 1348, vendor/assets/stylesheets/awesometheme/style.css.scss */
#nestable2 .dd-handle:hover {
  border: 1px solid #383e4b;
  background: #383e4b;
}

/* line 1353, vendor/assets/stylesheets/awesometheme/style.css.scss */
#nestable2 .dd-item > button:before {
  color: #fff;
}

@media only screen and (min-width: 700px) {
  /* line 1359, vendor/assets/stylesheets/awesometheme/style.css.scss */
  .dd {
    float: left;
    width: 48%;
  }
  /* line 1362, vendor/assets/stylesheets/awesometheme/style.css.scss */
  .dd + .dd {
    margin-left: 2%;
  }
}

/* line 1368, vendor/assets/stylesheets/awesometheme/style.css.scss */
.dd-hover > .dd-handle {
  background: #2ea8e5 !important;
}

/* Nestable Draggable Handles
=================================================================== */
/* line 1375, vendor/assets/stylesheets/awesometheme/style.css.scss */
.dd3-content {
  display: block;
  height: 30px;
  margin: 5px 0;
  padding: 5px 10px 5px 40px;
  text-decoration: none;
  font-weight: bold;
  border: 1px solid #c7cbd5;
  background: #f6f6f8;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 1390, vendor/assets/stylesheets/awesometheme/style.css.scss */
.dd3-content:hover {
  color: #00b2c0;
  background: #fff;
}

/* line 1396, vendor/assets/stylesheets/awesometheme/style.css.scss */
.dd-dragel > .dd3-item > .dd3-content {
  margin: 0;
}

/* line 1400, vendor/assets/stylesheets/awesometheme/style.css.scss */
.dd3-item > button {
  margin-left: 30px;
}

/* line 1404, vendor/assets/stylesheets/awesometheme/style.css.scss */
.dd3-handle {
  position: absolute;
  margin: 0;
  left: 0;
  top: 0;
  cursor: pointer;
  width: 30px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  border: 1px solid #c7cbd5;
  background: #c7cbd5;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

/* line 1418, vendor/assets/stylesheets/awesometheme/style.css.scss */
.dd3-handle:before {
  content: '≡';
  display: block;
  position: absolute;
  left: 0;
  top: 3px;
  width: 100%;
  text-align: center;
  text-indent: 0;
  color: #fff;
  font-size: 20px;
  font-weight: normal;
}

/* line 1431, vendor/assets/stylesheets/awesometheme/style.css.scss */
.dd3-handle:hover {
  background: #383e4b;
}

/* line 1436, vendor/assets/stylesheets/awesometheme/style.css.scss */
.wizard {
  *zoom: 1;
  padding-bottom: 20px;
  border-bottom: 1px solid #e4e6eb;
  margin-bottom: 20px;
}

/* line 1441, vendor/assets/stylesheets/awesometheme/style.css.scss */
.wizard:before {
  display: table;
  content: "";
  line-height: 0;
}

/* line 1446, vendor/assets/stylesheets/awesometheme/style.css.scss */
.wizard:after {
  display: table;
  content: "";
  line-height: 0;
  clear: both;
}

/* line 1452, vendor/assets/stylesheets/awesometheme/style.css.scss */
.wizard ul {
  list-style: none outside none;
  padding: 0;
  margin: 0;
  /* set z-index on steps for chevron overlap */
}

/* line 1457, vendor/assets/stylesheets/awesometheme/style.css.scss */
.wizard ul li {
  float: left;
  margin: 0;
  padding: 0 20px 0 30px;
  height: 46px;
  line-height: 46px;
  position: relative;
  color: #c7cbd5;
  font-size: 16px;
  cursor: default;
}

/* line 1467, vendor/assets/stylesheets/awesometheme/style.css.scss */
.wizard ul li .chevron {
  display: none;
}

/* line 1470, vendor/assets/stylesheets/awesometheme/style.css.scss */
.wizard ul li:after {
  position: absolute;
  content: '';
  z-index: -1;
  width: 100%;
  height: 4px;
  background: #e4e6eb;
  left: 0px;
  top: 50%;
  margin-top: 0px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}

/* line 1484, vendor/assets/stylesheets/awesometheme/style.css.scss */
.wizard ul li:before {
  position: absolute;
  content: '';
  z-index: -1;
  width: 100%;
  height: 8px;
  background: #f6f6f8;
  left: -2px;
  top: 50%;
  padding: 0px 2px;
  margin-top: -2px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

/* line 1502, vendor/assets/stylesheets/awesometheme/style.css.scss */
.wizard ul li.complete {
  color: #bdea74;
}

/* line 1504, vendor/assets/stylesheets/awesometheme/style.css.scss */
.wizard ul li.complete:hover {
  cursor: pointer;
}

/* line 1507, vendor/assets/stylesheets/awesometheme/style.css.scss */
.wizard ul li.complete:after {
  background: #bdea74;
}

/* line 1510, vendor/assets/stylesheets/awesometheme/style.css.scss */
.wizard ul li.complete .badge {
  border: 1px solid #bdea74;
  background: #bdea74;
  color: white;
}

/* line 1516, vendor/assets/stylesheets/awesometheme/style.css.scss */
.wizard ul li.active {
  color: #00b2c0;
}

/* line 1518, vendor/assets/stylesheets/awesometheme/style.css.scss */
.wizard ul li.active .badge {
  border: 1px solid #00b2c0;
  background: white;
  color: #383e4b;
}

/* line 1524, vendor/assets/stylesheets/awesometheme/style.css.scss */
.wizard ul li .badge {
  position: relative;
  margin-right: 8px;
  -webkit-border-radius: 50em;
  -moz-border-radius: 50em;
  border-radius: 50em;
  font-size: 12px;
  padding: 10px;
  width: 14px;
  text-align: center;
  border: 1px solid #e4e6eb;
  background: white;
  color: #383e4b;
}

/* line 1537, vendor/assets/stylesheets/awesometheme/style.css.scss */
.wizard ul li .badge:before {
  position: absolute;
  content: '';
  z-index: -1;
  width: 100%;
  height: 100%;
  padding: 6px;
  background: #f6f6f8;
  top: -6px;
  left: -6px;
  -webkit-border-radius: 50em;
  -moz-border-radius: 50em;
  border-radius: 50em;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

/* line 1555, vendor/assets/stylesheets/awesometheme/style.css.scss */
.wizard ul li:nth-child(1) {
  border-radius: 4px 0 0 4px;
  padding-left: 20px;
  z-index: 10;
}

/* line 1560, vendor/assets/stylesheets/awesometheme/style.css.scss */
.wizard ul li:nth-child(2) {
  z-index: 9;
}

/* line 1563, vendor/assets/stylesheets/awesometheme/style.css.scss */
.wizard ul li:nth-child(3) {
  z-index: 8;
}

/* line 1566, vendor/assets/stylesheets/awesometheme/style.css.scss */
.wizard ul li:nth-child(4) {
  z-index: 7;
}

/* line 1569, vendor/assets/stylesheets/awesometheme/style.css.scss */
.wizard ul li:nth-child(5) {
  z-index: 6;
}

/* line 1572, vendor/assets/stylesheets/awesometheme/style.css.scss */
.wizard ul li:nth-child(6) {
  z-index: 5;
}

/* line 1575, vendor/assets/stylesheets/awesometheme/style.css.scss */
.wizard ul li:nth-child(7) {
  z-index: 4;
}

/* line 1578, vendor/assets/stylesheets/awesometheme/style.css.scss */
.wizard ul li:nth-child(8) {
  z-index: 3;
}

/* line 1581, vendor/assets/stylesheets/awesometheme/style.css.scss */
.wizard ul li:nth-child(9) {
  z-index: 2;
}

/* line 1584, vendor/assets/stylesheets/awesometheme/style.css.scss */
.wizard ul li:nth-child(10) {
  z-index: 1;
}

/* line 1589, vendor/assets/stylesheets/awesometheme/style.css.scss */
.wizard .actions {
  line-height: 44px;
  float: right;
  padding-right: 15px;
  vertical-align: middle;
}

/* line 1594, vendor/assets/stylesheets/awesometheme/style.css.scss */
.wizard .actions a {
  line-height: 45px;
  font-size: 12px;
  margin-right: 8px;
}

/* line 1599, vendor/assets/stylesheets/awesometheme/style.css.scss */
.wizard .actions .btn-prev i {
  margin-right: 5px;
}

/* line 1602, vendor/assets/stylesheets/awesometheme/style.css.scss */
.wizard .actions .btn-next i {
  margin-left: 5px;
}

/* line 1609, vendor/assets/stylesheets/awesometheme/style.css.scss */
.step-content .step-pane {
  display: none;
}

/* line 1612, vendor/assets/stylesheets/awesometheme/style.css.scss */
.step-content .active {
  display: block;
}

/*
 * Colorpicker for Bootstrap
 *
 * Copyright 2012 Stefan Petre
 * Licensed under the Apache License v2.0
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 */
/* line 1626, vendor/assets/stylesheets/awesometheme/style.css.scss */
.colorpicker-saturation {
  width: 100px;
  height: 100px;
  background-image: url(/assets/simpliq/saturation-cd78d9f1f95a9a2cc825b4155723ddf1011e093bd3bd09d30ff7f41604b6f7f8.png);
  cursor: crosshair;
  float: left;
}

/* line 1632, vendor/assets/stylesheets/awesometheme/style.css.scss */
.colorpicker-saturation i {
  display: block;
  height: 5px;
  width: 5px;
  border: 1px solid #000;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  position: absolute;
  top: 0;
  left: 0;
  margin: -4px 0 0 -4px;
}

/* line 1644, vendor/assets/stylesheets/awesometheme/style.css.scss */
.colorpicker-saturation i b {
  display: block;
  height: 5px;
  width: 5px;
  border: 1px solid #fff;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}

/* line 1656, vendor/assets/stylesheets/awesometheme/style.css.scss */
.colorpicker-hue, .colorpicker-alpha {
  width: 15px;
  height: 100px;
  float: left;
  cursor: row-resize;
  margin-left: 4px;
  margin-bottom: 4px;
}

/* line 1665, vendor/assets/stylesheets/awesometheme/style.css.scss */
.colorpicker-hue i, .colorpicker-alpha i {
  display: block;
  height: 1px;
  background: #000;
  border-top: 1px solid #fff;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  margin-top: -1px;
}

/* line 1677, vendor/assets/stylesheets/awesometheme/style.css.scss */
.colorpicker-hue {
  background-image: url(/assets/simpliq/hue-fbb3734647e97382f15bed3b8343b86cf79f80f952a8a83afe2b591bfe705de9.png);
}

/* line 1681, vendor/assets/stylesheets/awesometheme/style.css.scss */
.colorpicker-alpha {
  background-image: url(/assets/simpliq/alpha-957a71f62e8990e1641f44f69f8a906974ca00b9ddd3d17e4abaf159a66e377b.png);
  display: none;
}

/* line 1686, vendor/assets/stylesheets/awesometheme/style.css.scss */
.colorpicker {
  *zoom: 1;
  top: 0;
  left: 0;
  padding: 4px;
  min-width: 120px;
  margin-top: 1px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

/* line 1696, vendor/assets/stylesheets/awesometheme/style.css.scss */
.colorpicker:before {
  display: table;
  content: "";
  line-height: 0;
}

/* line 1701, vendor/assets/stylesheets/awesometheme/style.css.scss */
.colorpicker:after {
  display: table;
  content: "";
  line-height: 0;
  clear: both;
}

/* line 1707, vendor/assets/stylesheets/awesometheme/style.css.scss */
.colorpicker:before {
  content: '';
  display: inline-block;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #ccc;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: -7px;
  left: 6px;
}

/* line 1718, vendor/assets/stylesheets/awesometheme/style.css.scss */
.colorpicker:after {
  content: '';
  display: inline-block;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid white;
  position: absolute;
  top: -6px;
  left: 7px;
}

/* line 1728, vendor/assets/stylesheets/awesometheme/style.css.scss */
.colorpicker div {
  position: relative;
}

/* line 1731, vendor/assets/stylesheets/awesometheme/style.css.scss */
.colorpicker.alpha {
  min-width: 140px;
}

/* line 1733, vendor/assets/stylesheets/awesometheme/style.css.scss */
.colorpicker.alpha .colorpicker-alpha {
  display: block;
}

/* line 1739, vendor/assets/stylesheets/awesometheme/style.css.scss */
.colorpicker-color {
  height: 10px;
  margin-top: 5px;
  clear: both;
  background-image: url(/assets/simpliq/alpha-957a71f62e8990e1641f44f69f8a906974ca00b9ddd3d17e4abaf159a66e377b.png);
  background-position: 0 100%;
}

/* line 1745, vendor/assets/stylesheets/awesometheme/style.css.scss */
.colorpicker-color div {
  height: 10px;
}

/* line 1750, vendor/assets/stylesheets/awesometheme/style.css.scss */
.input-append.color .add-on i, .input-prepend.color .add-on i {
  display: block;
  cursor: pointer;
  width: 16px;
  height: 16px;
}

/* line 1757, vendor/assets/stylesheets/awesometheme/style.css.scss */
.input-group.color .input-group-addon i {
  display: block;
  cursor: pointer;
  width: 13px;
}

/* Page: Messages
=================================================================== */
/* line 1766, vendor/assets/stylesheets/awesometheme/style.css.scss */
.message-view {
  background: white;
  padding: 20px;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  margin-top: -30px;
  margin-right: -32px;
  margin-bottom: -30px;
}

/* line 1777, vendor/assets/stylesheets/awesometheme/style.css.scss */
ul.messagesList {
  list-style: none;
  margin: 0 0 0 -40px;
  font-size: 12px;
}

/* line 1781, vendor/assets/stylesheets/awesometheme/style.css.scss */
ul.messagesList li {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  padding: 5px 10px;
  cursor: pointer;
}

/* line 1787, vendor/assets/stylesheets/awesometheme/style.css.scss */
ul.messagesList li .glyphicons {
  padding: 5px 0 5px 25px;
}

/* line 1789, vendor/assets/stylesheets/awesometheme/style.css.scss */
ul.messagesList li .glyphicons:before {
  font-size: 14px !important;
  margin: -2px 0px 0px 5px;
  color: #383e4b;
}

/* line 1795, vendor/assets/stylesheets/awesometheme/style.css.scss */
ul.messagesList li:nth-child(odd), ul.messagesList li.odd {
  background: white !important;
}

/* line 1798, vendor/assets/stylesheets/awesometheme/style.css.scss */
ul.messagesList li span {
  display: inline-block;
}

/* line 1800, vendor/assets/stylesheets/awesometheme/style.css.scss */
ul.messagesList li span.from {
  width: 25%;
  white-space: nowrap;
  overflow: hidden !important;
  text-overflow: ellipsis;
}

/* line 1806, vendor/assets/stylesheets/awesometheme/style.css.scss */
ul.messagesList li span.title {
  width: 55%;
  font-weight: 300;
  white-space: nowrap;
  overflow: hidden !important;
  text-overflow: ellipsis;
}

/* line 1813, vendor/assets/stylesheets/awesometheme/style.css.scss */
ul.messagesList li span.date {
  width: 20%;
  text-align: right;
}

/* line 1822, vendor/assets/stylesheets/awesometheme/style.css.scss */
.message textarea {
  color: #383e4b !important;
}

/* line 1825, vendor/assets/stylesheets/awesometheme/style.css.scss */
.message .header {
  margin-bottom: 30px;
}

/* line 1827, vendor/assets/stylesheets/awesometheme/style.css.scss */
.message .header h1 {
  border-top: 1px solid black;
  background: #00b2c0;
  color: white;
  margin: -20px -20px 10px -20px;
  padding: 20px;
}

/* line 1834, vendor/assets/stylesheets/awesometheme/style.css.scss */
.message .header i.halflings {
  margin-top: -15px;
}

/* line 1837, vendor/assets/stylesheets/awesometheme/style.css.scss */
.message .header .from {
  display: inline-block;
  width: 70%;
  font-size: 12px;
}

/* line 1842, vendor/assets/stylesheets/awesometheme/style.css.scss */
.message .header .date {
  display: inline-block;
  width: 29%;
  text-align: right;
  float: right;
  font-size: 12px;
}

/* line 1850, vendor/assets/stylesheets/awesometheme/style.css.scss */
.message .attachments {
  border-top: 3px solid #f9f9f9;
  border-bottom: 3px solid #f9f9f9;
  padding: 10px 0px;
  margin-bottom: 20px;
  font-size: 12px;
}

/* line 1856, vendor/assets/stylesheets/awesometheme/style.css.scss */
.message .attachments ul {
  list-style: none;
  margin: 0 0 0 -40px;
}

/* line 1859, vendor/assets/stylesheets/awesometheme/style.css.scss */
.message .attachments ul li {
  margin: 10px 0;
}

/* line 1862, vendor/assets/stylesheets/awesometheme/style.css.scss */
.message .attachments ul li span.label {
  font-size: 12px !important;
}

/* line 1865, vendor/assets/stylesheets/awesometheme/style.css.scss */
.message .attachments ul li span.quickMenu {
  float: right;
  text-align: right;
}

/* line 1868, vendor/assets/stylesheets/awesometheme/style.css.scss */
.message .attachments ul li span.quickMenu .glyphicons {
  padding: 5px 0 5px 25px;
}

/* line 1870, vendor/assets/stylesheets/awesometheme/style.css.scss */
.message .attachments ul li span.quickMenu .glyphicons:before {
  font-size: 14px;
  margin: -2px 0px 0px 5px;
  color: #383e4b;
}

/* Page: Tasks
=================================================================== */
/* line 1886, vendor/assets/stylesheets/awesometheme/style.css.scss */
.task-list {
  background: white;
  padding: 20px;
  margin-top: -30px;
  margin-left: -30px;
  margin-bottom: -30px;
  height: 100%;
}

/* line 1895, vendor/assets/stylesheets/awesometheme/style.css.scss */
.graph {
  height: 100%;
}

/* line 1900, vendor/assets/stylesheets/awesometheme/style.css.scss */
.priority.high {
  background: #ffeded;
  margin-bottom: 1px;
}

/* line 1903, vendor/assets/stylesheets/awesometheme/style.css.scss */
.priority.high span {
  background: #ff5454;
  padding: 2px 10px;
  color: white;
  display: inline-block;
  font-size: 12px;
}

/* line 1911, vendor/assets/stylesheets/awesometheme/style.css.scss */
.priority.medium {
  background: #fef8eb;
  margin-bottom: 1px;
}

/* line 1914, vendor/assets/stylesheets/awesometheme/style.css.scss */
.priority.medium span {
  background: #fabb3d;
  padding: 2px 10px;
  color: white;
  display: inline-block;
  font-size: 12px;
}

/* line 1922, vendor/assets/stylesheets/awesometheme/style.css.scss */
.priority.low {
  background: #e4f5dc;
  margin-bottom: 1px;
}

/* line 1925, vendor/assets/stylesheets/awesometheme/style.css.scss */
.priority.low span {
  background: #78cd51;
  padding: 2px 10px;
  color: white;
  display: inline-block;
  font-size: 12px;
}

/* line 1935, vendor/assets/stylesheets/awesometheme/style.css.scss */
.task {
  border-bottom: 1px solid #f9f9f9;
  margin-bottom: 1px;
  position: relative;
}

/* line 1939, vendor/assets/stylesheets/awesometheme/style.css.scss */
.task .desc {
  display: inline-block;
  width: 75%;
  padding: 10px 10px;
  font-size: 12px;
}

/* line 1944, vendor/assets/stylesheets/awesometheme/style.css.scss */
.task .desc .title {
  font-size: 18px;
  margin-bottom: 5px;
}

/* line 1949, vendor/assets/stylesheets/awesometheme/style.css.scss */
.task .time {
  display: inline-block;
  width: 18%;
  padding: 10px 10px 10px 0px;
  font-size: 12px;
  text-align: right;
  position: absolute;
  top: 0px;
  right: 0px;
}

/* line 1958, vendor/assets/stylesheets/awesometheme/style.css.scss */
.task .time .date {
  font-size: 18px;
  margin-bottom: 5px;
}

/* line 1963, vendor/assets/stylesheets/awesometheme/style.css.scss */
.task.last {
  border-bottom: 1px solid transparent;
}

/* line 1966, vendor/assets/stylesheets/awesometheme/style.css.scss */
.task.high {
  border-left: 2px solid #ff5454;
}

/* line 1969, vendor/assets/stylesheets/awesometheme/style.css.scss */
.task.medium {
  border-left: 2px solid #fabb3d;
}

/* line 1972, vendor/assets/stylesheets/awesometheme/style.css.scss */
.task.low {
  border-left: 2px solid #78cd51;
}

/* line 1977, vendor/assets/stylesheets/awesometheme/style.css.scss */
.timeline {
  width: auto;
  height: 100%;
  margin: 20px auto;
  position: relative;
}

/* line 1982, vendor/assets/stylesheets/awesometheme/style.css.scss */
.timeline:before {
  position: absolute;
  content: '';
  height: 100%;
  width: 4px;
  background: #e4e6eb;
  left: 50%;
  margin-left: -2px;
}

/* line 1993, vendor/assets/stylesheets/awesometheme/style.css.scss */
.timeslot {
  display: inline-block;
  position: relative;
  width: 100%;
  margin: 5px 0px;
}

/* line 1998, vendor/assets/stylesheets/awesometheme/style.css.scss */
.timeslot .task {
  position: absolute;
  width: 42%;
  padding-right: 18px;
  display: block;
  height: auto;
  border: none;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

/* line 2008, vendor/assets/stylesheets/awesometheme/style.css.scss */
.timeslot .task span {
  border: 2px solid #67c2ef;
  background: #f1fafe;
  padding: 5px;
  display: block;
  font-size: 11px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}

/* line 2017, vendor/assets/stylesheets/awesometheme/style.css.scss */
.timeslot .task span span {
  border: 0px;
  background: transparent;
  padding: 0px;
}

/* line 2018, vendor/assets/stylesheets/awesometheme/style.css.scss */
.timeslot .task span span.details {
  font-size: 16px;
  margin-bottom: 10px;
}

/* line 2022, vendor/assets/stylesheets/awesometheme/style.css.scss */
.timeslot .task span span.remaining {
  font-size: 14px;
}

/* line 2030, vendor/assets/stylesheets/awesometheme/style.css.scss */
.timeslot .task .arrow {
  position: absolute;
  top: 6px;
  right: 0px;
  height: 20px;
  width: 20px;
  background: url(/assets/simpliq/timeline-left-arrow-8f0b053a9f82d02246655bc58f6d8ee11ab0a8e2afab6c0a441f2f4eac2b091f.png) no-repeat;
}

/* line 2039, vendor/assets/stylesheets/awesometheme/style.css.scss */
.timeslot .icon {
  position: absolute;
  border: 2px solid #67c2ef;
  background: #383e4b;
  -webkit-border-radius: 50em;
  -moz-border-radius: 50em;
  border-radius: 50em;
  height: 30px;
  width: 30px;
  left: 50%;
  margin-left: -16px;
  color: white;
  font-size: 18px;
  line-height: 30px;
  text-align: center;
  text-shadow: none;
  z-index: 2;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

/* line 2060, vendor/assets/stylesheets/awesometheme/style.css.scss */
.timeslot .time {
  background: #e4e6eb;
  position: absolute;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  top: 1px;
  left: 50%;
  padding: 5px 10px 5px 40px;
  z-index: 1;
  margin-top: 1px;
}

/* line 2073, vendor/assets/stylesheets/awesometheme/style.css.scss */
.timeslot.alt .task {
  left: auto;
  right: -20px;
  padding-left: 18px;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

/* line 2080, vendor/assets/stylesheets/awesometheme/style.css.scss */
.timeslot.alt .task .arrow {
  position: absolute;
  top: 6px;
  left: 0px;
  height: 20px;
  width: 20px;
  background: url(/assets/simpliq/timeline-right-arrow-fe7d546245471e886860bd2639b465f4edd03037a86af4e5254d04a35988564f.png) no-repeat;
}

/* line 2089, vendor/assets/stylesheets/awesometheme/style.css.scss */
.timeslot.alt .time {
  top: 1px;
  left: auto;
  right: 50%;
  padding: 5px 40px 5px 10px;
}

/* Login Box
=================================================================== */
/* line 2101, vendor/assets/stylesheets/awesometheme/style.css.scss */
.login-box {
  width: 300px;
  padding: 20px;
  margin: 100px auto;
  background: #fff;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}

/* line 2111, vendor/assets/stylesheets/awesometheme/style.css.scss */
.login-box form input[type="text"], .login-box form input[type="email"], .login-box form input[type="password"] {
  border: none;
  background: #e4e6eb;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  padding: 0px 10px;
  height: 40px;
  margin: 5px auto;
}

/* line 2125, vendor/assets/stylesheets/awesometheme/style.css.scss */
.login-box form button {
  margin: 15px 0px !important;
}

/* line 2128, vendor/assets/stylesheets/awesometheme/style.css.scss */
.login-box form .remember {
  margin-top: 20px;
  float: left;
}

/* Higher than 1200 (desktop devices)
====================================================================== */
@media (min-width: 1200px) {
  /* line 2139, vendor/assets/stylesheets/awesometheme/style.css.scss */
  li.dropdown.open a {
    color: #00abba;
  }
  /* line 2146, vendor/assets/stylesheets/awesometheme/style.css.scss */
  a#main-menu-toggle {
    margin-left: 14.422%;
  }
  /* line 2149, vendor/assets/stylesheets/awesometheme/style.css.scss */
  a.navbar-brand {
    position: absolute;
    width: 14.422%;
  }
  /* line 2154, vendor/assets/stylesheets/awesometheme/style.css.scss */
  .container {
    width: 100% !important;
  }
  /* line 2156, vendor/assets/stylesheets/awesometheme/style.css.scss */
  .container #content {
    padding: 10px 15px;
    margin: 0;
    height: 100%;
  }
  /* line 2162, vendor/assets/stylesheets/awesometheme/style.css.scss */
  .container #sidebar-left {
    width: 14.422%;
  }
}

/* Higher than 992 (desktop devices)
====================================================================== */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  /* line 2174, vendor/assets/stylesheets/awesometheme/style.css.scss */
  li.dropdown.open a {
    color: #00abba;
  }
  /* line 2179, vendor/assets/stylesheets/awesometheme/style.css.scss */
  a#main-menu-toggle {
    margin-left: 14.422%;
  }
  /* line 2182, vendor/assets/stylesheets/awesometheme/style.css.scss */
  a.navbar-brand {
    position: absolute;
    width: 14.422%;
  }
  /* line 2188, vendor/assets/stylesheets/awesometheme/style.css.scss */
  .container {
    width: 100% !important;
  }
  /* line 2190, vendor/assets/stylesheets/awesometheme/style.css.scss */
  .container #content {
    padding: 30px;
    margin: 0;
    height: 100%;
  }
  /* line 2196, vendor/assets/stylesheets/awesometheme/style.css.scss */
  .container #sidebar-left {
    width: 14.422%;
  }
  /* line 2200, vendor/assets/stylesheets/awesometheme/style.css.scss */
  .sparkLineStats li .number {
    font-size: 16px;
    font-weight: 700;
    padding: 0 5px;
    color: #FA5833;
  }
  /* line 2211, vendor/assets/stylesheets/awesometheme/style.css.scss */
  .calendar .fc td, .calendar .fc th {
    padding: 0.3em;
  }
  /* line 2215, vendor/assets/stylesheets/awesometheme/style.css.scss */
  .calendar .fc-content {
    margin: 50px 20px 20px 20px;
  }
  /* Page: Tasks
    =================================================================== */
  /* line 2222, vendor/assets/stylesheets/awesometheme/style.css.scss */
  .task .desc {
    display: inline-block;
    width: 70%;
    padding: 10px 10px;
    font-size: 12px;
  }
  /* line 2227, vendor/assets/stylesheets/awesometheme/style.css.scss */
  .task .desc .title {
    font-size: 16px;
    margin-bottom: 5px;
  }
  /* line 2232, vendor/assets/stylesheets/awesometheme/style.css.scss */
  .task .time {
    display: inline-block;
    float: right;
    width: 20%;
    padding: 10px 10px;
    font-size: 12px;
    text-align: right;
  }
  /* line 2239, vendor/assets/stylesheets/awesometheme/style.css.scss */
  .task .time .date {
    font-size: 16px;
    margin-bottom: 5px;
  }
  /* line 2245, vendor/assets/stylesheets/awesometheme/style.css.scss */
  ul.messages-list li a .date {
    display: none;
  }
  /* line 2248, vendor/assets/stylesheets/awesometheme/style.css.scss */
  footer {
    position: relative;
  }
}

/* Tablet Portrait (devices and browsers)
====================================================================== */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  /* line 2256, vendor/assets/stylesheets/awesometheme/style.css.scss */
  li.dropdown.open a {
    color: #00abba;
  }
  /* line 2260, vendor/assets/stylesheets/awesometheme/style.css.scss */
  a#main-menu-toggle {
    margin-left: 8.334%;
  }
  /* line 2263, vendor/assets/stylesheets/awesometheme/style.css.scss */
  a.navbar-brand {
    width: 8.334%;
    padding: 8px 0px !important;
    position: absolute;
  }
  /* line 2267, vendor/assets/stylesheets/awesometheme/style.css.scss */
  a.navbar-brand span {
    font-size: 12px;
  }
  /* line 2276, vendor/assets/stylesheets/awesometheme/style.css.scss */
  .container {
    width: 100% !important;
  }
  /* line 2278, vendor/assets/stylesheets/awesometheme/style.css.scss */
  .container #content {
    padding: 22px;
    margin: 0px 0px;
    overflow: hidden;
  }
  /* line 2283, vendor/assets/stylesheets/awesometheme/style.css.scss */
  .container #sidebar-left {
    margin-left: 0px !important;
    width: 8.334% !important;
  }
  /* line 2289, vendor/assets/stylesheets/awesometheme/style.css.scss */
  .sidebar-nav ul {
    text-align: center;
    width: 100% !important;
    font-size: 20px;
    margin: -10px 10px 0px 10px !important;
  }
  /* line 2295, vendor/assets/stylesheets/awesometheme/style.css.scss */
  .sidebar-nav ul li a {
    margin: 0;
    padding: 0;
  }
  /* line 2299, vendor/assets/stylesheets/awesometheme/style.css.scss */
  .sidebar-nav ul li ul > li {
    margin: 0px 10px 0px 0px;
    padding: 0;
  }
  /* line 2306, vendor/assets/stylesheets/awesometheme/style.css.scss */
  .sidebar-nav .nav-tabs.nav-stacked > li > ul > li {
    margin-left: -10px;
  }
  /* line 2309, vendor/assets/stylesheets/awesometheme/style.css.scss */
  .sidebar-nav .nav-tabs.nav-stacked > li > a > i, .sidebar-nav .nav-tabs.nav-stacked > li > ul > li > a > i {
    margin-right: 0px;
  }
  /* line 2314, vendor/assets/stylesheets/awesometheme/style.css.scss */
  .noMargin {
    margin-left: 0px !important;
  }
  /* line 2317, vendor/assets/stylesheets/awesometheme/style.css.scss */
  .btn-navbar {
    display: none !important;
  }
  /* line 2320, vendor/assets/stylesheets/awesometheme/style.css.scss */
  .nav-collapse {
    height: auto !important;
    overflow: visible !important;
    margin-left: -20px !important;
  }
  /* line 2324, vendor/assets/stylesheets/awesometheme/style.css.scss */
  .nav-collapse.collapse {
    height: auto !important;
    overflow: visible !important;
    margin-left: -20px !important;
  }
  /* line 2330, vendor/assets/stylesheets/awesometheme/style.css.scss */
  .sidebar-nav {
    padding: 0;
    margin-bottom: 0;
  }
  /* line 2334, vendor/assets/stylesheets/awesometheme/style.css.scss */
  .stats-date .range {
    font-size: 16px;
    font-weight: 300;
  }
  /* line 2338, vendor/assets/stylesheets/awesometheme/style.css.scss */
  .sparkLineStats li .number {
    font-size: 14px;
    font-weight: 700;
    padding: 0 5px;
    color: #FA5833;
  }
  /* Page: Tasks
    =================================================================== */
  /* line 2346, vendor/assets/stylesheets/awesometheme/style.css.scss */
  .task-list {
    padding: 20px;
    margin-top: -22px;
    margin-left: -22px;
    margin-bottom: -22px;
  }
  /* line 2352, vendor/assets/stylesheets/awesometheme/style.css.scss */
  .task {
    border-bottom: 1px solid #f9f9f9;
    margin-bottom: 1px;
  }
  /* line 2355, vendor/assets/stylesheets/awesometheme/style.css.scss */
  .task .desc {
    display: inline-block;
    width: 65%;
    padding: 10px 10px;
    font-size: 10px;
    margin-right: -20px;
  }
  /* line 2361, vendor/assets/stylesheets/awesometheme/style.css.scss */
  .task .desc .title {
    font-size: 14px;
    margin-bottom: 5px;
  }
  /* line 2366, vendor/assets/stylesheets/awesometheme/style.css.scss */
  .task .time {
    display: inline-block;
    float: right;
    width: 25%;
    padding: 10px 10px;
    font-size: 10px;
    text-align: right;
  }
  /* line 2373, vendor/assets/stylesheets/awesometheme/style.css.scss */
  .task .time .date {
    font-size: 14px;
    margin-bottom: 5px;
  }
  /* line 2378, vendor/assets/stylesheets/awesometheme/style.css.scss */
  .task.high {
    border-left: 2px solid #fa603d;
  }
  /* line 2381, vendor/assets/stylesheets/awesometheme/style.css.scss */
  .task.medium {
    border-left: 2px solid #fabb3d;
  }
  /* line 2384, vendor/assets/stylesheets/awesometheme/style.css.scss */
  .task.low {
    border-left: 2px solid #78cd51;
  }
  /* line 2388, vendor/assets/stylesheets/awesometheme/style.css.scss */
  .timeslot .task span {
    border: 2px solid #67c2ef;
    background: rgba(103, 194, 239, 0.1);
    padding: 5px;
    display: block;
    font-size: 10px;
  }
  /* line 2394, vendor/assets/stylesheets/awesometheme/style.css.scss */
  .timeslot .task span span {
    border: 0px;
    background: transparent;
    padding: 0px;
  }
  /* line 2398, vendor/assets/stylesheets/awesometheme/style.css.scss */
  .timeslot .task span span.details {
    font-size: 14px;
    margin-bottom: 0px;
  }
  /* line 2402, vendor/assets/stylesheets/awesometheme/style.css.scss */
  .timeslot .task span span.remaining {
    font-size: 12px;
  }
  /* Page: Messages
    =================================================================== */
  /* line 2409, vendor/assets/stylesheets/awesometheme/style.css.scss */
  .message-view {
    background: white;
    padding: 20px;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    margin-top: -22px;
    margin-right: -23px;
  }
  /* line 2418, vendor/assets/stylesheets/awesometheme/style.css.scss */
  footer {
    margin: 20px -20px 0px -20px;
    padding: 10px 20px;
    position: relative;
    z-index: 2;
  }
}

/*
====================================================================== */
/* line 2428, vendor/assets/stylesheets/awesometheme/style.css.scss */
#map_all {
  width: 100%;
  height: 400px;
}

/* line 2432, vendor/assets/stylesheets/awesometheme/style.css.scss */
#map_site {
  width: 100%;
  height: 400px;
}

/* All Mobile Sizes (devices and browser)
====================================================================== */
@media only screen and (max-width: 767px) {
  /* line 2441, vendor/assets/stylesheets/awesometheme/style.css.scss */
  #content {
    overflow: hidden;
  }
  /* Page: Tasks
    =================================================================== */
  /* line 2447, vendor/assets/stylesheets/awesometheme/style.css.scss */
  .task-list, .graph {
    position: relative;
    margin: 0px !important;
  }
  /* line 2451, vendor/assets/stylesheets/awesometheme/style.css.scss */
  .task {
    border-bottom: 1px solid #f9f9f9;
    margin-bottom: 1px;
  }
  /* line 2454, vendor/assets/stylesheets/awesometheme/style.css.scss */
  .task .desc {
    display: inline-block;
    width: 65%;
    padding: 10px 10px;
    font-size: 10px;
    margin-right: -20px;
  }
  /* line 2460, vendor/assets/stylesheets/awesometheme/style.css.scss */
  .task .desc .title {
    font-size: 14px;
    margin-bottom: 5px;
  }
  /* line 2465, vendor/assets/stylesheets/awesometheme/style.css.scss */
  .task .time {
    display: inline-block;
    float: right;
    width: 25%;
    padding: 10px 10px;
    font-size: 10px;
    text-align: right;
  }
  /* line 2472, vendor/assets/stylesheets/awesometheme/style.css.scss */
  .task .time .date {
    font-size: 14px;
    margin-bottom: 5px;
  }
  /* line 2478, vendor/assets/stylesheets/awesometheme/style.css.scss */
  .timeslot .task span {
    padding: 5px;
    display: block;
    font-size: 10px;
  }
  /* line 2482, vendor/assets/stylesheets/awesometheme/style.css.scss */
  .timeslot .task span span {
    border: 0px;
    background: transparent;
    padding: 0px;
  }
  /* line 2486, vendor/assets/stylesheets/awesometheme/style.css.scss */
  .timeslot .task span span.details {
    font-size: 14px;
    margin-bottom: 0px;
  }
  /* line 2490, vendor/assets/stylesheets/awesometheme/style.css.scss */
  .timeslot .task span span.remaining {
    font-size: 12px;
  }
  /* Page: Messages
    =================================================================== */
  /* line 2497, vendor/assets/stylesheets/awesometheme/style.css.scss */
  .message-view {
    margin: 0;
  }
}

/* Mobile Landscape Size to Tablet Portrait (devices and browsers)
====================================================================== */
@media only screen and (min-width: 480px) and (max-width: 767px) {
  /* line 2505, vendor/assets/stylesheets/awesometheme/style.css.scss */
  li.dropdown.open a {
    color: #00abba;
  }
  /* line 2508, vendor/assets/stylesheets/awesometheme/style.css.scss */
  #content {
    padding: 5px;
  }
  /* line 2511, vendor/assets/stylesheets/awesometheme/style.css.scss */
  .mobileHalf {
    width: 48% !important;
    float: left !important;
    margin: 1% !important;
  }
  /* line 2516, vendor/assets/stylesheets/awesometheme/style.css.scss */
  .quick-button, .quick-button-small {
    margin-bottom: 20px;
  }
  /* line 2519, vendor/assets/stylesheets/awesometheme/style.css.scss */
  .pull-right {
    width: 100%;
    margin: 10px auto;
    text-align: center;
  }
  /* line 2524, vendor/assets/stylesheets/awesometheme/style.css.scss */
  .fc-button-today, .fc-button-month, .fc-button-agendaWeek, .fc-button-agendaDay {
    display: none;
  }
  /* line 2527, vendor/assets/stylesheets/awesometheme/style.css.scss */
  footer {
    position: relative;
  }
  /* line 2530, vendor/assets/stylesheets/awesometheme/style.css.scss */
  body table .hidden-md, body table .hidden-sm, body table .hidden-xs {
    display: none !important;
  }
}

/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers)
=================================================================== */
@media only screen and (max-width: 479px) {
  /* line 2550, vendor/assets/stylesheets/awesometheme/style.css.scss */
  #content {
    padding: 5px;
  }
  /* line 2553, vendor/assets/stylesheets/awesometheme/style.css.scss */
  #map_all {
    height: 200px;
  }
  /* line 2556, vendor/assets/stylesheets/awesometheme/style.css.scss */
  #map_site {
    height: 200px;
  }
  /* line 2561, vendor/assets/stylesheets/awesometheme/style.css.scss */
  .calendar .fc td, .calendar .fc th {
    padding: 0.1em 0.2em;
    font-size: 10px;
  }
  /* line 2566, vendor/assets/stylesheets/awesometheme/style.css.scss */
  .calendar .fc-content {
    margin: 70px 5px 20px 5px;
  }
  /* line 2570, vendor/assets/stylesheets/awesometheme/style.css.scss */
  .quick-button, .quick-button-small {
    margin-bottom: 20px;
  }
  /* line 2573, vendor/assets/stylesheets/awesometheme/style.css.scss */
  .pull-right {
    width: 100%;
    margin: 10px auto;
    text-align: center;
  }
  /* line 2578, vendor/assets/stylesheets/awesometheme/style.css.scss */
  .fc-button-today, .fc-button-month, .fc-button-agendaWeek, .fc-button-agendaDay {
    display: none;
  }
  /* line 2581, vendor/assets/stylesheets/awesometheme/style.css.scss */
  table {
    font-size: 12px;
  }
  /* line 2584, vendor/assets/stylesheets/awesometheme/style.css.scss */
  .pagination {
    font-size: 10px;
    padding: 5px;
  }
  /* line 2588, vendor/assets/stylesheets/awesometheme/style.css.scss */
  footer {
    padding: 10px 20px;
  }
  /* line 2592, vendor/assets/stylesheets/awesometheme/style.css.scss */
  body table .hidden-sm, body table .hidden-xs {
    display: none !important;
  }
}

/* QRID reports
=================================================================== */
/* line 2601, vendor/assets/stylesheets/awesometheme/style.css.scss */
.glyphicons.message_full:before, .glyphicons.message_new:before {
  font-size: 20px;
  margin-top: -10px;
}

/* line 2606, vendor/assets/stylesheets/awesometheme/style.css.scss */
.qrid-checklist {
  position: relative;
  overflow: hidden;
}

/* line 2609, vendor/assets/stylesheets/awesometheme/style.css.scss */
.qrid-checklist fieldset {
  float: left;
  width: 100%;
}

/* line 2613, vendor/assets/stylesheets/awesometheme/style.css.scss */
.qrid-checklist fieldset > fieldset {
  margin-left: 15px;
}

/* line 2615, vendor/assets/stylesheets/awesometheme/style.css.scss */
.qrid-checklist fieldset > fieldset legend {
  color: #999;
}

/* line 2619, vendor/assets/stylesheets/awesometheme/style.css.scss */
.qrid-checklist legend {
  color: black;
}

/* line 2626, vendor/assets/stylesheets/awesometheme/style.css.scss */
.qrid-checklist .additional-comments, .qrid-checklist .additional-photos {
  margin: 0;
  padding: 0 0 5px;
  display: inline-block;
  float: left;
  clear: both;
}

/* line 2634, vendor/assets/stylesheets/awesometheme/style.css.scss */
.qrid-checklist .additional-photos input {
  float: left;
  clear: both;
}

/* line 2638, vendor/assets/stylesheets/awesometheme/style.css.scss */
.qrid-checklist .dd-list {
  float: left;
  clear: both;
  padding-left: 10px;
}

/* line 2642, vendor/assets/stylesheets/awesometheme/style.css.scss */
.qrid-checklist .dd-list .answers {
  float: left;
  width: 80px;
  padding: 0;
}

/* line 2650, vendor/assets/stylesheets/awesometheme/style.css.scss */
.qrid-checklist .dd-list .controls .qrid-radio {
  opacity: 0;
  width: 0;
  height: 0;
}

/* line 2657, vendor/assets/stylesheets/awesometheme/style.css.scss */
.qrid-checklist .dd-list .controls .radio-yes {
  background: #5cb85c;
}

/* line 2660, vendor/assets/stylesheets/awesometheme/style.css.scss */
.qrid-checklist .dd-list .controls .radio-no {
  background: #d9534f;
}

/* line 2663, vendor/assets/stylesheets/awesometheme/style.css.scss */
.qrid-checklist .dd-list .controls .radio-na {
  background: #f0ad4e;
}

/* line 2670, vendor/assets/stylesheets/awesometheme/style.css.scss */
.report-instructions {
  width: 100%;
  float: left;
  clear: both;
  display: inline-block;
}

/* line 2671, vendor/assets/stylesheets/awesometheme/style.css.scss */
.report-instructions label {
  float: left;
}

/* line 2682, vendor/assets/stylesheets/awesometheme/style.css.scss */
.qrid-options {
  float: left;
  clear: both;
  min-width: 400px;
}

/*!
 *
 *  Project:  GLYPHICONS HALFLINGS
 *  Author:   Jan Kovarik - www.glyphicons.com
 *  Twitter:  @glyphicons
 *
 */
@font-face {
  font-family: 'Glyphicons Regular';
  src: url(/assets/simpliq/glyphicons-regular-aedb066aa4363e560ff3ecd060a5b3346e15056c2e61e00ce27e5e100e529136.eot);
  src: url(/assets/simpliq/glyphicons-regular-aedb066aa4363e560ff3ecd060a5b3346e15056c2e61e00ce27e5e100e529136.eot?#iefix) format("embedded-opentype"), url(/assets/simpliq/glyphicons-regular-2a15d5e5568741145ae19e455fbb94764f3890f6a75e007df3e5f25428e66124.woff) format("woff"), url(/assets/simpliq/glyphicons-regular-713f363f7235d89446ee83a9e8c1e6b767be3995c162d650d100d06b5eb281fe.ttf) format("truetype"), url(/assets/simpliq/glyphicons-regular-e1cc1e7dfc3ef938a46e880895fd24efab7064483eb4c920774dd8d97ee49af5.svg#glyphiconsregular) format("svg");
  font-weight: normal;
  font-style: normal;
}

/* line 17, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons {
  display: inline-block;
  position: relative;
  padding-left: 48px;
  color: #1d1d1b;
  text-decoration: none;
  *display: inline;
  *zoom: 1;
  vertical-align: middle;
}

/* line 26, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons:before {
  position: absolute;
  left: 0;
  top: 0;
  display: inline-block;
  margin: 0 5px 0 0;
  font: 24px / 1em "Glyphicons Regular";
  font-style: normal;
  font-weight: normal;
  color: #1d1d1b;
  *display: inline;
  *zoom: 1;
  vertical-align: middle;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
}

/* line 42, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.white:before {
  color: #fff;
}

/* line 45, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.glass:before {
  content: "\E001";
}

/* line 48, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.leaf:before {
  content: "\E002";
}

/* line 51, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.dog:before {
  content: "\1F415";
}

/* line 54, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.user:before {
  content: "\E004";
}

/* line 57, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.girl:before {
  content: "\1F467";
}

/* line 60, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.car:before {
  content: "\E006";
}

/* line 63, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.user_add:before {
  content: "\E007";
}

/* line 66, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.user_remove:before {
  content: "\E008";
}

/* line 69, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.film:before {
  content: "\E009";
}

/* line 72, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.magic:before {
  content: "\E010";
}

/* line 75, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.envelope:before {
  content: "\2709";
}

/* line 78, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.camera:before {
  content: "\1F4F7";
}

/* line 81, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.heart:before {
  content: "\E013";
}

/* line 84, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.beach_umbrella:before {
  content: "\E014";
}

/* line 87, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.train:before {
  content: "\1F686";
}

/* line 90, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.print:before {
  content: "\E016";
}

/* line 93, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.bin:before {
  content: "\E017";
}

/* line 96, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.music:before {
  content: "\E018";
}

/* line 99, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.note:before {
  content: "\E019";
}

/* line 102, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.heart_empty:before {
  content: "\E020";
}

/* line 105, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.home:before {
  content: "\E021";
}

/* line 108, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.snowflake:before {
  content: "\2744";
}

/* line 111, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.fire:before {
  content: "\1F525";
}

/* line 114, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.magnet:before {
  content: "\E024";
}

/* line 117, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.parents:before {
  content: "\E025";
}

/* line 120, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.binoculars:before {
  content: "\E026";
}

/* line 123, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.road:before {
  content: "\E027";
}

/* line 126, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.search:before {
  content: "\E028";
}

/* line 129, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.cars:before {
  content: "\E029";
}

/* line 132, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.notes_2:before {
  content: "\E030";
}

/* line 135, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.pencil:before {
  content: "\270F";
}

/* line 138, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.bus:before {
  content: "\1F68C";
}

/* line 141, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.wifi_alt:before {
  content: "\E033";
}

/* line 144, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.luggage:before {
  content: "\E034";
}

/* line 147, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.old_man:before {
  content: "\E035";
}

/* line 150, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.woman:before {
  content: "\1F469";
}

/* line 153, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.file:before {
  content: "\E037";
}

/* line 156, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.coins:before {
  content: "\E038";
}

/* line 159, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.airplane:before {
  content: "\2708";
}

/* line 162, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.notes:before {
  content: "\E040";
}

/* line 165, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.stats:before {
  content: "\E041";
}

/* line 168, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.charts:before {
  content: "\E042";
}

/* line 171, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.pie_chart:before {
  content: "\E043";
}

/* line 174, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.group:before {
  content: "\E044";
}

/* line 177, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.keys:before {
  content: "\E045";
}

/* line 180, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.calendar:before {
  content: "\1F4C5";
}

/* line 183, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.router:before {
  content: "\E047";
}

/* line 186, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.camera_small:before {
  content: "\E048";
}

/* line 189, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.dislikes:before {
  content: "\E049";
}

/* line 192, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.star:before {
  content: "\E050";
}

/* line 195, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.link:before {
  content: "\E051";
}

/* line 198, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.eye_open:before {
  content: "\E052";
}

/* line 201, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.eye_close:before {
  content: "\E053";
}

/* line 204, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.alarm:before {
  content: "\E054";
}

/* line 207, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.clock:before {
  content: "\E055";
}

/* line 210, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.stopwatch:before {
  content: "\E056";
}

/* line 213, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.projector:before {
  content: "\E057";
}

/* line 216, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.history:before {
  content: "\E058";
}

/* line 219, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.truck:before {
  content: "\E059";
}

/* line 222, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.cargo:before {
  content: "\E060";
}

/* line 225, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.compass:before {
  content: "\E061";
}

/* line 228, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.keynote:before {
  content: "\E062";
}

/* line 231, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.paperclip:before {
  content: "\1F4CE";
}

/* line 234, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.power:before {
  content: "\E064";
}

/* line 237, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.lightbulb:before {
  content: "\E065";
}

/* line 240, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.tag:before {
  content: "\E066";
}

/* line 243, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.tags:before {
  content: "\E067";
}

/* line 246, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.cleaning:before {
  content: "\E068";
}

/* line 249, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.ruller:before {
  content: "\E069";
}

/* line 252, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.gift:before {
  content: "\E070";
}

/* line 255, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.umbrella:before {
  content: "\2602";
}

/* line 258, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.book:before {
  content: "\E072";
}

/* line 261, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.bookmark:before {
  content: "\1F516";
}

/* line 264, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.wifi:before {
  content: "\E074";
}

/* line 267, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.cup:before {
  content: "\E075";
}

/* line 270, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.stroller:before {
  content: "\E076";
}

/* line 273, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.headphones:before {
  content: "\E077";
}

/* line 276, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.headset:before {
  content: "\E078";
}

/* line 279, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.warning_sign:before {
  content: "\E079";
}

/* line 282, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.signal:before {
  content: "\E080";
}

/* line 285, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.retweet:before {
  content: "\E081";
}

/* line 288, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.refresh:before {
  content: "\E082";
}

/* line 291, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.roundabout:before {
  content: "\E083";
}

/* line 294, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.random:before {
  content: "\E084";
}

/* line 297, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.heat:before {
  content: "\E085";
}

/* line 300, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.repeat:before {
  content: "\E086";
}

/* line 303, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.display:before {
  content: "\E087";
}

/* line 306, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.log_book:before {
  content: "\E088";
}

/* line 309, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.address_book:before {
  content: "\E089";
}

/* line 312, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.building:before {
  content: "\E090";
}

/* line 315, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.eyedropper:before {
  content: "\E091";
}

/* line 318, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.adjust:before {
  content: "\E092";
}

/* line 321, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.tint:before {
  content: "\E093";
}

/* line 324, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.crop:before {
  content: "\E094";
}

/* line 327, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.vector_path_square:before {
  content: "\E095";
}

/* line 330, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.vector_path_circle:before {
  content: "\E096";
}

/* line 333, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.vector_path_polygon:before {
  content: "\E097";
}

/* line 336, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.vector_path_line:before {
  content: "\E098";
}

/* line 339, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.vector_path_curve:before {
  content: "\E099";
}

/* line 342, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.vector_path_all:before {
  content: "\E100";
}

/* line 345, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.font:before {
  content: "\E101";
}

/* line 348, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.italic:before {
  content: "\E102";
}

/* line 351, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.bold:before {
  content: "\E103";
}

/* line 354, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.text_underline:before {
  content: "\E104";
}

/* line 357, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.text_strike:before {
  content: "\E105";
}

/* line 360, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.text_height:before {
  content: "\E106";
}

/* line 363, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.text_width:before {
  content: "\E107";
}

/* line 366, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.text_resize:before {
  content: "\E108";
}

/* line 369, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.left_indent:before {
  content: "\E109";
}

/* line 372, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.right_indent:before {
  content: "\E110";
}

/* line 375, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.align_left:before {
  content: "\E111";
}

/* line 378, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.align_center:before {
  content: "\E112";
}

/* line 381, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.align_right:before {
  content: "\E113";
}

/* line 384, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.justify:before {
  content: "\E114";
}

/* line 387, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.list:before {
  content: "\E115";
}

/* line 390, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.text_smaller:before {
  content: "\E116";
}

/* line 393, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.text_bigger:before {
  content: "\E117";
}

/* line 396, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.embed:before {
  content: "\E118";
}

/* line 399, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.embed_close:before {
  content: "\E119";
}

/* line 402, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.table:before {
  content: "\E120";
}

/* line 405, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.message_full:before {
  content: "\E121";
}

/* line 408, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.message_empty:before {
  content: "\E122";
}

/* line 411, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.message_in:before {
  content: "\E123";
}

/* line 414, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.message_out:before {
  content: "\E124";
}

/* line 417, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.message_plus:before {
  content: "\E125";
}

/* line 420, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.message_minus:before {
  content: "\E126";
}

/* line 423, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.message_ban:before {
  content: "\E127";
}

/* line 426, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.message_flag:before {
  content: "\E128";
}

/* line 429, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.message_lock:before {
  content: "\E129";
}

/* line 432, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.message_new:before {
  content: "\E130";
}

/* line 435, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.inbox:before {
  content: "\E131";
}

/* line 438, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.inbox_plus:before {
  content: "\E132";
}

/* line 441, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.inbox_minus:before {
  content: "\E133";
}

/* line 444, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.inbox_lock:before {
  content: "\E134";
}

/* line 447, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.inbox_in:before {
  content: "\E135";
}

/* line 450, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.inbox_out:before {
  content: "\E136";
}

/* line 453, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.cogwheel:before {
  content: "\E137";
}

/* line 456, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.cogwheels:before {
  content: "\E138";
}

/* line 459, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.picture:before {
  content: "\E139";
}

/* line 462, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.adjust_alt:before {
  content: "\E140";
}

/* line 465, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.database_lock:before {
  content: "\E141";
}

/* line 468, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.database_plus:before {
  content: "\E142";
}

/* line 471, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.database_minus:before {
  content: "\E143";
}

/* line 474, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.database_ban:before {
  content: "\E144";
}

/* line 477, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.folder_open:before {
  content: "\E145";
}

/* line 480, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.folder_plus:before {
  content: "\E146";
}

/* line 483, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.folder_minus:before {
  content: "\E147";
}

/* line 486, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.folder_lock:before {
  content: "\E148";
}

/* line 489, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.folder_flag:before {
  content: "\E149";
}

/* line 492, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.folder_new:before {
  content: "\E150";
}

/* line 495, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.edit:before {
  content: "\E151";
}

/* line 498, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.new_window:before {
  content: "\E152";
}

/* line 501, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.check:before {
  content: "\E153";
}

/* line 504, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.unchecked:before {
  content: "\E154";
}

/* line 507, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.more_windows:before {
  content: "\E155";
}

/* line 510, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.show_big_thumbnails:before {
  content: "\E156";
}

/* line 513, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.show_thumbnails:before {
  content: "\E157";
}

/* line 516, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.show_thumbnails_with_lines:before {
  content: "\E158";
}

/* line 519, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.show_lines:before {
  content: "\E159";
}

/* line 522, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.playlist:before {
  content: "\E160";
}

/* line 525, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.imac:before {
  content: "\E161";
}

/* line 528, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.macbook:before {
  content: "\E162";
}

/* line 531, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.ipad:before {
  content: "\E163";
}

/* line 534, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.iphone:before {
  content: "\E164";
}

/* line 537, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.iphone_transfer:before {
  content: "\E165";
}

/* line 540, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.iphone_exchange:before {
  content: "\E166";
}

/* line 543, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.ipod:before {
  content: "\E167";
}

/* line 546, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.ipod_shuffle:before {
  content: "\E168";
}

/* line 549, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.ear_plugs:before {
  content: "\E169";
}

/* line 552, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.record:before {
  content: "\E170";
}

/* line 555, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.step_backward:before {
  content: "\E171";
}

/* line 558, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.fast_backward:before {
  content: "\E172";
}

/* line 561, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.rewind:before {
  content: "\E173";
}

/* line 564, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.play:before {
  content: "\E174";
}

/* line 567, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.pause:before {
  content: "\E175";
}

/* line 570, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.stop:before {
  content: "\E176";
}

/* line 573, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.forward:before {
  content: "\E177";
}

/* line 576, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.fast_forward:before {
  content: "\E178";
}

/* line 579, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.step_forward:before {
  content: "\E179";
}

/* line 582, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.eject:before {
  content: "\E180";
}

/* line 585, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.facetime_video:before {
  content: "\E181";
}

/* line 588, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.download_alt:before {
  content: "\E182";
}

/* line 591, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.mute:before {
  content: "\E183";
}

/* line 594, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.volume_down:before {
  content: "\E184";
}

/* line 597, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.volume_up:before {
  content: "\E185";
}

/* line 600, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.screenshot:before {
  content: "\E186";
}

/* line 603, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.move:before {
  content: "\E187";
}

/* line 606, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.more:before {
  content: "\E188";
}

/* line 609, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.brightness_reduce:before {
  content: "\E189";
}

/* line 612, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.brightness_increase:before {
  content: "\E190";
}

/* line 615, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.circle_plus:before {
  content: "\E191";
}

/* line 618, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.circle_minus:before {
  content: "\E192";
}

/* line 621, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.circle_remove:before {
  content: "\E193";
}

/* line 624, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.circle_ok:before {
  content: "\E194";
}

/* line 627, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.circle_question_mark:before {
  content: "\E195";
}

/* line 630, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.circle_info:before {
  content: "\E196";
}

/* line 633, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.circle_exclamation_mark:before {
  content: "\E197";
}

/* line 636, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.remove:before {
  content: "\E198";
}

/* line 639, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.ok:before {
  content: "\E199";
}

/* line 642, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.ban:before {
  content: "\E200";
}

/* line 645, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.download:before {
  content: "\E201";
}

/* line 648, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.upload:before {
  content: "\E202";
}

/* line 651, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.shopping_cart:before {
  content: "\E203";
}

/* line 654, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.lock:before {
  content: "\1F512";
}

/* line 657, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.unlock:before {
  content: "\E205";
}

/* line 660, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.electricity:before {
  content: "\E206";
}

/* line 663, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.ok_2:before {
  content: "\E207";
}

/* line 666, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.remove_2:before {
  content: "\E208";
}

/* line 669, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.cart_out:before {
  content: "\E209";
}

/* line 672, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.cart_in:before {
  content: "\E210";
}

/* line 675, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.left_arrow:before {
  content: "\E211";
}

/* line 678, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.right_arrow:before {
  content: "\E212";
}

/* line 681, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.down_arrow:before {
  content: "\E213";
}

/* line 684, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.up_arrow:before {
  content: "\E214";
}

/* line 687, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.resize_small:before {
  content: "\E215";
}

/* line 690, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.resize_full:before {
  content: "\E216";
}

/* line 693, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.circle_arrow_left:before {
  content: "\E217";
}

/* line 696, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.circle_arrow_right:before {
  content: "\E218";
}

/* line 699, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.circle_arrow_top:before {
  content: "\E219";
}

/* line 702, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.circle_arrow_down:before {
  content: "\E220";
}

/* line 705, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.play_button:before {
  content: "\E221";
}

/* line 708, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.unshare:before {
  content: "\E222";
}

/* line 711, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.share:before {
  content: "\E223";
}

/* line 714, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.chevron-right:before {
  content: "\E224";
}

/* line 717, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.chevron-left:before {
  content: "\E225";
}

/* line 720, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.bluetooth:before {
  content: "\E226";
}

/* line 723, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.euro:before {
  content: "\20AC";
}

/* line 726, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.usd:before {
  content: "\E228";
}

/* line 729, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.gbp:before {
  content: "\E229";
}

/* line 732, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.retweet_2:before {
  content: "\E230";
}

/* line 735, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.moon:before {
  content: "\E231";
}

/* line 738, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.sun:before {
  content: "\2609";
}

/* line 741, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.cloud:before {
  content: "\2601";
}

/* line 744, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.direction:before {
  content: "\E234";
}

/* line 747, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.brush:before {
  content: "\E235";
}

/* line 750, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.pen:before {
  content: "\E236";
}

/* line 753, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.zoom_in:before {
  content: "\E237";
}

/* line 756, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.zoom_out:before {
  content: "\E238";
}

/* line 759, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.pin:before {
  content: "\E239";
}

/* line 762, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.albums:before {
  content: "\E240";
}

/* line 765, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.rotation_lock:before {
  content: "\E241";
}

/* line 768, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.flash:before {
  content: "\E242";
}

/* line 771, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.google_maps:before {
  content: "\E243";
}

/* line 774, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.anchor:before {
  content: "\2693";
}

/* line 777, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.conversation:before {
  content: "\E245";
}

/* line 780, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.chat:before {
  content: "\E246";
}

/* line 783, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.male:before {
  content: "\E247";
}

/* line 786, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.female:before {
  content: "\E248";
}

/* line 789, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.asterisk:before {
  content: "\002A";
}

/* line 792, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.divide:before {
  content: "\00F7";
}

/* line 795, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.snorkel_diving:before {
  content: "\E251";
}

/* line 798, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.scuba_diving:before {
  content: "\E252";
}

/* line 801, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.oxygen_bottle:before {
  content: "\E253";
}

/* line 804, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.fins:before {
  content: "\E254";
}

/* line 807, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.fishes:before {
  content: "\E255";
}

/* line 810, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.boat:before {
  content: "\E256";
}

/* line 813, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.delete:before {
  content: "\E257";
}

/* line 816, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.sheriffs_star:before {
  content: "\E258";
}

/* line 819, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.qrcode:before {
  content: "\E259";
}

/* line 822, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.barcode:before {
  content: "\E260";
}

/* line 825, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.pool:before {
  content: "\E261";
}

/* line 828, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.buoy:before {
  content: "\E262";
}

/* line 831, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.spade:before {
  content: "\E263";
}

/* line 834, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.bank:before {
  content: "\1F3E6";
}

/* line 837, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.vcard:before {
  content: "\E265";
}

/* line 840, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.electrical_plug:before {
  content: "\E266";
}

/* line 843, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.flag:before {
  content: "\E267";
}

/* line 846, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.credit_card:before {
  content: "\E268";
}

/* line 849, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.keyboard-wireless:before {
  content: "\E269";
}

/* line 852, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.keyboard-wired:before {
  content: "\E270";
}

/* line 855, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.shield:before {
  content: "\E271";
}

/* line 858, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.ring:before {
  content: "\02DA";
}

/* line 861, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.cake:before {
  content: "\E273";
}

/* line 864, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.drink:before {
  content: "\E274";
}

/* line 867, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.beer:before {
  content: "\E275";
}

/* line 870, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.fast_food:before {
  content: "\E276";
}

/* line 873, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.cutlery:before {
  content: "\E277";
}

/* line 876, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.pizza:before {
  content: "\E278";
}

/* line 879, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.birthday_cake:before {
  content: "\E279";
}

/* line 882, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.tablet:before {
  content: "\E280";
}

/* line 885, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.settings:before {
  content: "\E281";
}

/* line 888, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.bullets:before {
  content: "\E282";
}

/* line 891, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.cardio:before {
  content: "\E283";
}

/* line 894, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.t-shirt:before {
  content: "\E284";
}

/* line 897, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.pants:before {
  content: "\E285";
}

/* line 900, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.sweater:before {
  content: "\E286";
}

/* line 903, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.fabric:before {
  content: "\E287";
}

/* line 906, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.leather:before {
  content: "\E288";
}

/* line 909, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.scissors:before {
  content: "\E289";
}

/* line 912, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.bomb:before {
  content: "\1F4A3";
}

/* line 915, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.skull:before {
  content: "\1F480";
}

/* line 918, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.celebration:before {
  content: "\E292";
}

/* line 921, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.tea_kettle:before {
  content: "\E293";
}

/* line 924, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.french_press:before {
  content: "\E294";
}

/* line 927, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.coffe_cup:before {
  content: "\E295";
}

/* line 930, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.pot:before {
  content: "\E296";
}

/* line 933, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.grater:before {
  content: "\E297";
}

/* line 936, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.kettle:before {
  content: "\E298";
}

/* line 939, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.hospital:before {
  content: "\1F3E5";
}

/* line 942, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.hospital_h:before {
  content: "\E300";
}

/* line 945, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.microphone:before {
  content: "\1F3A4";
}

/* line 948, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.webcam:before {
  content: "\E302";
}

/* line 951, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.temple_christianity_church:before {
  content: "\E303";
}

/* line 954, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.temple_islam:before {
  content: "\E304";
}

/* line 957, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.temple_hindu:before {
  content: "\E305";
}

/* line 960, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.temple_buddhist:before {
  content: "\E306";
}

/* line 963, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.bicycle:before {
  content: "\1F6B2";
}

/* line 966, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.life_preserver:before {
  content: "\E308";
}

/* line 969, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.share_alt:before {
  content: "\E309";
}

/* line 972, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.comments:before {
  content: "\E310";
}

/* line 975, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.flower:before {
  content: "\2698";
}

/* line 978, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.baseball:before {
  content: "\26BE";
}

/* line 981, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.rugby:before {
  content: "\E313";
}

/* line 984, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.ax:before {
  content: "\E314";
}

/* line 987, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.table_tennis:before {
  content: "\E315";
}

/* line 990, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.bowling:before {
  content: "\1F3B3";
}

/* line 993, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.tree_conifer:before {
  content: "\E317";
}

/* line 996, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.tree_deciduous:before {
  content: "\E318";
}

/* line 999, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.more_items:before {
  content: "\E319";
}

/* line 1002, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.sort:before {
  content: "\E320";
}

/* line 1005, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.filter:before {
  content: "\E321";
}

/* line 1008, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.gamepad:before {
  content: "\E322";
}

/* line 1011, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.playing_dices:before {
  content: "\E323";
}

/* line 1014, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.calculator:before {
  content: "\E324";
}

/* line 1017, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.tie:before {
  content: "\E325";
}

/* line 1020, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.wallet:before {
  content: "\E326";
}

/* line 1023, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.piano:before {
  content: "\E327";
}

/* line 1026, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.sampler:before {
  content: "\E328";
}

/* line 1029, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.podium:before {
  content: "\E329";
}

/* line 1032, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.soccer_ball:before {
  content: "\E330";
}

/* line 1035, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.blog:before {
  content: "\E331";
}

/* line 1038, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.dashboard:before {
  content: "\E332";
}

/* line 1041, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.certificate:before {
  content: "\E333";
}

/* line 1044, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.bell:before {
  content: "\1F514";
}

/* line 1047, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.candle:before {
  content: "\E335";
}

/* line 1050, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.pushpin:before {
  content: "\1F4CC";
}

/* line 1053, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.iphone_shake:before {
  content: "\E337";
}

/* line 1056, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.pin_flag:before {
  content: "\E338";
}

/* line 1059, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.turtle:before {
  content: "\1F422";
}

/* line 1062, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.rabbit:before {
  content: "\1F407";
}

/* line 1065, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.globe:before {
  content: "\E341";
}

/* line 1068, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.briefcase:before {
  content: "\1F4BC";
}

/* line 1071, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.hdd:before {
  content: "\E343";
}

/* line 1074, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.thumbs_up:before {
  content: "\E344";
}

/* line 1077, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.thumbs_down:before {
  content: "\E345";
}

/* line 1080, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.hand_right:before {
  content: "\E346";
}

/* line 1083, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.hand_left:before {
  content: "\E347";
}

/* line 1086, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.hand_up:before {
  content: "\E348";
}

/* line 1089, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.hand_down:before {
  content: "\E349";
}

/* line 1092, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.fullscreen:before {
  content: "\E350";
}

/* line 1095, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.shopping_bag:before {
  content: "\E351";
}

/* line 1098, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.book_open:before {
  content: "\E352";
}

/* line 1101, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.nameplate:before {
  content: "\E353";
}

/* line 1104, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.nameplate_alt:before {
  content: "\E354";
}

/* line 1107, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.vases:before {
  content: "\E355";
}

/* line 1110, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.bullhorn:before {
  content: "\E356";
}

/* line 1113, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.dumbbell:before {
  content: "\E357";
}

/* line 1116, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.suitcase:before {
  content: "\E358";
}

/* line 1119, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.file_import:before {
  content: "\E359";
}

/* line 1122, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.file_export:before {
  content: "\E360";
}

/* line 1125, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.bug:before {
  content: "\1F41B";
}

/* line 1128, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.crown:before {
  content: "\1F451";
}

/* line 1131, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.smoking:before {
  content: "\E363";
}

/* line 1134, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.cloud-upload:before {
  content: "\E364";
}

/* line 1137, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.cloud-download:before {
  content: "\E365";
}

/* line 1140, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.restart:before {
  content: "\E366";
}

/* line 1143, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.security_camera:before {
  content: "\E367";
}

/* line 1146, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.expand:before {
  content: "\E368";
}

/* line 1149, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.collapse:before {
  content: "\E369";
}

/* line 1152, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.collapse_top:before {
  content: "\E370";
}

/* line 1155, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.globe_af:before {
  content: "\E371";
}

/* line 1158, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.global:before {
  content: "\E372";
}

/* line 1161, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.spray:before {
  content: "\E373";
}

/* line 1164, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.nails:before {
  content: "\E374";
}

/* line 1167, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.claw_hammer:before {
  content: "\E375";
}

/* line 1170, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.classic_hammer:before {
  content: "\E376";
}

/* line 1173, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.hand_saw:before {
  content: "\E377";
}

/* line 1176, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.riflescope:before {
  content: "\E378";
}

/* line 1179, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.electrical_socket_eu:before {
  content: "\E379";
}

/* line 1182, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.electrical_socket_us:before {
  content: "\E380";
}

/* line 1185, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.message_forward:before {
  content: "\E381";
}

/* line 1188, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.coat_hanger:before {
  content: "\E382";
}

/* line 1191, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.dress:before {
  content: "\1F457";
}

/* line 1194, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.bathrobe:before {
  content: "\E384";
}

/* line 1197, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.shirt:before {
  content: "\E385";
}

/* line 1200, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.underwear:before {
  content: "\E386";
}

/* line 1203, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.log_in:before {
  content: "\E387";
}

/* line 1206, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.log_out:before {
  content: "\E388";
}

/* line 1209, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.exit:before {
  content: "\E389";
}

/* line 1212, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.new_window_alt:before {
  content: "\E390";
}

/* line 1215, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.video_sd:before {
  content: "\E391";
}

/* line 1218, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.video_hd:before {
  content: "\E392";
}

/* line 1221, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.subtitles:before {
  content: "\E393";
}

/* line 1224, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.sound_stereo:before {
  content: "\E394";
}

/* line 1227, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.sound_dolby:before {
  content: "\E395";
}

/* line 1230, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.sound_5_1:before {
  content: "\E396";
}

/* line 1233, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.sound_6_1:before {
  content: "\E397";
}

/* line 1236, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.sound_7_1:before {
  content: "\E398";
}

/* line 1239, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.copyright_mark:before {
  content: "\E399";
}

/* line 1242, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.registration_mark:before {
  content: "\E400";
}

/* line 1245, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.radar:before {
  content: "\E401";
}

/* line 1248, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.skateboard:before {
  content: "\E402";
}

/* line 1251, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.golf_course:before {
  content: "\E403";
}

/* line 1254, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.sorting:before {
  content: "\E404";
}

/* line 1257, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.sort-by-alphabet:before {
  content: "\E405";
}

/* line 1260, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.sort-by-alphabet-alt:before {
  content: "\E406";
}

/* line 1263, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.sort-by-order:before {
  content: "\E407";
}

/* line 1266, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.sort-by-order-alt:before {
  content: "\E408";
}

/* line 1269, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.sort-by-attributes:before {
  content: "\E409";
}

/* line 1272, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.sort-by-attributes-alt:before {
  content: "\E410";
}

/* line 1275, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.compressed:before {
  content: "\E411";
}

/* line 1278, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.package:before {
  content: "\1F4E6";
}

/* line 1281, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.cloud_plus:before {
  content: "\E413";
}

/* line 1284, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.cloud_minus:before {
  content: "\E414";
}

/* line 1287, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.disk_save:before {
  content: "\E415";
}

/* line 1290, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.disk_open:before {
  content: "\E416";
}

/* line 1293, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.disk_saved:before {
  content: "\E417";
}

/* line 1296, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.disk_remove:before {
  content: "\E418";
}

/* line 1299, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.disk_import:before {
  content: "\E419";
}

/* line 1302, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.disk_export:before {
  content: "\E420";
}

/* line 1305, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.tower:before {
  content: "\E421";
}

/* line 1308, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.send:before {
  content: "\E422";
}

/* line 1311, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.git_branch:before {
  content: "\E423";
}

/* line 1314, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.git_create:before {
  content: "\E424";
}

/* line 1317, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.git_private:before {
  content: "\E425";
}

/* line 1320, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.git_delete:before {
  content: "\E426";
}

/* line 1323, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.git_merge:before {
  content: "\E427";
}

/* line 1326, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.git_pull_request:before {
  content: "\E428";
}

/* line 1329, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.git_compare:before {
  content: "\E429";
}

/* line 1332, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.git_commit:before {
  content: "\E430";
}

/* line 1335, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.construction_cone:before {
  content: "\E431";
}

/* line 1338, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.shoe_steps:before {
  content: "\E432";
}

/* line 1341, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.plus:before {
  content: "\002B";
}

/* line 1344, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.minus:before {
  content: "\2212";
}

/* line 1347, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.redo:before {
  content: "\E435";
}

/* line 1350, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.undo:before {
  content: "\E436";
}

/* line 1353, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.golf:before {
  content: "\E437";
}

/* line 1356, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.hockey:before {
  content: "\E438";
}

/* line 1359, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.pipe:before {
  content: "\E439";
}

/* line 1362, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.wrench:before {
  content: "\1F527";
}

/* line 1365, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.folder_closed:before {
  content: "\E441";
}

/* line 1368, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.phone_alt:before {
  content: "\E442";
}

/* line 1371, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.earphone:before {
  content: "\E443";
}

/* line 1374, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.floppy_disk:before {
  content: "\E444";
}

/* line 1377, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.floppy_saved:before {
  content: "\E445";
}

/* line 1380, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.floppy_remove:before {
  content: "\E446";
}

/* line 1383, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.floppy_save:before {
  content: "\E447";
}

/* line 1386, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.floppy_open:before {
  content: "\E448";
}

/* line 1389, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.translate:before {
  content: "\E449";
}

/* line 1392, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.fax:before {
  content: "\E450";
}

/* line 1395, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.factory:before {
  content: "\1F3ED";
}

/* line 1398, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.shop_window:before {
  content: "\E452";
}

/* line 1401, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.shop:before {
  content: "\E453";
}

/* line 1404, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.kiosk:before {
  content: "\E454";
}

/* line 1407, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.kiosk_wheels:before {
  content: "\E455";
}

/* line 1410, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.kiosk_light:before {
  content: "\E456";
}

/* line 1413, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.kiosk_food:before {
  content: "\E457";
}

/* line 1416, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.transfer:before {
  content: "\E458";
}

/* line 1419, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.money:before {
  content: "\E459";
}

/* line 1422, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.header:before {
  content: "\E460";
}

/* line 1425, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.blacksmith:before {
  content: "\E461";
}

/* line 1428, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.saw_blade:before {
  content: "\E462";
}

/* line 1431, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.basketball:before {
  content: "\E463";
}

/* line 1434, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.server:before {
  content: "\E464";
}

/* line 1437, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.server_plus:before {
  content: "\E465";
}

/* line 1440, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.server_minus:before {
  content: "\E466";
}

/* line 1443, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.server_ban:before {
  content: "\E467";
}

/* line 1446, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.server_flag:before {
  content: "\E468";
}

/* line 1449, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.server_lock:before {
  content: "\E469";
}

/* line 1452, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons.server_new:before {
  content: "\E470";
}

/* line 1457, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon {
  display: inline-block;
  width: 48px;
  height: 48px;
  margin: 0 8px 0 0;
  line-height: 14px;
  vertical-align: text-top;
  background-image: url(/assets/simpliq/glyphicons-38ff853ad6236a78afbfb84e2266984ae5b5a5973c6930658c8dade6f73e9003.svg);
  background-position: 0 0;
  background-repeat: no-repeat;
  vertical-align: top;
  *display: inline;
  *zoom: 1;
  *margin-right: .3em;
  background-image: url(/assets/simpliq/glyphicons-0ebd9c2810982074b5fb56b0b5f63281003d5e4a9f825a9f450f5c77d3e6d747.png);
}

/* line 1471, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon _:-o-prefocus {
  background-image: url(/assets/simpliq/glyphicons-0ebd9c2810982074b5fb56b0b5f63281003d5e4a9f825a9f450f5c77d3e6d747.png);
}

/* line 1477, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.no-inlinesvg .glyphicons-icon {
  background-image: url(/assets/simpliq/glyphicons-0ebd9c2810982074b5fb56b0b5f63281003d5e4a9f825a9f450f5c77d3e6d747.png);
}

/* line 1481, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.white {
  background-image: url(/assets/simpliq/glyphicons-white-6f3c53c089eb10c0b6ac38b939572034ef3fd478cc32e39d7205acb53de76207.svg);
  background-image: url(/assets/simpliq/glyphicons-white-3d1752cf3bc3b97b192da54ad544a5e35ed084c528878732d8995b82169effa4.png);
}

/* line 1483, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.white _:-o-prefocus {
  background-image: url(/assets/simpliq/glyphicons-white-3d1752cf3bc3b97b192da54ad544a5e35ed084c528878732d8995b82169effa4.png);
}

/* line 1489, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.no-inlinesvg .glyphicons-icon.white {
  background-image: url(/assets/simpliq/glyphicons-white-3d1752cf3bc3b97b192da54ad544a5e35ed084c528878732d8995b82169effa4.png);
}

/* line 1494, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.glass {
  background-position: 4px 11px;
}

/* line 1497, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.leaf {
  background-position: -44px 11px;
}

/* line 1500, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.dog {
  background-position: -92px 11px;
}

/* line 1503, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.user {
  background-position: -140px 11px;
}

/* line 1506, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.girl {
  background-position: -188px 11px;
}

/* line 1509, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.car {
  background-position: -236px 11px;
}

/* line 1512, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.user_add {
  background-position: -284px 11px;
}

/* line 1515, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.user_remove {
  background-position: -332px 11px;
}

/* line 1518, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.film {
  background-position: -380px 11px;
}

/* line 1521, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.magic {
  background-position: -428px 11px;
}

/* line 1524, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.envelope {
  background-position: 4px -37px;
}

/* line 1527, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.camera {
  background-position: -44px -37px;
}

/* line 1530, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.heart {
  background-position: -92px -37px;
}

/* line 1533, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.beach_umbrella {
  background-position: -140px -37px;
}

/* line 1536, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.train {
  background-position: -188px -37px;
}

/* line 1539, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.print {
  background-position: -236px -37px;
}

/* line 1542, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.bin {
  background-position: -284px -37px;
}

/* line 1545, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.music {
  background-position: -332px -37px;
}

/* line 1548, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.note {
  background-position: -380px -37px;
}

/* line 1551, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.heart_empty {
  background-position: -428px -37px;
}

/* line 1554, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.home {
  background-position: 4px -85px;
}

/* line 1557, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.snowflake {
  background-position: -44px -85px;
}

/* line 1560, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.fire {
  background-position: -92px -85px;
}

/* line 1563, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.magnet {
  background-position: -140px -85px;
}

/* line 1566, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.parents {
  background-position: -188px -85px;
}

/* line 1569, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.binoculars {
  background-position: -236px -85px;
}

/* line 1572, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.road {
  background-position: -284px -85px;
}

/* line 1575, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.search {
  background-position: -332px -85px;
}

/* line 1578, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.cars {
  background-position: -380px -85px;
}

/* line 1581, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.notes_2 {
  background-position: -428px -85px;
}

/* line 1584, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.pencil {
  background-position: 4px -133px;
}

/* line 1587, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.bus {
  background-position: -44px -133px;
}

/* line 1590, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.wifi_alt {
  background-position: -92px -133px;
}

/* line 1593, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.luggage {
  background-position: -140px -133px;
}

/* line 1596, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.old_man {
  background-position: -188px -133px;
}

/* line 1599, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.woman {
  background-position: -236px -133px;
}

/* line 1602, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.file {
  background-position: -284px -133px;
}

/* line 1605, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.coins {
  background-position: -332px -133px;
}

/* line 1608, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.airplane {
  background-position: -380px -133px;
}

/* line 1611, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.notes {
  background-position: -428px -133px;
}

/* line 1614, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.stats {
  background-position: 4px -181px;
}

/* line 1617, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.charts {
  background-position: -44px -181px;
}

/* line 1620, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.pie_chart {
  background-position: -92px -181px;
}

/* line 1623, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.group {
  background-position: -140px -181px;
}

/* line 1626, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.keys {
  background-position: -188px -181px;
}

/* line 1629, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.calendar {
  background-position: -236px -181px;
}

/* line 1632, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.router {
  background-position: -284px -181px;
}

/* line 1635, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.camera_small {
  background-position: -332px -181px;
}

/* line 1638, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.dislikes {
  background-position: -380px -181px;
}

/* line 1641, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.star {
  background-position: -428px -181px;
}

/* line 1644, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.link {
  background-position: 4px -229px;
}

/* line 1647, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.eye_open {
  background-position: -44px -229px;
}

/* line 1650, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.eye_close {
  background-position: -92px -229px;
}

/* line 1653, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.alarm {
  background-position: -140px -229px;
}

/* line 1656, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.clock {
  background-position: -188px -229px;
}

/* line 1659, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.stopwatch {
  background-position: -236px -229px;
}

/* line 1662, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.projector {
  background-position: -284px -229px;
}

/* line 1665, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.history {
  background-position: -332px -229px;
}

/* line 1668, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.truck {
  background-position: -380px -229px;
}

/* line 1671, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.cargo {
  background-position: -428px -229px;
}

/* line 1674, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.compass {
  background-position: 4px -277px;
}

/* line 1677, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.keynote {
  background-position: -44px -277px;
}

/* line 1680, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.paperclip {
  background-position: -92px -277px;
}

/* line 1683, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.power {
  background-position: -140px -277px;
}

/* line 1686, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.lightbulb {
  background-position: -188px -277px;
}

/* line 1689, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.tag {
  background-position: -236px -277px;
}

/* line 1692, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.tags {
  background-position: -284px -277px;
}

/* line 1695, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.cleaning {
  background-position: -332px -277px;
}

/* line 1698, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.ruller {
  background-position: -380px -277px;
}

/* line 1701, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.gift {
  background-position: -428px -277px;
}

/* line 1704, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.umbrella {
  background-position: 4px -325px;
}

/* line 1707, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.book {
  background-position: -44px -325px;
}

/* line 1710, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.bookmark {
  background-position: -92px -325px;
}

/* line 1713, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.wifi {
  background-position: -140px -325px;
}

/* line 1716, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.cup {
  background-position: -188px -325px;
}

/* line 1719, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.stroller {
  background-position: -236px -325px;
}

/* line 1722, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.headphones {
  background-position: -284px -325px;
}

/* line 1725, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.headset {
  background-position: -332px -325px;
}

/* line 1728, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.warning_sign {
  background-position: -380px -325px;
}

/* line 1731, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.signal {
  background-position: -428px -325px;
}

/* line 1734, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.retweet {
  background-position: 4px -373px;
}

/* line 1737, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.refresh {
  background-position: -44px -373px;
}

/* line 1740, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.roundabout {
  background-position: -92px -373px;
}

/* line 1743, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.random {
  background-position: -140px -373px;
}

/* line 1746, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.heat {
  background-position: -188px -373px;
}

/* line 1749, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.repeat {
  background-position: -236px -373px;
}

/* line 1752, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.display {
  background-position: -284px -373px;
}

/* line 1755, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.log_book {
  background-position: -332px -373px;
}

/* line 1758, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.address_book {
  background-position: -380px -373px;
}

/* line 1761, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.building {
  background-position: -428px -373px;
}

/* line 1764, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.eyedropper {
  background-position: 4px -421px;
}

/* line 1767, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.adjust {
  background-position: -44px -421px;
}

/* line 1770, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.tint {
  background-position: -92px -421px;
}

/* line 1773, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.crop {
  background-position: -140px -421px;
}

/* line 1776, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.vector_path_square {
  background-position: -188px -421px;
}

/* line 1779, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.vector_path_circle {
  background-position: -236px -421px;
}

/* line 1782, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.vector_path_polygon {
  background-position: -284px -421px;
}

/* line 1785, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.vector_path_line {
  background-position: -332px -421px;
}

/* line 1788, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.vector_path_curve {
  background-position: -380px -421px;
}

/* line 1791, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.vector_path_all {
  background-position: -428px -421px;
}

/* line 1794, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.font {
  background-position: 4px -469px;
}

/* line 1797, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.italic {
  background-position: -44px -469px;
}

/* line 1800, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.bold {
  background-position: -92px -469px;
}

/* line 1803, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.text_underline {
  background-position: -140px -469px;
}

/* line 1806, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.text_strike {
  background-position: -188px -469px;
}

/* line 1809, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.text_height {
  background-position: -236px -469px;
}

/* line 1812, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.text_width {
  background-position: -284px -469px;
}

/* line 1815, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.text_resize {
  background-position: -332px -469px;
}

/* line 1818, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.left_indent {
  background-position: -380px -469px;
}

/* line 1821, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.right_indent {
  background-position: -428px -469px;
}

/* line 1824, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.align_left {
  background-position: 4px -517px;
}

/* line 1827, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.align_center {
  background-position: -44px -517px;
}

/* line 1830, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.align_right {
  background-position: -92px -517px;
}

/* line 1833, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.justify {
  background-position: -140px -517px;
}

/* line 1836, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.list {
  background-position: -188px -517px;
}

/* line 1839, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.text_smaller {
  background-position: -236px -517px;
}

/* line 1842, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.text_bigger {
  background-position: -284px -517px;
}

/* line 1845, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.embed {
  background-position: -332px -517px;
}

/* line 1848, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.embed_close {
  background-position: -380px -517px;
}

/* line 1851, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.table {
  background-position: -428px -517px;
}

/* line 1854, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.message_full {
  background-position: 4px -565px;
}

/* line 1857, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.message_empty {
  background-position: -44px -565px;
}

/* line 1860, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.message_in {
  background-position: -92px -565px;
}

/* line 1863, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.message_out {
  background-position: -140px -565px;
}

/* line 1866, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.message_plus {
  background-position: -188px -565px;
}

/* line 1869, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.message_minus {
  background-position: -236px -565px;
}

/* line 1872, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.message_ban {
  background-position: -284px -565px;
}

/* line 1875, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.message_flag {
  background-position: -332px -565px;
}

/* line 1878, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.message_lock {
  background-position: -380px -565px;
}

/* line 1881, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.message_new {
  background-position: -428px -565px;
}

/* line 1884, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.inbox {
  background-position: 4px -613px;
}

/* line 1887, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.inbox_plus {
  background-position: -44px -613px;
}

/* line 1890, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.inbox_minus {
  background-position: -92px -613px;
}

/* line 1893, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.inbox_lock {
  background-position: -140px -613px;
}

/* line 1896, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.inbox_in {
  background-position: -188px -613px;
}

/* line 1899, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.inbox_out {
  background-position: -236px -613px;
}

/* line 1902, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.cogwheel {
  background-position: -284px -613px;
}

/* line 1905, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.cogwheels {
  background-position: -332px -613px;
}

/* line 1908, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.picture {
  background-position: -380px -613px;
}

/* line 1911, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.adjust_alt {
  background-position: -428px -613px;
}

/* line 1914, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.database_lock {
  background-position: 4px -661px;
}

/* line 1917, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.database_plus {
  background-position: -44px -661px;
}

/* line 1920, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.database_minus {
  background-position: -92px -661px;
}

/* line 1923, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.database_ban {
  background-position: -140px -661px;
}

/* line 1926, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.folder_open {
  background-position: -188px -661px;
}

/* line 1929, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.folder_plus {
  background-position: -236px -661px;
}

/* line 1932, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.folder_minus {
  background-position: -284px -661px;
}

/* line 1935, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.folder_lock {
  background-position: -332px -661px;
}

/* line 1938, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.folder_flag {
  background-position: -380px -661px;
}

/* line 1941, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.folder_new {
  background-position: -428px -661px;
}

/* line 1944, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.edit {
  background-position: 4px -709px;
}

/* line 1947, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.new_window {
  background-position: -44px -709px;
}

/* line 1950, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.check {
  background-position: -92px -709px;
}

/* line 1953, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.unchecked {
  background-position: -140px -709px;
}

/* line 1956, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.more_windows {
  background-position: -188px -709px;
}

/* line 1959, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.show_big_thumbnails {
  background-position: -236px -709px;
}

/* line 1962, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.show_thumbnails {
  background-position: -284px -709px;
}

/* line 1965, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.show_thumbnails_with_lines {
  background-position: -332px -709px;
}

/* line 1968, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.show_lines {
  background-position: -380px -709px;
}

/* line 1971, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.playlist {
  background-position: -428px -709px;
}

/* line 1974, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.imac {
  background-position: 4px -757px;
}

/* line 1977, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.macbook {
  background-position: -44px -757px;
}

/* line 1980, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.ipad {
  background-position: -92px -757px;
}

/* line 1983, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.iphone {
  background-position: -140px -757px;
}

/* line 1986, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.iphone_transfer {
  background-position: -188px -757px;
}

/* line 1989, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.iphone_exchange {
  background-position: -236px -757px;
}

/* line 1992, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.ipod {
  background-position: -284px -757px;
}

/* line 1995, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.ipod_shuffle {
  background-position: -332px -757px;
}

/* line 1998, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.ear_plugs {
  background-position: -380px -757px;
}

/* line 2001, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.record {
  background-position: -428px -757px;
}

/* line 2004, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.step_backward {
  background-position: 4px -805px;
}

/* line 2007, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.fast_backward {
  background-position: -44px -805px;
}

/* line 2010, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.rewind {
  background-position: -92px -805px;
}

/* line 2013, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.play {
  background-position: -140px -805px;
}

/* line 2016, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.pause {
  background-position: -188px -805px;
}

/* line 2019, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.stop {
  background-position: -236px -805px;
}

/* line 2022, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.forward {
  background-position: -284px -805px;
}

/* line 2025, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.fast_forward {
  background-position: -332px -805px;
}

/* line 2028, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.step_forward {
  background-position: -380px -805px;
}

/* line 2031, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.eject {
  background-position: -428px -805px;
}

/* line 2034, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.facetime_video {
  background-position: 4px -853px;
}

/* line 2037, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.download_alt {
  background-position: -44px -853px;
}

/* line 2040, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.mute {
  background-position: -92px -853px;
}

/* line 2043, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.volume_down {
  background-position: -140px -853px;
}

/* line 2046, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.volume_up {
  background-position: -188px -853px;
}

/* line 2049, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.screenshot {
  background-position: -236px -853px;
}

/* line 2052, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.move {
  background-position: -284px -853px;
}

/* line 2055, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.more {
  background-position: -332px -853px;
}

/* line 2058, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.brightness_reduce {
  background-position: -380px -853px;
}

/* line 2061, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.brightness_increase {
  background-position: -428px -853px;
}

/* line 2064, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.circle_plus {
  background-position: 4px -901px;
}

/* line 2067, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.circle_minus {
  background-position: -44px -901px;
}

/* line 2070, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.circle_remove {
  background-position: -92px -901px;
}

/* line 2073, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.circle_ok {
  background-position: -140px -901px;
}

/* line 2076, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.circle_question_mark {
  background-position: -188px -901px;
}

/* line 2079, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.circle_info {
  background-position: -236px -901px;
}

/* line 2082, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.circle_exclamation_mark {
  background-position: -284px -901px;
}

/* line 2085, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.remove {
  background-position: -332px -901px;
}

/* line 2088, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.ok {
  background-position: -380px -901px;
}

/* line 2091, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.ban {
  background-position: -428px -901px;
}

/* line 2094, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.download {
  background-position: 4px -949px;
}

/* line 2097, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.upload {
  background-position: -44px -949px;
}

/* line 2100, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.shopping_cart {
  background-position: -92px -949px;
}

/* line 2103, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.lock {
  background-position: -140px -949px;
}

/* line 2106, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.unlock {
  background-position: -188px -949px;
}

/* line 2109, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.electricity {
  background-position: -236px -949px;
}

/* line 2112, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.ok_2 {
  background-position: -284px -949px;
}

/* line 2115, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.remove_2 {
  background-position: -332px -949px;
}

/* line 2118, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.cart_out {
  background-position: -380px -949px;
}

/* line 2121, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.cart_in {
  background-position: -428px -949px;
}

/* line 2124, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.left_arrow {
  background-position: 4px -997px;
}

/* line 2127, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.right_arrow {
  background-position: -44px -997px;
}

/* line 2130, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.down_arrow {
  background-position: -92px -997px;
}

/* line 2133, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.up_arrow {
  background-position: -140px -997px;
}

/* line 2136, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.resize_small {
  background-position: -188px -997px;
}

/* line 2139, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.resize_full {
  background-position: -236px -997px;
}

/* line 2142, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.circle_arrow_left {
  background-position: -284px -997px;
}

/* line 2145, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.circle_arrow_right {
  background-position: -332px -997px;
}

/* line 2148, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.circle_arrow_top {
  background-position: -380px -997px;
}

/* line 2151, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.circle_arrow_down {
  background-position: -428px -997px;
}

/* line 2154, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.play_button {
  background-position: 4px -1045px;
}

/* line 2157, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.unshare {
  background-position: -44px -1045px;
}

/* line 2160, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.share {
  background-position: -92px -1045px;
}

/* line 2163, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.chevron-right {
  background-position: -140px -1045px;
}

/* line 2166, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.chevron-left {
  background-position: -188px -1045px;
}

/* line 2169, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.bluetooth {
  background-position: -236px -1045px;
}

/* line 2172, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.euro {
  background-position: -284px -1045px;
}

/* line 2175, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.usd {
  background-position: -332px -1045px;
}

/* line 2178, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.gbp {
  background-position: -380px -1045px;
}

/* line 2181, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.retweet_2 {
  background-position: -428px -1045px;
}

/* line 2184, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.moon {
  background-position: 4px -1093px;
}

/* line 2187, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.sun {
  background-position: -44px -1093px;
}

/* line 2190, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.cloud {
  background-position: -92px -1093px;
}

/* line 2193, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.direction {
  background-position: -140px -1093px;
}

/* line 2196, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.brush {
  background-position: -188px -1093px;
}

/* line 2199, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.pen {
  background-position: -236px -1093px;
}

/* line 2202, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.zoom_in {
  background-position: -284px -1093px;
}

/* line 2205, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.zoom_out {
  background-position: -332px -1093px;
}

/* line 2208, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.pin {
  background-position: -380px -1093px;
}

/* line 2211, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.albums {
  background-position: -428px -1093px;
}

/* line 2214, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.rotation_lock {
  background-position: 4px -1141px;
}

/* line 2217, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.flash {
  background-position: -44px -1141px;
}

/* line 2220, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.google_maps {
  background-position: -92px -1141px;
}

/* line 2223, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.anchor {
  background-position: -140px -1141px;
}

/* line 2226, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.conversation {
  background-position: -188px -1141px;
}

/* line 2229, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.chat {
  background-position: -236px -1141px;
}

/* line 2232, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.male {
  background-position: -284px -1141px;
}

/* line 2235, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.female {
  background-position: -332px -1141px;
}

/* line 2238, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.asterisk {
  background-position: -380px -1141px;
}

/* line 2241, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.divide {
  background-position: -428px -1141px;
}

/* line 2244, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.snorkel_diving {
  background-position: 4px -1189px;
}

/* line 2247, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.scuba_diving {
  background-position: -44px -1189px;
}

/* line 2250, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.oxygen_bottle {
  background-position: -92px -1189px;
}

/* line 2253, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.fins {
  background-position: -140px -1189px;
}

/* line 2256, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.fishes {
  background-position: -188px -1189px;
}

/* line 2259, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.boat {
  background-position: -236px -1189px;
}

/* line 2262, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.delete {
  background-position: -284px -1189px;
}

/* line 2265, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.sheriffs_star {
  background-position: -332px -1189px;
}

/* line 2268, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.qrcode {
  background-position: -380px -1189px;
}

/* line 2271, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.barcode {
  background-position: -428px -1189px;
}

/* line 2274, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.pool {
  background-position: 4px -1237px;
}

/* line 2277, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.buoy {
  background-position: -44px -1237px;
}

/* line 2280, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.spade {
  background-position: -92px -1237px;
}

/* line 2283, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.bank {
  background-position: -140px -1237px;
}

/* line 2286, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.vcard {
  background-position: -188px -1237px;
}

/* line 2289, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.electrical_plug {
  background-position: -236px -1237px;
}

/* line 2292, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.flag {
  background-position: -284px -1237px;
}

/* line 2295, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.credit_card {
  background-position: -332px -1237px;
}

/* line 2298, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.keyboard-wireless {
  background-position: -380px -1237px;
}

/* line 2301, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.keyboard-wired {
  background-position: -428px -1237px;
}

/* line 2304, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.shield {
  background-position: 4px -1285px;
}

/* line 2307, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.ring {
  background-position: -44px -1285px;
}

/* line 2310, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.cake {
  background-position: -92px -1285px;
}

/* line 2313, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.drink {
  background-position: -140px -1285px;
}

/* line 2316, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.beer {
  background-position: -188px -1285px;
}

/* line 2319, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.fast_food {
  background-position: -236px -1285px;
}

/* line 2322, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.cutlery {
  background-position: -284px -1285px;
}

/* line 2325, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.pizza {
  background-position: -332px -1285px;
}

/* line 2328, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.birthday_cake {
  background-position: -380px -1285px;
}

/* line 2331, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.tablet {
  background-position: -428px -1285px;
}

/* line 2334, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.settings {
  background-position: 4px -1333px;
}

/* line 2337, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.bullets {
  background-position: -44px -1333px;
}

/* line 2340, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.cardio {
  background-position: -92px -1333px;
}

/* line 2343, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.t-shirt {
  background-position: -140px -1333px;
}

/* line 2346, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.pants {
  background-position: -188px -1333px;
}

/* line 2349, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.sweater {
  background-position: -236px -1333px;
}

/* line 2352, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.fabric {
  background-position: -284px -1333px;
}

/* line 2355, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.leather {
  background-position: -332px -1333px;
}

/* line 2358, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.scissors {
  background-position: -380px -1333px;
}

/* line 2361, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.bomb {
  background-position: -428px -1333px;
}

/* line 2364, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.skull {
  background-position: 4px -1381px;
}

/* line 2367, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.celebration {
  background-position: -44px -1381px;
}

/* line 2370, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.tea_kettle {
  background-position: -92px -1381px;
}

/* line 2373, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.french_press {
  background-position: -140px -1381px;
}

/* line 2376, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.coffe_cup {
  background-position: -188px -1381px;
}

/* line 2379, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.pot {
  background-position: -236px -1381px;
}

/* line 2382, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.grater {
  background-position: -284px -1381px;
}

/* line 2385, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.kettle {
  background-position: -332px -1381px;
}

/* line 2388, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.hospital {
  background-position: -380px -1381px;
}

/* line 2391, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.hospital_h {
  background-position: -428px -1381px;
}

/* line 2394, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.microphone {
  background-position: 4px -1429px;
}

/* line 2397, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.webcam {
  background-position: -44px -1429px;
}

/* line 2400, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.temple_christianity_church {
  background-position: -92px -1429px;
}

/* line 2403, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.temple_islam {
  background-position: -140px -1429px;
}

/* line 2406, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.temple_hindu {
  background-position: -188px -1429px;
}

/* line 2409, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.temple_buddhist {
  background-position: -236px -1429px;
}

/* line 2412, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.bicycle {
  background-position: -284px -1429px;
}

/* line 2415, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.life_preserver {
  background-position: -332px -1429px;
}

/* line 2418, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.share_alt {
  background-position: -380px -1429px;
}

/* line 2421, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.comments {
  background-position: -428px -1429px;
}

/* line 2424, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.flower {
  background-position: 4px -1477px;
}

/* line 2427, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.baseball {
  background-position: -44px -1477px;
}

/* line 2430, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.rugby {
  background-position: -92px -1477px;
}

/* line 2433, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.ax {
  background-position: -140px -1477px;
}

/* line 2436, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.table_tennis {
  background-position: -188px -1477px;
}

/* line 2439, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.bowling {
  background-position: -236px -1477px;
}

/* line 2442, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.tree_conifer {
  background-position: -284px -1477px;
}

/* line 2445, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.tree_deciduous {
  background-position: -332px -1477px;
}

/* line 2448, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.more_items {
  background-position: -380px -1477px;
}

/* line 2451, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.sort {
  background-position: -428px -1477px;
}

/* line 2454, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.filter {
  background-position: 4px -1525px;
}

/* line 2457, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.gamepad {
  background-position: -44px -1525px;
}

/* line 2460, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.playing_dices {
  background-position: -92px -1525px;
}

/* line 2463, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.calculator {
  background-position: -140px -1525px;
}

/* line 2466, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.tie {
  background-position: -188px -1525px;
}

/* line 2469, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.wallet {
  background-position: -236px -1525px;
}

/* line 2472, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.piano {
  background-position: -284px -1525px;
}

/* line 2475, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.sampler {
  background-position: -332px -1525px;
}

/* line 2478, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.podium {
  background-position: -380px -1525px;
}

/* line 2481, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.soccer_ball {
  background-position: -428px -1525px;
}

/* line 2484, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.blog {
  background-position: 4px -1573px;
}

/* line 2487, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.dashboard {
  background-position: -44px -1573px;
}

/* line 2490, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.certificate {
  background-position: -92px -1573px;
}

/* line 2493, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.bell {
  background-position: -140px -1573px;
}

/* line 2496, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.candle {
  background-position: -188px -1573px;
}

/* line 2499, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.pushpin {
  background-position: -236px -1573px;
}

/* line 2502, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.iphone_shake {
  background-position: -284px -1573px;
}

/* line 2505, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.pin_flag {
  background-position: -332px -1573px;
}

/* line 2508, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.turtle {
  background-position: -380px -1573px;
}

/* line 2511, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.rabbit {
  background-position: -428px -1573px;
}

/* line 2514, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.globe {
  background-position: 4px -1621px;
}

/* line 2517, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.briefcase {
  background-position: -44px -1621px;
}

/* line 2520, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.hdd {
  background-position: -92px -1621px;
}

/* line 2523, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.thumbs_up {
  background-position: -140px -1621px;
}

/* line 2526, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.thumbs_down {
  background-position: -188px -1621px;
}

/* line 2529, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.hand_right {
  background-position: -236px -1621px;
}

/* line 2532, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.hand_left {
  background-position: -284px -1621px;
}

/* line 2535, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.hand_up {
  background-position: -332px -1621px;
}

/* line 2538, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.hand_down {
  background-position: -380px -1621px;
}

/* line 2541, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.fullscreen {
  background-position: -428px -1621px;
}

/* line 2544, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.shopping_bag {
  background-position: 4px -1669px;
}

/* line 2547, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.book_open {
  background-position: -44px -1669px;
}

/* line 2550, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.nameplate {
  background-position: -92px -1669px;
}

/* line 2553, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.nameplate_alt {
  background-position: -140px -1669px;
}

/* line 2556, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.vases {
  background-position: -188px -1669px;
}

/* line 2559, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.bullhorn {
  background-position: -236px -1669px;
}

/* line 2562, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.dumbbell {
  background-position: -284px -1669px;
}

/* line 2565, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.suitcase {
  background-position: -332px -1669px;
}

/* line 2568, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.file_import {
  background-position: -380px -1669px;
}

/* line 2571, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.file_export {
  background-position: -428px -1669px;
}

/* line 2574, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.bug {
  background-position: 4px -1717px;
}

/* line 2577, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.crown {
  background-position: -44px -1717px;
}

/* line 2580, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.smoking {
  background-position: -92px -1717px;
}

/* line 2583, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.cloud-upload {
  background-position: -140px -1717px;
}

/* line 2586, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.cloud-download {
  background-position: -188px -1717px;
}

/* line 2589, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.restart {
  background-position: -236px -1717px;
}

/* line 2592, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.security_camera {
  background-position: -284px -1717px;
}

/* line 2595, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.expand {
  background-position: -332px -1717px;
}

/* line 2598, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.collapse {
  background-position: -380px -1717px;
}

/* line 2601, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.collapse_top {
  background-position: -428px -1717px;
}

/* line 2604, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.globe_af {
  background-position: 4px -1765px;
}

/* line 2607, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.global {
  background-position: -44px -1765px;
}

/* line 2610, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.spray {
  background-position: -92px -1765px;
}

/* line 2613, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.nails {
  background-position: -140px -1765px;
}

/* line 2616, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.claw_hammer {
  background-position: -188px -1765px;
}

/* line 2619, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.classic_hammer {
  background-position: -236px -1765px;
}

/* line 2622, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.hand_saw {
  background-position: -284px -1765px;
}

/* line 2625, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.riflescope {
  background-position: -332px -1765px;
}

/* line 2628, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.electrical_socket_eu {
  background-position: -380px -1765px;
}

/* line 2631, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.electrical_socket_us {
  background-position: -428px -1765px;
}

/* line 2634, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.message_forward {
  background-position: 4px -1813px;
}

/* line 2637, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.coat_hanger {
  background-position: -44px -1813px;
}

/* line 2640, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.dress {
  background-position: -92px -1813px;
}

/* line 2643, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.bathrobe {
  background-position: -140px -1813px;
}

/* line 2646, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.shirt {
  background-position: -188px -1813px;
}

/* line 2649, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.underwear {
  background-position: -236px -1813px;
}

/* line 2652, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.log_in {
  background-position: -284px -1813px;
}

/* line 2655, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.log_out {
  background-position: -332px -1813px;
}

/* line 2658, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.exit {
  background-position: -380px -1813px;
}

/* line 2661, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.new_window_alt {
  background-position: -428px -1813px;
}

/* line 2664, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.video_sd {
  background-position: 4px -1861px;
}

/* line 2667, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.video_hd {
  background-position: -44px -1861px;
}

/* line 2670, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.subtitles {
  background-position: -92px -1861px;
}

/* line 2673, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.sound_stereo {
  background-position: -140px -1861px;
}

/* line 2676, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.sound_dolby {
  background-position: -188px -1861px;
}

/* line 2679, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.sound_5_1 {
  background-position: -236px -1861px;
}

/* line 2682, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.sound_6_1 {
  background-position: -284px -1861px;
}

/* line 2685, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.sound_7_1 {
  background-position: -332px -1861px;
}

/* line 2688, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.copyright_mark {
  background-position: -380px -1861px;
}

/* line 2691, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.registration_mark {
  background-position: -428px -1861px;
}

/* line 2694, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.radar {
  background-position: 4px -1909px;
}

/* line 2697, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.skateboard {
  background-position: -44px -1909px;
}

/* line 2700, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.golf_course {
  background-position: -92px -1909px;
}

/* line 2703, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.sorting {
  background-position: -140px -1909px;
}

/* line 2706, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.sort-by-alphabet {
  background-position: -188px -1909px;
}

/* line 2709, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.sort-by-alphabet-alt {
  background-position: -236px -1909px;
}

/* line 2712, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.sort-by-order {
  background-position: -284px -1909px;
}

/* line 2715, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.sort-by-order-alt {
  background-position: -332px -1909px;
}

/* line 2718, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.sort-by-attributes {
  background-position: -380px -1909px;
}

/* line 2721, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.sort-by-attributes-alt {
  background-position: -428px -1909px;
}

/* line 2724, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.compressed {
  background-position: 4px -1957px;
}

/* line 2727, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.package {
  background-position: -44px -1957px;
}

/* line 2730, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.cloud_plus {
  background-position: -92px -1957px;
}

/* line 2733, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.cloud_minus {
  background-position: -140px -1957px;
}

/* line 2736, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.disk_save {
  background-position: -188px -1957px;
}

/* line 2739, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.disk_open {
  background-position: -236px -1957px;
}

/* line 2742, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.disk_saved {
  background-position: -284px -1957px;
}

/* line 2745, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.disk_remove {
  background-position: -332px -1957px;
}

/* line 2748, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.disk_import {
  background-position: -380px -1957px;
}

/* line 2751, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.disk_export {
  background-position: -428px -1957px;
}

/* line 2754, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.tower {
  background-position: 4px -2005px;
}

/* line 2757, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.send {
  background-position: -44px -2005px;
}

/* line 2760, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.git_branch {
  background-position: -92px -2005px;
}

/* line 2763, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.git_create {
  background-position: -140px -2005px;
}

/* line 2766, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.git_private {
  background-position: -188px -2005px;
}

/* line 2769, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.git_delete {
  background-position: -236px -2005px;
}

/* line 2772, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.git_merge {
  background-position: -284px -2005px;
}

/* line 2775, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.git_pull_request {
  background-position: -332px -2005px;
}

/* line 2778, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.git_compare {
  background-position: -380px -2005px;
}

/* line 2781, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.git_commit {
  background-position: -428px -2005px;
}

/* line 2784, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.construction_cone {
  background-position: 4px -2053px;
}

/* line 2787, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.shoe_steps {
  background-position: -44px -2053px;
}

/* line 2790, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.plus {
  background-position: -92px -2053px;
}

/* line 2793, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.minus {
  background-position: -140px -2053px;
}

/* line 2796, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.redo {
  background-position: -188px -2053px;
}

/* line 2799, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.undo {
  background-position: -236px -2053px;
}

/* line 2802, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.golf {
  background-position: -284px -2053px;
}

/* line 2805, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.hockey {
  background-position: -332px -2053px;
}

/* line 2808, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.pipe {
  background-position: -380px -2053px;
}

/* line 2811, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.wrench {
  background-position: -428px -2053px;
}

/* line 2814, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.folder_closed {
  background-position: 4px -2101px;
}

/* line 2817, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.phone_alt {
  background-position: -44px -2101px;
}

/* line 2820, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.earphone {
  background-position: -92px -2101px;
}

/* line 2823, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.floppy_disk {
  background-position: -140px -2101px;
}

/* line 2826, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.floppy_saved {
  background-position: -188px -2101px;
}

/* line 2829, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.floppy_remove {
  background-position: -236px -2101px;
}

/* line 2832, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.floppy_save {
  background-position: -284px -2101px;
}

/* line 2835, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.floppy_open {
  background-position: -332px -2101px;
}

/* line 2838, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.translate {
  background-position: -380px -2101px;
}

/* line 2841, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.fax {
  background-position: -428px -2101px;
}

/* line 2844, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.factory {
  background-position: 4px -2149px;
}

/* line 2847, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.shop_window {
  background-position: -44px -2149px;
}

/* line 2850, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.shop {
  background-position: -92px -2149px;
}

/* line 2853, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.kiosk {
  background-position: -140px -2149px;
}

/* line 2856, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.kiosk_wheels {
  background-position: -188px -2149px;
}

/* line 2859, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.kiosk_light {
  background-position: -236px -2149px;
}

/* line 2862, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.kiosk_food {
  background-position: -284px -2149px;
}

/* line 2865, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.transfer {
  background-position: -332px -2149px;
}

/* line 2868, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.money {
  background-position: -380px -2149px;
}

/* line 2871, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.header {
  background-position: -428px -2149px;
}

/* line 2874, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.blacksmith {
  background-position: 4px -2197px;
}

/* line 2877, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.saw_blade {
  background-position: -44px -2197px;
}

/* line 2880, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.basketball {
  background-position: -92px -2197px;
}

/* line 2883, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.server {
  background-position: -140px -2197px;
}

/* line 2886, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.server_plus {
  background-position: -188px -2197px;
}

/* line 2889, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.server_minus {
  background-position: -236px -2197px;
}

/* line 2892, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.server_ban {
  background-position: -284px -2197px;
}

/* line 2895, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.server_flag {
  background-position: -332px -2197px;
}

/* line 2898, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.server_lock {
  background-position: -380px -2197px;
}

/* line 2901, vendor/assets/stylesheets/awesometheme/../simpliq/glyphicons.css.scss */
.glyphicons-icon.server_new {
  background-position: -428px -2197px;
}

/*!
 *
 *  Project:  GLYPHICONS HALFLINGS
 *  Author:   Jan Kovarik - www.glyphicons.com
 *  Twitter:  @glyphicons
 *
 */
@font-face {
  font-family: 'Glyphicons Halflings Regular';
  src: url(/assets/simpliq/glyphicons-halflings-regular-1bd313f3a6a08b484cb990866f28f706f04f52f983344a8e85e40999bdf35306.eot);
  src: url(/assets/simpliq/glyphicons-halflings-regular-1bd313f3a6a08b484cb990866f28f706f04f52f983344a8e85e40999bdf35306.eot?#iefix) format("embedded-opentype"), url(/assets/simpliq/glyphicons-halflings-regular-402579ed9f5f4cebc7c2f5d276d9e3567c7e266ac17624481fb456ef7b1f93b7.woff) format("woff"), url(/assets/simpliq/glyphicons-halflings-regular-ed7bdce7e3facea874da76aeb4cb0df3814ed76af8e04fca350de1794ac8cfb6.ttf) format("truetype"), url(/assets/simpliq/glyphicons-halflings-regular-864dc2d77436c30f5c7d2dfcde4d7be37f6ebc126d60de0a8f1156efa239b333.svg#glyphicons_halflingsregular) format("svg");
  font-weight: normal;
  font-style: normal;
}

/* line 17, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings {
  display: inline-block;
  position: relative;
  padding-left: 25px;
  color: #1d1d1b;
  text-decoration: none;
  *display: inline;
  *zoom: 1;
  vertical-align: middle;
}

/* line 26, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings:before {
  position: absolute;
  left: 0;
  top: 0;
  display: inline-block;
  margin: 0 5px 0 0;
  font: 12px / 1em "Glyphicons Halflings Regular";
  font-style: normal;
  font-weight: normal;
  color: #1d1d1b;
  *display: inline;
  *zoom: 1;
  vertical-align: middle;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
}

/* line 42, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.white:before {
  color: #fff;
}

/* line 45, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.glass:before {
  content: "\E001";
}

/* line 48, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.music:before {
  content: "\E002";
}

/* line 51, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.search:before {
  content: "\E003";
}

/* line 54, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.envelope:before {
  content: "\2709";
}

/* line 57, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.heart:before {
  content: "\E005";
}

/* line 60, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.star:before {
  content: "\E006";
}

/* line 63, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.star-empty:before {
  content: "\E007";
}

/* line 66, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.user:before {
  content: "\E008";
}

/* line 69, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.film:before {
  content: "\E009";
}

/* line 72, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.th-large:before {
  content: "\E010";
}

/* line 75, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.th:before {
  content: "\E011";
}

/* line 78, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.th-list:before {
  content: "\E012";
}

/* line 81, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.ok:before {
  content: "\E013";
}

/* line 84, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.remove:before {
  content: "\E014";
}

/* line 87, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.zoom-in:before {
  content: "\E015";
}

/* line 90, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.zoom-out:before {
  content: "\E016";
}

/* line 93, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.off:before {
  content: "\E017";
}

/* line 96, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.signal:before {
  content: "\E018";
}

/* line 99, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.cog:before {
  content: "\E019";
}

/* line 102, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.trash:before {
  content: "\E020";
}

/* line 105, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.home:before {
  content: "\E021";
}

/* line 108, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.file:before {
  content: "\E022";
}

/* line 111, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.time:before {
  content: "\E023";
}

/* line 114, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.road:before {
  content: "\E024";
}

/* line 117, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.download-alt:before {
  content: "\E025";
}

/* line 120, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.download:before {
  content: "\E026";
}

/* line 123, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.upload:before {
  content: "\E027";
}

/* line 126, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.inbox:before {
  content: "\E028";
}

/* line 129, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.play-circle:before {
  content: "\E029";
}

/* line 132, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.repeat:before {
  content: "\E030";
}

/* line 135, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.refresh:before {
  content: "\E031";
}

/* line 138, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.list-alt:before {
  content: "\E032";
}

/* line 141, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.lock:before {
  content: "\1F512";
}

/* line 144, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.flag:before {
  content: "\E034";
}

/* line 147, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.headphones:before {
  content: "\E035";
}

/* line 150, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.volume-off:before {
  content: "\E036";
}

/* line 153, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.volume-down:before {
  content: "\E037";
}

/* line 156, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.volume-up:before {
  content: "\E038";
}

/* line 159, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.qrcode:before {
  content: "\E039";
}

/* line 162, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.barcode:before {
  content: "\E040";
}

/* line 165, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.tag:before {
  content: "\E041";
}

/* line 168, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.tags:before {
  content: "\E042";
}

/* line 171, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.book:before {
  content: "\E043";
}

/* line 174, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.bookmark:before {
  content: "\1F516";
}

/* line 177, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.print:before {
  content: "\E045";
}

/* line 180, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.camera:before {
  content: "\1F4F7";
}

/* line 183, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.font:before {
  content: "\E047";
}

/* line 186, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.bold:before {
  content: "\E048";
}

/* line 189, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.italic:before {
  content: "\E049";
}

/* line 192, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.text-height:before {
  content: "\E050";
}

/* line 195, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.text-width:before {
  content: "\E051";
}

/* line 198, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.align-left:before {
  content: "\E052";
}

/* line 201, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.align-center:before {
  content: "\E053";
}

/* line 204, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.align-right:before {
  content: "\E054";
}

/* line 207, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.align-justify:before {
  content: "\E055";
}

/* line 210, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.list:before {
  content: "\E056";
}

/* line 213, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.indent-left:before {
  content: "\E057";
}

/* line 216, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.indent-right:before {
  content: "\E058";
}

/* line 219, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.facetime-video:before {
  content: "\E059";
}

/* line 222, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.picture:before {
  content: "\E060";
}

/* line 225, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.pencil:before {
  content: "\270F";
}

/* line 228, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.map-marker:before {
  content: "\E062";
}

/* line 231, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.adjust:before {
  content: "\E063";
}

/* line 234, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.tint:before {
  content: "\E064";
}

/* line 237, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.edit:before {
  content: "\E065";
}

/* line 240, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.share:before {
  content: "\E066";
}

/* line 243, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.check:before {
  content: "\E067";
}

/* line 246, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.move:before {
  content: "\E068";
}

/* line 249, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.step-backward:before {
  content: "\E069";
}

/* line 252, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.fast-backward:before {
  content: "\E070";
}

/* line 255, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.backward:before {
  content: "\E071";
}

/* line 258, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.play:before {
  content: "\E072";
}

/* line 261, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.pause:before {
  content: "\E073";
}

/* line 264, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.stop:before {
  content: "\E074";
}

/* line 267, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.forward:before {
  content: "\E075";
}

/* line 270, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.fast-forward:before {
  content: "\E076";
}

/* line 273, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.step-forward:before {
  content: "\E077";
}

/* line 276, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.eject:before {
  content: "\E078";
}

/* line 279, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.chevron-left:before {
  content: "\E079";
}

/* line 282, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.chevron-right:before {
  content: "\E080";
}

/* line 285, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.plus-sign:before {
  content: "\E081";
}

/* line 288, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.minus-sign:before {
  content: "\E082";
}

/* line 291, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.remove-sign:before {
  content: "\E083";
}

/* line 294, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.ok-sign:before {
  content: "\E084";
}

/* line 297, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.question-sign:before {
  content: "\E085";
}

/* line 300, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.info-sign:before {
  content: "\E086";
}

/* line 303, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.screenshot:before {
  content: "\E087";
}

/* line 306, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.remove-circle:before {
  content: "\E088";
}

/* line 309, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.ok-circle:before {
  content: "\E089";
}

/* line 312, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.ban-circle:before {
  content: "\E090";
}

/* line 315, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.arrow-left:before {
  content: "\E091";
}

/* line 318, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.arrow-right:before {
  content: "\E092";
}

/* line 321, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.arrow-up:before {
  content: "\E093";
}

/* line 324, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.arrow-down:before {
  content: "\E094";
}

/* line 327, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.share-alt:before {
  content: "\E095";
}

/* line 330, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.resize-full:before {
  content: "\E096";
}

/* line 333, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.resize-small:before {
  content: "\E097";
}

/* line 336, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.plus:before {
  content: "\002B";
}

/* line 339, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.minus:before {
  content: "\2212";
}

/* line 342, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.asterisk:before {
  content: "\002A";
}

/* line 345, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.exclamation-sign:before {
  content: "\E101";
}

/* line 348, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.gift:before {
  content: "\E102";
}

/* line 351, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.leaf:before {
  content: "\E103";
}

/* line 354, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.fire:before {
  content: "\1F525";
}

/* line 357, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.eye-open:before {
  content: "\E105";
}

/* line 360, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.eye-close:before {
  content: "\E106";
}

/* line 363, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.warning-sign:before {
  content: "\E107";
}

/* line 366, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.plane:before {
  content: "\E108";
}

/* line 369, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.calendar:before {
  content: "\1F4C5";
}

/* line 372, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.random:before {
  content: "\E110";
}

/* line 375, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.comments:before {
  content: "\E111";
}

/* line 378, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.magnet:before {
  content: "\E112";
}

/* line 381, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.chevron-up:before {
  content: "\E113";
}

/* line 384, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.chevron-down:before {
  content: "\E114";
}

/* line 387, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.retweet:before {
  content: "\E115";
}

/* line 390, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.shopping-cart:before {
  content: "\E116";
}

/* line 393, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.folder-close:before {
  content: "\E117";
}

/* line 396, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.folder-open:before {
  content: "\E118";
}

/* line 399, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.resize-vertical:before {
  content: "\E119";
}

/* line 402, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.resize-horizontal:before {
  content: "\E120";
}

/* line 405, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.hdd:before {
  content: "\E121";
}

/* line 408, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.bullhorn:before {
  content: "\E122";
}

/* line 411, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.bell:before {
  content: "\1F514";
}

/* line 414, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.certificate:before {
  content: "\E124";
}

/* line 417, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.thumbs-up:before {
  content: "\E125";
}

/* line 420, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.thumbs-down:before {
  content: "\E126";
}

/* line 423, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.hand-right:before {
  content: "\E127";
}

/* line 426, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.hand-left:before {
  content: "\E128";
}

/* line 429, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.hand-top:before {
  content: "\E129";
}

/* line 432, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.hand-down:before {
  content: "\E130";
}

/* line 435, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.circle-arrow-right:before {
  content: "\E131";
}

/* line 438, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.circle-arrow-left:before {
  content: "\E132";
}

/* line 441, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.circle-arrow-top:before {
  content: "\E133";
}

/* line 444, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.circle-arrow-down:before {
  content: "\E134";
}

/* line 447, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.globe:before {
  content: "\E135";
}

/* line 450, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.wrench:before {
  content: "\1F527";
}

/* line 453, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.tasks:before {
  content: "\E137";
}

/* line 456, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.filter:before {
  content: "\E138";
}

/* line 459, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.briefcase:before {
  content: "\1F4BC";
}

/* line 462, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.fullscreen:before {
  content: "\E140";
}

/* line 465, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.dashboard:before {
  content: "\E141";
}

/* line 468, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.paperclip:before {
  content: "\1F4CE";
}

/* line 471, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.heart-empty:before {
  content: "\E143";
}

/* line 474, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.link:before {
  content: "\E144";
}

/* line 477, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.phone:before {
  content: "\E145";
}

/* line 480, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.pushpin:before {
  content: "\1F4CC";
}

/* line 483, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.euro:before {
  content: "\20AC";
}

/* line 486, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.usd:before {
  content: "\E148";
}

/* line 489, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.gbp:before {
  content: "\E149";
}

/* line 492, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.sort:before {
  content: "\E150";
}

/* line 495, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.sort-by-alphabet:before {
  content: "\E151";
}

/* line 498, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.sort-by-alphabet-alt:before {
  content: "\E152";
}

/* line 501, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.sort-by-order:before {
  content: "\E153";
}

/* line 504, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.sort-by-order-alt:before {
  content: "\E154";
}

/* line 507, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.sort-by-attributes:before {
  content: "\E155";
}

/* line 510, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.sort-by-attributes-alt:before {
  content: "\E156";
}

/* line 513, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.unchecked:before {
  content: "\E157";
}

/* line 516, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.expand:before {
  content: "\E158";
}

/* line 519, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.collapse:before {
  content: "\E159";
}

/* line 522, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.collapse-top:before {
  content: "\E160";
}

/* line 525, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.log_in:before {
  content: "\E161";
}

/* line 528, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.flash:before {
  content: "\E162";
}

/* line 531, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.log_out:before {
  content: "\E163";
}

/* line 534, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.new_window:before {
  content: "\E164";
}

/* line 537, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.record:before {
  content: "\E165";
}

/* line 540, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.save:before {
  content: "\E166";
}

/* line 543, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.open:before {
  content: "\E167";
}

/* line 546, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.saved:before {
  content: "\E168";
}

/* line 549, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.import:before {
  content: "\E169";
}

/* line 552, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.export:before {
  content: "\E170";
}

/* line 555, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.send:before {
  content: "\E171";
}

/* line 558, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.floppy_disk:before {
  content: "\E172";
}

/* line 561, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.floppy_saved:before {
  content: "\E173";
}

/* line 564, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.floppy_remove:before {
  content: "\E174";
}

/* line 567, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.floppy_save:before {
  content: "\E175";
}

/* line 570, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.floppy_open:before {
  content: "\E176";
}

/* line 573, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.credit_card:before {
  content: "\E177";
}

/* line 576, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.transfer:before {
  content: "\E178";
}

/* line 579, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.cutlery:before {
  content: "\E179";
}

/* line 582, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.header:before {
  content: "\E180";
}

/* line 585, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.compressed:before {
  content: "\E181";
}

/* line 588, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.earphone:before {
  content: "\E182";
}

/* line 591, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.phone_alt:before {
  content: "\E183";
}

/* line 594, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.tower:before {
  content: "\E184";
}

/* line 597, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.stats:before {
  content: "\E185";
}

/* line 600, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.sd_video:before {
  content: "\E186";
}

/* line 603, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.hd_video:before {
  content: "\E187";
}

/* line 606, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.subtitles:before {
  content: "\E188";
}

/* line 609, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.sound_stereo:before {
  content: "\E189";
}

/* line 612, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.sound_dolby:before {
  content: "\E190";
}

/* line 615, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.sound_5_1:before {
  content: "\E191";
}

/* line 618, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.sound_6_1:before {
  content: "\E192";
}

/* line 621, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.sound_7_1:before {
  content: "\E193";
}

/* line 624, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.copyright_mark:before {
  content: "\E194";
}

/* line 627, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.registration_mark:before {
  content: "\E195";
}

/* line 630, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.cloud:before {
  content: "\2601";
}

/* line 633, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.cloud_download:before {
  content: "\E197";
}

/* line 636, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.cloud_upload:before {
  content: "\E198";
}

/* line 639, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.tree_conifer:before {
  content: "\E199";
}

/* line 642, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings.tree_deciduous:before {
  content: "\E200";
}

/* line 647, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin: 0 8px 0 0;
  line-height: 14px;
  vertical-align: text-top;
  background-image: url(/assets/simpliq/glyphicons_halflings-24df051770d38d23322cfc8ed407267fe8a9d618529290561f1c9da3b82a5f45.svg);
  background-position: 0 0;
  background-repeat: no-repeat;
  vertical-align: top;
  *display: inline;
  *zoom: 1;
  *margin-right: .3em;
  background-image: url(/assets/simpliq/glyphicons_halflings-a4b9ea26029e94569545b4ad72a506d40f74a0c8bf6f7d57a0d1735f611fa663.png);
}

/* line 661, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon _:-o-prefocus {
  background-image: url(/assets/simpliq/glyphicons_halflings-a4b9ea26029e94569545b4ad72a506d40f74a0c8bf6f7d57a0d1735f611fa663.png);
}

/* line 667, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.no-inlinesvg .halflings-icon {
  background-image: url(/assets/simpliq/glyphicons_halflings-a4b9ea26029e94569545b4ad72a506d40f74a0c8bf6f7d57a0d1735f611fa663.png);
}

/* line 671, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.white {
  background-image: url(/assets/simpliq/glyphicons_halflings-white-fa45f0efda01c0dba2045229b0fa52c307d641903b018fecb54bc92890c9af4f.svg);
  background-image: url(/assets/simpliq/glyphicons_halflings-white-14d000798e15a5148d35de39c0f1f1dbffa5b8d26cd68436d27a275138f0b67b.png);
}

/* line 673, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.white _:-o-prefocus {
  background-image: url(/assets/simpliq/glyphicons_halflings-white-14d000798e15a5148d35de39c0f1f1dbffa5b8d26cd68436d27a275138f0b67b.png);
}

/* line 679, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.no-inlinesvg .halflings-icon.white {
  background-image: url(/assets/simpliq/glyphicons_halflings-white-14d000798e15a5148d35de39c0f1f1dbffa5b8d26cd68436d27a275138f0b67b.png);
}

/* line 684, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.glass {
  background-position: 0px 0px;
}

/* line 687, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.music {
  background-position: -24px 0px;
}

/* line 690, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.search {
  background-position: -48px 0px;
}

/* line 693, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.envelope {
  background-position: -72px 0px;
}

/* line 696, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.heart {
  background-position: -96px 0px;
}

/* line 699, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.star {
  background-position: -120px 0px;
}

/* line 702, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.star-empty {
  background-position: -144px 0px;
}

/* line 705, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.user {
  background-position: -168px 0px;
}

/* line 708, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.film {
  background-position: -192px 0px;
}

/* line 711, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.th-large {
  background-position: -216px 0px;
}

/* line 714, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.th {
  background-position: -240px 0px;
}

/* line 717, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.th-list {
  background-position: -264px 0px;
}

/* line 720, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.ok {
  background-position: -288px 0px;
}

/* line 723, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.remove {
  background-position: -312px 0px;
}

/* line 726, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.zoom-in {
  background-position: -336px 0px;
}

/* line 729, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.zoom-out {
  background-position: -360px 0px;
}

/* line 732, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.off {
  background-position: -384px 0px;
}

/* line 735, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.signal {
  background-position: -408px 0px;
}

/* line 738, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.cog {
  background-position: -432px 0px;
}

/* line 741, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.trash {
  background-position: -456px 0px;
}

/* line 744, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.home {
  background-position: 0px -24px;
}

/* line 747, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.file {
  background-position: -24px -24px;
}

/* line 750, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.time {
  background-position: -48px -24px;
}

/* line 753, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.road {
  background-position: -71px -24px;
}

/* line 756, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.download-alt {
  background-position: -96px -24px;
}

/* line 759, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.download {
  background-position: -120px -24px;
}

/* line 762, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.upload {
  background-position: -144px -24px;
}

/* line 765, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.inbox {
  background-position: -168px -24px;
}

/* line 768, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.play-circle {
  background-position: -192px -24px;
}

/* line 771, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.repeat {
  background-position: -216px -24px;
}

/* line 774, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.refresh {
  background-position: -240px -24px;
}

/* line 777, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.list-alt {
  background-position: -264px -24px;
}

/* line 780, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.lock {
  background-position: -288px -24px;
}

/* line 783, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.flag {
  background-position: -312px -24px;
}

/* line 786, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.headphones {
  background-position: -336px -24px;
}

/* line 789, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.volume-off {
  background-position: -360px -24px;
}

/* line 792, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.volume-down {
  background-position: -384px -24px;
}

/* line 795, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.volume-up {
  background-position: -408px -24px;
}

/* line 798, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.qrcode {
  background-position: -432px -24px;
}

/* line 801, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.barcode {
  background-position: -456px -24px;
}

/* line 804, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.tag {
  background-position: 0px -48px;
}

/* line 807, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.tags {
  background-position: -24px -48px;
}

/* line 810, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.book {
  background-position: -48px -48px;
}

/* line 813, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.bookmark {
  background-position: -72px -48px;
}

/* line 816, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.print {
  background-position: -96px -48px;
}

/* line 819, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.camera {
  background-position: -120px -48px;
}

/* line 822, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.font {
  background-position: -144px -48px;
}

/* line 825, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.bold {
  background-position: -168px -48px;
}

/* line 828, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.italic {
  background-position: -192px -48px;
}

/* line 831, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.text-height {
  background-position: -216px -48px;
}

/* line 834, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.text-width {
  background-position: -240px -48px;
}

/* line 837, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.align-left {
  background-position: -264px -48px;
}

/* line 840, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.align-center {
  background-position: -288px -48px;
}

/* line 843, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.align-right {
  background-position: -312px -48px;
}

/* line 846, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.align-justify {
  background-position: -336px -48px;
}

/* line 849, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.list {
  background-position: -360px -48px;
}

/* line 852, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.indent-left {
  background-position: -384px -48px;
}

/* line 855, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.indent-right {
  background-position: -408px -48px;
}

/* line 858, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.facetime-video {
  background-position: -432px -48px;
}

/* line 861, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.picture {
  background-position: -456px -48px;
}

/* line 864, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.pencil {
  background-position: 0px -72px;
}

/* line 867, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.map-marker {
  background-position: -24px -72px;
}

/* line 870, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.adjust {
  background-position: -48px -72px;
}

/* line 873, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.tint {
  background-position: -72px -72px;
}

/* line 876, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.edit {
  background-position: -96px -72px;
}

/* line 879, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.share {
  background-position: -120px -72px;
}

/* line 882, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.check {
  background-position: -144px -72px;
}

/* line 885, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.move {
  background-position: -168px -72px;
}

/* line 888, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.step-backward {
  background-position: -192px -72px;
}

/* line 891, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.fast-backward {
  background-position: -216px -72px;
}

/* line 894, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.backward {
  background-position: -240px -72px;
}

/* line 897, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.play {
  background-position: -264px -72px;
}

/* line 900, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.pause {
  background-position: -288px -72px;
}

/* line 903, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.stop {
  background-position: -312px -72px;
}

/* line 906, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.forward {
  background-position: -336px -72px;
}

/* line 909, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.fast-forward {
  background-position: -360px -72px;
}

/* line 912, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.step-forward {
  background-position: -384px -72px;
}

/* line 915, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.eject {
  background-position: -408px -72px;
}

/* line 918, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.chevron-left {
  background-position: -432px -72px;
}

/* line 921, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.chevron-right {
  background-position: -456px -72px;
}

/* line 924, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.plus-sign {
  background-position: 0px -96px;
}

/* line 927, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.minus-sign {
  background-position: -24px -96px;
}

/* line 930, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.remove-sign {
  background-position: -48px -96px;
}

/* line 933, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.ok-sign {
  background-position: -72px -96px;
}

/* line 936, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.question-sign {
  background-position: -96px -96px;
}

/* line 939, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.info-sign {
  background-position: -120px -96px;
}

/* line 942, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.screenshot {
  background-position: -144px -96px;
}

/* line 945, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.remove-circle {
  background-position: -168px -96px;
}

/* line 948, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.ok-circle {
  background-position: -192px -96px;
}

/* line 951, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.ban-circle {
  background-position: -216px -96px;
}

/* line 954, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.arrow-left {
  background-position: -240px -96px;
}

/* line 957, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.arrow-right {
  background-position: -264px -96px;
}

/* line 960, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.arrow-up {
  background-position: -288px -96px;
}

/* line 963, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.arrow-down {
  background-position: -312px -96px;
}

/* line 966, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.share-alt {
  background-position: -336px -96px;
}

/* line 969, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.resize-full {
  background-position: -360px -96px;
}

/* line 972, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.resize-small {
  background-position: -384px -96px;
}

/* line 975, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.plus {
  background-position: -408px -96px;
}

/* line 978, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.minus {
  background-position: -432px -96px;
}

/* line 981, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.asterisk {
  background-position: -456px -96px;
}

/* line 984, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.exclamation-sign {
  background-position: 0px -120px;
}

/* line 987, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.gift {
  background-position: -24px -120px;
}

/* line 990, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.leaf {
  background-position: -48px -120px;
}

/* line 993, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.fire {
  background-position: -72px -120px;
}

/* line 996, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.eye-open {
  background-position: -95px -120px;
}

/* line 999, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.eye-close {
  background-position: -119px -120px;
}

/* line 1002, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.warning-sign {
  background-position: -144px -120px;
}

/* line 1005, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.plane {
  background-position: -168px -120px;
}

/* line 1008, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.calendar {
  background-position: -192px -120px;
}

/* line 1011, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.random {
  background-position: -216px -120px;
}

/* line 1014, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.comments {
  background-position: -240px -120px;
}

/* line 1017, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.magnet {
  background-position: -264px -120px;
}

/* line 1020, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.chevron-up {
  background-position: -288px -120px;
}

/* line 1023, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.chevron-down {
  background-position: -312px -120px;
}

/* line 1026, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.retweet {
  background-position: -336px -120px;
}

/* line 1029, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.shopping-cart {
  background-position: -360px -120px;
}

/* line 1032, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.folder-close {
  background-position: -384px -120px;
}

/* line 1035, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.folder-open {
  background-position: -408px -120px;
}

/* line 1038, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.resize-vertical {
  background-position: -432px -120px;
}

/* line 1041, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.resize-horizontal {
  background-position: -456px -120px;
}

/* line 1044, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.hdd {
  background-position: 0px -144px;
}

/* line 1047, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.bullhorn {
  background-position: -24px -144px;
}

/* line 1050, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.bell {
  background-position: -48px -144px;
}

/* line 1053, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.certificate {
  background-position: -72px -144px;
}

/* line 1056, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.thumbs-up {
  background-position: -96px -144px;
}

/* line 1059, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.thumbs-down {
  background-position: -120px -144px;
}

/* line 1062, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.hand-right {
  background-position: -145px -144px;
}

/* line 1065, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.hand-left {
  background-position: -167px -144px;
}

/* line 1068, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.hand-top {
  background-position: -192px -144px;
}

/* line 1071, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.hand-down {
  background-position: -216px -144px;
}

/* line 1074, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.circle-arrow-right {
  background-position: -240px -144px;
}

/* line 1077, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.circle-arrow-left {
  background-position: -264px -144px;
}

/* line 1080, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.circle-arrow-top {
  background-position: -288px -144px;
}

/* line 1083, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.circle-arrow-down {
  background-position: -312px -144px;
}

/* line 1086, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.globe {
  background-position: -336px -144px;
}

/* line 1089, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.wrench {
  background-position: -360px -144px;
}

/* line 1092, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.tasks {
  background-position: -384px -144px;
}

/* line 1095, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.filter {
  background-position: -408px -144px;
}

/* line 1098, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.briefcase {
  background-position: -432px -144px;
}

/* line 1101, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.fullscreen {
  background-position: -456px -144px;
}

/* line 1104, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.dashboard {
  background-position: 0px -168px;
}

/* line 1107, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.paperclip {
  background-position: -24px -168px;
}

/* line 1110, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.heart-empty {
  background-position: -48px -168px;
}

/* line 1113, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.link {
  background-position: -72px -168px;
}

/* line 1116, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.phone {
  background-position: -96px -168px;
}

/* line 1119, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.pushpin {
  background-position: -120px -168px;
}

/* line 1122, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.euro {
  background-position: -144px -168px;
}

/* line 1125, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.usd {
  background-position: -168px -168px;
}

/* line 1128, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.gbp {
  background-position: -192px -168px;
}

/* line 1131, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.sort {
  background-position: -216px -168px;
}

/* line 1134, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.sort-by-alphabet {
  background-position: -240px -168px;
}

/* line 1137, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.sort-by-alphabet-alt {
  background-position: -264px -168px;
}

/* line 1140, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.sort-by-order {
  background-position: -288px -168px;
}

/* line 1143, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.sort-by-order-alt {
  background-position: -312px -168px;
}

/* line 1146, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.sort-by-attributes {
  background-position: -336px -168px;
}

/* line 1149, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.sort-by-attributes-alt {
  background-position: -360px -168px;
}

/* line 1152, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.unchecked {
  background-position: -384px -168px;
}

/* line 1155, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.expand {
  background-position: -408px -168px;
}

/* line 1158, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.collapse {
  background-position: -432px -168px;
}

/* line 1161, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.collapse-top {
  background-position: -456px -168px;
}

/* line 1164, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.log_in {
  background-position: 0px -192px;
}

/* line 1167, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.flash {
  background-position: -24px -192px;
}

/* line 1170, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.log_out {
  background-position: -48px -192px;
}

/* line 1173, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.new_window {
  background-position: -72px -192px;
}

/* line 1176, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.record {
  background-position: -96px -192px;
}

/* line 1179, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.save {
  background-position: -120px -192px;
}

/* line 1182, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.open {
  background-position: -144px -192px;
}

/* line 1185, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.saved {
  background-position: -168px -192px;
}

/* line 1188, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.import {
  background-position: -192px -192px;
}

/* line 1191, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.export {
  background-position: -216px -192px;
}

/* line 1194, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.send {
  background-position: -240px -192px;
}

/* line 1197, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.floppy_disk {
  background-position: -264px -192px;
}

/* line 1200, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.floppy_saved {
  background-position: -288px -192px;
}

/* line 1203, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.floppy_remove {
  background-position: -312px -192px;
}

/* line 1206, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.floppy_save {
  background-position: -336px -192px;
}

/* line 1209, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.floppy_open {
  background-position: -360px -192px;
}

/* line 1212, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.credit_card {
  background-position: -384px -192px;
}

/* line 1215, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.transfer {
  background-position: -408px -192px;
}

/* line 1218, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.cutlery {
  background-position: -432px -192px;
}

/* line 1221, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.header {
  background-position: -456px -192px;
}

/* line 1224, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.compressed {
  background-position: 0px -216px;
}

/* line 1227, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.earphone {
  background-position: -24px -216px;
}

/* line 1230, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.phone_alt {
  background-position: -48px -216px;
}

/* line 1233, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.tower {
  background-position: -72px -216px;
}

/* line 1236, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.stats {
  background-position: -96px -216px;
}

/* line 1239, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.sd_video {
  background-position: -119px -216px;
}

/* line 1242, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.hd_video {
  background-position: -143px -216px;
}

/* line 1245, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.subtitles {
  background-position: -167px -216px;
}

/* line 1248, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.sound_stereo {
  background-position: -191px -216px;
}

/* line 1251, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.sound_dolby {
  background-position: -215px -216px;
}

/* line 1254, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.sound_5_1 {
  background-position: -239px -216px;
}

/* line 1257, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.sound_6_1 {
  background-position: -263px -216px;
}

/* line 1260, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.sound_7_1 {
  background-position: -287px -216px;
}

/* line 1263, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.copyright_mark {
  background-position: -312px -216px;
}

/* line 1266, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.registration_mark {
  background-position: -336px -216px;
}

/* line 1269, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.cloud {
  background-position: -360px -216px;
}

/* line 1272, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.cloud_download {
  background-position: -384px -216px;
}

/* line 1275, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.cloud_upload {
  background-position: -408px -216px;
}

/* line 1278, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.tree_conifer {
  background-position: -432px -216px;
}

/* line 1281, vendor/assets/stylesheets/awesometheme/../simpliq/halflings.css.scss */
.halflings-icon.tree_deciduous {
  background-position: -456px -216px;
}

/*!
 *
 *  Project:  GLYPHICONS HALFLINGS
 *  Author:   Jan Kovarik - www.glyphicons.com
 *  Twitter:  @glyphicons
 *
 */
@font-face {
  font-family: 'Glyphicons Filetypes Regular';
  src: url(/assets/simpliq/glyphicons-filetypes-regular-ee0beaa47a02a347361f3057b77f4dce5cd1a63dccbd815e5562c2362be94d3a.eot);
  src: url(/assets/simpliq/glyphicons-filetypes-regular-ee0beaa47a02a347361f3057b77f4dce5cd1a63dccbd815e5562c2362be94d3a.eot?#iefix) format("embedded-opentype"), url(/assets/simpliq/glyphicons-filetypes-regular-08b3cecbba86fc1f79a1c024c597f00e07b6340e1619459a02970ecd18e8b680.woff) format("woff"), url(/simpliq/glyphicons-filetypes-regular.ttf) format("truetype"), url(/assets/simpliq/glyphicons-filetypes-regular-e5ca0cdb0b138883c2edb70f947c296e3861a41b2478fcfc0e2029b632dae6e5.svg#glyphicons_filetypesregular) format("svg");
  font-weight: normal;
  font-style: normal;
}

/* line 17, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype {
  display: inline-block;
  position: relative;
  padding-left: 30px;
  color: #1d1d1b;
  text-decoration: none;
  *display: inline;
  *zoom: 1;
  vertical-align: middle;
}

/* line 26, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype:before {
  position: absolute;
  left: 0;
  top: 0;
  display: inline-block;
  margin: 0 5px 0 0;
  font: 24px / 1em "Glyphicons Filetypes Regular";
  font-style: normal;
  font-weight: normal;
  color: #1d1d1b;
  *display: inline;
  *zoom: 1;
  vertical-align: middle;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
}

/* line 42, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.white:before {
  color: #fff;
}

/* line 45, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.txt:before {
  content: "\E001";
}

/* line 48, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.doc:before {
  content: "\E002";
}

/* line 51, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.rtf:before {
  content: "\E003";
}

/* line 54, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.log:before {
  content: "\E004";
}

/* line 57, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.tex:before {
  content: "\E005";
}

/* line 60, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.msg:before {
  content: "\E006";
}

/* line 63, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.text:before {
  content: "\E007";
}

/* line 66, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.wpd:before {
  content: "\E008";
}

/* line 69, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.wps:before {
  content: "\E009";
}

/* line 72, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.docx:before {
  content: "\E010";
}

/* line 75, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.page:before {
  content: "\E011";
}

/* line 78, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.csv:before {
  content: "\E012";
}

/* line 81, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.dat:before {
  content: "\E013";
}

/* line 84, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.tar:before {
  content: "\E014";
}

/* line 87, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.xml:before {
  content: "\E015";
}

/* line 90, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.vcf:before {
  content: "\E016";
}

/* line 93, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.pps:before {
  content: "\E017";
}

/* line 96, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.key:before {
  content: "\1F511";
}

/* line 99, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.ppt:before {
  content: "\E019";
}

/* line 102, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.pptx:before {
  content: "\E020";
}

/* line 105, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.sdf:before {
  content: "\E021";
}

/* line 108, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.gbr:before {
  content: "\E022";
}

/* line 111, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.ged:before {
  content: "\E023";
}

/* line 114, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.mp3:before {
  content: "\E024";
}

/* line 117, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.m4a:before {
  content: "\E025";
}

/* line 120, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.waw:before {
  content: "\E026";
}

/* line 123, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.wma:before {
  content: "\E027";
}

/* line 126, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.mpa:before {
  content: "\E028";
}

/* line 129, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.iff:before {
  content: "\E029";
}

/* line 132, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.aif:before {
  content: "\E030";
}

/* line 135, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.ra:before {
  content: "\E031";
}

/* line 138, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.mid:before {
  content: "\E032";
}

/* line 141, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.m3v:before {
  content: "\E033";
}

/* line 144, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.e_3gp:before {
  content: "\E034";
}

/* line 147, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.shf:before {
  content: "\E035";
}

/* line 150, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.avi:before {
  content: "\E036";
}

/* line 153, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.asx:before {
  content: "\E037";
}

/* line 156, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.mp4:before {
  content: "\E038";
}

/* line 159, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.e_3g2:before {
  content: "\E039";
}

/* line 162, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.mpg:before {
  content: "\E040";
}

/* line 165, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.asf:before {
  content: "\E041";
}

/* line 168, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.vob:before {
  content: "\E042";
}

/* line 171, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.wmv:before {
  content: "\E043";
}

/* line 174, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.mov:before {
  content: "\E044";
}

/* line 177, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.srt:before {
  content: "\E045";
}

/* line 180, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.m4v:before {
  content: "\E046";
}

/* line 183, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.flv:before {
  content: "\E047";
}

/* line 186, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.rm:before {
  content: "\E048";
}

/* line 189, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.png:before {
  content: "\E049";
}

/* line 192, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.psd:before {
  content: "\E050";
}

/* line 195, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.psp:before {
  content: "\E051";
}

/* line 198, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.jpg:before {
  content: "\E052";
}

/* line 201, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.tif:before {
  content: "\E053";
}

/* line 204, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.tiff:before {
  content: "\E054";
}

/* line 207, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.gif:before {
  content: "\E055";
}

/* line 210, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.bmp:before {
  content: "\E056";
}

/* line 213, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.tga:before {
  content: "\E057";
}

/* line 216, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.thm:before {
  content: "\E058";
}

/* line 219, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.yuv:before {
  content: "\E059";
}

/* line 222, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.dds:before {
  content: "\E060";
}

/* line 225, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.ai:before {
  content: "\E061";
}

/* line 228, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.eps:before {
  content: "\E062";
}

/* line 231, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.ps:before {
  content: "\E063";
}

/* line 234, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.svg:before {
  content: "\E064";
}

/* line 237, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.pdf:before {
  content: "\E065";
}

/* line 240, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.pct:before {
  content: "\E066";
}

/* line 243, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.indd:before {
  content: "\E067";
}

/* line 246, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.xlr:before {
  content: "\E068";
}

/* line 249, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.xls:before {
  content: "\E069";
}

/* line 252, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.xlsx:before {
  content: "\E070";
}

/* line 255, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.db:before {
  content: "\E071";
}

/* line 258, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.dbf:before {
  content: "\E072";
}

/* line 261, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.mdb:before {
  content: "\E073";
}

/* line 264, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.pdb:before {
  content: "\E074";
}

/* line 267, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.sql:before {
  content: "\E075";
}

/* line 270, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.aacd:before {
  content: "\E076";
}

/* line 273, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.app:before {
  content: "\E077";
}

/* line 276, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.exe:before {
  content: "\E078";
}

/* line 279, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.com:before {
  content: "\E079";
}

/* line 282, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.bat:before {
  content: "\E080";
}

/* line 285, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.apk:before {
  content: "\E081";
}

/* line 288, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.jar:before {
  content: "\E082";
}

/* line 291, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.hsf:before {
  content: "\E083";
}

/* line 294, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.pif:before {
  content: "\E084";
}

/* line 297, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.vb:before {
  content: "\E085";
}

/* line 300, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.cgi:before {
  content: "\E086";
}

/* line 303, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.css:before {
  content: "\E087";
}

/* line 306, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.js:before {
  content: "\E088";
}

/* line 309, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.php:before {
  content: "\E089";
}

/* line 312, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.xhtml:before {
  content: "\E090";
}

/* line 315, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.htm:before {
  content: "\E091";
}

/* line 318, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.html:before {
  content: "\E092";
}

/* line 321, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.asp:before {
  content: "\E093";
}

/* line 324, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.cer:before {
  content: "\E094";
}

/* line 327, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.jsp:before {
  content: "\E095";
}

/* line 330, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.cfm:before {
  content: "\E096";
}

/* line 333, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.aspx:before {
  content: "\E097";
}

/* line 336, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.rss:before {
  content: "\E098";
}

/* line 339, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.csr:before {
  content: "\E099";
}

/* line 342, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.less:before {
  content: "\003C";
}

/* line 345, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.otf:before {
  content: "\E101";
}

/* line 348, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.ttf:before {
  content: "\E102";
}

/* line 351, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.font:before {
  content: "\E103";
}

/* line 354, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.fnt:before {
  content: "\E104";
}

/* line 357, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.eot:before {
  content: "\E105";
}

/* line 360, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.woff:before {
  content: "\E106";
}

/* line 363, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.zip:before {
  content: "\E107";
}

/* line 366, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.zipx:before {
  content: "\E108";
}

/* line 369, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.rar:before {
  content: "\E109";
}

/* line 372, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.targ:before {
  content: "\E110";
}

/* line 375, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.sitx:before {
  content: "\E111";
}

/* line 378, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.deb:before {
  content: "\E112";
}

/* line 381, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.e_7z:before {
  content: "\E113";
}

/* line 384, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.pkg:before {
  content: "\E114";
}

/* line 387, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.rpm:before {
  content: "\E115";
}

/* line 390, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.cbr:before {
  content: "\E116";
}

/* line 393, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.gz:before {
  content: "\E117";
}

/* line 396, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.dmg:before {
  content: "\E118";
}

/* line 399, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.cue:before {
  content: "\E119";
}

/* line 402, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.bin:before {
  content: "\E120";
}

/* line 405, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.iso:before {
  content: "\E121";
}

/* line 408, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.hdf:before {
  content: "\E122";
}

/* line 411, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.vcd:before {
  content: "\E123";
}

/* line 414, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.bak:before {
  content: "\E124";
}

/* line 417, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.tmp:before {
  content: "\E125";
}

/* line 420, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.ics:before {
  content: "\E126";
}

/* line 423, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.msi:before {
  content: "\E127";
}

/* line 426, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.cfg:before {
  content: "\E128";
}

/* line 429, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.ini:before {
  content: "\E129";
}

/* line 432, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype.prf:before {
  content: "\E130";
}

/* line 437, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon {
  display: inline-block;
  width: 19px;
  height: 24px;
  margin: 0 8px 0 0;
  line-height: 14px;
  vertical-align: text-top;
  background-image: url(/simpliq/glyphicons_filetypes.svg);
  background-position: 0 0;
  background-repeat: no-repeat;
  vertical-align: top;
  *display: inline;
  *zoom: 1;
  *margin-right: .3em;
  background-image: url(/simpliq/glyphicons_filetypes.png);
}

/* line 451, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon _:-o-prefocus {
  background-image: url(/simpliq/glyphicons_filetypes.png);
}

/* line 457, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.no-inlinesvg .filetype-icon {
  background-image: url(/simpliq/glyphicons_filetypes.png);
}

/* line 461, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.white {
  background-image: url(/simpliq/glyphicons_filetypes-white.svg);
  background-image: url(/simpliq/glyphicons_filetypes-white.png);
}

/* line 463, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.white _:-o-prefocus {
  background-image: url(/simpliq/glyphicons_filetypes-white.png);
}

/* line 469, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.no-inlinesvg .filetype-icon.white {
  background-image: url(/simpliq/glyphicons_filetypes-white.png);
}

/* line 474, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.txt {
  background-position: 0px 0px;
}

/* line 477, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.doc {
  background-position: -48px 0px;
}

/* line 480, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.rtf {
  background-position: -96px 0px;
}

/* line 483, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.log {
  background-position: -144px 0px;
}

/* line 486, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.tex {
  background-position: -192px 0px;
}

/* line 489, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.msg {
  background-position: -240px 0px;
}

/* line 492, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.text {
  background-position: -288px 0px;
}

/* line 495, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.wpd {
  background-position: -336px 0px;
}

/* line 498, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.wps {
  background-position: -384px 0px;
}

/* line 501, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.docx {
  background-position: -432px 0px;
}

/* line 504, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.page {
  background-position: 0px -48px;
}

/* line 507, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.csv {
  background-position: -48px -48px;
}

/* line 510, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.dat {
  background-position: -96px -48px;
}

/* line 513, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.tar {
  background-position: -144px -48px;
}

/* line 516, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.xml {
  background-position: -192px -48px;
}

/* line 519, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.vcf {
  background-position: -240px -48px;
}

/* line 522, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.pps {
  background-position: -288px -48px;
}

/* line 525, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.key {
  background-position: -336px -48px;
}

/* line 528, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.ppt {
  background-position: -384px -48px;
}

/* line 531, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.pptx {
  background-position: -432px -48px;
}

/* line 534, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.sdf {
  background-position: 0px -96px;
}

/* line 537, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.gbr {
  background-position: -48px -96px;
}

/* line 540, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.ged {
  background-position: -96px -96px;
}

/* line 543, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.mp3 {
  background-position: -144px -96px;
}

/* line 546, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.m4a {
  background-position: -192px -96px;
}

/* line 549, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.waw {
  background-position: -240px -96px;
}

/* line 552, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.wma {
  background-position: -288px -96px;
}

/* line 555, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.mpa {
  background-position: -336px -96px;
}

/* line 558, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.iff {
  background-position: -384px -96px;
}

/* line 561, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.aif {
  background-position: -432px -96px;
}

/* line 564, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.ra {
  background-position: 0px -144px;
}

/* line 567, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.mid {
  background-position: -48px -144px;
}

/* line 570, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.m3v {
  background-position: -96px -144px;
}

/* line 573, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.e_3gp {
  background-position: -144px -144px;
}

/* line 576, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.shf {
  background-position: -192px -144px;
}

/* line 579, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.avi {
  background-position: -240px -144px;
}

/* line 582, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.asx {
  background-position: -288px -144px;
}

/* line 585, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.mp4 {
  background-position: -336px -144px;
}

/* line 588, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.e_3g2 {
  background-position: -384px -144px;
}

/* line 591, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.mpg {
  background-position: -432px -144px;
}

/* line 594, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.asf {
  background-position: 0px -192px;
}

/* line 597, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.vob {
  background-position: -48px -192px;
}

/* line 600, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.wmv {
  background-position: -96px -192px;
}

/* line 603, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.mov {
  background-position: -144px -192px;
}

/* line 606, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.srt {
  background-position: -192px -192px;
}

/* line 609, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.m4v {
  background-position: -240px -192px;
}

/* line 612, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.flv {
  background-position: -288px -192px;
}

/* line 615, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.rm {
  background-position: -336px -192px;
}

/* line 618, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.png {
  background-position: -384px -192px;
}

/* line 621, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.psd {
  background-position: -432px -192px;
}

/* line 624, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.psp {
  background-position: 0px -240px;
}

/* line 627, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.jpg {
  background-position: -48px -240px;
}

/* line 630, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.tif {
  background-position: -96px -240px;
}

/* line 633, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.tiff {
  background-position: -144px -240px;
}

/* line 636, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.gif {
  background-position: -192px -240px;
}

/* line 639, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.bmp {
  background-position: -240px -240px;
}

/* line 642, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.tga {
  background-position: -288px -240px;
}

/* line 645, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.thm {
  background-position: -336px -240px;
}

/* line 648, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.yuv {
  background-position: -384px -240px;
}

/* line 651, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.dds {
  background-position: -432px -240px;
}

/* line 654, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.ai {
  background-position: 0px -288px;
}

/* line 657, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.eps {
  background-position: -48px -288px;
}

/* line 660, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.ps {
  background-position: -96px -288px;
}

/* line 663, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.svg {
  background-position: -144px -288px;
}

/* line 666, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.pdf {
  background-position: -192px -288px;
}

/* line 669, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.pct {
  background-position: -240px -288px;
}

/* line 672, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.indd {
  background-position: -288px -288px;
}

/* line 675, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.xlr {
  background-position: -336px -288px;
}

/* line 678, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.xls {
  background-position: -384px -288px;
}

/* line 681, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.xlsx {
  background-position: -432px -288px;
}

/* line 684, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.db {
  background-position: 0px -336px;
}

/* line 687, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.dbf {
  background-position: -48px -336px;
}

/* line 690, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.mdb {
  background-position: -96px -336px;
}

/* line 693, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.pdb {
  background-position: -144px -336px;
}

/* line 696, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.sql {
  background-position: -192px -336px;
}

/* line 699, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.aacd {
  background-position: -240px -336px;
}

/* line 702, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.app {
  background-position: -288px -336px;
}

/* line 705, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.exe {
  background-position: -336px -336px;
}

/* line 708, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.com {
  background-position: -384px -336px;
}

/* line 711, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.bat {
  background-position: -432px -336px;
}

/* line 714, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.apk {
  background-position: 0px -384px;
}

/* line 717, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.jar {
  background-position: -48px -384px;
}

/* line 720, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.hsf {
  background-position: -96px -384px;
}

/* line 723, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.pif {
  background-position: -144px -384px;
}

/* line 726, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.vb {
  background-position: -192px -384px;
}

/* line 729, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.cgi {
  background-position: -240px -384px;
}

/* line 732, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.css {
  background-position: -288px -384px;
}

/* line 735, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.js {
  background-position: -336px -384px;
}

/* line 738, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.php {
  background-position: -384px -384px;
}

/* line 741, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.xhtml {
  background-position: -432px -384px;
}

/* line 744, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.htm {
  background-position: 0px -432px;
}

/* line 747, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.html {
  background-position: -48px -432px;
}

/* line 750, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.asp {
  background-position: -96px -432px;
}

/* line 753, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.cer {
  background-position: -144px -432px;
}

/* line 756, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.jsp {
  background-position: -192px -432px;
}

/* line 759, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.cfm {
  background-position: -240px -432px;
}

/* line 762, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.aspx {
  background-position: -288px -432px;
}

/* line 765, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.rss {
  background-position: -336px -432px;
}

/* line 768, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.csr {
  background-position: -384px -432px;
}

/* line 771, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.less {
  background-position: -432px -432px;
}

/* line 774, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.otf {
  background-position: 0px -480px;
}

/* line 777, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.ttf {
  background-position: -48px -480px;
}

/* line 780, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.font {
  background-position: -96px -480px;
}

/* line 783, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.fnt {
  background-position: -144px -480px;
}

/* line 786, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.eot {
  background-position: -192px -480px;
}

/* line 789, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.woff {
  background-position: -240px -480px;
}

/* line 792, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.zip {
  background-position: -288px -480px;
}

/* line 795, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.zipx {
  background-position: -336px -480px;
}

/* line 798, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.rar {
  background-position: -384px -480px;
}

/* line 801, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.targ {
  background-position: -432px -480px;
}

/* line 804, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.sitx {
  background-position: 0px -528px;
}

/* line 807, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.deb {
  background-position: -48px -528px;
}

/* line 810, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.e_7z {
  background-position: -96px -528px;
}

/* line 813, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.pkg {
  background-position: -144px -528px;
}

/* line 816, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.rpm {
  background-position: -192px -528px;
}

/* line 819, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.cbr {
  background-position: -240px -528px;
}

/* line 822, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.gz {
  background-position: -288px -528px;
}

/* line 825, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.dmg {
  background-position: -336px -528px;
}

/* line 828, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.cue {
  background-position: -384px -528px;
}

/* line 831, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.bin {
  background-position: -432px -528px;
}

/* line 834, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.iso {
  background-position: 0px -576px;
}

/* line 837, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.hdf {
  background-position: -48px -576px;
}

/* line 840, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.vcd {
  background-position: -96px -576px;
}

/* line 843, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.bak {
  background-position: -144px -576px;
}

/* line 846, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.tmp {
  background-position: -192px -576px;
}

/* line 849, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.ics {
  background-position: -240px -576px;
}

/* line 852, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.msi {
  background-position: -288px -576px;
}

/* line 855, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.cfg {
  background-position: -336px -576px;
}

/* line 858, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.ini {
  background-position: -384px -576px;
}

/* line 861, vendor/assets/stylesheets/awesometheme/../simpliq/filetypes.css.scss */
.filetype-icon.prf {
  background-position: -432px -576px;
}

/*!
 *
 *  Project:  GLYPHICONS HALFLINGS
 *  Author:   Jan Kovarik - www.glyphicons.com
 *  Twitter:  @glyphicons
 *
 */
@font-face {
  font-family: 'Glyphicons Social Regular';
  src: url(/assets/simpliq/glyphicons-social-regular-6c9df89351478bb3701e4cecdb4bb0fe6708d8d9a3218aa97564d5e4597bafdc.eot);
  src: url(/assets/simpliq/glyphicons-social-regular-6c9df89351478bb3701e4cecdb4bb0fe6708d8d9a3218aa97564d5e4597bafdc.eot?#iefix) format("embedded-opentype"), url(/assets/simpliq/glyphicons-social-regular-5fb50107a17bcb677278ca2ce2bcb16fa4800117d05e1b5dccb84bf6d8a7325f.woff) format("woff"), url(/assets/simpliq/glyphicons-social-regular-0fdda04f646085f196c1ff4d7ece0ae7a80a8624d4091cf5143ae4f983af79da.ttf) format("truetype"), url(/assets/simpliq/glyphicons-social-regular-bef3543e0103a7ba9f7f8f3cb7755fce53328fbaa0624742e885fae8d71fef40.svg#glyphicons_socialregular) format("svg");
  font-weight: normal;
  font-style: normal;
}

/* line 17, vendor/assets/stylesheets/awesometheme/../simpliq/social.css.scss */
.social {
  display: inline-block;
  position: relative;
  padding-left: 30px;
  color: #1d1d1b;
  text-decoration: none;
  *display: inline;
  *zoom: 1;
  vertical-align: middle;
}

/* line 26, vendor/assets/stylesheets/awesometheme/../simpliq/social.css.scss */
.social:before {
  position: absolute;
  left: 0;
  top: 0;
  display: inline-block;
  margin: 0 5px 0 0;
  font: 24px / 1em "Glyphicons Social Regular";
  font-style: normal;
  font-weight: normal;
  color: #1d1d1b;
  *display: inline;
  *zoom: 1;
  vertical-align: middle;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
}

/* line 42, vendor/assets/stylesheets/awesometheme/../simpliq/social.css.scss */
.social.white:before {
  color: #fff;
}

/* line 45, vendor/assets/stylesheets/awesometheme/../simpliq/social.css.scss */
.social.pinterest:before {
  content: "\E001";
}

/* line 48, vendor/assets/stylesheets/awesometheme/../simpliq/social.css.scss */
.social.dropbox:before {
  content: "\E002";
}

/* line 51, vendor/assets/stylesheets/awesometheme/../simpliq/social.css.scss */
.social.google_plus:before {
  content: "\E003";
}

/* line 54, vendor/assets/stylesheets/awesometheme/../simpliq/social.css.scss */
.social.jolicloud:before {
  content: "\E004";
}

/* line 57, vendor/assets/stylesheets/awesometheme/../simpliq/social.css.scss */
.social.yahoo:before {
  content: "\E005";
}

/* line 60, vendor/assets/stylesheets/awesometheme/../simpliq/social.css.scss */
.social.blogger:before {
  content: "\E006";
}

/* line 63, vendor/assets/stylesheets/awesometheme/../simpliq/social.css.scss */
.social.picasa:before {
  content: "\E007";
}

/* line 66, vendor/assets/stylesheets/awesometheme/../simpliq/social.css.scss */
.social.amazon:before {
  content: "\E008";
}

/* line 69, vendor/assets/stylesheets/awesometheme/../simpliq/social.css.scss */
.social.tumblr:before {
  content: "\E009";
}

/* line 72, vendor/assets/stylesheets/awesometheme/../simpliq/social.css.scss */
.social.wordpress:before {
  content: "\E010";
}

/* line 75, vendor/assets/stylesheets/awesometheme/../simpliq/social.css.scss */
.social.instapaper:before {
  content: "\E011";
}

/* line 78, vendor/assets/stylesheets/awesometheme/../simpliq/social.css.scss */
.social.evernote:before {
  content: "\E012";
}

/* line 81, vendor/assets/stylesheets/awesometheme/../simpliq/social.css.scss */
.social.xing:before {
  content: "\E013";
}

/* line 84, vendor/assets/stylesheets/awesometheme/../simpliq/social.css.scss */
.social.zootool:before {
  content: "\E014";
}

/* line 87, vendor/assets/stylesheets/awesometheme/../simpliq/social.css.scss */
.social.dribbble:before {
  content: "\E015";
}

/* line 90, vendor/assets/stylesheets/awesometheme/../simpliq/social.css.scss */
.social.deviantart:before {
  content: "\E016";
}

/* line 93, vendor/assets/stylesheets/awesometheme/../simpliq/social.css.scss */
.social.read_it_later:before {
  content: "\E017";
}

/* line 96, vendor/assets/stylesheets/awesometheme/../simpliq/social.css.scss */
.social.linked_in:before {
  content: "\E018";
}

/* line 99, vendor/assets/stylesheets/awesometheme/../simpliq/social.css.scss */
.social.forrst:before {
  content: "\E019";
}

/* line 102, vendor/assets/stylesheets/awesometheme/../simpliq/social.css.scss */
.social.pinboard:before {
  content: "\E020";
}

/* line 105, vendor/assets/stylesheets/awesometheme/../simpliq/social.css.scss */
.social.behance:before {
  content: "\E021";
}

/* line 108, vendor/assets/stylesheets/awesometheme/../simpliq/social.css.scss */
.social.github:before {
  content: "\E022";
}

/* line 111, vendor/assets/stylesheets/awesometheme/../simpliq/social.css.scss */
.social.youtube:before {
  content: "\E023";
}

/* line 114, vendor/assets/stylesheets/awesometheme/../simpliq/social.css.scss */
.social.skitch:before {
  content: "\E024";
}

/* line 117, vendor/assets/stylesheets/awesometheme/../simpliq/social.css.scss */
.social.foursquare:before {
  content: "\E025";
}

/* line 120, vendor/assets/stylesheets/awesometheme/../simpliq/social.css.scss */
.social.quora:before {
  content: "\E026";
}

/* line 123, vendor/assets/stylesheets/awesometheme/../simpliq/social.css.scss */
.social.badoo:before {
  content: "\E027";
}

/* line 126, vendor/assets/stylesheets/awesometheme/../simpliq/social.css.scss */
.social.spotify:before {
  content: "\E028";
}

/* line 129, vendor/assets/stylesheets/awesometheme/../simpliq/social.css.scss */
.social.stumbleupon:before {
  content: "\E029";
}

/* line 132, vendor/assets/stylesheets/awesometheme/../simpliq/social.css.scss */
.social.readability:before {
  content: "\E030";
}

/* line 135, vendor/assets/stylesheets/awesometheme/../simpliq/social.css.scss */
.social.facebook:before {
  content: "\E031";
}

/* line 138, vendor/assets/stylesheets/awesometheme/../simpliq/social.css.scss */
.social.twitter:before {
  content: "\E032";
}

/* line 141, vendor/assets/stylesheets/awesometheme/../simpliq/social.css.scss */
.social.instagram:before {
  content: "\E033";
}

/* line 144, vendor/assets/stylesheets/awesometheme/../simpliq/social.css.scss */
.social.posterous_spaces:before {
  content: "\E034";
}

/* line 147, vendor/assets/stylesheets/awesometheme/../simpliq/social.css.scss */
.social.vimeo:before {
  content: "\E035";
}

/* line 150, vendor/assets/stylesheets/awesometheme/../simpliq/social.css.scss */
.social.flickr:before {
  content: "\E036";
}

/* line 153, vendor/assets/stylesheets/awesometheme/../simpliq/social.css.scss */
.social.last_fm:before {
  content: "\E037";
}

/* line 156, vendor/assets/stylesheets/awesometheme/../simpliq/social.css.scss */
.social.rss:before {
  content: "\E038";
}

/* line 159, vendor/assets/stylesheets/awesometheme/../simpliq/social.css.scss */
.social.skype:before {
  content: "\E039";
}

/* line 162, vendor/assets/stylesheets/awesometheme/../simpliq/social.css.scss */
.social.e-mail:before {
  content: "\E040";
}

/* line 165, vendor/assets/stylesheets/awesometheme/../simpliq/social.css.scss */
.social.vine:before {
  content: "\E041";
}

/* line 168, vendor/assets/stylesheets/awesometheme/../simpliq/social.css.scss */
.social.myspace:before {
  content: "\E042";
}

/* line 171, vendor/assets/stylesheets/awesometheme/../simpliq/social.css.scss */
.social.goodreads:before {
  content: "\E043";
}

/* line 174, vendor/assets/stylesheets/awesometheme/../simpliq/social.css.scss */
.social.apple:before {
  content: "\F8FF";
}

/* line 177, vendor/assets/stylesheets/awesometheme/../simpliq/social.css.scss */
.social.windows:before {
  content: "\E045";
}

/* line 180, vendor/assets/stylesheets/awesometheme/../simpliq/social.css.scss */
.social.yelp:before {
  content: "\E046";
}

/* line 183, vendor/assets/stylesheets/awesometheme/../simpliq/social.css.scss */
.social.playstation:before {
  content: "\E047";
}

/* line 186, vendor/assets/stylesheets/awesometheme/../simpliq/social.css.scss */
.social.xbox:before {
  content: "\E048";
}

/* line 189, vendor/assets/stylesheets/awesometheme/../simpliq/social.css.scss */
.social.android:before {
  content: "\E049";
}

/* line 192, vendor/assets/stylesheets/awesometheme/../simpliq/social.css.scss */
.social.ios:before {
  content: "\E050";
}

/* line 197, vendor/assets/stylesheets/awesometheme/../simpliq/social.css.scss */
.social-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  margin: 0 8px 0 0;
  line-height: 14px;
  vertical-align: text-top;
  background-image: url(/simpliq/glyphicons_social.svg);
  background-position: 0 0;
  background-repeat: no-repeat;
  vertical-align: top;
  *display: inline;
  *zoom: 1;
  *margin-right: .3em;
  background-image: url(/simpliq/glyphicons_social.png);
}

/* line 211, vendor/assets/stylesheets/awesometheme/../simpliq/social.css.scss */
.social-icon _:-o-prefocus {
  background-image: url(/simpliq/glyphicons_social.png);
}

/* line 217, vendor/assets/stylesheets/awesometheme/../simpliq/social.css.scss */
.no-inlinesvg .social-icon {
  background-image: url(/simpliq/glyphicons_social.png);
}

/* line 221, vendor/assets/stylesheets/awesometheme/../simpliq/social.css.scss */
.social-icon.white {
  background-image: url(/simpliq/glyphicons_social-white.svg);
  background-image: url(/simpliq/glyphicons_social-white.png);
}

/* line 223, vendor/assets/stylesheets/awesometheme/../simpliq/social.css.scss */
.social-icon.white _:-o-prefocus {
  background-image: url(/simpliq/glyphicons_social-white.png);
}

/* line 229, vendor/assets/stylesheets/awesometheme/../simpliq/social.css.scss */
.no-inlinesvg .social-icon.white {
  background-image: url(/simpliq/glyphicons_social-white.png);
}

/* line 234, vendor/assets/stylesheets/awesometheme/../simpliq/social.css.scss */
.social-icon.pinterest {
  background-position: 0px 0px;
}

/* line 237, vendor/assets/stylesheets/awesometheme/../simpliq/social.css.scss */
.social-icon.dropbox {
  background-position: -48px 0px;
}

/* line 240, vendor/assets/stylesheets/awesometheme/../simpliq/social.css.scss */
.social-icon.google_plus {
  background-position: -96px 0px;
}

/* line 243, vendor/assets/stylesheets/awesometheme/../simpliq/social.css.scss */
.social-icon.jolicloud {
  background-position: -144px 0px;
}

/* line 246, vendor/assets/stylesheets/awesometheme/../simpliq/social.css.scss */
.social-icon.yahoo {
  background-position: -192px 0px;
}

/* line 249, vendor/assets/stylesheets/awesometheme/../simpliq/social.css.scss */
.social-icon.blogger {
  background-position: -240px 0px;
}

/* line 252, vendor/assets/stylesheets/awesometheme/../simpliq/social.css.scss */
.social-icon.picasa {
  background-position: -288px 0px;
}

/* line 255, vendor/assets/stylesheets/awesometheme/../simpliq/social.css.scss */
.social-icon.amazon {
  background-position: -336px 0px;
}

/* line 258, vendor/assets/stylesheets/awesometheme/../simpliq/social.css.scss */
.social-icon.tumblr {
  background-position: -384px 0px;
}

/* line 261, vendor/assets/stylesheets/awesometheme/../simpliq/social.css.scss */
.social-icon.wordpress {
  background-position: -432px 0px;
}

/* line 264, vendor/assets/stylesheets/awesometheme/../simpliq/social.css.scss */
.social-icon.instapaper {
  background-position: 0px -48px;
}

/* line 267, vendor/assets/stylesheets/awesometheme/../simpliq/social.css.scss */
.social-icon.evernote {
  background-position: -48px -48px;
}

/* line 270, vendor/assets/stylesheets/awesometheme/../simpliq/social.css.scss */
.social-icon.xing {
  background-position: -96px -48px;
}

/* line 273, vendor/assets/stylesheets/awesometheme/../simpliq/social.css.scss */
.social-icon.zootool {
  background-position: -144px -48px;
}

/* line 276, vendor/assets/stylesheets/awesometheme/../simpliq/social.css.scss */
.social-icon.dribbble {
  background-position: -192px -48px;
}

/* line 279, vendor/assets/stylesheets/awesometheme/../simpliq/social.css.scss */
.social-icon.deviantart {
  background-position: -240px -48px;
}

/* line 282, vendor/assets/stylesheets/awesometheme/../simpliq/social.css.scss */
.social-icon.read_it_later {
  background-position: -288px -48px;
}

/* line 285, vendor/assets/stylesheets/awesometheme/../simpliq/social.css.scss */
.social-icon.linked_in {
  background-position: -336px -48px;
}

/* line 288, vendor/assets/stylesheets/awesometheme/../simpliq/social.css.scss */
.social-icon.forrst {
  background-position: -384px -48px;
}

/* line 291, vendor/assets/stylesheets/awesometheme/../simpliq/social.css.scss */
.social-icon.pinboard {
  background-position: -432px -48px;
}

/* line 294, vendor/assets/stylesheets/awesometheme/../simpliq/social.css.scss */
.social-icon.behance {
  background-position: 0px -96px;
}

/* line 297, vendor/assets/stylesheets/awesometheme/../simpliq/social.css.scss */
.social-icon.github {
  background-position: -48px -96px;
}

/* line 300, vendor/assets/stylesheets/awesometheme/../simpliq/social.css.scss */
.social-icon.youtube {
  background-position: -96px -96px;
}

/* line 303, vendor/assets/stylesheets/awesometheme/../simpliq/social.css.scss */
.social-icon.skitch {
  background-position: -144px -96px;
}

/* line 306, vendor/assets/stylesheets/awesometheme/../simpliq/social.css.scss */
.social-icon.foursquare {
  background-position: -192px -96px;
}

/* line 309, vendor/assets/stylesheets/awesometheme/../simpliq/social.css.scss */
.social-icon.quora {
  background-position: -240px -96px;
}

/* line 312, vendor/assets/stylesheets/awesometheme/../simpliq/social.css.scss */
.social-icon.badoo {
  background-position: -288px -96px;
}

/* line 315, vendor/assets/stylesheets/awesometheme/../simpliq/social.css.scss */
.social-icon.spotify {
  background-position: -336px -96px;
}

/* line 318, vendor/assets/stylesheets/awesometheme/../simpliq/social.css.scss */
.social-icon.stumbleupon {
  background-position: -384px -96px;
}

/* line 321, vendor/assets/stylesheets/awesometheme/../simpliq/social.css.scss */
.social-icon.readability {
  background-position: -432px -96px;
}

/* line 324, vendor/assets/stylesheets/awesometheme/../simpliq/social.css.scss */
.social-icon.facebook {
  background-position: 0px -144px;
}

/* line 327, vendor/assets/stylesheets/awesometheme/../simpliq/social.css.scss */
.social-icon.twitter {
  background-position: -48px -144px;
}

/* line 330, vendor/assets/stylesheets/awesometheme/../simpliq/social.css.scss */
.social-icon.instagram {
  background-position: -96px -144px;
}

/* line 333, vendor/assets/stylesheets/awesometheme/../simpliq/social.css.scss */
.social-icon.posterous_spaces {
  background-position: -144px -144px;
}

/* line 336, vendor/assets/stylesheets/awesometheme/../simpliq/social.css.scss */
.social-icon.vimeo {
  background-position: -192px -144px;
}

/* line 339, vendor/assets/stylesheets/awesometheme/../simpliq/social.css.scss */
.social-icon.flickr {
  background-position: -240px -144px;
}

/* line 342, vendor/assets/stylesheets/awesometheme/../simpliq/social.css.scss */
.social-icon.last_fm {
  background-position: -288px -144px;
}

/* line 345, vendor/assets/stylesheets/awesometheme/../simpliq/social.css.scss */
.social-icon.rss {
  background-position: -336px -144px;
}

/* line 348, vendor/assets/stylesheets/awesometheme/../simpliq/social.css.scss */
.social-icon.skype {
  background-position: -384px -144px;
}

/* line 351, vendor/assets/stylesheets/awesometheme/../simpliq/social.css.scss */
.social-icon.e-mail {
  background-position: -432px -144px;
}

/* line 354, vendor/assets/stylesheets/awesometheme/../simpliq/social.css.scss */
.social-icon.vine {
  background-position: 0px -192px;
}

/* line 357, vendor/assets/stylesheets/awesometheme/../simpliq/social.css.scss */
.social-icon.myspace {
  background-position: -48px -192px;
}

/* line 360, vendor/assets/stylesheets/awesometheme/../simpliq/social.css.scss */
.social-icon.goodreads {
  background-position: -96px -192px;
}

/* line 363, vendor/assets/stylesheets/awesometheme/../simpliq/social.css.scss */
.social-icon.apple {
  background-position: -144px -192px;
}

/* line 366, vendor/assets/stylesheets/awesometheme/../simpliq/social.css.scss */
.social-icon.windows {
  background-position: -192px -192px;
}

/* line 369, vendor/assets/stylesheets/awesometheme/../simpliq/social.css.scss */
.social-icon.yelp {
  background-position: -240px -192px;
}

/* line 372, vendor/assets/stylesheets/awesometheme/../simpliq/social.css.scss */
.social-icon.playstation {
  background-position: -288px -192px;
}

/* line 375, vendor/assets/stylesheets/awesometheme/../simpliq/social.css.scss */
.social-icon.xbox {
  background-position: -336px -192px;
}

/* line 378, vendor/assets/stylesheets/awesometheme/../simpliq/social.css.scss */
.social-icon.android {
  background-position: -384px -192px;
}

/* line 381, vendor/assets/stylesheets/awesometheme/../simpliq/social.css.scss */
.social-icon.ios {
  background-position: -432px -192px;
}
/*!
 * jQuery UI CSS Framework 1.12.1
 * http://jqueryui.com
 *
 * Copyright jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 *
 * http://api.jqueryui.com/category/theming/
 *
 * To view and modify this theme, visit http://jqueryui.com/themeroller/
 */

/*






 */



/* Component containers
----------------------------------*/
.ui-widget {
	font-family: Arial,Helvetica,sans-serif/*{ffDefault}*/;
	font-size: 1em/*{fsDefault}*/;
}
.ui-widget .ui-widget {
	font-size: 1em;
}
.ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button {
	font-family: Arial,Helvetica,sans-serif/*{ffDefault}*/;
	font-size: 1em;
}
.ui-widget.ui-widget-content {
	border: 1px solid #c5c5c5/*{borderColorDefault}*/;
}
.ui-widget-content {
	border: 1px solid #dddddd/*{borderColorContent}*/;
	background: #ffffff/*{bgColorContent}*/ /*{bgImgUrlContent}*/ /*{bgContentXPos}*/ /*{bgContentYPos}*/ /*{bgContentRepeat}*/;
	color: #333333/*{fcContent}*/;
}
.ui-widget-content a {
	color: #333333/*{fcContent}*/;
}
.ui-widget-header {
	border: 1px solid #dddddd/*{borderColorHeader}*/;
	background: #e9e9e9/*{bgColorHeader}*/ /*{bgImgUrlHeader}*/ /*{bgHeaderXPos}*/ /*{bgHeaderYPos}*/ /*{bgHeaderRepeat}*/;
	color: #333333/*{fcHeader}*/;
	font-weight: bold;
}
.ui-widget-header a {
	color: #333333/*{fcHeader}*/;
}

/* Interaction states
----------------------------------*/
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,

/* We use html here because we need a greater specificity to make sure disabled
works properly when clicked or hovered */
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
	border: 1px solid #c5c5c5/*{borderColorDefault}*/;
	background: #f6f6f6/*{bgColorDefault}*/ /*{bgImgUrlDefault}*/ /*{bgDefaultXPos}*/ /*{bgDefaultYPos}*/ /*{bgDefaultRepeat}*/;
	font-weight: normal/*{fwDefault}*/;
	color: #454545/*{fcDefault}*/;
}
.ui-state-default a,
.ui-state-default a:link,
.ui-state-default a:visited,
a.ui-button,
a:link.ui-button,
a:visited.ui-button,
.ui-button {
	color: #454545/*{fcDefault}*/;
	text-decoration: none;
}
.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/*{borderColorHover}*/;
	background: #ededed/*{bgColorHover}*/ /*{bgImgUrlHover}*/ /*{bgHoverXPos}*/ /*{bgHoverYPos}*/ /*{bgHoverRepeat}*/;
	font-weight: normal/*{fwDefault}*/;
	color: #2b2b2b/*{fcHover}*/;
}
.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/*{fcHover}*/;
	text-decoration: none;
}

.ui-visual-focus {
	box-shadow: 0 0 3px 1px rgb(94, 158, 214);
}
.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/*{borderColorActive}*/;
	background: #007fff/*{bgColorActive}*/ /*{bgImgUrlActive}*/ /*{bgActiveXPos}*/ /*{bgActiveYPos}*/ /*{bgActiveRepeat}*/;
	font-weight: normal/*{fwDefault}*/;
	color: #ffffff/*{fcActive}*/;
}
.ui-icon-background,
.ui-state-active .ui-icon-background {
	border: #003eff/*{borderColorActive}*/;
	background-color: #ffffff/*{fcActive}*/;
}
.ui-state-active a,
.ui-state-active a:link,
.ui-state-active a:visited {
	color: #ffffff/*{fcActive}*/;
	text-decoration: none;
}

/* Interaction Cues
----------------------------------*/
.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
	border: 1px solid #dad55e/*{borderColorHighlight}*/;
	background: #fffa90/*{bgColorHighlight}*/ /*{bgImgUrlHighlight}*/ /*{bgHighlightXPos}*/ /*{bgHighlightYPos}*/ /*{bgHighlightRepeat}*/;
	color: #777620/*{fcHighlight}*/;
}
.ui-state-checked {
	border: 1px solid #dad55e/*{borderColorHighlight}*/;
	background: #fffa90/*{bgColorHighlight}*/;
}
.ui-state-highlight a,
.ui-widget-content .ui-state-highlight a,
.ui-widget-header .ui-state-highlight a {
	color: #777620/*{fcHighlight}*/;
}
.ui-state-error,
.ui-widget-content .ui-state-error,
.ui-widget-header .ui-state-error {
	border: 1px solid #f1a899/*{borderColorError}*/;
	background: #fddfdf/*{bgColorError}*/ /*{bgImgUrlError}*/ /*{bgErrorXPos}*/ /*{bgErrorYPos}*/ /*{bgErrorRepeat}*/;
	color: #5f3f3f/*{fcError}*/;
}
.ui-state-error a,
.ui-widget-content .ui-state-error a,
.ui-widget-header .ui-state-error a {
	color: #5f3f3f/*{fcError}*/;
}
.ui-state-error-text,
.ui-widget-content .ui-state-error-text,
.ui-widget-header .ui-state-error-text {
	color: #5f3f3f/*{fcError}*/;
}
.ui-priority-primary,
.ui-widget-content .ui-priority-primary,
.ui-widget-header .ui-priority-primary {
	font-weight: bold;
}
.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;
}
.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;
}
.ui-state-disabled .ui-icon {
	filter:Alpha(Opacity=35); /* support: IE8 - See #6059 */
}

/* Icons
----------------------------------*/

/* states and images */
.ui-icon {
	width: 16px;
	height: 16px;
}
.ui-icon,
.ui-widget-content .ui-icon {
	background-image: url(/assets/jquery-ui/ui-icons_444444_256x240-f6d8c091e81dfb911fc0815e7c9952c90b361a3f685804be08a5fa2ee6d6198b.png)/*{iconsContent}*/;
}
.ui-widget-header .ui-icon {
	background-image: url(/assets/jquery-ui/ui-icons_444444_256x240-f6d8c091e81dfb911fc0815e7c9952c90b361a3f685804be08a5fa2ee6d6198b.png)/*{iconsHeader}*/;
}
.ui-state-hover .ui-icon,
.ui-state-focus .ui-icon,
.ui-button:hover .ui-icon,
.ui-button:focus .ui-icon {
	background-image: url(/assets/jquery-ui/ui-icons_555555_256x240-c23f23416a84a359723ffe28c6231f7e6edd10de024da40c190f9e0706c70276.png)/*{iconsHover}*/;
}
.ui-state-active .ui-icon,
.ui-button:active .ui-icon {
	background-image: url(/assets/jquery-ui/ui-icons_ffffff_256x240-24221a00d39ccfd2da654907e99b5af8d8dc60b91bfb414b4ca82779f7f9ffb6.png)/*{iconsActive}*/;
}
.ui-state-highlight .ui-icon,
.ui-button .ui-state-highlight.ui-icon {
	background-image: url(/assets/jquery-ui/ui-icons_777620_256x240-0a3bb6e0c499ea585572cbda26b638d08b96a568bfb173f0dce2c9eee4a441b3.png)/*{iconsHighlight}*/;
}
.ui-state-error .ui-icon,
.ui-state-error-text .ui-icon {
	background-image: url(/assets/jquery-ui/ui-icons_cc0000_256x240-c7cf3a680d1476856186d49a361c0b3e09d13a2f4ba4ebd638595bbad9d21c2d.png)/*{iconsError}*/;
}
.ui-button .ui-icon {
	background-image: url(/assets/jquery-ui/ui-icons_777777_256x240-ea4f5d5317b31eaaaf01e3db3357884b418c8b3361019647559c835996ddaedb.png)/*{iconsDefault}*/;
}

/* positioning */
.ui-icon-blank { background-position: 16px 16px; }
.ui-icon-caret-1-n { background-position: 0 0; }
.ui-icon-caret-1-ne { background-position: -16px 0; }
.ui-icon-caret-1-e { background-position: -32px 0; }
.ui-icon-caret-1-se { background-position: -48px 0; }
.ui-icon-caret-1-s { background-position: -65px 0; }
.ui-icon-caret-1-sw { background-position: -80px 0; }
.ui-icon-caret-1-w { background-position: -96px 0; }
.ui-icon-caret-1-nw { background-position: -112px 0; }
.ui-icon-caret-2-n-s { background-position: -128px 0; }
.ui-icon-caret-2-e-w { background-position: -144px 0; }
.ui-icon-triangle-1-n { background-position: 0 -16px; }
.ui-icon-triangle-1-ne { background-position: -16px -16px; }
.ui-icon-triangle-1-e { background-position: -32px -16px; }
.ui-icon-triangle-1-se { background-position: -48px -16px; }
.ui-icon-triangle-1-s { background-position: -65px -16px; }
.ui-icon-triangle-1-sw { background-position: -80px -16px; }
.ui-icon-triangle-1-w { background-position: -96px -16px; }
.ui-icon-triangle-1-nw { background-position: -112px -16px; }
.ui-icon-triangle-2-n-s { background-position: -128px -16px; }
.ui-icon-triangle-2-e-w { background-position: -144px -16px; }
.ui-icon-arrow-1-n { background-position: 0 -32px; }
.ui-icon-arrow-1-ne { background-position: -16px -32px; }
.ui-icon-arrow-1-e { background-position: -32px -32px; }
.ui-icon-arrow-1-se { background-position: -48px -32px; }
.ui-icon-arrow-1-s { background-position: -65px -32px; }
.ui-icon-arrow-1-sw { background-position: -80px -32px; }
.ui-icon-arrow-1-w { background-position: -96px -32px; }
.ui-icon-arrow-1-nw { background-position: -112px -32px; }
.ui-icon-arrow-2-n-s { background-position: -128px -32px; }
.ui-icon-arrow-2-ne-sw { background-position: -144px -32px; }
.ui-icon-arrow-2-e-w { background-position: -160px -32px; }
.ui-icon-arrow-2-se-nw { background-position: -176px -32px; }
.ui-icon-arrowstop-1-n { background-position: -192px -32px; }
.ui-icon-arrowstop-1-e { background-position: -208px -32px; }
.ui-icon-arrowstop-1-s { background-position: -224px -32px; }
.ui-icon-arrowstop-1-w { background-position: -240px -32px; }
.ui-icon-arrowthick-1-n { background-position: 1px -48px; }
.ui-icon-arrowthick-1-ne { background-position: -16px -48px; }
.ui-icon-arrowthick-1-e { background-position: -32px -48px; }
.ui-icon-arrowthick-1-se { background-position: -48px -48px; }
.ui-icon-arrowthick-1-s { background-position: -64px -48px; }
.ui-icon-arrowthick-1-sw { background-position: -80px -48px; }
.ui-icon-arrowthick-1-w { background-position: -96px -48px; }
.ui-icon-arrowthick-1-nw { background-position: -112px -48px; }
.ui-icon-arrowthick-2-n-s { background-position: -128px -48px; }
.ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; }
.ui-icon-arrowthick-2-e-w { background-position: -160px -48px; }
.ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; }
.ui-icon-arrowthickstop-1-n { background-position: -192px -48px; }
.ui-icon-arrowthickstop-1-e { background-position: -208px -48px; }
.ui-icon-arrowthickstop-1-s { background-position: -224px -48px; }
.ui-icon-arrowthickstop-1-w { background-position: -240px -48px; }
.ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; }
.ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; }
.ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; }
.ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; }
.ui-icon-arrowreturn-1-w { background-position: -64px -64px; }
.ui-icon-arrowreturn-1-n { background-position: -80px -64px; }
.ui-icon-arrowreturn-1-e { background-position: -96px -64px; }
.ui-icon-arrowreturn-1-s { background-position: -112px -64px; }
.ui-icon-arrowrefresh-1-w { background-position: -128px -64px; }
.ui-icon-arrowrefresh-1-n { background-position: -144px -64px; }
.ui-icon-arrowrefresh-1-e { background-position: -160px -64px; }
.ui-icon-arrowrefresh-1-s { background-position: -176px -64px; }
.ui-icon-arrow-4 { background-position: 0 -80px; }
.ui-icon-arrow-4-diag { background-position: -16px -80px; }
.ui-icon-extlink { background-position: -32px -80px; }
.ui-icon-newwin { background-position: -48px -80px; }
.ui-icon-refresh { background-position: -64px -80px; }
.ui-icon-shuffle { background-position: -80px -80px; }
.ui-icon-transfer-e-w { background-position: -96px -80px; }
.ui-icon-transferthick-e-w { background-position: -112px -80px; }
.ui-icon-folder-collapsed { background-position: 0 -96px; }
.ui-icon-folder-open { background-position: -16px -96px; }
.ui-icon-document { background-position: -32px -96px; }
.ui-icon-document-b { background-position: -48px -96px; }
.ui-icon-note { background-position: -64px -96px; }
.ui-icon-mail-closed { background-position: -80px -96px; }
.ui-icon-mail-open { background-position: -96px -96px; }
.ui-icon-suitcase { background-position: -112px -96px; }
.ui-icon-comment { background-position: -128px -96px; }
.ui-icon-person { background-position: -144px -96px; }
.ui-icon-print { background-position: -160px -96px; }
.ui-icon-trash { background-position: -176px -96px; }
.ui-icon-locked { background-position: -192px -96px; }
.ui-icon-unlocked { background-position: -208px -96px; }
.ui-icon-bookmark { background-position: -224px -96px; }
.ui-icon-tag { background-position: -240px -96px; }
.ui-icon-home { background-position: 0 -112px; }
.ui-icon-flag { background-position: -16px -112px; }
.ui-icon-calendar { background-position: -32px -112px; }
.ui-icon-cart { background-position: -48px -112px; }
.ui-icon-pencil { background-position: -64px -112px; }
.ui-icon-clock { background-position: -80px -112px; }
.ui-icon-disk { background-position: -96px -112px; }
.ui-icon-calculator { background-position: -112px -112px; }
.ui-icon-zoomin { background-position: -128px -112px; }
.ui-icon-zoomout { background-position: -144px -112px; }
.ui-icon-search { background-position: -160px -112px; }
.ui-icon-wrench { background-position: -176px -112px; }
.ui-icon-gear { background-position: -192px -112px; }
.ui-icon-heart { background-position: -208px -112px; }
.ui-icon-star { background-position: -224px -112px; }
.ui-icon-link { background-position: -240px -112px; }
.ui-icon-cancel { background-position: 0 -128px; }
.ui-icon-plus { background-position: -16px -128px; }
.ui-icon-plusthick { background-position: -32px -128px; }
.ui-icon-minus { background-position: -48px -128px; }
.ui-icon-minusthick { background-position: -64px -128px; }
.ui-icon-close { background-position: -80px -128px; }
.ui-icon-closethick { background-position: -96px -128px; }
.ui-icon-key { background-position: -112px -128px; }
.ui-icon-lightbulb { background-position: -128px -128px; }
.ui-icon-scissors { background-position: -144px -128px; }
.ui-icon-clipboard { background-position: -160px -128px; }
.ui-icon-copy { background-position: -176px -128px; }
.ui-icon-contact { background-position: -192px -128px; }
.ui-icon-image { background-position: -208px -128px; }
.ui-icon-video { background-position: -224px -128px; }
.ui-icon-script { background-position: -240px -128px; }
.ui-icon-alert { background-position: 0 -144px; }
.ui-icon-info { background-position: -16px -144px; }
.ui-icon-notice { background-position: -32px -144px; }
.ui-icon-help { background-position: -48px -144px; }
.ui-icon-check { background-position: -64px -144px; }
.ui-icon-bullet { background-position: -80px -144px; }
.ui-icon-radio-on { background-position: -96px -144px; }
.ui-icon-radio-off { background-position: -112px -144px; }
.ui-icon-pin-w { background-position: -128px -144px; }
.ui-icon-pin-s { background-position: -144px -144px; }
.ui-icon-play { background-position: 0 -160px; }
.ui-icon-pause { background-position: -16px -160px; }
.ui-icon-seek-next { background-position: -32px -160px; }
.ui-icon-seek-prev { background-position: -48px -160px; }
.ui-icon-seek-end { background-position: -64px -160px; }
.ui-icon-seek-start { background-position: -80px -160px; }
/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
.ui-icon-seek-first { background-position: -80px -160px; }
.ui-icon-stop { background-position: -96px -160px; }
.ui-icon-eject { background-position: -112px -160px; }
.ui-icon-volume-off { background-position: -128px -160px; }
.ui-icon-volume-on { background-position: -144px -160px; }
.ui-icon-power { background-position: 0 -176px; }
.ui-icon-signal-diag { background-position: -16px -176px; }
.ui-icon-signal { background-position: -32px -176px; }
.ui-icon-battery-0 { background-position: -48px -176px; }
.ui-icon-battery-1 { background-position: -64px -176px; }
.ui-icon-battery-2 { background-position: -80px -176px; }
.ui-icon-battery-3 { background-position: -96px -176px; }
.ui-icon-circle-plus { background-position: 0 -192px; }
.ui-icon-circle-minus { background-position: -16px -192px; }
.ui-icon-circle-close { background-position: -32px -192px; }
.ui-icon-circle-triangle-e { background-position: -48px -192px; }
.ui-icon-circle-triangle-s { background-position: -64px -192px; }
.ui-icon-circle-triangle-w { background-position: -80px -192px; }
.ui-icon-circle-triangle-n { background-position: -96px -192px; }
.ui-icon-circle-arrow-e { background-position: -112px -192px; }
.ui-icon-circle-arrow-s { background-position: -128px -192px; }
.ui-icon-circle-arrow-w { background-position: -144px -192px; }
.ui-icon-circle-arrow-n { background-position: -160px -192px; }
.ui-icon-circle-zoomin { background-position: -176px -192px; }
.ui-icon-circle-zoomout { background-position: -192px -192px; }
.ui-icon-circle-check { background-position: -208px -192px; }
.ui-icon-circlesmall-plus { background-position: 0 -208px; }
.ui-icon-circlesmall-minus { background-position: -16px -208px; }
.ui-icon-circlesmall-close { background-position: -32px -208px; }
.ui-icon-squaresmall-plus { background-position: -48px -208px; }
.ui-icon-squaresmall-minus { background-position: -64px -208px; }
.ui-icon-squaresmall-close { background-position: -80px -208px; }
.ui-icon-grip-dotted-vertical { background-position: 0 -224px; }
.ui-icon-grip-dotted-horizontal { background-position: -16px -224px; }
.ui-icon-grip-solid-vertical { background-position: -32px -224px; }
.ui-icon-grip-solid-horizontal { background-position: -48px -224px; }
.ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; }
.ui-icon-grip-diagonal-se { background-position: -80px -224px; }


/* Misc visuals
----------------------------------*/

/* Corner radius */
.ui-corner-all,
.ui-corner-top,
.ui-corner-left,
.ui-corner-tl {
	border-top-left-radius: 3px/*{cornerRadius}*/;
}
.ui-corner-all,
.ui-corner-top,
.ui-corner-right,
.ui-corner-tr {
	border-top-right-radius: 3px/*{cornerRadius}*/;
}
.ui-corner-all,
.ui-corner-bottom,
.ui-corner-left,
.ui-corner-bl {
	border-bottom-left-radius: 3px/*{cornerRadius}*/;
}
.ui-corner-all,
.ui-corner-bottom,
.ui-corner-right,
.ui-corner-br {
	border-bottom-right-radius: 3px/*{cornerRadius}*/;
}

/* Overlays */
.ui-widget-overlay {
	background: #aaaaaa/*{bgColorOverlay}*/ /*{bgImgUrlOverlay}*/ /*{bgOverlayXPos}*/ /*{bgOverlayYPos}*/ /*{bgOverlayRepeat}*/;
	opacity: .3/*{opacityOverlay}*/;
	filter: Alpha(Opacity=30)/*{opacityFilterOverlay}*/; /* support: IE8 */
}
.ui-widget-shadow {
	-webkit-box-shadow: 0/*{offsetLeftShadow}*/ 0/*{offsetTopShadow}*/ 5px/*{thicknessShadow}*/ #666666/*{bgColorShadow}*/;
	box-shadow: 0/*{offsetLeftShadow}*/ 0/*{offsetTopShadow}*/ 5px/*{thicknessShadow}*/ #666666/*{bgColorShadow}*/;
}
/*!
 * jQuery UI CSS Framework 1.12.1
 * http://jqueryui.com
 *
 * Copyright jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 *
 * http://api.jqueryui.com/category/theming/
 */
/*

 */

/* Layout helpers
----------------------------------*/
.ui-helper-hidden {
	display: none;
}
.ui-helper-hidden-accessible {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}
.ui-helper-reset {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	line-height: 1.3;
	text-decoration: none;
	font-size: 100%;
	list-style: none;
}
.ui-helper-clearfix:before,
.ui-helper-clearfix:after {
	content: "";
	display: table;
	border-collapse: collapse;
}
.ui-helper-clearfix:after {
	clear: both;
}
.ui-helper-zfix {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	position: absolute;
	opacity: 0;
	filter:Alpha(Opacity=0); /* support: IE8 */
}

.ui-front {
	z-index: 100;
}


/* Interaction Cues
----------------------------------*/
.ui-state-disabled {
	cursor: default !important;
	pointer-events: none;
}


/* Icons
----------------------------------*/
.ui-icon {
	display: inline-block;
	vertical-align: middle;
	margin-top: -.25em;
	position: relative;
	text-indent: -99999px;
	overflow: hidden;
	background-repeat: no-repeat;
}

.ui-widget-icon-block {
	left: 50%;
	margin-left: -8px;
	display: block;
}

/* Misc visuals
----------------------------------*/

/* Overlays */
.ui-widget-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
/*!
 * jQuery UI Accordion 1.12.1
 * http://jqueryui.com
 *
 * Copyright jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 *
 * http://api.jqueryui.com/accordion/#theming
 */
/*

 */
.ui-accordion .ui-accordion-header {
	display: block;
	cursor: pointer;
	position: relative;
	margin: 2px 0 0 0;
	padding: .5em .5em .5em .7em;
	font-size: 100%;
}
.ui-accordion .ui-accordion-content {
	padding: 1em 2.2em;
	border-top: 0;
	overflow: auto;
}
/*!
 * jQuery UI Autocomplete 1.12.1
 * http://jqueryui.com
 *
 * Copyright jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 *
 * http://api.jqueryui.com/autocomplete/#theming
 */
/*

 */
.ui-autocomplete {
	position: absolute;
	top: 0;
	left: 0;
	cursor: default;
}
/*!
 * jQuery UI Button 1.12.1
 * http://jqueryui.com
 *
 * Copyright jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 *
 * http://api.jqueryui.com/button/#theming
 */
/*

 */
.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;
}

.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 */
.ui-button-icon-only {
	width: 2em;
	box-sizing: border-box;
	text-indent: -9999px;
	white-space: nowrap;
}

/* no icon support for input elements */
input.ui-button.ui-button-icon-only {
	text-indent: 0;
}

/* button icon element(s) */
.ui-button-icon-only .ui-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -8px;
	margin-left: -8px;
}

.ui-button.ui-icon-notext .ui-icon {
	padding: 0;
	width: 2.1em;
	height: 2.1em;
	text-indent: -9999px;
	white-space: nowrap;

}

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 */
input.ui-button::-moz-focus-inner,
button.ui-button::-moz-focus-inner {
	border: 0;
	padding: 0;
}
/*!
 * jQuery UI Checkboxradio 1.12.1
 * http://jqueryui.com
 *
 * Copyright jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 *
 * http://api.jqueryui.com/checkboxradio/#theming
 */
/*

 */

.ui-checkboxradio-label .ui-icon-background {
	box-shadow: inset 1px 1px 1px #ccc;
	border-radius: .12em;
	border: none;
}
.ui-checkboxradio-radio-label .ui-icon-background {
	width: 16px;
	height: 16px;
	border-radius: 1em;
	overflow: visible;
	border: none;
}
.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;
}
.ui-checkboxradio-disabled {
	pointer-events: none;
}
/*!
 * jQuery UI Controlgroup 1.12.1
 * http://jqueryui.com
 *
 * Copyright jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 *
 * http://api.jqueryui.com/controlgroup/#theming
 */
/*

 */

.ui-controlgroup {
	vertical-align: middle;
	display: inline-block;
}
.ui-controlgroup > .ui-controlgroup-item {
	float: left;
	margin-left: 0;
	margin-right: 0;
}
.ui-controlgroup > .ui-controlgroup-item:focus,
.ui-controlgroup > .ui-controlgroup-item.ui-visual-focus {
	z-index: 9999;
}
.ui-controlgroup-vertical > .ui-controlgroup-item {
	display: block;
	float: none;
	width: 100%;
	margin-top: 0;
	margin-bottom: 0;
	text-align: left;
}
.ui-controlgroup-vertical .ui-controlgroup-item {
	box-sizing: border-box;
}
.ui-controlgroup .ui-controlgroup-label {
	padding: .4em 1em;
}
.ui-controlgroup .ui-controlgroup-label span {
	font-size: 80%;
}
.ui-controlgroup-horizontal .ui-controlgroup-label + .ui-controlgroup-item {
	border-left: none;
}
.ui-controlgroup-vertical .ui-controlgroup-label + .ui-controlgroup-item {
	border-top: none;
}
.ui-controlgroup-horizontal .ui-controlgroup-label.ui-widget-content {
	border-right: none;
}
.ui-controlgroup-vertical .ui-controlgroup-label.ui-widget-content {
	border-bottom: none;
}

/* Spinner specific style fixes */
.ui-controlgroup-vertical .ui-spinner-input {

	/* Support: IE8 only, Android < 4.4 only */
	width: 75%;
	width: calc( 100% - 2.4em );
}
.ui-controlgroup-vertical .ui-spinner .ui-spinner-up {
	border-top-style: solid;
}

/*!
 * jQuery UI Datepicker 1.12.1
 * http://jqueryui.com
 *
 * Copyright jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 *
 * http://api.jqueryui.com/datepicker/#theming
 */
/*

 */
.ui-datepicker {
	width: 17em;
	padding: .2em .2em 0;
	display: none;
}
.ui-datepicker .ui-datepicker-header {
	position: relative;
	padding: .2em 0;
}
.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
	position: absolute;
	top: 2px;
	width: 1.8em;
	height: 1.8em;
}
.ui-datepicker .ui-datepicker-prev-hover,
.ui-datepicker .ui-datepicker-next-hover {
	top: 1px;
}
.ui-datepicker .ui-datepicker-prev {
	left: 2px;
}
.ui-datepicker .ui-datepicker-next {
	right: 2px;
}
.ui-datepicker .ui-datepicker-prev-hover {
	left: 1px;
}
.ui-datepicker .ui-datepicker-next-hover {
	right: 1px;
}
.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;
}
.ui-datepicker .ui-datepicker-title {
	margin: 0 2.3em;
	line-height: 1.8em;
	text-align: center;
}
.ui-datepicker .ui-datepicker-title select {
	font-size: 1em;
	margin: 1px 0;
}
.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
	width: 45%;
}
.ui-datepicker table {
	width: 100%;
	font-size: .9em;
	border-collapse: collapse;
	margin: 0 0 .4em;
}
.ui-datepicker th {
	padding: .7em .3em;
	text-align: center;
	font-weight: bold;
	border: 0;
}
.ui-datepicker td {
	border: 0;
	padding: 1px;
}
.ui-datepicker td span,
.ui-datepicker td a {
	display: block;
	padding: .2em;
	text-align: right;
	text-decoration: none;
}
.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;
}
.ui-datepicker .ui-datepicker-buttonpane button {
	float: right;
	margin: .5em .2em .4em;
	cursor: pointer;
	padding: .2em .6em .3em .6em;
	width: auto;
	overflow: visible;
}
.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
	float: left;
}

/* with multiple calendars */
.ui-datepicker.ui-datepicker-multi {
	width: auto;
}
.ui-datepicker-multi .ui-datepicker-group {
	float: left;
}
.ui-datepicker-multi .ui-datepicker-group table {
	width: 95%;
	margin: 0 auto .4em;
}
.ui-datepicker-multi-2 .ui-datepicker-group {
	width: 50%;
}
.ui-datepicker-multi-3 .ui-datepicker-group {
	width: 33.3%;
}
.ui-datepicker-multi-4 .ui-datepicker-group {
	width: 25%;
}
.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
	border-left-width: 0;
}
.ui-datepicker-multi .ui-datepicker-buttonpane {
	clear: left;
}
.ui-datepicker-row-break {
	clear: both;
	width: 100%;
	font-size: 0;
}

/* RTL support */
.ui-datepicker-rtl {
	direction: rtl;
}
.ui-datepicker-rtl .ui-datepicker-prev {
	right: 2px;
	left: auto;
}
.ui-datepicker-rtl .ui-datepicker-next {
	left: 2px;
	right: auto;
}
.ui-datepicker-rtl .ui-datepicker-prev:hover {
	right: 1px;
	left: auto;
}
.ui-datepicker-rtl .ui-datepicker-next:hover {
	left: 1px;
	right: auto;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane {
	clear: right;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane button {
	float: left;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,
.ui-datepicker-rtl .ui-datepicker-group {
	float: right;
}
.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 */
.ui-datepicker .ui-icon {
	display: block;
	text-indent: -99999px;
	overflow: hidden;
	background-repeat: no-repeat;
	left: .5em;
	top: .3em;
}
/*!
 * jQuery UI Dialog 1.12.1
 * http://jqueryui.com
 *
 * Copyright jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 *
 * http://api.jqueryui.com/dialog/#theming
 */
/*

 */
.ui-dialog {
	position: absolute;
	top: 0;
	left: 0;
	padding: .2em;
	outline: 0;
}
.ui-dialog .ui-dialog-titlebar {
	padding: .4em 1em;
	position: relative;
}
.ui-dialog .ui-dialog-title {
	float: left;
	margin: .1em 0;
	white-space: nowrap;
	width: 90%;
	overflow: hidden;
	text-overflow: ellipsis;
}
.ui-dialog .ui-dialog-titlebar-close {
	position: absolute;
	right: .3em;
	top: 50%;
	width: 20px;
	margin: -10px 0 0 0;
	padding: 1px;
	height: 20px;
}
.ui-dialog .ui-dialog-content {
	position: relative;
	border: 0;
	padding: .5em 1em;
	background: none;
	overflow: auto;
}
.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;
}
.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
	float: right;
}
.ui-dialog .ui-dialog-buttonpane button {
	margin: .5em .4em .5em 0;
	cursor: pointer;
}
.ui-dialog .ui-resizable-n {
	height: 2px;
	top: 0;
}
.ui-dialog .ui-resizable-e {
	width: 2px;
	right: 0;
}
.ui-dialog .ui-resizable-s {
	height: 2px;
	bottom: 0;
}
.ui-dialog .ui-resizable-w {
	width: 2px;
	left: 0;
}
.ui-dialog .ui-resizable-se,
.ui-dialog .ui-resizable-sw,
.ui-dialog .ui-resizable-ne,
.ui-dialog .ui-resizable-nw {
	width: 7px;
	height: 7px;
}
.ui-dialog .ui-resizable-se {
	right: 0;
	bottom: 0;
}
.ui-dialog .ui-resizable-sw {
	left: 0;
	bottom: 0;
}
.ui-dialog .ui-resizable-ne {
	right: 0;
	top: 0;
}
.ui-dialog .ui-resizable-nw {
	left: 0;
	top: 0;
}
.ui-draggable .ui-dialog-titlebar {
	cursor: move;
}
/*!
 * jQuery UI Draggable 1.12.1
 * http://jqueryui.com
 *
 * Copyright jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 */
/*

 */
.ui-draggable-handle {
	-ms-touch-action: none;
	touch-action: none;
}
/*!
 * jQuery UI Menu 1.12.1
 * http://jqueryui.com
 *
 * Copyright jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 *
 * http://api.jqueryui.com/menu/#theming
 */
/*

 */
.ui-menu {
	list-style: none;
	padding: 0;
	margin: 0;
	display: block;
	outline: 0;
}
.ui-menu .ui-menu {
	position: absolute;
}
.ui-menu .ui-menu-item {
	margin: 0;
	cursor: pointer;
	/* support: IE10, see #8844 */
	list-style-image: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7");
}
.ui-menu .ui-menu-item-wrapper {
	position: relative;
	padding: 3px 1em 3px .4em;
}
.ui-menu .ui-menu-divider {
	margin: 5px 0;
	height: 0;
	font-size: 0;
	line-height: 0;
	border-width: 1px 0 0 0;
}
.ui-menu .ui-state-focus,
.ui-menu .ui-state-active {
	margin: -1px;
}

/* icon support */
.ui-menu-icons {
	position: relative;
}
.ui-menu-icons .ui-menu-item-wrapper {
	padding-left: 2em;
}

/* left-aligned */
.ui-menu .ui-icon {
	position: absolute;
	top: 0;
	bottom: 0;
	left: .2em;
	margin: auto 0;
}

/* right-aligned */
.ui-menu .ui-menu-icon {
	left: auto;
	right: 0;
}
/*!
 * jQuery UI Progressbar 1.12.1
 * http://jqueryui.com
 *
 * Copyright jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 *
 * http://api.jqueryui.com/progressbar/#theming
 */
/*

 */
.ui-progressbar {
	height: 2em;
	text-align: left;
	overflow: hidden;
}
.ui-progressbar .ui-progressbar-value {
	margin: -1px;
	height: 100%;
}
.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;
}
.ui-progressbar-indeterminate .ui-progressbar-value {
	background-image: none;
}
/*!
 * jQuery UI Resizable 1.12.1
 * http://jqueryui.com
 *
 * Copyright jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 */
/*

 */
.ui-resizable {
	position: relative;
}
.ui-resizable-handle {
	position: absolute;
	font-size: 0.1px;
	display: block;
	-ms-touch-action: none;
	touch-action: none;
}
.ui-resizable-disabled .ui-resizable-handle,
.ui-resizable-autohide .ui-resizable-handle {
	display: none;
}
.ui-resizable-n {
	cursor: n-resize;
	height: 7px;
	width: 100%;
	top: -5px;
	left: 0;
}
.ui-resizable-s {
	cursor: s-resize;
	height: 7px;
	width: 100%;
	bottom: -5px;
	left: 0;
}
.ui-resizable-e {
	cursor: e-resize;
	width: 7px;
	right: -5px;
	top: 0;
	height: 100%;
}
.ui-resizable-w {
	cursor: w-resize;
	width: 7px;
	left: -5px;
	top: 0;
	height: 100%;
}
.ui-resizable-se {
	cursor: se-resize;
	width: 12px;
	height: 12px;
	right: 1px;
	bottom: 1px;
}
.ui-resizable-sw {
	cursor: sw-resize;
	width: 9px;
	height: 9px;
	left: -5px;
	bottom: -5px;
}
.ui-resizable-nw {
	cursor: nw-resize;
	width: 9px;
	height: 9px;
	left: -5px;
	top: -5px;
}
.ui-resizable-ne {
	cursor: ne-resize;
	width: 9px;
	height: 9px;
	right: -5px;
	top: -5px;
}
/*!
 * jQuery UI Selectable 1.12.1
 * http://jqueryui.com
 *
 * Copyright jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 */
/*

 */
.ui-selectable {
	-ms-touch-action: none;
	touch-action: none;
}
.ui-selectable-helper {
	position: absolute;
	z-index: 100;
	border: 1px dotted black;
}
/*!
 * jQuery UI Selectmenu 1.12.1
 * http://jqueryui.com
 *
 * Copyright jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 *
 * http://api.jqueryui.com/selectmenu/#theming
 */
/*

 */
.ui-selectmenu-menu {
	padding: 0;
	margin: 0;
	position: absolute;
	top: 0;
	left: 0;
	display: none;
}
.ui-selectmenu-menu .ui-menu {
	overflow: auto;
	overflow-x: hidden;
	padding-bottom: 1px;
}
.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;
}
.ui-selectmenu-open {
	display: block;
}
.ui-selectmenu-text {
	display: block;
	margin-right: 20px;
	overflow: hidden;
	text-overflow: ellipsis;
}
.ui-selectmenu-button.ui-button {
	text-align: left;
	white-space: nowrap;
	width: 14em;
}
.ui-selectmenu-icon.ui-icon {
	float: right;
	margin-top: 0;
}
/*!
 * jQuery UI Sortable 1.12.1
 * http://jqueryui.com
 *
 * Copyright jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 */
/*

 */
.ui-sortable-handle {
	-ms-touch-action: none;
	touch-action: none;
}
/*!
 * jQuery UI Slider 1.12.1
 * http://jqueryui.com
 *
 * Copyright jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 *
 * http://api.jqueryui.com/slider/#theming
 */
/*

 */
.ui-slider {
	position: relative;
	text-align: left;
}
.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;
}
.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 */
.ui-slider.ui-state-disabled .ui-slider-handle,
.ui-slider.ui-state-disabled .ui-slider-range {
	filter: inherit;
}

.ui-slider-horizontal {
	height: .8em;
}
.ui-slider-horizontal .ui-slider-handle {
	top: -.3em;
	margin-left: -.6em;
}
.ui-slider-horizontal .ui-slider-range {
	top: 0;
	height: 100%;
}
.ui-slider-horizontal .ui-slider-range-min {
	left: 0;
}
.ui-slider-horizontal .ui-slider-range-max {
	right: 0;
}

.ui-slider-vertical {
	width: .8em;
	height: 100px;
}
.ui-slider-vertical .ui-slider-handle {
	left: -.3em;
	margin-left: 0;
	margin-bottom: -.6em;
}
.ui-slider-vertical .ui-slider-range {
	left: 0;
	width: 100%;
}
.ui-slider-vertical .ui-slider-range-min {
	bottom: 0;
}
.ui-slider-vertical .ui-slider-range-max {
	top: 0;
}
/*!
 * jQuery UI Spinner 1.12.1
 * http://jqueryui.com
 *
 * Copyright jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 *
 * http://api.jqueryui.com/spinner/#theming
 */
/*

 */
.ui-spinner {
	position: relative;
	display: inline-block;
	overflow: hidden;
	padding: 0;
	vertical-align: middle;
}
.ui-spinner-input {
	border: none;
	background: none;
	color: inherit;
	padding: .222em 0;
	margin: .2em 0;
	vertical-align: middle;
	margin-left: .4em;
	margin-right: 2em;
}
.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 */
.ui-spinner a.ui-spinner-button {
	border-top-style: none;
	border-bottom-style: none;
	border-right-style: none;
}
.ui-spinner-up {
	top: 0;
}
.ui-spinner-down {
	bottom: 0;
}
/*!
 * jQuery UI Tabs 1.12.1
 * http://jqueryui.com
 *
 * Copyright jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 *
 * http://api.jqueryui.com/tabs/#theming
 */
/*

 */
.ui-tabs {
	position: relative;/* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */
	padding: .2em;
}
.ui-tabs .ui-tabs-nav {
	margin: 0;
	padding: .2em .2em 0;
}
.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;
}
.ui-tabs .ui-tabs-nav .ui-tabs-anchor {
	float: left;
	padding: .5em 1em;
	text-decoration: none;
}
.ui-tabs .ui-tabs-nav li.ui-tabs-active {
	margin-bottom: -1px;
	padding-bottom: 1px;
}
.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;
}
.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor {
	cursor: pointer;
}
.ui-tabs .ui-tabs-panel {
	display: block;
	border-width: 0;
	padding: 1em 1.4em;
	background: none;
}
/*!
 * jQuery UI Tooltip 1.12.1
 * http://jqueryui.com
 *
 * Copyright jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 *
 * http://api.jqueryui.com/tooltip/#theming
 */
/*

 */
.ui-tooltip {
	padding: 8px;
	position: absolute;
	z-index: 9999;
	max-width: 300px;
}
body .ui-tooltip {
	border-width: 2px;
}
/*!
 * jQuery UI CSS Framework 1.12.1
 * http://jqueryui.com
 *
 * Copyright jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 *
 * http://api.jqueryui.com/category/theming/
 */
/*




















 */
/*!
 * jQuery UI CSS Framework 1.12.1
 * http://jqueryui.com
 *
 * Copyright jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 *
 * http://api.jqueryui.com/category/theming/
 */
/*


 */

@media screen and (max-width:979px){div.pick-a-color-markup .hex-pound{padding:8px 5px 0px 5px;min-height:30px}}
@media screen and (max-width:979px){div.pick-a-color-markup .pick-a-color{font-size:17.5px;padding:9px}}
div.pick-a-color-markup .btn-group .color-dropdown{padding:3px 5px}div.pick-a-color-markup .btn-group .color-dropdown.no-hex{-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px}
@media screen and (max-width:979px){div.pick-a-color-markup .btn-group .color-dropdown{height:40px}}
div.pick-a-color-markup .color-preview{border:1px solid #ccc;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:inset 0 0 2px 2px rgba(0,0,0,0.075);-moz-box-shadow:inset 0 0 2px 2px rgba(0,0,0,0.075);box-shadow:inset 0 0 2px 2px rgba(0,0,0,0.075);height:1.429em;width:1.429em;display:inline-block;cursor:pointer;margin-right:5px}div.pick-a-color-markup .color-preview.current-color{margin-bottom:-5px}
@media screen and (max-width:979px){div.pick-a-color-markup .color-preview{height:1.875em;width:1.875em}}
div.pick-a-color-markup .color-menu{text-align:left;padding:5px 0px;width:330px;font-size:14px;}@media screen and (max-width:979px){div.pick-a-color-markup .color-menu{left:-242px;width:293px}}div.pick-a-color-markup .color-menu.small{width:100px}@media screen and (max-width:979px){div.pick-a-color-markup .color-menu.small{left:-105px}}
div.pick-a-color-markup .color-menu.no-hex{left:0px}
div.pick-a-color-markup .color-menu ul{padding:0px;margin:0px}
div.pick-a-color-markup .color-menu li{list-style-type:none;padding:0px;margin:0px}
div.pick-a-color-markup .color-menu .color-preview{vertical-align:middle;margin:0px}@media screen and (max-width:979px){div.pick-a-color-markup .color-menu .color-preview{height:35px;width:35px}}div.pick-a-color-markup .color-menu .color-preview.current-color,div.pick-a-color-markup .color-menu .color-preview.white{background-color:#fff}
div.pick-a-color-markup .color-menu .color-preview.red{background-color:#f00}
div.pick-a-color-markup .color-menu .color-preview.orange{background-color:#f60}
div.pick-a-color-markup .color-menu .color-preview.yellow{background-color:#ff0}
div.pick-a-color-markup .color-menu .color-preview.green{background-color:#008000}
div.pick-a-color-markup .color-menu .color-preview.blue{background-color:#00f}
div.pick-a-color-markup .color-menu .color-preview.indigo{background-color:#4a0080}
div.pick-a-color-markup .color-menu .color-preview.violet{background-color:#ee81ee}
div.pick-a-color-markup .color-menu .color-preview.purple{background-color:#80007f}
div.pick-a-color-markup .color-menu .color-preview.black{background-color:#000}
div.pick-a-color-markup .color-menu .basicColors-content li>a,div.pick-a-color-markup .color-menu .savedColors-content li>a{padding:5px 15px 3px 15px;cursor:default;min-height:25px}@media screen and (max-width:979px){div.pick-a-color-markup .color-menu .basicColors-content li>a,div.pick-a-color-markup .color-menu .savedColors-content li>a{min-height:40px}}
div.pick-a-color-markup .color-menu .basicColors-content li:hover a,div.pick-a-color-markup .color-menu .savedColors-content li:hover a{background-color:#eee;-webkit-transition:background-color .5s ease-in;-moz-transition:background-color .5s ease-in;-o-transition:background-color .5s ease-in;transition:background-color .5s ease-in;color:#333;background-image:none;filter:none}@media screen and (max-width:979px){div.pick-a-color-markup .color-menu .basicColors-content li:hover a,div.pick-a-color-markup .color-menu .savedColors-content li:hover a{background-color:#fff}}
div.pick-a-color-markup .color-menu .btn.color-select{margin:0px 5px;height:22px;padding:0px 5px;margin-top:0px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}@media screen and (max-width:979px){div.pick-a-color-markup .color-menu .btn.color-select{height:37px}}
div.pick-a-color-markup .color-menu-instructions,div.pick-a-color-markup .advanced-instructions{text-align:center;padding:0px 6px;margin:0px;font-size:14px;font-weight:normal}@media screen and (min-width:979px){div.pick-a-color-markup .color-menu-instructions,div.pick-a-color-markup .advanced-instructions{display:none}}
div.pick-a-color-markup .color-label{vertical-align:middle;margin:0px;margin-left:10px;cursor:pointer}@media screen and (max-width:979px){div.pick-a-color-markup .color-label{margin-left:8px}}
div.pick-a-color-markup .color-box{height:20px;width:200px;position:absolute;left:115px;border:1px solid #ccc;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:inset 0 0 2px 2px rgba(0,0,0,0.075);-moz-box-shadow:inset 0 0 2px 2px rgba(0,0,0,0.075);box-shadow:inset 0 0 2px 2px rgba(0,0,0,0.075);cursor:pointer}@media screen and (max-width:979px){div.pick-a-color-markup .color-box{width:160px;height:35px}}
div.pick-a-color-markup .black .highlight-band-stripe{background-color:#fff}
div.pick-a-color-markup .spectrum-white{background-color:#808080;background-image:-moz-linear-gradient(left, #fff, #808080);background-image:-webkit-gradient(linear, 0 0, 100% 0, from(#fff), to(#808080));background-image:-webkit-linear-gradient(left, #fff, #808080);background-image:-o-linear-gradient(left, #fff, #808080);background-image:linear-gradient(to right, #fff, #808080);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ff808080', GradientType=1)}div.pick-a-color-markup .spectrum-white .highlight-band{left:0px}
div.pick-a-color-markup .spectrum-red{background-image:-webkit-gradient(linear, left top, right top, color-stop(0, #fff), color-stop(.5, #f00), color-stop(1, #000));background-image:-moz-linear-gradient(left center, #fff 0, #f00 50%, #000 100%);background-image:-webkit-linear-gradient(left, #fff 0, #f00 50%, #000 100%);background-image:-o-linear-gradient(left, #fff 0, #f00 50%, #000 100%);background-image:linear-gradient(to right, #fff 0, #f00 50%, #000 100%);background-repeat:repeat-x}
div.pick-a-color-markup .spectrum-orange{background-image:-webkit-gradient(linear, left top, right top, color-stop(0, #fff), color-stop(.5, #f60), color-stop(1, #000));background-image:-moz-linear-gradient(left center, #fff 0, #f60 50%, #000 100%);background-image:-webkit-linear-gradient(left, #fff 0, #f60 50%, #000 100%);background-image:-o-linear-gradient(left, #fff 0, #f60 50%, #000 100%);background-image:linear-gradient(to right, #fff 0, #f60 50%, #000 100%);background-repeat:repeat-x}
div.pick-a-color-markup .spectrum-yellow{background-image:-webkit-gradient(linear, left top, right top, color-stop(0, #fff), color-stop(.5, #ff0), color-stop(1, #000));background-image:-moz-linear-gradient(left center, #fff 0, #ff0 50%, #000 100%);background-image:-webkit-linear-gradient(left, #fff 0, #ff0 50%, #000 100%);background-image:-o-linear-gradient(left, #fff 0, #ff0 50%, #000 100%);background-image:linear-gradient(to right, #fff 0, #ff0 50%, #000 100%);background-repeat:repeat-x}
div.pick-a-color-markup .spectrum-green{background-image:-webkit-gradient(linear, left top, right top, color-stop(0, #80ff80), color-stop(.5, #008000), color-stop(1, #000));background-image:-moz-linear-gradient(left center, #80ff80 0, #008000 50%, #000 100%);background-image:-webkit-linear-gradient(left, #80ff80 0, #008000 50%, #000 100%);background-image:-o-linear-gradient(left, #80ff80 0, #008000 50%, #000 100%);background-image:linear-gradient(to right, #80ff80 0, #008000 50%, #000 100%);background-repeat:repeat-x}
div.pick-a-color-markup .spectrum-blue{background-image:-webkit-gradient(linear, left top, right top, color-stop(0, #fff), color-stop(.5, #00f), color-stop(1, #000));background-image:-moz-linear-gradient(left center, #fff 0, #00f 50%, #000 100%);background-image:-webkit-linear-gradient(left, #fff 0, #00f 50%, #000 100%);background-image:-o-linear-gradient(left, #fff 0, #00f 50%, #000 100%);background-image:linear-gradient(to right, #fff 0, #00f 50%, #000 100%);background-repeat:repeat-x}
div.pick-a-color-markup .spectrum-purple{background-image:-webkit-gradient(linear, left top, right top, color-stop(0, #ff80ff), color-stop(.5, #80007f), color-stop(1, #000));background-image:-moz-linear-gradient(left center, #ff80ff 0, #80007f 50%, #000 100%);background-image:-webkit-linear-gradient(left, #ff80ff 0, #80007f 50%, #000 100%);background-image:-o-linear-gradient(left, #ff80ff 0, #80007f 50%, #000 100%);background-image:linear-gradient(to right, #ff80ff 0, #80007f 50%, #000 100%);background-repeat:repeat-x}
div.pick-a-color-markup .spectrum-black{background-color:#808080;background-image:-moz-linear-gradient(left, #000, #808080);background-image:-webkit-gradient(linear, 0 0, 100% 0, from(#000), to(#808080));background-image:-webkit-linear-gradient(left, #000, #808080);background-image:-o-linear-gradient(left, #000, #808080);background-image:linear-gradient(to right, #000, #808080);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff000000', endColorstr='#ff808080', GradientType=1)}div.pick-a-color-markup .spectrum-black .highlight-band{left:0px;border:1px solid #808080}
div.pick-a-color-markup .ie-spectrum{height:20px;width:100px;display:inline-block;top:-1}div.pick-a-color-markup .ie-spectrum.hue{width:50.5px}@media screen and (max-width:979px){div.pick-a-color-markup .ie-spectrum.hue{width:45.5px}}
@media screen and (max-width:979px){div.pick-a-color-markup .ie-spectrum{width:80px;height:35px}}
div.pick-a-color-markup .red-spectrum-0,div.pick-a-color-markup .lightness-spectrum-0{background-color:#f00;background-image:-moz-linear-gradient(left, #fff, #f00);background-image:-webkit-gradient(linear, 0 0, 100% 0, from(#fff), to(#f00));background-image:-webkit-linear-gradient(left, #fff, #f00);background-image:-o-linear-gradient(left, #fff, #f00);background-image:linear-gradient(to right, #fff, #f00);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffff0000', GradientType=1);-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px}
div.pick-a-color-markup .red-spectrum-1,div.pick-a-color-markup .lightness-spectrum-1{background-color:#000;background-image:-moz-linear-gradient(left, #f00, #000);background-image:-webkit-gradient(linear, 0 0, 100% 0, from(#f00), to(#000));background-image:-webkit-linear-gradient(left, #f00, #000);background-image:-o-linear-gradient(left, #f00, #000);background-image:linear-gradient(to right, #f00, #000);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffff0000', endColorstr='#ff000000', GradientType=1);-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px}
div.pick-a-color-markup .lightness-spectrum-0,div.pick-a-color-markup .lightness-spectrum-1{width:150px}@media screen and (max-width:979px){div.pick-a-color-markup .lightness-spectrum-0,div.pick-a-color-markup .lightness-spectrum-1{width:135px}}
div.pick-a-color-markup .orange-spectrum-0{background-color:#f60;background-image:-moz-linear-gradient(left, #fff, #f60);background-image:-webkit-gradient(linear, 0 0, 100% 0, from(#fff), to(#f60));background-image:-webkit-linear-gradient(left, #fff, #f60);background-image:-o-linear-gradient(left, #fff, #f60);background-image:linear-gradient(to right, #fff, #f60);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffff6600', GradientType=1);-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px}
div.pick-a-color-markup .orange-spectrum-1{background-color:#000;background-image:-moz-linear-gradient(left, #f60, #000);background-image:-webkit-gradient(linear, 0 0, 100% 0, from(#f60), to(#000));background-image:-webkit-linear-gradient(left, #f60, #000);background-image:-o-linear-gradient(left, #f60, #000);background-image:linear-gradient(to right, #f60, #000);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffff6600', endColorstr='#ff000000', GradientType=1);-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px}
div.pick-a-color-markup .yellow-spectrum-0{background-color:#ff0;background-image:-moz-linear-gradient(left, #fff, #ff0);background-image:-webkit-gradient(linear, 0 0, 100% 0, from(#fff), to(#ff0));background-image:-webkit-linear-gradient(left, #fff, #ff0);background-image:-o-linear-gradient(left, #fff, #ff0);background-image:linear-gradient(to right, #fff, #ff0);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffffff00', GradientType=1);-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px}
div.pick-a-color-markup .yellow-spectrum-1{background-color:#000;background-image:-moz-linear-gradient(left, #ff0, #000);background-image:-webkit-gradient(linear, 0 0, 100% 0, from(#ff0), to(#000));background-image:-webkit-linear-gradient(left, #ff0, #000);background-image:-o-linear-gradient(left, #ff0, #000);background-image:linear-gradient(to right, #ff0, #000);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff00', endColorstr='#ff000000', GradientType=1);-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px}
div.pick-a-color-markup .green-spectrum-0{background-color:#008000;background-image:-moz-linear-gradient(left, #80ff80, #008000);background-image:-webkit-gradient(linear, 0 0, 100% 0, from(#80ff80), to(#008000));background-image:-webkit-linear-gradient(left, #80ff80, #008000);background-image:-o-linear-gradient(left, #80ff80, #008000);background-image:linear-gradient(to right, #80ff80, #008000);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff80ff80', endColorstr='#ff008000', GradientType=1);-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px}
div.pick-a-color-markup .green-spectrum-1{background-color:#000;background-image:-moz-linear-gradient(left, #008000, #000);background-image:-webkit-gradient(linear, 0 0, 100% 0, from(#008000), to(#000));background-image:-webkit-linear-gradient(left, #008000, #000);background-image:-o-linear-gradient(left, #008000, #000);background-image:linear-gradient(to right, #008000, #000);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff008000', endColorstr='#ff000000', GradientType=1);-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px}
div.pick-a-color-markup .blue-spectrum-0{background-color:#00f;background-image:-moz-linear-gradient(left, #fff, #00f);background-image:-webkit-gradient(linear, 0 0, 100% 0, from(#fff), to(#00f));background-image:-webkit-linear-gradient(left, #fff, #00f);background-image:-o-linear-gradient(left, #fff, #00f);background-image:linear-gradient(to right, #fff, #00f);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ff0000ff', GradientType=1);-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px}
div.pick-a-color-markup .blue-spectrum-1{background-color:#000;background-image:-moz-linear-gradient(left, #00f, #000);background-image:-webkit-gradient(linear, 0 0, 100% 0, from(#00f), to(#000));background-image:-webkit-linear-gradient(left, #00f, #000);background-image:-o-linear-gradient(left, #00f, #000);background-image:linear-gradient(to right, #00f, #000);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0000ff', endColorstr='#ff000000', GradientType=1);-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px}
div.pick-a-color-markup .purple-spectrum-0{background-color:#80007f;background-image:-moz-linear-gradient(left, #ff80ff, #80007f);background-image:-webkit-gradient(linear, 0 0, 100% 0, from(#ff80ff), to(#80007f));background-image:-webkit-linear-gradient(left, #ff80ff, #80007f);background-image:-o-linear-gradient(left, #ff80ff, #80007f);background-image:linear-gradient(to right, #ff80ff, #80007f);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffff80ff', endColorstr='#ff80007f', GradientType=1);-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px}
div.pick-a-color-markup .purple-spectrum-1{background-color:#000;background-image:-moz-linear-gradient(left, #80007f, #000);background-image:-webkit-gradient(linear, 0 0, 100% 0, from(#80007f), to(#000));background-image:-webkit-linear-gradient(left, #80007f, #000);background-image:-o-linear-gradient(left, #80007f, #000);background-image:linear-gradient(to right, #80007f, #000);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff80007f', endColorstr='#ff000000', GradientType=1);-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px}
div.pick-a-color-markup .saturation-spectrum-0{background-color:#bf4040;background-image:-moz-linear-gradient(left, #808080, #bf4040);background-image:-webkit-gradient(linear, 0 0, 100% 0, from(#808080), to(#bf4040));background-image:-webkit-linear-gradient(left, #808080, #bf4040);background-image:-o-linear-gradient(left, #808080, #bf4040);background-image:linear-gradient(to right, #808080, #bf4040);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff808080', endColorstr='#ffbf4040', GradientType=1);-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px;width:150px}@media screen and (max-width:979px){div.pick-a-color-markup .saturation-spectrum-0{width:135px}}
div.pick-a-color-markup .saturation-spectrum-1{background-color:#f00;background-image:-moz-linear-gradient(left, #bf4040, #f00);background-image:-webkit-gradient(linear, 0 0, 100% 0, from(#bf4040), to(#f00));background-image:-webkit-linear-gradient(left, #bf4040, #f00);background-image:-o-linear-gradient(left, #bf4040, #f00);background-image:linear-gradient(to right, #bf4040, #f00);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffbf4040', endColorstr='#ffff0000', GradientType=1);-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px;width:150px}@media screen and (max-width:979px){div.pick-a-color-markup .saturation-spectrum-1{width:135px}}
div.pick-a-color-markup .hue-spectrum-0{background-color:#ff0;background-image:-moz-linear-gradient(left, #f00, #ff0);background-image:-webkit-gradient(linear, 0 0, 100% 0, from(#f00), to(#ff0));background-image:-webkit-linear-gradient(left, #f00, #ff0);background-image:-o-linear-gradient(left, #f00, #ff0);background-image:linear-gradient(to right, #f00, #ff0);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffff0000', endColorstr='#ffffff00', GradientType=1)}
div.pick-a-color-markup .hue-spectrum-1{background-color:#0f0;background-image:-moz-linear-gradient(left, #ff0, #0f0);background-image:-webkit-gradient(linear, 0 0, 100% 0, from(#ff0), to(#0f0));background-image:-webkit-linear-gradient(left, #ff0, #0f0);background-image:-o-linear-gradient(left, #ff0, #0f0);background-image:linear-gradient(to right, #ff0, #0f0);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff00', endColorstr='#ff00ff00', GradientType=1)}
div.pick-a-color-markup .hue-spectrum-2{background-color:#0ff;background-image:-moz-linear-gradient(left, #0f0, #0ff);background-image:-webkit-gradient(linear, 0 0, 100% 0, from(#0f0), to(#0ff));background-image:-webkit-linear-gradient(left, #0f0, #0ff);background-image:-o-linear-gradient(left, #0f0, #0ff);background-image:linear-gradient(to right, #0f0, #0ff);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff00ff00', endColorstr='#ff00ffff', GradientType=1);left:-1px;position:relative}
div.pick-a-color-markup .hue-spectrum-3{background-color:#00f;background-image:-moz-linear-gradient(left, #0ff, #00f);background-image:-webkit-gradient(linear, 0 0, 100% 0, from(#0ff), to(#00f));background-image:-webkit-linear-gradient(left, #0ff, #00f);background-image:-o-linear-gradient(left, #0ff, #00f);background-image:linear-gradient(to right, #0ff, #00f);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff00ffff', endColorstr='#ff0000ff', GradientType=1);left:-1px;position:relative}
div.pick-a-color-markup .hue-spectrum-4{background-color:#f0f;background-image:-moz-linear-gradient(left, #00f, #f0f);background-image:-webkit-gradient(linear, 0 0, 100% 0, from(#00f), to(#f0f));background-image:-webkit-linear-gradient(left, #00f, #f0f);background-image:-o-linear-gradient(left, #00f, #f0f);background-image:linear-gradient(to right, #00f, #f0f);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0000ff', endColorstr='#ffff00ff', GradientType=1);left:-1px;position:relative}
div.pick-a-color-markup .hue-spectrum-5{background-color:#f00;background-image:-moz-linear-gradient(left, #f0f, #f00);background-image:-webkit-gradient(linear, 0 0, 100% 0, from(#f0f), to(#f00));background-image:-webkit-linear-gradient(left, #f0f, #f00);background-image:-o-linear-gradient(left, #f0f, #f00);background-image:linear-gradient(to right, #f0f, #f00);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffff00ff', endColorstr='#ffff0000', GradientType=1);left:-2px;position:relative}
div.pick-a-color-markup .highlight-band{border:1px solid #222;-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px;-webkit-box-shadow:1px 1px 1px #333;-moz-box-shadow:1px 1px 1px #333;box-shadow:1px 1px 1px #333;height:19px;width:11px;display:inline-block;cursor:pointer;cursor:-webkit-grab;cursor:-moz-grab;position:absolute;top:-1px;left:94.5px;text-align:center}@media screen and (max-width:979px){div.pick-a-color-markup .highlight-band{width:21px;left:69.5px;height:34px}}
div.pick-a-color-markup .highlight-band-stripe{min-height:80%;min-width:1px;background-color:#000;opacity:0.40;margin:2px 1px;display:inline-block;-webkit-box-shadow:1px 0 2px 0 #fff;-moz-box-shadow:1px 0 2px 0 #fff;box-shadow:1px 0 2px 0 #fff}@media screen and (max-width:979px){div.pick-a-color-markup .highlight-band-stripe{margin:4px 2px}}
div.pick-a-color-markup .color-menu-tabs{padding:5px 3px 3px 10px;font-size:12px;color:#333;border-bottom:1px solid #ccc;margin-bottom:5px}div.pick-a-color-markup .color-menu-tabs .tab{padding:5px;margin:5px;border-left:1px solid #fff;border-right:1px solid #fff;cursor:pointer;background-color:#fff}div.pick-a-color-markup .color-menu-tabs .tab:hover{border-top:1px solid #ccc;border-right:1px solid #ccc;border-left:1px solid #ccc;-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px}
div.pick-a-color-markup .color-menu-tabs a{color:#333;text-decoration:none}
div.pick-a-color-markup .color-menu-tabs .tab-active{border-bottom:3px solid #fff;border-top:1px solid #ccc;border-right:1px solid #ccc;border-left:1px solid #ccc;-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px}
div.pick-a-color-markup .active-content{display:block}
div.pick-a-color-markup .inactive-content{display:none}
div.pick-a-color-markup .savedColors-content{padding:5px 15px;white-space:normal}div.pick-a-color-markup .savedColors-content li.color-item>a{margin-left:7px;padding-left:8px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}
div.pick-a-color-markup .saved-color-col{position:relative;left:-15px;float:left;width:150px}@media screen and (max-width:979px){div.pick-a-color-markup .saved-color-col{width:125px}}
div.pick-a-color-markup .advanced-content ul{margin-top:10px}
div.pick-a-color-markup .advanced-content li{padding:5px 15px 3px 15px;cursor:default;min-height:25px;height:50px;position:relative}@media screen and (max-width:979px){div.pick-a-color-markup .advanced-content li{min-height:70px}}
div.pick-a-color-markup .advanced-content .color-preview{height:50px;width:300px;float:left;margin:0px 0px 10px 0px;background-color:#f00;text-align:center}div.pick-a-color-markup .advanced-content .color-preview .color-select.btn.advanced{margin-top:15px;display:none}@media screen and (max-width:979px){div.pick-a-color-markup .advanced-content .color-preview .color-select.btn.advanced{display:inline;margin-top:7px}}
div.pick-a-color-markup .advanced-content .color-preview:hover .color-select.btn.advanced{display:inline}
@media screen and (max-width:979px){div.pick-a-color-markup .advanced-content .color-preview{width:270px;margin-left:-10px}}
div.pick-a-color-markup .advanced-content .spectrum-hue{background-image:-webkit-gradient(linear, left top, right top, color-stop(0, #f00), color-stop(17%, #ff0), color-stop(34%, #0f0), color-stop(51%, #0ff), color-stop(68%, #00f), color-stop(85%, #f0f), color-stop(100%, #f00));background-image:-moz-linear-gradient(left center, #f00 0, #ff0 17%, #0f0 24%, #0ff 51%, #00f 68%, #f0f 85%, #f00 100%);background-image:-webkit-linear-gradient(left, #f00 0, #ff0 17%, #0f0 24%, #0ff 51%, #00f 68%, #f0f 85%, #f00 100%);background-image:-o-linear-gradient(left, #f00 0, #ff0 17%, #0f0 24%, #0ff 51%, #00f 68%, #f0f 85%, #f00 100%);background-image:linear-gradient(to right, #f00 0, #ff0 17%, #0f0 24%, #0ff 51%, #00f 68%, #f0f 85%, #f00 100%);background-repeat:repeat-x}div.pick-a-color-markup .advanced-content .spectrum-hue .highlight-band{left:0px}
div.pick-a-color-markup .advanced-content .spectrum-lightness{background-image:-webkit-gradient(linear, left top, right top, color-stop(0, #fff), color-stop(.5, #f00), color-stop(1, #000));background-image:-moz-linear-gradient(left center, #fff 0, #f00 50%, #000 100%);background-image:-webkit-linear-gradient(left, #fff 0, #f00 50%, #000 100%);background-image:-o-linear-gradient(left, #fff 0, #f00 50%, #000 100%);background-image:linear-gradient(to right, #fff 0, #f00 50%, #000 100%);background-repeat:repeat-x}
div.pick-a-color-markup .advanced-content .spectrum-saturation{background-image:-webkit-gradient(linear, left top, right top, color-stop(0, #808080), color-stop(.5, #f00), color-stop(1, #f00));background-image:-moz-linear-gradient(left center, #808080 0, #f00 50%, #f00 100%);background-image:-webkit-linear-gradient(left, #808080 0, #f00 50%, #f00 100%);background-image:-o-linear-gradient(left, #808080 0, #f00 50%, #f00 100%);background-image:linear-gradient(to right, #808080 0, #f00 50%, #f00 100%);background-repeat:repeat-x}div.pick-a-color-markup .advanced-content .spectrum-saturation .highlight-band{left:287px}@media screen and (max-width:979px){div.pick-a-color-markup .advanced-content .spectrum-saturation .highlight-band{left:247px}}
div.pick-a-color-markup .advanced-content .spectrum-lightness .highlight-band{left:143.5px}@media screen and (max-width:979px){div.pick-a-color-markup .advanced-content .spectrum-lightness .highlight-band{left:123.5px}}
div.pick-a-color-markup .advanced-content .lightness-text,div.pick-a-color-markup .advanced-content .hue-text,div.pick-a-color-markup .advanced-content .saturation-text,div.pick-a-color-markup .advanced-content .preview-text{vertical-align:middle;text-align:center;display:block}
div.pick-a-color-markup .advanced-content .color-box{left:15px;top:25px;width:300px}@media screen and (max-width:979px){div.pick-a-color-markup .advanced-content .color-box{width:270px;left:5px}}
div.pick-a-color-markup .advanced-content .preview-item{height:80px}
/*!
 * FullCalendar v3.9.0
 * Docs & License: https://fullcalendar.io/
 * (c) 2018 Adam Shaw
 */
.fc {
  direction: ltr;
  text-align: left; }

.fc-rtl {
  text-align: right; }

body .fc {
  /* extra precedence to overcome jqui */
  font-size: 1em; }

/* Colors
--------------------------------------------------------------------------------------------------*/
.fc-highlight {
  /* when user is selecting cells */
  background: #bce8f1;
  opacity: .3; }

.fc-bgevent {
  /* default look for background events */
  background: #8fdf82;
  opacity: .3; }

.fc-nonbusiness {
  /* default look for non-business-hours areas */
  /* will inherit .fc-bgevent's styles */
  background: #d7d7d7; }

/* 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, 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; }

/* 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 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 .fc-row .fc-content-skeleton table,
.fc .fc-row .fc-content-skeleton td,
.fc .fc-row .fc-helper-skeleton td {
  /* see-through to the background below */
  /* extra precedence to prevent theme-provided backgrounds */
  background: none;
  /* in case <td>s are globally styled */
  border-color: transparent; }

.fc-row .fc-content-skeleton td,
.fc-row .fc-helper-skeleton td {
  /* don't put a border between events and/or the day number */
  border-bottom: 0; }

.fc-row .fc-content-skeleton tbody td,
.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 */ }

.fc-event,
.fc-event-dot {
  background-color: #3a87ad;
  /* default BACKGROUND color */ }

.fc-event,
.fc-event:hover {
  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,
.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: transparent; }

/*
TODO: more distinction between this file and common.css
*/
/* 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,
.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 td.fc-today {
  background: #fcf8e3; }

.fc-unthemed .fc-disabled-day {
  background: #d7d7d7;
  opacity: .3; }

/* 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: "\2039";
  font-weight: bold;
  font-size: 200%;
  top: -7%; }

.fc-icon-right-single-arrow:after {
  content: "\203A";
  font-weight: bold;
  font-size: 200%;
  top: -7%; }

.fc-icon-left-double-arrow:after {
  content: "\AB";
  font-size: 160%;
  top: -7%; }

.fc-icon-right-double-arrow:after {
  content: "\BB";
  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: "\D7";
  font-size: 200%;
  top: 6%; }

/* Popover
--------------------------------------------------------------------------------------------------*/
.fc-unthemed .fc-popover {
  border-width: 1px;
  border-style: solid; }

.fc-unthemed .fc-popover .fc-header .fc-close {
  font-size: .9em;
  margin-top: 2px; }

/* List View
--------------------------------------------------------------------------------------------------*/
.fc-unthemed .fc-list-item:hover td {
  background-color: #f5f5f5; }

/* Colors
--------------------------------------------------------------------------------------------------*/
.ui-widget .fc-disabled-day {
  background-image: none; }

/* Popover
--------------------------------------------------------------------------------------------------*/
.fc-popover > .ui-widget-header + .ui-widget-content {
  border-top: 0;
  /* where they meet, let the header have the border */ }

/* Global Event Styles
--------------------------------------------------------------------------------------------------*/
.ui-widget .fc-event {
  /* overpower jqui's styles on <a> tags. TODO: more DRY */
  color: #fff;
  /* default TEXT color */
  text-decoration: none;
  /* if <a> has an href */
  /* undo ui-widget-header bold */
  font-weight: normal; }

/* TimeGrid axis running down the side (for both the all-day area and the slot area)
--------------------------------------------------------------------------------------------------*/
.ui-widget td.fc-axis {
  font-weight: normal;
  /* overcome bold */ }

/* TimeGrid Slats (lines that run horizontally)
--------------------------------------------------------------------------------------------------*/
.fc-time-grid .fc-slats .ui-widget-content {
  background: none;
  /* see through to fc-bg */ }

.fc.fc-bootstrap3 a {
  text-decoration: none; }

.fc.fc-bootstrap3 a[data-goto]:hover {
  text-decoration: underline; }

.fc-bootstrap3 hr.fc-divider {
  border-color: inherit; }

.fc-bootstrap3 .fc-today.alert {
  border-radius: 0; }

/* Popover
--------------------------------------------------------------------------------------------------*/
.fc-bootstrap3 .fc-popover .panel-body {
  padding: 0; }

/* TimeGrid Slats (lines that run horizontally)
--------------------------------------------------------------------------------------------------*/
.fc-bootstrap3 .fc-time-grid .fc-slats table {
  /* some themes have background color. see through to slats */
  background: none; }

.fc.fc-bootstrap4 a {
  text-decoration: none; }

.fc.fc-bootstrap4 a[data-goto]:hover {
  text-decoration: underline; }

.fc-bootstrap4 hr.fc-divider {
  border-color: inherit; }

.fc-bootstrap4 .fc-today.alert {
  border-radius: 0; }

.fc-bootstrap4 a.fc-event:not([href]):not([tabindex]) {
  color: #fff; }

.fc-bootstrap4 .fc-popover.card {
  position: absolute; }

/* Popover
--------------------------------------------------------------------------------------------------*/
.fc-bootstrap4 .fc-popover .card-body {
  padding: 0; }

/* TimeGrid Slats (lines that run horizontally)
--------------------------------------------------------------------------------------------------*/
.fc-bootstrap4 .fc-time-grid .fc-slats table {
  /* some themes have background color. see through to slats */
  background: none; }

/* Toolbar
--------------------------------------------------------------------------------------------------*/
.fc-toolbar {
  text-align: center; }

.fc-toolbar.fc-header-toolbar {
  margin-bottom: 1em; }

.fc-toolbar.fc-footer-toolbar {
  margin-top: 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,
.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; }

/* TimeGrid Structure
--------------------------------------------------------------------------------------------------*/
.fc-time-grid-container,
.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; }

/* 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: "\A0-\A0";
  /* 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-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; }
/*!
 * FullCalendar Scheduler v1.9.4
 * Docs & License: https://fullcalendar.io/scheduler/
 * (c) 2018 Adam Shaw
 */
/* TODO: break this file up */
/* Scroller
--------------------------------------------------------------------------------------------------*/
.fc-scroller-clip {
  overflow: hidden;
  /* for clipping scrollbars */
  position: relative;
  /* so things like scrollfollowers can attach to this */ }

/* supresses rendering of native scrollbars */
/* on .fc-scroller */
.fc-no-scrollbars {
  background: rgba(255, 255, 255, 0);
  /* hack for dynamic DOM nodes (in Chrome OSX at least) */ }

.fc-no-scrollbars::-webkit-scrollbar {
  width: 0;
  height: 0; }

.fc-scroller-canvas {
  position: relative;
  /* origin for bg */
  box-sizing: border-box;
  /* so that padding (for gutter) will be part of height */
  min-height: 100%; }

.fc-scroller-canvas > .fc-bg {
  z-index: 1;
  /* make default? */ }

.fc-scroller-canvas > .fc-content {
  z-index: 2;
  /* make default? */
  position: relative;
  /* origin for inner content */
  border-style: solid;
  border-width: 0; }

/* for themed, hard to get the border-color, so just forget it (REVISIT) */
.ui-widget .fc-scroller-canvas > .fc-content {
  border-color: transparent; }

.fc-scroller-canvas.fc-gutter-left > .fc-content {
  border-left-width: 1px;
  margin-left: -1px; }

.fc-scroller-canvas.fc-gutter-right > .fc-content {
  border-right-width: 1px;
  margin-right: -1px; }

.fc-scroller-canvas.fc-gutter-top > .fc-content {
  border-top-width: 1px;
  margin-top: -1px; }

/* content is responsible for bottom border */
/* View Structure
--------------------------------------------------------------------------------------------------*/
.fc-rtl .fc-timeline {
  direction: rtl; }

.fc-timeline .fc-divider {
  width: 3px;
  border-style: double;
  /* overcome neighboring borders */ }

.fc-timeline .fc-head > tr > .fc-divider {
  border-bottom: 0; }

.fc-timeline .fc-body > tr > .fc-divider {
  border-top: 0; }

.fc-timeline .fc-body .fc-divider.ui-widget-header {
  background-image: none; }

.fc-scrolled .fc-head .fc-scroller {
  z-index: 2;
  /* so drop shadow will go above body panes */ }

.fc-timeline.fc-scrolled .fc-head .fc-scroller {
  box-shadow: 0 3px 4px rgba(0, 0, 0, 0.075); }

.fc-timeline .fc-body .fc-scroller {
  z-index: 1; }

/*
on most tables that expand to the edges, kill the outer border,
because the container elements take care of it.
example tables:
.fc-scroller-canvas .fc-content table
.fc-scroller-canvas .fc-bg .fc-slats table
*/
.fc-timeline .fc-scroller-canvas > div > table,
.fc-timeline .fc-scroller-canvas > div > div > table {
  border-style: hidden; }

/*
for resource rows (in both the spreadsheet and timeline areas),
undo previous rule in order to always show last border.
*/
.fc-timeline .fc-scroller-canvas > .fc-content > .fc-rows > table {
  border-bottom-style: none; }

/* Table Cell Common
--------------------------------------------------------------------------------------------------*/
.fc-timeline th,
.fc-timeline td {
  white-space: nowrap; }

.fc-timeline .fc-cell-content {
  overflow: hidden; }

.fc-timeline .fc-cell-text {
  padding-left: 4px;
  padding-right: 4px; }

.fc-timeline .fc-col-resizer {
  cursor: col-resize; }

/*
Cells at the start of a week
TODO: figure out better styling

.fc-ltr .fc-timeline .fc-em-cell div {
	border-left: 3px solid #eee;
	height: 100%;
}
.fc-rtl .fc-timeline .fc-em-cell {
	border-right-width: 3px;
}
*/
/* head */
.fc-timeline th {
  vertical-align: middle; }

.fc-timeline .fc-head .fc-cell-content {
  padding-top: 3px;
  padding-bottom: 3px; }

/* body */
.fc-timeline .fc-body .ui-widget-content {
  background-image: none; }

/* Resource Area
--------------------------------------------------------------------------------------------------*/
.fc-resource-area {
  width: 30%; }

.fc-resource-area col {
  width: 40%;
  min-width: 70px;
  /* will be read by JS */ }

.fc-resource-area col.fc-main-col {
  width: 60%;
  /* make the first column in a nested setup bigger */ }

.fc-flat .fc-expander-space {
  /* fc-flat is opposite of fc-nested */
  display: none; }

.fc-ltr .fc-resource-area tr > * {
  text-align: left; }

.fc-rtl .fc-resource-area tr > * {
  text-align: right; }

.fc-resource-area .fc-cell-content {
  padding-left: 4px;
  padding-right: 4px; }

/* head */
.fc-resource-area .fc-super th {
  text-align: center; }

.fc-resource-area th > div {
  position: relative; }

.fc-resource-area th .fc-cell-content {
  position: relative;
  z-index: 1; }

.fc-resource-area th .fc-col-resizer {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: 5px; }

.fc-ltr .fc-resource-area th .fc-col-resizer {
  right: -3px; }

.fc-rtl .fc-resource-area th .fc-col-resizer {
  left: -3px; }

/* body */
tr.fc-collapsed > td,
tr.fc-transitioning > td {
  /* during the transition */
  overflow: hidden;
  /* prevents absolutely-positioned events from bleeding out */ }

tr.fc-transitioning > td > div {
  transition: margin-top 0.2s; }

tr.fc-collapsed > td > div {
  margin-top: -10px; }

.fc-body .fc-resource-area .fc-cell-content {
  /* might BE the cell */
  position: relative;
  /* optimization for ScrollFollower */
  padding-top: 8px;
  padding-bottom: 8px; }

.fc-no-overlap .fc-body .fc-resource-area .fc-cell-content {
  /* might BE the cell */
  padding-top: 5px;
  padding-bottom: 5px; }

.fc-resource-area .fc-icon {
  /* the expander and spacers before the expander */
  width: 1em;
  /* ensure constant width, esp for empty icons */
  font-size: .9em;
  vertical-align: middle;
  margin-top: -1%; }

.fc-resource-area .fc-expander {
  cursor: pointer;
  color: #666;
  /* for the icon within */ }

/* Time Area
--------------------------------------------------------------------------------------------------*/
.fc-time-area col {
  min-width: 2.2em;
  /* detected by JS */ }

/* head */
.fc-ltr .fc-time-area .fc-chrono th {
  text-align: left; }

.fc-rtl .fc-time-area .fc-chrono th {
  text-align: right; }

/* body slats (vertical lines) */
.fc-time-area .fc-slats {
  /* fc-bg is responsible for a lot of this now! */
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0; }

.fc-time-area .fc-slats table {
  height: 100%; }

.fc-time-area .fc-slats .fc-minor {
  border-style: dotted; }

.fc-time-area .fc-slats td {
  border-width: 0 1px;
  /* need to do this. sometimes -1 margin wouldn't hide the dotted */ }

.fc-ltr .fc-time-area .fc-slats td {
  border-right-width: 0; }

.fc-rtl .fc-time-area .fc-slats td {
  border-left-width: 0; }

/* body content containers
   can be within rows or directly within the pane's content
*/
.fc-time-area .fc-bgevent-container,
.fc-time-area .fc-highlight-container {
  position: absolute;
  z-index: 2;
  /* only for directly within pane. not for row. overridden later */
  top: 0;
  bottom: 0;
  width: 0; }

.fc-ltr .fc-time-area .fc-helper-container,
.fc-ltr .fc-time-area .fc-bgevent-container,
.fc-ltr .fc-time-area .fc-highlight-container {
  left: 0; }

.fc-rtl .fc-time-area .fc-helper-container,
.fc-rtl .fc-time-area .fc-bgevent-container,
.fc-rtl .fc-time-area .fc-highlight-container {
  right: 0; }

.fc-time-area .fc-bgevent,
.fc-time-area .fc-highlight {
  position: absolute;
  top: 0;
  bottom: 0; }

/* body resource rows */
.fc-time-area .fc-rows {
  position: relative;
  z-index: 3; }

.fc-time-area .fc-rows .ui-widget-content {
  background: none; }

.fc-time-area .fc-rows td > div {
  position: relative; }

.fc-time-area .fc-rows .fc-bgevent-container,
.fc-time-area .fc-rows .fc-highlight-container {
  z-index: 1; }

.fc-time-area .fc-event-container {
  position: relative;
  z-index: 2;
  /* above bgevent and highlight */
  width: 0;
  /* for event positioning. will end up on correct side based on dir */ }

.fc-time-area .fc-helper-container {
  /* also an fc-event-container */
  position: absolute;
  z-index: 3;
  top: 0; }

.fc-time-area .fc-event-container {
  padding-bottom: 8px;
  top: -1px; }

.fc-time-area tr:first-child .fc-event-container {
  top: 0; }

.fc-no-overlap .fc-time-area .fc-event-container {
  padding-bottom: 0;
  top: 0; }

/* Now Indicator
--------------------------------------------------------------------------------------------------*/
.fc-timeline .fc-now-indicator {
  /* both the arrow and the line */
  z-index: 3;
  /* one above scroller's fc-content */
  top: 0; }

.fc-time-area .fc-now-indicator-arrow {
  margin: 0 -6px;
  /* 5, then one more to counteract scroller's negative margins */
  /* triangle pointing down... */
  border-width: 6px 5px 0 5px;
  border-left-color: transparent;
  border-right-color: transparent; }

.fc-time-area .fc-now-indicator-line {
  margin: 0 -1px;
  /* counteract scroller's negative margins */
  bottom: 0;
  border-left-width: 1px; }

/* Time Grid Events
--------------------------------------------------------------------------------------------------*/
.fc-timeline-event {
  position: absolute;
  border-radius: 0;
  padding: 2px 0;
  margin-bottom: 1px; }

.fc-no-overlap .fc-timeline-event {
  padding: 5px 0;
  margin-bottom: 0; }

/* don't overlap grid lines at the event's end */
.fc-ltr .fc-timeline-event {
  margin-right: 1px; }

.fc-rtl .fc-timeline-event {
  margin-left: 1px; }

.fc-timeline-event .fc-content {
  padding: 0 1px;
  white-space: nowrap;
  overflow: hidden; }

.fc-timeline-event .fc-time {
  font-weight: bold;
  padding: 0 1px; }

.fc-rtl .fc-timeline-event .fc-time {
  display: inline-block;
  /* will force it on the other side */ }

.fc-timeline-event .fc-title {
  position: relative;
  /* optimization for ScrollFollower */
  padding: 0 1px; }

.fc-timeline-event.fc-selected .fc-bg {
  display: none;
  /* hide semi-white background, to appear darker */ }

/* follower logic */
.fc-ltr .fc-timeline-event .fc-title {
  padding-left: 10px;
  margin-left: -8px; }

.fc-rtl .fc-timeline-event .fc-title {
  padding-right: 10px;
  margin-right: -8px; }

.fc-ltr .fc-timeline-event.fc-not-start .fc-title {
  margin-left: -2px; }

.fc-rtl .fc-timeline-event.fc-not-start .fc-title {
  margin-right: -2px; }

.fc-timeline-event.fc-not-start .fc-title,
.fc-body .fc-time-area .fc-following {
  position: relative; }

.fc-timeline-event.fc-not-start .fc-title:before,
.fc-body .fc-time-area .fc-following:before {
  /* generic arrow */
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -5px;
  border: 5px solid #000;
  border-top-color: transparent;
  border-bottom-color: transparent;
  opacity: .5; }

.fc-ltr .fc-timeline-event.fc-not-start .fc-title:before,
.fc-ltr .fc-body .fc-time-area .fc-following:before {
  /* LTR. left pointing arrow */
  border-left: 0;
  left: 2px; }

.fc-rtl .fc-timeline-event.fc-not-start .fc-title:before,
.fc-rtl .fc-body .fc-time-area .fc-following:before {
  /* RTL. right pointing arrow */
  border-right: 0;
  right: 2px; }

/* License Message
--------------------------------------------------------------------------------------------------*/
.fc-license-message {
  position: absolute;
  z-index: 99999;
  bottom: 1px;
  left: 1px;
  background: #eee;
  border-color: #ddd;
  border-style: solid;
  border-width: 1px 1px 0 0;
  padding: 2px 4px;
  font-size: 12px;
  border-top-right-radius: 3px; }
/**
 * selectize.css (v0.13.3)
 * Copyright (c) 2013–2015 Brian Reavis & contributors
 * Copyright (c) 2020 Selectize Team & 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.
 *
 * @author Brian Reavis <brian@thirdroute.com>
 * @author Ris Adams <selectize@risadams.com>  
 */

.selectize-control.plugin-drag_drop.multi>.selectize-input>div.ui-sortable-placeholder{visibility:visible !important;background:#f2f2f2 !important;background:rgba(0,0,0,.06) !important;border:0 none !important;box-shadow:inset 0 0 12px 4px #fff}.selectize-control.plugin-drag_drop .ui-sortable-placeholder::after{content:"!";visibility:hidden}.selectize-control.plugin-drag_drop .ui-sortable-helper{box-shadow:0 2px 5px rgba(0,0,0,.2)}.selectize-control .dropdown-header{position:relative;padding:10px 8px;border-bottom:1px solid #d0d0d0;background:#f8f8f8;border-radius:3px 3px 0 0}.selectize-control .dropdown-header-close{position:absolute;right:8px;top:50%;color:#303030;opacity:.4;margin-top:-12px;line-height:20px;font-size:20px !important}.selectize-control .dropdown-header-close:hover{color:#000}.selectize-dropdown.plugin-optgroup_columns .selectize-dropdown-content{display:flex}.selectize-dropdown.plugin-optgroup_columns .optgroup{border-right:1px solid #f2f2f2;border-top:0 none;flex-grow:1;flex-basis:0;min-width:0}.selectize-dropdown.plugin-optgroup_columns .optgroup:last-child{border-right:0 none}.selectize-dropdown.plugin-optgroup_columns .optgroup:before{display:none}.selectize-dropdown.plugin-optgroup_columns .optgroup-header{border-top:0 none}.selectize-control.plugin-remove_button .item{display:inline-flex;align-items:center;padding-right:0 !important}.selectize-control.plugin-remove_button .item .remove{color:inherit;text-decoration:none;vertical-align:middle;display:inline-block;padding:2px 6px;border-left:1px solid #d0d0d0;border-radius:0 2px 2px 0;box-sizing:border-box;margin-left:6px}.selectize-control.plugin-remove_button .item .remove:hover{background:rgba(0,0,0,.05)}.selectize-control.plugin-remove_button .item.active .remove{border-left-color:#cacaca}.selectize-control.plugin-remove_button .disabled .item .remove:hover{background:none}.selectize-control.plugin-remove_button .disabled .item .remove{border-left-color:#fff}.selectize-control.plugin-remove_button .remove-single{position:absolute;right:0;top:0;font-size:23px}.selectize-control{position:relative}.selectize-dropdown,.selectize-input,.selectize-input input{color:#303030;font-family:inherit;font-size:13px;line-height:18px;font-smoothing:inherit}.selectize-input,.selectize-control.single .selectize-input.input-active{background:#fff;cursor:text;display:inline-block}.selectize-input{border:1px solid #d0d0d0;padding:8px 8px;display:inline-block;width:100%;overflow:hidden;position:relative;z-index:1;box-sizing:border-box;box-shadow:inset 0 1px 1px rgba(0,0,0,.1);border-radius:3px}.selectize-control.multi .selectize-input.has-items{padding:calc( 8px - 2px - 0 ) 8px calc( 8px - 2px - 3px - 0 )}.selectize-input.full{background-color:#fff}.selectize-input.disabled,.selectize-input.disabled *{cursor:default !important}.selectize-input.focus{box-shadow:inset 0 1px 2px rgba(0,0,0,.15)}.selectize-input.dropdown-active{border-radius:3px 3px 0 0}.selectize-input>*{vertical-align:baseline;display:inline-block;zoom:1}.selectize-control.multi .selectize-input>div{cursor:pointer;margin:0 3px 3px 0;padding:2px 6px;background:#f2f2f2;color:#303030;border:0 solid #d0d0d0}.selectize-control.multi .selectize-input>div.active{background:#e8e8e8;color:#303030;border:0 solid #cacaca}.selectize-control.multi .selectize-input.disabled>div,.selectize-control.multi .selectize-input.disabled>div.active{color:#7d7d7d;background:#fff;border:0 solid #fff}.selectize-input>input{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;user-select:auto !important;box-shadow:none !important}.selectize-input>input::-ms-clear{display:none}.selectize-input>input:focus{outline:none !important}.selectize-input>input[placeholder]{box-sizing:initial}.selectize-input.has-items>input{margin:0 0px !important}.selectize-input::after{content:" ";display:block;clear:left}.selectize-input.dropdown-active::before{content:" ";display:block;position:absolute;background:#f0f0f0;height:1px;bottom:0;left:0;right:0}.selectize-dropdown{position:absolute;top:100%;left:0;width:100%;z-index:10;border:1px solid #d0d0d0;background:#fff;margin:-1px 0 0 0;border-top:0 none;box-sizing:border-box;box-shadow:0 1px 3px rgba(0,0,0,.1);border-radius:0 0 3px 3px}.selectize-dropdown [data-selectable]{cursor:pointer;overflow:hidden}.selectize-dropdown [data-selectable] .highlight{background:rgba(125,168,208,.2);border-radius:1px}.selectize-dropdown .option,.selectize-dropdown .optgroup-header,.selectize-dropdown .no-results,.selectize-dropdown .create{padding:5px 8px}.selectize-dropdown .option,.selectize-dropdown [data-disabled],.selectize-dropdown [data-disabled] [data-selectable].option{cursor:inherit;opacity:.5}.selectize-dropdown [data-selectable].option{opacity:1;cursor:pointer}.selectize-dropdown .optgroup:first-child .optgroup-header{border-top:0 none}.selectize-dropdown .optgroup-header{color:#303030;background:#fff;cursor:default}.selectize-dropdown .active{background-color:#f5fafd;color:#495c68}.selectize-dropdown .active.create{color:#495c68}.selectize-dropdown .create{color:rgba(48,48,48,.5)}.selectize-dropdown-content{overflow-y:auto;overflow-x:hidden;max-height:200px;overflow-scrolling:touch}.selectize-dropdown-emptyoptionlabel{text-align:center}.selectize-dropdown .spinner{display:inline-block;width:30px;height:30px;margin:5px 8px}.selectize-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)}}.selectize-control.single .selectize-input,.selectize-control.single .selectize-input input{cursor:pointer}.selectize-control.single .selectize-input.input-active,.selectize-control.single .selectize-input.input-active input{cursor:text}.selectize-control.single .selectize-input:after{content:" ";display:block;position:absolute;top:50%;right:15px;margin-top:-3px;width:0;height:0;border-style:solid;border-width:5px 5px 0 5px;border-color:gray transparent transparent transparent}.selectize-control.single .selectize-input.dropdown-active:after{margin-top:-4px;border-width:0 5px 5px 5px;border-color:transparent transparent gray transparent}.selectize-control.rtl{text-align:right}.selectize-control.rtl.single .selectize-input:after{left:15px;right:auto}.selectize-control.rtl .selectize-input>input{margin:0 4px 0 -2px !important}.selectize-control .selectize-input.disabled{opacity:.5;background-color:#fafafa}
.selectize-control.plugin-drag_drop.multi>.selectize-input>div.ui-sortable-placeholder{visibility:visible !important;background:#f2f2f2 !important;background:rgba(0,0,0,.06) !important;border:0 none !important;box-shadow:inset 0 0 12px 4px #fff}.selectize-control.plugin-drag_drop .ui-sortable-placeholder::after{content:"!";visibility:hidden}.selectize-control.plugin-drag_drop .ui-sortable-helper{box-shadow:0 2px 5px rgba(0,0,0,.2)}.selectize-control .dropdown-header{position:relative;padding:6px 12px;border-bottom:1px solid #d0d0d0;background:#f8f8f8;border-radius:4px 4px 0 0}.selectize-control .dropdown-header-close{position:absolute;right:12px;top:50%;color:#333;opacity:.4;margin-top:-12px;line-height:20px;font-size:20px !important}.selectize-control .dropdown-header-close:hover{color:#000}.selectize-dropdown.plugin-optgroup_columns .selectize-dropdown-content{display:flex}.selectize-dropdown.plugin-optgroup_columns .optgroup{border-right:1px solid #f2f2f2;border-top:0 none;flex-grow:1;flex-basis:0;min-width:0}.selectize-dropdown.plugin-optgroup_columns .optgroup:last-child{border-right:0 none}.selectize-dropdown.plugin-optgroup_columns .optgroup:before{display:none}.selectize-dropdown.plugin-optgroup_columns .optgroup-header{border-top:0 none}.selectize-control.plugin-remove_button .item{display:inline-flex;align-items:center;padding-right:0 !important}.selectize-control.plugin-remove_button .item .remove{color:inherit;text-decoration:none;vertical-align:middle;display:inline-block;padding:1px 5px;border-left:1px solid rgba(0,0,0,0);border-radius:0 2px 2px 0;box-sizing:border-box;margin-left:5px}.selectize-control.plugin-remove_button .item .remove:hover{background:rgba(0,0,0,.05)}.selectize-control.plugin-remove_button .item.active .remove{border-left-color:rgba(0,0,0,0)}.selectize-control.plugin-remove_button .disabled .item .remove:hover{background:none}.selectize-control.plugin-remove_button .disabled .item .remove{border-left-color:rgba(77,77,77,0)}.selectize-control.plugin-remove_button .remove-single{position:absolute;right:0;top:0;font-size:23px}.selectize-control{position:relative}.selectize-dropdown,.selectize-input,.selectize-input input{color:#333;font-family:inherit;font-size:inherit;line-height:20px;font-smoothing:inherit}.selectize-input,.selectize-control.single .selectize-input.input-active{background:#fff;cursor:text;display:inline-block}.selectize-input{border:1px solid #ccc;padding:6px 12px;display:inline-block;width:100%;overflow:hidden;position:relative;z-index:1;box-sizing:border-box;box-shadow:none;border-radius:4px}.selectize-control.multi .selectize-input.has-items{padding:calc( 6px - 1px - 0 ) 12px calc( 6px - 1px - 3px - 0 )}.selectize-input.full{background-color:#fff}.selectize-input.disabled,.selectize-input.disabled *{cursor:default !important}.selectize-input.focus{box-shadow:inset 0 1px 2px rgba(0,0,0,.15)}.selectize-input.dropdown-active{border-radius:4px 4px 0 0}.selectize-input>*{vertical-align:baseline;display:inline-block;zoom:1}.selectize-control.multi .selectize-input>div{cursor:pointer;margin:0 3px 3px 0;padding:1px 5px;background:#efefef;color:#333;border:0 solid rgba(0,0,0,0)}.selectize-control.multi .selectize-input>div.active{background:#337ab7;color:#fff;border:0 solid rgba(0,0,0,0)}.selectize-control.multi .selectize-input.disabled>div,.selectize-control.multi .selectize-input.disabled>div.active{color:gray;background:#fff;border:0 solid rgba(77,77,77,0)}.selectize-input>input{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;user-select:auto !important;box-shadow:none !important}.selectize-input>input::-ms-clear{display:none}.selectize-input>input:focus{outline:none !important}.selectize-input>input[placeholder]{box-sizing:initial}.selectize-input.has-items>input{margin:0 0px !important}.selectize-input::after{content:" ";display:block;clear:left}.selectize-input.dropdown-active::before{content:" ";display:block;position:absolute;background:#fff;height:1px;bottom:0;left:0;right:0}.selectize-dropdown{position:absolute;top:100%;left:0;width:100%;z-index:10;border:1px solid #d0d0d0;background:#fff;margin:-1px 0 0 0;border-top:0 none;box-sizing:border-box;box-shadow:0 1px 3px rgba(0,0,0,.1);border-radius:0 0 4px 4px}.selectize-dropdown [data-selectable]{cursor:pointer;overflow:hidden}.selectize-dropdown [data-selectable] .highlight{background:rgba(255,237,40,.4);border-radius:1px}.selectize-dropdown .option,.selectize-dropdown .optgroup-header,.selectize-dropdown .no-results,.selectize-dropdown .create{padding:3px 12px}.selectize-dropdown .option,.selectize-dropdown [data-disabled],.selectize-dropdown [data-disabled] [data-selectable].option{cursor:inherit;opacity:.5}.selectize-dropdown [data-selectable].option{opacity:1;cursor:pointer}.selectize-dropdown .optgroup:first-child .optgroup-header{border-top:0 none}.selectize-dropdown .optgroup-header{color:#777;background:#fff;cursor:default}.selectize-dropdown .active{background-color:#f5f5f5;color:#262626}.selectize-dropdown .active.create{color:#262626}.selectize-dropdown .create{color:rgba(51,51,51,.5)}.selectize-dropdown-content{overflow-y:auto;overflow-x:hidden;max-height:200px;overflow-scrolling:touch}.selectize-dropdown-emptyoptionlabel{text-align:center}.selectize-dropdown .spinner{display:inline-block;width:30px;height:30px;margin:3px 12px}.selectize-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)}}.selectize-control.single .selectize-input,.selectize-control.single .selectize-input input{cursor:pointer}.selectize-control.single .selectize-input.input-active,.selectize-control.single .selectize-input.input-active input{cursor:text}.selectize-control.single .selectize-input:after{content:" ";display:block;position:absolute;top:50%;right:17px;margin-top:-3px;width:0;height:0;border-style:solid;border-width:5px 5px 0 5px;border-color:#333 transparent transparent transparent}.selectize-control.single .selectize-input.dropdown-active:after{margin-top:-4px;border-width:0 5px 5px 5px;border-color:transparent transparent #333 transparent}.selectize-control.rtl{text-align:right}.selectize-control.rtl.single .selectize-input:after{left:17px;right:auto}.selectize-control.rtl .selectize-input>input{margin:0 4px 0 -2px !important}.selectize-control .selectize-input.disabled{opacity:.5;background-color:#fff}.selectize-dropdown,.selectize-dropdown.form-control{height:auto;padding:0;margin:2px 0 0 0;z-index:1000;background:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);border-radius:4px;box-shadow:0 6px 12px rgba(0,0,0,.175)}.selectize-dropdown .optgroup-header{font-size:12px;line-height:1.428571429}.selectize-dropdown .optgroup:first-child:before{display:none}.selectize-dropdown .optgroup:before{content:" ";display:block;height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5;margin-left:-12px;margin-right:-12px}.selectize-dropdown-content{padding:5px 0}.selectize-dropdown-emptyoptionlabel{text-align:center}.selectize-input{min-height:34px}.selectize-input.dropdown-active{border-radius:4px}.selectize-input.dropdown-active::before{display:none}.selectize-input.focus{border-color:#66afe9;outline:0;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)}.has-error .selectize-input{border-color:#a94442;box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-error .selectize-input:focus{border-color:#843534;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483}.selectize-control.multi .selectize-input.has-items{padding-left:7px;padding-right:7px}.selectize-control.multi .selectize-input>div{border-radius:3px}.form-control.selectize-control{padding:0;height:auto;border:none;background:none;box-shadow:none;border-radius:0}
/*!
 * Bootstrap Modal
 *
 * Copyright Jordan Schroter
 * Licensed under the Apache License v2.0
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Boostrap 3 patch for for bootstrap-modal. Include BEFORE bootstrap-modal.css!
 */
/*
body.modal-open, 
.modal-open .navbar-fixed-top, 
.modal-open .navbar-fixed-bottom {
  margin-right: 0;
}

.modal {
  left: 50%;
  bottom: auto;
  right: auto;
  padding: 0;
  background-color: #ffffff;
  border: 1px solid #999999;
  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);
  background-clip: padding-box;
}

.modal.container {
  max-width: none;
}
*/
/*!
 * Bootstrap Modal
 *
 * Copyright Jordan Schroter
 * Licensed under the Apache License v2.0
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 */

.modal-open {
	overflow: hidden;
}


/* add a scroll bar to stop page from jerking around */
.modal-open.page-overflow .page-container,
.modal-open.page-overflow .page-container .navbar-fixed-top,
.modal-open.page-overflow .page-container .navbar-fixed-bottom,
.modal-open.page-overflow .modal-scrollable {
	overflow-y: scroll;
}

@media (max-width: 979px) {
	.modal-open.page-overflow .page-container .navbar-fixed-top,
	.modal-open.page-overflow .page-container .navbar-fixed-bottom  {
		overflow-y: visible;
	}
}


.modal-scrollable {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	overflow: auto;
}

.modal {
	outline: none;
	position: absolute;
	margin-top: 0;
	top: 50%;
	overflow: visible; /* allow content to popup out (i.e tooltips) */
}

.modal.fade {
	top: -100%;
	-webkit-transition: opacity 0.3s linear, top 0.3s ease-out, bottom 0.3s ease-out, margin-top 0.3s ease-out;	
	   -moz-transition: opacity 0.3s linear, top 0.3s ease-out, bottom 0.3s ease-out, margin-top 0.3s ease-out;
	     -o-transition: opacity 0.3s linear, top 0.3s ease-out, bottom 0.3s ease-out, margin-top 0.3s ease-out;
	        transition: opacity 0.3s linear, top 0.3s ease-out, bottom 0.3s ease-out, margin-top 0.3s ease-out;
}

.modal.fade.in {
	top: 50%;
}

.modal-body {
	max-height: none;
	overflow: visible;
}

.modal.modal-absolute {
	position: absolute;
	z-index: 950;
}

.modal .loading-mask {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: #fff;
	border-radius: 6px;
}

.modal-backdrop.modal-absolute{
	position: absolute;
	z-index: 940;
}

.modal-backdrop, 
.modal-backdrop.fade.in{
	opacity: 0.7;
	filter: alpha(opacity=70);
	background: #fff;
}

.modal.container {
  width: 940px;
  margin-left: -470px;
}

/* Modal Overflow */

.modal-overflow.modal {
	top: 1%;
}

.modal-overflow.modal.fade {
	top: -100%;
}

.modal-overflow.modal.fade.in {
	top: 1%;
}

.modal-overflow .modal-body {
	overflow: auto;
	-webkit-overflow-scrolling: touch;
}

/* Responsive */

@media (min-width: 1200px) {
	.modal.container {
		width: 1170px;
		margin-left: -585px;
	}
}

@media (max-width: 979px) {
	.modal, 
	.modal.container,
	.modal.modal-overflow 	{
		top: 1%;
		right: 1%;
		left: 1%;
		bottom: auto;
		width: auto !important;
		height: auto !important;
		margin: 0 !important;
		padding: 0 !important;
	}
	
	.modal.fade.in, 
	.modal.container.fade.in,
	.modal.modal-overflow.fade.in {
		top: 1%;
		bottom: auto;
	}
	
	.modal-body,
	.modal-overflow .modal-body {
		position: static;
		margin: 0;
		height: auto !important;
		max-height: none !important;
		overflow: visible !important;
	}
	
	.modal-footer,
	.modal-overflow .modal-footer {
		position: static;
	}
}

.loading-spinner {
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -12px 0 0 -12px;
}

/*
Animate.css - http://daneden.me/animate
Licensed under the ☺ license (http://licence.visualidiot.com/)

Copyright (c) 2012 Dan Eden*/

.animated {
	-webkit-animation-duration: 1s;
	   -moz-animation-duration: 1s;
	     -o-animation-duration: 1s;
	        animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	   -moz-animation-fill-mode: both;
	     -o-animation-fill-mode: both;
	        animation-fill-mode: both;
}

@-webkit-keyframes shake {
	0%, 100% {-webkit-transform: translateX(0);}
	10%, 30%, 50%, 70%, 90% {-webkit-transform: translateX(-10px);}
	20%, 40%, 60%, 80% {-webkit-transform: translateX(10px);}
}

@-moz-keyframes shake {
	0%, 100% {-moz-transform: translateX(0);}
	10%, 30%, 50%, 70%, 90% {-moz-transform: translateX(-10px);}
	20%, 40%, 60%, 80% {-moz-transform: translateX(10px);}
}

@-o-keyframes shake {
	0%, 100% {-o-transform: translateX(0);}
	10%, 30%, 50%, 70%, 90% {-o-transform: translateX(-10px);}
	20%, 40%, 60%, 80% {-o-transform: translateX(10px);}
}

@keyframes shake {
	0%, 100% {transform: translateX(0);}
	10%, 30%, 50%, 70%, 90% {transform: translateX(-10px);}
	20%, 40%, 60%, 80% {transform: translateX(10px);}
}

.shake {
	-webkit-animation-name: shake;
	-moz-animation-name: shake;
	-o-animation-name: shake;
	animation-name: shake;
}
/*! ========================================================================
 * Bootstrap Toggle: bootstrap-toggle.css v2.2.0
 * http://www.bootstraptoggle.com
 * ========================================================================
 * Copyright 2014 Min Hur, The New York Times Company
 * Licensed under MIT
 * ======================================================================== */


.checkbox label .toggle,
.checkbox-inline .toggle {
	margin-left: -20px;
	margin-right: 5px;
}

.toggle {
	position: relative;
	overflow: hidden;
}
.toggle input[type="checkbox"] {
	display: none;
}
.toggle-group {
	position: absolute;
	width: 200%;
	top: 0;
	bottom: 0;
	left: 0;
	transition: left 0.35s;
	-webkit-transition: left 0.35s;
	-moz-user-select: none;
	-webkit-user-select: none;
}
.toggle.off .toggle-group {
	left: -100%;
}
.toggle-on {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 50%;
	margin: 0;
	border: 0;
	border-radius: 0;
}
.toggle-off {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	right: 0;
	margin: 0;
	border: 0;
	border-radius: 0;
}
.toggle-handle {
	position: relative;
	margin: 0 auto;
	padding-top: 0px;
	padding-bottom: 0px;
	height: 100%;
	width: 0px;
	border-width: 0 1px;
}

.toggle.btn { min-width: 59px; min-height: 34px; }
.toggle-on.btn { padding-right: 24px; }
.toggle-off.btn { padding-left: 24px; }

.toggle.btn-lg { min-width: 79px; min-height: 45px; }
.toggle-on.btn-lg { padding-right: 31px; }
.toggle-off.btn-lg { padding-left: 31px; }
.toggle-handle.btn-lg { width: 40px; }

.toggle.btn-sm { min-width: 50px; min-height: 30px;}
.toggle-on.btn-sm { padding-right: 20px; }
.toggle-off.btn-sm { padding-left: 20px; }

.toggle.btn-xs { min-width: 35px; min-height: 22px;}
.toggle-on.btn-xs { padding-right: 12px; }
.toggle-off.btn-xs { padding-left: 12px; }

/*!
 * Font Awesome Free 5.15.4 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
/* line 5, app/assets/stylesheets/fontawesome/all.scss */
.fa,
.fas,
.far,
.fal,
.fad,
.fab {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

/* line 19, app/assets/stylesheets/fontawesome/all.scss */
.fa-lg {
  font-size: 1.33333em;
  line-height: 0.75em;
  vertical-align: -.0667em;
}

/* line 24, app/assets/stylesheets/fontawesome/all.scss */
.fa-xs {
  font-size: .75em;
}

/* line 27, app/assets/stylesheets/fontawesome/all.scss */
.fa-sm {
  font-size: .875em;
}

/* line 30, app/assets/stylesheets/fontawesome/all.scss */
.fa-1x {
  font-size: 1em;
}

/* line 33, app/assets/stylesheets/fontawesome/all.scss */
.fa-2x {
  font-size: 2em;
}

/* line 36, app/assets/stylesheets/fontawesome/all.scss */
.fa-3x {
  font-size: 3em;
}

/* line 39, app/assets/stylesheets/fontawesome/all.scss */
.fa-4x {
  font-size: 4em;
}

/* line 42, app/assets/stylesheets/fontawesome/all.scss */
.fa-5x {
  font-size: 5em;
}

/* line 45, app/assets/stylesheets/fontawesome/all.scss */
.fa-6x {
  font-size: 6em;
}

/* line 48, app/assets/stylesheets/fontawesome/all.scss */
.fa-7x {
  font-size: 7em;
}

/* line 51, app/assets/stylesheets/fontawesome/all.scss */
.fa-8x {
  font-size: 8em;
}

/* line 54, app/assets/stylesheets/fontawesome/all.scss */
.fa-9x {
  font-size: 9em;
}

/* line 57, app/assets/stylesheets/fontawesome/all.scss */
.fa-10x {
  font-size: 10em;
}

/* line 60, app/assets/stylesheets/fontawesome/all.scss */
.fa-fw {
  text-align: center;
  width: 1.25em;
}

/* line 64, app/assets/stylesheets/fontawesome/all.scss */
.fa-ul {
  list-style-type: none;
  margin-left: 2.5em;
  padding-left: 0;
}

/* line 68, app/assets/stylesheets/fontawesome/all.scss */
.fa-ul > li {
  position: relative;
}

/* line 71, app/assets/stylesheets/fontawesome/all.scss */
.fa-li {
  left: -2em;
  position: absolute;
  text-align: center;
  width: 2em;
  line-height: inherit;
}

/* line 78, app/assets/stylesheets/fontawesome/all.scss */
.fa-border {
  border: solid 0.08em #eee;
  border-radius: .1em;
  padding: .2em .25em .15em;
}

/* line 83, app/assets/stylesheets/fontawesome/all.scss */
.fa-pull-left {
  float: left;
}

/* line 86, app/assets/stylesheets/fontawesome/all.scss */
.fa-pull-right {
  float: right;
}

/* line 89, app/assets/stylesheets/fontawesome/all.scss */
.fa.fa-pull-left,
.fas.fa-pull-left,
.far.fa-pull-left,
.fal.fa-pull-left,
.fab.fa-pull-left {
  margin-right: .3em;
}

/* line 96, app/assets/stylesheets/fontawesome/all.scss */
.fa.fa-pull-right,
.fas.fa-pull-right,
.far.fa-pull-right,
.fal.fa-pull-right,
.fab.fa-pull-right {
  margin-left: .3em;
}

/* line 103, app/assets/stylesheets/fontawesome/all.scss */
.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}

/* line 107, app/assets/stylesheets/fontawesome/all.scss */
.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}

@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* line 127, app/assets/stylesheets/fontawesome/all.scss */
.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

/* line 132, app/assets/stylesheets/fontawesome/all.scss */
.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

/* line 137, app/assets/stylesheets/fontawesome/all.scss */
.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg);
}

/* line 142, app/assets/stylesheets/fontawesome/all.scss */
.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

/* line 147, app/assets/stylesheets/fontawesome/all.scss */
.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
  transform: scale(1, -1);
}

/* line 152, app/assets/stylesheets/fontawesome/all.scss */
.fa-flip-both, .fa-flip-horizontal.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(-1, -1);
  transform: scale(-1, -1);
}

/* line 157, app/assets/stylesheets/fontawesome/all.scss */
:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical,
:root .fa-flip-both {
  -webkit-filter: none;
  filter: none;
}

/* line 166, app/assets/stylesheets/fontawesome/all.scss */
.fa-stack {
  display: inline-block;
  height: 2em;
  line-height: 2em;
  position: relative;
  vertical-align: middle;
  width: 2.5em;
}

/* line 174, app/assets/stylesheets/fontawesome/all.scss */
.fa-stack-1x,
.fa-stack-2x {
  left: 0;
  position: absolute;
  text-align: center;
  width: 100%;
}

/* line 181, app/assets/stylesheets/fontawesome/all.scss */
.fa-stack-1x {
  line-height: inherit;
}

/* line 184, app/assets/stylesheets/fontawesome/all.scss */
.fa-stack-2x {
  font-size: 2em;
}

/* line 187, app/assets/stylesheets/fontawesome/all.scss */
.fa-inverse {
  color: #fff;
}

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
readers do not read off random characters that represent icons */
/* line 192, app/assets/stylesheets/fontawesome/all.scss */
.fa-500px:before {
  content: "\f26e";
}

/* line 195, app/assets/stylesheets/fontawesome/all.scss */
.fa-accessible-icon:before {
  content: "\f368";
}

/* line 198, app/assets/stylesheets/fontawesome/all.scss */
.fa-accusoft:before {
  content: "\f369";
}

/* line 201, app/assets/stylesheets/fontawesome/all.scss */
.fa-acquisitions-incorporated:before {
  content: "\f6af";
}

/* line 204, app/assets/stylesheets/fontawesome/all.scss */
.fa-ad:before {
  content: "\f641";
}

/* line 207, app/assets/stylesheets/fontawesome/all.scss */
.fa-address-book:before {
  content: "\f2b9";
}

/* line 210, app/assets/stylesheets/fontawesome/all.scss */
.fa-address-card:before {
  content: "\f2bb";
}

/* line 213, app/assets/stylesheets/fontawesome/all.scss */
.fa-adjust:before {
  content: "\f042";
}

/* line 216, app/assets/stylesheets/fontawesome/all.scss */
.fa-adn:before {
  content: "\f170";
}

/* line 219, app/assets/stylesheets/fontawesome/all.scss */
.fa-adversal:before {
  content: "\f36a";
}

/* line 222, app/assets/stylesheets/fontawesome/all.scss */
.fa-affiliatetheme:before {
  content: "\f36b";
}

/* line 225, app/assets/stylesheets/fontawesome/all.scss */
.fa-air-freshener:before {
  content: "\f5d0";
}

/* line 228, app/assets/stylesheets/fontawesome/all.scss */
.fa-airbnb:before {
  content: "\f834";
}

/* line 231, app/assets/stylesheets/fontawesome/all.scss */
.fa-algolia:before {
  content: "\f36c";
}

/* line 234, app/assets/stylesheets/fontawesome/all.scss */
.fa-align-center:before {
  content: "\f037";
}

/* line 237, app/assets/stylesheets/fontawesome/all.scss */
.fa-align-justify:before {
  content: "\f039";
}

/* line 240, app/assets/stylesheets/fontawesome/all.scss */
.fa-align-left:before {
  content: "\f036";
}

/* line 243, app/assets/stylesheets/fontawesome/all.scss */
.fa-align-right:before {
  content: "\f038";
}

/* line 246, app/assets/stylesheets/fontawesome/all.scss */
.fa-alipay:before {
  content: "\f642";
}

/* line 249, app/assets/stylesheets/fontawesome/all.scss */
.fa-allergies:before {
  content: "\f461";
}

/* line 252, app/assets/stylesheets/fontawesome/all.scss */
.fa-amazon:before {
  content: "\f270";
}

/* line 255, app/assets/stylesheets/fontawesome/all.scss */
.fa-amazon-pay:before {
  content: "\f42c";
}

/* line 258, app/assets/stylesheets/fontawesome/all.scss */
.fa-ambulance:before {
  content: "\f0f9";
}

/* line 261, app/assets/stylesheets/fontawesome/all.scss */
.fa-american-sign-language-interpreting:before {
  content: "\f2a3";
}

/* line 264, app/assets/stylesheets/fontawesome/all.scss */
.fa-amilia:before {
  content: "\f36d";
}

/* line 267, app/assets/stylesheets/fontawesome/all.scss */
.fa-anchor:before {
  content: "\f13d";
}

/* line 270, app/assets/stylesheets/fontawesome/all.scss */
.fa-android:before {
  content: "\f17b";
}

/* line 273, app/assets/stylesheets/fontawesome/all.scss */
.fa-angellist:before {
  content: "\f209";
}

/* line 276, app/assets/stylesheets/fontawesome/all.scss */
.fa-angle-double-down:before {
  content: "\f103";
}

/* line 279, app/assets/stylesheets/fontawesome/all.scss */
.fa-angle-double-left:before {
  content: "\f100";
}

/* line 282, app/assets/stylesheets/fontawesome/all.scss */
.fa-angle-double-right:before {
  content: "\f101";
}

/* line 285, app/assets/stylesheets/fontawesome/all.scss */
.fa-angle-double-up:before {
  content: "\f102";
}

/* line 288, app/assets/stylesheets/fontawesome/all.scss */
.fa-angle-down:before {
  content: "\f107";
}

/* line 291, app/assets/stylesheets/fontawesome/all.scss */
.fa-angle-left:before {
  content: "\f104";
}

/* line 294, app/assets/stylesheets/fontawesome/all.scss */
.fa-angle-right:before {
  content: "\f105";
}

/* line 297, app/assets/stylesheets/fontawesome/all.scss */
.fa-angle-up:before {
  content: "\f106";
}

/* line 300, app/assets/stylesheets/fontawesome/all.scss */
.fa-angry:before {
  content: "\f556";
}

/* line 303, app/assets/stylesheets/fontawesome/all.scss */
.fa-angrycreative:before {
  content: "\f36e";
}

/* line 306, app/assets/stylesheets/fontawesome/all.scss */
.fa-angular:before {
  content: "\f420";
}

/* line 309, app/assets/stylesheets/fontawesome/all.scss */
.fa-ankh:before {
  content: "\f644";
}

/* line 312, app/assets/stylesheets/fontawesome/all.scss */
.fa-app-store:before {
  content: "\f36f";
}

/* line 315, app/assets/stylesheets/fontawesome/all.scss */
.fa-app-store-ios:before {
  content: "\f370";
}

/* line 318, app/assets/stylesheets/fontawesome/all.scss */
.fa-apper:before {
  content: "\f371";
}

/* line 321, app/assets/stylesheets/fontawesome/all.scss */
.fa-apple:before {
  content: "\f179";
}

/* line 324, app/assets/stylesheets/fontawesome/all.scss */
.fa-apple-alt:before {
  content: "\f5d1";
}

/* line 327, app/assets/stylesheets/fontawesome/all.scss */
.fa-apple-pay:before {
  content: "\f415";
}

/* line 330, app/assets/stylesheets/fontawesome/all.scss */
.fa-archive:before {
  content: "\f187";
}

/* line 333, app/assets/stylesheets/fontawesome/all.scss */
.fa-archway:before {
  content: "\f557";
}

/* line 336, app/assets/stylesheets/fontawesome/all.scss */
.fa-arrow-alt-circle-down:before {
  content: "\f358";
}

/* line 339, app/assets/stylesheets/fontawesome/all.scss */
.fa-arrow-alt-circle-left:before {
  content: "\f359";
}

/* line 342, app/assets/stylesheets/fontawesome/all.scss */
.fa-arrow-alt-circle-right:before {
  content: "\f35a";
}

/* line 345, app/assets/stylesheets/fontawesome/all.scss */
.fa-arrow-alt-circle-up:before {
  content: "\f35b";
}

/* line 348, app/assets/stylesheets/fontawesome/all.scss */
.fa-arrow-circle-down:before {
  content: "\f0ab";
}

/* line 351, app/assets/stylesheets/fontawesome/all.scss */
.fa-arrow-circle-left:before {
  content: "\f0a8";
}

/* line 354, app/assets/stylesheets/fontawesome/all.scss */
.fa-arrow-circle-right:before {
  content: "\f0a9";
}

/* line 357, app/assets/stylesheets/fontawesome/all.scss */
.fa-arrow-circle-up:before {
  content: "\f0aa";
}

/* line 360, app/assets/stylesheets/fontawesome/all.scss */
.fa-arrow-down:before {
  content: "\f063";
}

/* line 363, app/assets/stylesheets/fontawesome/all.scss */
.fa-arrow-left:before {
  content: "\f060";
}

/* line 366, app/assets/stylesheets/fontawesome/all.scss */
.fa-arrow-right:before {
  content: "\f061";
}

/* line 369, app/assets/stylesheets/fontawesome/all.scss */
.fa-arrow-up:before {
  content: "\f062";
}

/* line 372, app/assets/stylesheets/fontawesome/all.scss */
.fa-arrows-alt:before {
  content: "\f0b2";
}

/* line 375, app/assets/stylesheets/fontawesome/all.scss */
.fa-arrows-alt-h:before {
  content: "\f337";
}

/* line 378, app/assets/stylesheets/fontawesome/all.scss */
.fa-arrows-alt-v:before {
  content: "\f338";
}

/* line 381, app/assets/stylesheets/fontawesome/all.scss */
.fa-artstation:before {
  content: "\f77a";
}

/* line 384, app/assets/stylesheets/fontawesome/all.scss */
.fa-assistive-listening-systems:before {
  content: "\f2a2";
}

/* line 387, app/assets/stylesheets/fontawesome/all.scss */
.fa-asterisk:before {
  content: "\f069";
}

/* line 390, app/assets/stylesheets/fontawesome/all.scss */
.fa-asymmetrik:before {
  content: "\f372";
}

/* line 393, app/assets/stylesheets/fontawesome/all.scss */
.fa-at:before {
  content: "\f1fa";
}

/* line 396, app/assets/stylesheets/fontawesome/all.scss */
.fa-atlas:before {
  content: "\f558";
}

/* line 399, app/assets/stylesheets/fontawesome/all.scss */
.fa-atlassian:before {
  content: "\f77b";
}

/* line 402, app/assets/stylesheets/fontawesome/all.scss */
.fa-atom:before {
  content: "\f5d2";
}

/* line 405, app/assets/stylesheets/fontawesome/all.scss */
.fa-audible:before {
  content: "\f373";
}

/* line 408, app/assets/stylesheets/fontawesome/all.scss */
.fa-audio-description:before {
  content: "\f29e";
}

/* line 411, app/assets/stylesheets/fontawesome/all.scss */
.fa-autoprefixer:before {
  content: "\f41c";
}

/* line 414, app/assets/stylesheets/fontawesome/all.scss */
.fa-avianex:before {
  content: "\f374";
}

/* line 417, app/assets/stylesheets/fontawesome/all.scss */
.fa-aviato:before {
  content: "\f421";
}

/* line 420, app/assets/stylesheets/fontawesome/all.scss */
.fa-award:before {
  content: "\f559";
}

/* line 423, app/assets/stylesheets/fontawesome/all.scss */
.fa-aws:before {
  content: "\f375";
}

/* line 426, app/assets/stylesheets/fontawesome/all.scss */
.fa-baby:before {
  content: "\f77c";
}

/* line 429, app/assets/stylesheets/fontawesome/all.scss */
.fa-baby-carriage:before {
  content: "\f77d";
}

/* line 432, app/assets/stylesheets/fontawesome/all.scss */
.fa-backspace:before {
  content: "\f55a";
}

/* line 435, app/assets/stylesheets/fontawesome/all.scss */
.fa-backward:before {
  content: "\f04a";
}

/* line 438, app/assets/stylesheets/fontawesome/all.scss */
.fa-bacon:before {
  content: "\f7e5";
}

/* line 441, app/assets/stylesheets/fontawesome/all.scss */
.fa-bacteria:before {
  content: "\e059";
}

/* line 444, app/assets/stylesheets/fontawesome/all.scss */
.fa-bacterium:before {
  content: "\e05a";
}

/* line 447, app/assets/stylesheets/fontawesome/all.scss */
.fa-bahai:before {
  content: "\f666";
}

/* line 450, app/assets/stylesheets/fontawesome/all.scss */
.fa-balance-scale:before {
  content: "\f24e";
}

/* line 453, app/assets/stylesheets/fontawesome/all.scss */
.fa-balance-scale-left:before {
  content: "\f515";
}

/* line 456, app/assets/stylesheets/fontawesome/all.scss */
.fa-balance-scale-right:before {
  content: "\f516";
}

/* line 459, app/assets/stylesheets/fontawesome/all.scss */
.fa-ban:before {
  content: "\f05e";
}

/* line 462, app/assets/stylesheets/fontawesome/all.scss */
.fa-band-aid:before {
  content: "\f462";
}

/* line 465, app/assets/stylesheets/fontawesome/all.scss */
.fa-bandcamp:before {
  content: "\f2d5";
}

/* line 468, app/assets/stylesheets/fontawesome/all.scss */
.fa-barcode:before {
  content: "\f02a";
}

/* line 471, app/assets/stylesheets/fontawesome/all.scss */
.fa-bars:before {
  content: "\f0c9";
}

/* line 474, app/assets/stylesheets/fontawesome/all.scss */
.fa-baseball-ball:before {
  content: "\f433";
}

/* line 477, app/assets/stylesheets/fontawesome/all.scss */
.fa-basketball-ball:before {
  content: "\f434";
}

/* line 480, app/assets/stylesheets/fontawesome/all.scss */
.fa-bath:before {
  content: "\f2cd";
}

/* line 483, app/assets/stylesheets/fontawesome/all.scss */
.fa-battery-empty:before {
  content: "\f244";
}

/* line 486, app/assets/stylesheets/fontawesome/all.scss */
.fa-battery-full:before {
  content: "\f240";
}

/* line 489, app/assets/stylesheets/fontawesome/all.scss */
.fa-battery-half:before {
  content: "\f242";
}

/* line 492, app/assets/stylesheets/fontawesome/all.scss */
.fa-battery-quarter:before {
  content: "\f243";
}

/* line 495, app/assets/stylesheets/fontawesome/all.scss */
.fa-battery-three-quarters:before {
  content: "\f241";
}

/* line 498, app/assets/stylesheets/fontawesome/all.scss */
.fa-battle-net:before {
  content: "\f835";
}

/* line 501, app/assets/stylesheets/fontawesome/all.scss */
.fa-bed:before {
  content: "\f236";
}

/* line 504, app/assets/stylesheets/fontawesome/all.scss */
.fa-beer:before {
  content: "\f0fc";
}

/* line 507, app/assets/stylesheets/fontawesome/all.scss */
.fa-behance:before {
  content: "\f1b4";
}

/* line 510, app/assets/stylesheets/fontawesome/all.scss */
.fa-behance-square:before {
  content: "\f1b5";
}

/* line 513, app/assets/stylesheets/fontawesome/all.scss */
.fa-bell:before {
  content: "\f0f3";
}

/* line 516, app/assets/stylesheets/fontawesome/all.scss */
.fa-bell-slash:before {
  content: "\f1f6";
}

/* line 519, app/assets/stylesheets/fontawesome/all.scss */
.fa-bezier-curve:before {
  content: "\f55b";
}

/* line 522, app/assets/stylesheets/fontawesome/all.scss */
.fa-bible:before {
  content: "\f647";
}

/* line 525, app/assets/stylesheets/fontawesome/all.scss */
.fa-bicycle:before {
  content: "\f206";
}

/* line 528, app/assets/stylesheets/fontawesome/all.scss */
.fa-biking:before {
  content: "\f84a";
}

/* line 531, app/assets/stylesheets/fontawesome/all.scss */
.fa-bimobject:before {
  content: "\f378";
}

/* line 534, app/assets/stylesheets/fontawesome/all.scss */
.fa-binoculars:before {
  content: "\f1e5";
}

/* line 537, app/assets/stylesheets/fontawesome/all.scss */
.fa-biohazard:before {
  content: "\f780";
}

/* line 540, app/assets/stylesheets/fontawesome/all.scss */
.fa-birthday-cake:before {
  content: "\f1fd";
}

/* line 543, app/assets/stylesheets/fontawesome/all.scss */
.fa-bitbucket:before {
  content: "\f171";
}

/* line 546, app/assets/stylesheets/fontawesome/all.scss */
.fa-bitcoin:before {
  content: "\f379";
}

/* line 549, app/assets/stylesheets/fontawesome/all.scss */
.fa-bity:before {
  content: "\f37a";
}

/* line 552, app/assets/stylesheets/fontawesome/all.scss */
.fa-black-tie:before {
  content: "\f27e";
}

/* line 555, app/assets/stylesheets/fontawesome/all.scss */
.fa-blackberry:before {
  content: "\f37b";
}

/* line 558, app/assets/stylesheets/fontawesome/all.scss */
.fa-blender:before {
  content: "\f517";
}

/* line 561, app/assets/stylesheets/fontawesome/all.scss */
.fa-blender-phone:before {
  content: "\f6b6";
}

/* line 564, app/assets/stylesheets/fontawesome/all.scss */
.fa-blind:before {
  content: "\f29d";
}

/* line 567, app/assets/stylesheets/fontawesome/all.scss */
.fa-blog:before {
  content: "\f781";
}

/* line 570, app/assets/stylesheets/fontawesome/all.scss */
.fa-blogger:before {
  content: "\f37c";
}

/* line 573, app/assets/stylesheets/fontawesome/all.scss */
.fa-blogger-b:before {
  content: "\f37d";
}

/* line 576, app/assets/stylesheets/fontawesome/all.scss */
.fa-bluetooth:before {
  content: "\f293";
}

/* line 579, app/assets/stylesheets/fontawesome/all.scss */
.fa-bluetooth-b:before {
  content: "\f294";
}

/* line 582, app/assets/stylesheets/fontawesome/all.scss */
.fa-bold:before {
  content: "\f032";
}

/* line 585, app/assets/stylesheets/fontawesome/all.scss */
.fa-bolt:before {
  content: "\f0e7";
}

/* line 588, app/assets/stylesheets/fontawesome/all.scss */
.fa-bomb:before {
  content: "\f1e2";
}

/* line 591, app/assets/stylesheets/fontawesome/all.scss */
.fa-bone:before {
  content: "\f5d7";
}

/* line 594, app/assets/stylesheets/fontawesome/all.scss */
.fa-bong:before {
  content: "\f55c";
}

/* line 597, app/assets/stylesheets/fontawesome/all.scss */
.fa-book:before {
  content: "\f02d";
}

/* line 600, app/assets/stylesheets/fontawesome/all.scss */
.fa-book-dead:before {
  content: "\f6b7";
}

/* line 603, app/assets/stylesheets/fontawesome/all.scss */
.fa-book-medical:before {
  content: "\f7e6";
}

/* line 606, app/assets/stylesheets/fontawesome/all.scss */
.fa-book-open:before {
  content: "\f518";
}

/* line 609, app/assets/stylesheets/fontawesome/all.scss */
.fa-book-reader:before {
  content: "\f5da";
}

/* line 612, app/assets/stylesheets/fontawesome/all.scss */
.fa-bookmark:before {
  content: "\f02e";
}

/* line 615, app/assets/stylesheets/fontawesome/all.scss */
.fa-bootstrap:before {
  content: "\f836";
}

/* line 618, app/assets/stylesheets/fontawesome/all.scss */
.fa-border-all:before {
  content: "\f84c";
}

/* line 621, app/assets/stylesheets/fontawesome/all.scss */
.fa-border-none:before {
  content: "\f850";
}

/* line 624, app/assets/stylesheets/fontawesome/all.scss */
.fa-border-style:before {
  content: "\f853";
}

/* line 627, app/assets/stylesheets/fontawesome/all.scss */
.fa-bowling-ball:before {
  content: "\f436";
}

/* line 630, app/assets/stylesheets/fontawesome/all.scss */
.fa-box:before {
  content: "\f466";
}

/* line 633, app/assets/stylesheets/fontawesome/all.scss */
.fa-box-open:before {
  content: "\f49e";
}

/* line 636, app/assets/stylesheets/fontawesome/all.scss */
.fa-box-tissue:before {
  content: "\e05b";
}

/* line 639, app/assets/stylesheets/fontawesome/all.scss */
.fa-boxes:before {
  content: "\f468";
}

/* line 642, app/assets/stylesheets/fontawesome/all.scss */
.fa-braille:before {
  content: "\f2a1";
}

/* line 645, app/assets/stylesheets/fontawesome/all.scss */
.fa-brain:before {
  content: "\f5dc";
}

/* line 648, app/assets/stylesheets/fontawesome/all.scss */
.fa-bread-slice:before {
  content: "\f7ec";
}

/* line 651, app/assets/stylesheets/fontawesome/all.scss */
.fa-briefcase:before {
  content: "\f0b1";
}

/* line 654, app/assets/stylesheets/fontawesome/all.scss */
.fa-briefcase-medical:before {
  content: "\f469";
}

/* line 657, app/assets/stylesheets/fontawesome/all.scss */
.fa-broadcast-tower:before {
  content: "\f519";
}

/* line 660, app/assets/stylesheets/fontawesome/all.scss */
.fa-broom:before {
  content: "\f51a";
}

/* line 663, app/assets/stylesheets/fontawesome/all.scss */
.fa-brush:before {
  content: "\f55d";
}

/* line 666, app/assets/stylesheets/fontawesome/all.scss */
.fa-btc:before {
  content: "\f15a";
}

/* line 669, app/assets/stylesheets/fontawesome/all.scss */
.fa-buffer:before {
  content: "\f837";
}

/* line 672, app/assets/stylesheets/fontawesome/all.scss */
.fa-bug:before {
  content: "\f188";
}

/* line 675, app/assets/stylesheets/fontawesome/all.scss */
.fa-building:before {
  content: "\f1ad";
}

/* line 678, app/assets/stylesheets/fontawesome/all.scss */
.fa-bullhorn:before {
  content: "\f0a1";
}

/* line 681, app/assets/stylesheets/fontawesome/all.scss */
.fa-bullseye:before {
  content: "\f140";
}

/* line 684, app/assets/stylesheets/fontawesome/all.scss */
.fa-burn:before {
  content: "\f46a";
}

/* line 687, app/assets/stylesheets/fontawesome/all.scss */
.fa-buromobelexperte:before {
  content: "\f37f";
}

/* line 690, app/assets/stylesheets/fontawesome/all.scss */
.fa-bus:before {
  content: "\f207";
}

/* line 693, app/assets/stylesheets/fontawesome/all.scss */
.fa-bus-alt:before {
  content: "\f55e";
}

/* line 696, app/assets/stylesheets/fontawesome/all.scss */
.fa-business-time:before {
  content: "\f64a";
}

/* line 699, app/assets/stylesheets/fontawesome/all.scss */
.fa-buy-n-large:before {
  content: "\f8a6";
}

/* line 702, app/assets/stylesheets/fontawesome/all.scss */
.fa-buysellads:before {
  content: "\f20d";
}

/* line 705, app/assets/stylesheets/fontawesome/all.scss */
.fa-calculator:before {
  content: "\f1ec";
}

/* line 708, app/assets/stylesheets/fontawesome/all.scss */
.fa-calendar:before {
  content: "\f133";
}

/* line 711, app/assets/stylesheets/fontawesome/all.scss */
.fa-calendar-alt:before {
  content: "\f073";
}

/* line 714, app/assets/stylesheets/fontawesome/all.scss */
.fa-calendar-check:before {
  content: "\f274";
}

/* line 717, app/assets/stylesheets/fontawesome/all.scss */
.fa-calendar-day:before {
  content: "\f783";
}

/* line 720, app/assets/stylesheets/fontawesome/all.scss */
.fa-calendar-minus:before {
  content: "\f272";
}

/* line 723, app/assets/stylesheets/fontawesome/all.scss */
.fa-calendar-plus:before {
  content: "\f271";
}

/* line 726, app/assets/stylesheets/fontawesome/all.scss */
.fa-calendar-times:before {
  content: "\f273";
}

/* line 729, app/assets/stylesheets/fontawesome/all.scss */
.fa-calendar-week:before {
  content: "\f784";
}

/* line 732, app/assets/stylesheets/fontawesome/all.scss */
.fa-camera:before {
  content: "\f030";
}

/* line 735, app/assets/stylesheets/fontawesome/all.scss */
.fa-camera-retro:before {
  content: "\f083";
}

/* line 738, app/assets/stylesheets/fontawesome/all.scss */
.fa-campground:before {
  content: "\f6bb";
}

/* line 741, app/assets/stylesheets/fontawesome/all.scss */
.fa-canadian-maple-leaf:before {
  content: "\f785";
}

/* line 744, app/assets/stylesheets/fontawesome/all.scss */
.fa-candy-cane:before {
  content: "\f786";
}

/* line 747, app/assets/stylesheets/fontawesome/all.scss */
.fa-cannabis:before {
  content: "\f55f";
}

/* line 750, app/assets/stylesheets/fontawesome/all.scss */
.fa-capsules:before {
  content: "\f46b";
}

/* line 753, app/assets/stylesheets/fontawesome/all.scss */
.fa-car:before {
  content: "\f1b9";
}

/* line 756, app/assets/stylesheets/fontawesome/all.scss */
.fa-car-alt:before {
  content: "\f5de";
}

/* line 759, app/assets/stylesheets/fontawesome/all.scss */
.fa-car-battery:before {
  content: "\f5df";
}

/* line 762, app/assets/stylesheets/fontawesome/all.scss */
.fa-car-crash:before {
  content: "\f5e1";
}

/* line 765, app/assets/stylesheets/fontawesome/all.scss */
.fa-car-side:before {
  content: "\f5e4";
}

/* line 768, app/assets/stylesheets/fontawesome/all.scss */
.fa-caravan:before {
  content: "\f8ff";
}

/* line 771, app/assets/stylesheets/fontawesome/all.scss */
.fa-caret-down:before {
  content: "\f0d7";
}

/* line 774, app/assets/stylesheets/fontawesome/all.scss */
.fa-caret-left:before {
  content: "\f0d9";
}

/* line 777, app/assets/stylesheets/fontawesome/all.scss */
.fa-caret-right:before {
  content: "\f0da";
}

/* line 780, app/assets/stylesheets/fontawesome/all.scss */
.fa-caret-square-down:before {
  content: "\f150";
}

/* line 783, app/assets/stylesheets/fontawesome/all.scss */
.fa-caret-square-left:before {
  content: "\f191";
}

/* line 786, app/assets/stylesheets/fontawesome/all.scss */
.fa-caret-square-right:before {
  content: "\f152";
}

/* line 789, app/assets/stylesheets/fontawesome/all.scss */
.fa-caret-square-up:before {
  content: "\f151";
}

/* line 792, app/assets/stylesheets/fontawesome/all.scss */
.fa-caret-up:before {
  content: "\f0d8";
}

/* line 795, app/assets/stylesheets/fontawesome/all.scss */
.fa-carrot:before {
  content: "\f787";
}

/* line 798, app/assets/stylesheets/fontawesome/all.scss */
.fa-cart-arrow-down:before {
  content: "\f218";
}

/* line 801, app/assets/stylesheets/fontawesome/all.scss */
.fa-cart-plus:before {
  content: "\f217";
}

/* line 804, app/assets/stylesheets/fontawesome/all.scss */
.fa-cash-register:before {
  content: "\f788";
}

/* line 807, app/assets/stylesheets/fontawesome/all.scss */
.fa-cat:before {
  content: "\f6be";
}

/* line 810, app/assets/stylesheets/fontawesome/all.scss */
.fa-cc-amazon-pay:before {
  content: "\f42d";
}

/* line 813, app/assets/stylesheets/fontawesome/all.scss */
.fa-cc-amex:before {
  content: "\f1f3";
}

/* line 816, app/assets/stylesheets/fontawesome/all.scss */
.fa-cc-apple-pay:before {
  content: "\f416";
}

/* line 819, app/assets/stylesheets/fontawesome/all.scss */
.fa-cc-diners-club:before {
  content: "\f24c";
}

/* line 822, app/assets/stylesheets/fontawesome/all.scss */
.fa-cc-discover:before {
  content: "\f1f2";
}

/* line 825, app/assets/stylesheets/fontawesome/all.scss */
.fa-cc-jcb:before {
  content: "\f24b";
}

/* line 828, app/assets/stylesheets/fontawesome/all.scss */
.fa-cc-mastercard:before {
  content: "\f1f1";
}

/* line 831, app/assets/stylesheets/fontawesome/all.scss */
.fa-cc-paypal:before {
  content: "\f1f4";
}

/* line 834, app/assets/stylesheets/fontawesome/all.scss */
.fa-cc-stripe:before {
  content: "\f1f5";
}

/* line 837, app/assets/stylesheets/fontawesome/all.scss */
.fa-cc-visa:before {
  content: "\f1f0";
}

/* line 840, app/assets/stylesheets/fontawesome/all.scss */
.fa-centercode:before {
  content: "\f380";
}

/* line 843, app/assets/stylesheets/fontawesome/all.scss */
.fa-centos:before {
  content: "\f789";
}

/* line 846, app/assets/stylesheets/fontawesome/all.scss */
.fa-certificate:before {
  content: "\f0a3";
}

/* line 849, app/assets/stylesheets/fontawesome/all.scss */
.fa-chair:before {
  content: "\f6c0";
}

/* line 852, app/assets/stylesheets/fontawesome/all.scss */
.fa-chalkboard:before {
  content: "\f51b";
}

/* line 855, app/assets/stylesheets/fontawesome/all.scss */
.fa-chalkboard-teacher:before {
  content: "\f51c";
}

/* line 858, app/assets/stylesheets/fontawesome/all.scss */
.fa-charging-station:before {
  content: "\f5e7";
}

/* line 861, app/assets/stylesheets/fontawesome/all.scss */
.fa-chart-area:before {
  content: "\f1fe";
}

/* line 864, app/assets/stylesheets/fontawesome/all.scss */
.fa-chart-bar:before {
  content: "\f080";
}

/* line 867, app/assets/stylesheets/fontawesome/all.scss */
.fa-chart-line:before {
  content: "\f201";
}

/* line 870, app/assets/stylesheets/fontawesome/all.scss */
.fa-chart-pie:before {
  content: "\f200";
}

/* line 873, app/assets/stylesheets/fontawesome/all.scss */
.fa-check:before {
  content: "\f00c";
}

/* line 876, app/assets/stylesheets/fontawesome/all.scss */
.fa-check-circle:before {
  content: "\f058";
}

/* line 879, app/assets/stylesheets/fontawesome/all.scss */
.fa-check-double:before {
  content: "\f560";
}

/* line 882, app/assets/stylesheets/fontawesome/all.scss */
.fa-check-square:before {
  content: "\f14a";
}

/* line 885, app/assets/stylesheets/fontawesome/all.scss */
.fa-cheese:before {
  content: "\f7ef";
}

/* line 888, app/assets/stylesheets/fontawesome/all.scss */
.fa-chess:before {
  content: "\f439";
}

/* line 891, app/assets/stylesheets/fontawesome/all.scss */
.fa-chess-bishop:before {
  content: "\f43a";
}

/* line 894, app/assets/stylesheets/fontawesome/all.scss */
.fa-chess-board:before {
  content: "\f43c";
}

/* line 897, app/assets/stylesheets/fontawesome/all.scss */
.fa-chess-king:before {
  content: "\f43f";
}

/* line 900, app/assets/stylesheets/fontawesome/all.scss */
.fa-chess-knight:before {
  content: "\f441";
}

/* line 903, app/assets/stylesheets/fontawesome/all.scss */
.fa-chess-pawn:before {
  content: "\f443";
}

/* line 906, app/assets/stylesheets/fontawesome/all.scss */
.fa-chess-queen:before {
  content: "\f445";
}

/* line 909, app/assets/stylesheets/fontawesome/all.scss */
.fa-chess-rook:before {
  content: "\f447";
}

/* line 912, app/assets/stylesheets/fontawesome/all.scss */
.fa-chevron-circle-down:before {
  content: "\f13a";
}

/* line 915, app/assets/stylesheets/fontawesome/all.scss */
.fa-chevron-circle-left:before {
  content: "\f137";
}

/* line 918, app/assets/stylesheets/fontawesome/all.scss */
.fa-chevron-circle-right:before {
  content: "\f138";
}

/* line 921, app/assets/stylesheets/fontawesome/all.scss */
.fa-chevron-circle-up:before {
  content: "\f139";
}

/* line 924, app/assets/stylesheets/fontawesome/all.scss */
.fa-chevron-down:before {
  content: "\f078";
}

/* line 927, app/assets/stylesheets/fontawesome/all.scss */
.fa-chevron-left:before {
  content: "\f053";
}

/* line 930, app/assets/stylesheets/fontawesome/all.scss */
.fa-chevron-right:before {
  content: "\f054";
}

/* line 933, app/assets/stylesheets/fontawesome/all.scss */
.fa-chevron-up:before {
  content: "\f077";
}

/* line 936, app/assets/stylesheets/fontawesome/all.scss */
.fa-child:before {
  content: "\f1ae";
}

/* line 939, app/assets/stylesheets/fontawesome/all.scss */
.fa-chrome:before {
  content: "\f268";
}

/* line 942, app/assets/stylesheets/fontawesome/all.scss */
.fa-chromecast:before {
  content: "\f838";
}

/* line 945, app/assets/stylesheets/fontawesome/all.scss */
.fa-church:before {
  content: "\f51d";
}

/* line 948, app/assets/stylesheets/fontawesome/all.scss */
.fa-circle:before {
  content: "\f111";
}

/* line 951, app/assets/stylesheets/fontawesome/all.scss */
.fa-circle-notch:before {
  content: "\f1ce";
}

/* line 954, app/assets/stylesheets/fontawesome/all.scss */
.fa-city:before {
  content: "\f64f";
}

/* line 957, app/assets/stylesheets/fontawesome/all.scss */
.fa-clinic-medical:before {
  content: "\f7f2";
}

/* line 960, app/assets/stylesheets/fontawesome/all.scss */
.fa-clipboard:before {
  content: "\f328";
}

/* line 963, app/assets/stylesheets/fontawesome/all.scss */
.fa-clipboard-check:before {
  content: "\f46c";
}

/* line 966, app/assets/stylesheets/fontawesome/all.scss */
.fa-clipboard-list:before {
  content: "\f46d";
}

/* line 969, app/assets/stylesheets/fontawesome/all.scss */
.fa-clock:before {
  content: "\f017";
}

/* line 972, app/assets/stylesheets/fontawesome/all.scss */
.fa-clone:before {
  content: "\f24d";
}

/* line 975, app/assets/stylesheets/fontawesome/all.scss */
.fa-closed-captioning:before {
  content: "\f20a";
}

/* line 978, app/assets/stylesheets/fontawesome/all.scss */
.fa-cloud:before {
  content: "\f0c2";
}

/* line 981, app/assets/stylesheets/fontawesome/all.scss */
.fa-cloud-download-alt:before {
  content: "\f381";
}

/* line 984, app/assets/stylesheets/fontawesome/all.scss */
.fa-cloud-meatball:before {
  content: "\f73b";
}

/* line 987, app/assets/stylesheets/fontawesome/all.scss */
.fa-cloud-moon:before {
  content: "\f6c3";
}

/* line 990, app/assets/stylesheets/fontawesome/all.scss */
.fa-cloud-moon-rain:before {
  content: "\f73c";
}

/* line 993, app/assets/stylesheets/fontawesome/all.scss */
.fa-cloud-rain:before {
  content: "\f73d";
}

/* line 996, app/assets/stylesheets/fontawesome/all.scss */
.fa-cloud-showers-heavy:before {
  content: "\f740";
}

/* line 999, app/assets/stylesheets/fontawesome/all.scss */
.fa-cloud-sun:before {
  content: "\f6c4";
}

/* line 1002, app/assets/stylesheets/fontawesome/all.scss */
.fa-cloud-sun-rain:before {
  content: "\f743";
}

/* line 1005, app/assets/stylesheets/fontawesome/all.scss */
.fa-cloud-upload-alt:before {
  content: "\f382";
}

/* line 1008, app/assets/stylesheets/fontawesome/all.scss */
.fa-cloudflare:before {
  content: "\e07d";
}

/* line 1011, app/assets/stylesheets/fontawesome/all.scss */
.fa-cloudscale:before {
  content: "\f383";
}

/* line 1014, app/assets/stylesheets/fontawesome/all.scss */
.fa-cloudsmith:before {
  content: "\f384";
}

/* line 1017, app/assets/stylesheets/fontawesome/all.scss */
.fa-cloudversify:before {
  content: "\f385";
}

/* line 1020, app/assets/stylesheets/fontawesome/all.scss */
.fa-cocktail:before {
  content: "\f561";
}

/* line 1023, app/assets/stylesheets/fontawesome/all.scss */
.fa-code:before {
  content: "\f121";
}

/* line 1026, app/assets/stylesheets/fontawesome/all.scss */
.fa-code-branch:before {
  content: "\f126";
}

/* line 1029, app/assets/stylesheets/fontawesome/all.scss */
.fa-codepen:before {
  content: "\f1cb";
}

/* line 1032, app/assets/stylesheets/fontawesome/all.scss */
.fa-codiepie:before {
  content: "\f284";
}

/* line 1035, app/assets/stylesheets/fontawesome/all.scss */
.fa-coffee:before {
  content: "\f0f4";
}

/* line 1038, app/assets/stylesheets/fontawesome/all.scss */
.fa-cog:before {
  content: "\f013";
}

/* line 1041, app/assets/stylesheets/fontawesome/all.scss */
.fa-cogs:before {
  content: "\f085";
}

/* line 1044, app/assets/stylesheets/fontawesome/all.scss */
.fa-coins:before {
  content: "\f51e";
}

/* line 1047, app/assets/stylesheets/fontawesome/all.scss */
.fa-columns:before {
  content: "\f0db";
}

/* line 1050, app/assets/stylesheets/fontawesome/all.scss */
.fa-comment:before {
  content: "\f075";
}

/* line 1053, app/assets/stylesheets/fontawesome/all.scss */
.fa-comment-alt:before {
  content: "\f27a";
}

/* line 1056, app/assets/stylesheets/fontawesome/all.scss */
.fa-comment-dollar:before {
  content: "\f651";
}

/* line 1059, app/assets/stylesheets/fontawesome/all.scss */
.fa-comment-dots:before {
  content: "\f4ad";
}

/* line 1062, app/assets/stylesheets/fontawesome/all.scss */
.fa-comment-medical:before {
  content: "\f7f5";
}

/* line 1065, app/assets/stylesheets/fontawesome/all.scss */
.fa-comment-slash:before {
  content: "\f4b3";
}

/* line 1068, app/assets/stylesheets/fontawesome/all.scss */
.fa-comments:before {
  content: "\f086";
}

/* line 1071, app/assets/stylesheets/fontawesome/all.scss */
.fa-comments-dollar:before {
  content: "\f653";
}

/* line 1074, app/assets/stylesheets/fontawesome/all.scss */
.fa-compact-disc:before {
  content: "\f51f";
}

/* line 1077, app/assets/stylesheets/fontawesome/all.scss */
.fa-compass:before {
  content: "\f14e";
}

/* line 1080, app/assets/stylesheets/fontawesome/all.scss */
.fa-compress:before {
  content: "\f066";
}

/* line 1083, app/assets/stylesheets/fontawesome/all.scss */
.fa-compress-alt:before {
  content: "\f422";
}

/* line 1086, app/assets/stylesheets/fontawesome/all.scss */
.fa-compress-arrows-alt:before {
  content: "\f78c";
}

/* line 1089, app/assets/stylesheets/fontawesome/all.scss */
.fa-concierge-bell:before {
  content: "\f562";
}

/* line 1092, app/assets/stylesheets/fontawesome/all.scss */
.fa-confluence:before {
  content: "\f78d";
}

/* line 1095, app/assets/stylesheets/fontawesome/all.scss */
.fa-connectdevelop:before {
  content: "\f20e";
}

/* line 1098, app/assets/stylesheets/fontawesome/all.scss */
.fa-contao:before {
  content: "\f26d";
}

/* line 1101, app/assets/stylesheets/fontawesome/all.scss */
.fa-cookie:before {
  content: "\f563";
}

/* line 1104, app/assets/stylesheets/fontawesome/all.scss */
.fa-cookie-bite:before {
  content: "\f564";
}

/* line 1107, app/assets/stylesheets/fontawesome/all.scss */
.fa-copy:before {
  content: "\f0c5";
}

/* line 1110, app/assets/stylesheets/fontawesome/all.scss */
.fa-copyright:before {
  content: "\f1f9";
}

/* line 1113, app/assets/stylesheets/fontawesome/all.scss */
.fa-cotton-bureau:before {
  content: "\f89e";
}

/* line 1116, app/assets/stylesheets/fontawesome/all.scss */
.fa-couch:before {
  content: "\f4b8";
}

/* line 1119, app/assets/stylesheets/fontawesome/all.scss */
.fa-cpanel:before {
  content: "\f388";
}

/* line 1122, app/assets/stylesheets/fontawesome/all.scss */
.fa-creative-commons:before {
  content: "\f25e";
}

/* line 1125, app/assets/stylesheets/fontawesome/all.scss */
.fa-creative-commons-by:before {
  content: "\f4e7";
}

/* line 1128, app/assets/stylesheets/fontawesome/all.scss */
.fa-creative-commons-nc:before {
  content: "\f4e8";
}

/* line 1131, app/assets/stylesheets/fontawesome/all.scss */
.fa-creative-commons-nc-eu:before {
  content: "\f4e9";
}

/* line 1134, app/assets/stylesheets/fontawesome/all.scss */
.fa-creative-commons-nc-jp:before {
  content: "\f4ea";
}

/* line 1137, app/assets/stylesheets/fontawesome/all.scss */
.fa-creative-commons-nd:before {
  content: "\f4eb";
}

/* line 1140, app/assets/stylesheets/fontawesome/all.scss */
.fa-creative-commons-pd:before {
  content: "\f4ec";
}

/* line 1143, app/assets/stylesheets/fontawesome/all.scss */
.fa-creative-commons-pd-alt:before {
  content: "\f4ed";
}

/* line 1146, app/assets/stylesheets/fontawesome/all.scss */
.fa-creative-commons-remix:before {
  content: "\f4ee";
}

/* line 1149, app/assets/stylesheets/fontawesome/all.scss */
.fa-creative-commons-sa:before {
  content: "\f4ef";
}

/* line 1152, app/assets/stylesheets/fontawesome/all.scss */
.fa-creative-commons-sampling:before {
  content: "\f4f0";
}

/* line 1155, app/assets/stylesheets/fontawesome/all.scss */
.fa-creative-commons-sampling-plus:before {
  content: "\f4f1";
}

/* line 1158, app/assets/stylesheets/fontawesome/all.scss */
.fa-creative-commons-share:before {
  content: "\f4f2";
}

/* line 1161, app/assets/stylesheets/fontawesome/all.scss */
.fa-creative-commons-zero:before {
  content: "\f4f3";
}

/* line 1164, app/assets/stylesheets/fontawesome/all.scss */
.fa-credit-card:before {
  content: "\f09d";
}

/* line 1167, app/assets/stylesheets/fontawesome/all.scss */
.fa-critical-role:before {
  content: "\f6c9";
}

/* line 1170, app/assets/stylesheets/fontawesome/all.scss */
.fa-crop:before {
  content: "\f125";
}

/* line 1173, app/assets/stylesheets/fontawesome/all.scss */
.fa-crop-alt:before {
  content: "\f565";
}

/* line 1176, app/assets/stylesheets/fontawesome/all.scss */
.fa-cross:before {
  content: "\f654";
}

/* line 1179, app/assets/stylesheets/fontawesome/all.scss */
.fa-crosshairs:before {
  content: "\f05b";
}

/* line 1182, app/assets/stylesheets/fontawesome/all.scss */
.fa-crow:before {
  content: "\f520";
}

/* line 1185, app/assets/stylesheets/fontawesome/all.scss */
.fa-crown:before {
  content: "\f521";
}

/* line 1188, app/assets/stylesheets/fontawesome/all.scss */
.fa-crutch:before {
  content: "\f7f7";
}

/* line 1191, app/assets/stylesheets/fontawesome/all.scss */
.fa-css3:before {
  content: "\f13c";
}

/* line 1194, app/assets/stylesheets/fontawesome/all.scss */
.fa-css3-alt:before {
  content: "\f38b";
}

/* line 1197, app/assets/stylesheets/fontawesome/all.scss */
.fa-cube:before {
  content: "\f1b2";
}

/* line 1200, app/assets/stylesheets/fontawesome/all.scss */
.fa-cubes:before {
  content: "\f1b3";
}

/* line 1203, app/assets/stylesheets/fontawesome/all.scss */
.fa-cut:before {
  content: "\f0c4";
}

/* line 1206, app/assets/stylesheets/fontawesome/all.scss */
.fa-cuttlefish:before {
  content: "\f38c";
}

/* line 1209, app/assets/stylesheets/fontawesome/all.scss */
.fa-d-and-d:before {
  content: "\f38d";
}

/* line 1212, app/assets/stylesheets/fontawesome/all.scss */
.fa-d-and-d-beyond:before {
  content: "\f6ca";
}

/* line 1215, app/assets/stylesheets/fontawesome/all.scss */
.fa-dailymotion:before {
  content: "\e052";
}

/* line 1218, app/assets/stylesheets/fontawesome/all.scss */
.fa-dashcube:before {
  content: "\f210";
}

/* line 1221, app/assets/stylesheets/fontawesome/all.scss */
.fa-database:before {
  content: "\f1c0";
}

/* line 1224, app/assets/stylesheets/fontawesome/all.scss */
.fa-deaf:before {
  content: "\f2a4";
}

/* line 1227, app/assets/stylesheets/fontawesome/all.scss */
.fa-deezer:before {
  content: "\e077";
}

/* line 1230, app/assets/stylesheets/fontawesome/all.scss */
.fa-delicious:before {
  content: "\f1a5";
}

/* line 1233, app/assets/stylesheets/fontawesome/all.scss */
.fa-democrat:before {
  content: "\f747";
}

/* line 1236, app/assets/stylesheets/fontawesome/all.scss */
.fa-deploydog:before {
  content: "\f38e";
}

/* line 1239, app/assets/stylesheets/fontawesome/all.scss */
.fa-deskpro:before {
  content: "\f38f";
}

/* line 1242, app/assets/stylesheets/fontawesome/all.scss */
.fa-desktop:before {
  content: "\f108";
}

/* line 1245, app/assets/stylesheets/fontawesome/all.scss */
.fa-dev:before {
  content: "\f6cc";
}

/* line 1248, app/assets/stylesheets/fontawesome/all.scss */
.fa-deviantart:before {
  content: "\f1bd";
}

/* line 1251, app/assets/stylesheets/fontawesome/all.scss */
.fa-dharmachakra:before {
  content: "\f655";
}

/* line 1254, app/assets/stylesheets/fontawesome/all.scss */
.fa-dhl:before {
  content: "\f790";
}

/* line 1257, app/assets/stylesheets/fontawesome/all.scss */
.fa-diagnoses:before {
  content: "\f470";
}

/* line 1260, app/assets/stylesheets/fontawesome/all.scss */
.fa-diaspora:before {
  content: "\f791";
}

/* line 1263, app/assets/stylesheets/fontawesome/all.scss */
.fa-dice:before {
  content: "\f522";
}

/* line 1266, app/assets/stylesheets/fontawesome/all.scss */
.fa-dice-d20:before {
  content: "\f6cf";
}

/* line 1269, app/assets/stylesheets/fontawesome/all.scss */
.fa-dice-d6:before {
  content: "\f6d1";
}

/* line 1272, app/assets/stylesheets/fontawesome/all.scss */
.fa-dice-five:before {
  content: "\f523";
}

/* line 1275, app/assets/stylesheets/fontawesome/all.scss */
.fa-dice-four:before {
  content: "\f524";
}

/* line 1278, app/assets/stylesheets/fontawesome/all.scss */
.fa-dice-one:before {
  content: "\f525";
}

/* line 1281, app/assets/stylesheets/fontawesome/all.scss */
.fa-dice-six:before {
  content: "\f526";
}

/* line 1284, app/assets/stylesheets/fontawesome/all.scss */
.fa-dice-three:before {
  content: "\f527";
}

/* line 1287, app/assets/stylesheets/fontawesome/all.scss */
.fa-dice-two:before {
  content: "\f528";
}

/* line 1290, app/assets/stylesheets/fontawesome/all.scss */
.fa-digg:before {
  content: "\f1a6";
}

/* line 1293, app/assets/stylesheets/fontawesome/all.scss */
.fa-digital-ocean:before {
  content: "\f391";
}

/* line 1296, app/assets/stylesheets/fontawesome/all.scss */
.fa-digital-tachograph:before {
  content: "\f566";
}

/* line 1299, app/assets/stylesheets/fontawesome/all.scss */
.fa-directions:before {
  content: "\f5eb";
}

/* line 1302, app/assets/stylesheets/fontawesome/all.scss */
.fa-discord:before {
  content: "\f392";
}

/* line 1305, app/assets/stylesheets/fontawesome/all.scss */
.fa-discourse:before {
  content: "\f393";
}

/* line 1308, app/assets/stylesheets/fontawesome/all.scss */
.fa-disease:before {
  content: "\f7fa";
}

/* line 1311, app/assets/stylesheets/fontawesome/all.scss */
.fa-divide:before {
  content: "\f529";
}

/* line 1314, app/assets/stylesheets/fontawesome/all.scss */
.fa-dizzy:before {
  content: "\f567";
}

/* line 1317, app/assets/stylesheets/fontawesome/all.scss */
.fa-dna:before {
  content: "\f471";
}

/* line 1320, app/assets/stylesheets/fontawesome/all.scss */
.fa-dochub:before {
  content: "\f394";
}

/* line 1323, app/assets/stylesheets/fontawesome/all.scss */
.fa-docker:before {
  content: "\f395";
}

/* line 1326, app/assets/stylesheets/fontawesome/all.scss */
.fa-dog:before {
  content: "\f6d3";
}

/* line 1329, app/assets/stylesheets/fontawesome/all.scss */
.fa-dollar-sign:before {
  content: "\f155";
}

/* line 1332, app/assets/stylesheets/fontawesome/all.scss */
.fa-dolly:before {
  content: "\f472";
}

/* line 1335, app/assets/stylesheets/fontawesome/all.scss */
.fa-dolly-flatbed:before {
  content: "\f474";
}

/* line 1338, app/assets/stylesheets/fontawesome/all.scss */
.fa-donate:before {
  content: "\f4b9";
}

/* line 1341, app/assets/stylesheets/fontawesome/all.scss */
.fa-door-closed:before {
  content: "\f52a";
}

/* line 1344, app/assets/stylesheets/fontawesome/all.scss */
.fa-door-open:before {
  content: "\f52b";
}

/* line 1347, app/assets/stylesheets/fontawesome/all.scss */
.fa-dot-circle:before {
  content: "\f192";
}

/* line 1350, app/assets/stylesheets/fontawesome/all.scss */
.fa-dove:before {
  content: "\f4ba";
}

/* line 1353, app/assets/stylesheets/fontawesome/all.scss */
.fa-download:before {
  content: "\f019";
}

/* line 1356, app/assets/stylesheets/fontawesome/all.scss */
.fa-draft2digital:before {
  content: "\f396";
}

/* line 1359, app/assets/stylesheets/fontawesome/all.scss */
.fa-drafting-compass:before {
  content: "\f568";
}

/* line 1362, app/assets/stylesheets/fontawesome/all.scss */
.fa-dragon:before {
  content: "\f6d5";
}

/* line 1365, app/assets/stylesheets/fontawesome/all.scss */
.fa-draw-polygon:before {
  content: "\f5ee";
}

/* line 1368, app/assets/stylesheets/fontawesome/all.scss */
.fa-dribbble:before {
  content: "\f17d";
}

/* line 1371, app/assets/stylesheets/fontawesome/all.scss */
.fa-dribbble-square:before {
  content: "\f397";
}

/* line 1374, app/assets/stylesheets/fontawesome/all.scss */
.fa-dropbox:before {
  content: "\f16b";
}

/* line 1377, app/assets/stylesheets/fontawesome/all.scss */
.fa-drum:before {
  content: "\f569";
}

/* line 1380, app/assets/stylesheets/fontawesome/all.scss */
.fa-drum-steelpan:before {
  content: "\f56a";
}

/* line 1383, app/assets/stylesheets/fontawesome/all.scss */
.fa-drumstick-bite:before {
  content: "\f6d7";
}

/* line 1386, app/assets/stylesheets/fontawesome/all.scss */
.fa-drupal:before {
  content: "\f1a9";
}

/* line 1389, app/assets/stylesheets/fontawesome/all.scss */
.fa-dumbbell:before {
  content: "\f44b";
}

/* line 1392, app/assets/stylesheets/fontawesome/all.scss */
.fa-dumpster:before {
  content: "\f793";
}

/* line 1395, app/assets/stylesheets/fontawesome/all.scss */
.fa-dumpster-fire:before {
  content: "\f794";
}

/* line 1398, app/assets/stylesheets/fontawesome/all.scss */
.fa-dungeon:before {
  content: "\f6d9";
}

/* line 1401, app/assets/stylesheets/fontawesome/all.scss */
.fa-dyalog:before {
  content: "\f399";
}

/* line 1404, app/assets/stylesheets/fontawesome/all.scss */
.fa-earlybirds:before {
  content: "\f39a";
}

/* line 1407, app/assets/stylesheets/fontawesome/all.scss */
.fa-ebay:before {
  content: "\f4f4";
}

/* line 1410, app/assets/stylesheets/fontawesome/all.scss */
.fa-edge:before {
  content: "\f282";
}

/* line 1413, app/assets/stylesheets/fontawesome/all.scss */
.fa-edge-legacy:before {
  content: "\e078";
}

/* line 1416, app/assets/stylesheets/fontawesome/all.scss */
.fa-edit:before {
  content: "\f044";
}

/* line 1419, app/assets/stylesheets/fontawesome/all.scss */
.fa-egg:before {
  content: "\f7fb";
}

/* line 1422, app/assets/stylesheets/fontawesome/all.scss */
.fa-eject:before {
  content: "\f052";
}

/* line 1425, app/assets/stylesheets/fontawesome/all.scss */
.fa-elementor:before {
  content: "\f430";
}

/* line 1428, app/assets/stylesheets/fontawesome/all.scss */
.fa-ellipsis-h:before {
  content: "\f141";
}

/* line 1431, app/assets/stylesheets/fontawesome/all.scss */
.fa-ellipsis-v:before {
  content: "\f142";
}

/* line 1434, app/assets/stylesheets/fontawesome/all.scss */
.fa-ello:before {
  content: "\f5f1";
}

/* line 1437, app/assets/stylesheets/fontawesome/all.scss */
.fa-ember:before {
  content: "\f423";
}

/* line 1440, app/assets/stylesheets/fontawesome/all.scss */
.fa-empire:before {
  content: "\f1d1";
}

/* line 1443, app/assets/stylesheets/fontawesome/all.scss */
.fa-envelope:before {
  content: "\f0e0";
}

/* line 1446, app/assets/stylesheets/fontawesome/all.scss */
.fa-envelope-open:before {
  content: "\f2b6";
}

/* line 1449, app/assets/stylesheets/fontawesome/all.scss */
.fa-envelope-open-text:before {
  content: "\f658";
}

/* line 1452, app/assets/stylesheets/fontawesome/all.scss */
.fa-envelope-square:before {
  content: "\f199";
}

/* line 1455, app/assets/stylesheets/fontawesome/all.scss */
.fa-envira:before {
  content: "\f299";
}

/* line 1458, app/assets/stylesheets/fontawesome/all.scss */
.fa-equals:before {
  content: "\f52c";
}

/* line 1461, app/assets/stylesheets/fontawesome/all.scss */
.fa-eraser:before {
  content: "\f12d";
}

/* line 1464, app/assets/stylesheets/fontawesome/all.scss */
.fa-erlang:before {
  content: "\f39d";
}

/* line 1467, app/assets/stylesheets/fontawesome/all.scss */
.fa-ethereum:before {
  content: "\f42e";
}

/* line 1470, app/assets/stylesheets/fontawesome/all.scss */
.fa-ethernet:before {
  content: "\f796";
}

/* line 1473, app/assets/stylesheets/fontawesome/all.scss */
.fa-etsy:before {
  content: "\f2d7";
}

/* line 1476, app/assets/stylesheets/fontawesome/all.scss */
.fa-euro-sign:before {
  content: "\f153";
}

/* line 1479, app/assets/stylesheets/fontawesome/all.scss */
.fa-evernote:before {
  content: "\f839";
}

/* line 1482, app/assets/stylesheets/fontawesome/all.scss */
.fa-exchange-alt:before {
  content: "\f362";
}

/* line 1485, app/assets/stylesheets/fontawesome/all.scss */
.fa-exclamation:before {
  content: "\f12a";
}

/* line 1488, app/assets/stylesheets/fontawesome/all.scss */
.fa-exclamation-circle:before {
  content: "\f06a";
}

/* line 1491, app/assets/stylesheets/fontawesome/all.scss */
.fa-exclamation-triangle:before {
  content: "\f071";
}

/* line 1494, app/assets/stylesheets/fontawesome/all.scss */
.fa-expand:before {
  content: "\f065";
}

/* line 1497, app/assets/stylesheets/fontawesome/all.scss */
.fa-expand-alt:before {
  content: "\f424";
}

/* line 1500, app/assets/stylesheets/fontawesome/all.scss */
.fa-expand-arrows-alt:before {
  content: "\f31e";
}

/* line 1503, app/assets/stylesheets/fontawesome/all.scss */
.fa-expeditedssl:before {
  content: "\f23e";
}

/* line 1506, app/assets/stylesheets/fontawesome/all.scss */
.fa-external-link-alt:before {
  content: "\f35d";
}

/* line 1509, app/assets/stylesheets/fontawesome/all.scss */
.fa-external-link-square-alt:before {
  content: "\f360";
}

/* line 1512, app/assets/stylesheets/fontawesome/all.scss */
.fa-eye:before {
  content: "\f06e";
}

/* line 1515, app/assets/stylesheets/fontawesome/all.scss */
.fa-eye-dropper:before {
  content: "\f1fb";
}

/* line 1518, app/assets/stylesheets/fontawesome/all.scss */
.fa-eye-slash:before {
  content: "\f070";
}

/* line 1521, app/assets/stylesheets/fontawesome/all.scss */
.fa-facebook:before {
  content: "\f09a";
}

/* line 1524, app/assets/stylesheets/fontawesome/all.scss */
.fa-facebook-f:before {
  content: "\f39e";
}

/* line 1527, app/assets/stylesheets/fontawesome/all.scss */
.fa-facebook-messenger:before {
  content: "\f39f";
}

/* line 1530, app/assets/stylesheets/fontawesome/all.scss */
.fa-facebook-square:before {
  content: "\f082";
}

/* line 1533, app/assets/stylesheets/fontawesome/all.scss */
.fa-fan:before {
  content: "\f863";
}

/* line 1536, app/assets/stylesheets/fontawesome/all.scss */
.fa-fantasy-flight-games:before {
  content: "\f6dc";
}

/* line 1539, app/assets/stylesheets/fontawesome/all.scss */
.fa-fast-backward:before {
  content: "\f049";
}

/* line 1542, app/assets/stylesheets/fontawesome/all.scss */
.fa-fast-forward:before {
  content: "\f050";
}

/* line 1545, app/assets/stylesheets/fontawesome/all.scss */
.fa-faucet:before {
  content: "\e005";
}

/* line 1548, app/assets/stylesheets/fontawesome/all.scss */
.fa-fax:before {
  content: "\f1ac";
}

/* line 1551, app/assets/stylesheets/fontawesome/all.scss */
.fa-feather:before {
  content: "\f52d";
}

/* line 1554, app/assets/stylesheets/fontawesome/all.scss */
.fa-feather-alt:before {
  content: "\f56b";
}

/* line 1557, app/assets/stylesheets/fontawesome/all.scss */
.fa-fedex:before {
  content: "\f797";
}

/* line 1560, app/assets/stylesheets/fontawesome/all.scss */
.fa-fedora:before {
  content: "\f798";
}

/* line 1563, app/assets/stylesheets/fontawesome/all.scss */
.fa-female:before {
  content: "\f182";
}

/* line 1566, app/assets/stylesheets/fontawesome/all.scss */
.fa-fighter-jet:before {
  content: "\f0fb";
}

/* line 1569, app/assets/stylesheets/fontawesome/all.scss */
.fa-figma:before {
  content: "\f799";
}

/* line 1572, app/assets/stylesheets/fontawesome/all.scss */
.fa-file:before {
  content: "\f15b";
}

/* line 1575, app/assets/stylesheets/fontawesome/all.scss */
.fa-file-alt:before {
  content: "\f15c";
}

/* line 1578, app/assets/stylesheets/fontawesome/all.scss */
.fa-file-archive:before {
  content: "\f1c6";
}

/* line 1581, app/assets/stylesheets/fontawesome/all.scss */
.fa-file-audio:before {
  content: "\f1c7";
}

/* line 1584, app/assets/stylesheets/fontawesome/all.scss */
.fa-file-code:before {
  content: "\f1c9";
}

/* line 1587, app/assets/stylesheets/fontawesome/all.scss */
.fa-file-contract:before {
  content: "\f56c";
}

/* line 1590, app/assets/stylesheets/fontawesome/all.scss */
.fa-file-csv:before {
  content: "\f6dd";
}

/* line 1593, app/assets/stylesheets/fontawesome/all.scss */
.fa-file-download:before {
  content: "\f56d";
}

/* line 1596, app/assets/stylesheets/fontawesome/all.scss */
.fa-file-excel:before {
  content: "\f1c3";
}

/* line 1599, app/assets/stylesheets/fontawesome/all.scss */
.fa-file-export:before {
  content: "\f56e";
}

/* line 1602, app/assets/stylesheets/fontawesome/all.scss */
.fa-file-image:before {
  content: "\f1c5";
}

/* line 1605, app/assets/stylesheets/fontawesome/all.scss */
.fa-file-import:before {
  content: "\f56f";
}

/* line 1608, app/assets/stylesheets/fontawesome/all.scss */
.fa-file-invoice:before {
  content: "\f570";
}

/* line 1611, app/assets/stylesheets/fontawesome/all.scss */
.fa-file-invoice-dollar:before {
  content: "\f571";
}

/* line 1614, app/assets/stylesheets/fontawesome/all.scss */
.fa-file-medical:before {
  content: "\f477";
}

/* line 1617, app/assets/stylesheets/fontawesome/all.scss */
.fa-file-medical-alt:before {
  content: "\f478";
}

/* line 1620, app/assets/stylesheets/fontawesome/all.scss */
.fa-file-pdf:before {
  content: "\f1c1";
}

/* line 1623, app/assets/stylesheets/fontawesome/all.scss */
.fa-file-powerpoint:before {
  content: "\f1c4";
}

/* line 1626, app/assets/stylesheets/fontawesome/all.scss */
.fa-file-prescription:before {
  content: "\f572";
}

/* line 1629, app/assets/stylesheets/fontawesome/all.scss */
.fa-file-signature:before {
  content: "\f573";
}

/* line 1632, app/assets/stylesheets/fontawesome/all.scss */
.fa-file-upload:before {
  content: "\f574";
}

/* line 1635, app/assets/stylesheets/fontawesome/all.scss */
.fa-file-video:before {
  content: "\f1c8";
}

/* line 1638, app/assets/stylesheets/fontawesome/all.scss */
.fa-file-word:before {
  content: "\f1c2";
}

/* line 1641, app/assets/stylesheets/fontawesome/all.scss */
.fa-fill:before {
  content: "\f575";
}

/* line 1644, app/assets/stylesheets/fontawesome/all.scss */
.fa-fill-drip:before {
  content: "\f576";
}

/* line 1647, app/assets/stylesheets/fontawesome/all.scss */
.fa-film:before {
  content: "\f008";
}

/* line 1650, app/assets/stylesheets/fontawesome/all.scss */
.fa-filter:before {
  content: "\f0b0";
}

/* line 1653, app/assets/stylesheets/fontawesome/all.scss */
.fa-fingerprint:before {
  content: "\f577";
}

/* line 1656, app/assets/stylesheets/fontawesome/all.scss */
.fa-fire:before {
  content: "\f06d";
}

/* line 1659, app/assets/stylesheets/fontawesome/all.scss */
.fa-fire-alt:before {
  content: "\f7e4";
}

/* line 1662, app/assets/stylesheets/fontawesome/all.scss */
.fa-fire-extinguisher:before {
  content: "\f134";
}

/* line 1665, app/assets/stylesheets/fontawesome/all.scss */
.fa-firefox:before {
  content: "\f269";
}

/* line 1668, app/assets/stylesheets/fontawesome/all.scss */
.fa-firefox-browser:before {
  content: "\e007";
}

/* line 1671, app/assets/stylesheets/fontawesome/all.scss */
.fa-first-aid:before {
  content: "\f479";
}

/* line 1674, app/assets/stylesheets/fontawesome/all.scss */
.fa-first-order:before {
  content: "\f2b0";
}

/* line 1677, app/assets/stylesheets/fontawesome/all.scss */
.fa-first-order-alt:before {
  content: "\f50a";
}

/* line 1680, app/assets/stylesheets/fontawesome/all.scss */
.fa-firstdraft:before {
  content: "\f3a1";
}

/* line 1683, app/assets/stylesheets/fontawesome/all.scss */
.fa-fish:before {
  content: "\f578";
}

/* line 1686, app/assets/stylesheets/fontawesome/all.scss */
.fa-fist-raised:before {
  content: "\f6de";
}

/* line 1689, app/assets/stylesheets/fontawesome/all.scss */
.fa-flag:before {
  content: "\f024";
}

/* line 1692, app/assets/stylesheets/fontawesome/all.scss */
.fa-flag-checkered:before {
  content: "\f11e";
}

/* line 1695, app/assets/stylesheets/fontawesome/all.scss */
.fa-flag-usa:before {
  content: "\f74d";
}

/* line 1698, app/assets/stylesheets/fontawesome/all.scss */
.fa-flask:before {
  content: "\f0c3";
}

/* line 1701, app/assets/stylesheets/fontawesome/all.scss */
.fa-flickr:before {
  content: "\f16e";
}

/* line 1704, app/assets/stylesheets/fontawesome/all.scss */
.fa-flipboard:before {
  content: "\f44d";
}

/* line 1707, app/assets/stylesheets/fontawesome/all.scss */
.fa-flushed:before {
  content: "\f579";
}

/* line 1710, app/assets/stylesheets/fontawesome/all.scss */
.fa-fly:before {
  content: "\f417";
}

/* line 1713, app/assets/stylesheets/fontawesome/all.scss */
.fa-folder:before {
  content: "\f07b";
}

/* line 1716, app/assets/stylesheets/fontawesome/all.scss */
.fa-folder-minus:before {
  content: "\f65d";
}

/* line 1719, app/assets/stylesheets/fontawesome/all.scss */
.fa-folder-open:before {
  content: "\f07c";
}

/* line 1722, app/assets/stylesheets/fontawesome/all.scss */
.fa-folder-plus:before {
  content: "\f65e";
}

/* line 1725, app/assets/stylesheets/fontawesome/all.scss */
.fa-font:before {
  content: "\f031";
}

/* line 1728, app/assets/stylesheets/fontawesome/all.scss */
.fa-font-awesome:before {
  content: "\f2b4";
}

/* line 1731, app/assets/stylesheets/fontawesome/all.scss */
.fa-font-awesome-alt:before {
  content: "\f35c";
}

/* line 1734, app/assets/stylesheets/fontawesome/all.scss */
.fa-font-awesome-flag:before {
  content: "\f425";
}

/* line 1737, app/assets/stylesheets/fontawesome/all.scss */
.fa-font-awesome-logo-full:before {
  content: "\f4e6";
}

/* line 1740, app/assets/stylesheets/fontawesome/all.scss */
.fa-fonticons:before {
  content: "\f280";
}

/* line 1743, app/assets/stylesheets/fontawesome/all.scss */
.fa-fonticons-fi:before {
  content: "\f3a2";
}

/* line 1746, app/assets/stylesheets/fontawesome/all.scss */
.fa-football-ball:before {
  content: "\f44e";
}

/* line 1749, app/assets/stylesheets/fontawesome/all.scss */
.fa-fort-awesome:before {
  content: "\f286";
}

/* line 1752, app/assets/stylesheets/fontawesome/all.scss */
.fa-fort-awesome-alt:before {
  content: "\f3a3";
}

/* line 1755, app/assets/stylesheets/fontawesome/all.scss */
.fa-forumbee:before {
  content: "\f211";
}

/* line 1758, app/assets/stylesheets/fontawesome/all.scss */
.fa-forward:before {
  content: "\f04e";
}

/* line 1761, app/assets/stylesheets/fontawesome/all.scss */
.fa-foursquare:before {
  content: "\f180";
}

/* line 1764, app/assets/stylesheets/fontawesome/all.scss */
.fa-free-code-camp:before {
  content: "\f2c5";
}

/* line 1767, app/assets/stylesheets/fontawesome/all.scss */
.fa-freebsd:before {
  content: "\f3a4";
}

/* line 1770, app/assets/stylesheets/fontawesome/all.scss */
.fa-frog:before {
  content: "\f52e";
}

/* line 1773, app/assets/stylesheets/fontawesome/all.scss */
.fa-frown:before {
  content: "\f119";
}

/* line 1776, app/assets/stylesheets/fontawesome/all.scss */
.fa-frown-open:before {
  content: "\f57a";
}

/* line 1779, app/assets/stylesheets/fontawesome/all.scss */
.fa-fulcrum:before {
  content: "\f50b";
}

/* line 1782, app/assets/stylesheets/fontawesome/all.scss */
.fa-funnel-dollar:before {
  content: "\f662";
}

/* line 1785, app/assets/stylesheets/fontawesome/all.scss */
.fa-futbol:before {
  content: "\f1e3";
}

/* line 1788, app/assets/stylesheets/fontawesome/all.scss */
.fa-galactic-republic:before {
  content: "\f50c";
}

/* line 1791, app/assets/stylesheets/fontawesome/all.scss */
.fa-galactic-senate:before {
  content: "\f50d";
}

/* line 1794, app/assets/stylesheets/fontawesome/all.scss */
.fa-gamepad:before {
  content: "\f11b";
}

/* line 1797, app/assets/stylesheets/fontawesome/all.scss */
.fa-gas-pump:before {
  content: "\f52f";
}

/* line 1800, app/assets/stylesheets/fontawesome/all.scss */
.fa-gavel:before {
  content: "\f0e3";
}

/* line 1803, app/assets/stylesheets/fontawesome/all.scss */
.fa-gem:before {
  content: "\f3a5";
}

/* line 1806, app/assets/stylesheets/fontawesome/all.scss */
.fa-genderless:before {
  content: "\f22d";
}

/* line 1809, app/assets/stylesheets/fontawesome/all.scss */
.fa-get-pocket:before {
  content: "\f265";
}

/* line 1812, app/assets/stylesheets/fontawesome/all.scss */
.fa-gg:before {
  content: "\f260";
}

/* line 1815, app/assets/stylesheets/fontawesome/all.scss */
.fa-gg-circle:before {
  content: "\f261";
}

/* line 1818, app/assets/stylesheets/fontawesome/all.scss */
.fa-ghost:before {
  content: "\f6e2";
}

/* line 1821, app/assets/stylesheets/fontawesome/all.scss */
.fa-gift:before {
  content: "\f06b";
}

/* line 1824, app/assets/stylesheets/fontawesome/all.scss */
.fa-gifts:before {
  content: "\f79c";
}

/* line 1827, app/assets/stylesheets/fontawesome/all.scss */
.fa-git:before {
  content: "\f1d3";
}

/* line 1830, app/assets/stylesheets/fontawesome/all.scss */
.fa-git-alt:before {
  content: "\f841";
}

/* line 1833, app/assets/stylesheets/fontawesome/all.scss */
.fa-git-square:before {
  content: "\f1d2";
}

/* line 1836, app/assets/stylesheets/fontawesome/all.scss */
.fa-github:before {
  content: "\f09b";
}

/* line 1839, app/assets/stylesheets/fontawesome/all.scss */
.fa-github-alt:before {
  content: "\f113";
}

/* line 1842, app/assets/stylesheets/fontawesome/all.scss */
.fa-github-square:before {
  content: "\f092";
}

/* line 1845, app/assets/stylesheets/fontawesome/all.scss */
.fa-gitkraken:before {
  content: "\f3a6";
}

/* line 1848, app/assets/stylesheets/fontawesome/all.scss */
.fa-gitlab:before {
  content: "\f296";
}

/* line 1851, app/assets/stylesheets/fontawesome/all.scss */
.fa-gitter:before {
  content: "\f426";
}

/* line 1854, app/assets/stylesheets/fontawesome/all.scss */
.fa-glass-cheers:before {
  content: "\f79f";
}

/* line 1857, app/assets/stylesheets/fontawesome/all.scss */
.fa-glass-martini:before {
  content: "\f000";
}

/* line 1860, app/assets/stylesheets/fontawesome/all.scss */
.fa-glass-martini-alt:before {
  content: "\f57b";
}

/* line 1863, app/assets/stylesheets/fontawesome/all.scss */
.fa-glass-whiskey:before {
  content: "\f7a0";
}

/* line 1866, app/assets/stylesheets/fontawesome/all.scss */
.fa-glasses:before {
  content: "\f530";
}

/* line 1869, app/assets/stylesheets/fontawesome/all.scss */
.fa-glide:before {
  content: "\f2a5";
}

/* line 1872, app/assets/stylesheets/fontawesome/all.scss */
.fa-glide-g:before {
  content: "\f2a6";
}

/* line 1875, app/assets/stylesheets/fontawesome/all.scss */
.fa-globe:before {
  content: "\f0ac";
}

/* line 1878, app/assets/stylesheets/fontawesome/all.scss */
.fa-globe-africa:before {
  content: "\f57c";
}

/* line 1881, app/assets/stylesheets/fontawesome/all.scss */
.fa-globe-americas:before {
  content: "\f57d";
}

/* line 1884, app/assets/stylesheets/fontawesome/all.scss */
.fa-globe-asia:before {
  content: "\f57e";
}

/* line 1887, app/assets/stylesheets/fontawesome/all.scss */
.fa-globe-europe:before {
  content: "\f7a2";
}

/* line 1890, app/assets/stylesheets/fontawesome/all.scss */
.fa-gofore:before {
  content: "\f3a7";
}

/* line 1893, app/assets/stylesheets/fontawesome/all.scss */
.fa-golf-ball:before {
  content: "\f450";
}

/* line 1896, app/assets/stylesheets/fontawesome/all.scss */
.fa-goodreads:before {
  content: "\f3a8";
}

/* line 1899, app/assets/stylesheets/fontawesome/all.scss */
.fa-goodreads-g:before {
  content: "\f3a9";
}

/* line 1902, app/assets/stylesheets/fontawesome/all.scss */
.fa-google:before {
  content: "\f1a0";
}

/* line 1905, app/assets/stylesheets/fontawesome/all.scss */
.fa-google-drive:before {
  content: "\f3aa";
}

/* line 1908, app/assets/stylesheets/fontawesome/all.scss */
.fa-google-pay:before {
  content: "\e079";
}

/* line 1911, app/assets/stylesheets/fontawesome/all.scss */
.fa-google-play:before {
  content: "\f3ab";
}

/* line 1914, app/assets/stylesheets/fontawesome/all.scss */
.fa-google-plus:before {
  content: "\f2b3";
}

/* line 1917, app/assets/stylesheets/fontawesome/all.scss */
.fa-google-plus-g:before {
  content: "\f0d5";
}

/* line 1920, app/assets/stylesheets/fontawesome/all.scss */
.fa-google-plus-square:before {
  content: "\f0d4";
}

/* line 1923, app/assets/stylesheets/fontawesome/all.scss */
.fa-google-wallet:before {
  content: "\f1ee";
}

/* line 1926, app/assets/stylesheets/fontawesome/all.scss */
.fa-gopuram:before {
  content: "\f664";
}

/* line 1929, app/assets/stylesheets/fontawesome/all.scss */
.fa-graduation-cap:before {
  content: "\f19d";
}

/* line 1932, app/assets/stylesheets/fontawesome/all.scss */
.fa-gratipay:before {
  content: "\f184";
}

/* line 1935, app/assets/stylesheets/fontawesome/all.scss */
.fa-grav:before {
  content: "\f2d6";
}

/* line 1938, app/assets/stylesheets/fontawesome/all.scss */
.fa-greater-than:before {
  content: "\f531";
}

/* line 1941, app/assets/stylesheets/fontawesome/all.scss */
.fa-greater-than-equal:before {
  content: "\f532";
}

/* line 1944, app/assets/stylesheets/fontawesome/all.scss */
.fa-grimace:before {
  content: "\f57f";
}

/* line 1947, app/assets/stylesheets/fontawesome/all.scss */
.fa-grin:before {
  content: "\f580";
}

/* line 1950, app/assets/stylesheets/fontawesome/all.scss */
.fa-grin-alt:before {
  content: "\f581";
}

/* line 1953, app/assets/stylesheets/fontawesome/all.scss */
.fa-grin-beam:before {
  content: "\f582";
}

/* line 1956, app/assets/stylesheets/fontawesome/all.scss */
.fa-grin-beam-sweat:before {
  content: "\f583";
}

/* line 1959, app/assets/stylesheets/fontawesome/all.scss */
.fa-grin-hearts:before {
  content: "\f584";
}

/* line 1962, app/assets/stylesheets/fontawesome/all.scss */
.fa-grin-squint:before {
  content: "\f585";
}

/* line 1965, app/assets/stylesheets/fontawesome/all.scss */
.fa-grin-squint-tears:before {
  content: "\f586";
}

/* line 1968, app/assets/stylesheets/fontawesome/all.scss */
.fa-grin-stars:before {
  content: "\f587";
}

/* line 1971, app/assets/stylesheets/fontawesome/all.scss */
.fa-grin-tears:before {
  content: "\f588";
}

/* line 1974, app/assets/stylesheets/fontawesome/all.scss */
.fa-grin-tongue:before {
  content: "\f589";
}

/* line 1977, app/assets/stylesheets/fontawesome/all.scss */
.fa-grin-tongue-squint:before {
  content: "\f58a";
}

/* line 1980, app/assets/stylesheets/fontawesome/all.scss */
.fa-grin-tongue-wink:before {
  content: "\f58b";
}

/* line 1983, app/assets/stylesheets/fontawesome/all.scss */
.fa-grin-wink:before {
  content: "\f58c";
}

/* line 1986, app/assets/stylesheets/fontawesome/all.scss */
.fa-grip-horizontal:before {
  content: "\f58d";
}

/* line 1989, app/assets/stylesheets/fontawesome/all.scss */
.fa-grip-lines:before {
  content: "\f7a4";
}

/* line 1992, app/assets/stylesheets/fontawesome/all.scss */
.fa-grip-lines-vertical:before {
  content: "\f7a5";
}

/* line 1995, app/assets/stylesheets/fontawesome/all.scss */
.fa-grip-vertical:before {
  content: "\f58e";
}

/* line 1998, app/assets/stylesheets/fontawesome/all.scss */
.fa-gripfire:before {
  content: "\f3ac";
}

/* line 2001, app/assets/stylesheets/fontawesome/all.scss */
.fa-grunt:before {
  content: "\f3ad";
}

/* line 2004, app/assets/stylesheets/fontawesome/all.scss */
.fa-guilded:before {
  content: "\e07e";
}

/* line 2007, app/assets/stylesheets/fontawesome/all.scss */
.fa-guitar:before {
  content: "\f7a6";
}

/* line 2010, app/assets/stylesheets/fontawesome/all.scss */
.fa-gulp:before {
  content: "\f3ae";
}

/* line 2013, app/assets/stylesheets/fontawesome/all.scss */
.fa-h-square:before {
  content: "\f0fd";
}

/* line 2016, app/assets/stylesheets/fontawesome/all.scss */
.fa-hacker-news:before {
  content: "\f1d4";
}

/* line 2019, app/assets/stylesheets/fontawesome/all.scss */
.fa-hacker-news-square:before {
  content: "\f3af";
}

/* line 2022, app/assets/stylesheets/fontawesome/all.scss */
.fa-hackerrank:before {
  content: "\f5f7";
}

/* line 2025, app/assets/stylesheets/fontawesome/all.scss */
.fa-hamburger:before {
  content: "\f805";
}

/* line 2028, app/assets/stylesheets/fontawesome/all.scss */
.fa-hammer:before {
  content: "\f6e3";
}

/* line 2031, app/assets/stylesheets/fontawesome/all.scss */
.fa-hamsa:before {
  content: "\f665";
}

/* line 2034, app/assets/stylesheets/fontawesome/all.scss */
.fa-hand-holding:before {
  content: "\f4bd";
}

/* line 2037, app/assets/stylesheets/fontawesome/all.scss */
.fa-hand-holding-heart:before {
  content: "\f4be";
}

/* line 2040, app/assets/stylesheets/fontawesome/all.scss */
.fa-hand-holding-medical:before {
  content: "\e05c";
}

/* line 2043, app/assets/stylesheets/fontawesome/all.scss */
.fa-hand-holding-usd:before {
  content: "\f4c0";
}

/* line 2046, app/assets/stylesheets/fontawesome/all.scss */
.fa-hand-holding-water:before {
  content: "\f4c1";
}

/* line 2049, app/assets/stylesheets/fontawesome/all.scss */
.fa-hand-lizard:before {
  content: "\f258";
}

/* line 2052, app/assets/stylesheets/fontawesome/all.scss */
.fa-hand-middle-finger:before {
  content: "\f806";
}

/* line 2055, app/assets/stylesheets/fontawesome/all.scss */
.fa-hand-paper:before {
  content: "\f256";
}

/* line 2058, app/assets/stylesheets/fontawesome/all.scss */
.fa-hand-peace:before {
  content: "\f25b";
}

/* line 2061, app/assets/stylesheets/fontawesome/all.scss */
.fa-hand-point-down:before {
  content: "\f0a7";
}

/* line 2064, app/assets/stylesheets/fontawesome/all.scss */
.fa-hand-point-left:before {
  content: "\f0a5";
}

/* line 2067, app/assets/stylesheets/fontawesome/all.scss */
.fa-hand-point-right:before {
  content: "\f0a4";
}

/* line 2070, app/assets/stylesheets/fontawesome/all.scss */
.fa-hand-point-up:before {
  content: "\f0a6";
}

/* line 2073, app/assets/stylesheets/fontawesome/all.scss */
.fa-hand-pointer:before {
  content: "\f25a";
}

/* line 2076, app/assets/stylesheets/fontawesome/all.scss */
.fa-hand-rock:before {
  content: "\f255";
}

/* line 2079, app/assets/stylesheets/fontawesome/all.scss */
.fa-hand-scissors:before {
  content: "\f257";
}

/* line 2082, app/assets/stylesheets/fontawesome/all.scss */
.fa-hand-sparkles:before {
  content: "\e05d";
}

/* line 2085, app/assets/stylesheets/fontawesome/all.scss */
.fa-hand-spock:before {
  content: "\f259";
}

/* line 2088, app/assets/stylesheets/fontawesome/all.scss */
.fa-hands:before {
  content: "\f4c2";
}

/* line 2091, app/assets/stylesheets/fontawesome/all.scss */
.fa-hands-helping:before {
  content: "\f4c4";
}

/* line 2094, app/assets/stylesheets/fontawesome/all.scss */
.fa-hands-wash:before {
  content: "\e05e";
}

/* line 2097, app/assets/stylesheets/fontawesome/all.scss */
.fa-handshake:before {
  content: "\f2b5";
}

/* line 2100, app/assets/stylesheets/fontawesome/all.scss */
.fa-handshake-alt-slash:before {
  content: "\e05f";
}

/* line 2103, app/assets/stylesheets/fontawesome/all.scss */
.fa-handshake-slash:before {
  content: "\e060";
}

/* line 2106, app/assets/stylesheets/fontawesome/all.scss */
.fa-hanukiah:before {
  content: "\f6e6";
}

/* line 2109, app/assets/stylesheets/fontawesome/all.scss */
.fa-hard-hat:before {
  content: "\f807";
}

/* line 2112, app/assets/stylesheets/fontawesome/all.scss */
.fa-hashtag:before {
  content: "\f292";
}

/* line 2115, app/assets/stylesheets/fontawesome/all.scss */
.fa-hat-cowboy:before {
  content: "\f8c0";
}

/* line 2118, app/assets/stylesheets/fontawesome/all.scss */
.fa-hat-cowboy-side:before {
  content: "\f8c1";
}

/* line 2121, app/assets/stylesheets/fontawesome/all.scss */
.fa-hat-wizard:before {
  content: "\f6e8";
}

/* line 2124, app/assets/stylesheets/fontawesome/all.scss */
.fa-hdd:before {
  content: "\f0a0";
}

/* line 2127, app/assets/stylesheets/fontawesome/all.scss */
.fa-head-side-cough:before {
  content: "\e061";
}

/* line 2130, app/assets/stylesheets/fontawesome/all.scss */
.fa-head-side-cough-slash:before {
  content: "\e062";
}

/* line 2133, app/assets/stylesheets/fontawesome/all.scss */
.fa-head-side-mask:before {
  content: "\e063";
}

/* line 2136, app/assets/stylesheets/fontawesome/all.scss */
.fa-head-side-virus:before {
  content: "\e064";
}

/* line 2139, app/assets/stylesheets/fontawesome/all.scss */
.fa-heading:before {
  content: "\f1dc";
}

/* line 2142, app/assets/stylesheets/fontawesome/all.scss */
.fa-headphones:before {
  content: "\f025";
}

/* line 2145, app/assets/stylesheets/fontawesome/all.scss */
.fa-headphones-alt:before {
  content: "\f58f";
}

/* line 2148, app/assets/stylesheets/fontawesome/all.scss */
.fa-headset:before {
  content: "\f590";
}

/* line 2151, app/assets/stylesheets/fontawesome/all.scss */
.fa-heart:before {
  content: "\f004";
}

/* line 2154, app/assets/stylesheets/fontawesome/all.scss */
.fa-heart-broken:before {
  content: "\f7a9";
}

/* line 2157, app/assets/stylesheets/fontawesome/all.scss */
.fa-heartbeat:before {
  content: "\f21e";
}

/* line 2160, app/assets/stylesheets/fontawesome/all.scss */
.fa-helicopter:before {
  content: "\f533";
}

/* line 2163, app/assets/stylesheets/fontawesome/all.scss */
.fa-highlighter:before {
  content: "\f591";
}

/* line 2166, app/assets/stylesheets/fontawesome/all.scss */
.fa-hiking:before {
  content: "\f6ec";
}

/* line 2169, app/assets/stylesheets/fontawesome/all.scss */
.fa-hippo:before {
  content: "\f6ed";
}

/* line 2172, app/assets/stylesheets/fontawesome/all.scss */
.fa-hips:before {
  content: "\f452";
}

/* line 2175, app/assets/stylesheets/fontawesome/all.scss */
.fa-hire-a-helper:before {
  content: "\f3b0";
}

/* line 2178, app/assets/stylesheets/fontawesome/all.scss */
.fa-history:before {
  content: "\f1da";
}

/* line 2181, app/assets/stylesheets/fontawesome/all.scss */
.fa-hive:before {
  content: "\e07f";
}

/* line 2184, app/assets/stylesheets/fontawesome/all.scss */
.fa-hockey-puck:before {
  content: "\f453";
}

/* line 2187, app/assets/stylesheets/fontawesome/all.scss */
.fa-holly-berry:before {
  content: "\f7aa";
}

/* line 2190, app/assets/stylesheets/fontawesome/all.scss */
.fa-home:before {
  content: "\f015";
}

/* line 2193, app/assets/stylesheets/fontawesome/all.scss */
.fa-hooli:before {
  content: "\f427";
}

/* line 2196, app/assets/stylesheets/fontawesome/all.scss */
.fa-hornbill:before {
  content: "\f592";
}

/* line 2199, app/assets/stylesheets/fontawesome/all.scss */
.fa-horse:before {
  content: "\f6f0";
}

/* line 2202, app/assets/stylesheets/fontawesome/all.scss */
.fa-horse-head:before {
  content: "\f7ab";
}

/* line 2205, app/assets/stylesheets/fontawesome/all.scss */
.fa-hospital:before {
  content: "\f0f8";
}

/* line 2208, app/assets/stylesheets/fontawesome/all.scss */
.fa-hospital-alt:before {
  content: "\f47d";
}

/* line 2211, app/assets/stylesheets/fontawesome/all.scss */
.fa-hospital-symbol:before {
  content: "\f47e";
}

/* line 2214, app/assets/stylesheets/fontawesome/all.scss */
.fa-hospital-user:before {
  content: "\f80d";
}

/* line 2217, app/assets/stylesheets/fontawesome/all.scss */
.fa-hot-tub:before {
  content: "\f593";
}

/* line 2220, app/assets/stylesheets/fontawesome/all.scss */
.fa-hotdog:before {
  content: "\f80f";
}

/* line 2223, app/assets/stylesheets/fontawesome/all.scss */
.fa-hotel:before {
  content: "\f594";
}

/* line 2226, app/assets/stylesheets/fontawesome/all.scss */
.fa-hotjar:before {
  content: "\f3b1";
}

/* line 2229, app/assets/stylesheets/fontawesome/all.scss */
.fa-hourglass:before {
  content: "\f254";
}

/* line 2232, app/assets/stylesheets/fontawesome/all.scss */
.fa-hourglass-end:before {
  content: "\f253";
}

/* line 2235, app/assets/stylesheets/fontawesome/all.scss */
.fa-hourglass-half:before {
  content: "\f252";
}

/* line 2238, app/assets/stylesheets/fontawesome/all.scss */
.fa-hourglass-start:before {
  content: "\f251";
}

/* line 2241, app/assets/stylesheets/fontawesome/all.scss */
.fa-house-damage:before {
  content: "\f6f1";
}

/* line 2244, app/assets/stylesheets/fontawesome/all.scss */
.fa-house-user:before {
  content: "\e065";
}

/* line 2247, app/assets/stylesheets/fontawesome/all.scss */
.fa-houzz:before {
  content: "\f27c";
}

/* line 2250, app/assets/stylesheets/fontawesome/all.scss */
.fa-hryvnia:before {
  content: "\f6f2";
}

/* line 2253, app/assets/stylesheets/fontawesome/all.scss */
.fa-html5:before {
  content: "\f13b";
}

/* line 2256, app/assets/stylesheets/fontawesome/all.scss */
.fa-hubspot:before {
  content: "\f3b2";
}

/* line 2259, app/assets/stylesheets/fontawesome/all.scss */
.fa-i-cursor:before {
  content: "\f246";
}

/* line 2262, app/assets/stylesheets/fontawesome/all.scss */
.fa-ice-cream:before {
  content: "\f810";
}

/* line 2265, app/assets/stylesheets/fontawesome/all.scss */
.fa-icicles:before {
  content: "\f7ad";
}

/* line 2268, app/assets/stylesheets/fontawesome/all.scss */
.fa-icons:before {
  content: "\f86d";
}

/* line 2271, app/assets/stylesheets/fontawesome/all.scss */
.fa-id-badge:before {
  content: "\f2c1";
}

/* line 2274, app/assets/stylesheets/fontawesome/all.scss */
.fa-id-card:before {
  content: "\f2c2";
}

/* line 2277, app/assets/stylesheets/fontawesome/all.scss */
.fa-id-card-alt:before {
  content: "\f47f";
}

/* line 2280, app/assets/stylesheets/fontawesome/all.scss */
.fa-ideal:before {
  content: "\e013";
}

/* line 2283, app/assets/stylesheets/fontawesome/all.scss */
.fa-igloo:before {
  content: "\f7ae";
}

/* line 2286, app/assets/stylesheets/fontawesome/all.scss */
.fa-image:before {
  content: "\f03e";
}

/* line 2289, app/assets/stylesheets/fontawesome/all.scss */
.fa-images:before {
  content: "\f302";
}

/* line 2292, app/assets/stylesheets/fontawesome/all.scss */
.fa-imdb:before {
  content: "\f2d8";
}

/* line 2295, app/assets/stylesheets/fontawesome/all.scss */
.fa-inbox:before {
  content: "\f01c";
}

/* line 2298, app/assets/stylesheets/fontawesome/all.scss */
.fa-indent:before {
  content: "\f03c";
}

/* line 2301, app/assets/stylesheets/fontawesome/all.scss */
.fa-industry:before {
  content: "\f275";
}

/* line 2304, app/assets/stylesheets/fontawesome/all.scss */
.fa-infinity:before {
  content: "\f534";
}

/* line 2307, app/assets/stylesheets/fontawesome/all.scss */
.fa-info:before {
  content: "\f129";
}

/* line 2310, app/assets/stylesheets/fontawesome/all.scss */
.fa-info-circle:before {
  content: "\f05a";
}

/* line 2313, app/assets/stylesheets/fontawesome/all.scss */
.fa-innosoft:before {
  content: "\e080";
}

/* line 2316, app/assets/stylesheets/fontawesome/all.scss */
.fa-instagram:before {
  content: "\f16d";
}

/* line 2319, app/assets/stylesheets/fontawesome/all.scss */
.fa-instagram-square:before {
  content: "\e055";
}

/* line 2322, app/assets/stylesheets/fontawesome/all.scss */
.fa-instalod:before {
  content: "\e081";
}

/* line 2325, app/assets/stylesheets/fontawesome/all.scss */
.fa-intercom:before {
  content: "\f7af";
}

/* line 2328, app/assets/stylesheets/fontawesome/all.scss */
.fa-internet-explorer:before {
  content: "\f26b";
}

/* line 2331, app/assets/stylesheets/fontawesome/all.scss */
.fa-invision:before {
  content: "\f7b0";
}

/* line 2334, app/assets/stylesheets/fontawesome/all.scss */
.fa-ioxhost:before {
  content: "\f208";
}

/* line 2337, app/assets/stylesheets/fontawesome/all.scss */
.fa-italic:before {
  content: "\f033";
}

/* line 2340, app/assets/stylesheets/fontawesome/all.scss */
.fa-itch-io:before {
  content: "\f83a";
}

/* line 2343, app/assets/stylesheets/fontawesome/all.scss */
.fa-itunes:before {
  content: "\f3b4";
}

/* line 2346, app/assets/stylesheets/fontawesome/all.scss */
.fa-itunes-note:before {
  content: "\f3b5";
}

/* line 2349, app/assets/stylesheets/fontawesome/all.scss */
.fa-java:before {
  content: "\f4e4";
}

/* line 2352, app/assets/stylesheets/fontawesome/all.scss */
.fa-jedi:before {
  content: "\f669";
}

/* line 2355, app/assets/stylesheets/fontawesome/all.scss */
.fa-jedi-order:before {
  content: "\f50e";
}

/* line 2358, app/assets/stylesheets/fontawesome/all.scss */
.fa-jenkins:before {
  content: "\f3b6";
}

/* line 2361, app/assets/stylesheets/fontawesome/all.scss */
.fa-jira:before {
  content: "\f7b1";
}

/* line 2364, app/assets/stylesheets/fontawesome/all.scss */
.fa-joget:before {
  content: "\f3b7";
}

/* line 2367, app/assets/stylesheets/fontawesome/all.scss */
.fa-joint:before {
  content: "\f595";
}

/* line 2370, app/assets/stylesheets/fontawesome/all.scss */
.fa-joomla:before {
  content: "\f1aa";
}

/* line 2373, app/assets/stylesheets/fontawesome/all.scss */
.fa-journal-whills:before {
  content: "\f66a";
}

/* line 2376, app/assets/stylesheets/fontawesome/all.scss */
.fa-js:before {
  content: "\f3b8";
}

/* line 2379, app/assets/stylesheets/fontawesome/all.scss */
.fa-js-square:before {
  content: "\f3b9";
}

/* line 2382, app/assets/stylesheets/fontawesome/all.scss */
.fa-jsfiddle:before {
  content: "\f1cc";
}

/* line 2385, app/assets/stylesheets/fontawesome/all.scss */
.fa-kaaba:before {
  content: "\f66b";
}

/* line 2388, app/assets/stylesheets/fontawesome/all.scss */
.fa-kaggle:before {
  content: "\f5fa";
}

/* line 2391, app/assets/stylesheets/fontawesome/all.scss */
.fa-key:before {
  content: "\f084";
}

/* line 2394, app/assets/stylesheets/fontawesome/all.scss */
.fa-keybase:before {
  content: "\f4f5";
}

/* line 2397, app/assets/stylesheets/fontawesome/all.scss */
.fa-keyboard:before {
  content: "\f11c";
}

/* line 2400, app/assets/stylesheets/fontawesome/all.scss */
.fa-keycdn:before {
  content: "\f3ba";
}

/* line 2403, app/assets/stylesheets/fontawesome/all.scss */
.fa-khanda:before {
  content: "\f66d";
}

/* line 2406, app/assets/stylesheets/fontawesome/all.scss */
.fa-kickstarter:before {
  content: "\f3bb";
}

/* line 2409, app/assets/stylesheets/fontawesome/all.scss */
.fa-kickstarter-k:before {
  content: "\f3bc";
}

/* line 2412, app/assets/stylesheets/fontawesome/all.scss */
.fa-kiss:before {
  content: "\f596";
}

/* line 2415, app/assets/stylesheets/fontawesome/all.scss */
.fa-kiss-beam:before {
  content: "\f597";
}

/* line 2418, app/assets/stylesheets/fontawesome/all.scss */
.fa-kiss-wink-heart:before {
  content: "\f598";
}

/* line 2421, app/assets/stylesheets/fontawesome/all.scss */
.fa-kiwi-bird:before {
  content: "\f535";
}

/* line 2424, app/assets/stylesheets/fontawesome/all.scss */
.fa-korvue:before {
  content: "\f42f";
}

/* line 2427, app/assets/stylesheets/fontawesome/all.scss */
.fa-landmark:before {
  content: "\f66f";
}

/* line 2430, app/assets/stylesheets/fontawesome/all.scss */
.fa-language:before {
  content: "\f1ab";
}

/* line 2433, app/assets/stylesheets/fontawesome/all.scss */
.fa-laptop:before {
  content: "\f109";
}

/* line 2436, app/assets/stylesheets/fontawesome/all.scss */
.fa-laptop-code:before {
  content: "\f5fc";
}

/* line 2439, app/assets/stylesheets/fontawesome/all.scss */
.fa-laptop-house:before {
  content: "\e066";
}

/* line 2442, app/assets/stylesheets/fontawesome/all.scss */
.fa-laptop-medical:before {
  content: "\f812";
}

/* line 2445, app/assets/stylesheets/fontawesome/all.scss */
.fa-laravel:before {
  content: "\f3bd";
}

/* line 2448, app/assets/stylesheets/fontawesome/all.scss */
.fa-lastfm:before {
  content: "\f202";
}

/* line 2451, app/assets/stylesheets/fontawesome/all.scss */
.fa-lastfm-square:before {
  content: "\f203";
}

/* line 2454, app/assets/stylesheets/fontawesome/all.scss */
.fa-laugh:before {
  content: "\f599";
}

/* line 2457, app/assets/stylesheets/fontawesome/all.scss */
.fa-laugh-beam:before {
  content: "\f59a";
}

/* line 2460, app/assets/stylesheets/fontawesome/all.scss */
.fa-laugh-squint:before {
  content: "\f59b";
}

/* line 2463, app/assets/stylesheets/fontawesome/all.scss */
.fa-laugh-wink:before {
  content: "\f59c";
}

/* line 2466, app/assets/stylesheets/fontawesome/all.scss */
.fa-layer-group:before {
  content: "\f5fd";
}

/* line 2469, app/assets/stylesheets/fontawesome/all.scss */
.fa-leaf:before {
  content: "\f06c";
}

/* line 2472, app/assets/stylesheets/fontawesome/all.scss */
.fa-leanpub:before {
  content: "\f212";
}

/* line 2475, app/assets/stylesheets/fontawesome/all.scss */
.fa-lemon:before {
  content: "\f094";
}

/* line 2478, app/assets/stylesheets/fontawesome/all.scss */
.fa-less:before {
  content: "\f41d";
}

/* line 2481, app/assets/stylesheets/fontawesome/all.scss */
.fa-less-than:before {
  content: "\f536";
}

/* line 2484, app/assets/stylesheets/fontawesome/all.scss */
.fa-less-than-equal:before {
  content: "\f537";
}

/* line 2487, app/assets/stylesheets/fontawesome/all.scss */
.fa-level-down-alt:before {
  content: "\f3be";
}

/* line 2490, app/assets/stylesheets/fontawesome/all.scss */
.fa-level-up-alt:before {
  content: "\f3bf";
}

/* line 2493, app/assets/stylesheets/fontawesome/all.scss */
.fa-life-ring:before {
  content: "\f1cd";
}

/* line 2496, app/assets/stylesheets/fontawesome/all.scss */
.fa-lightbulb:before {
  content: "\f0eb";
}

/* line 2499, app/assets/stylesheets/fontawesome/all.scss */
.fa-line:before {
  content: "\f3c0";
}

/* line 2502, app/assets/stylesheets/fontawesome/all.scss */
.fa-link:before {
  content: "\f0c1";
}

/* line 2505, app/assets/stylesheets/fontawesome/all.scss */
.fa-linkedin:before {
  content: "\f08c";
}

/* line 2508, app/assets/stylesheets/fontawesome/all.scss */
.fa-linkedin-in:before {
  content: "\f0e1";
}

/* line 2511, app/assets/stylesheets/fontawesome/all.scss */
.fa-linode:before {
  content: "\f2b8";
}

/* line 2514, app/assets/stylesheets/fontawesome/all.scss */
.fa-linux:before {
  content: "\f17c";
}

/* line 2517, app/assets/stylesheets/fontawesome/all.scss */
.fa-lira-sign:before {
  content: "\f195";
}

/* line 2520, app/assets/stylesheets/fontawesome/all.scss */
.fa-list:before {
  content: "\f03a";
}

/* line 2523, app/assets/stylesheets/fontawesome/all.scss */
.fa-list-alt:before {
  content: "\f022";
}

/* line 2526, app/assets/stylesheets/fontawesome/all.scss */
.fa-list-ol:before {
  content: "\f0cb";
}

/* line 2529, app/assets/stylesheets/fontawesome/all.scss */
.fa-list-ul:before {
  content: "\f0ca";
}

/* line 2532, app/assets/stylesheets/fontawesome/all.scss */
.fa-location-arrow:before {
  content: "\f124";
}

/* line 2535, app/assets/stylesheets/fontawesome/all.scss */
.fa-lock:before {
  content: "\f023";
}

/* line 2538, app/assets/stylesheets/fontawesome/all.scss */
.fa-lock-open:before {
  content: "\f3c1";
}

/* line 2541, app/assets/stylesheets/fontawesome/all.scss */
.fa-long-arrow-alt-down:before {
  content: "\f309";
}

/* line 2544, app/assets/stylesheets/fontawesome/all.scss */
.fa-long-arrow-alt-left:before {
  content: "\f30a";
}

/* line 2547, app/assets/stylesheets/fontawesome/all.scss */
.fa-long-arrow-alt-right:before {
  content: "\f30b";
}

/* line 2550, app/assets/stylesheets/fontawesome/all.scss */
.fa-long-arrow-alt-up:before {
  content: "\f30c";
}

/* line 2553, app/assets/stylesheets/fontawesome/all.scss */
.fa-low-vision:before {
  content: "\f2a8";
}

/* line 2556, app/assets/stylesheets/fontawesome/all.scss */
.fa-luggage-cart:before {
  content: "\f59d";
}

/* line 2559, app/assets/stylesheets/fontawesome/all.scss */
.fa-lungs:before {
  content: "\f604";
}

/* line 2562, app/assets/stylesheets/fontawesome/all.scss */
.fa-lungs-virus:before {
  content: "\e067";
}

/* line 2565, app/assets/stylesheets/fontawesome/all.scss */
.fa-lyft:before {
  content: "\f3c3";
}

/* line 2568, app/assets/stylesheets/fontawesome/all.scss */
.fa-magento:before {
  content: "\f3c4";
}

/* line 2571, app/assets/stylesheets/fontawesome/all.scss */
.fa-magic:before {
  content: "\f0d0";
}

/* line 2574, app/assets/stylesheets/fontawesome/all.scss */
.fa-magnet:before {
  content: "\f076";
}

/* line 2577, app/assets/stylesheets/fontawesome/all.scss */
.fa-mail-bulk:before {
  content: "\f674";
}

/* line 2580, app/assets/stylesheets/fontawesome/all.scss */
.fa-mailchimp:before {
  content: "\f59e";
}

/* line 2583, app/assets/stylesheets/fontawesome/all.scss */
.fa-male:before {
  content: "\f183";
}

/* line 2586, app/assets/stylesheets/fontawesome/all.scss */
.fa-mandalorian:before {
  content: "\f50f";
}

/* line 2589, app/assets/stylesheets/fontawesome/all.scss */
.fa-map:before {
  content: "\f279";
}

/* line 2592, app/assets/stylesheets/fontawesome/all.scss */
.fa-map-marked:before {
  content: "\f59f";
}

/* line 2595, app/assets/stylesheets/fontawesome/all.scss */
.fa-map-marked-alt:before {
  content: "\f5a0";
}

/* line 2598, app/assets/stylesheets/fontawesome/all.scss */
.fa-map-marker:before {
  content: "\f041";
}

/* line 2601, app/assets/stylesheets/fontawesome/all.scss */
.fa-map-marker-alt:before {
  content: "\f3c5";
}

/* line 2604, app/assets/stylesheets/fontawesome/all.scss */
.fa-map-pin:before {
  content: "\f276";
}

/* line 2607, app/assets/stylesheets/fontawesome/all.scss */
.fa-map-signs:before {
  content: "\f277";
}

/* line 2610, app/assets/stylesheets/fontawesome/all.scss */
.fa-markdown:before {
  content: "\f60f";
}

/* line 2613, app/assets/stylesheets/fontawesome/all.scss */
.fa-marker:before {
  content: "\f5a1";
}

/* line 2616, app/assets/stylesheets/fontawesome/all.scss */
.fa-mars:before {
  content: "\f222";
}

/* line 2619, app/assets/stylesheets/fontawesome/all.scss */
.fa-mars-double:before {
  content: "\f227";
}

/* line 2622, app/assets/stylesheets/fontawesome/all.scss */
.fa-mars-stroke:before {
  content: "\f229";
}

/* line 2625, app/assets/stylesheets/fontawesome/all.scss */
.fa-mars-stroke-h:before {
  content: "\f22b";
}

/* line 2628, app/assets/stylesheets/fontawesome/all.scss */
.fa-mars-stroke-v:before {
  content: "\f22a";
}

/* line 2631, app/assets/stylesheets/fontawesome/all.scss */
.fa-mask:before {
  content: "\f6fa";
}

/* line 2634, app/assets/stylesheets/fontawesome/all.scss */
.fa-mastodon:before {
  content: "\f4f6";
}

/* line 2637, app/assets/stylesheets/fontawesome/all.scss */
.fa-maxcdn:before {
  content: "\f136";
}

/* line 2640, app/assets/stylesheets/fontawesome/all.scss */
.fa-mdb:before {
  content: "\f8ca";
}

/* line 2643, app/assets/stylesheets/fontawesome/all.scss */
.fa-medal:before {
  content: "\f5a2";
}

/* line 2646, app/assets/stylesheets/fontawesome/all.scss */
.fa-medapps:before {
  content: "\f3c6";
}

/* line 2649, app/assets/stylesheets/fontawesome/all.scss */
.fa-medium:before {
  content: "\f23a";
}

/* line 2652, app/assets/stylesheets/fontawesome/all.scss */
.fa-medium-m:before {
  content: "\f3c7";
}

/* line 2655, app/assets/stylesheets/fontawesome/all.scss */
.fa-medkit:before {
  content: "\f0fa";
}

/* line 2658, app/assets/stylesheets/fontawesome/all.scss */
.fa-medrt:before {
  content: "\f3c8";
}

/* line 2661, app/assets/stylesheets/fontawesome/all.scss */
.fa-meetup:before {
  content: "\f2e0";
}

/* line 2664, app/assets/stylesheets/fontawesome/all.scss */
.fa-megaport:before {
  content: "\f5a3";
}

/* line 2667, app/assets/stylesheets/fontawesome/all.scss */
.fa-meh:before {
  content: "\f11a";
}

/* line 2670, app/assets/stylesheets/fontawesome/all.scss */
.fa-meh-blank:before {
  content: "\f5a4";
}

/* line 2673, app/assets/stylesheets/fontawesome/all.scss */
.fa-meh-rolling-eyes:before {
  content: "\f5a5";
}

/* line 2676, app/assets/stylesheets/fontawesome/all.scss */
.fa-memory:before {
  content: "\f538";
}

/* line 2679, app/assets/stylesheets/fontawesome/all.scss */
.fa-mendeley:before {
  content: "\f7b3";
}

/* line 2682, app/assets/stylesheets/fontawesome/all.scss */
.fa-menorah:before {
  content: "\f676";
}

/* line 2685, app/assets/stylesheets/fontawesome/all.scss */
.fa-mercury:before {
  content: "\f223";
}

/* line 2688, app/assets/stylesheets/fontawesome/all.scss */
.fa-meteor:before {
  content: "\f753";
}

/* line 2691, app/assets/stylesheets/fontawesome/all.scss */
.fa-microblog:before {
  content: "\e01a";
}

/* line 2694, app/assets/stylesheets/fontawesome/all.scss */
.fa-microchip:before {
  content: "\f2db";
}

/* line 2697, app/assets/stylesheets/fontawesome/all.scss */
.fa-microphone:before {
  content: "\f130";
}

/* line 2700, app/assets/stylesheets/fontawesome/all.scss */
.fa-microphone-alt:before {
  content: "\f3c9";
}

/* line 2703, app/assets/stylesheets/fontawesome/all.scss */
.fa-microphone-alt-slash:before {
  content: "\f539";
}

/* line 2706, app/assets/stylesheets/fontawesome/all.scss */
.fa-microphone-slash:before {
  content: "\f131";
}

/* line 2709, app/assets/stylesheets/fontawesome/all.scss */
.fa-microscope:before {
  content: "\f610";
}

/* line 2712, app/assets/stylesheets/fontawesome/all.scss */
.fa-microsoft:before {
  content: "\f3ca";
}

/* line 2715, app/assets/stylesheets/fontawesome/all.scss */
.fa-minus:before {
  content: "\f068";
}

/* line 2718, app/assets/stylesheets/fontawesome/all.scss */
.fa-minus-circle:before {
  content: "\f056";
}

/* line 2721, app/assets/stylesheets/fontawesome/all.scss */
.fa-minus-square:before {
  content: "\f146";
}

/* line 2724, app/assets/stylesheets/fontawesome/all.scss */
.fa-mitten:before {
  content: "\f7b5";
}

/* line 2727, app/assets/stylesheets/fontawesome/all.scss */
.fa-mix:before {
  content: "\f3cb";
}

/* line 2730, app/assets/stylesheets/fontawesome/all.scss */
.fa-mixcloud:before {
  content: "\f289";
}

/* line 2733, app/assets/stylesheets/fontawesome/all.scss */
.fa-mixer:before {
  content: "\e056";
}

/* line 2736, app/assets/stylesheets/fontawesome/all.scss */
.fa-mizuni:before {
  content: "\f3cc";
}

/* line 2739, app/assets/stylesheets/fontawesome/all.scss */
.fa-mobile:before {
  content: "\f10b";
}

/* line 2742, app/assets/stylesheets/fontawesome/all.scss */
.fa-mobile-alt:before {
  content: "\f3cd";
}

/* line 2745, app/assets/stylesheets/fontawesome/all.scss */
.fa-modx:before {
  content: "\f285";
}

/* line 2748, app/assets/stylesheets/fontawesome/all.scss */
.fa-monero:before {
  content: "\f3d0";
}

/* line 2751, app/assets/stylesheets/fontawesome/all.scss */
.fa-money-bill:before {
  content: "\f0d6";
}

/* line 2754, app/assets/stylesheets/fontawesome/all.scss */
.fa-money-bill-alt:before {
  content: "\f3d1";
}

/* line 2757, app/assets/stylesheets/fontawesome/all.scss */
.fa-money-bill-wave:before {
  content: "\f53a";
}

/* line 2760, app/assets/stylesheets/fontawesome/all.scss */
.fa-money-bill-wave-alt:before {
  content: "\f53b";
}

/* line 2763, app/assets/stylesheets/fontawesome/all.scss */
.fa-money-check:before {
  content: "\f53c";
}

/* line 2766, app/assets/stylesheets/fontawesome/all.scss */
.fa-money-check-alt:before {
  content: "\f53d";
}

/* line 2769, app/assets/stylesheets/fontawesome/all.scss */
.fa-monument:before {
  content: "\f5a6";
}

/* line 2772, app/assets/stylesheets/fontawesome/all.scss */
.fa-moon:before {
  content: "\f186";
}

/* line 2775, app/assets/stylesheets/fontawesome/all.scss */
.fa-mortar-pestle:before {
  content: "\f5a7";
}

/* line 2778, app/assets/stylesheets/fontawesome/all.scss */
.fa-mosque:before {
  content: "\f678";
}

/* line 2781, app/assets/stylesheets/fontawesome/all.scss */
.fa-motorcycle:before {
  content: "\f21c";
}

/* line 2784, app/assets/stylesheets/fontawesome/all.scss */
.fa-mountain:before {
  content: "\f6fc";
}

/* line 2787, app/assets/stylesheets/fontawesome/all.scss */
.fa-mouse:before {
  content: "\f8cc";
}

/* line 2790, app/assets/stylesheets/fontawesome/all.scss */
.fa-mouse-pointer:before {
  content: "\f245";
}

/* line 2793, app/assets/stylesheets/fontawesome/all.scss */
.fa-mug-hot:before {
  content: "\f7b6";
}

/* line 2796, app/assets/stylesheets/fontawesome/all.scss */
.fa-music:before {
  content: "\f001";
}

/* line 2799, app/assets/stylesheets/fontawesome/all.scss */
.fa-napster:before {
  content: "\f3d2";
}

/* line 2802, app/assets/stylesheets/fontawesome/all.scss */
.fa-neos:before {
  content: "\f612";
}

/* line 2805, app/assets/stylesheets/fontawesome/all.scss */
.fa-network-wired:before {
  content: "\f6ff";
}

/* line 2808, app/assets/stylesheets/fontawesome/all.scss */
.fa-neuter:before {
  content: "\f22c";
}

/* line 2811, app/assets/stylesheets/fontawesome/all.scss */
.fa-newspaper:before {
  content: "\f1ea";
}

/* line 2814, app/assets/stylesheets/fontawesome/all.scss */
.fa-nimblr:before {
  content: "\f5a8";
}

/* line 2817, app/assets/stylesheets/fontawesome/all.scss */
.fa-node:before {
  content: "\f419";
}

/* line 2820, app/assets/stylesheets/fontawesome/all.scss */
.fa-node-js:before {
  content: "\f3d3";
}

/* line 2823, app/assets/stylesheets/fontawesome/all.scss */
.fa-not-equal:before {
  content: "\f53e";
}

/* line 2826, app/assets/stylesheets/fontawesome/all.scss */
.fa-notes-medical:before {
  content: "\f481";
}

/* line 2829, app/assets/stylesheets/fontawesome/all.scss */
.fa-npm:before {
  content: "\f3d4";
}

/* line 2832, app/assets/stylesheets/fontawesome/all.scss */
.fa-ns8:before {
  content: "\f3d5";
}

/* line 2835, app/assets/stylesheets/fontawesome/all.scss */
.fa-nutritionix:before {
  content: "\f3d6";
}

/* line 2838, app/assets/stylesheets/fontawesome/all.scss */
.fa-object-group:before {
  content: "\f247";
}

/* line 2841, app/assets/stylesheets/fontawesome/all.scss */
.fa-object-ungroup:before {
  content: "\f248";
}

/* line 2844, app/assets/stylesheets/fontawesome/all.scss */
.fa-octopus-deploy:before {
  content: "\e082";
}

/* line 2847, app/assets/stylesheets/fontawesome/all.scss */
.fa-odnoklassniki:before {
  content: "\f263";
}

/* line 2850, app/assets/stylesheets/fontawesome/all.scss */
.fa-odnoklassniki-square:before {
  content: "\f264";
}

/* line 2853, app/assets/stylesheets/fontawesome/all.scss */
.fa-oil-can:before {
  content: "\f613";
}

/* line 2856, app/assets/stylesheets/fontawesome/all.scss */
.fa-old-republic:before {
  content: "\f510";
}

/* line 2859, app/assets/stylesheets/fontawesome/all.scss */
.fa-om:before {
  content: "\f679";
}

/* line 2862, app/assets/stylesheets/fontawesome/all.scss */
.fa-opencart:before {
  content: "\f23d";
}

/* line 2865, app/assets/stylesheets/fontawesome/all.scss */
.fa-openid:before {
  content: "\f19b";
}

/* line 2868, app/assets/stylesheets/fontawesome/all.scss */
.fa-opera:before {
  content: "\f26a";
}

/* line 2871, app/assets/stylesheets/fontawesome/all.scss */
.fa-optin-monster:before {
  content: "\f23c";
}

/* line 2874, app/assets/stylesheets/fontawesome/all.scss */
.fa-orcid:before {
  content: "\f8d2";
}

/* line 2877, app/assets/stylesheets/fontawesome/all.scss */
.fa-osi:before {
  content: "\f41a";
}

/* line 2880, app/assets/stylesheets/fontawesome/all.scss */
.fa-otter:before {
  content: "\f700";
}

/* line 2883, app/assets/stylesheets/fontawesome/all.scss */
.fa-outdent:before {
  content: "\f03b";
}

/* line 2886, app/assets/stylesheets/fontawesome/all.scss */
.fa-page4:before {
  content: "\f3d7";
}

/* line 2889, app/assets/stylesheets/fontawesome/all.scss */
.fa-pagelines:before {
  content: "\f18c";
}

/* line 2892, app/assets/stylesheets/fontawesome/all.scss */
.fa-pager:before {
  content: "\f815";
}

/* line 2895, app/assets/stylesheets/fontawesome/all.scss */
.fa-paint-brush:before {
  content: "\f1fc";
}

/* line 2898, app/assets/stylesheets/fontawesome/all.scss */
.fa-paint-roller:before {
  content: "\f5aa";
}

/* line 2901, app/assets/stylesheets/fontawesome/all.scss */
.fa-palette:before {
  content: "\f53f";
}

/* line 2904, app/assets/stylesheets/fontawesome/all.scss */
.fa-palfed:before {
  content: "\f3d8";
}

/* line 2907, app/assets/stylesheets/fontawesome/all.scss */
.fa-pallet:before {
  content: "\f482";
}

/* line 2910, app/assets/stylesheets/fontawesome/all.scss */
.fa-paper-plane:before {
  content: "\f1d8";
}

/* line 2913, app/assets/stylesheets/fontawesome/all.scss */
.fa-paperclip:before {
  content: "\f0c6";
}

/* line 2916, app/assets/stylesheets/fontawesome/all.scss */
.fa-parachute-box:before {
  content: "\f4cd";
}

/* line 2919, app/assets/stylesheets/fontawesome/all.scss */
.fa-paragraph:before {
  content: "\f1dd";
}

/* line 2922, app/assets/stylesheets/fontawesome/all.scss */
.fa-parking:before {
  content: "\f540";
}

/* line 2925, app/assets/stylesheets/fontawesome/all.scss */
.fa-passport:before {
  content: "\f5ab";
}

/* line 2928, app/assets/stylesheets/fontawesome/all.scss */
.fa-pastafarianism:before {
  content: "\f67b";
}

/* line 2931, app/assets/stylesheets/fontawesome/all.scss */
.fa-paste:before {
  content: "\f0ea";
}

/* line 2934, app/assets/stylesheets/fontawesome/all.scss */
.fa-patreon:before {
  content: "\f3d9";
}

/* line 2937, app/assets/stylesheets/fontawesome/all.scss */
.fa-pause:before {
  content: "\f04c";
}

/* line 2940, app/assets/stylesheets/fontawesome/all.scss */
.fa-pause-circle:before {
  content: "\f28b";
}

/* line 2943, app/assets/stylesheets/fontawesome/all.scss */
.fa-paw:before {
  content: "\f1b0";
}

/* line 2946, app/assets/stylesheets/fontawesome/all.scss */
.fa-paypal:before {
  content: "\f1ed";
}

/* line 2949, app/assets/stylesheets/fontawesome/all.scss */
.fa-peace:before {
  content: "\f67c";
}

/* line 2952, app/assets/stylesheets/fontawesome/all.scss */
.fa-pen:before {
  content: "\f304";
}

/* line 2955, app/assets/stylesheets/fontawesome/all.scss */
.fa-pen-alt:before {
  content: "\f305";
}

/* line 2958, app/assets/stylesheets/fontawesome/all.scss */
.fa-pen-fancy:before {
  content: "\f5ac";
}

/* line 2961, app/assets/stylesheets/fontawesome/all.scss */
.fa-pen-nib:before {
  content: "\f5ad";
}

/* line 2964, app/assets/stylesheets/fontawesome/all.scss */
.fa-pen-square:before {
  content: "\f14b";
}

/* line 2967, app/assets/stylesheets/fontawesome/all.scss */
.fa-pencil-alt:before {
  content: "\f303";
}

/* line 2970, app/assets/stylesheets/fontawesome/all.scss */
.fa-pencil-ruler:before {
  content: "\f5ae";
}

/* line 2973, app/assets/stylesheets/fontawesome/all.scss */
.fa-penny-arcade:before {
  content: "\f704";
}

/* line 2976, app/assets/stylesheets/fontawesome/all.scss */
.fa-people-arrows:before {
  content: "\e068";
}

/* line 2979, app/assets/stylesheets/fontawesome/all.scss */
.fa-people-carry:before {
  content: "\f4ce";
}

/* line 2982, app/assets/stylesheets/fontawesome/all.scss */
.fa-pepper-hot:before {
  content: "\f816";
}

/* line 2985, app/assets/stylesheets/fontawesome/all.scss */
.fa-perbyte:before {
  content: "\e083";
}

/* line 2988, app/assets/stylesheets/fontawesome/all.scss */
.fa-percent:before {
  content: "\f295";
}

/* line 2991, app/assets/stylesheets/fontawesome/all.scss */
.fa-percentage:before {
  content: "\f541";
}

/* line 2994, app/assets/stylesheets/fontawesome/all.scss */
.fa-periscope:before {
  content: "\f3da";
}

/* line 2997, app/assets/stylesheets/fontawesome/all.scss */
.fa-person-booth:before {
  content: "\f756";
}

/* line 3000, app/assets/stylesheets/fontawesome/all.scss */
.fa-phabricator:before {
  content: "\f3db";
}

/* line 3003, app/assets/stylesheets/fontawesome/all.scss */
.fa-phoenix-framework:before {
  content: "\f3dc";
}

/* line 3006, app/assets/stylesheets/fontawesome/all.scss */
.fa-phoenix-squadron:before {
  content: "\f511";
}

/* line 3009, app/assets/stylesheets/fontawesome/all.scss */
.fa-phone:before {
  content: "\f095";
}

/* line 3012, app/assets/stylesheets/fontawesome/all.scss */
.fa-phone-alt:before {
  content: "\f879";
}

/* line 3015, app/assets/stylesheets/fontawesome/all.scss */
.fa-phone-slash:before {
  content: "\f3dd";
}

/* line 3018, app/assets/stylesheets/fontawesome/all.scss */
.fa-phone-square:before {
  content: "\f098";
}

/* line 3021, app/assets/stylesheets/fontawesome/all.scss */
.fa-phone-square-alt:before {
  content: "\f87b";
}

/* line 3024, app/assets/stylesheets/fontawesome/all.scss */
.fa-phone-volume:before {
  content: "\f2a0";
}

/* line 3027, app/assets/stylesheets/fontawesome/all.scss */
.fa-photo-video:before {
  content: "\f87c";
}

/* line 3030, app/assets/stylesheets/fontawesome/all.scss */
.fa-php:before {
  content: "\f457";
}

/* line 3033, app/assets/stylesheets/fontawesome/all.scss */
.fa-pied-piper:before {
  content: "\f2ae";
}

/* line 3036, app/assets/stylesheets/fontawesome/all.scss */
.fa-pied-piper-alt:before {
  content: "\f1a8";
}

/* line 3039, app/assets/stylesheets/fontawesome/all.scss */
.fa-pied-piper-hat:before {
  content: "\f4e5";
}

/* line 3042, app/assets/stylesheets/fontawesome/all.scss */
.fa-pied-piper-pp:before {
  content: "\f1a7";
}

/* line 3045, app/assets/stylesheets/fontawesome/all.scss */
.fa-pied-piper-square:before {
  content: "\e01e";
}

/* line 3048, app/assets/stylesheets/fontawesome/all.scss */
.fa-piggy-bank:before {
  content: "\f4d3";
}

/* line 3051, app/assets/stylesheets/fontawesome/all.scss */
.fa-pills:before {
  content: "\f484";
}

/* line 3054, app/assets/stylesheets/fontawesome/all.scss */
.fa-pinterest:before {
  content: "\f0d2";
}

/* line 3057, app/assets/stylesheets/fontawesome/all.scss */
.fa-pinterest-p:before {
  content: "\f231";
}

/* line 3060, app/assets/stylesheets/fontawesome/all.scss */
.fa-pinterest-square:before {
  content: "\f0d3";
}

/* line 3063, app/assets/stylesheets/fontawesome/all.scss */
.fa-pizza-slice:before {
  content: "\f818";
}

/* line 3066, app/assets/stylesheets/fontawesome/all.scss */
.fa-place-of-worship:before {
  content: "\f67f";
}

/* line 3069, app/assets/stylesheets/fontawesome/all.scss */
.fa-plane:before {
  content: "\f072";
}

/* line 3072, app/assets/stylesheets/fontawesome/all.scss */
.fa-plane-arrival:before {
  content: "\f5af";
}

/* line 3075, app/assets/stylesheets/fontawesome/all.scss */
.fa-plane-departure:before {
  content: "\f5b0";
}

/* line 3078, app/assets/stylesheets/fontawesome/all.scss */
.fa-plane-slash:before {
  content: "\e069";
}

/* line 3081, app/assets/stylesheets/fontawesome/all.scss */
.fa-play:before {
  content: "\f04b";
}

/* line 3084, app/assets/stylesheets/fontawesome/all.scss */
.fa-play-circle:before {
  content: "\f144";
}

/* line 3087, app/assets/stylesheets/fontawesome/all.scss */
.fa-playstation:before {
  content: "\f3df";
}

/* line 3090, app/assets/stylesheets/fontawesome/all.scss */
.fa-plug:before {
  content: "\f1e6";
}

/* line 3093, app/assets/stylesheets/fontawesome/all.scss */
.fa-plus:before {
  content: "\f067";
}

/* line 3096, app/assets/stylesheets/fontawesome/all.scss */
.fa-plus-circle:before {
  content: "\f055";
}

/* line 3099, app/assets/stylesheets/fontawesome/all.scss */
.fa-plus-square:before {
  content: "\f0fe";
}

/* line 3102, app/assets/stylesheets/fontawesome/all.scss */
.fa-podcast:before {
  content: "\f2ce";
}

/* line 3105, app/assets/stylesheets/fontawesome/all.scss */
.fa-poll:before {
  content: "\f681";
}

/* line 3108, app/assets/stylesheets/fontawesome/all.scss */
.fa-poll-h:before {
  content: "\f682";
}

/* line 3111, app/assets/stylesheets/fontawesome/all.scss */
.fa-poo:before {
  content: "\f2fe";
}

/* line 3114, app/assets/stylesheets/fontawesome/all.scss */
.fa-poo-storm:before {
  content: "\f75a";
}

/* line 3117, app/assets/stylesheets/fontawesome/all.scss */
.fa-poop:before {
  content: "\f619";
}

/* line 3120, app/assets/stylesheets/fontawesome/all.scss */
.fa-portrait:before {
  content: "\f3e0";
}

/* line 3123, app/assets/stylesheets/fontawesome/all.scss */
.fa-pound-sign:before {
  content: "\f154";
}

/* line 3126, app/assets/stylesheets/fontawesome/all.scss */
.fa-power-off:before {
  content: "\f011";
}

/* line 3129, app/assets/stylesheets/fontawesome/all.scss */
.fa-pray:before {
  content: "\f683";
}

/* line 3132, app/assets/stylesheets/fontawesome/all.scss */
.fa-praying-hands:before {
  content: "\f684";
}

/* line 3135, app/assets/stylesheets/fontawesome/all.scss */
.fa-prescription:before {
  content: "\f5b1";
}

/* line 3138, app/assets/stylesheets/fontawesome/all.scss */
.fa-prescription-bottle:before {
  content: "\f485";
}

/* line 3141, app/assets/stylesheets/fontawesome/all.scss */
.fa-prescription-bottle-alt:before {
  content: "\f486";
}

/* line 3144, app/assets/stylesheets/fontawesome/all.scss */
.fa-print:before {
  content: "\f02f";
}

/* line 3147, app/assets/stylesheets/fontawesome/all.scss */
.fa-procedures:before {
  content: "\f487";
}

/* line 3150, app/assets/stylesheets/fontawesome/all.scss */
.fa-product-hunt:before {
  content: "\f288";
}

/* line 3153, app/assets/stylesheets/fontawesome/all.scss */
.fa-project-diagram:before {
  content: "\f542";
}

/* line 3156, app/assets/stylesheets/fontawesome/all.scss */
.fa-pump-medical:before {
  content: "\e06a";
}

/* line 3159, app/assets/stylesheets/fontawesome/all.scss */
.fa-pump-soap:before {
  content: "\e06b";
}

/* line 3162, app/assets/stylesheets/fontawesome/all.scss */
.fa-pushed:before {
  content: "\f3e1";
}

/* line 3165, app/assets/stylesheets/fontawesome/all.scss */
.fa-puzzle-piece:before {
  content: "\f12e";
}

/* line 3168, app/assets/stylesheets/fontawesome/all.scss */
.fa-python:before {
  content: "\f3e2";
}

/* line 3171, app/assets/stylesheets/fontawesome/all.scss */
.fa-qq:before {
  content: "\f1d6";
}

/* line 3174, app/assets/stylesheets/fontawesome/all.scss */
.fa-qrcode:before {
  content: "\f029";
}

/* line 3177, app/assets/stylesheets/fontawesome/all.scss */
.fa-question:before {
  content: "\f128";
}

/* line 3180, app/assets/stylesheets/fontawesome/all.scss */
.fa-question-circle:before {
  content: "\f059";
}

/* line 3183, app/assets/stylesheets/fontawesome/all.scss */
.fa-quidditch:before {
  content: "\f458";
}

/* line 3186, app/assets/stylesheets/fontawesome/all.scss */
.fa-quinscape:before {
  content: "\f459";
}

/* line 3189, app/assets/stylesheets/fontawesome/all.scss */
.fa-quora:before {
  content: "\f2c4";
}

/* line 3192, app/assets/stylesheets/fontawesome/all.scss */
.fa-quote-left:before {
  content: "\f10d";
}

/* line 3195, app/assets/stylesheets/fontawesome/all.scss */
.fa-quote-right:before {
  content: "\f10e";
}

/* line 3198, app/assets/stylesheets/fontawesome/all.scss */
.fa-quran:before {
  content: "\f687";
}

/* line 3201, app/assets/stylesheets/fontawesome/all.scss */
.fa-r-project:before {
  content: "\f4f7";
}

/* line 3204, app/assets/stylesheets/fontawesome/all.scss */
.fa-radiation:before {
  content: "\f7b9";
}

/* line 3207, app/assets/stylesheets/fontawesome/all.scss */
.fa-radiation-alt:before {
  content: "\f7ba";
}

/* line 3210, app/assets/stylesheets/fontawesome/all.scss */
.fa-rainbow:before {
  content: "\f75b";
}

/* line 3213, app/assets/stylesheets/fontawesome/all.scss */
.fa-random:before {
  content: "\f074";
}

/* line 3216, app/assets/stylesheets/fontawesome/all.scss */
.fa-raspberry-pi:before {
  content: "\f7bb";
}

/* line 3219, app/assets/stylesheets/fontawesome/all.scss */
.fa-ravelry:before {
  content: "\f2d9";
}

/* line 3222, app/assets/stylesheets/fontawesome/all.scss */
.fa-react:before {
  content: "\f41b";
}

/* line 3225, app/assets/stylesheets/fontawesome/all.scss */
.fa-reacteurope:before {
  content: "\f75d";
}

/* line 3228, app/assets/stylesheets/fontawesome/all.scss */
.fa-readme:before {
  content: "\f4d5";
}

/* line 3231, app/assets/stylesheets/fontawesome/all.scss */
.fa-rebel:before {
  content: "\f1d0";
}

/* line 3234, app/assets/stylesheets/fontawesome/all.scss */
.fa-receipt:before {
  content: "\f543";
}

/* line 3237, app/assets/stylesheets/fontawesome/all.scss */
.fa-record-vinyl:before {
  content: "\f8d9";
}

/* line 3240, app/assets/stylesheets/fontawesome/all.scss */
.fa-recycle:before {
  content: "\f1b8";
}

/* line 3243, app/assets/stylesheets/fontawesome/all.scss */
.fa-red-river:before {
  content: "\f3e3";
}

/* line 3246, app/assets/stylesheets/fontawesome/all.scss */
.fa-reddit:before {
  content: "\f1a1";
}

/* line 3249, app/assets/stylesheets/fontawesome/all.scss */
.fa-reddit-alien:before {
  content: "\f281";
}

/* line 3252, app/assets/stylesheets/fontawesome/all.scss */
.fa-reddit-square:before {
  content: "\f1a2";
}

/* line 3255, app/assets/stylesheets/fontawesome/all.scss */
.fa-redhat:before {
  content: "\f7bc";
}

/* line 3258, app/assets/stylesheets/fontawesome/all.scss */
.fa-redo:before {
  content: "\f01e";
}

/* line 3261, app/assets/stylesheets/fontawesome/all.scss */
.fa-redo-alt:before {
  content: "\f2f9";
}

/* line 3264, app/assets/stylesheets/fontawesome/all.scss */
.fa-registered:before {
  content: "\f25d";
}

/* line 3267, app/assets/stylesheets/fontawesome/all.scss */
.fa-remove-format:before {
  content: "\f87d";
}

/* line 3270, app/assets/stylesheets/fontawesome/all.scss */
.fa-renren:before {
  content: "\f18b";
}

/* line 3273, app/assets/stylesheets/fontawesome/all.scss */
.fa-reply:before {
  content: "\f3e5";
}

/* line 3276, app/assets/stylesheets/fontawesome/all.scss */
.fa-reply-all:before {
  content: "\f122";
}

/* line 3279, app/assets/stylesheets/fontawesome/all.scss */
.fa-replyd:before {
  content: "\f3e6";
}

/* line 3282, app/assets/stylesheets/fontawesome/all.scss */
.fa-republican:before {
  content: "\f75e";
}

/* line 3285, app/assets/stylesheets/fontawesome/all.scss */
.fa-researchgate:before {
  content: "\f4f8";
}

/* line 3288, app/assets/stylesheets/fontawesome/all.scss */
.fa-resolving:before {
  content: "\f3e7";
}

/* line 3291, app/assets/stylesheets/fontawesome/all.scss */
.fa-restroom:before {
  content: "\f7bd";
}

/* line 3294, app/assets/stylesheets/fontawesome/all.scss */
.fa-retweet:before {
  content: "\f079";
}

/* line 3297, app/assets/stylesheets/fontawesome/all.scss */
.fa-rev:before {
  content: "\f5b2";
}

/* line 3300, app/assets/stylesheets/fontawesome/all.scss */
.fa-ribbon:before {
  content: "\f4d6";
}

/* line 3303, app/assets/stylesheets/fontawesome/all.scss */
.fa-ring:before {
  content: "\f70b";
}

/* line 3306, app/assets/stylesheets/fontawesome/all.scss */
.fa-road:before {
  content: "\f018";
}

/* line 3309, app/assets/stylesheets/fontawesome/all.scss */
.fa-robot:before {
  content: "\f544";
}

/* line 3312, app/assets/stylesheets/fontawesome/all.scss */
.fa-rocket:before {
  content: "\f135";
}

/* line 3315, app/assets/stylesheets/fontawesome/all.scss */
.fa-rocketchat:before {
  content: "\f3e8";
}

/* line 3318, app/assets/stylesheets/fontawesome/all.scss */
.fa-rockrms:before {
  content: "\f3e9";
}

/* line 3321, app/assets/stylesheets/fontawesome/all.scss */
.fa-route:before {
  content: "\f4d7";
}

/* line 3324, app/assets/stylesheets/fontawesome/all.scss */
.fa-rss:before {
  content: "\f09e";
}

/* line 3327, app/assets/stylesheets/fontawesome/all.scss */
.fa-rss-square:before {
  content: "\f143";
}

/* line 3330, app/assets/stylesheets/fontawesome/all.scss */
.fa-ruble-sign:before {
  content: "\f158";
}

/* line 3333, app/assets/stylesheets/fontawesome/all.scss */
.fa-ruler:before {
  content: "\f545";
}

/* line 3336, app/assets/stylesheets/fontawesome/all.scss */
.fa-ruler-combined:before {
  content: "\f546";
}

/* line 3339, app/assets/stylesheets/fontawesome/all.scss */
.fa-ruler-horizontal:before {
  content: "\f547";
}

/* line 3342, app/assets/stylesheets/fontawesome/all.scss */
.fa-ruler-vertical:before {
  content: "\f548";
}

/* line 3345, app/assets/stylesheets/fontawesome/all.scss */
.fa-running:before {
  content: "\f70c";
}

/* line 3348, app/assets/stylesheets/fontawesome/all.scss */
.fa-rupee-sign:before {
  content: "\f156";
}

/* line 3351, app/assets/stylesheets/fontawesome/all.scss */
.fa-rust:before {
  content: "\e07a";
}

/* line 3354, app/assets/stylesheets/fontawesome/all.scss */
.fa-sad-cry:before {
  content: "\f5b3";
}

/* line 3357, app/assets/stylesheets/fontawesome/all.scss */
.fa-sad-tear:before {
  content: "\f5b4";
}

/* line 3360, app/assets/stylesheets/fontawesome/all.scss */
.fa-safari:before {
  content: "\f267";
}

/* line 3363, app/assets/stylesheets/fontawesome/all.scss */
.fa-salesforce:before {
  content: "\f83b";
}

/* line 3366, app/assets/stylesheets/fontawesome/all.scss */
.fa-sass:before {
  content: "\f41e";
}

/* line 3369, app/assets/stylesheets/fontawesome/all.scss */
.fa-satellite:before {
  content: "\f7bf";
}

/* line 3372, app/assets/stylesheets/fontawesome/all.scss */
.fa-satellite-dish:before {
  content: "\f7c0";
}

/* line 3375, app/assets/stylesheets/fontawesome/all.scss */
.fa-save:before {
  content: "\f0c7";
}

/* line 3378, app/assets/stylesheets/fontawesome/all.scss */
.fa-schlix:before {
  content: "\f3ea";
}

/* line 3381, app/assets/stylesheets/fontawesome/all.scss */
.fa-school:before {
  content: "\f549";
}

/* line 3384, app/assets/stylesheets/fontawesome/all.scss */
.fa-screwdriver:before {
  content: "\f54a";
}

/* line 3387, app/assets/stylesheets/fontawesome/all.scss */
.fa-scribd:before {
  content: "\f28a";
}

/* line 3390, app/assets/stylesheets/fontawesome/all.scss */
.fa-scroll:before {
  content: "\f70e";
}

/* line 3393, app/assets/stylesheets/fontawesome/all.scss */
.fa-sd-card:before {
  content: "\f7c2";
}

/* line 3396, app/assets/stylesheets/fontawesome/all.scss */
.fa-search:before {
  content: "\f002";
}

/* line 3399, app/assets/stylesheets/fontawesome/all.scss */
.fa-search-dollar:before {
  content: "\f688";
}

/* line 3402, app/assets/stylesheets/fontawesome/all.scss */
.fa-search-location:before {
  content: "\f689";
}

/* line 3405, app/assets/stylesheets/fontawesome/all.scss */
.fa-search-minus:before {
  content: "\f010";
}

/* line 3408, app/assets/stylesheets/fontawesome/all.scss */
.fa-search-plus:before {
  content: "\f00e";
}

/* line 3411, app/assets/stylesheets/fontawesome/all.scss */
.fa-searchengin:before {
  content: "\f3eb";
}

/* line 3414, app/assets/stylesheets/fontawesome/all.scss */
.fa-seedling:before {
  content: "\f4d8";
}

/* line 3417, app/assets/stylesheets/fontawesome/all.scss */
.fa-sellcast:before {
  content: "\f2da";
}

/* line 3420, app/assets/stylesheets/fontawesome/all.scss */
.fa-sellsy:before {
  content: "\f213";
}

/* line 3423, app/assets/stylesheets/fontawesome/all.scss */
.fa-server:before {
  content: "\f233";
}

/* line 3426, app/assets/stylesheets/fontawesome/all.scss */
.fa-servicestack:before {
  content: "\f3ec";
}

/* line 3429, app/assets/stylesheets/fontawesome/all.scss */
.fa-shapes:before {
  content: "\f61f";
}

/* line 3432, app/assets/stylesheets/fontawesome/all.scss */
.fa-share:before {
  content: "\f064";
}

/* line 3435, app/assets/stylesheets/fontawesome/all.scss */
.fa-share-alt:before {
  content: "\f1e0";
}

/* line 3438, app/assets/stylesheets/fontawesome/all.scss */
.fa-share-alt-square:before {
  content: "\f1e1";
}

/* line 3441, app/assets/stylesheets/fontawesome/all.scss */
.fa-share-square:before {
  content: "\f14d";
}

/* line 3444, app/assets/stylesheets/fontawesome/all.scss */
.fa-shekel-sign:before {
  content: "\f20b";
}

/* line 3447, app/assets/stylesheets/fontawesome/all.scss */
.fa-shield-alt:before {
  content: "\f3ed";
}

/* line 3450, app/assets/stylesheets/fontawesome/all.scss */
.fa-shield-virus:before {
  content: "\e06c";
}

/* line 3453, app/assets/stylesheets/fontawesome/all.scss */
.fa-ship:before {
  content: "\f21a";
}

/* line 3456, app/assets/stylesheets/fontawesome/all.scss */
.fa-shipping-fast:before {
  content: "\f48b";
}

/* line 3459, app/assets/stylesheets/fontawesome/all.scss */
.fa-shirtsinbulk:before {
  content: "\f214";
}

/* line 3462, app/assets/stylesheets/fontawesome/all.scss */
.fa-shoe-prints:before {
  content: "\f54b";
}

/* line 3465, app/assets/stylesheets/fontawesome/all.scss */
.fa-shopify:before {
  content: "\e057";
}

/* line 3468, app/assets/stylesheets/fontawesome/all.scss */
.fa-shopping-bag:before {
  content: "\f290";
}

/* line 3471, app/assets/stylesheets/fontawesome/all.scss */
.fa-shopping-basket:before {
  content: "\f291";
}

/* line 3474, app/assets/stylesheets/fontawesome/all.scss */
.fa-shopping-cart:before {
  content: "\f07a";
}

/* line 3477, app/assets/stylesheets/fontawesome/all.scss */
.fa-shopware:before {
  content: "\f5b5";
}

/* line 3480, app/assets/stylesheets/fontawesome/all.scss */
.fa-shower:before {
  content: "\f2cc";
}

/* line 3483, app/assets/stylesheets/fontawesome/all.scss */
.fa-shuttle-van:before {
  content: "\f5b6";
}

/* line 3486, app/assets/stylesheets/fontawesome/all.scss */
.fa-sign:before {
  content: "\f4d9";
}

/* line 3489, app/assets/stylesheets/fontawesome/all.scss */
.fa-sign-in-alt:before {
  content: "\f2f6";
}

/* line 3492, app/assets/stylesheets/fontawesome/all.scss */
.fa-sign-language:before {
  content: "\f2a7";
}

/* line 3495, app/assets/stylesheets/fontawesome/all.scss */
.fa-sign-out-alt:before {
  content: "\f2f5";
}

/* line 3498, app/assets/stylesheets/fontawesome/all.scss */
.fa-signal:before {
  content: "\f012";
}

/* line 3501, app/assets/stylesheets/fontawesome/all.scss */
.fa-signature:before {
  content: "\f5b7";
}

/* line 3504, app/assets/stylesheets/fontawesome/all.scss */
.fa-sim-card:before {
  content: "\f7c4";
}

/* line 3507, app/assets/stylesheets/fontawesome/all.scss */
.fa-simplybuilt:before {
  content: "\f215";
}

/* line 3510, app/assets/stylesheets/fontawesome/all.scss */
.fa-sink:before {
  content: "\e06d";
}

/* line 3513, app/assets/stylesheets/fontawesome/all.scss */
.fa-sistrix:before {
  content: "\f3ee";
}

/* line 3516, app/assets/stylesheets/fontawesome/all.scss */
.fa-sitemap:before {
  content: "\f0e8";
}

/* line 3519, app/assets/stylesheets/fontawesome/all.scss */
.fa-sith:before {
  content: "\f512";
}

/* line 3522, app/assets/stylesheets/fontawesome/all.scss */
.fa-skating:before {
  content: "\f7c5";
}

/* line 3525, app/assets/stylesheets/fontawesome/all.scss */
.fa-sketch:before {
  content: "\f7c6";
}

/* line 3528, app/assets/stylesheets/fontawesome/all.scss */
.fa-skiing:before {
  content: "\f7c9";
}

/* line 3531, app/assets/stylesheets/fontawesome/all.scss */
.fa-skiing-nordic:before {
  content: "\f7ca";
}

/* line 3534, app/assets/stylesheets/fontawesome/all.scss */
.fa-skull:before {
  content: "\f54c";
}

/* line 3537, app/assets/stylesheets/fontawesome/all.scss */
.fa-skull-crossbones:before {
  content: "\f714";
}

/* line 3540, app/assets/stylesheets/fontawesome/all.scss */
.fa-skyatlas:before {
  content: "\f216";
}

/* line 3543, app/assets/stylesheets/fontawesome/all.scss */
.fa-skype:before {
  content: "\f17e";
}

/* line 3546, app/assets/stylesheets/fontawesome/all.scss */
.fa-slack:before {
  content: "\f198";
}

/* line 3549, app/assets/stylesheets/fontawesome/all.scss */
.fa-slack-hash:before {
  content: "\f3ef";
}

/* line 3552, app/assets/stylesheets/fontawesome/all.scss */
.fa-slash:before {
  content: "\f715";
}

/* line 3555, app/assets/stylesheets/fontawesome/all.scss */
.fa-sleigh:before {
  content: "\f7cc";
}

/* line 3558, app/assets/stylesheets/fontawesome/all.scss */
.fa-sliders-h:before {
  content: "\f1de";
}

/* line 3561, app/assets/stylesheets/fontawesome/all.scss */
.fa-slideshare:before {
  content: "\f1e7";
}

/* line 3564, app/assets/stylesheets/fontawesome/all.scss */
.fa-smile:before {
  content: "\f118";
}

/* line 3567, app/assets/stylesheets/fontawesome/all.scss */
.fa-smile-beam:before {
  content: "\f5b8";
}

/* line 3570, app/assets/stylesheets/fontawesome/all.scss */
.fa-smile-wink:before {
  content: "\f4da";
}

/* line 3573, app/assets/stylesheets/fontawesome/all.scss */
.fa-smog:before {
  content: "\f75f";
}

/* line 3576, app/assets/stylesheets/fontawesome/all.scss */
.fa-smoking:before {
  content: "\f48d";
}

/* line 3579, app/assets/stylesheets/fontawesome/all.scss */
.fa-smoking-ban:before {
  content: "\f54d";
}

/* line 3582, app/assets/stylesheets/fontawesome/all.scss */
.fa-sms:before {
  content: "\f7cd";
}

/* line 3585, app/assets/stylesheets/fontawesome/all.scss */
.fa-snapchat:before {
  content: "\f2ab";
}

/* line 3588, app/assets/stylesheets/fontawesome/all.scss */
.fa-snapchat-ghost:before {
  content: "\f2ac";
}

/* line 3591, app/assets/stylesheets/fontawesome/all.scss */
.fa-snapchat-square:before {
  content: "\f2ad";
}

/* line 3594, app/assets/stylesheets/fontawesome/all.scss */
.fa-snowboarding:before {
  content: "\f7ce";
}

/* line 3597, app/assets/stylesheets/fontawesome/all.scss */
.fa-snowflake:before {
  content: "\f2dc";
}

/* line 3600, app/assets/stylesheets/fontawesome/all.scss */
.fa-snowman:before {
  content: "\f7d0";
}

/* line 3603, app/assets/stylesheets/fontawesome/all.scss */
.fa-snowplow:before {
  content: "\f7d2";
}

/* line 3606, app/assets/stylesheets/fontawesome/all.scss */
.fa-soap:before {
  content: "\e06e";
}

/* line 3609, app/assets/stylesheets/fontawesome/all.scss */
.fa-socks:before {
  content: "\f696";
}

/* line 3612, app/assets/stylesheets/fontawesome/all.scss */
.fa-solar-panel:before {
  content: "\f5ba";
}

/* line 3615, app/assets/stylesheets/fontawesome/all.scss */
.fa-sort:before {
  content: "\f0dc";
}

/* line 3618, app/assets/stylesheets/fontawesome/all.scss */
.fa-sort-alpha-down:before {
  content: "\f15d";
}

/* line 3621, app/assets/stylesheets/fontawesome/all.scss */
.fa-sort-alpha-down-alt:before {
  content: "\f881";
}

/* line 3624, app/assets/stylesheets/fontawesome/all.scss */
.fa-sort-alpha-up:before {
  content: "\f15e";
}

/* line 3627, app/assets/stylesheets/fontawesome/all.scss */
.fa-sort-alpha-up-alt:before {
  content: "\f882";
}

/* line 3630, app/assets/stylesheets/fontawesome/all.scss */
.fa-sort-amount-down:before {
  content: "\f160";
}

/* line 3633, app/assets/stylesheets/fontawesome/all.scss */
.fa-sort-amount-down-alt:before {
  content: "\f884";
}

/* line 3636, app/assets/stylesheets/fontawesome/all.scss */
.fa-sort-amount-up:before {
  content: "\f161";
}

/* line 3639, app/assets/stylesheets/fontawesome/all.scss */
.fa-sort-amount-up-alt:before {
  content: "\f885";
}

/* line 3642, app/assets/stylesheets/fontawesome/all.scss */
.fa-sort-down:before {
  content: "\f0dd";
}

/* line 3645, app/assets/stylesheets/fontawesome/all.scss */
.fa-sort-numeric-down:before {
  content: "\f162";
}

/* line 3648, app/assets/stylesheets/fontawesome/all.scss */
.fa-sort-numeric-down-alt:before {
  content: "\f886";
}

/* line 3651, app/assets/stylesheets/fontawesome/all.scss */
.fa-sort-numeric-up:before {
  content: "\f163";
}

/* line 3654, app/assets/stylesheets/fontawesome/all.scss */
.fa-sort-numeric-up-alt:before {
  content: "\f887";
}

/* line 3657, app/assets/stylesheets/fontawesome/all.scss */
.fa-sort-up:before {
  content: "\f0de";
}

/* line 3660, app/assets/stylesheets/fontawesome/all.scss */
.fa-soundcloud:before {
  content: "\f1be";
}

/* line 3663, app/assets/stylesheets/fontawesome/all.scss */
.fa-sourcetree:before {
  content: "\f7d3";
}

/* line 3666, app/assets/stylesheets/fontawesome/all.scss */
.fa-spa:before {
  content: "\f5bb";
}

/* line 3669, app/assets/stylesheets/fontawesome/all.scss */
.fa-space-shuttle:before {
  content: "\f197";
}

/* line 3672, app/assets/stylesheets/fontawesome/all.scss */
.fa-speakap:before {
  content: "\f3f3";
}

/* line 3675, app/assets/stylesheets/fontawesome/all.scss */
.fa-speaker-deck:before {
  content: "\f83c";
}

/* line 3678, app/assets/stylesheets/fontawesome/all.scss */
.fa-spell-check:before {
  content: "\f891";
}

/* line 3681, app/assets/stylesheets/fontawesome/all.scss */
.fa-spider:before {
  content: "\f717";
}

/* line 3684, app/assets/stylesheets/fontawesome/all.scss */
.fa-spinner:before {
  content: "\f110";
}

/* line 3687, app/assets/stylesheets/fontawesome/all.scss */
.fa-splotch:before {
  content: "\f5bc";
}

/* line 3690, app/assets/stylesheets/fontawesome/all.scss */
.fa-spotify:before {
  content: "\f1bc";
}

/* line 3693, app/assets/stylesheets/fontawesome/all.scss */
.fa-spray-can:before {
  content: "\f5bd";
}

/* line 3696, app/assets/stylesheets/fontawesome/all.scss */
.fa-square:before {
  content: "\f0c8";
}

/* line 3699, app/assets/stylesheets/fontawesome/all.scss */
.fa-square-full:before {
  content: "\f45c";
}

/* line 3702, app/assets/stylesheets/fontawesome/all.scss */
.fa-square-root-alt:before {
  content: "\f698";
}

/* line 3705, app/assets/stylesheets/fontawesome/all.scss */
.fa-squarespace:before {
  content: "\f5be";
}

/* line 3708, app/assets/stylesheets/fontawesome/all.scss */
.fa-stack-exchange:before {
  content: "\f18d";
}

/* line 3711, app/assets/stylesheets/fontawesome/all.scss */
.fa-stack-overflow:before {
  content: "\f16c";
}

/* line 3714, app/assets/stylesheets/fontawesome/all.scss */
.fa-stackpath:before {
  content: "\f842";
}

/* line 3717, app/assets/stylesheets/fontawesome/all.scss */
.fa-stamp:before {
  content: "\f5bf";
}

/* line 3720, app/assets/stylesheets/fontawesome/all.scss */
.fa-star:before {
  content: "\f005";
}

/* line 3723, app/assets/stylesheets/fontawesome/all.scss */
.fa-star-and-crescent:before {
  content: "\f699";
}

/* line 3726, app/assets/stylesheets/fontawesome/all.scss */
.fa-star-half:before {
  content: "\f089";
}

/* line 3729, app/assets/stylesheets/fontawesome/all.scss */
.fa-star-half-alt:before {
  content: "\f5c0";
}

/* line 3732, app/assets/stylesheets/fontawesome/all.scss */
.fa-star-of-david:before {
  content: "\f69a";
}

/* line 3735, app/assets/stylesheets/fontawesome/all.scss */
.fa-star-of-life:before {
  content: "\f621";
}

/* line 3738, app/assets/stylesheets/fontawesome/all.scss */
.fa-staylinked:before {
  content: "\f3f5";
}

/* line 3741, app/assets/stylesheets/fontawesome/all.scss */
.fa-steam:before {
  content: "\f1b6";
}

/* line 3744, app/assets/stylesheets/fontawesome/all.scss */
.fa-steam-square:before {
  content: "\f1b7";
}

/* line 3747, app/assets/stylesheets/fontawesome/all.scss */
.fa-steam-symbol:before {
  content: "\f3f6";
}

/* line 3750, app/assets/stylesheets/fontawesome/all.scss */
.fa-step-backward:before {
  content: "\f048";
}

/* line 3753, app/assets/stylesheets/fontawesome/all.scss */
.fa-step-forward:before {
  content: "\f051";
}

/* line 3756, app/assets/stylesheets/fontawesome/all.scss */
.fa-stethoscope:before {
  content: "\f0f1";
}

/* line 3759, app/assets/stylesheets/fontawesome/all.scss */
.fa-sticker-mule:before {
  content: "\f3f7";
}

/* line 3762, app/assets/stylesheets/fontawesome/all.scss */
.fa-sticky-note:before {
  content: "\f249";
}

/* line 3765, app/assets/stylesheets/fontawesome/all.scss */
.fa-stop:before {
  content: "\f04d";
}

/* line 3768, app/assets/stylesheets/fontawesome/all.scss */
.fa-stop-circle:before {
  content: "\f28d";
}

/* line 3771, app/assets/stylesheets/fontawesome/all.scss */
.fa-stopwatch:before {
  content: "\f2f2";
}

/* line 3774, app/assets/stylesheets/fontawesome/all.scss */
.fa-stopwatch-20:before {
  content: "\e06f";
}

/* line 3777, app/assets/stylesheets/fontawesome/all.scss */
.fa-store:before {
  content: "\f54e";
}

/* line 3780, app/assets/stylesheets/fontawesome/all.scss */
.fa-store-alt:before {
  content: "\f54f";
}

/* line 3783, app/assets/stylesheets/fontawesome/all.scss */
.fa-store-alt-slash:before {
  content: "\e070";
}

/* line 3786, app/assets/stylesheets/fontawesome/all.scss */
.fa-store-slash:before {
  content: "\e071";
}

/* line 3789, app/assets/stylesheets/fontawesome/all.scss */
.fa-strava:before {
  content: "\f428";
}

/* line 3792, app/assets/stylesheets/fontawesome/all.scss */
.fa-stream:before {
  content: "\f550";
}

/* line 3795, app/assets/stylesheets/fontawesome/all.scss */
.fa-street-view:before {
  content: "\f21d";
}

/* line 3798, app/assets/stylesheets/fontawesome/all.scss */
.fa-strikethrough:before {
  content: "\f0cc";
}

/* line 3801, app/assets/stylesheets/fontawesome/all.scss */
.fa-stripe:before {
  content: "\f429";
}

/* line 3804, app/assets/stylesheets/fontawesome/all.scss */
.fa-stripe-s:before {
  content: "\f42a";
}

/* line 3807, app/assets/stylesheets/fontawesome/all.scss */
.fa-stroopwafel:before {
  content: "\f551";
}

/* line 3810, app/assets/stylesheets/fontawesome/all.scss */
.fa-studiovinari:before {
  content: "\f3f8";
}

/* line 3813, app/assets/stylesheets/fontawesome/all.scss */
.fa-stumbleupon:before {
  content: "\f1a4";
}

/* line 3816, app/assets/stylesheets/fontawesome/all.scss */
.fa-stumbleupon-circle:before {
  content: "\f1a3";
}

/* line 3819, app/assets/stylesheets/fontawesome/all.scss */
.fa-subscript:before {
  content: "\f12c";
}

/* line 3822, app/assets/stylesheets/fontawesome/all.scss */
.fa-subway:before {
  content: "\f239";
}

/* line 3825, app/assets/stylesheets/fontawesome/all.scss */
.fa-suitcase:before {
  content: "\f0f2";
}

/* line 3828, app/assets/stylesheets/fontawesome/all.scss */
.fa-suitcase-rolling:before {
  content: "\f5c1";
}

/* line 3831, app/assets/stylesheets/fontawesome/all.scss */
.fa-sun:before {
  content: "\f185";
}

/* line 3834, app/assets/stylesheets/fontawesome/all.scss */
.fa-superpowers:before {
  content: "\f2dd";
}

/* line 3837, app/assets/stylesheets/fontawesome/all.scss */
.fa-superscript:before {
  content: "\f12b";
}

/* line 3840, app/assets/stylesheets/fontawesome/all.scss */
.fa-supple:before {
  content: "\f3f9";
}

/* line 3843, app/assets/stylesheets/fontawesome/all.scss */
.fa-surprise:before {
  content: "\f5c2";
}

/* line 3846, app/assets/stylesheets/fontawesome/all.scss */
.fa-suse:before {
  content: "\f7d6";
}

/* line 3849, app/assets/stylesheets/fontawesome/all.scss */
.fa-swatchbook:before {
  content: "\f5c3";
}

/* line 3852, app/assets/stylesheets/fontawesome/all.scss */
.fa-swift:before {
  content: "\f8e1";
}

/* line 3855, app/assets/stylesheets/fontawesome/all.scss */
.fa-swimmer:before {
  content: "\f5c4";
}

/* line 3858, app/assets/stylesheets/fontawesome/all.scss */
.fa-swimming-pool:before {
  content: "\f5c5";
}

/* line 3861, app/assets/stylesheets/fontawesome/all.scss */
.fa-symfony:before {
  content: "\f83d";
}

/* line 3864, app/assets/stylesheets/fontawesome/all.scss */
.fa-synagogue:before {
  content: "\f69b";
}

/* line 3867, app/assets/stylesheets/fontawesome/all.scss */
.fa-sync:before {
  content: "\f021";
}

/* line 3870, app/assets/stylesheets/fontawesome/all.scss */
.fa-sync-alt:before {
  content: "\f2f1";
}

/* line 3873, app/assets/stylesheets/fontawesome/all.scss */
.fa-syringe:before {
  content: "\f48e";
}

/* line 3876, app/assets/stylesheets/fontawesome/all.scss */
.fa-table:before {
  content: "\f0ce";
}

/* line 3879, app/assets/stylesheets/fontawesome/all.scss */
.fa-table-tennis:before {
  content: "\f45d";
}

/* line 3882, app/assets/stylesheets/fontawesome/all.scss */
.fa-tablet:before {
  content: "\f10a";
}

/* line 3885, app/assets/stylesheets/fontawesome/all.scss */
.fa-tablet-alt:before {
  content: "\f3fa";
}

/* line 3888, app/assets/stylesheets/fontawesome/all.scss */
.fa-tablets:before {
  content: "\f490";
}

/* line 3891, app/assets/stylesheets/fontawesome/all.scss */
.fa-tachometer-alt:before {
  content: "\f3fd";
}

/* line 3894, app/assets/stylesheets/fontawesome/all.scss */
.fa-tag:before {
  content: "\f02b";
}

/* line 3897, app/assets/stylesheets/fontawesome/all.scss */
.fa-tags:before {
  content: "\f02c";
}

/* line 3900, app/assets/stylesheets/fontawesome/all.scss */
.fa-tape:before {
  content: "\f4db";
}

/* line 3903, app/assets/stylesheets/fontawesome/all.scss */
.fa-tasks:before {
  content: "\f0ae";
}

/* line 3906, app/assets/stylesheets/fontawesome/all.scss */
.fa-taxi:before {
  content: "\f1ba";
}

/* line 3909, app/assets/stylesheets/fontawesome/all.scss */
.fa-teamspeak:before {
  content: "\f4f9";
}

/* line 3912, app/assets/stylesheets/fontawesome/all.scss */
.fa-teeth:before {
  content: "\f62e";
}

/* line 3915, app/assets/stylesheets/fontawesome/all.scss */
.fa-teeth-open:before {
  content: "\f62f";
}

/* line 3918, app/assets/stylesheets/fontawesome/all.scss */
.fa-telegram:before {
  content: "\f2c6";
}

/* line 3921, app/assets/stylesheets/fontawesome/all.scss */
.fa-telegram-plane:before {
  content: "\f3fe";
}

/* line 3924, app/assets/stylesheets/fontawesome/all.scss */
.fa-temperature-high:before {
  content: "\f769";
}

/* line 3927, app/assets/stylesheets/fontawesome/all.scss */
.fa-temperature-low:before {
  content: "\f76b";
}

/* line 3930, app/assets/stylesheets/fontawesome/all.scss */
.fa-tencent-weibo:before {
  content: "\f1d5";
}

/* line 3933, app/assets/stylesheets/fontawesome/all.scss */
.fa-tenge:before {
  content: "\f7d7";
}

/* line 3936, app/assets/stylesheets/fontawesome/all.scss */
.fa-terminal:before {
  content: "\f120";
}

/* line 3939, app/assets/stylesheets/fontawesome/all.scss */
.fa-text-height:before {
  content: "\f034";
}

/* line 3942, app/assets/stylesheets/fontawesome/all.scss */
.fa-text-width:before {
  content: "\f035";
}

/* line 3945, app/assets/stylesheets/fontawesome/all.scss */
.fa-th:before {
  content: "\f00a";
}

/* line 3948, app/assets/stylesheets/fontawesome/all.scss */
.fa-th-large:before {
  content: "\f009";
}

/* line 3951, app/assets/stylesheets/fontawesome/all.scss */
.fa-th-list:before {
  content: "\f00b";
}

/* line 3954, app/assets/stylesheets/fontawesome/all.scss */
.fa-the-red-yeti:before {
  content: "\f69d";
}

/* line 3957, app/assets/stylesheets/fontawesome/all.scss */
.fa-theater-masks:before {
  content: "\f630";
}

/* line 3960, app/assets/stylesheets/fontawesome/all.scss */
.fa-themeco:before {
  content: "\f5c6";
}

/* line 3963, app/assets/stylesheets/fontawesome/all.scss */
.fa-themeisle:before {
  content: "\f2b2";
}

/* line 3966, app/assets/stylesheets/fontawesome/all.scss */
.fa-thermometer:before {
  content: "\f491";
}

/* line 3969, app/assets/stylesheets/fontawesome/all.scss */
.fa-thermometer-empty:before {
  content: "\f2cb";
}

/* line 3972, app/assets/stylesheets/fontawesome/all.scss */
.fa-thermometer-full:before {
  content: "\f2c7";
}

/* line 3975, app/assets/stylesheets/fontawesome/all.scss */
.fa-thermometer-half:before {
  content: "\f2c9";
}

/* line 3978, app/assets/stylesheets/fontawesome/all.scss */
.fa-thermometer-quarter:before {
  content: "\f2ca";
}

/* line 3981, app/assets/stylesheets/fontawesome/all.scss */
.fa-thermometer-three-quarters:before {
  content: "\f2c8";
}

/* line 3984, app/assets/stylesheets/fontawesome/all.scss */
.fa-think-peaks:before {
  content: "\f731";
}

/* line 3987, app/assets/stylesheets/fontawesome/all.scss */
.fa-thumbs-down:before {
  content: "\f165";
}

/* line 3990, app/assets/stylesheets/fontawesome/all.scss */
.fa-thumbs-up:before {
  content: "\f164";
}

/* line 3993, app/assets/stylesheets/fontawesome/all.scss */
.fa-thumbtack:before {
  content: "\f08d";
}

/* line 3996, app/assets/stylesheets/fontawesome/all.scss */
.fa-ticket-alt:before {
  content: "\f3ff";
}

/* line 3999, app/assets/stylesheets/fontawesome/all.scss */
.fa-tiktok:before {
  content: "\e07b";
}

/* line 4002, app/assets/stylesheets/fontawesome/all.scss */
.fa-times:before {
  content: "\f00d";
}

/* line 4005, app/assets/stylesheets/fontawesome/all.scss */
.fa-times-circle:before {
  content: "\f057";
}

/* line 4008, app/assets/stylesheets/fontawesome/all.scss */
.fa-tint:before {
  content: "\f043";
}

/* line 4011, app/assets/stylesheets/fontawesome/all.scss */
.fa-tint-slash:before {
  content: "\f5c7";
}

/* line 4014, app/assets/stylesheets/fontawesome/all.scss */
.fa-tired:before {
  content: "\f5c8";
}

/* line 4017, app/assets/stylesheets/fontawesome/all.scss */
.fa-toggle-off:before {
  content: "\f204";
}

/* line 4020, app/assets/stylesheets/fontawesome/all.scss */
.fa-toggle-on:before {
  content: "\f205";
}

/* line 4023, app/assets/stylesheets/fontawesome/all.scss */
.fa-toilet:before {
  content: "\f7d8";
}

/* line 4026, app/assets/stylesheets/fontawesome/all.scss */
.fa-toilet-paper:before {
  content: "\f71e";
}

/* line 4029, app/assets/stylesheets/fontawesome/all.scss */
.fa-toilet-paper-slash:before {
  content: "\e072";
}

/* line 4032, app/assets/stylesheets/fontawesome/all.scss */
.fa-toolbox:before {
  content: "\f552";
}

/* line 4035, app/assets/stylesheets/fontawesome/all.scss */
.fa-tools:before {
  content: "\f7d9";
}

/* line 4038, app/assets/stylesheets/fontawesome/all.scss */
.fa-tooth:before {
  content: "\f5c9";
}

/* line 4041, app/assets/stylesheets/fontawesome/all.scss */
.fa-torah:before {
  content: "\f6a0";
}

/* line 4044, app/assets/stylesheets/fontawesome/all.scss */
.fa-torii-gate:before {
  content: "\f6a1";
}

/* line 4047, app/assets/stylesheets/fontawesome/all.scss */
.fa-tractor:before {
  content: "\f722";
}

/* line 4050, app/assets/stylesheets/fontawesome/all.scss */
.fa-trade-federation:before {
  content: "\f513";
}

/* line 4053, app/assets/stylesheets/fontawesome/all.scss */
.fa-trademark:before {
  content: "\f25c";
}

/* line 4056, app/assets/stylesheets/fontawesome/all.scss */
.fa-traffic-light:before {
  content: "\f637";
}

/* line 4059, app/assets/stylesheets/fontawesome/all.scss */
.fa-trailer:before {
  content: "\e041";
}

/* line 4062, app/assets/stylesheets/fontawesome/all.scss */
.fa-train:before {
  content: "\f238";
}

/* line 4065, app/assets/stylesheets/fontawesome/all.scss */
.fa-tram:before {
  content: "\f7da";
}

/* line 4068, app/assets/stylesheets/fontawesome/all.scss */
.fa-transgender:before {
  content: "\f224";
}

/* line 4071, app/assets/stylesheets/fontawesome/all.scss */
.fa-transgender-alt:before {
  content: "\f225";
}

/* line 4074, app/assets/stylesheets/fontawesome/all.scss */
.fa-trash:before {
  content: "\f1f8";
}

/* line 4077, app/assets/stylesheets/fontawesome/all.scss */
.fa-trash-alt:before {
  content: "\f2ed";
}

/* line 4080, app/assets/stylesheets/fontawesome/all.scss */
.fa-trash-restore:before {
  content: "\f829";
}

/* line 4083, app/assets/stylesheets/fontawesome/all.scss */
.fa-trash-restore-alt:before {
  content: "\f82a";
}

/* line 4086, app/assets/stylesheets/fontawesome/all.scss */
.fa-tree:before {
  content: "\f1bb";
}

/* line 4089, app/assets/stylesheets/fontawesome/all.scss */
.fa-trello:before {
  content: "\f181";
}

/* line 4092, app/assets/stylesheets/fontawesome/all.scss */
.fa-trophy:before {
  content: "\f091";
}

/* line 4095, app/assets/stylesheets/fontawesome/all.scss */
.fa-truck:before {
  content: "\f0d1";
}

/* line 4098, app/assets/stylesheets/fontawesome/all.scss */
.fa-truck-loading:before {
  content: "\f4de";
}

/* line 4101, app/assets/stylesheets/fontawesome/all.scss */
.fa-truck-monster:before {
  content: "\f63b";
}

/* line 4104, app/assets/stylesheets/fontawesome/all.scss */
.fa-truck-moving:before {
  content: "\f4df";
}

/* line 4107, app/assets/stylesheets/fontawesome/all.scss */
.fa-truck-pickup:before {
  content: "\f63c";
}

/* line 4110, app/assets/stylesheets/fontawesome/all.scss */
.fa-tshirt:before {
  content: "\f553";
}

/* line 4113, app/assets/stylesheets/fontawesome/all.scss */
.fa-tty:before {
  content: "\f1e4";
}

/* line 4116, app/assets/stylesheets/fontawesome/all.scss */
.fa-tumblr:before {
  content: "\f173";
}

/* line 4119, app/assets/stylesheets/fontawesome/all.scss */
.fa-tumblr-square:before {
  content: "\f174";
}

/* line 4122, app/assets/stylesheets/fontawesome/all.scss */
.fa-tv:before {
  content: "\f26c";
}

/* line 4125, app/assets/stylesheets/fontawesome/all.scss */
.fa-twitch:before {
  content: "\f1e8";
}

/* line 4128, app/assets/stylesheets/fontawesome/all.scss */
.fa-twitter:before {
  content: "\f099";
}

/* line 4131, app/assets/stylesheets/fontawesome/all.scss */
.fa-twitter-square:before {
  content: "\f081";
}

/* line 4134, app/assets/stylesheets/fontawesome/all.scss */
.fa-typo3:before {
  content: "\f42b";
}

/* line 4137, app/assets/stylesheets/fontawesome/all.scss */
.fa-uber:before {
  content: "\f402";
}

/* line 4140, app/assets/stylesheets/fontawesome/all.scss */
.fa-ubuntu:before {
  content: "\f7df";
}

/* line 4143, app/assets/stylesheets/fontawesome/all.scss */
.fa-uikit:before {
  content: "\f403";
}

/* line 4146, app/assets/stylesheets/fontawesome/all.scss */
.fa-umbraco:before {
  content: "\f8e8";
}

/* line 4149, app/assets/stylesheets/fontawesome/all.scss */
.fa-umbrella:before {
  content: "\f0e9";
}

/* line 4152, app/assets/stylesheets/fontawesome/all.scss */
.fa-umbrella-beach:before {
  content: "\f5ca";
}

/* line 4155, app/assets/stylesheets/fontawesome/all.scss */
.fa-uncharted:before {
  content: "\e084";
}

/* line 4158, app/assets/stylesheets/fontawesome/all.scss */
.fa-underline:before {
  content: "\f0cd";
}

/* line 4161, app/assets/stylesheets/fontawesome/all.scss */
.fa-undo:before {
  content: "\f0e2";
}

/* line 4164, app/assets/stylesheets/fontawesome/all.scss */
.fa-undo-alt:before {
  content: "\f2ea";
}

/* line 4167, app/assets/stylesheets/fontawesome/all.scss */
.fa-uniregistry:before {
  content: "\f404";
}

/* line 4170, app/assets/stylesheets/fontawesome/all.scss */
.fa-unity:before {
  content: "\e049";
}

/* line 4173, app/assets/stylesheets/fontawesome/all.scss */
.fa-universal-access:before {
  content: "\f29a";
}

/* line 4176, app/assets/stylesheets/fontawesome/all.scss */
.fa-university:before {
  content: "\f19c";
}

/* line 4179, app/assets/stylesheets/fontawesome/all.scss */
.fa-unlink:before {
  content: "\f127";
}

/* line 4182, app/assets/stylesheets/fontawesome/all.scss */
.fa-unlock:before {
  content: "\f09c";
}

/* line 4185, app/assets/stylesheets/fontawesome/all.scss */
.fa-unlock-alt:before {
  content: "\f13e";
}

/* line 4188, app/assets/stylesheets/fontawesome/all.scss */
.fa-unsplash:before {
  content: "\e07c";
}

/* line 4191, app/assets/stylesheets/fontawesome/all.scss */
.fa-untappd:before {
  content: "\f405";
}

/* line 4194, app/assets/stylesheets/fontawesome/all.scss */
.fa-upload:before {
  content: "\f093";
}

/* line 4197, app/assets/stylesheets/fontawesome/all.scss */
.fa-ups:before {
  content: "\f7e0";
}

/* line 4200, app/assets/stylesheets/fontawesome/all.scss */
.fa-usb:before {
  content: "\f287";
}

/* line 4203, app/assets/stylesheets/fontawesome/all.scss */
.fa-user:before {
  content: "\f007";
}

/* line 4206, app/assets/stylesheets/fontawesome/all.scss */
.fa-user-alt:before {
  content: "\f406";
}

/* line 4209, app/assets/stylesheets/fontawesome/all.scss */
.fa-user-alt-slash:before {
  content: "\f4fa";
}

/* line 4212, app/assets/stylesheets/fontawesome/all.scss */
.fa-user-astronaut:before {
  content: "\f4fb";
}

/* line 4215, app/assets/stylesheets/fontawesome/all.scss */
.fa-user-check:before {
  content: "\f4fc";
}

/* line 4218, app/assets/stylesheets/fontawesome/all.scss */
.fa-user-circle:before {
  content: "\f2bd";
}

/* line 4221, app/assets/stylesheets/fontawesome/all.scss */
.fa-user-clock:before {
  content: "\f4fd";
}

/* line 4224, app/assets/stylesheets/fontawesome/all.scss */
.fa-user-cog:before {
  content: "\f4fe";
}

/* line 4227, app/assets/stylesheets/fontawesome/all.scss */
.fa-user-edit:before {
  content: "\f4ff";
}

/* line 4230, app/assets/stylesheets/fontawesome/all.scss */
.fa-user-friends:before {
  content: "\f500";
}

/* line 4233, app/assets/stylesheets/fontawesome/all.scss */
.fa-user-graduate:before {
  content: "\f501";
}

/* line 4236, app/assets/stylesheets/fontawesome/all.scss */
.fa-user-injured:before {
  content: "\f728";
}

/* line 4239, app/assets/stylesheets/fontawesome/all.scss */
.fa-user-lock:before {
  content: "\f502";
}

/* line 4242, app/assets/stylesheets/fontawesome/all.scss */
.fa-user-md:before {
  content: "\f0f0";
}

/* line 4245, app/assets/stylesheets/fontawesome/all.scss */
.fa-user-minus:before {
  content: "\f503";
}

/* line 4248, app/assets/stylesheets/fontawesome/all.scss */
.fa-user-ninja:before {
  content: "\f504";
}

/* line 4251, app/assets/stylesheets/fontawesome/all.scss */
.fa-user-nurse:before {
  content: "\f82f";
}

/* line 4254, app/assets/stylesheets/fontawesome/all.scss */
.fa-user-plus:before {
  content: "\f234";
}

/* line 4257, app/assets/stylesheets/fontawesome/all.scss */
.fa-user-secret:before {
  content: "\f21b";
}

/* line 4260, app/assets/stylesheets/fontawesome/all.scss */
.fa-user-shield:before {
  content: "\f505";
}

/* line 4263, app/assets/stylesheets/fontawesome/all.scss */
.fa-user-slash:before {
  content: "\f506";
}

/* line 4266, app/assets/stylesheets/fontawesome/all.scss */
.fa-user-tag:before {
  content: "\f507";
}

/* line 4269, app/assets/stylesheets/fontawesome/all.scss */
.fa-user-tie:before {
  content: "\f508";
}

/* line 4272, app/assets/stylesheets/fontawesome/all.scss */
.fa-user-times:before {
  content: "\f235";
}

/* line 4275, app/assets/stylesheets/fontawesome/all.scss */
.fa-users:before {
  content: "\f0c0";
}

/* line 4278, app/assets/stylesheets/fontawesome/all.scss */
.fa-users-cog:before {
  content: "\f509";
}

/* line 4281, app/assets/stylesheets/fontawesome/all.scss */
.fa-users-slash:before {
  content: "\e073";
}

/* line 4284, app/assets/stylesheets/fontawesome/all.scss */
.fa-usps:before {
  content: "\f7e1";
}

/* line 4287, app/assets/stylesheets/fontawesome/all.scss */
.fa-ussunnah:before {
  content: "\f407";
}

/* line 4290, app/assets/stylesheets/fontawesome/all.scss */
.fa-utensil-spoon:before {
  content: "\f2e5";
}

/* line 4293, app/assets/stylesheets/fontawesome/all.scss */
.fa-utensils:before {
  content: "\f2e7";
}

/* line 4296, app/assets/stylesheets/fontawesome/all.scss */
.fa-vaadin:before {
  content: "\f408";
}

/* line 4299, app/assets/stylesheets/fontawesome/all.scss */
.fa-vector-square:before {
  content: "\f5cb";
}

/* line 4302, app/assets/stylesheets/fontawesome/all.scss */
.fa-venus:before {
  content: "\f221";
}

/* line 4305, app/assets/stylesheets/fontawesome/all.scss */
.fa-venus-double:before {
  content: "\f226";
}

/* line 4308, app/assets/stylesheets/fontawesome/all.scss */
.fa-venus-mars:before {
  content: "\f228";
}

/* line 4311, app/assets/stylesheets/fontawesome/all.scss */
.fa-vest:before {
  content: "\e085";
}

/* line 4314, app/assets/stylesheets/fontawesome/all.scss */
.fa-vest-patches:before {
  content: "\e086";
}

/* line 4317, app/assets/stylesheets/fontawesome/all.scss */
.fa-viacoin:before {
  content: "\f237";
}

/* line 4320, app/assets/stylesheets/fontawesome/all.scss */
.fa-viadeo:before {
  content: "\f2a9";
}

/* line 4323, app/assets/stylesheets/fontawesome/all.scss */
.fa-viadeo-square:before {
  content: "\f2aa";
}

/* line 4326, app/assets/stylesheets/fontawesome/all.scss */
.fa-vial:before {
  content: "\f492";
}

/* line 4329, app/assets/stylesheets/fontawesome/all.scss */
.fa-vials:before {
  content: "\f493";
}

/* line 4332, app/assets/stylesheets/fontawesome/all.scss */
.fa-viber:before {
  content: "\f409";
}

/* line 4335, app/assets/stylesheets/fontawesome/all.scss */
.fa-video:before {
  content: "\f03d";
}

/* line 4338, app/assets/stylesheets/fontawesome/all.scss */
.fa-video-slash:before {
  content: "\f4e2";
}

/* line 4341, app/assets/stylesheets/fontawesome/all.scss */
.fa-vihara:before {
  content: "\f6a7";
}

/* line 4344, app/assets/stylesheets/fontawesome/all.scss */
.fa-vimeo:before {
  content: "\f40a";
}

/* line 4347, app/assets/stylesheets/fontawesome/all.scss */
.fa-vimeo-square:before {
  content: "\f194";
}

/* line 4350, app/assets/stylesheets/fontawesome/all.scss */
.fa-vimeo-v:before {
  content: "\f27d";
}

/* line 4353, app/assets/stylesheets/fontawesome/all.scss */
.fa-vine:before {
  content: "\f1ca";
}

/* line 4356, app/assets/stylesheets/fontawesome/all.scss */
.fa-virus:before {
  content: "\e074";
}

/* line 4359, app/assets/stylesheets/fontawesome/all.scss */
.fa-virus-slash:before {
  content: "\e075";
}

/* line 4362, app/assets/stylesheets/fontawesome/all.scss */
.fa-viruses:before {
  content: "\e076";
}

/* line 4365, app/assets/stylesheets/fontawesome/all.scss */
.fa-vk:before {
  content: "\f189";
}

/* line 4368, app/assets/stylesheets/fontawesome/all.scss */
.fa-vnv:before {
  content: "\f40b";
}

/* line 4371, app/assets/stylesheets/fontawesome/all.scss */
.fa-voicemail:before {
  content: "\f897";
}

/* line 4374, app/assets/stylesheets/fontawesome/all.scss */
.fa-volleyball-ball:before {
  content: "\f45f";
}

/* line 4377, app/assets/stylesheets/fontawesome/all.scss */
.fa-volume-down:before {
  content: "\f027";
}

/* line 4380, app/assets/stylesheets/fontawesome/all.scss */
.fa-volume-mute:before {
  content: "\f6a9";
}

/* line 4383, app/assets/stylesheets/fontawesome/all.scss */
.fa-volume-off:before {
  content: "\f026";
}

/* line 4386, app/assets/stylesheets/fontawesome/all.scss */
.fa-volume-up:before {
  content: "\f028";
}

/* line 4389, app/assets/stylesheets/fontawesome/all.scss */
.fa-vote-yea:before {
  content: "\f772";
}

/* line 4392, app/assets/stylesheets/fontawesome/all.scss */
.fa-vr-cardboard:before {
  content: "\f729";
}

/* line 4395, app/assets/stylesheets/fontawesome/all.scss */
.fa-vuejs:before {
  content: "\f41f";
}

/* line 4398, app/assets/stylesheets/fontawesome/all.scss */
.fa-walking:before {
  content: "\f554";
}

/* line 4401, app/assets/stylesheets/fontawesome/all.scss */
.fa-wallet:before {
  content: "\f555";
}

/* line 4404, app/assets/stylesheets/fontawesome/all.scss */
.fa-warehouse:before {
  content: "\f494";
}

/* line 4407, app/assets/stylesheets/fontawesome/all.scss */
.fa-watchman-monitoring:before {
  content: "\e087";
}

/* line 4410, app/assets/stylesheets/fontawesome/all.scss */
.fa-water:before {
  content: "\f773";
}

/* line 4413, app/assets/stylesheets/fontawesome/all.scss */
.fa-wave-square:before {
  content: "\f83e";
}

/* line 4416, app/assets/stylesheets/fontawesome/all.scss */
.fa-waze:before {
  content: "\f83f";
}

/* line 4419, app/assets/stylesheets/fontawesome/all.scss */
.fa-weebly:before {
  content: "\f5cc";
}

/* line 4422, app/assets/stylesheets/fontawesome/all.scss */
.fa-weibo:before {
  content: "\f18a";
}

/* line 4425, app/assets/stylesheets/fontawesome/all.scss */
.fa-weight:before {
  content: "\f496";
}

/* line 4428, app/assets/stylesheets/fontawesome/all.scss */
.fa-weight-hanging:before {
  content: "\f5cd";
}

/* line 4431, app/assets/stylesheets/fontawesome/all.scss */
.fa-weixin:before {
  content: "\f1d7";
}

/* line 4434, app/assets/stylesheets/fontawesome/all.scss */
.fa-whatsapp:before {
  content: "\f232";
}

/* line 4437, app/assets/stylesheets/fontawesome/all.scss */
.fa-whatsapp-square:before {
  content: "\f40c";
}

/* line 4440, app/assets/stylesheets/fontawesome/all.scss */
.fa-wheelchair:before {
  content: "\f193";
}

/* line 4443, app/assets/stylesheets/fontawesome/all.scss */
.fa-whmcs:before {
  content: "\f40d";
}

/* line 4446, app/assets/stylesheets/fontawesome/all.scss */
.fa-wifi:before {
  content: "\f1eb";
}

/* line 4449, app/assets/stylesheets/fontawesome/all.scss */
.fa-wikipedia-w:before {
  content: "\f266";
}

/* line 4452, app/assets/stylesheets/fontawesome/all.scss */
.fa-wind:before {
  content: "\f72e";
}

/* line 4455, app/assets/stylesheets/fontawesome/all.scss */
.fa-window-close:before {
  content: "\f410";
}

/* line 4458, app/assets/stylesheets/fontawesome/all.scss */
.fa-window-maximize:before {
  content: "\f2d0";
}

/* line 4461, app/assets/stylesheets/fontawesome/all.scss */
.fa-window-minimize:before {
  content: "\f2d1";
}

/* line 4464, app/assets/stylesheets/fontawesome/all.scss */
.fa-window-restore:before {
  content: "\f2d2";
}

/* line 4467, app/assets/stylesheets/fontawesome/all.scss */
.fa-windows:before {
  content: "\f17a";
}

/* line 4470, app/assets/stylesheets/fontawesome/all.scss */
.fa-wine-bottle:before {
  content: "\f72f";
}

/* line 4473, app/assets/stylesheets/fontawesome/all.scss */
.fa-wine-glass:before {
  content: "\f4e3";
}

/* line 4476, app/assets/stylesheets/fontawesome/all.scss */
.fa-wine-glass-alt:before {
  content: "\f5ce";
}

/* line 4479, app/assets/stylesheets/fontawesome/all.scss */
.fa-wix:before {
  content: "\f5cf";
}

/* line 4482, app/assets/stylesheets/fontawesome/all.scss */
.fa-wizards-of-the-coast:before {
  content: "\f730";
}

/* line 4485, app/assets/stylesheets/fontawesome/all.scss */
.fa-wodu:before {
  content: "\e088";
}

/* line 4488, app/assets/stylesheets/fontawesome/all.scss */
.fa-wolf-pack-battalion:before {
  content: "\f514";
}

/* line 4491, app/assets/stylesheets/fontawesome/all.scss */
.fa-won-sign:before {
  content: "\f159";
}

/* line 4494, app/assets/stylesheets/fontawesome/all.scss */
.fa-wordpress:before {
  content: "\f19a";
}

/* line 4497, app/assets/stylesheets/fontawesome/all.scss */
.fa-wordpress-simple:before {
  content: "\f411";
}

/* line 4500, app/assets/stylesheets/fontawesome/all.scss */
.fa-wpbeginner:before {
  content: "\f297";
}

/* line 4503, app/assets/stylesheets/fontawesome/all.scss */
.fa-wpexplorer:before {
  content: "\f2de";
}

/* line 4506, app/assets/stylesheets/fontawesome/all.scss */
.fa-wpforms:before {
  content: "\f298";
}

/* line 4509, app/assets/stylesheets/fontawesome/all.scss */
.fa-wpressr:before {
  content: "\f3e4";
}

/* line 4512, app/assets/stylesheets/fontawesome/all.scss */
.fa-wrench:before {
  content: "\f0ad";
}

/* line 4515, app/assets/stylesheets/fontawesome/all.scss */
.fa-x-ray:before {
  content: "\f497";
}

/* line 4518, app/assets/stylesheets/fontawesome/all.scss */
.fa-xbox:before {
  content: "\f412";
}

/* line 4521, app/assets/stylesheets/fontawesome/all.scss */
.fa-xing:before {
  content: "\f168";
}

/* line 4524, app/assets/stylesheets/fontawesome/all.scss */
.fa-xing-square:before {
  content: "\f169";
}

/* line 4527, app/assets/stylesheets/fontawesome/all.scss */
.fa-y-combinator:before {
  content: "\f23b";
}

/* line 4530, app/assets/stylesheets/fontawesome/all.scss */
.fa-yahoo:before {
  content: "\f19e";
}

/* line 4533, app/assets/stylesheets/fontawesome/all.scss */
.fa-yammer:before {
  content: "\f840";
}

/* line 4536, app/assets/stylesheets/fontawesome/all.scss */
.fa-yandex:before {
  content: "\f413";
}

/* line 4539, app/assets/stylesheets/fontawesome/all.scss */
.fa-yandex-international:before {
  content: "\f414";
}

/* line 4542, app/assets/stylesheets/fontawesome/all.scss */
.fa-yarn:before {
  content: "\f7e3";
}

/* line 4545, app/assets/stylesheets/fontawesome/all.scss */
.fa-yelp:before {
  content: "\f1e9";
}

/* line 4548, app/assets/stylesheets/fontawesome/all.scss */
.fa-yen-sign:before {
  content: "\f157";
}

/* line 4551, app/assets/stylesheets/fontawesome/all.scss */
.fa-yin-yang:before {
  content: "\f6ad";
}

/* line 4554, app/assets/stylesheets/fontawesome/all.scss */
.fa-yoast:before {
  content: "\f2b1";
}

/* line 4557, app/assets/stylesheets/fontawesome/all.scss */
.fa-youtube:before {
  content: "\f167";
}

/* line 4560, app/assets/stylesheets/fontawesome/all.scss */
.fa-youtube-square:before {
  content: "\f431";
}

/* line 4563, app/assets/stylesheets/fontawesome/all.scss */
.fa-zhihu:before {
  content: "\f63f";
}

/* line 4566, app/assets/stylesheets/fontawesome/all.scss */
.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/* line 4576, app/assets/stylesheets/fontawesome/all.scss */
.sr-only-focusable:active, .sr-only-focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

@font-face {
  font-family: 'Font Awesome 5 Brands';
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url(/assets/fontawesome/webfonts/fa-brands-400-53b75d467dcd047612f6a7f25b3c68bd845b551aedf1b397e0f09f99d887bd0c.eot);
  src: url(/assets/fontawesome/webfonts/fa-brands-400-53b75d467dcd047612f6a7f25b3c68bd845b551aedf1b397e0f09f99d887bd0c.eot?#iefix) format("embedded-opentype"), url(/assets/fontawesome/webfonts/fa-brands-400-12a387beb2f100bb320b09c518af672c7aadac8641901823571385403268ec18.woff2) format("woff2"), url(/assets/fontawesome/webfonts/fa-brands-400-7424d5bc8c3fa6f7e7962c5512305c907cf16c0d89c09468df2c591e1d2f82a7.woff) format("woff"), url(/assets/fontawesome/webfonts/fa-brands-400-82e5e53767e293a56080dd2d4e3db91764d85f002ea1706a99459d903ebf8f95.ttf) format("truetype"), url(/assets/fontawesome/webfonts/fa-brands-400-effd4e273b1d4c0a8f825e6e7593f0442651935fb12c0c4781bc54205a054d34.svg#fontawesome) format("svg");
}

/* line 4591, app/assets/stylesheets/fontawesome/all.scss */
.fab {
  font-family: 'Font Awesome 5 Brands';
  font-weight: 400;
}

@font-face {
  font-family: 'Font Awesome 5 Free';
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url(/assets/fontawesome/webfonts/fa-regular-400-4a9a9ccf3ccc2ce775695dcdab2e36f48a6db5876a7acf2c6bcb76912af65c87.eot);
  src: url(/assets/fontawesome/webfonts/fa-regular-400-4a9a9ccf3ccc2ce775695dcdab2e36f48a6db5876a7acf2c6bcb76912af65c87.eot?#iefix) format("embedded-opentype"), url(/assets/fontawesome/webfonts/fa-regular-400-6cfa156c0f937f0ce08c02e342067be2f4ba4db29abba244f90c27a223f96acc.woff2) format("woff2"), url(/assets/fontawesome/webfonts/fa-regular-400-5cc917c41d445fd002c151f518d442eff06969dd30c4d155b9ec3693f74677df.woff) format("woff"), url(/assets/fontawesome/webfonts/fa-regular-400-ca2fb9c9ed4e86200e0b14a4fe17772d353db275c0cd506a43f15c28146001e3.ttf) format("truetype"), url(/assets/fontawesome/webfonts/fa-regular-400-164fd2bef125a58606a240ecb88eaf01039045bac6615b3c58c6260a03b4411d.svg#fontawesome) format("svg");
}

/* line 4602, app/assets/stylesheets/fontawesome/all.scss */
.far {
  font-family: 'Font Awesome 5 Free';
  font-weight: 400;
}

@font-face {
  font-family: 'Font Awesome 5 Free';
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url(/assets/fontawesome/webfonts/fa-solid-900-9e3bdf4b406af9baa46bf60e1903449bb4314aeb868fcbae3e95de479633205e.eot);
  src: url(/assets/fontawesome/webfonts/fa-solid-900-9e3bdf4b406af9baa46bf60e1903449bb4314aeb868fcbae3e95de479633205e.eot?#iefix) format("embedded-opentype"), url(/assets/fontawesome/webfonts/fa-solid-900-3700f19f26d7519a6dad2354a996452064156d978bc0bcfc6f74555e6a881bf6.woff2) format("woff2"), url(/assets/fontawesome/webfonts/fa-solid-900-7be9c1dc2418c499534a48ee49c2d27f4fef5a5aee4f30f75b4c9ae2e6a9c6da.woff) format("woff"), url(/assets/fontawesome/webfonts/fa-solid-900-a12cebc5d1f2b9dd9d81bb7f2dfc989ce35868092ef46c1098afb09f257d4c2b.ttf) format("truetype"), url(/assets/fontawesome/webfonts/fa-solid-900-33e728329ea58ca0ddc5f1002bb9a744a02d5679b12103ca30373e687aed1698.svg#fontawesome) format("svg");
}

/* line 4613, app/assets/stylesheets/fontawesome/all.scss */
.fa,
.fas {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
}
/*
 * jQuery File Upload UI Plugin CSS
 * https://github.com/blueimp/jQuery-File-Upload
 *
 * Copyright 2010, Sebastian Tschan
 * https://blueimp.net
 *
 * Licensed under the MIT license:
 * http://www.opensource.org/licenses/MIT
 */
/* line 13, vendor/bundle/ruby/3.3.0/gems/jquery-fileupload-rails-0.4.6/app/assets/stylesheets/jquery.fileupload-ui.scss */
.fileupload-buttonbar .btn,
.fileupload-buttonbar .toggle {
  margin-bottom: 5px;
}

/* line 17, vendor/bundle/ruby/3.3.0/gems/jquery-fileupload-rails-0.4.6/app/assets/stylesheets/jquery.fileupload-ui.scss */
.progress-animated .progress-bar,
.progress-animated .bar {
  background: url(/assets/progressbar-91f3966a1d3b87010bc363341330c1200dd1f343ccbb87532a220df207022ba9.gif) !important;
  filter: none;
}

/* line 22, vendor/bundle/ruby/3.3.0/gems/jquery-fileupload-rails-0.4.6/app/assets/stylesheets/jquery.fileupload-ui.scss */
.fileupload-process {
  float: right;
  display: none;
}

/* line 26, vendor/bundle/ruby/3.3.0/gems/jquery-fileupload-rails-0.4.6/app/assets/stylesheets/jquery.fileupload-ui.scss */
.fileupload-processing .fileupload-process,
.files .processing .preview {
  display: block;
  width: 32px;
  height: 32px;
  background: url(/assets/loading-6f1c9a2c9e4932c71d86ded184887c41e4f8db70d5eecbca3b8a51a1c807adc3.gif) center no-repeat;
  background-size: contain;
}

/* line 34, vendor/bundle/ruby/3.3.0/gems/jquery-fileupload-rails-0.4.6/app/assets/stylesheets/jquery.fileupload-ui.scss */
.files audio,
.files video {
  max-width: 300px;
}

@media (max-width: 767px) {
  /* line 40, vendor/bundle/ruby/3.3.0/gems/jquery-fileupload-rails-0.4.6/app/assets/stylesheets/jquery.fileupload-ui.scss */
  .fileupload-buttonbar .toggle,
.files .toggle,
.files .btn span {
    display: none;
  }
  /* line 45, vendor/bundle/ruby/3.3.0/gems/jquery-fileupload-rails-0.4.6/app/assets/stylesheets/jquery.fileupload-ui.scss */
  .files .name {
    width: 80px;
    word-wrap: break-word;
  }
  /* line 49, vendor/bundle/ruby/3.3.0/gems/jquery-fileupload-rails-0.4.6/app/assets/stylesheets/jquery.fileupload-ui.scss */
  .files audio,
.files video {
    max-width: 80px;
  }
  /* line 53, vendor/bundle/ruby/3.3.0/gems/jquery-fileupload-rails-0.4.6/app/assets/stylesheets/jquery.fileupload-ui.scss */
  .files img,
.files canvas {
    max-width: 100%;
  }
}

/*
 * blueimp Gallery CSS 2.11.1
 * https://github.com/blueimp/Gallery
 *
 * Copyright 2013, Sebastian Tschan
 * https://blueimp.net
 *
 * Licensed under the MIT license:
 * http://www.opensource.org/licenses/MIT
 */

.blueimp-gallery,
.blueimp-gallery > .slides > .slide > .slide-content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  /* Prevent artifacts in Mozilla Firefox: */
  -moz-backface-visibility: hidden;
}
.blueimp-gallery > .slides > .slide > .slide-content {
  margin: auto;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  opacity: 1;
}
.blueimp-gallery {
  position: fixed;
  z-index: 999999;
  overflow: hidden;
  background: #000;
  background: rgba(0, 0, 0, 0.9);
  opacity: 0;
  display: none;
  direction: ltr;
  -ms-touch-action: none;
  touch-action: none;
}
.blueimp-gallery-carousel {
  position: relative;
  z-index: auto;
  margin: 1em auto;
  /* Set the carousel width/height ratio to 16/9: */
  padding-bottom: 56.25%;
  box-shadow: 0 0 10px #000;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}
.blueimp-gallery-display {
  display: block;
  opacity: 1;
}
.blueimp-gallery > .slides {
  position: relative;
  height: 100%;
  overflow: hidden;
}
.blueimp-gallery-carousel > .slides {
  position: absolute;
}
.blueimp-gallery > .slides > .slide {
  position: relative;
  float: left;
  height: 100%;
  text-align: center;
  -webkit-transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1.000); 
     -moz-transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1.000); 
      -ms-transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1.000); 
       -o-transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1.000); 
          transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1.000);
}
.blueimp-gallery,
.blueimp-gallery > .slides > .slide > .slide-content {
  -webkit-transition: opacity 0.5s linear;
     -moz-transition: opacity 0.5s linear;
      -ms-transition: opacity 0.5s linear;
       -o-transition: opacity 0.5s linear;
          transition: opacity 0.5s linear;
}
.blueimp-gallery > .slides > .slide-loading {
  background: url(/../img/loading.gif) center no-repeat;
  background-size: 64px 64px;
}
.blueimp-gallery > .slides > .slide-loading > .slide-content {
  opacity: 0;
}
.blueimp-gallery > .slides > .slide-error {
  background: url(/../img/error.png) center no-repeat;
}
.blueimp-gallery > .slides > .slide-error > .slide-content {
  display: none;
}
.blueimp-gallery > .prev,
.blueimp-gallery > .next {
  position: absolute;
  top: 50%;
  left: 15px;
  width: 40px;
  height: 40px;
  margin-top: -23px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 60px;
  font-weight: 100;
  line-height: 30px;
  color: #fff;
  text-decoration: none;
  text-shadow: 0 0 2px #000;
  text-align: center;
  background: #222;
  background: rgba(0, 0, 0, 0.5);
  -webkit-box-sizing: content-box;
     -moz-box-sizing: content-box;
          box-sizing: content-box;
  border: 3px solid #fff;
  -webkit-border-radius: 23px;
     -moz-border-radius: 23px;
          border-radius: 23px;
  opacity: 0.5;
  cursor: pointer;
  display: none;
}
.blueimp-gallery > .next {
  left: auto;
  right: 15px;
}
.blueimp-gallery > .close,
.blueimp-gallery > .title {
  position: absolute;
  top: 15px;
  left: 15px;
  margin: 0 40px 0 0;
  font-size: 20px;
  line-height: 30px;
  color: #fff;
  text-shadow: 0 0 2px #000;
  opacity: 0.8;
  display: none;
}
.blueimp-gallery > .close {
  padding: 15px;
  right: 15px;
  left: auto;
  margin: -15px;
  font-size: 30px;
  text-decoration: none;
  cursor: pointer;
}
.blueimp-gallery > .play-pause {
  position: absolute;
  right: 15px;
  bottom: 15px;
  width: 15px;
  height: 15px;
  background: url(/../img/play-pause.png) 0 0 no-repeat;
  cursor: pointer;
  opacity: 0.5;
  display: none;
}
.blueimp-gallery-playing > .play-pause {
  background-position: -15px 0;
}
.blueimp-gallery > .prev:hover,
.blueimp-gallery > .next:hover,
.blueimp-gallery > .close:hover,
.blueimp-gallery > .title:hover,
.blueimp-gallery > .play-pause:hover {
  color: #fff;
  opacity: 1;
}
.blueimp-gallery-controls > .prev,
.blueimp-gallery-controls > .next,
.blueimp-gallery-controls > .close,
.blueimp-gallery-controls > .title,
.blueimp-gallery-controls > .play-pause {
  display: block;
  /* Fix z-index issues (controls behind slide element) on Android: */
  -webkit-transform: translateZ(0);
     -moz-transform: translateZ(0);
      -ms-transform: translateZ(0);
       -o-transform: translateZ(0);
          transform: translateZ(0);
}
.blueimp-gallery-single > .prev,
.blueimp-gallery-left > .prev,
.blueimp-gallery-single > .next,
.blueimp-gallery-right > .next,
.blueimp-gallery-single > .play-pause {
  display: none;
}
.blueimp-gallery > .slides > .slide > .slide-content,
.blueimp-gallery > .prev,
.blueimp-gallery > .next,
.blueimp-gallery > .close,
.blueimp-gallery > .play-pause {
  -webkit-user-select: none;
   -khtml-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

/* Replace PNGs with SVGs for capable browsers (excluding IE<9) */
body:last-child .blueimp-gallery > .slides > .slide-error {
  background-image: url(/../img/error.svg);
}
body:last-child .blueimp-gallery > .play-pause {
  width: 20px;
  height: 20px;
  background-size: 40px 20px;
  background-image: url(/../img/play-pause.svg);
}
body:last-child .blueimp-gallery-playing > .play-pause {
  background-position: -20px 0;
}

/* IE7 fixes */
*+html .blueimp-gallery > .slides > .slide {
  min-height: 300px;
}
*+html .blueimp-gallery > .slides > .slide > .slide-content {
  position: relative;
}
@charset "UTF-8";
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
 * or vendor/assets/stylesheets of plugins, if any, can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the top of the
 * compiled file, but it's generally better to create a new file per style scope.
 *




 * require jquery.ui.theme







 * require dataTables/jquery.dataTables.bootstrap3










 */
/*!
 * 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 */
/* line 9, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

/* line 19, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body {
  margin: 0;
}

/* line 33, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/* line 54, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

/* line 67, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
audio:not([controls]) {
  display: none;
  height: 0;
}

/* line 77, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
[hidden],
template {
  display: none;
}

/* line 89, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
a {
  background-color: transparent;
}

/* line 98, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
a:active,
a:hover {
  outline: 0;
}

/* line 111, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}

/* line 121, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
b,
strong {
  font-weight: bold;
}

/* line 130, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
dfn {
  font-style: italic;
}

/* line 139, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* line 148, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
mark {
  background: #ff0;
  color: #000;
}

/* line 157, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
small {
  font-size: 80%;
}

/* line 165, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

/* line 173, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
sup {
  top: -0.5em;
}

/* line 177, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
sub {
  bottom: -0.25em;
}

/* line 188, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
img {
  border: 0;
}

/* line 196, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
svg:not(:root) {
  overflow: hidden;
}

/* line 207, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
figure {
  margin: 1em 40px;
}

/* line 215, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
hr {
  box-sizing: content-box;
  height: 0;
}

/* line 224, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
pre {
  overflow: auto;
}

/* line 232, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* line 255, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

/* line 269, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
button {
  overflow: visible;
}

/* line 280, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
button,
select {
  text-transform: none;
}

/* line 293, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

/* line 305, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
button[disabled],
html input[disabled] {
  cursor: default;
}

/* line 314, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/* line 325, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
input {
  line-height: normal;
}

/* line 337, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

/* line 349, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/* line 359, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
input[type="search"] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
}

/* line 370, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/* line 379, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/* line 390, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
legend {
  border: 0;
  padding: 0;
}

/* line 399, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
textarea {
  overflow: auto;
}

/* line 408, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
optgroup {
  font-weight: bold;
}

/* line 419, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* line 424, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
td,
th {
  padding: 0;
}

/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
@media print {
  /* line 9, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_print.scss */
  *,
*:before,
*:after {
    color: #000 !important;
    text-shadow: none !important;
    background: transparent !important;
    box-shadow: none !important;
  }
  /* line 18, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_print.scss */
  a,
a:visited {
    text-decoration: underline;
  }
  /* line 23, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_print.scss */
  a[href]:after {
    content: " (" attr(href) ")";
  }
  /* line 27, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_print.scss */
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  /* line 33, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_print.scss */
  a[href^="#"]:after,
a[href^="javascript:"]:after {
    content: "";
  }
  /* line 38, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_print.scss */
  pre,
blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  /* line 44, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_print.scss */
  thead {
    display: table-header-group;
  }
  /* line 48, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_print.scss */
  tr,
img {
    page-break-inside: avoid;
  }
  /* line 53, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_print.scss */
  img {
    max-width: 100% !important;
  }
  /* line 57, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_print.scss */
  p,
h2,
h3 {
    orphans: 3;
    widows: 3;
  }
  /* line 64, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_print.scss */
  h2,
h3 {
    page-break-after: avoid;
  }
  /* line 72, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_print.scss */
  .navbar {
    display: none;
  }
  /* line 77, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_print.scss */
  .btn > .caret,
.dropup > .btn > .caret {
    border-top-color: #000 !important;
  }
  /* line 81, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_print.scss */
  .label {
    border: 1px solid #000;
  }
  /* line 85, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_print.scss */
  .table {
    border-collapse: collapse !important;
  }
  /* line 88, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_print.scss */
  .table td,
.table th {
    background-color: #fff !important;
  }
  /* line 94, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_print.scss */
  .table-bordered th,
.table-bordered td {
    border: 1px solid #ddd !important;
  }
}

@font-face {
  font-family: "Glyphicons Halflings";
  src: url(/assets/bootstrap/glyphicons-halflings-regular-0805fb1fe24235f70a639f67514990e4bfb6d2cfb00ca563ad4b553c240ddc33.eot);
  src: url(/assets/bootstrap/glyphicons-halflings-regular-0805fb1fe24235f70a639f67514990e4bfb6d2cfb00ca563ad4b553c240ddc33.eot?#iefix) format("embedded-opentype"), url(/assets/bootstrap/glyphicons-halflings-regular-403acfcf0cbaebd1c28b404eec442cea53642644b3a73f91c5a4ab46859af772.woff2) format("woff2"), url(/assets/bootstrap/glyphicons-halflings-regular-0703369a358a012c0011843ae337a8a20270c336948a8668df5cb89a8827299b.woff) format("woff"), url(/assets/bootstrap/glyphicons-halflings-regular-7c9caa5f4e16169b0129fdf93c84e85ad14d6c107eb1b0ad60b542daf01ee1f0.ttf) format("truetype"), url(/assets/bootstrap/glyphicons-halflings-regular-22d0c88a49d7d0ebe45627143a601061a32a46a9b9afd2dc7f457436f5f15f6e.svg#glyphicons_halflingsregular) format("svg");
}

/* line 24, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.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;
}

/* line 37, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-asterisk:before {
  content: "\002a";
}

/* line 38, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-plus:before {
  content: "\002b";
}

/* line 40, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-euro:before,
.glyphicon-eur:before {
  content: "\20ac";
}

/* line 41, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-minus:before {
  content: "\2212";
}

/* line 42, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-cloud:before {
  content: "\2601";
}

/* line 43, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-envelope:before {
  content: "\2709";
}

/* line 44, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-pencil:before {
  content: "\270f";
}

/* line 45, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-glass:before {
  content: "\e001";
}

/* line 46, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-music:before {
  content: "\e002";
}

/* line 47, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-search:before {
  content: "\e003";
}

/* line 48, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-heart:before {
  content: "\e005";
}

/* line 49, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-star:before {
  content: "\e006";
}

/* line 50, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-star-empty:before {
  content: "\e007";
}

/* line 51, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-user:before {
  content: "\e008";
}

/* line 52, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-film:before {
  content: "\e009";
}

/* line 53, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-th-large:before {
  content: "\e010";
}

/* line 54, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-th:before {
  content: "\e011";
}

/* line 55, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-th-list:before {
  content: "\e012";
}

/* line 56, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-ok:before {
  content: "\e013";
}

/* line 57, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-remove:before {
  content: "\e014";
}

/* line 58, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-zoom-in:before {
  content: "\e015";
}

/* line 59, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-zoom-out:before {
  content: "\e016";
}

/* line 60, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-off:before {
  content: "\e017";
}

/* line 61, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-signal:before {
  content: "\e018";
}

/* line 62, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-cog:before {
  content: "\e019";
}

/* line 63, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-trash:before {
  content: "\e020";
}

/* line 64, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-home:before {
  content: "\e021";
}

/* line 65, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-file:before {
  content: "\e022";
}

/* line 66, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-time:before {
  content: "\e023";
}

/* line 67, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-road:before {
  content: "\e024";
}

/* line 68, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-download-alt:before {
  content: "\e025";
}

/* line 69, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-download:before {
  content: "\e026";
}

/* line 70, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-upload:before {
  content: "\e027";
}

/* line 71, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-inbox:before {
  content: "\e028";
}

/* line 72, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-play-circle:before {
  content: "\e029";
}

/* line 73, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-repeat:before {
  content: "\e030";
}

/* line 74, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-refresh:before {
  content: "\e031";
}

/* line 75, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-list-alt:before {
  content: "\e032";
}

/* line 76, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-lock:before {
  content: "\e033";
}

/* line 77, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-flag:before {
  content: "\e034";
}

/* line 78, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-headphones:before {
  content: "\e035";
}

/* line 79, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-volume-off:before {
  content: "\e036";
}

/* line 80, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-volume-down:before {
  content: "\e037";
}

/* line 81, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-volume-up:before {
  content: "\e038";
}

/* line 82, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-qrcode:before {
  content: "\e039";
}

/* line 83, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-barcode:before {
  content: "\e040";
}

/* line 84, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-tag:before {
  content: "\e041";
}

/* line 85, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-tags:before {
  content: "\e042";
}

/* line 86, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-book:before {
  content: "\e043";
}

/* line 87, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-bookmark:before {
  content: "\e044";
}

/* line 88, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-print:before {
  content: "\e045";
}

/* line 89, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-camera:before {
  content: "\e046";
}

/* line 90, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-font:before {
  content: "\e047";
}

/* line 91, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-bold:before {
  content: "\e048";
}

/* line 92, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-italic:before {
  content: "\e049";
}

/* line 93, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-text-height:before {
  content: "\e050";
}

/* line 94, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-text-width:before {
  content: "\e051";
}

/* line 95, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-align-left:before {
  content: "\e052";
}

/* line 96, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-align-center:before {
  content: "\e053";
}

/* line 97, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-align-right:before {
  content: "\e054";
}

/* line 98, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-align-justify:before {
  content: "\e055";
}

/* line 99, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-list:before {
  content: "\e056";
}

/* line 100, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-indent-left:before {
  content: "\e057";
}

/* line 101, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-indent-right:before {
  content: "\e058";
}

/* line 102, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-facetime-video:before {
  content: "\e059";
}

/* line 103, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-picture:before {
  content: "\e060";
}

/* line 104, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-map-marker:before {
  content: "\e062";
}

/* line 105, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-adjust:before {
  content: "\e063";
}

/* line 106, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-tint:before {
  content: "\e064";
}

/* line 107, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-edit:before {
  content: "\e065";
}

/* line 108, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-share:before {
  content: "\e066";
}

/* line 109, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-check:before {
  content: "\e067";
}

/* line 110, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-move:before {
  content: "\e068";
}

/* line 111, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-step-backward:before {
  content: "\e069";
}

/* line 112, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-fast-backward:before {
  content: "\e070";
}

/* line 113, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-backward:before {
  content: "\e071";
}

/* line 114, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-play:before {
  content: "\e072";
}

/* line 115, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-pause:before {
  content: "\e073";
}

/* line 116, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-stop:before {
  content: "\e074";
}

/* line 117, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-forward:before {
  content: "\e075";
}

/* line 118, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-fast-forward:before {
  content: "\e076";
}

/* line 119, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-step-forward:before {
  content: "\e077";
}

/* line 120, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-eject:before {
  content: "\e078";
}

/* line 121, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-chevron-left:before {
  content: "\e079";
}

/* line 122, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-chevron-right:before {
  content: "\e080";
}

/* line 123, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-plus-sign:before {
  content: "\e081";
}

/* line 124, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-minus-sign:before {
  content: "\e082";
}

/* line 125, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-remove-sign:before {
  content: "\e083";
}

/* line 126, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-ok-sign:before {
  content: "\e084";
}

/* line 127, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-question-sign:before {
  content: "\e085";
}

/* line 128, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-info-sign:before {
  content: "\e086";
}

/* line 129, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-screenshot:before {
  content: "\e087";
}

/* line 130, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-remove-circle:before {
  content: "\e088";
}

/* line 131, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-ok-circle:before {
  content: "\e089";
}

/* line 132, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-ban-circle:before {
  content: "\e090";
}

/* line 133, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-arrow-left:before {
  content: "\e091";
}

/* line 134, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-arrow-right:before {
  content: "\e092";
}

/* line 135, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-arrow-up:before {
  content: "\e093";
}

/* line 136, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-arrow-down:before {
  content: "\e094";
}

/* line 137, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-share-alt:before {
  content: "\e095";
}

/* line 138, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-resize-full:before {
  content: "\e096";
}

/* line 139, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-resize-small:before {
  content: "\e097";
}

/* line 140, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-exclamation-sign:before {
  content: "\e101";
}

/* line 141, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-gift:before {
  content: "\e102";
}

/* line 142, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-leaf:before {
  content: "\e103";
}

/* line 143, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-fire:before {
  content: "\e104";
}

/* line 144, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-eye-open:before {
  content: "\e105";
}

/* line 145, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-eye-close:before {
  content: "\e106";
}

/* line 146, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-warning-sign:before {
  content: "\e107";
}

/* line 147, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-plane:before {
  content: "\e108";
}

/* line 148, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-calendar:before {
  content: "\e109";
}

/* line 149, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-random:before {
  content: "\e110";
}

/* line 150, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-comment:before {
  content: "\e111";
}

/* line 151, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-magnet:before {
  content: "\e112";
}

/* line 152, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-chevron-up:before {
  content: "\e113";
}

/* line 153, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-chevron-down:before {
  content: "\e114";
}

/* line 154, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-retweet:before {
  content: "\e115";
}

/* line 155, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-shopping-cart:before {
  content: "\e116";
}

/* line 156, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-folder-close:before {
  content: "\e117";
}

/* line 157, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-folder-open:before {
  content: "\e118";
}

/* line 158, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-resize-vertical:before {
  content: "\e119";
}

/* line 159, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-resize-horizontal:before {
  content: "\e120";
}

/* line 160, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-hdd:before {
  content: "\e121";
}

/* line 161, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-bullhorn:before {
  content: "\e122";
}

/* line 162, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-bell:before {
  content: "\e123";
}

/* line 163, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-certificate:before {
  content: "\e124";
}

/* line 164, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-thumbs-up:before {
  content: "\e125";
}

/* line 165, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-thumbs-down:before {
  content: "\e126";
}

/* line 166, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-hand-right:before {
  content: "\e127";
}

/* line 167, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-hand-left:before {
  content: "\e128";
}

/* line 168, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-hand-up:before {
  content: "\e129";
}

/* line 169, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-hand-down:before {
  content: "\e130";
}

/* line 170, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-circle-arrow-right:before {
  content: "\e131";
}

/* line 171, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-circle-arrow-left:before {
  content: "\e132";
}

/* line 172, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-circle-arrow-up:before {
  content: "\e133";
}

/* line 173, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-circle-arrow-down:before {
  content: "\e134";
}

/* line 174, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-globe:before {
  content: "\e135";
}

/* line 175, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-wrench:before {
  content: "\e136";
}

/* line 176, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-tasks:before {
  content: "\e137";
}

/* line 177, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-filter:before {
  content: "\e138";
}

/* line 178, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-briefcase:before {
  content: "\e139";
}

/* line 179, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-fullscreen:before {
  content: "\e140";
}

/* line 180, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-dashboard:before {
  content: "\e141";
}

/* line 181, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-paperclip:before {
  content: "\e142";
}

/* line 182, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-heart-empty:before {
  content: "\e143";
}

/* line 183, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-link:before {
  content: "\e144";
}

/* line 184, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-phone:before {
  content: "\e145";
}

/* line 185, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-pushpin:before {
  content: "\e146";
}

/* line 186, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-usd:before {
  content: "\e148";
}

/* line 187, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-gbp:before {
  content: "\e149";
}

/* line 188, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-sort:before {
  content: "\e150";
}

/* line 189, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-sort-by-alphabet:before {
  content: "\e151";
}

/* line 190, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-sort-by-alphabet-alt:before {
  content: "\e152";
}

/* line 191, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-sort-by-order:before {
  content: "\e153";
}

/* line 192, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-sort-by-order-alt:before {
  content: "\e154";
}

/* line 193, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-sort-by-attributes:before {
  content: "\e155";
}

/* line 194, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-sort-by-attributes-alt:before {
  content: "\e156";
}

/* line 195, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-unchecked:before {
  content: "\e157";
}

/* line 196, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-expand:before {
  content: "\e158";
}

/* line 197, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-collapse-down:before {
  content: "\e159";
}

/* line 198, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-collapse-up:before {
  content: "\e160";
}

/* line 199, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-log-in:before {
  content: "\e161";
}

/* line 200, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-flash:before {
  content: "\e162";
}

/* line 201, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-log-out:before {
  content: "\e163";
}

/* line 202, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-new-window:before {
  content: "\e164";
}

/* line 203, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-record:before {
  content: "\e165";
}

/* line 204, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-save:before {
  content: "\e166";
}

/* line 205, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-open:before {
  content: "\e167";
}

/* line 206, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-saved:before {
  content: "\e168";
}

/* line 207, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-import:before {
  content: "\e169";
}

/* line 208, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-export:before {
  content: "\e170";
}

/* line 209, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-send:before {
  content: "\e171";
}

/* line 210, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-floppy-disk:before {
  content: "\e172";
}

/* line 211, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-floppy-saved:before {
  content: "\e173";
}

/* line 212, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-floppy-remove:before {
  content: "\e174";
}

/* line 213, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-floppy-save:before {
  content: "\e175";
}

/* line 214, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-floppy-open:before {
  content: "\e176";
}

/* line 215, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-credit-card:before {
  content: "\e177";
}

/* line 216, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-transfer:before {
  content: "\e178";
}

/* line 217, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-cutlery:before {
  content: "\e179";
}

/* line 218, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-header:before {
  content: "\e180";
}

/* line 219, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-compressed:before {
  content: "\e181";
}

/* line 220, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-earphone:before {
  content: "\e182";
}

/* line 221, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-phone-alt:before {
  content: "\e183";
}

/* line 222, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-tower:before {
  content: "\e184";
}

/* line 223, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-stats:before {
  content: "\e185";
}

/* line 224, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-sd-video:before {
  content: "\e186";
}

/* line 225, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-hd-video:before {
  content: "\e187";
}

/* line 226, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-subtitles:before {
  content: "\e188";
}

/* line 227, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-sound-stereo:before {
  content: "\e189";
}

/* line 228, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-sound-dolby:before {
  content: "\e190";
}

/* line 229, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-sound-5-1:before {
  content: "\e191";
}

/* line 230, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-sound-6-1:before {
  content: "\e192";
}

/* line 231, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-sound-7-1:before {
  content: "\e193";
}

/* line 232, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-copyright-mark:before {
  content: "\e194";
}

/* line 233, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-registration-mark:before {
  content: "\e195";
}

/* line 234, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-cloud-download:before {
  content: "\e197";
}

/* line 235, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-cloud-upload:before {
  content: "\e198";
}

/* line 236, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-tree-conifer:before {
  content: "\e199";
}

/* line 237, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-tree-deciduous:before {
  content: "\e200";
}

/* line 238, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-cd:before {
  content: "\e201";
}

/* line 239, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-save-file:before {
  content: "\e202";
}

/* line 240, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-open-file:before {
  content: "\e203";
}

/* line 241, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-level-up:before {
  content: "\e204";
}

/* line 242, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-copy:before {
  content: "\e205";
}

/* line 243, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-paste:before {
  content: "\e206";
}

/* line 252, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-alert:before {
  content: "\e209";
}

/* line 253, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-equalizer:before {
  content: "\e210";
}

/* line 254, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-king:before {
  content: "\e211";
}

/* line 255, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-queen:before {
  content: "\e212";
}

/* line 256, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-pawn:before {
  content: "\e213";
}

/* line 257, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-bishop:before {
  content: "\e214";
}

/* line 258, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-knight:before {
  content: "\e215";
}

/* line 259, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-baby-formula:before {
  content: "\e216";
}

/* line 260, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-tent:before {
  content: "\26fa";
}

/* line 261, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-blackboard:before {
  content: "\e218";
}

/* line 262, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-bed:before {
  content: "\e219";
}

/* line 263, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-apple:before {
  content: "\f8ff";
}

/* line 264, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-erase:before {
  content: "\e221";
}

/* line 265, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-hourglass:before {
  content: "\231b";
}

/* line 266, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-lamp:before {
  content: "\e223";
}

/* line 267, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-duplicate:before {
  content: "\e224";
}

/* line 268, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-piggy-bank:before {
  content: "\e225";
}

/* line 269, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-scissors:before {
  content: "\e226";
}

/* line 270, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-bitcoin:before {
  content: "\e227";
}

/* line 271, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-btc:before {
  content: "\e227";
}

/* line 272, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-xbt:before {
  content: "\e227";
}

/* line 273, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-yen:before {
  content: "\00a5";
}

/* line 274, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-jpy:before {
  content: "\00a5";
}

/* line 275, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-ruble:before {
  content: "\20bd";
}

/* line 276, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-rub:before {
  content: "\20bd";
}

/* line 277, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-scale:before {
  content: "\e230";
}

/* line 278, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-ice-lolly:before {
  content: "\e231";
}

/* line 279, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-ice-lolly-tasted:before {
  content: "\e232";
}

/* line 280, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-education:before {
  content: "\e233";
}

/* line 281, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-option-horizontal:before {
  content: "\e234";
}

/* line 282, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-option-vertical:before {
  content: "\e235";
}

/* line 283, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-menu-hamburger:before {
  content: "\e236";
}

/* line 284, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-modal-window:before {
  content: "\e237";
}

/* line 285, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-oil:before {
  content: "\e238";
}

/* line 286, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-grain:before {
  content: "\e239";
}

/* line 287, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-sunglasses:before {
  content: "\e240";
}

/* line 288, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-text-size:before {
  content: "\e241";
}

/* line 289, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-text-color:before {
  content: "\e242";
}

/* line 290, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-text-background:before {
  content: "\e243";
}

/* line 291, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-object-align-top:before {
  content: "\e244";
}

/* line 292, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-object-align-bottom:before {
  content: "\e245";
}

/* line 293, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-object-align-horizontal:before {
  content: "\e246";
}

/* line 294, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-object-align-left:before {
  content: "\e247";
}

/* line 295, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-object-align-vertical:before {
  content: "\e248";
}

/* line 296, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-object-align-right:before {
  content: "\e249";
}

/* line 297, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-triangle-right:before {
  content: "\e250";
}

/* line 298, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-triangle-left:before {
  content: "\e251";
}

/* line 299, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-triangle-bottom:before {
  content: "\e252";
}

/* line 300, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-triangle-top:before {
  content: "\e253";
}

/* line 301, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-console:before {
  content: "\e254";
}

/* line 302, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-superscript:before {
  content: "\e255";
}

/* line 303, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-subscript:before {
  content: "\e256";
}

/* line 304, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-menu-left:before {
  content: "\e257";
}

/* line 305, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-menu-right:before {
  content: "\e258";
}

/* line 306, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-menu-down:before {
  content: "\e259";
}

/* line 307, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon-menu-up:before {
  content: "\e260";
}

/* line 11, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_scaffolding.scss */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 14, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_scaffolding.scss */
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 22, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_scaffolding.scss */
html {
  font-size: 10px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* line 27, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_scaffolding.scss */
body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.428571429;
  color: #333333;
  background-color: #fff;
}

/* line 36, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_scaffolding.scss */
input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

/* line 48, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_scaffolding.scss */
a {
  color: #337ab7;
  text-decoration: none;
}

/* line 52, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_scaffolding.scss */
a:hover, a:focus {
  color: #23527c;
  text-decoration: underline;
}

/* line 58, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_scaffolding.scss */
a:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

/* line 69, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_scaffolding.scss */
figure {
  margin: 0;
}

/* line 76, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_scaffolding.scss */
img {
  vertical-align: middle;
}

/* line 81, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_scaffolding.scss */
.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}

/* line 86, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_scaffolding.scss */
.img-rounded {
  border-radius: 6px;
}

/* line 93, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_scaffolding.scss */
.img-thumbnail {
  padding: 4px;
  line-height: 1.428571429;
  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;
}

/* line 106, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_scaffolding.scss */
.img-circle {
  border-radius: 50%;
}

/* line 113, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_scaffolding.scss */
hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #eeeeee;
}

/* line 125, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_scaffolding.scss */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* line 141, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_scaffolding.scss */
.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

/* line 159, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_scaffolding.scss */
[role="button"] {
  cursor: pointer;
}

/* line 9, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  color: inherit;
}

/* line 16, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
h1 small,
h1 .small, h2 small,
h2 .small, h3 small,
h3 .small, h4 small,
h4 .small, h5 small,
h5 .small, h6 small,
h6 .small,
.h1 small,
.h1 .small, .h2 small,
.h2 .small, .h3 small,
.h3 .small, .h4 small,
.h4 .small, .h5 small,
.h5 .small, .h6 small,
.h6 .small {
  font-weight: 400;
  line-height: 1;
  color: #777777;
}

/* line 24, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
h1, .h1,
h2, .h2,
h3, .h3 {
  margin-top: 20px;
  margin-bottom: 10px;
}

/* line 30, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
h1 small,
h1 .small, .h1 small,
.h1 .small,
h2 small,
h2 .small, .h2 small,
.h2 .small,
h3 small,
h3 .small, .h3 small,
.h3 .small {
  font-size: 65%;
}

/* line 35, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
h4, .h4,
h5, .h5,
h6, .h6 {
  margin-top: 10px;
  margin-bottom: 10px;
}

/* line 41, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
h4 small,
h4 .small, .h4 small,
.h4 .small,
h5 small,
h5 .small, .h5 small,
.h5 .small,
h6 small,
h6 .small, .h6 small,
.h6 .small {
  font-size: 75%;
}

/* line 47, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
h1, .h1 {
  font-size: 36px;
}

/* line 48, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
h2, .h2 {
  font-size: 30px;
}

/* line 49, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
h3, .h3 {
  font-size: 24px;
}

/* line 50, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
h4, .h4 {
  font-size: 18px;
}

/* line 51, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
h5, .h5 {
  font-size: 14px;
}

/* line 52, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
h6, .h6 {
  font-size: 12px;
}

/* line 58, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
p {
  margin: 0 0 10px;
}

/* line 62, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
.lead {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
}

@media (min-width: 768px) {
  /* line 62, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
  .lead {
    font-size: 21px;
  }
}

/* line 78, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
small,
.small {
  font-size: 85%;
}

/* line 83, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
mark,
.mark {
  padding: .2em;
  background-color: #fcf8e3;
}

/* line 90, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
.text-left {
  text-align: left;
}

/* line 91, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
.text-right {
  text-align: right;
}

/* line 92, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
.text-center {
  text-align: center;
}

/* line 93, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
.text-justify {
  text-align: justify;
}

/* line 94, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
.text-nowrap {
  white-space: nowrap;
}

/* line 97, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
.text-lowercase {
  text-transform: lowercase;
}

/* line 98, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
.text-uppercase, .initialism {
  text-transform: uppercase;
}

/* line 99, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
.text-capitalize {
  text-transform: capitalize;
}

/* line 102, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
.text-muted {
  color: #777777;
}

/* line 5, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
.text-primary {
  color: #337ab7;
}

/* line 8, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
a.text-primary:hover,
a.text-primary:focus {
  color: #286090;
}

/* line 5, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
.text-success {
  color: #3c763d;
}

/* line 8, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
a.text-success:hover,
a.text-success:focus {
  color: #2b542c;
}

/* line 5, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
.text-info {
  color: #31708f;
}

/* line 8, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
a.text-info:hover,
a.text-info:focus {
  color: #245269;
}

/* line 5, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
.text-warning {
  color: #8a6d3b;
}

/* line 8, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
a.text-warning:hover,
a.text-warning:focus {
  color: #66512c;
}

/* line 5, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
.text-danger {
  color: #a94442;
}

/* line 8, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
a.text-danger:hover,
a.text-danger:focus {
  color: #843534;
}

/* line 119, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
.bg-primary {
  color: #fff;
}

/* line 5, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
.bg-primary {
  background-color: #337ab7;
}

/* line 8, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
a.bg-primary:hover,
a.bg-primary:focus {
  background-color: #286090;
}

/* line 5, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
.bg-success {
  background-color: #dff0d8;
}

/* line 8, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
a.bg-success:hover,
a.bg-success:focus {
  background-color: #c1e2b3;
}

/* line 5, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
.bg-info {
  background-color: #d9edf7;
}

/* line 8, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
a.bg-info:hover,
a.bg-info:focus {
  background-color: #afd9ee;
}

/* line 5, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
.bg-warning {
  background-color: #fcf8e3;
}

/* line 8, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
a.bg-warning:hover,
a.bg-warning:focus {
  background-color: #f7ecb5;
}

/* line 5, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
.bg-danger {
  background-color: #f2dede;
}

/* line 8, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
a.bg-danger:hover,
a.bg-danger:focus {
  background-color: #e4b9b9;
}

/* line 138, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
.page-header {
  padding-bottom: 9px;
  margin: 40px 0 20px;
  border-bottom: 1px solid #eeeeee;
}

/* line 149, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
ul,
ol {
  margin-top: 0;
  margin-bottom: 10px;
}

/* line 153, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
ul ul,
ul ol,
ol ul,
ol ol {
  margin-bottom: 0;
}

/* line 167, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
.list-unstyled {
  padding-left: 0;
  list-style: none;
}

/* line 173, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
.list-inline {
  padding-left: 0;
  list-style: none;
  margin-left: -5px;
}

/* line 177, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
.list-inline > li {
  display: inline-block;
  padding-right: 5px;
  padding-left: 5px;
}

/* line 185, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
dl {
  margin-top: 0;
  margin-bottom: 20px;
}

/* line 189, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
dt,
dd {
  line-height: 1.428571429;
}

/* line 193, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
dt {
  font-weight: 700;
}

/* line 196, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
dd {
  margin-left: 0;
}

/* line 14, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.dl-horizontal dd:before, .dl-horizontal dd:after {
  display: table;
  content: " ";
}

/* line 19, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.dl-horizontal dd:after {
  clear: both;
}

@media (min-width: 768px) {
  /* line 211, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
  .dl-horizontal dt {
    float: left;
    width: 160px;
    clear: left;
    text-align: right;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  /* line 218, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
  .dl-horizontal dd {
    margin-left: 180px;
  }
}

/* line 230, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
abbr[title],
abbr[data-original-title] {
  cursor: help;
}

/* line 235, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
.initialism {
  font-size: 90%;
}

/* line 241, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
blockquote {
  padding: 10px 20px;
  margin: 0 0 20px;
  font-size: 17.5px;
  border-left: 5px solid #eeeeee;
}

/* line 250, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
blockquote p:last-child,
blockquote ul:last-child,
blockquote ol:last-child {
  margin-bottom: 0;
}

/* line 257, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
blockquote footer,
blockquote small,
blockquote .small {
  display: block;
  font-size: 80%;
  line-height: 1.428571429;
  color: #777777;
}

/* line 265, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
blockquote footer:before,
blockquote small:before,
blockquote .small:before {
  content: "\2014 \00A0";
}

/* line 274, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
.blockquote-reverse,
blockquote.pull-right {
  padding-right: 15px;
  padding-left: 0;
  text-align: right;
  border-right: 5px solid #eeeeee;
  border-left: 0;
}

/* line 286, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
.blockquote-reverse footer:before,
.blockquote-reverse small:before,
.blockquote-reverse .small:before,
blockquote.pull-right footer:before,
blockquote.pull-right small:before,
blockquote.pull-right .small:before {
  content: "";
}

/* line 287, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
.blockquote-reverse footer:after,
.blockquote-reverse small:after,
.blockquote-reverse .small:after,
blockquote.pull-right footer:after,
blockquote.pull-right small:after,
blockquote.pull-right .small:after {
  content: "\00A0 \2014";
}

/* line 294, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
address {
  margin-bottom: 20px;
  font-style: normal;
  line-height: 1.428571429;
}

/* line 7, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_code.scss */
code,
kbd,
pre,
samp {
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
}

/* line 15, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_code.scss */
code {
  padding: 2px 4px;
  font-size: 90%;
  color: #c7254e;
  background-color: #f9f2f4;
  border-radius: 4px;
}

/* line 24, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_code.scss */
kbd {
  padding: 2px 4px;
  font-size: 90%;
  color: #fff;
  background-color: #333;
  border-radius: 3px;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
}

/* line 32, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_code.scss */
kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: 700;
  box-shadow: none;
}

/* line 41, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_code.scss */
pre {
  display: block;
  padding: 9.5px;
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.428571429;
  color: #333333;
  word-break: break-all;
  word-wrap: break-word;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* line 55, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_code.scss */
pre code {
  padding: 0;
  font-size: inherit;
  color: inherit;
  white-space: pre-wrap;
  background-color: transparent;
  border-radius: 0;
}

/* line 66, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_code.scss */
.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}

/* line 10, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_grid.scss */
.container {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

/* line 14, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.container:before, .container:after {
  display: table;
  content: " ";
}

/* line 19, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.container:after {
  clear: both;
}

@media (min-width: 768px) {
  /* line 10, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_grid.scss */
  .container {
    width: 750px;
  }
}

@media (min-width: 992px) {
  /* line 10, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_grid.scss */
  .container {
    width: 970px;
  }
}

@media (min-width: 1200px) {
  /* line 10, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_grid.scss */
  .container {
    width: 1170px;
  }
}

/* line 30, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_grid.scss */
.container-fluid {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

/* line 14, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.container-fluid:before, .container-fluid:after {
  display: table;
  content: " ";
}

/* line 19, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.container-fluid:after {
  clear: both;
}

/* line 39, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_grid.scss */
.row {
  margin-right: -15px;
  margin-left: -15px;
}

/* line 14, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.row:before, .row:after {
  display: table;
  content: " ";
}

/* line 19, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.row:after {
  clear: both;
}

/* line 43, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_grid.scss */
.row-no-gutters {
  margin-right: 0;
  margin-left: 0;
}

/* line 47, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_grid.scss */
.row-no-gutters [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}

/* line 11, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.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;
}

/* line 27, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.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;
}

/* line 35, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-1 {
  width: 8.3333333333%;
}

/* line 35, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-2 {
  width: 16.6666666667%;
}

/* line 35, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-3 {
  width: 25%;
}

/* line 35, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-4 {
  width: 33.3333333333%;
}

/* line 35, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-5 {
  width: 41.6666666667%;
}

/* line 35, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-6 {
  width: 50%;
}

/* line 35, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-7 {
  width: 58.3333333333%;
}

/* line 35, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-8 {
  width: 66.6666666667%;
}

/* line 35, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-9 {
  width: 75%;
}

/* line 35, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-10 {
  width: 83.3333333333%;
}

/* line 35, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-11 {
  width: 91.6666666667%;
}

/* line 35, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-12 {
  width: 100%;
}

/* line 55, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-0 {
  right: auto;
}

/* line 50, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-1 {
  right: 8.3333333333%;
}

/* line 50, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-2 {
  right: 16.6666666667%;
}

/* line 50, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-3 {
  right: 25%;
}

/* line 50, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-4 {
  right: 33.3333333333%;
}

/* line 50, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-5 {
  right: 41.6666666667%;
}

/* line 50, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-6 {
  right: 50%;
}

/* line 50, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-7 {
  right: 58.3333333333%;
}

/* line 50, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-8 {
  right: 66.6666666667%;
}

/* line 50, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-9 {
  right: 75%;
}

/* line 50, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-10 {
  right: 83.3333333333%;
}

/* line 50, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-11 {
  right: 91.6666666667%;
}

/* line 50, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-12 {
  right: 100%;
}

/* line 45, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-0 {
  left: auto;
}

/* line 40, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-1 {
  left: 8.3333333333%;
}

/* line 40, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-2 {
  left: 16.6666666667%;
}

/* line 40, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-3 {
  left: 25%;
}

/* line 40, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-4 {
  left: 33.3333333333%;
}

/* line 40, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-5 {
  left: 41.6666666667%;
}

/* line 40, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-6 {
  left: 50%;
}

/* line 40, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-7 {
  left: 58.3333333333%;
}

/* line 40, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-8 {
  left: 66.6666666667%;
}

/* line 40, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-9 {
  left: 75%;
}

/* line 40, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-10 {
  left: 83.3333333333%;
}

/* line 40, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-11 {
  left: 91.6666666667%;
}

/* line 40, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-12 {
  left: 100%;
}

/* line 60, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-0 {
  margin-left: 0%;
}

/* line 60, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-1 {
  margin-left: 8.3333333333%;
}

/* line 60, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-2 {
  margin-left: 16.6666666667%;
}

/* line 60, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-3 {
  margin-left: 25%;
}

/* line 60, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-4 {
  margin-left: 33.3333333333%;
}

/* line 60, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-5 {
  margin-left: 41.6666666667%;
}

/* line 60, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-6 {
  margin-left: 50%;
}

/* line 60, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-7 {
  margin-left: 58.3333333333%;
}

/* line 60, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-8 {
  margin-left: 66.6666666667%;
}

/* line 60, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-9 {
  margin-left: 75%;
}

/* line 60, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-10 {
  margin-left: 83.3333333333%;
}

/* line 60, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-11 {
  margin-left: 91.6666666667%;
}

/* line 60, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-12 {
  margin-left: 100%;
}

@media (min-width: 768px) {
  /* line 27, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .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;
  }
  /* line 35, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-1 {
    width: 8.3333333333%;
  }
  /* line 35, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-2 {
    width: 16.6666666667%;
  }
  /* line 35, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-3 {
    width: 25%;
  }
  /* line 35, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-4 {
    width: 33.3333333333%;
  }
  /* line 35, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-5 {
    width: 41.6666666667%;
  }
  /* line 35, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-6 {
    width: 50%;
  }
  /* line 35, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-7 {
    width: 58.3333333333%;
  }
  /* line 35, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-8 {
    width: 66.6666666667%;
  }
  /* line 35, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-9 {
    width: 75%;
  }
  /* line 35, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-10 {
    width: 83.3333333333%;
  }
  /* line 35, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-11 {
    width: 91.6666666667%;
  }
  /* line 35, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-12 {
    width: 100%;
  }
  /* line 55, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-0 {
    right: auto;
  }
  /* line 50, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-1 {
    right: 8.3333333333%;
  }
  /* line 50, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-2 {
    right: 16.6666666667%;
  }
  /* line 50, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-3 {
    right: 25%;
  }
  /* line 50, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-4 {
    right: 33.3333333333%;
  }
  /* line 50, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-5 {
    right: 41.6666666667%;
  }
  /* line 50, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-6 {
    right: 50%;
  }
  /* line 50, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-7 {
    right: 58.3333333333%;
  }
  /* line 50, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-8 {
    right: 66.6666666667%;
  }
  /* line 50, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-9 {
    right: 75%;
  }
  /* line 50, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-10 {
    right: 83.3333333333%;
  }
  /* line 50, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-11 {
    right: 91.6666666667%;
  }
  /* line 50, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-12 {
    right: 100%;
  }
  /* line 45, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-0 {
    left: auto;
  }
  /* line 40, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-1 {
    left: 8.3333333333%;
  }
  /* line 40, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-2 {
    left: 16.6666666667%;
  }
  /* line 40, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-3 {
    left: 25%;
  }
  /* line 40, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-4 {
    left: 33.3333333333%;
  }
  /* line 40, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-5 {
    left: 41.6666666667%;
  }
  /* line 40, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-6 {
    left: 50%;
  }
  /* line 40, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-7 {
    left: 58.3333333333%;
  }
  /* line 40, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-8 {
    left: 66.6666666667%;
  }
  /* line 40, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-9 {
    left: 75%;
  }
  /* line 40, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-10 {
    left: 83.3333333333%;
  }
  /* line 40, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-11 {
    left: 91.6666666667%;
  }
  /* line 40, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-12 {
    left: 100%;
  }
  /* line 60, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-0 {
    margin-left: 0%;
  }
  /* line 60, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-1 {
    margin-left: 8.3333333333%;
  }
  /* line 60, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-2 {
    margin-left: 16.6666666667%;
  }
  /* line 60, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  /* line 60, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-4 {
    margin-left: 33.3333333333%;
  }
  /* line 60, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-5 {
    margin-left: 41.6666666667%;
  }
  /* line 60, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  /* line 60, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-7 {
    margin-left: 58.3333333333%;
  }
  /* line 60, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-8 {
    margin-left: 66.6666666667%;
  }
  /* line 60, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  /* line 60, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-10 {
    margin-left: 83.3333333333%;
  }
  /* line 60, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-11 {
    margin-left: 91.6666666667%;
  }
  /* line 60, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-12 {
    margin-left: 100%;
  }
}

@media (min-width: 992px) {
  /* line 27, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .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;
  }
  /* line 35, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-1 {
    width: 8.3333333333%;
  }
  /* line 35, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-2 {
    width: 16.6666666667%;
  }
  /* line 35, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-3 {
    width: 25%;
  }
  /* line 35, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-4 {
    width: 33.3333333333%;
  }
  /* line 35, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-5 {
    width: 41.6666666667%;
  }
  /* line 35, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-6 {
    width: 50%;
  }
  /* line 35, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-7 {
    width: 58.3333333333%;
  }
  /* line 35, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-8 {
    width: 66.6666666667%;
  }
  /* line 35, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-9 {
    width: 75%;
  }
  /* line 35, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-10 {
    width: 83.3333333333%;
  }
  /* line 35, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-11 {
    width: 91.6666666667%;
  }
  /* line 35, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-12 {
    width: 100%;
  }
  /* line 55, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-0 {
    right: auto;
  }
  /* line 50, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-1 {
    right: 8.3333333333%;
  }
  /* line 50, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-2 {
    right: 16.6666666667%;
  }
  /* line 50, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-3 {
    right: 25%;
  }
  /* line 50, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-4 {
    right: 33.3333333333%;
  }
  /* line 50, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-5 {
    right: 41.6666666667%;
  }
  /* line 50, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-6 {
    right: 50%;
  }
  /* line 50, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-7 {
    right: 58.3333333333%;
  }
  /* line 50, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-8 {
    right: 66.6666666667%;
  }
  /* line 50, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-9 {
    right: 75%;
  }
  /* line 50, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-10 {
    right: 83.3333333333%;
  }
  /* line 50, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-11 {
    right: 91.6666666667%;
  }
  /* line 50, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-12 {
    right: 100%;
  }
  /* line 45, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-0 {
    left: auto;
  }
  /* line 40, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-1 {
    left: 8.3333333333%;
  }
  /* line 40, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-2 {
    left: 16.6666666667%;
  }
  /* line 40, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-3 {
    left: 25%;
  }
  /* line 40, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-4 {
    left: 33.3333333333%;
  }
  /* line 40, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-5 {
    left: 41.6666666667%;
  }
  /* line 40, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-6 {
    left: 50%;
  }
  /* line 40, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-7 {
    left: 58.3333333333%;
  }
  /* line 40, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-8 {
    left: 66.6666666667%;
  }
  /* line 40, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-9 {
    left: 75%;
  }
  /* line 40, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-10 {
    left: 83.3333333333%;
  }
  /* line 40, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-11 {
    left: 91.6666666667%;
  }
  /* line 40, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-12 {
    left: 100%;
  }
  /* line 60, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-0 {
    margin-left: 0%;
  }
  /* line 60, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-1 {
    margin-left: 8.3333333333%;
  }
  /* line 60, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-2 {
    margin-left: 16.6666666667%;
  }
  /* line 60, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-3 {
    margin-left: 25%;
  }
  /* line 60, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-4 {
    margin-left: 33.3333333333%;
  }
  /* line 60, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-5 {
    margin-left: 41.6666666667%;
  }
  /* line 60, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-6 {
    margin-left: 50%;
  }
  /* line 60, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-7 {
    margin-left: 58.3333333333%;
  }
  /* line 60, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-8 {
    margin-left: 66.6666666667%;
  }
  /* line 60, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-9 {
    margin-left: 75%;
  }
  /* line 60, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-10 {
    margin-left: 83.3333333333%;
  }
  /* line 60, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-11 {
    margin-left: 91.6666666667%;
  }
  /* line 60, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-12 {
    margin-left: 100%;
  }
}

@media (min-width: 1200px) {
  /* line 27, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .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;
  }
  /* line 35, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-1 {
    width: 8.3333333333%;
  }
  /* line 35, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-2 {
    width: 16.6666666667%;
  }
  /* line 35, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-3 {
    width: 25%;
  }
  /* line 35, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-4 {
    width: 33.3333333333%;
  }
  /* line 35, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-5 {
    width: 41.6666666667%;
  }
  /* line 35, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-6 {
    width: 50%;
  }
  /* line 35, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-7 {
    width: 58.3333333333%;
  }
  /* line 35, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-8 {
    width: 66.6666666667%;
  }
  /* line 35, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-9 {
    width: 75%;
  }
  /* line 35, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-10 {
    width: 83.3333333333%;
  }
  /* line 35, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-11 {
    width: 91.6666666667%;
  }
  /* line 35, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-12 {
    width: 100%;
  }
  /* line 55, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-0 {
    right: auto;
  }
  /* line 50, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-1 {
    right: 8.3333333333%;
  }
  /* line 50, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-2 {
    right: 16.6666666667%;
  }
  /* line 50, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-3 {
    right: 25%;
  }
  /* line 50, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-4 {
    right: 33.3333333333%;
  }
  /* line 50, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-5 {
    right: 41.6666666667%;
  }
  /* line 50, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-6 {
    right: 50%;
  }
  /* line 50, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-7 {
    right: 58.3333333333%;
  }
  /* line 50, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-8 {
    right: 66.6666666667%;
  }
  /* line 50, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-9 {
    right: 75%;
  }
  /* line 50, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-10 {
    right: 83.3333333333%;
  }
  /* line 50, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-11 {
    right: 91.6666666667%;
  }
  /* line 50, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-12 {
    right: 100%;
  }
  /* line 45, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-0 {
    left: auto;
  }
  /* line 40, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-1 {
    left: 8.3333333333%;
  }
  /* line 40, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-2 {
    left: 16.6666666667%;
  }
  /* line 40, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-3 {
    left: 25%;
  }
  /* line 40, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-4 {
    left: 33.3333333333%;
  }
  /* line 40, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-5 {
    left: 41.6666666667%;
  }
  /* line 40, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-6 {
    left: 50%;
  }
  /* line 40, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-7 {
    left: 58.3333333333%;
  }
  /* line 40, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-8 {
    left: 66.6666666667%;
  }
  /* line 40, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-9 {
    left: 75%;
  }
  /* line 40, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-10 {
    left: 83.3333333333%;
  }
  /* line 40, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-11 {
    left: 91.6666666667%;
  }
  /* line 40, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-12 {
    left: 100%;
  }
  /* line 60, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-0 {
    margin-left: 0%;
  }
  /* line 60, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-1 {
    margin-left: 8.3333333333%;
  }
  /* line 60, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-2 {
    margin-left: 16.6666666667%;
  }
  /* line 60, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  /* line 60, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-4 {
    margin-left: 33.3333333333%;
  }
  /* line 60, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-5 {
    margin-left: 41.6666666667%;
  }
  /* line 60, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  /* line 60, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-7 {
    margin-left: 58.3333333333%;
  }
  /* line 60, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-8 {
    margin-left: 66.6666666667%;
  }
  /* line 60, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  /* line 60, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-10 {
    margin-left: 83.3333333333%;
  }
  /* line 60, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-11 {
    margin-left: 91.6666666667%;
  }
  /* line 60, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-12 {
    margin-left: 100%;
  }
}

/* line 6, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
table {
  background-color: transparent;
}

/* line 13, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
table col[class*="col-"] {
  position: static;
  display: table-column;
  float: none;
}

/* line 21, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
table td[class*="col-"],
table th[class*="col-"] {
  position: static;
  display: table-cell;
  float: none;
}

/* line 29, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
caption {
  padding-top: 8px;
  padding-bottom: 8px;
  color: #777777;
  text-align: left;
}

/* line 36, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
th {
  text-align: left;
}

/* line 43, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
}

/* line 52, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
.table > thead > tr > th,
.table > thead > tr > td,
.table > tbody > tr > th,
.table > tbody > tr > td,
.table > tfoot > tr > th,
.table > tfoot > tr > td {
  padding: 8px;
  line-height: 1.428571429;
  vertical-align: top;
  border-top: 1px solid #ddd;
}

/* line 62, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
.table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 2px solid #ddd;
}

/* line 71, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
.table > caption + thead > tr:first-child > th,
.table > caption + thead > tr:first-child > td,
.table > colgroup + thead > tr:first-child > th,
.table > colgroup + thead > tr:first-child > td,
.table > thead:first-child > tr:first-child > th,
.table > thead:first-child > tr:first-child > td {
  border-top: 0;
}

/* line 78, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
.table > tbody + tbody {
  border-top: 2px solid #ddd;
}

/* line 83, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
.table .table {
  background-color: #fff;
}

/* line 96, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
.table-condensed > thead > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > th,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > th,
.table-condensed > tfoot > tr > td {
  padding: 5px;
}

/* line 109, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
.table-bordered {
  border: 1px solid #ddd;
}

/* line 115, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > th,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > th,
.table-bordered > tfoot > tr > td {
  border: 1px solid #ddd;
}

/* line 122, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td {
  border-bottom-width: 2px;
}

/* line 135, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
.table-striped > tbody > tr:nth-of-type(odd) {
  background-color: #f9f9f9;
}

/* line 146, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
.table-hover > tbody > tr:hover {
  background-color: #f5f5f5;
}

/* line 9, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */
.table > thead > tr > td.active,
.table > thead > tr > th.active, .table > thead > tr.active > td, .table > thead > tr.active > th,
.table > tbody > tr > td.active,
.table > tbody > tr > th.active,
.table > tbody > tr.active > td,
.table > tbody > tr.active > th,
.table > tfoot > tr > td.active,
.table > tfoot > tr > th.active,
.table > tfoot > tr.active > td,
.table > tfoot > tr.active > th {
  background-color: #f5f5f5;
}

/* line 17, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */
.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;
}

/* line 9, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */
.table > thead > tr > td.success,
.table > thead > tr > th.success, .table > thead > tr.success > td, .table > thead > tr.success > th,
.table > tbody > tr > td.success,
.table > tbody > tr > th.success,
.table > tbody > tr.success > td,
.table > tbody > tr.success > th,
.table > tfoot > tr > td.success,
.table > tfoot > tr > th.success,
.table > tfoot > tr.success > td,
.table > tfoot > tr.success > th {
  background-color: #dff0d8;
}

/* line 17, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */
.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;
}

/* line 9, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */
.table > thead > tr > td.info,
.table > thead > tr > th.info, .table > thead > tr.info > td, .table > thead > tr.info > th,
.table > tbody > tr > td.info,
.table > tbody > tr > th.info,
.table > tbody > tr.info > td,
.table > tbody > tr.info > th,
.table > tfoot > tr > td.info,
.table > tfoot > tr > th.info,
.table > tfoot > tr.info > td,
.table > tfoot > tr.info > th {
  background-color: #d9edf7;
}

/* line 17, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */
.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;
}

/* line 9, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */
.table > thead > tr > td.warning,
.table > thead > tr > th.warning, .table > thead > tr.warning > td, .table > thead > tr.warning > th,
.table > tbody > tr > td.warning,
.table > tbody > tr > th.warning,
.table > tbody > tr.warning > td,
.table > tbody > tr.warning > th,
.table > tfoot > tr > td.warning,
.table > tfoot > tr > th.warning,
.table > tfoot > tr.warning > td,
.table > tfoot > tr.warning > th {
  background-color: #fcf8e3;
}

/* line 17, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */
.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;
}

/* line 9, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */
.table > thead > tr > td.danger,
.table > thead > tr > th.danger, .table > thead > tr.danger > td, .table > thead > tr.danger > th,
.table > tbody > tr > td.danger,
.table > tbody > tr > th.danger,
.table > tbody > tr.danger > td,
.table > tbody > tr.danger > th,
.table > tfoot > tr > td.danger,
.table > tfoot > tr > th.danger,
.table > tfoot > tr.danger > td,
.table > tfoot > tr.danger > th {
  background-color: #f2dede;
}

/* line 17, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */
.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;
}

/* line 171, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
.table-responsive {
  min-height: .01%;
  overflow-x: auto;
}

@media screen and (max-width: 767px) {
  /* line 171, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
  .table-responsive {
    width: 100%;
    margin-bottom: 15px;
    overflow-y: hidden;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    border: 1px solid #ddd;
  }
  /* line 183, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
  .table-responsive > .table {
    margin-bottom: 0;
  }
  /* line 191, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
  .table-responsive > .table > thead > tr > th,
.table-responsive > .table > thead > tr > td,
.table-responsive > .table > tbody > tr > th,
.table-responsive > .table > tbody > tr > td,
.table-responsive > .table > tfoot > tr > th,
.table-responsive > .table > tfoot > tr > td {
    white-space: nowrap;
  }
  /* line 200, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
  .table-responsive > .table-bordered {
    border: 0;
  }
  /* line 208, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
  .table-responsive > .table-bordered > thead > tr > th:first-child,
.table-responsive > .table-bordered > thead > tr > td:first-child,
.table-responsive > .table-bordered > tbody > tr > th:first-child,
.table-responsive > .table-bordered > tbody > tr > td:first-child,
.table-responsive > .table-bordered > tfoot > tr > th:first-child,
.table-responsive > .table-bordered > tfoot > tr > td:first-child {
    border-left: 0;
  }
  /* line 212, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
  .table-responsive > .table-bordered > thead > tr > th:last-child,
.table-responsive > .table-bordered > thead > tr > td:last-child,
.table-responsive > .table-bordered > tbody > tr > th:last-child,
.table-responsive > .table-bordered > tbody > tr > td:last-child,
.table-responsive > .table-bordered > tfoot > tr > th:last-child,
.table-responsive > .table-bordered > tfoot > tr > td:last-child {
    border-right: 0;
  }
  /* line 225, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
  .table-responsive > .table-bordered > tbody > tr:last-child > th,
.table-responsive > .table-bordered > tbody > tr:last-child > td,
.table-responsive > .table-bordered > tfoot > tr:last-child > th,
.table-responsive > .table-bordered > tfoot > tr:last-child > td {
    border-bottom: 0;
  }
}

/* line 10, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

/* line 20, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
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;
}

/* line 32, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: 700;
}

/* line 46, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
input[type="search"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
}

/* line 61, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
input[type="radio"],
input[type="checkbox"] {
  margin: 4px 0 0;
  margin-top: 1px \9;
  line-height: normal;
}

/* line 71, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
input[type="radio"][disabled], input.disabled[type="radio"], fieldset[disabled] input[type="radio"],
input[type="checkbox"][disabled],
input.disabled[type="checkbox"], fieldset[disabled] input[type="checkbox"] {
  cursor: not-allowed;
}

/* line 78, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
input[type="file"] {
  display: block;
}

/* line 83, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
input[type="range"] {
  display: block;
  width: 100%;
}

/* line 89, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
select[multiple],
select[size] {
  height: auto;
}

/* line 95, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

/* line 102, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
output {
  display: block;
  padding-top: 7px;
  font-size: 14px;
  line-height: 1.428571429;
  color: #555555;
}

/* line 133, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
.form-control {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.428571429;
  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 0.15s, box-shadow ease-in-out 0.15s;
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

/* line 57, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
.form-control:focus {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}

/* line 103, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_vendor-prefixes.scss */
.form-control::-moz-placeholder {
  color: #999;
  opacity: 1;
}

/* line 107, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_vendor-prefixes.scss */
.form-control:-ms-input-placeholder {
  color: #999;
}

/* line 108, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_vendor-prefixes.scss */
.form-control::-webkit-input-placeholder {
  color: #999;
}

/* line 155, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}

/* line 165, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
  background-color: #eeeeee;
  opacity: 1;
}

/* line 172, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
.form-control[disabled], fieldset[disabled] .form-control {
  cursor: not-allowed;
}

/* line 181, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
textarea.form-control {
  height: auto;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  /* line 200, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  input.form-control[type="date"],
input.form-control[type="time"],
input.form-control[type="datetime-local"],
input.form-control[type="month"] {
    line-height: 34px;
  }
  /* line 204, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  input.input-sm[type="date"], .input-group-sm > .form-control[type="date"],
.input-group-sm > .input-group-addon[type="date"],
.input-group-sm > .input-group-btn > .btn[type="date"], .input-group-sm input[type="date"],
input.input-sm[type="time"],
.input-group-sm > .form-control[type="time"],
.input-group-sm > .input-group-addon[type="time"],
.input-group-sm > .input-group-btn > .btn[type="time"], .input-group-sm input[type="time"],
input.input-sm[type="datetime-local"],
.input-group-sm > .form-control[type="datetime-local"],
.input-group-sm > .input-group-addon[type="datetime-local"],
.input-group-sm > .input-group-btn > .btn[type="datetime-local"], .input-group-sm input[type="datetime-local"],
input.input-sm[type="month"],
.input-group-sm > .form-control[type="month"],
.input-group-sm > .input-group-addon[type="month"],
.input-group-sm > .input-group-btn > .btn[type="month"], .input-group-sm input[type="month"] {
    line-height: 30px;
  }
  /* line 209, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  input.input-lg[type="date"], .input-group-lg > .form-control[type="date"],
.input-group-lg > .input-group-addon[type="date"],
.input-group-lg > .input-group-btn > .btn[type="date"], .input-group-lg input[type="date"],
input.input-lg[type="time"],
.input-group-lg > .form-control[type="time"],
.input-group-lg > .input-group-addon[type="time"],
.input-group-lg > .input-group-btn > .btn[type="time"], .input-group-lg input[type="time"],
input.input-lg[type="datetime-local"],
.input-group-lg > .form-control[type="datetime-local"],
.input-group-lg > .input-group-addon[type="datetime-local"],
.input-group-lg > .input-group-btn > .btn[type="datetime-local"], .input-group-lg input[type="datetime-local"],
input.input-lg[type="month"],
.input-group-lg > .form-control[type="month"],
.input-group-lg > .input-group-addon[type="month"],
.input-group-lg > .input-group-btn > .btn[type="month"], .input-group-lg input[type="month"] {
    line-height: 46px;
  }
}

/* line 222, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
.form-group {
  margin-bottom: 15px;
}

/* line 231, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
.radio,
.checkbox {
  position: relative;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
}

/* line 241, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
.radio.disabled label, fieldset[disabled] .radio label,
.checkbox.disabled label, fieldset[disabled] .checkbox label {
  cursor: not-allowed;
}

/* line 246, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
.radio label,
.checkbox label {
  min-height: 20px;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: 400;
  cursor: pointer;
}

/* line 254, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
.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;
}

/* line 263, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
.radio + .radio,
.checkbox + .checkbox {
  margin-top: -5px;
}

/* line 269, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
.radio-inline,
.checkbox-inline {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: 400;
  vertical-align: middle;
  cursor: pointer;
}

/* line 280, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
.radio-inline.disabled, fieldset[disabled] .radio-inline,
.checkbox-inline.disabled, fieldset[disabled] .checkbox-inline {
  cursor: not-allowed;
}

/* line 285, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline {
  margin-top: 0;
  margin-left: 10px;
}

/* line 297, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
.form-control-static {
  min-height: 34px;
  padding-top: 7px;
  padding-bottom: 7px;
  margin-bottom: 0;
}

/* line 305, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
.form-control-static.input-lg, .input-group-lg > .form-control-static.form-control,
.input-group-lg > .form-control-static.input-group-addon,
.input-group-lg > .input-group-btn > .form-control-static.btn, .form-control-static.input-sm, .input-group-sm > .form-control-static.form-control,
.input-group-sm > .form-control-static.input-group-addon,
.input-group-sm > .input-group-btn > .form-control-static.btn {
  padding-right: 0;
  padding-left: 0;
}

/* line 71, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
.input-sm, .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;
}

/* line 79, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
select.input-sm, .input-group-sm > select.form-control,
.input-group-sm > select.input-group-addon,
.input-group-sm > .input-group-btn > select.btn {
  height: 30px;
  line-height: 30px;
}

/* line 84, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
textarea.input-sm, .input-group-sm > textarea.form-control,
.input-group-sm > textarea.input-group-addon,
.input-group-sm > .input-group-btn > textarea.btn,
select.input-sm[multiple],
.input-group-sm > .form-control[multiple],
.input-group-sm > .input-group-addon[multiple],
.input-group-sm > .input-group-btn > .btn[multiple] {
  height: auto;
}

/* line 323, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
.form-group-sm .form-control {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}

/* line 330, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
.form-group-sm select.form-control {
  height: 30px;
  line-height: 30px;
}

/* line 334, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
.form-group-sm textarea.form-control,
.form-group-sm select.form-control[multiple] {
  height: auto;
}

/* line 338, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
.form-group-sm .form-control-static {
  height: 30px;
  min-height: 32px;
  padding: 6px 10px;
  font-size: 12px;
  line-height: 1.5;
}

/* line 71, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
.input-lg, .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;
}

/* line 79, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
select.input-lg, .input-group-lg > select.form-control,
.input-group-lg > select.input-group-addon,
.input-group-lg > .input-group-btn > select.btn {
  height: 46px;
  line-height: 46px;
}

/* line 84, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
textarea.input-lg, .input-group-lg > textarea.form-control,
.input-group-lg > textarea.input-group-addon,
.input-group-lg > .input-group-btn > textarea.btn,
select.input-lg[multiple],
.input-group-lg > .form-control[multiple],
.input-group-lg > .input-group-addon[multiple],
.input-group-lg > .input-group-btn > .btn[multiple] {
  height: auto;
}

/* line 349, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
.form-group-lg .form-control {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}

/* line 356, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
.form-group-lg select.form-control {
  height: 46px;
  line-height: 46px;
}

/* line 360, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
.form-group-lg textarea.form-control,
.form-group-lg select.form-control[multiple] {
  height: auto;
}

/* line 364, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
.form-group-lg .form-control-static {
  height: 46px;
  min-height: 38px;
  padding: 11px 16px;
  font-size: 18px;
  line-height: 1.3333333;
}

/* line 378, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
.has-feedback {
  position: relative;
}

/* line 383, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
.has-feedback .form-control {
  padding-right: 42.5px;
}

/* line 388, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
.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;
}

/* line 400, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
.input-lg + .form-control-feedback, .input-group-lg > .form-control + .form-control-feedback,
.input-group-lg > .input-group-addon + .form-control-feedback,
.input-group-lg > .input-group-btn > .btn + .form-control-feedback,
.input-group-lg + .form-control-feedback,
.form-group-lg .form-control + .form-control-feedback {
  width: 46px;
  height: 46px;
  line-height: 46px;
}

/* line 407, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
.input-sm + .form-control-feedback, .input-group-sm > .form-control + .form-control-feedback,
.input-group-sm > .input-group-addon + .form-control-feedback,
.input-group-sm > .input-group-btn > .btn + .form-control-feedback,
.input-group-sm + .form-control-feedback,
.form-group-sm .form-control + .form-control-feedback {
  width: 30px;
  height: 30px;
  line-height: 30px;
}

/* line 8, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
.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;
}

/* line 21, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
.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);
}

/* line 24, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
.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;
}

/* line 31, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
.has-success .input-group-addon {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #3c763d;
}

/* line 37, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
.has-success .form-control-feedback {
  color: #3c763d;
}

/* line 8, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
.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;
}

/* line 21, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
.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);
}

/* line 24, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
.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;
}

/* line 31, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
.has-warning .input-group-addon {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #8a6d3b;
}

/* line 37, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
.has-warning .form-control-feedback {
  color: #8a6d3b;
}

/* line 8, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
.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;
}

/* line 21, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
.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);
}

/* line 24, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
.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;
}

/* line 31, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
.has-error .input-group-addon {
  color: #a94442;
  background-color: #f2dede;
  border-color: #a94442;
}

/* line 37, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
.has-error .form-control-feedback {
  color: #a94442;
}

/* line 429, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
.has-feedback label ~ .form-control-feedback {
  top: 25px;
}

/* line 432, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
.has-feedback label.sr-only ~ .form-control-feedback {
  top: 0;
}

/* line 443, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
.help-block {
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #737373;
}

@media (min-width: 768px) {
  /* line 468, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  .form-inline .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  /* line 475, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  /* line 482, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  .form-inline .form-control-static {
    display: inline-block;
  }
  /* line 486, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  .form-inline .input-group {
    display: inline-table;
    vertical-align: middle;
  }
  /* line 490, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  .form-inline .input-group .input-group-addon,
.form-inline .input-group .input-group-btn,
.form-inline .input-group .form-control {
    width: auto;
  }
  /* line 498, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  .form-inline .input-group > .form-control {
    width: 100%;
  }
  /* line 502, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  .form-inline .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
  /* line 509, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  .form-inline .radio,
.form-inline .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }
  /* line 516, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  .form-inline .radio label,
.form-inline .checkbox label {
    padding-left: 0;
  }
  /* line 520, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  .form-inline .radio input[type="radio"],
.form-inline .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0;
  }
  /* line 527, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  .form-inline .has-feedback .form-control-feedback {
    top: 0;
  }
}

/* line 549, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
.form-horizontal .radio,
.form-horizontal .checkbox,
.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline {
  padding-top: 7px;
  margin-top: 0;
  margin-bottom: 0;
}

/* line 559, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
.form-horizontal .radio,
.form-horizontal .checkbox {
  min-height: 27px;
}

/* line 565, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
.form-horizontal .form-group {
  margin-right: -15px;
  margin-left: -15px;
}

/* line 14, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.form-horizontal .form-group:before, .form-horizontal .form-group:after {
  display: table;
  content: " ";
}

/* line 19, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.form-horizontal .form-group:after {
  clear: both;
}

@media (min-width: 768px) {
  /* line 572, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  .form-horizontal .control-label {
    padding-top: 7px;
    margin-bottom: 0;
    text-align: right;
  }
}

/* line 583, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
.form-horizontal .has-feedback .form-control-feedback {
  right: 15px;
}

@media (min-width: 768px) {
  /* line 593, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  .form-horizontal .form-group-lg .control-label {
    padding-top: 11px;
    font-size: 18px;
  }
}

@media (min-width: 768px) {
  /* line 601, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  .form-horizontal .form-group-sm .control-label {
    padding-top: 6px;
    font-size: 12px;
  }
}

/* line 9, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
.btn {
  display: inline-block;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.428571429;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* line 26, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
.btn:focus, .btn.focus, .btn:active:focus, .btn.focus:active, .btn.active:focus, .btn.active.focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

/* line 32, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
.btn:hover, .btn:focus, .btn.focus {
  color: #333;
  text-decoration: none;
}

/* line 39, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
.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);
}

/* line 46, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
.btn.disabled, .btn[disabled], fieldset[disabled] .btn {
  cursor: not-allowed;
  filter: alpha(opacity=65);
  opacity: 0.65;
  -webkit-box-shadow: none;
  box-shadow: none;
}

/* line 58, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
a.btn.disabled, fieldset[disabled] a.btn {
  pointer-events: none;
}

/* line 68, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
.btn-default {
  color: #333;
  background-color: #fff;
  border-color: #ccc;
}

/* line 11, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-default:focus, .btn-default.focus {
  color: #333;
  background-color: #e6e6e6;
  border-color: #8c8c8c;
}

/* line 17, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-default:hover {
  color: #333;
  background-color: #e6e6e6;
  border-color: #adadad;
}

/* line 22, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-default:active, .btn-default.active, .open > .btn-default.dropdown-toggle {
  color: #333;
  background-color: #e6e6e6;
  background-image: none;
  border-color: #adadad;
}

/* line 30, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-default:active:hover, .btn-default:active:focus, .btn-default.focus:active, .btn-default.active:hover, .btn-default.active:focus, .btn-default.active.focus, .open > .btn-default.dropdown-toggle:hover, .open > .btn-default.dropdown-toggle:focus, .open > .btn-default.dropdown-toggle.focus {
  color: #333;
  background-color: #d4d4d4;
  border-color: #8c8c8c;
}

/* line 41, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-default.disabled:hover, .btn-default.disabled:focus, .btn-default.disabled.focus, .btn-default[disabled]:hover, .btn-default[disabled]:focus, .btn-default.focus[disabled], fieldset[disabled] .btn-default:hover, fieldset[disabled] .btn-default:focus, fieldset[disabled] .btn-default.focus {
  background-color: #fff;
  border-color: #ccc;
}

/* line 49, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-default .badge {
  color: #fff;
  background-color: #333;
}

/* line 71, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
.btn-primary {
  color: #fff;
  background-color: #337ab7;
  border-color: #2e6da4;
}

/* line 11, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-primary:focus, .btn-primary.focus {
  color: #fff;
  background-color: #286090;
  border-color: #122b40;
}

/* line 17, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-primary:hover {
  color: #fff;
  background-color: #286090;
  border-color: #204d74;
}

/* line 22, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-primary:active, .btn-primary.active, .open > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #286090;
  background-image: none;
  border-color: #204d74;
}

/* line 30, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-primary:active:hover, .btn-primary:active:focus, .btn-primary.focus:active, .btn-primary.active:hover, .btn-primary.active:focus, .btn-primary.active.focus, .open > .btn-primary.dropdown-toggle:hover, .open > .btn-primary.dropdown-toggle:focus, .open > .btn-primary.dropdown-toggle.focus {
  color: #fff;
  background-color: #204d74;
  border-color: #122b40;
}

/* line 41, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-primary.disabled:hover, .btn-primary.disabled:focus, .btn-primary.disabled.focus, .btn-primary[disabled]:hover, .btn-primary[disabled]:focus, .btn-primary.focus[disabled], fieldset[disabled] .btn-primary:hover, fieldset[disabled] .btn-primary:focus, fieldset[disabled] .btn-primary.focus {
  background-color: #337ab7;
  border-color: #2e6da4;
}

/* line 49, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-primary .badge {
  color: #337ab7;
  background-color: #fff;
}

/* line 75, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
.btn-success {
  color: #fff;
  background-color: #5cb85c;
  border-color: #4cae4c;
}

/* line 11, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-success:focus, .btn-success.focus {
  color: #fff;
  background-color: #449d44;
  border-color: #255625;
}

/* line 17, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-success:hover {
  color: #fff;
  background-color: #449d44;
  border-color: #398439;
}

/* line 22, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-success:active, .btn-success.active, .open > .btn-success.dropdown-toggle {
  color: #fff;
  background-color: #449d44;
  background-image: none;
  border-color: #398439;
}

/* line 30, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-success:active:hover, .btn-success:active:focus, .btn-success.focus:active, .btn-success.active:hover, .btn-success.active:focus, .btn-success.active.focus, .open > .btn-success.dropdown-toggle:hover, .open > .btn-success.dropdown-toggle:focus, .open > .btn-success.dropdown-toggle.focus {
  color: #fff;
  background-color: #398439;
  border-color: #255625;
}

/* line 41, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-success.disabled:hover, .btn-success.disabled:focus, .btn-success.disabled.focus, .btn-success[disabled]:hover, .btn-success[disabled]:focus, .btn-success.focus[disabled], fieldset[disabled] .btn-success:hover, fieldset[disabled] .btn-success:focus, fieldset[disabled] .btn-success.focus {
  background-color: #5cb85c;
  border-color: #4cae4c;
}

/* line 49, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-success .badge {
  color: #5cb85c;
  background-color: #fff;
}

/* line 79, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
.btn-info {
  color: #fff;
  background-color: #5bc0de;
  border-color: #46b8da;
}

/* line 11, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-info:focus, .btn-info.focus {
  color: #fff;
  background-color: #31b0d5;
  border-color: #1b6d85;
}

/* line 17, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-info:hover {
  color: #fff;
  background-color: #31b0d5;
  border-color: #269abc;
}

/* line 22, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-info:active, .btn-info.active, .open > .btn-info.dropdown-toggle {
  color: #fff;
  background-color: #31b0d5;
  background-image: none;
  border-color: #269abc;
}

/* line 30, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-info:active:hover, .btn-info:active:focus, .btn-info.focus:active, .btn-info.active:hover, .btn-info.active:focus, .btn-info.active.focus, .open > .btn-info.dropdown-toggle:hover, .open > .btn-info.dropdown-toggle:focus, .open > .btn-info.dropdown-toggle.focus {
  color: #fff;
  background-color: #269abc;
  border-color: #1b6d85;
}

/* line 41, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-info.disabled:hover, .btn-info.disabled:focus, .btn-info.disabled.focus, .btn-info[disabled]:hover, .btn-info[disabled]:focus, .btn-info.focus[disabled], fieldset[disabled] .btn-info:hover, fieldset[disabled] .btn-info:focus, fieldset[disabled] .btn-info.focus {
  background-color: #5bc0de;
  border-color: #46b8da;
}

/* line 49, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-info .badge {
  color: #5bc0de;
  background-color: #fff;
}

/* line 83, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
.btn-warning {
  color: #fff;
  background-color: #f0ad4e;
  border-color: #eea236;
}

/* line 11, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-warning:focus, .btn-warning.focus {
  color: #fff;
  background-color: #ec971f;
  border-color: #985f0d;
}

/* line 17, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-warning:hover {
  color: #fff;
  background-color: #ec971f;
  border-color: #d58512;
}

/* line 22, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-warning:active, .btn-warning.active, .open > .btn-warning.dropdown-toggle {
  color: #fff;
  background-color: #ec971f;
  background-image: none;
  border-color: #d58512;
}

/* line 30, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-warning:active:hover, .btn-warning:active:focus, .btn-warning.focus:active, .btn-warning.active:hover, .btn-warning.active:focus, .btn-warning.active.focus, .open > .btn-warning.dropdown-toggle:hover, .open > .btn-warning.dropdown-toggle:focus, .open > .btn-warning.dropdown-toggle.focus {
  color: #fff;
  background-color: #d58512;
  border-color: #985f0d;
}

/* line 41, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-warning.disabled:hover, .btn-warning.disabled:focus, .btn-warning.disabled.focus, .btn-warning[disabled]:hover, .btn-warning[disabled]:focus, .btn-warning.focus[disabled], fieldset[disabled] .btn-warning:hover, fieldset[disabled] .btn-warning:focus, fieldset[disabled] .btn-warning.focus {
  background-color: #f0ad4e;
  border-color: #eea236;
}

/* line 49, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-warning .badge {
  color: #f0ad4e;
  background-color: #fff;
}

/* line 87, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
.btn-danger {
  color: #fff;
  background-color: #d9534f;
  border-color: #d43f3a;
}

/* line 11, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-danger:focus, .btn-danger.focus {
  color: #fff;
  background-color: #c9302c;
  border-color: #761c19;
}

/* line 17, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-danger:hover {
  color: #fff;
  background-color: #c9302c;
  border-color: #ac2925;
}

/* line 22, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-danger:active, .btn-danger.active, .open > .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #c9302c;
  background-image: none;
  border-color: #ac2925;
}

/* line 30, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-danger:active:hover, .btn-danger:active:focus, .btn-danger.focus:active, .btn-danger.active:hover, .btn-danger.active:focus, .btn-danger.active.focus, .open > .btn-danger.dropdown-toggle:hover, .open > .btn-danger.dropdown-toggle:focus, .open > .btn-danger.dropdown-toggle.focus {
  color: #fff;
  background-color: #ac2925;
  border-color: #761c19;
}

/* line 41, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-danger.disabled:hover, .btn-danger.disabled:focus, .btn-danger.disabled.focus, .btn-danger[disabled]:hover, .btn-danger[disabled]:focus, .btn-danger.focus[disabled], fieldset[disabled] .btn-danger:hover, fieldset[disabled] .btn-danger:focus, fieldset[disabled] .btn-danger.focus {
  background-color: #d9534f;
  border-color: #d43f3a;
}

/* line 49, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-danger .badge {
  color: #d9534f;
  background-color: #fff;
}

/* line 96, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
.btn-link {
  font-weight: 400;
  color: #337ab7;
  border-radius: 0;
}

/* line 101, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
.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;
}

/* line 109, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
.btn-link, .btn-link:hover, .btn-link:focus, .btn-link:active {
  border-color: transparent;
}

/* line 115, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
.btn-link:hover, .btn-link:focus {
  color: #23527c;
  text-decoration: underline;
  background-color: transparent;
}

/* line 123, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
.btn-link[disabled]:hover, .btn-link[disabled]:focus, fieldset[disabled] .btn-link:hover, fieldset[disabled] .btn-link:focus {
  color: #777777;
  text-decoration: none;
}

/* line 135, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
.btn-lg, .btn-group-lg > .btn {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}

/* line 139, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
.btn-sm, .btn-group-sm > .btn {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}

/* line 143, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
.btn-xs, .btn-group-xs > .btn {
  padding: 1px 5px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}

/* line 151, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
.btn-block {
  display: block;
  width: 100%;
}

/* line 157, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
.btn-block + .btn-block {
  margin-top: 5px;
}

/* line 165, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
input.btn-block[type="submit"],
input.btn-block[type="reset"],
input.btn-block[type="button"] {
  width: 100%;
}

/* line 10, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_component-animations.scss */
.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}

/* line 14, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_component-animations.scss */
.fade.in {
  opacity: 1;
}

/* line 19, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_component-animations.scss */
.collapse {
  display: none;
}

/* line 22, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_component-animations.scss */
.collapse.in {
  display: block;
}

/* line 27, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_component-animations.scss */
tr.collapse.in {
  display: table-row;
}

/* line 29, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_component-animations.scss */
tbody.collapse.in {
  display: table-row-group;
}

/* line 31, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_component-animations.scss */
.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition-property: height, visibility;
  transition-property: height, visibility;
  -webkit-transition-duration: 0.35s;
  transition-duration: 0.35s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}

/* line 7, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
.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;
}

/* line 20, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropup,
.dropdown {
  position: relative;
}

/* line 26, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropdown-toggle:focus {
  outline: 0;
}

/* line 31, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
.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);
}

/* line 54, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropdown-menu.pull-right {
  right: 0;
  left: auto;
}

/* line 60, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropdown-menu .divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}

/* line 65, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropdown-menu > li > a {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: 400;
  line-height: 1.428571429;
  color: #333333;
  white-space: nowrap;
}

/* line 74, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {
  color: #262626;
  text-decoration: none;
  background-color: #f5f5f5;
}

/* line 85, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, .dropdown-menu > .active > a:focus {
  color: #fff;
  text-decoration: none;
  background-color: #337ab7;
  outline: 0;
}

/* line 100, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropdown-menu > .disabled > a, .dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus {
  color: #777777;
}

/* line 107, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
.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);
}

/* line 120, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
.open > .dropdown-menu {
  display: block;
}

/* line 125, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
.open > a {
  outline: 0;
}

/* line 134, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropdown-menu-right {
  right: 0;
  left: auto;
}

/* line 144, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropdown-menu-left {
  right: auto;
  left: 0;
}

/* line 150, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropdown-header {
  display: block;
  padding: 3px 20px;
  font-size: 12px;
  line-height: 1.428571429;
  color: #777777;
  white-space: nowrap;
}

/* line 160, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropdown-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 990;
}

/* line 170, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
.pull-right > .dropdown-menu {
  right: 0;
  left: auto;
}

/* line 183, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
  content: "";
  border-top: 0;
  border-bottom: 4px dashed;
  border-bottom: 4px solid \9;
}

/* line 190, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 2px;
}

@media (min-width: 768px) {
  /* line 204, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
  .navbar-right .dropdown-menu {
    right: 0;
    left: auto;
  }
  /* line 209, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
  .navbar-right .dropdown-menu-left {
    left: 0;
    right: auto;
  }
}

/* line 6, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}

/* line 11, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  float: left;
}

/* line 15, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group > .btn:hover, .btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active,
.btn-group-vertical > .btn:hover,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn.active {
  z-index: 2;
}

/* line 26, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group .btn + .btn,
.btn-group .btn + .btn-group,
.btn-group .btn-group + .btn,
.btn-group .btn-group + .btn-group {
  margin-left: -1px;
}

/* line 35, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-toolbar {
  margin-left: -5px;
}

/* line 14, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.btn-toolbar:before, .btn-toolbar:after {
  display: table;
  content: " ";
}

/* line 19, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.btn-toolbar:after {
  clear: both;
}

/* line 39, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-toolbar .btn,
.btn-toolbar .btn-group,
.btn-toolbar .input-group {
  float: left;
}

/* line 44, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-toolbar > .btn,
.btn-toolbar > .btn-group,
.btn-toolbar > .input-group {
  margin-left: 5px;
}

/* line 51, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  border-radius: 0;
}

/* line 56, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group > .btn:first-child {
  margin-left: 0;
}

/* line 58, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

/* line 63, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.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;
}

/* line 69, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group > .btn-group {
  float: left;
}

/* line 72, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}

/* line 76, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.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;
}

/* line 81, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

/* line 86, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
  outline: 0;
}

/* line 105, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group > .btn + .dropdown-toggle {
  padding-right: 8px;
  padding-left: 8px;
}

/* line 109, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group > .btn-lg + .dropdown-toggle, .btn-group-lg.btn-group > .btn + .dropdown-toggle {
  padding-right: 12px;
  padding-left: 12px;
}

/* line 116, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.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);
}

/* line 120, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group.open .dropdown-toggle.btn-link {
  -webkit-box-shadow: none;
  box-shadow: none;
}

/* line 127, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.btn .caret {
  margin-left: 0;
}

/* line 131, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-lg .caret, .btn-group-lg > .btn .caret {
  border-width: 5px 5px 0;
  border-bottom-width: 0;
}

/* line 136, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.dropup .btn-lg .caret, .dropup .btn-group-lg > .btn .caret {
  border-width: 0 5px 5px;
}

/* line 145, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group,
.btn-group-vertical > .btn-group > .btn {
  display: block;
  float: none;
  width: 100%;
  max-width: 100%;
}

/* line 14, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.btn-group-vertical > .btn-group:before, .btn-group-vertical > .btn-group:after {
  display: table;
  content: " ";
}

/* line 19, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.btn-group-vertical > .btn-group:after {
  clear: both;
}

/* line 157, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group-vertical > .btn-group > .btn {
  float: none;
}

/* line 162, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.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;
}

/* line 172, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
  border-radius: 0;
}

/* line 175, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.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;
}

/* line 179, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.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;
}

/* line 184, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}

/* line 188, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.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;
}

/* line 193, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

/* line 201, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group-justified {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
}

/* line 206, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group-justified > .btn,
.btn-group-justified > .btn-group {
  display: table-cell;
  float: none;
  width: 1%;
}

/* line 212, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group-justified > .btn-group .btn {
  width: 100%;
}

/* line 216, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group-justified > .btn-group .dropdown-menu {
  left: auto;
}

/* line 237, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
[data-toggle="buttons"] > .btn input[type="radio"],
[data-toggle="buttons"] > .btn input[type="checkbox"],
[data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
[data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}

/* line 7, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group {
  position: relative;
  display: table;
  border-collapse: separate;
}

/* line 13, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group[class*="col-"] {
  float: none;
  padding-right: 0;
  padding-left: 0;
}

/* line 19, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group .form-control {
  position: relative;
  z-index: 2;
  float: left;
  width: 100%;
  margin-bottom: 0;
}

/* line 33, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group .form-control:focus {
  z-index: 3;
}

/* line 58, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group-addon,
.input-group-btn,
.input-group .form-control {
  display: table-cell;
}

/* line 63, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
.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;
}

/* line 68, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group-addon,
.input-group-btn {
  width: 1%;
  white-space: nowrap;
  vertical-align: middle;
}

/* line 77, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
.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;
}

/* line 89, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group-addon.input-sm,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .input-group-addon.btn {
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 3px;
}

/* line 94, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group-addon.input-lg,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .input-group-addon.btn {
  padding: 10px 16px;
  font-size: 18px;
  border-radius: 6px;
}

/* line 101, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group-addon input[type="radio"],
.input-group-addon input[type="checkbox"] {
  margin-top: 0;
}

/* line 108, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
.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;
}

/* line 117, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group-addon:first-child {
  border-right: 0;
}

/* line 120, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
.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;
}

/* line 129, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group-addon:last-child {
  border-left: 0;
}

/* line 135, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group-btn {
  position: relative;
  font-size: 0;
  white-space: nowrap;
}

/* line 144, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group-btn > .btn {
  position: relative;
}

/* line 146, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group-btn > .btn + .btn {
  margin-left: -1px;
}

/* line 150, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group-btn > .btn:hover, .input-group-btn > .btn:focus, .input-group-btn > .btn:active {
  z-index: 2;
}

/* line 159, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group {
  margin-right: -1px;
}

/* line 165, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group {
  z-index: 2;
  margin-left: -1px;
}

/* line 9, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

/* line 14, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.nav:before, .nav:after {
  display: table;
  content: " ";
}

/* line 19, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.nav:after {
  clear: both;
}

/* line 15, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav > li {
  position: relative;
  display: block;
}

/* line 19, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav > li > a {
  position: relative;
  display: block;
  padding: 10px 15px;
}

/* line 23, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav > li > a:hover, .nav > li > a:focus {
  text-decoration: none;
  background-color: #eeeeee;
}

/* line 31, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav > li.disabled > a {
  color: #777777;
}

/* line 34, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav > li.disabled > a:hover, .nav > li.disabled > a:focus {
  color: #777777;
  text-decoration: none;
  cursor: not-allowed;
  background-color: transparent;
}

/* line 46, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav .open > a, .nav .open > a:hover, .nav .open > a:focus {
  background-color: #eeeeee;
  border-color: #337ab7;
}

/* line 59, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav .nav-divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}

/* line 66, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav > li > a > img {
  max-width: none;
}

/* line 76, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav-tabs {
  border-bottom: 1px solid #ddd;
}

/* line 78, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav-tabs > li {
  float: left;
  margin-bottom: -1px;
}

/* line 84, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav-tabs > li > a {
  margin-right: 2px;
  line-height: 1.428571429;
  border: 1px solid transparent;
  border-radius: 4px 4px 0 0;
}

/* line 89, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav-tabs > li > a:hover {
  border-color: #eeeeee #eeeeee #ddd;
}

/* line 96, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.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;
}

/* line 118, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav-pills > li {
  float: left;
}

/* line 122, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav-pills > li > a {
  border-radius: 4px;
}

/* line 125, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav-pills > li + li {
  margin-left: 2px;
}

/* line 131, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus {
  color: #fff;
  background-color: #337ab7;
}

/* line 144, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav-stacked > li {
  float: none;
}

/* line 146, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav-stacked > li + li {
  margin-top: 2px;
  margin-left: 0;
}

/* line 160, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav-justified, .nav-tabs.nav-justified {
  width: 100%;
}

/* line 163, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav-justified > li, .nav-tabs.nav-justified > li {
  float: none;
}

/* line 165, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav-justified > li > a, .nav-tabs.nav-justified > li > a {
  margin-bottom: 5px;
  text-align: center;
}

/* line 171, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}

@media (min-width: 768px) {
  /* line 177, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
  .nav-justified > li, .nav-tabs.nav-justified > li {
    display: table-cell;
    width: 1%;
  }
  /* line 180, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
  .nav-justified > li > a, .nav-tabs.nav-justified > li > a {
    margin-bottom: 0;
  }
}

/* line 190, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav-tabs-justified, .nav-tabs.nav-justified {
  border-bottom: 0;
}

/* line 193, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a {
  margin-right: 0;
  border-radius: 4px;
}

/* line 199, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a,
.nav-tabs-justified > .active > a:hover,
.nav-tabs-justified > .active > a:focus {
  border: 1px solid #ddd;
}

@media (min-width: 768px) {
  /* line 206, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
  .nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a {
    border-bottom: 1px solid #ddd;
    border-radius: 4px 4px 0 0;
  }
  /* line 210, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
  .nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a,
.nav-tabs-justified > .active > a:hover,
.nav-tabs-justified > .active > a:focus {
    border-bottom-color: #fff;
  }
}

/* line 224, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.tab-content > .tab-pane {
  display: none;
}

/* line 227, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.tab-content > .active {
  display: block;
}

/* line 237, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

/* line 11, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar {
  position: relative;
  min-height: 50px;
  margin-bottom: 20px;
  border: 1px solid transparent;
}

/* line 14, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.navbar:before, .navbar:after {
  display: table;
  content: " ";
}

/* line 19, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.navbar:after {
  clear: both;
}

@media (min-width: 768px) {
  /* line 11, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar {
    border-radius: 4px;
  }
}

/* line 14, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.navbar-header:before, .navbar-header:after {
  display: table;
  content: " ";
}

/* line 19, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.navbar-header:after {
  clear: both;
}

@media (min-width: 768px) {
  /* line 31, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-header {
    float: left;
  }
}

/* line 50, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-collapse {
  padding-right: 15px;
  padding-left: 15px;
  overflow-x: visible;
  border-top: 1px solid transparent;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  -webkit-overflow-scrolling: touch;
}

/* line 14, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.navbar-collapse:before, .navbar-collapse:after {
  display: table;
  content: " ";
}

/* line 19, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.navbar-collapse:after {
  clear: both;
}

/* line 59, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-collapse.in {
  overflow-y: auto;
}

@media (min-width: 768px) {
  /* line 50, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-collapse {
    width: auto;
    border-top: 0;
    box-shadow: none;
  }
  /* line 68, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-collapse.collapse {
    display: block !important;
    height: auto !important;
    padding-bottom: 0;
    overflow: visible !important;
  }
  /* line 75, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-collapse.in {
    overflow-y: visible;
  }
  /* line 81, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-fixed-top .navbar-collapse, .navbar-static-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse {
    padding-right: 0;
    padding-left: 0;
  }
}

/* line 90, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-fixed-top,
.navbar-fixed-bottom {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1030;
}

/* line 92, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-fixed-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
  max-height: 340px;
}

@media (max-device-width: 480px) and (orientation: landscape) {
  /* line 92, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-fixed-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
    max-height: 200px;
  }
}

@media (min-width: 768px) {
  /* line 90, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-fixed-top,
.navbar-fixed-bottom {
    border-radius: 0;
  }
}

/* line 112, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-fixed-top {
  top: 0;
  border-width: 0 0 1px;
}

/* line 116, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-fixed-bottom {
  bottom: 0;
  margin-bottom: 0;
  border-width: 1px 0 0;
}

/* line 129, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.container > .navbar-header,
.container > .navbar-collapse,
.container-fluid > .navbar-header,
.container-fluid > .navbar-collapse {
  margin-right: -15px;
  margin-left: -15px;
}

@media (min-width: 768px) {
  /* line 129, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .container > .navbar-header,
.container > .navbar-collapse,
.container-fluid > .navbar-header,
.container-fluid > .navbar-collapse {
    margin-right: 0;
    margin-left: 0;
  }
}

/* line 149, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-static-top {
  z-index: 1000;
  border-width: 0 0 1px;
}

@media (min-width: 768px) {
  /* line 149, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-static-top {
    border-radius: 0;
  }
}

/* line 161, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-brand {
  float: left;
  height: 50px;
  padding: 15px 15px;
  font-size: 18px;
  line-height: 20px;
}

/* line 168, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-brand:hover, .navbar-brand:focus {
  text-decoration: none;
}

/* line 173, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-brand > img {
  display: block;
}

@media (min-width: 768px) {
  /* line 178, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar > .container .navbar-brand, .navbar > .container-fluid .navbar-brand {
    margin-left: -15px;
  }
}

/* line 191, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.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;
}

/* line 204, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-toggle:focus {
  outline: 0;
}

/* line 209, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-toggle .icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px;
}

/* line 215, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-toggle .icon-bar + .icon-bar {
  margin-top: 4px;
}

@media (min-width: 768px) {
  /* line 191, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-toggle {
    display: none;
  }
}

/* line 230, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-nav {
  margin: 7.5px -15px;
}

/* line 233, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-nav > li > a {
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 20px;
}

@media (max-width: 767px) {
  /* line 241, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-nav .open .dropdown-menu {
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    background-color: transparent;
    border: 0;
    box-shadow: none;
  }
  /* line 249, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-nav .open .dropdown-menu > li > a,
.navbar-nav .open .dropdown-menu .dropdown-header {
    padding: 5px 15px 5px 25px;
  }
  /* line 253, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-nav .open .dropdown-menu > li > a {
    line-height: 20px;
  }
  /* line 255, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-nav .open .dropdown-menu > li > a:focus {
    background-image: none;
  }
}

@media (min-width: 768px) {
  /* line 230, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-nav {
    float: left;
    margin: 0;
  }
  /* line 268, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-nav > li {
    float: left;
  }
  /* line 270, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-nav > li > a {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}

/* line 284, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.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) {
  /* line 468, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  .navbar-form .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  /* line 475, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  .navbar-form .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  /* line 482, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  .navbar-form .form-control-static {
    display: inline-block;
  }
  /* line 486, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  .navbar-form .input-group {
    display: inline-table;
    vertical-align: middle;
  }
  /* line 490, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  .navbar-form .input-group .input-group-addon,
.navbar-form .input-group .input-group-btn,
.navbar-form .input-group .form-control {
    width: auto;
  }
  /* line 498, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  .navbar-form .input-group > .form-control {
    width: 100%;
  }
  /* line 502, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  .navbar-form .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
  /* line 509, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  .navbar-form .radio,
.navbar-form .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }
  /* line 516, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  .navbar-form .radio label,
.navbar-form .checkbox label {
    padding-left: 0;
  }
  /* line 520, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  .navbar-form .radio input[type="radio"],
.navbar-form .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0;
  }
  /* line 527, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  .navbar-form .has-feedback .form-control-feedback {
    top: 0;
  }
}

@media (max-width: 767px) {
  /* line 296, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-form .form-group {
    margin-bottom: 5px;
  }
  /* line 300, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-form .form-group:last-child {
    margin-bottom: 0;
  }
}

@media (min-width: 768px) {
  /* line 284, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .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;
  }
}

/* line 325, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-nav > li > .dropdown-menu {
  margin-top: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

/* line 330, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.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;
}

/* line 341, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-btn {
  margin-top: 8px;
  margin-bottom: 8px;
}

/* line 344, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-btn.btn-sm, .btn-group-sm > .navbar-btn.btn {
  margin-top: 10px;
  margin-bottom: 10px;
}

/* line 347, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-btn.btn-xs, .btn-group-xs > .navbar-btn.btn {
  margin-top: 14px;
  margin-bottom: 14px;
}

/* line 357, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-text {
  margin-top: 15px;
  margin-bottom: 15px;
}

@media (min-width: 768px) {
  /* line 357, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-text {
    float: left;
    margin-right: 15px;
    margin-left: 15px;
  }
}

@media (min-width: 768px) {
  /* line 377, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-left {
    float: left !important;
  }
  /* line 380, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-right {
    float: right !important;
    margin-right: -15px;
  }
  /* line 384, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-right ~ .navbar-right {
    margin-right: 0;
  }
}

/* line 395, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default {
  background-color: #f8f8f8;
  border-color: #e7e7e7;
}

/* line 399, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-brand {
  color: #777;
}

/* line 401, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus {
  color: #5e5e5e;
  background-color: transparent;
}

/* line 408, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-text {
  color: #777;
}

/* line 413, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-nav > li > a {
  color: #777;
}

/* line 416, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus {
  color: #333;
  background-color: transparent;
}

/* line 423, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.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;
}

/* line 431, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.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;
}

/* line 442, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.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) {
  /* line 453, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-default .navbar-nav .open .dropdown-menu > li > a {
    color: #777;
  }
  /* line 455, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .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;
  }
  /* line 462, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .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;
  }
  /* line 470, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .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;
  }
}

/* line 481, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-toggle {
  border-color: #ddd;
}

/* line 483, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
  background-color: #ddd;
}

/* line 487, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-toggle .icon-bar {
  background-color: #888;
}

/* line 492, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
  border-color: #e7e7e7;
}

/* line 502, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-link {
  color: #777;
}

/* line 504, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-link:hover {
  color: #333;
}

/* line 509, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .btn-link {
  color: #777;
}

/* line 511, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .btn-link:hover, .navbar-default .btn-link:focus {
  color: #333;
}

/* line 517, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .btn-link[disabled]:hover, .navbar-default .btn-link[disabled]:focus, fieldset[disabled] .navbar-default .btn-link:hover, fieldset[disabled] .navbar-default .btn-link:focus {
  color: #ccc;
}

/* line 527, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse {
  background-color: #222;
  border-color: #090909;
}

/* line 531, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-brand {
  color: #9d9d9d;
}

/* line 533, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-brand:hover, .navbar-inverse .navbar-brand:focus {
  color: #fff;
  background-color: transparent;
}

/* line 540, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-text {
  color: #9d9d9d;
}

/* line 545, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-nav > li > a {
  color: #9d9d9d;
}

/* line 548, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-nav > li > a:hover, .navbar-inverse .navbar-nav > li > a:focus {
  color: #fff;
  background-color: transparent;
}

/* line 555, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse .navbar-nav > .active > a:focus {
  color: #fff;
  background-color: #090909;
}

/* line 563, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.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;
}

/* line 573, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:hover, .navbar-inverse .navbar-nav > .open > a:focus {
  color: #fff;
  background-color: #090909;
}

@media (max-width: 767px) {
  /* line 584, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
    border-color: #090909;
  }
  /* line 587, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
    background-color: #090909;
  }
  /* line 590, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
    color: #9d9d9d;
  }
  /* line 592, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .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;
  }
  /* line 599, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .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: #090909;
  }
  /* line 607, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .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;
  }
}

/* line 619, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-toggle {
  border-color: #333;
}

/* line 621, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-toggle:hover, .navbar-inverse .navbar-toggle:focus {
  background-color: #333;
}

/* line 625, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-toggle .icon-bar {
  background-color: #fff;
}

/* line 630, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-collapse,
.navbar-inverse .navbar-form {
  border-color: #101010;
}

/* line 635, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-link {
  color: #9d9d9d;
}

/* line 637, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-link:hover {
  color: #fff;
}

/* line 642, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .btn-link {
  color: #9d9d9d;
}

/* line 644, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .btn-link:hover, .navbar-inverse .btn-link:focus {
  color: #fff;
}

/* line 650, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .btn-link[disabled]:hover, .navbar-inverse .btn-link[disabled]:focus, fieldset[disabled] .navbar-inverse .btn-link:hover, fieldset[disabled] .navbar-inverse .btn-link:focus {
  color: #444;
}

/* line 6, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_breadcrumbs.scss */
.breadcrumb {
  padding: 8px 15px;
  margin-bottom: 20px;
  list-style: none;
  background-color: #f5f5f5;
  border-radius: 4px;
}

/* line 13, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_breadcrumbs.scss */
.breadcrumb > li {
  display: inline-block;
}

/* line 16, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_breadcrumbs.scss */
.breadcrumb > li + li:before {
  padding: 0 5px;
  color: #ccc;
  content: "/ ";
}

/* line 25, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_breadcrumbs.scss */
.breadcrumb > .active {
  color: #777777;
}

/* line 4, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pagination.scss */
.pagination {
  display: inline-block;
  padding-left: 0;
  margin: 20px 0;
  border-radius: 4px;
}

/* line 10, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pagination.scss */
.pagination > li {
  display: inline;
}

/* line 12, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pagination.scss */
.pagination > li > a,
.pagination > li > span {
  position: relative;
  float: left;
  padding: 6px 12px;
  margin-left: -1px;
  line-height: 1.428571429;
  color: #337ab7;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #ddd;
}

/* line 24, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pagination.scss */
.pagination > li > a:hover, .pagination > li > a:focus,
.pagination > li > span:hover,
.pagination > li > span:focus {
  z-index: 2;
  color: #23527c;
  background-color: #eeeeee;
  border-color: #ddd;
}

/* line 33, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pagination.scss */
.pagination > li:first-child > a,
.pagination > li:first-child > span {
  margin-left: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

/* line 40, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pagination.scss */
.pagination > li:last-child > a,
.pagination > li:last-child > span {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

/* line 49, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pagination.scss */
.pagination > .active > a, .pagination > .active > a:hover, .pagination > .active > a:focus,
.pagination > .active > span,
.pagination > .active > span:hover,
.pagination > .active > span:focus {
  z-index: 3;
  color: #fff;
  cursor: default;
  background-color: #337ab7;
  border-color: #337ab7;
}

/* line 61, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pagination.scss */
.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;
}

/* line 5, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_pagination.scss */
.pagination-lg > li > a,
.pagination-lg > li > span {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
}

/* line 12, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_pagination.scss */
.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}

/* line 18, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_pagination.scss */
.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}

/* line 5, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_pagination.scss */
.pagination-sm > li > a,
.pagination-sm > li > span {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
}

/* line 12, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_pagination.scss */
.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}

/* line 18, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_pagination.scss */
.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}

/* line 6, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pager.scss */
.pager {
  padding-left: 0;
  margin: 20px 0;
  text-align: center;
  list-style: none;
}

/* line 14, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.pager:before, .pager:after {
  display: table;
  content: " ";
}

/* line 19, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.pager:after {
  clear: both;
}

/* line 12, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pager.scss */
.pager li {
  display: inline;
}

/* line 14, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pager.scss */
.pager li > a,
.pager li > span {
  display: inline-block;
  padding: 5px 14px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 15px;
}

/* line 23, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pager.scss */
.pager li > a:hover,
.pager li > a:focus {
  text-decoration: none;
  background-color: #eeeeee;
}

/* line 31, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pager.scss */
.pager .next > a,
.pager .next > span {
  float: right;
}

/* line 38, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pager.scss */
.pager .previous > a,
.pager .previous > span {
  float: left;
}

/* line 45, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pager.scss */
.pager .disabled > a,
.pager .disabled > a:hover,
.pager .disabled > a:focus,
.pager .disabled > span {
  color: #777777;
  cursor: not-allowed;
  background-color: #fff;
}

/* line 5, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_labels.scss */
.label {
  display: inline;
  padding: .2em .6em .3em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: .25em;
}

/* line 20, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_labels.scss */
.label:empty {
  display: none;
}

/* line 25, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_labels.scss */
.btn .label {
  position: relative;
  top: -1px;
}

/* line 33, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_labels.scss */
a.label:hover, a.label:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

/* line 44, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_labels.scss */
.label-default {
  background-color: #777777;
}

/* line 7, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_labels.scss */
.label-default[href]:hover, .label-default[href]:focus {
  background-color: #5e5e5e;
}

/* line 48, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_labels.scss */
.label-primary {
  background-color: #337ab7;
}

/* line 7, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_labels.scss */
.label-primary[href]:hover, .label-primary[href]:focus {
  background-color: #286090;
}

/* line 52, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_labels.scss */
.label-success {
  background-color: #5cb85c;
}

/* line 7, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_labels.scss */
.label-success[href]:hover, .label-success[href]:focus {
  background-color: #449d44;
}

/* line 56, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_labels.scss */
.label-info {
  background-color: #5bc0de;
}

/* line 7, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_labels.scss */
.label-info[href]:hover, .label-info[href]:focus {
  background-color: #31b0d5;
}

/* line 60, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_labels.scss */
.label-warning {
  background-color: #f0ad4e;
}

/* line 7, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_labels.scss */
.label-warning[href]:hover, .label-warning[href]:focus {
  background-color: #ec971f;
}

/* line 64, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_labels.scss */
.label-danger {
  background-color: #d9534f;
}

/* line 7, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_labels.scss */
.label-danger[href]:hover, .label-danger[href]:focus {
  background-color: #c9302c;
}

/* line 7, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_badges.scss */
.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;
}

/* line 22, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_badges.scss */
.badge:empty {
  display: none;
}

/* line 27, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_badges.scss */
.btn .badge {
  position: relative;
  top: -1px;
}

/* line 32, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_badges.scss */
.btn-xs .badge, .btn-group-xs > .btn .badge {
  top: 0;
  padding: 1px 5px;
}

/* line 41, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_badges.scss */
.list-group-item.active > .badge, .nav-pills > .active > a > .badge {
  color: #337ab7;
  background-color: #fff;
}

/* line 47, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_badges.scss */
.list-group-item > .badge {
  float: right;
}

/* line 51, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_badges.scss */
.list-group-item > .badge + .badge {
  margin-right: 5px;
}

/* line 55, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_badges.scss */
.nav-pills > li > a > .badge {
  margin-left: 3px;
}

/* line 62, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_badges.scss */
a.badge:hover, a.badge:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

/* line 6, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_jumbotron.scss */
.jumbotron {
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 30px;
  color: inherit;
  background-color: #eeeeee;
}

/* line 13, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_jumbotron.scss */
.jumbotron h1,
.jumbotron .h1 {
  color: inherit;
}

/* line 18, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_jumbotron.scss */
.jumbotron p {
  margin-bottom: 15px;
  font-size: 21px;
  font-weight: 200;
}

/* line 24, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_jumbotron.scss */
.jumbotron > hr {
  border-top-color: #d5d5d5;
}

/* line 28, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_jumbotron.scss */
.container .jumbotron, .container-fluid .jumbotron {
  padding-right: 15px;
  padding-left: 15px;
  border-radius: 6px;
}

/* line 35, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_jumbotron.scss */
.jumbotron .container {
  max-width: 100%;
}

@media screen and (min-width: 768px) {
  /* line 6, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_jumbotron.scss */
  .jumbotron {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  /* line 43, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_jumbotron.scss */
  .container .jumbotron, .container-fluid .jumbotron {
    padding-right: 60px;
    padding-left: 60px;
  }
  /* line 49, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_jumbotron.scss */
  .jumbotron h1,
.jumbotron .h1 {
    font-size: 63px;
  }
}

/* line 7, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_thumbnails.scss */
.thumbnail {
  display: block;
  padding: 4px;
  margin-bottom: 20px;
  line-height: 1.428571429;
  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;
}

/* line 17, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_thumbnails.scss */
.thumbnail > img,
.thumbnail a > img {
  display: block;
  max-width: 100%;
  height: auto;
  margin-right: auto;
  margin-left: auto;
}

/* line 27, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_thumbnails.scss */
.thumbnail .caption {
  padding: 9px;
  color: #333333;
}

/* line 34, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_thumbnails.scss */
a.thumbnail:hover,
a.thumbnail:focus,
a.thumbnail.active {
  border-color: #337ab7;
}

/* line 9, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_alerts.scss */
.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
}

/* line 16, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_alerts.scss */
.alert h4 {
  margin-top: 0;
  color: inherit;
}

/* line 22, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_alerts.scss */
.alert .alert-link {
  font-weight: bold;
}

/* line 27, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_alerts.scss */
.alert > p,
.alert > ul {
  margin-bottom: 0;
}

/* line 32, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_alerts.scss */
.alert > p + p {
  margin-top: 5px;
}

/* line 42, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_alerts.scss */
.alert-dismissable,
.alert-dismissible {
  padding-right: 35px;
}

/* line 47, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_alerts.scss */
.alert-dismissable .close,
.alert-dismissible .close {
  position: relative;
  top: -2px;
  right: -21px;
  color: inherit;
}

/* line 59, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_alerts.scss */
.alert-success {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}

/* line 8, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_alerts.scss */
.alert-success hr {
  border-top-color: #c9e2b3;
}

/* line 12, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_alerts.scss */
.alert-success .alert-link {
  color: #2b542c;
}

/* line 63, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_alerts.scss */
.alert-info {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1;
}

/* line 8, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_alerts.scss */
.alert-info hr {
  border-top-color: #a6e1ec;
}

/* line 12, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_alerts.scss */
.alert-info .alert-link {
  color: #245269;
}

/* line 67, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_alerts.scss */
.alert-warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
}

/* line 8, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_alerts.scss */
.alert-warning hr {
  border-top-color: #f7e1b5;
}

/* line 12, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_alerts.scss */
.alert-warning .alert-link {
  color: #66512c;
}

/* line 71, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_alerts.scss */
.alert-danger {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}

/* line 8, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_alerts.scss */
.alert-danger hr {
  border-top-color: #e4b9c0;
}

/* line 12, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_alerts.scss */
.alert-danger .alert-link {
  color: #843534;
}

@-webkit-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;
  }
}

/* line 26, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_progress-bars.scss */
.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);
}

/* line 36, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_progress-bars.scss */
.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;
}

/* line 54, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_progress-bars.scss */
.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);
  background-size: 40px 40px;
}

/* line 64, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_progress-bars.scss */
.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;
}

/* line 73, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_progress-bars.scss */
.progress-bar-success {
  background-color: #5cb85c;
}

/* line 7, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_progress-bar.scss */
.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);
}

/* line 77, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_progress-bars.scss */
.progress-bar-info {
  background-color: #5bc0de;
}

/* line 7, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_progress-bar.scss */
.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);
}

/* line 81, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_progress-bars.scss */
.progress-bar-warning {
  background-color: #f0ad4e;
}

/* line 7, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_progress-bar.scss */
.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);
}

/* line 85, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_progress-bars.scss */
.progress-bar-danger {
  background-color: #d9534f;
}

/* line 7, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_progress-bar.scss */
.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);
}

/* line 1, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_media.scss */
.media {
  margin-top: 15px;
}

/* line 5, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_media.scss */
.media:first-child {
  margin-top: 0;
}

/* line 10, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_media.scss */
.media,
.media-body {
  overflow: hidden;
  zoom: 1;
}

/* line 16, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_media.scss */
.media-body {
  width: 10000px;
}

/* line 20, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_media.scss */
.media-object {
  display: block;
}

/* line 24, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_media.scss */
.media-object.img-thumbnail {
  max-width: none;
}

/* line 29, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_media.scss */
.media-right,
.media > .pull-right {
  padding-left: 10px;
}

/* line 34, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_media.scss */
.media-left,
.media > .pull-left {
  padding-right: 10px;
}

/* line 39, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_media.scss */
.media-left,
.media-right,
.media-body {
  display: table-cell;
  vertical-align: top;
}

/* line 46, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_media.scss */
.media-middle {
  vertical-align: middle;
}

/* line 50, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_media.scss */
.media-bottom {
  vertical-align: bottom;
}

/* line 55, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_media.scss */
.media-heading {
  margin-top: 0;
  margin-bottom: 5px;
}

/* line 63, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_media.scss */
.media-list {
  padding-left: 0;
  list-style: none;
}

/* line 10, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
.list-group {
  padding-left: 0;
  margin-bottom: 20px;
}

/* line 21, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item {
  position: relative;
  display: block;
  padding: 10px 15px;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid #ddd;
}

/* line 31, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

/* line 34, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item:last-child {
  margin-bottom: 0;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}

/* line 40, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item.disabled, .list-group-item.disabled:hover, .list-group-item.disabled:focus {
  color: #777777;
  cursor: not-allowed;
  background-color: #eeeeee;
}

/* line 48, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
.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;
}

/* line 51, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
.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;
}

/* line 57, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
.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;
}

/* line 66, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item.active .list-group-item-heading,
.list-group-item.active .list-group-item-heading > small,
.list-group-item.active .list-group-item-heading > .small, .list-group-item.active:hover .list-group-item-heading,
.list-group-item.active:hover .list-group-item-heading > small,
.list-group-item.active:hover .list-group-item-heading > .small, .list-group-item.active:focus .list-group-item-heading,
.list-group-item.active:focus .list-group-item-heading > small,
.list-group-item.active:focus .list-group-item-heading > .small {
  color: inherit;
}

/* line 71, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
.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;
}

/* line 83, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
a.list-group-item,
button.list-group-item {
  color: #555;
}

/* line 87, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
a.list-group-item .list-group-item-heading,
button.list-group-item .list-group-item-heading {
  color: #333;
}

/* line 92, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
a.list-group-item:hover, a.list-group-item:focus,
button.list-group-item:hover,
button.list-group-item:focus {
  color: #555;
  text-decoration: none;
  background-color: #f5f5f5;
}

/* line 100, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
button.list-group-item {
  width: 100%;
  text-align: left;
}

/* line 4, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
.list-group-item-success {
  color: #3c763d;
  background-color: #dff0d8;
}

/* line 11, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-success,
button.list-group-item-success {
  color: #3c763d;
}

/* line 14, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-success .list-group-item-heading,
button.list-group-item-success .list-group-item-heading {
  color: inherit;
}

/* line 18, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-success:hover, a.list-group-item-success:focus,
button.list-group-item-success:hover,
button.list-group-item-success:focus {
  color: #3c763d;
  background-color: #d0e9c6;
}

/* line 23, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-success.active, a.list-group-item-success.active:hover, a.list-group-item-success.active:focus,
button.list-group-item-success.active,
button.list-group-item-success.active:hover,
button.list-group-item-success.active:focus {
  color: #fff;
  background-color: #3c763d;
  border-color: #3c763d;
}

/* line 4, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
.list-group-item-info {
  color: #31708f;
  background-color: #d9edf7;
}

/* line 11, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-info,
button.list-group-item-info {
  color: #31708f;
}

/* line 14, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-info .list-group-item-heading,
button.list-group-item-info .list-group-item-heading {
  color: inherit;
}

/* line 18, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-info:hover, a.list-group-item-info:focus,
button.list-group-item-info:hover,
button.list-group-item-info:focus {
  color: #31708f;
  background-color: #c4e3f3;
}

/* line 23, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-info.active, a.list-group-item-info.active:hover, a.list-group-item-info.active:focus,
button.list-group-item-info.active,
button.list-group-item-info.active:hover,
button.list-group-item-info.active:focus {
  color: #fff;
  background-color: #31708f;
  border-color: #31708f;
}

/* line 4, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
.list-group-item-warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
}

/* line 11, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-warning,
button.list-group-item-warning {
  color: #8a6d3b;
}

/* line 14, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-warning .list-group-item-heading,
button.list-group-item-warning .list-group-item-heading {
  color: inherit;
}

/* line 18, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-warning:hover, a.list-group-item-warning:focus,
button.list-group-item-warning:hover,
button.list-group-item-warning:focus {
  color: #8a6d3b;
  background-color: #faf2cc;
}

/* line 23, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-warning.active, a.list-group-item-warning.active:hover, a.list-group-item-warning.active:focus,
button.list-group-item-warning.active,
button.list-group-item-warning.active:hover,
button.list-group-item-warning.active:focus {
  color: #fff;
  background-color: #8a6d3b;
  border-color: #8a6d3b;
}

/* line 4, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
.list-group-item-danger {
  color: #a94442;
  background-color: #f2dede;
}

/* line 11, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-danger,
button.list-group-item-danger {
  color: #a94442;
}

/* line 14, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-danger .list-group-item-heading,
button.list-group-item-danger .list-group-item-heading {
  color: inherit;
}

/* line 18, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-danger:hover, a.list-group-item-danger:focus,
button.list-group-item-danger:hover,
button.list-group-item-danger:focus {
  color: #a94442;
  background-color: #ebcccc;
}

/* line 23, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-danger.active, a.list-group-item-danger.active:hover, a.list-group-item-danger.active:focus,
button.list-group-item-danger.active,
button.list-group-item-danger.active:hover,
button.list-group-item-danger.active:focus {
  color: #fff;
  background-color: #a94442;
  border-color: #a94442;
}

/* line 121, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item-heading {
  margin-top: 0;
  margin-bottom: 5px;
}

/* line 125, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item-text {
  margin-bottom: 0;
  line-height: 1.3;
}

/* line 7, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.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);
}

/* line 16, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel-body {
  padding: 15px;
}

/* line 14, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.panel-body:before, .panel-body:after {
  display: table;
  content: " ";
}

/* line 19, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.panel-body:after {
  clear: both;
}

/* line 22, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel-heading {
  padding: 10px 15px;
  border-bottom: 1px solid transparent;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}

/* line 27, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel-heading > .dropdown .dropdown-toggle {
  color: inherit;
}

/* line 33, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  color: inherit;
}

/* line 39, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel-title > a,
.panel-title > small,
.panel-title > .small,
.panel-title > small > a,
.panel-title > .small > a {
  color: inherit;
}

/* line 49, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel-footer {
  padding: 10px 15px;
  background-color: #f5f5f5;
  border-top: 1px solid #ddd;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

/* line 63, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel > .list-group,
.panel > .panel-collapse > .list-group {
  margin-bottom: 0;
}

/* line 67, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel > .list-group .list-group-item,
.panel > .panel-collapse > .list-group .list-group-item {
  border-width: 1px 0;
  border-radius: 0;
}

/* line 74, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.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;
}

/* line 82, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.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;
}

/* line 89, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

/* line 96, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel-heading + .list-group .list-group-item:first-child {
  border-top-width: 0;
}

/* line 100, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.list-group + .panel-footer {
  border-top-width: 0;
}

/* line 110, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table,
.panel > .table-responsive > .table,
.panel > .panel-collapse > .table {
  margin-bottom: 0;
}

/* line 115, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table caption,
.panel > .table-responsive > .table caption,
.panel > .panel-collapse > .table caption {
  padding-right: 15px;
  padding-left: 15px;
}

/* line 121, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table:first-child,
.panel > .table-responsive:first-child > .table:first-child {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}

/* line 127, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel > .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 > thead: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;
}

/* line 131, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .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 th:first-child,
.panel > .table-responsive:first-child > .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 th:first-child {
  border-top-left-radius: 3px;
}

/* line 135, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .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 th:last-child,
.panel > .table-responsive:first-child > .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 th:last-child {
  border-top-right-radius: 3px;
}

/* line 143, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table:last-child,
.panel > .table-responsive:last-child > .table:last-child {
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

/* line 149, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel > .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 > tbody: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;
}

/* line 153, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .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 th:first-child,
.panel > .table-responsive:last-child > .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 th:first-child {
  border-bottom-left-radius: 3px;
}

/* line 157, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .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 th:last-child,
.panel > .table-responsive:last-child > .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 th:last-child {
  border-bottom-right-radius: 3px;
}

/* line 164, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel > .panel-body + .table,
.panel > .panel-body + .table-responsive,
.panel > .table + .panel-body,
.panel > .table-responsive + .panel-body {
  border-top: 1px solid #ddd;
}

/* line 170, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table > tbody:first-child > tr:first-child th,
.panel > .table > tbody:first-child > tr:first-child td {
  border-top: 0;
}

/* line 174, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table-bordered,
.panel > .table-responsive > .table-bordered {
  border: 0;
}

/* line 181, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table-bordered > thead > tr > th:first-child,
.panel > .table-bordered > thead > tr > td:first-child,
.panel > .table-bordered > tbody > tr > th:first-child,
.panel > .table-bordered > tbody > tr > td:first-child,
.panel > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-bordered > tfoot > tr > td:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
  border-left: 0;
}

/* line 185, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table-bordered > thead > tr > th:last-child,
.panel > .table-bordered > thead > tr > td:last-child,
.panel > .table-bordered > tbody > tr > th:last-child,
.panel > .table-bordered > tbody > tr > td:last-child,
.panel > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-bordered > tfoot > tr > td:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
  border-right: 0;
}

/* line 194, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table-bordered > thead > tr:first-child > td,
.panel > .table-bordered > thead > tr:first-child > th,
.panel > .table-bordered > tbody > tr:first-child > td,
.panel > .table-bordered > tbody > tr:first-child > th,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
  border-bottom: 0;
}

/* line 203, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table-bordered > tbody > tr:last-child > td,
.panel > .table-bordered > tbody > tr:last-child > th,
.panel > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-bordered > tfoot > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
  border-bottom: 0;
}

/* line 210, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table-responsive {
  margin-bottom: 0;
  border: 0;
}

/* line 222, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel-group {
  margin-bottom: 20px;
}

/* line 226, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel-group .panel {
  margin-bottom: 0;
  border-radius: 4px;
}

/* line 230, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel-group .panel + .panel {
  margin-top: 5px;
}

/* line 235, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel-group .panel-heading {
  border-bottom: 0;
}

/* line 238, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel-group .panel-heading + .panel-collapse > .panel-body,
.panel-group .panel-heading + .panel-collapse > .list-group {
  border-top: 1px solid #ddd;
}

/* line 244, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel-group .panel-footer {
  border-top: 0;
}

/* line 246, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel-group .panel-footer + .panel-collapse .panel-body {
  border-bottom: 1px solid #ddd;
}

/* line 254, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel-default {
  border-color: #ddd;
}

/* line 6, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-default > .panel-heading {
  color: #333333;
  background-color: #f5f5f5;
  border-color: #ddd;
}

/* line 11, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-default > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #ddd;
}

/* line 14, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-default > .panel-heading .badge {
  color: #f5f5f5;
  background-color: #333333;
}

/* line 20, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-default > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #ddd;
}

/* line 257, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel-primary {
  border-color: #337ab7;
}

/* line 6, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-primary > .panel-heading {
  color: #fff;
  background-color: #337ab7;
  border-color: #337ab7;
}

/* line 11, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-primary > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #337ab7;
}

/* line 14, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-primary > .panel-heading .badge {
  color: #337ab7;
  background-color: #fff;
}

/* line 20, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-primary > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #337ab7;
}

/* line 260, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel-success {
  border-color: #d6e9c6;
}

/* line 6, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-success > .panel-heading {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}

/* line 11, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-success > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #d6e9c6;
}

/* line 14, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-success > .panel-heading .badge {
  color: #dff0d8;
  background-color: #3c763d;
}

/* line 20, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-success > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #d6e9c6;
}

/* line 263, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel-info {
  border-color: #bce8f1;
}

/* line 6, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-info > .panel-heading {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1;
}

/* line 11, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-info > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #bce8f1;
}

/* line 14, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-info > .panel-heading .badge {
  color: #d9edf7;
  background-color: #31708f;
}

/* line 20, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-info > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #bce8f1;
}

/* line 266, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel-warning {
  border-color: #faebcc;
}

/* line 6, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-warning > .panel-heading {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
}

/* line 11, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-warning > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #faebcc;
}

/* line 14, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-warning > .panel-heading .badge {
  color: #fcf8e3;
  background-color: #8a6d3b;
}

/* line 20, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-warning > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #faebcc;
}

/* line 269, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel-danger {
  border-color: #ebccd1;
}

/* line 6, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-danger > .panel-heading {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}

/* line 11, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-danger > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #ebccd1;
}

/* line 14, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-danger > .panel-heading .badge {
  color: #f2dede;
  background-color: #a94442;
}

/* line 20, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-danger > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #ebccd1;
}

/* line 5, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-embed.scss */
.embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
}

/* line 12, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-embed.scss */
.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;
}

/* line 28, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-embed.scss */
.embed-responsive-16by9 {
  padding-bottom: 56.25%;
}

/* line 33, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-embed.scss */
.embed-responsive-4by3 {
  padding-bottom: 75%;
}

/* line 7, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_wells.scss */
.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);
}

/* line 15, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_wells.scss */
.well blockquote {
  border-color: #ddd;
  border-color: rgba(0, 0, 0, 0.15);
}

/* line 22, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_wells.scss */
.well-lg {
  padding: 24px;
  border-radius: 6px;
}

/* line 26, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_wells.scss */
.well-sm {
  padding: 9px;
  border-radius: 3px;
}

/* line 6, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_close.scss */
.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;
}

/* line 15, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_close.scss */
.close:hover, .close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
  filter: alpha(opacity=50);
  opacity: 0.5;
}

/* line 30, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_close.scss */
button.close {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  appearance: none;
}

/* line 11, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
.modal-open {
  overflow: hidden;
}

/* line 16, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}

/* line 32, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
.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;
  -moz-transition: -moz-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
}

/* line 36, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
.modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}

/* line 38, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

/* line 44, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}

/* line 51, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
.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;
}

/* line 64, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
}

/* line 73, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
.modal-backdrop.fade {
  filter: alpha(opacity=0);
  opacity: 0;
}

/* line 74, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
.modal-backdrop.in {
  filter: alpha(opacity=50);
  opacity: 0.5;
}

/* line 79, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
}

/* line 14, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.modal-header:before, .modal-header:after {
  display: table;
  content: " ";
}

/* line 19, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.modal-header:after {
  clear: both;
}

/* line 85, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
.modal-header .close {
  margin-top: -2px;
}

/* line 90, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
.modal-title {
  margin: 0;
  line-height: 1.428571429;
}

/* line 97, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
.modal-body {
  position: relative;
  padding: 15px;
}

/* line 103, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}

/* line 14, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.modal-footer:before, .modal-footer:after {
  display: table;
  content: " ";
}

/* line 19, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.modal-footer:after {
  clear: both;
}

/* line 110, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
.modal-footer .btn + .btn {
  margin-bottom: 0;
  margin-left: 5px;
}

/* line 115, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}

/* line 119, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}

/* line 125, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 768px) {
  /* line 136, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
  .modal-dialog {
    width: 600px;
    margin: 30px auto;
  }
  /* line 140, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
  .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);
  }
  /* line 145, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
  .modal-sm {
    width: 300px;
  }
}

@media (min-width: 992px) {
  /* line 149, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
  .modal-lg {
    width: 900px;
  }
}

/* line 7, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
.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.428571429;
  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;
}

/* line 18, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.in {
  filter: alpha(opacity=90);
  opacity: 0.9;
}

/* line 19, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.top {
  padding: 5px 0;
  margin-top: -3px;
}

/* line 23, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.right {
  padding: 0 5px;
  margin-left: 3px;
}

/* line 27, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.bottom {
  padding: 5px 0;
  margin-top: 3px;
}

/* line 31, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.left {
  padding: 0 5px;
  margin-left: -3px;
}

/* line 37, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.top .tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}

/* line 44, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.top-left .tooltip-arrow {
  right: 5px;
  bottom: 0;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}

/* line 51, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.top-right .tooltip-arrow {
  bottom: 0;
  left: 5px;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}

/* line 58, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: #000;
}

/* line 65, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: #000;
}

/* line 72, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}

/* line 79, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.bottom-left .tooltip-arrow {
  top: 0;
  right: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}

/* line 86, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.bottom-right .tooltip-arrow {
  top: 0;
  left: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}

/* line 96, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 4px;
}

/* line 106, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}

/* line 6, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
.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.428571429;
  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);
}

/* line 26, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
.popover.top {
  margin-top: -10px;
}

/* line 27, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
.popover.right {
  margin-left: 10px;
}

/* line 28, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
.popover.bottom {
  margin-top: 10px;
}

/* line 29, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
.popover.left {
  margin-left: -10px;
}

/* line 33, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
.popover > .arrow {
  border-width: 11px;
}

/* line 36, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
.popover > .arrow, .popover > .arrow:after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}

/* line 46, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
.popover > .arrow:after {
  content: "";
  border-width: 10px;
}

/* line 52, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
.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;
}

/* line 59, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
.popover.top > .arrow:after {
  bottom: 1px;
  margin-left: -10px;
  content: " ";
  border-top-color: #fff;
  border-bottom-width: 0;
}

/* line 67, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
.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;
}

/* line 74, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
.popover.right > .arrow:after {
  bottom: -10px;
  left: 1px;
  content: " ";
  border-right-color: #fff;
  border-left-width: 0;
}

/* line 82, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
.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);
}

/* line 89, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
.popover.bottom > .arrow:after {
  top: 1px;
  margin-left: -10px;
  content: " ";
  border-top-width: 0;
  border-bottom-color: #fff;
}

/* line 98, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
.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);
}

/* line 105, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
.popover.left > .arrow:after {
  right: 1px;
  bottom: -10px;
  content: " ";
  border-right-width: 0;
  border-left-color: #fff;
}

/* line 115, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
.popover-title {
  padding: 8px 14px;
  margin: 0;
  font-size: 14px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-radius: 5px 5px 0 0;
}

/* line 124, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
.popover-content {
  padding: 9px 14px;
}

/* line 7, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
.carousel {
  position: relative;
}

/* line 11, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* line 16, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
.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;
}

/* line 22, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  display: block;
  max-width: 100%;
  height: auto;
  line-height: 1;
}

@media all and (transform-3d), (-webkit-transform-3d) {
  /* line 16, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
  .carousel-inner > .item {
    -webkit-transition: -webkit-transform 0.6s ease-in-out;
    -moz-transition: -moz-transform 0.6s ease-in-out;
    -o-transition: -o-transform 0.6s ease-in-out;
    transition: transform 0.6s ease-in-out;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000px;
    -moz-perspective: 1000px;
    perspective: 1000px;
  }
  /* line 34, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
  .carousel-inner > .item.next, .carousel-inner > .item.active.right {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    left: 0;
  }
  /* line 39, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
  .carousel-inner > .item.prev, .carousel-inner > .item.active.left {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    left: 0;
  }
  /* line 44, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
  .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;
  }
}

/* line 53, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-inner > .active,
.carousel-inner > .next,
.carousel-inner > .prev {
  display: block;
}

/* line 59, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-inner > .active {
  left: 0;
}

/* line 63, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-inner > .next,
.carousel-inner > .prev {
  position: absolute;
  top: 0;
  width: 100%;
}

/* line 70, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-inner > .next {
  left: 100%;
}

/* line 73, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-inner > .prev {
  left: -100%;
}

/* line 76, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-inner > .next.left,
.carousel-inner > .prev.right {
  left: 0;
}

/* line 81, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-inner > .active.left {
  left: -100%;
}

/* line 84, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-inner > .active.right {
  left: 100%;
}

/* line 93, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
.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;
}

/* line 109, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
.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: 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;
}

/* line 112, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
.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: 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;
}

/* line 119, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-control:hover, .carousel-control:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  filter: alpha(opacity=90);
  opacity: 0.9;
}

/* line 128, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
.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;
}

/* line 138, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-control .icon-prev,
.carousel-control .glyphicon-chevron-left {
  left: 50%;
  margin-left: -10px;
}

/* line 143, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-right {
  right: 50%;
  margin-right: -10px;
}

/* line 148, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-control .icon-prev,
.carousel-control .icon-next {
  width: 20px;
  height: 20px;
  font-family: serif;
  line-height: 1;
}

/* line 157, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-control .icon-prev:before {
  content: "\2039";
}

/* line 162, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-control .icon-next:before {
  content: "\203a";
}

/* line 173, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
.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;
}

/* line 184, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
.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;
}

/* line 207, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-indicators .active {
  width: 12px;
  height: 12px;
  margin: 0;
  background-color: #fff;
}

/* line 218, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
.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);
}

/* line 230, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-caption .btn {
  text-shadow: none;
}

@media screen and (min-width: 768px) {
  /* line 241, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
  .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;
  }
  /* line 250, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
  .carousel-control .glyphicon-chevron-left,
.carousel-control .icon-prev {
    margin-left: -10px;
  }
  /* line 254, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
  .carousel-control .glyphicon-chevron-right,
.carousel-control .icon-next {
    margin-right: -10px;
  }
  /* line 261, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
  .carousel-caption {
    right: 20%;
    left: 20%;
    padding-bottom: 30px;
  }
  /* line 268, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
  .carousel-indicators {
    bottom: 20px;
  }
}

/* line 14, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.clearfix:before, .clearfix:after {
  display: table;
  content: " ";
}

/* line 19, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.clearfix:after {
  clear: both;
}

/* line 12, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_utilities.scss */
.center-block {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

/* line 15, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_utilities.scss */
.pull-right {
  float: right !important;
}

/* line 18, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_utilities.scss */
.pull-left {
  float: left !important;
}

/* line 27, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_utilities.scss */
.hide {
  display: none !important;
}

/* line 30, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_utilities.scss */
.show {
  display: block !important;
}

/* line 33, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_utilities.scss */
.invisible {
  visibility: hidden;
}

/* line 36, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_utilities.scss */
.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

/* line 45, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_utilities.scss */
.hidden {
  display: none !important;
}

/* line 53, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_utilities.scss */
.affix {
  position: fixed;
}

@-ms-viewport {
  width: device-width;
}

/* line 13, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
.visible-xs {
  display: none !important;
}

/* line 13, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
.visible-sm {
  display: none !important;
}

/* line 13, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
.visible-md {
  display: none !important;
}

/* line 13, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
.visible-lg {
  display: none !important;
}

/* line 36, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
.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) {
  /* line 3, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  .visible-xs {
    display: block !important;
  }
  /* line 6, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  table.visible-xs {
    display: table !important;
  }
  /* line 7, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  tr.visible-xs {
    display: table-row !important;
  }
  /* line 8, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  th.visible-xs,
td.visible-xs {
    display: table-cell !important;
  }
}

@media (max-width: 767px) {
  /* line 54, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-xs-block {
    display: block !important;
  }
}

@media (max-width: 767px) {
  /* line 59, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-xs-inline {
    display: inline !important;
  }
}

@media (max-width: 767px) {
  /* line 64, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-xs-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  /* line 3, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  .visible-sm {
    display: block !important;
  }
  /* line 6, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  table.visible-sm {
    display: table !important;
  }
  /* line 7, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  tr.visible-sm {
    display: table-row !important;
  }
  /* line 8, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  th.visible-sm,
td.visible-sm {
    display: table-cell !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  /* line 73, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-sm-block {
    display: block !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  /* line 78, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-sm-inline {
    display: inline !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  /* line 83, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-sm-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  /* line 3, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  .visible-md {
    display: block !important;
  }
  /* line 6, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  table.visible-md {
    display: table !important;
  }
  /* line 7, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  tr.visible-md {
    display: table-row !important;
  }
  /* line 8, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  th.visible-md,
td.visible-md {
    display: table-cell !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  /* line 92, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-md-block {
    display: block !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  /* line 97, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-md-inline {
    display: inline !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  /* line 102, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-md-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 1200px) {
  /* line 3, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  .visible-lg {
    display: block !important;
  }
  /* line 6, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  table.visible-lg {
    display: table !important;
  }
  /* line 7, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  tr.visible-lg {
    display: table-row !important;
  }
  /* line 8, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  th.visible-lg,
td.visible-lg {
    display: table-cell !important;
  }
}

@media (min-width: 1200px) {
  /* line 111, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-lg-block {
    display: block !important;
  }
}

@media (min-width: 1200px) {
  /* line 116, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-lg-inline {
    display: inline !important;
  }
}

@media (min-width: 1200px) {
  /* line 121, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-lg-inline-block {
    display: inline-block !important;
  }
}

@media (max-width: 767px) {
  /* line 13, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  .hidden-xs {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  /* line 13, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  .hidden-sm {
    display: none !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  /* line 13, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  .hidden-md {
    display: none !important;
  }
}

@media (min-width: 1200px) {
  /* line 13, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  .hidden-lg {
    display: none !important;
  }
}

/* line 13, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
.visible-print {
  display: none !important;
}

@media print {
  /* line 3, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  .visible-print {
    display: block !important;
  }
  /* line 6, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  table.visible-print {
    display: table !important;
  }
  /* line 7, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  tr.visible-print {
    display: table-row !important;
  }
  /* line 8, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  th.visible-print,
td.visible-print {
    display: table-cell !important;
  }
}

/* line 155, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
.visible-print-block {
  display: none !important;
}

@media print {
  /* line 155, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-print-block {
    display: block !important;
  }
}

/* line 162, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
.visible-print-inline {
  display: none !important;
}

@media print {
  /* line 162, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-print-inline {
    display: inline !important;
  }
}

/* line 169, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
.visible-print-inline-block {
  display: none !important;
}

@media print {
  /* line 169, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-print-inline-block {
    display: inline-block !important;
  }
}

@media print {
  /* line 13, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  .hidden-print {
    display: none !important;
  }
}

/*!
 * Datetimepicker for Bootstrap 3
 * version : 4.17.47
 * https://github.com/Eonasdan/bootstrap-datetimepicker/
 */
/* line 6, vendor/bundle/ruby/3.3.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
.bootstrap-datetimepicker-widget {
  list-style: none;
}

/* line 9, vendor/bundle/ruby/3.3.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
.bootstrap-datetimepicker-widget.dropdown-menu {
  display: block;
  margin: 2px 0;
  padding: 4px;
  width: 19em;
}

@media (min-width: 768px) {
  /* line 16, vendor/bundle/ruby/3.3.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
  .bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs {
    width: 38em;
  }
}

@media (min-width: 992px) {
  /* line 21, vendor/bundle/ruby/3.3.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
  .bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs {
    width: 38em;
  }
}

@media (min-width: 1200px) {
  /* line 26, vendor/bundle/ruby/3.3.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
  .bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs {
    width: 38em;
  }
}

/* line 30, vendor/bundle/ruby/3.3.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
.bootstrap-datetimepicker-widget.dropdown-menu:before,
.bootstrap-datetimepicker-widget.dropdown-menu:after {
  content: '';
  display: inline-block;
  position: absolute;
}

/* line 36, vendor/bundle/ruby/3.3.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
.bootstrap-datetimepicker-widget.dropdown-menu.bottom:before {
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #ccc;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  top: -7px;
  left: 7px;
}

/* line 44, vendor/bundle/ruby/3.3.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
.bootstrap-datetimepicker-widget.dropdown-menu.bottom:after {
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid white;
  top: -6px;
  left: 8px;
}

/* line 51, vendor/bundle/ruby/3.3.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
.bootstrap-datetimepicker-widget.dropdown-menu.top:before {
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 7px solid #ccc;
  border-top-color: rgba(0, 0, 0, 0.2);
  bottom: -7px;
  left: 6px;
}

/* line 59, vendor/bundle/ruby/3.3.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
.bootstrap-datetimepicker-widget.dropdown-menu.top:after {
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid white;
  bottom: -6px;
  left: 7px;
}

/* line 66, vendor/bundle/ruby/3.3.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
.bootstrap-datetimepicker-widget.dropdown-menu.pull-right:before {
  left: auto;
  right: 6px;
}

/* line 70, vendor/bundle/ruby/3.3.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
.bootstrap-datetimepicker-widget.dropdown-menu.pull-right:after {
  left: auto;
  right: 7px;
}

/* line 74, vendor/bundle/ruby/3.3.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
.bootstrap-datetimepicker-widget .list-unstyled {
  margin: 0;
}

/* line 77, vendor/bundle/ruby/3.3.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
.bootstrap-datetimepicker-widget a[data-action] {
  padding: 6px 0;
}

/* line 80, vendor/bundle/ruby/3.3.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
.bootstrap-datetimepicker-widget a[data-action]:active {
  box-shadow: none;
}

/* line 83, vendor/bundle/ruby/3.3.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
.bootstrap-datetimepicker-widget .timepicker-hour,
.bootstrap-datetimepicker-widget .timepicker-minute,
.bootstrap-datetimepicker-widget .timepicker-second {
  width: 54px;
  font-weight: bold;
  font-size: 1.2em;
  margin: 0;
}

/* line 91, vendor/bundle/ruby/3.3.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
.bootstrap-datetimepicker-widget button[data-action] {
  padding: 6px;
}

/* line 94, vendor/bundle/ruby/3.3.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
.bootstrap-datetimepicker-widget .btn[data-action="incrementHours"]::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Increment Hours";
}

/* line 105, vendor/bundle/ruby/3.3.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
.bootstrap-datetimepicker-widget .btn[data-action="incrementMinutes"]::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Increment Minutes";
}

/* line 116, vendor/bundle/ruby/3.3.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
.bootstrap-datetimepicker-widget .btn[data-action="decrementHours"]::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Decrement Hours";
}

/* line 127, vendor/bundle/ruby/3.3.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
.bootstrap-datetimepicker-widget .btn[data-action="decrementMinutes"]::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Decrement Minutes";
}

/* line 138, vendor/bundle/ruby/3.3.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
.bootstrap-datetimepicker-widget .btn[data-action="showHours"]::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Show Hours";
}

/* line 149, vendor/bundle/ruby/3.3.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
.bootstrap-datetimepicker-widget .btn[data-action="showMinutes"]::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Show Minutes";
}

/* line 160, vendor/bundle/ruby/3.3.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
.bootstrap-datetimepicker-widget .btn[data-action="togglePeriod"]::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Toggle AM/PM";
}

/* line 171, vendor/bundle/ruby/3.3.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
.bootstrap-datetimepicker-widget .btn[data-action="clear"]::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Clear the picker";
}

/* line 182, vendor/bundle/ruby/3.3.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
.bootstrap-datetimepicker-widget .btn[data-action="today"]::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Set the date to today";
}

/* line 193, vendor/bundle/ruby/3.3.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
.bootstrap-datetimepicker-widget .picker-switch {
  text-align: center;
}

/* line 196, vendor/bundle/ruby/3.3.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
.bootstrap-datetimepicker-widget .picker-switch::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Toggle Date and Time Screens";
}

/* line 207, vendor/bundle/ruby/3.3.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
.bootstrap-datetimepicker-widget .picker-switch td {
  padding: 0;
  margin: 0;
  height: auto;
  width: auto;
  line-height: inherit;
}

/* line 214, vendor/bundle/ruby/3.3.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
.bootstrap-datetimepicker-widget .picker-switch td span {
  line-height: 2.5;
  height: 2.5em;
  width: 100%;
}

/* line 219, vendor/bundle/ruby/3.3.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
.bootstrap-datetimepicker-widget table {
  width: 100%;
  margin: 0;
}

/* line 223, vendor/bundle/ruby/3.3.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
.bootstrap-datetimepicker-widget table td,
.bootstrap-datetimepicker-widget table th {
  text-align: center;
  border-radius: 4px;
}

/* line 228, vendor/bundle/ruby/3.3.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
.bootstrap-datetimepicker-widget table th {
  height: 20px;
  line-height: 20px;
  width: 20px;
}

/* line 233, vendor/bundle/ruby/3.3.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
.bootstrap-datetimepicker-widget table th.picker-switch {
  width: 145px;
}

/* line 236, vendor/bundle/ruby/3.3.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
.bootstrap-datetimepicker-widget table th.disabled,
.bootstrap-datetimepicker-widget table th.disabled:hover {
  background: none;
  color: #777777;
  cursor: not-allowed;
}

/* line 242, vendor/bundle/ruby/3.3.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
.bootstrap-datetimepicker-widget table th.prev::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Previous Month";
}

/* line 253, vendor/bundle/ruby/3.3.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
.bootstrap-datetimepicker-widget table th.next::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Next Month";
}

/* line 264, vendor/bundle/ruby/3.3.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
.bootstrap-datetimepicker-widget table thead tr:first-child th {
  cursor: pointer;
}

/* line 267, vendor/bundle/ruby/3.3.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
.bootstrap-datetimepicker-widget table thead tr:first-child th:hover {
  background: #eeeeee;
}

/* line 270, vendor/bundle/ruby/3.3.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
.bootstrap-datetimepicker-widget table td {
  height: 54px;
  line-height: 54px;
  width: 54px;
}

/* line 275, vendor/bundle/ruby/3.3.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
.bootstrap-datetimepicker-widget table td.cw {
  font-size: .8em;
  height: 20px;
  line-height: 20px;
  color: #777777;
}

/* line 281, vendor/bundle/ruby/3.3.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
.bootstrap-datetimepicker-widget table td.day {
  height: 20px;
  line-height: 20px;
  width: 20px;
}

/* line 286, vendor/bundle/ruby/3.3.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
.bootstrap-datetimepicker-widget table td.day:hover,
.bootstrap-datetimepicker-widget table td.hour:hover,
.bootstrap-datetimepicker-widget table td.minute:hover,
.bootstrap-datetimepicker-widget table td.second:hover {
  background: #eeeeee;
  cursor: pointer;
}

/* line 293, vendor/bundle/ruby/3.3.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
.bootstrap-datetimepicker-widget table td.old,
.bootstrap-datetimepicker-widget table td.new {
  color: #777777;
}

/* line 297, vendor/bundle/ruby/3.3.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
.bootstrap-datetimepicker-widget table td.today {
  position: relative;
}

/* line 300, vendor/bundle/ruby/3.3.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
.bootstrap-datetimepicker-widget table td.today:before {
  content: '';
  display: inline-block;
  border: solid transparent;
  border-width: 0 0 7px 7px;
  border-bottom-color: #337ab7;
  border-top-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  bottom: 4px;
  right: 4px;
}

/* line 311, vendor/bundle/ruby/3.3.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
  background-color: #337ab7;
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}

/* line 317, vendor/bundle/ruby/3.3.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
.bootstrap-datetimepicker-widget table td.active.today:before {
  border-bottom-color: #fff;
}

/* line 320, vendor/bundle/ruby/3.3.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
.bootstrap-datetimepicker-widget table td.disabled,
.bootstrap-datetimepicker-widget table td.disabled:hover {
  background: none;
  color: #777777;
  cursor: not-allowed;
}

/* line 326, vendor/bundle/ruby/3.3.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
.bootstrap-datetimepicker-widget table td span {
  display: inline-block;
  width: 54px;
  height: 54px;
  line-height: 54px;
  margin: 2px 1.5px;
  cursor: pointer;
  border-radius: 4px;
}

/* line 335, vendor/bundle/ruby/3.3.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
.bootstrap-datetimepicker-widget table td span:hover {
  background: #eeeeee;
}

/* line 338, vendor/bundle/ruby/3.3.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
.bootstrap-datetimepicker-widget table td span.active {
  background-color: #337ab7;
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}

/* line 343, vendor/bundle/ruby/3.3.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
.bootstrap-datetimepicker-widget table td span.old {
  color: #777777;
}

/* line 346, vendor/bundle/ruby/3.3.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
.bootstrap-datetimepicker-widget table td span.disabled,
.bootstrap-datetimepicker-widget table td span.disabled:hover {
  background: none;
  color: #777777;
  cursor: not-allowed;
}

/* line 352, vendor/bundle/ruby/3.3.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
.bootstrap-datetimepicker-widget.usetwentyfour td.hour {
  height: 27px;
  line-height: 27px;
}

/* line 356, vendor/bundle/ruby/3.3.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
.bootstrap-datetimepicker-widget.wider {
  width: 21em;
}

/* line 359, vendor/bundle/ruby/3.3.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
.bootstrap-datetimepicker-widget .datepicker-decades .decade {
  line-height: 1.8em !important;
}

/* line 362, vendor/bundle/ruby/3.3.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
.input-group.date .input-group-addon {
  cursor: pointer;
}

/* line 365, vendor/bundle/ruby/3.3.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* line 1, app/assets/stylesheets/tenant/affiliate.css.scss */
.affiliate form br {
  border-bottom: 1px solid #000;
}

/*!
 * Datepicker for Bootstrap v1.4.0 (https://github.com/eternicode/bootstrap-datepicker)
 *
 * Copyright 2012 Stefan Petre
 * Improvements by Andrew Rowls
 * Licensed under the Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0)
 */
/* line 8, app/assets/stylesheets/tenant/bootstrap-datepicker3.css */
.datepicker {
  padding: 4px;
  border-radius: 4px;
  direction: ltr;
}

/* line 13, app/assets/stylesheets/tenant/bootstrap-datepicker3.css */
.datepicker-inline {
  width: 220px;
}

/* line 16, app/assets/stylesheets/tenant/bootstrap-datepicker3.css */
.datepicker.datepicker-rtl {
  direction: rtl;
}

/* line 19, app/assets/stylesheets/tenant/bootstrap-datepicker3.css */
.datepicker.datepicker-rtl table tr td span {
  float: right;
}

/* line 22, app/assets/stylesheets/tenant/bootstrap-datepicker3.css */
.datepicker-dropdown {
  top: 0;
  left: 0;
}

/* line 26, app/assets/stylesheets/tenant/bootstrap-datepicker3.css */
.datepicker-dropdown:before {
  content: '';
  display: inline-block;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #ccc;
  border-top: 0;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  position: absolute;
}

/* line 36, app/assets/stylesheets/tenant/bootstrap-datepicker3.css */
.datepicker-dropdown:after {
  content: '';
  display: inline-block;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #fff;
  border-top: 0;
  position: absolute;
}

/* line 45, app/assets/stylesheets/tenant/bootstrap-datepicker3.css */
.datepicker-dropdown.datepicker-orient-left:before {
  left: 6px;
}

/* line 48, app/assets/stylesheets/tenant/bootstrap-datepicker3.css */
.datepicker-dropdown.datepicker-orient-left:after {
  left: 7px;
}

/* line 51, app/assets/stylesheets/tenant/bootstrap-datepicker3.css */
.datepicker-dropdown.datepicker-orient-right:before {
  right: 6px;
}

/* line 54, app/assets/stylesheets/tenant/bootstrap-datepicker3.css */
.datepicker-dropdown.datepicker-orient-right:after {
  right: 7px;
}

/* line 57, app/assets/stylesheets/tenant/bootstrap-datepicker3.css */
.datepicker-dropdown.datepicker-orient-top:before {
  top: -7px;
}

/* line 60, app/assets/stylesheets/tenant/bootstrap-datepicker3.css */
.datepicker-dropdown.datepicker-orient-top:after {
  top: -6px;
}

/* line 63, app/assets/stylesheets/tenant/bootstrap-datepicker3.css */
.datepicker-dropdown.datepicker-orient-bottom:before {
  bottom: -7px;
  border-bottom: 0;
  border-top: 7px solid #999;
}

/* line 68, app/assets/stylesheets/tenant/bootstrap-datepicker3.css */
.datepicker-dropdown.datepicker-orient-bottom:after {
  bottom: -6px;
  border-bottom: 0;
  border-top: 6px solid #fff;
}

/* line 73, app/assets/stylesheets/tenant/bootstrap-datepicker3.css */
.datepicker > div {
  display: none;
}

/* line 76, app/assets/stylesheets/tenant/bootstrap-datepicker3.css */
.datepicker.days .datepicker-days,
.datepicker.months .datepicker-months,
.datepicker.years .datepicker-years {
  display: block;
}

/* line 81, app/assets/stylesheets/tenant/bootstrap-datepicker3.css */
.datepicker table {
  margin: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* line 90, app/assets/stylesheets/tenant/bootstrap-datepicker3.css */
.datepicker table tr td,
.datepicker table tr th {
  text-align: center;
  width: 30px;
  height: 30px;
  border-radius: 4px;
  border: none;
}

/* line 98, app/assets/stylesheets/tenant/bootstrap-datepicker3.css */
.table-striped .datepicker table tr td,
.table-striped .datepicker table tr th {
  background-color: transparent;
}

/* line 102, app/assets/stylesheets/tenant/bootstrap-datepicker3.css */
.datepicker table tr td.day:hover,
.datepicker table tr td.day.focused {
  background: #eeeeee;
  cursor: pointer;
}

/* line 107, app/assets/stylesheets/tenant/bootstrap-datepicker3.css */
.datepicker table tr td.old,
.datepicker table tr td.new {
  color: #999999;
}

/* line 111, app/assets/stylesheets/tenant/bootstrap-datepicker3.css */
.datepicker table tr td.disabled,
.datepicker table tr td.disabled:hover {
  background: none;
  color: #999999;
  cursor: default;
}

/* line 117, app/assets/stylesheets/tenant/bootstrap-datepicker3.css */
.datepicker table tr td.today,
.datepicker table tr td.today:hover,
.datepicker table tr td.today.disabled,
.datepicker table tr td.today.disabled:hover {
  color: #000000;
  background-color: #ffdb99;
  border-color: #ffb733;
}

/* line 125, app/assets/stylesheets/tenant/bootstrap-datepicker3.css */
.datepicker table tr td.today:hover,
.datepicker table tr td.today:hover:hover,
.datepicker table tr td.today.disabled:hover,
.datepicker table tr td.today.disabled:hover:hover,
.datepicker table tr td.today:focus,
.datepicker table tr td.today:hover:focus,
.datepicker table tr td.today.disabled:focus,
.datepicker table tr td.today.disabled:hover:focus,
.datepicker table tr td.today:active,
.datepicker table tr td.today:hover:active,
.datepicker table tr td.today.disabled:active,
.datepicker table tr td.today.disabled:hover:active,
.datepicker table tr td.today.active,
.datepicker table tr td.today.active:hover,
.datepicker table tr td.today.disabled.active,
.datepicker table tr td.today.disabled.active:hover,
.open .dropdown-toggle.datepicker table tr td.today,
.open .dropdown-toggle.datepicker table tr td.today:hover,
.open .dropdown-toggle.datepicker table tr td.today.disabled,
.open .dropdown-toggle.datepicker table tr td.today.disabled:hover {
  color: #000000;
  background-color: #ffcd70;
  border-color: #f59e00;
}

/* line 149, app/assets/stylesheets/tenant/bootstrap-datepicker3.css */
.datepicker table tr td.today:active,
.datepicker table tr td.today:hover:active,
.datepicker table tr td.today.disabled:active,
.datepicker table tr td.today.disabled:hover:active,
.datepicker table tr td.today.active,
.datepicker table tr td.today.active:hover,
.datepicker table tr td.today.disabled.active,
.datepicker table tr td.today.disabled.active:hover,
.open .dropdown-toggle.datepicker table tr td.today,
.open .dropdown-toggle.datepicker table tr td.today:hover,
.open .dropdown-toggle.datepicker table tr td.today.disabled,
.open .dropdown-toggle.datepicker table tr td.today.disabled:hover {
  background-image: none;
}

/* line 163, app/assets/stylesheets/tenant/bootstrap-datepicker3.css */
.datepicker table tr td.today.disabled,
.datepicker table tr td.today.disabled:hover,
.datepicker table tr td.today.disabled.disabled,
.datepicker table tr td.today.disabled.disabled:hover,
.datepicker table tr td.today[disabled],
.datepicker table tr td.today[disabled]:hover,
.datepicker table tr td.today.disabled[disabled],
.datepicker table tr td.today.disabled[disabled]:hover,
fieldset[disabled] .datepicker table tr td.today,
fieldset[disabled] .datepicker table tr td.today:hover,
fieldset[disabled] .datepicker table tr td.today.disabled,
fieldset[disabled] .datepicker table tr td.today.disabled:hover,
.datepicker table tr td.today.disabled:hover,
.datepicker table tr td.today.disabled:hover:hover,
.datepicker table tr td.today.disabled.disabled:hover,
.datepicker table tr td.today.disabled.disabled:hover:hover,
.datepicker table tr td.today[disabled]:hover,
.datepicker table tr td.today[disabled]:hover:hover,
.datepicker table tr td.today.disabled[disabled]:hover,
.datepicker table tr td.today.disabled[disabled]:hover:hover,
fieldset[disabled] .datepicker table tr td.today:hover,
fieldset[disabled] .datepicker table tr td.today:hover:hover,
fieldset[disabled] .datepicker table tr td.today.disabled:hover,
fieldset[disabled] .datepicker table tr td.today.disabled:hover:hover,
.datepicker table tr td.today.disabled:focus,
.datepicker table tr td.today.disabled:hover:focus,
.datepicker table tr td.today.disabled.disabled:focus,
.datepicker table tr td.today.disabled.disabled:hover:focus,
.datepicker table tr td.today[disabled]:focus,
.datepicker table tr td.today[disabled]:hover:focus,
.datepicker table tr td.today.disabled[disabled]:focus,
.datepicker table tr td.today.disabled[disabled]:hover:focus,
fieldset[disabled] .datepicker table tr td.today:focus,
fieldset[disabled] .datepicker table tr td.today:hover:focus,
fieldset[disabled] .datepicker table tr td.today.disabled:focus,
fieldset[disabled] .datepicker table tr td.today.disabled:hover:focus,
.datepicker table tr td.today.disabled:active,
.datepicker table tr td.today.disabled:hover:active,
.datepicker table tr td.today.disabled.disabled:active,
.datepicker table tr td.today.disabled.disabled:hover:active,
.datepicker table tr td.today[disabled]:active,
.datepicker table tr td.today[disabled]:hover:active,
.datepicker table tr td.today.disabled[disabled]:active,
.datepicker table tr td.today.disabled[disabled]:hover:active,
fieldset[disabled] .datepicker table tr td.today:active,
fieldset[disabled] .datepicker table tr td.today:hover:active,
fieldset[disabled] .datepicker table tr td.today.disabled:active,
fieldset[disabled] .datepicker table tr td.today.disabled:hover:active,
.datepicker table tr td.today.disabled.active,
.datepicker table tr td.today.disabled.active:hover,
.datepicker table tr td.today.disabled.disabled.active,
.datepicker table tr td.today.disabled.disabled.active:hover,
.datepicker table tr td.today.active[disabled],
.datepicker table tr td.today.active[disabled]:hover,
.datepicker table tr td.today.disabled.active[disabled],
.datepicker table tr td.today.disabled.active[disabled]:hover,
fieldset[disabled] .datepicker table tr td.today.active,
fieldset[disabled] .datepicker table tr td.today.active:hover,
fieldset[disabled] .datepicker table tr td.today.disabled.active,
fieldset[disabled] .datepicker table tr td.today.disabled.active:hover {
  background-color: #ffdb99;
  border-color: #ffb733;
}

/* line 226, app/assets/stylesheets/tenant/bootstrap-datepicker3.css */
.datepicker table tr td.today:hover:hover {
  color: #000;
}

/* line 229, app/assets/stylesheets/tenant/bootstrap-datepicker3.css */
.datepicker table tr td.today.active:hover {
  color: #fff;
}

/* line 232, app/assets/stylesheets/tenant/bootstrap-datepicker3.css */
.datepicker table tr td.range,
.datepicker table tr td.range:hover,
.datepicker table tr td.range.disabled,
.datepicker table tr td.range.disabled:hover {
  background: #eeeeee;
  border-radius: 0;
}

/* line 239, app/assets/stylesheets/tenant/bootstrap-datepicker3.css */
.datepicker table tr td.range.today,
.datepicker table tr td.range.today:hover,
.datepicker table tr td.range.today.disabled,
.datepicker table tr td.range.today.disabled:hover {
  color: #000000;
  background-color: #f7ca77;
  border-color: #f1a417;
  border-radius: 0;
}

/* line 248, app/assets/stylesheets/tenant/bootstrap-datepicker3.css */
.datepicker table tr td.range.today:hover,
.datepicker table tr td.range.today:hover:hover,
.datepicker table tr td.range.today.disabled:hover,
.datepicker table tr td.range.today.disabled:hover:hover,
.datepicker table tr td.range.today:focus,
.datepicker table tr td.range.today:hover:focus,
.datepicker table tr td.range.today.disabled:focus,
.datepicker table tr td.range.today.disabled:hover:focus,
.datepicker table tr td.range.today:active,
.datepicker table tr td.range.today:hover:active,
.datepicker table tr td.range.today.disabled:active,
.datepicker table tr td.range.today.disabled:hover:active,
.datepicker table tr td.range.today.active,
.datepicker table tr td.range.today.active:hover,
.datepicker table tr td.range.today.disabled.active,
.datepicker table tr td.range.today.disabled.active:hover,
.open .dropdown-toggle.datepicker table tr td.range.today,
.open .dropdown-toggle.datepicker table tr td.range.today:hover,
.open .dropdown-toggle.datepicker table tr td.range.today.disabled,
.open .dropdown-toggle.datepicker table tr td.range.today.disabled:hover {
  color: #000000;
  background-color: #f4bb51;
  border-color: #bf800c;
}

/* line 272, app/assets/stylesheets/tenant/bootstrap-datepicker3.css */
.datepicker table tr td.range.today:active,
.datepicker table tr td.range.today:hover:active,
.datepicker table tr td.range.today.disabled:active,
.datepicker table tr td.range.today.disabled:hover:active,
.datepicker table tr td.range.today.active,
.datepicker table tr td.range.today.active:hover,
.datepicker table tr td.range.today.disabled.active,
.datepicker table tr td.range.today.disabled.active:hover,
.open .dropdown-toggle.datepicker table tr td.range.today,
.open .dropdown-toggle.datepicker table tr td.range.today:hover,
.open .dropdown-toggle.datepicker table tr td.range.today.disabled,
.open .dropdown-toggle.datepicker table tr td.range.today.disabled:hover {
  background-image: none;
}

/* line 286, app/assets/stylesheets/tenant/bootstrap-datepicker3.css */
.datepicker table tr td.range.today.disabled,
.datepicker table tr td.range.today.disabled:hover,
.datepicker table tr td.range.today.disabled.disabled,
.datepicker table tr td.range.today.disabled.disabled:hover,
.datepicker table tr td.range.today[disabled],
.datepicker table tr td.range.today[disabled]:hover,
.datepicker table tr td.range.today.disabled[disabled],
.datepicker table tr td.range.today.disabled[disabled]:hover,
fieldset[disabled] .datepicker table tr td.range.today,
fieldset[disabled] .datepicker table tr td.range.today:hover,
fieldset[disabled] .datepicker table tr td.range.today.disabled,
fieldset[disabled] .datepicker table tr td.range.today.disabled:hover,
.datepicker table tr td.range.today.disabled:hover,
.datepicker table tr td.range.today.disabled:hover:hover,
.datepicker table tr td.range.today.disabled.disabled:hover,
.datepicker table tr td.range.today.disabled.disabled:hover:hover,
.datepicker table tr td.range.today[disabled]:hover,
.datepicker table tr td.range.today[disabled]:hover:hover,
.datepicker table tr td.range.today.disabled[disabled]:hover,
.datepicker table tr td.range.today.disabled[disabled]:hover:hover,
fieldset[disabled] .datepicker table tr td.range.today:hover,
fieldset[disabled] .datepicker table tr td.range.today:hover:hover,
fieldset[disabled] .datepicker table tr td.range.today.disabled:hover,
fieldset[disabled] .datepicker table tr td.range.today.disabled:hover:hover,
.datepicker table tr td.range.today.disabled:focus,
.datepicker table tr td.range.today.disabled:hover:focus,
.datepicker table tr td.range.today.disabled.disabled:focus,
.datepicker table tr td.range.today.disabled.disabled:hover:focus,
.datepicker table tr td.range.today[disabled]:focus,
.datepicker table tr td.range.today[disabled]:hover:focus,
.datepicker table tr td.range.today.disabled[disabled]:focus,
.datepicker table tr td.range.today.disabled[disabled]:hover:focus,
fieldset[disabled] .datepicker table tr td.range.today:focus,
fieldset[disabled] .datepicker table tr td.range.today:hover:focus,
fieldset[disabled] .datepicker table tr td.range.today.disabled:focus,
fieldset[disabled] .datepicker table tr td.range.today.disabled:hover:focus,
.datepicker table tr td.range.today.disabled:active,
.datepicker table tr td.range.today.disabled:hover:active,
.datepicker table tr td.range.today.disabled.disabled:active,
.datepicker table tr td.range.today.disabled.disabled:hover:active,
.datepicker table tr td.range.today[disabled]:active,
.datepicker table tr td.range.today[disabled]:hover:active,
.datepicker table tr td.range.today.disabled[disabled]:active,
.datepicker table tr td.range.today.disabled[disabled]:hover:active,
fieldset[disabled] .datepicker table tr td.range.today:active,
fieldset[disabled] .datepicker table tr td.range.today:hover:active,
fieldset[disabled] .datepicker table tr td.range.today.disabled:active,
fieldset[disabled] .datepicker table tr td.range.today.disabled:hover:active,
.datepicker table tr td.range.today.disabled.active,
.datepicker table tr td.range.today.disabled.active:hover,
.datepicker table tr td.range.today.disabled.disabled.active,
.datepicker table tr td.range.today.disabled.disabled.active:hover,
.datepicker table tr td.range.today.active[disabled],
.datepicker table tr td.range.today.active[disabled]:hover,
.datepicker table tr td.range.today.disabled.active[disabled],
.datepicker table tr td.range.today.disabled.active[disabled]:hover,
fieldset[disabled] .datepicker table tr td.range.today.active,
fieldset[disabled] .datepicker table tr td.range.today.active:hover,
fieldset[disabled] .datepicker table tr td.range.today.disabled.active,
fieldset[disabled] .datepicker table tr td.range.today.disabled.active:hover {
  background-color: #f7ca77;
  border-color: #f1a417;
}

/* line 349, app/assets/stylesheets/tenant/bootstrap-datepicker3.css */
.datepicker table tr td.selected,
.datepicker table tr td.selected:hover,
.datepicker table tr td.selected.disabled,
.datepicker table tr td.selected.disabled:hover {
  color: #ffffff;
  background-color: #999999;
  border-color: #555555;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}

/* line 358, app/assets/stylesheets/tenant/bootstrap-datepicker3.css */
.datepicker table tr td.selected:hover,
.datepicker table tr td.selected:hover:hover,
.datepicker table tr td.selected.disabled:hover,
.datepicker table tr td.selected.disabled:hover:hover,
.datepicker table tr td.selected:focus,
.datepicker table tr td.selected:hover:focus,
.datepicker table tr td.selected.disabled:focus,
.datepicker table tr td.selected.disabled:hover:focus,
.datepicker table tr td.selected:active,
.datepicker table tr td.selected:hover:active,
.datepicker table tr td.selected.disabled:active,
.datepicker table tr td.selected.disabled:hover:active,
.datepicker table tr td.selected.active,
.datepicker table tr td.selected.active:hover,
.datepicker table tr td.selected.disabled.active,
.datepicker table tr td.selected.disabled.active:hover,
.open .dropdown-toggle.datepicker table tr td.selected,
.open .dropdown-toggle.datepicker table tr td.selected:hover,
.open .dropdown-toggle.datepicker table tr td.selected.disabled,
.open .dropdown-toggle.datepicker table tr td.selected.disabled:hover {
  color: #ffffff;
  background-color: #858585;
  border-color: #373737;
}

/* line 382, app/assets/stylesheets/tenant/bootstrap-datepicker3.css */
.datepicker table tr td.selected:active,
.datepicker table tr td.selected:hover:active,
.datepicker table tr td.selected.disabled:active,
.datepicker table tr td.selected.disabled:hover:active,
.datepicker table tr td.selected.active,
.datepicker table tr td.selected.active:hover,
.datepicker table tr td.selected.disabled.active,
.datepicker table tr td.selected.disabled.active:hover,
.open .dropdown-toggle.datepicker table tr td.selected,
.open .dropdown-toggle.datepicker table tr td.selected:hover,
.open .dropdown-toggle.datepicker table tr td.selected.disabled,
.open .dropdown-toggle.datepicker table tr td.selected.disabled:hover {
  background-image: none;
}

/* line 396, app/assets/stylesheets/tenant/bootstrap-datepicker3.css */
.datepicker table tr td.selected.disabled,
.datepicker table tr td.selected.disabled:hover,
.datepicker table tr td.selected.disabled.disabled,
.datepicker table tr td.selected.disabled.disabled:hover,
.datepicker table tr td.selected[disabled],
.datepicker table tr td.selected[disabled]:hover,
.datepicker table tr td.selected.disabled[disabled],
.datepicker table tr td.selected.disabled[disabled]:hover,
fieldset[disabled] .datepicker table tr td.selected,
fieldset[disabled] .datepicker table tr td.selected:hover,
fieldset[disabled] .datepicker table tr td.selected.disabled,
fieldset[disabled] .datepicker table tr td.selected.disabled:hover,
.datepicker table tr td.selected.disabled:hover,
.datepicker table tr td.selected.disabled:hover:hover,
.datepicker table tr td.selected.disabled.disabled:hover,
.datepicker table tr td.selected.disabled.disabled:hover:hover,
.datepicker table tr td.selected[disabled]:hover,
.datepicker table tr td.selected[disabled]:hover:hover,
.datepicker table tr td.selected.disabled[disabled]:hover,
.datepicker table tr td.selected.disabled[disabled]:hover:hover,
fieldset[disabled] .datepicker table tr td.selected:hover,
fieldset[disabled] .datepicker table tr td.selected:hover:hover,
fieldset[disabled] .datepicker table tr td.selected.disabled:hover,
fieldset[disabled] .datepicker table tr td.selected.disabled:hover:hover,
.datepicker table tr td.selected.disabled:focus,
.datepicker table tr td.selected.disabled:hover:focus,
.datepicker table tr td.selected.disabled.disabled:focus,
.datepicker table tr td.selected.disabled.disabled:hover:focus,
.datepicker table tr td.selected[disabled]:focus,
.datepicker table tr td.selected[disabled]:hover:focus,
.datepicker table tr td.selected.disabled[disabled]:focus,
.datepicker table tr td.selected.disabled[disabled]:hover:focus,
fieldset[disabled] .datepicker table tr td.selected:focus,
fieldset[disabled] .datepicker table tr td.selected:hover:focus,
fieldset[disabled] .datepicker table tr td.selected.disabled:focus,
fieldset[disabled] .datepicker table tr td.selected.disabled:hover:focus,
.datepicker table tr td.selected.disabled:active,
.datepicker table tr td.selected.disabled:hover:active,
.datepicker table tr td.selected.disabled.disabled:active,
.datepicker table tr td.selected.disabled.disabled:hover:active,
.datepicker table tr td.selected[disabled]:active,
.datepicker table tr td.selected[disabled]:hover:active,
.datepicker table tr td.selected.disabled[disabled]:active,
.datepicker table tr td.selected.disabled[disabled]:hover:active,
fieldset[disabled] .datepicker table tr td.selected:active,
fieldset[disabled] .datepicker table tr td.selected:hover:active,
fieldset[disabled] .datepicker table tr td.selected.disabled:active,
fieldset[disabled] .datepicker table tr td.selected.disabled:hover:active,
.datepicker table tr td.selected.disabled.active,
.datepicker table tr td.selected.disabled.active:hover,
.datepicker table tr td.selected.disabled.disabled.active,
.datepicker table tr td.selected.disabled.disabled.active:hover,
.datepicker table tr td.selected.active[disabled],
.datepicker table tr td.selected.active[disabled]:hover,
.datepicker table tr td.selected.disabled.active[disabled],
.datepicker table tr td.selected.disabled.active[disabled]:hover,
fieldset[disabled] .datepicker table tr td.selected.active,
fieldset[disabled] .datepicker table tr td.selected.active:hover,
fieldset[disabled] .datepicker table tr td.selected.disabled.active,
fieldset[disabled] .datepicker table tr td.selected.disabled.active:hover {
  background-color: #999999;
  border-color: #555555;
}

/* line 459, app/assets/stylesheets/tenant/bootstrap-datepicker3.css */
.datepicker table tr td.active,
.datepicker table tr td.active:hover,
.datepicker table tr td.active.disabled,
.datepicker table tr td.active.disabled:hover {
  color: #ffffff;
  background-color: #428bca;
  border-color: #357ebd;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}

/* line 468, app/assets/stylesheets/tenant/bootstrap-datepicker3.css */
.datepicker table tr td.active:hover,
.datepicker table tr td.active:hover:hover,
.datepicker table tr td.active.disabled:hover,
.datepicker table tr td.active.disabled:hover:hover,
.datepicker table tr td.active:focus,
.datepicker table tr td.active:hover:focus,
.datepicker table tr td.active.disabled:focus,
.datepicker table tr td.active.disabled:hover:focus,
.datepicker table tr td.active:active,
.datepicker table tr td.active:hover:active,
.datepicker table tr td.active.disabled:active,
.datepicker table tr td.active.disabled:hover:active,
.datepicker table tr td.active.active,
.datepicker table tr td.active.active:hover,
.datepicker table tr td.active.disabled.active,
.datepicker table tr td.active.disabled.active:hover,
.open .dropdown-toggle.datepicker table tr td.active,
.open .dropdown-toggle.datepicker table tr td.active:hover,
.open .dropdown-toggle.datepicker table tr td.active.disabled,
.open .dropdown-toggle.datepicker table tr td.active.disabled:hover {
  color: #ffffff;
  background-color: #3276b1;
  border-color: #285e8e;
}

/* line 492, app/assets/stylesheets/tenant/bootstrap-datepicker3.css */
.datepicker table tr td.active:active,
.datepicker table tr td.active:hover:active,
.datepicker table tr td.active.disabled:active,
.datepicker table tr td.active.disabled:hover:active,
.datepicker table tr td.active.active,
.datepicker table tr td.active.active:hover,
.datepicker table tr td.active.disabled.active,
.datepicker table tr td.active.disabled.active:hover,
.open .dropdown-toggle.datepicker table tr td.active,
.open .dropdown-toggle.datepicker table tr td.active:hover,
.open .dropdown-toggle.datepicker table tr td.active.disabled,
.open .dropdown-toggle.datepicker table tr td.active.disabled:hover {
  background-image: none;
}

/* line 506, app/assets/stylesheets/tenant/bootstrap-datepicker3.css */
.datepicker table tr td.active.disabled,
.datepicker table tr td.active.disabled:hover,
.datepicker table tr td.active.disabled.disabled,
.datepicker table tr td.active.disabled.disabled:hover,
.datepicker table tr td.active[disabled],
.datepicker table tr td.active[disabled]:hover,
.datepicker table tr td.active.disabled[disabled],
.datepicker table tr td.active.disabled[disabled]:hover,
fieldset[disabled] .datepicker table tr td.active,
fieldset[disabled] .datepicker table tr td.active:hover,
fieldset[disabled] .datepicker table tr td.active.disabled,
fieldset[disabled] .datepicker table tr td.active.disabled:hover,
.datepicker table tr td.active.disabled:hover,
.datepicker table tr td.active.disabled:hover:hover,
.datepicker table tr td.active.disabled.disabled:hover,
.datepicker table tr td.active.disabled.disabled:hover:hover,
.datepicker table tr td.active[disabled]:hover,
.datepicker table tr td.active[disabled]:hover:hover,
.datepicker table tr td.active.disabled[disabled]:hover,
.datepicker table tr td.active.disabled[disabled]:hover:hover,
fieldset[disabled] .datepicker table tr td.active:hover,
fieldset[disabled] .datepicker table tr td.active:hover:hover,
fieldset[disabled] .datepicker table tr td.active.disabled:hover,
fieldset[disabled] .datepicker table tr td.active.disabled:hover:hover,
.datepicker table tr td.active.disabled:focus,
.datepicker table tr td.active.disabled:hover:focus,
.datepicker table tr td.active.disabled.disabled:focus,
.datepicker table tr td.active.disabled.disabled:hover:focus,
.datepicker table tr td.active[disabled]:focus,
.datepicker table tr td.active[disabled]:hover:focus,
.datepicker table tr td.active.disabled[disabled]:focus,
.datepicker table tr td.active.disabled[disabled]:hover:focus,
fieldset[disabled] .datepicker table tr td.active:focus,
fieldset[disabled] .datepicker table tr td.active:hover:focus,
fieldset[disabled] .datepicker table tr td.active.disabled:focus,
fieldset[disabled] .datepicker table tr td.active.disabled:hover:focus,
.datepicker table tr td.active.disabled:active,
.datepicker table tr td.active.disabled:hover:active,
.datepicker table tr td.active.disabled.disabled:active,
.datepicker table tr td.active.disabled.disabled:hover:active,
.datepicker table tr td.active[disabled]:active,
.datepicker table tr td.active[disabled]:hover:active,
.datepicker table tr td.active.disabled[disabled]:active,
.datepicker table tr td.active.disabled[disabled]:hover:active,
fieldset[disabled] .datepicker table tr td.active:active,
fieldset[disabled] .datepicker table tr td.active:hover:active,
fieldset[disabled] .datepicker table tr td.active.disabled:active,
fieldset[disabled] .datepicker table tr td.active.disabled:hover:active,
.datepicker table tr td.active.disabled.active,
.datepicker table tr td.active.disabled.active:hover,
.datepicker table tr td.active.disabled.disabled.active,
.datepicker table tr td.active.disabled.disabled.active:hover,
.datepicker table tr td.active.active[disabled],
.datepicker table tr td.active.active[disabled]:hover,
.datepicker table tr td.active.disabled.active[disabled],
.datepicker table tr td.active.disabled.active[disabled]:hover,
fieldset[disabled] .datepicker table tr td.active.active,
fieldset[disabled] .datepicker table tr td.active.active:hover,
fieldset[disabled] .datepicker table tr td.active.disabled.active,
fieldset[disabled] .datepicker table tr td.active.disabled.active:hover {
  background-color: #428bca;
  border-color: #357ebd;
}

/* line 569, app/assets/stylesheets/tenant/bootstrap-datepicker3.css */
.datepicker table tr td span {
  display: block;
  width: 23%;
  height: 54px;
  line-height: 54px;
  float: left;
  margin: 1%;
  cursor: pointer;
  border-radius: 4px;
}

/* line 579, app/assets/stylesheets/tenant/bootstrap-datepicker3.css */
.datepicker table tr td span:hover {
  background: #eeeeee;
}

/* line 582, app/assets/stylesheets/tenant/bootstrap-datepicker3.css */
.datepicker table tr td span.disabled,
.datepicker table tr td span.disabled:hover {
  background: none;
  color: #999999;
  cursor: default;
}

/* line 588, app/assets/stylesheets/tenant/bootstrap-datepicker3.css */
.datepicker table tr td span.active,
.datepicker table tr td span.active:hover,
.datepicker table tr td span.active.disabled,
.datepicker table tr td span.active.disabled:hover {
  color: #ffffff;
  background-color: #428bca;
  border-color: #357ebd;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}

/* line 597, app/assets/stylesheets/tenant/bootstrap-datepicker3.css */
.datepicker table tr td span.active:hover,
.datepicker table tr td span.active:hover:hover,
.datepicker table tr td span.active.disabled:hover,
.datepicker table tr td span.active.disabled:hover:hover,
.datepicker table tr td span.active:focus,
.datepicker table tr td span.active:hover:focus,
.datepicker table tr td span.active.disabled:focus,
.datepicker table tr td span.active.disabled:hover:focus,
.datepicker table tr td span.active:active,
.datepicker table tr td span.active:hover:active,
.datepicker table tr td span.active.disabled:active,
.datepicker table tr td span.active.disabled:hover:active,
.datepicker table tr td span.active.active,
.datepicker table tr td span.active.active:hover,
.datepicker table tr td span.active.disabled.active,
.datepicker table tr td span.active.disabled.active:hover,
.open .dropdown-toggle.datepicker table tr td span.active,
.open .dropdown-toggle.datepicker table tr td span.active:hover,
.open .dropdown-toggle.datepicker table tr td span.active.disabled,
.open .dropdown-toggle.datepicker table tr td span.active.disabled:hover {
  color: #ffffff;
  background-color: #3276b1;
  border-color: #285e8e;
}

/* line 621, app/assets/stylesheets/tenant/bootstrap-datepicker3.css */
.datepicker table tr td span.active:active,
.datepicker table tr td span.active:hover:active,
.datepicker table tr td span.active.disabled:active,
.datepicker table tr td span.active.disabled:hover:active,
.datepicker table tr td span.active.active,
.datepicker table tr td span.active.active:hover,
.datepicker table tr td span.active.disabled.active,
.datepicker table tr td span.active.disabled.active:hover,
.open .dropdown-toggle.datepicker table tr td span.active,
.open .dropdown-toggle.datepicker table tr td span.active:hover,
.open .dropdown-toggle.datepicker table tr td span.active.disabled,
.open .dropdown-toggle.datepicker table tr td span.active.disabled:hover {
  background-image: none;
}

/* line 635, app/assets/stylesheets/tenant/bootstrap-datepicker3.css */
.datepicker table tr td span.active.disabled,
.datepicker table tr td span.active.disabled:hover,
.datepicker table tr td span.active.disabled.disabled,
.datepicker table tr td span.active.disabled.disabled:hover,
.datepicker table tr td span.active[disabled],
.datepicker table tr td span.active[disabled]:hover,
.datepicker table tr td span.active.disabled[disabled],
.datepicker table tr td span.active.disabled[disabled]:hover,
fieldset[disabled] .datepicker table tr td span.active,
fieldset[disabled] .datepicker table tr td span.active:hover,
fieldset[disabled] .datepicker table tr td span.active.disabled,
fieldset[disabled] .datepicker table tr td span.active.disabled:hover,
.datepicker table tr td span.active.disabled:hover,
.datepicker table tr td span.active.disabled:hover:hover,
.datepicker table tr td span.active.disabled.disabled:hover,
.datepicker table tr td span.active.disabled.disabled:hover:hover,
.datepicker table tr td span.active[disabled]:hover,
.datepicker table tr td span.active[disabled]:hover:hover,
.datepicker table tr td span.active.disabled[disabled]:hover,
.datepicker table tr td span.active.disabled[disabled]:hover:hover,
fieldset[disabled] .datepicker table tr td span.active:hover,
fieldset[disabled] .datepicker table tr td span.active:hover:hover,
fieldset[disabled] .datepicker table tr td span.active.disabled:hover,
fieldset[disabled] .datepicker table tr td span.active.disabled:hover:hover,
.datepicker table tr td span.active.disabled:focus,
.datepicker table tr td span.active.disabled:hover:focus,
.datepicker table tr td span.active.disabled.disabled:focus,
.datepicker table tr td span.active.disabled.disabled:hover:focus,
.datepicker table tr td span.active[disabled]:focus,
.datepicker table tr td span.active[disabled]:hover:focus,
.datepicker table tr td span.active.disabled[disabled]:focus,
.datepicker table tr td span.active.disabled[disabled]:hover:focus,
fieldset[disabled] .datepicker table tr td span.active:focus,
fieldset[disabled] .datepicker table tr td span.active:hover:focus,
fieldset[disabled] .datepicker table tr td span.active.disabled:focus,
fieldset[disabled] .datepicker table tr td span.active.disabled:hover:focus,
.datepicker table tr td span.active.disabled:active,
.datepicker table tr td span.active.disabled:hover:active,
.datepicker table tr td span.active.disabled.disabled:active,
.datepicker table tr td span.active.disabled.disabled:hover:active,
.datepicker table tr td span.active[disabled]:active,
.datepicker table tr td span.active[disabled]:hover:active,
.datepicker table tr td span.active.disabled[disabled]:active,
.datepicker table tr td span.active.disabled[disabled]:hover:active,
fieldset[disabled] .datepicker table tr td span.active:active,
fieldset[disabled] .datepicker table tr td span.active:hover:active,
fieldset[disabled] .datepicker table tr td span.active.disabled:active,
fieldset[disabled] .datepicker table tr td span.active.disabled:hover:active,
.datepicker table tr td span.active.disabled.active,
.datepicker table tr td span.active.disabled.active:hover,
.datepicker table tr td span.active.disabled.disabled.active,
.datepicker table tr td span.active.disabled.disabled.active:hover,
.datepicker table tr td span.active.active[disabled],
.datepicker table tr td span.active.active[disabled]:hover,
.datepicker table tr td span.active.disabled.active[disabled],
.datepicker table tr td span.active.disabled.active[disabled]:hover,
fieldset[disabled] .datepicker table tr td span.active.active,
fieldset[disabled] .datepicker table tr td span.active.active:hover,
fieldset[disabled] .datepicker table tr td span.active.disabled.active,
fieldset[disabled] .datepicker table tr td span.active.disabled.active:hover {
  background-color: #428bca;
  border-color: #357ebd;
}

/* line 698, app/assets/stylesheets/tenant/bootstrap-datepicker3.css */
.datepicker table tr td span.old,
.datepicker table tr td span.new {
  color: #999999;
}

/* line 702, app/assets/stylesheets/tenant/bootstrap-datepicker3.css */
.datepicker .datepicker-switch {
  width: 145px;
}

/* line 705, app/assets/stylesheets/tenant/bootstrap-datepicker3.css */
.datepicker thead tr:first-child th,
.datepicker tfoot tr th {
  cursor: pointer;
}

/* line 709, app/assets/stylesheets/tenant/bootstrap-datepicker3.css */
.datepicker thead tr:first-child th:hover,
.datepicker tfoot tr th:hover {
  background: #eeeeee;
}

/* line 713, app/assets/stylesheets/tenant/bootstrap-datepicker3.css */
.datepicker .cw {
  font-size: 10px;
  width: 12px;
  padding: 0 2px 0 5px;
  vertical-align: middle;
}

/* line 719, app/assets/stylesheets/tenant/bootstrap-datepicker3.css */
.datepicker thead tr:first-child .cw {
  cursor: default;
  background-color: transparent;
}

/* line 723, app/assets/stylesheets/tenant/bootstrap-datepicker3.css */
.input-group.date .input-group-addon {
  cursor: pointer;
}

/* line 726, app/assets/stylesheets/tenant/bootstrap-datepicker3.css */
.input-daterange {
  width: 100%;
}

/* line 729, app/assets/stylesheets/tenant/bootstrap-datepicker3.css */
.input-daterange input {
  text-align: center;
}

/* line 732, app/assets/stylesheets/tenant/bootstrap-datepicker3.css */
.input-daterange input:first-child {
  border-radius: 3px 0 0 3px;
}

/* line 735, app/assets/stylesheets/tenant/bootstrap-datepicker3.css */
.input-daterange input:last-child {
  border-radius: 0 3px 3px 0;
}

/* line 738, app/assets/stylesheets/tenant/bootstrap-datepicker3.css */
.input-daterange .input-group-addon {
  width: auto;
  min-width: 16px;
  padding: 4px 5px;
  font-weight: normal;
  line-height: 1.42857143;
  text-align: center;
  text-shadow: 0 1px 0 #fff;
  vertical-align: middle;
  background-color: #eeeeee;
  border: solid #cccccc;
  border-width: 1px 0;
  margin-left: -5px;
  margin-right: -5px;
}

@media screen and (min-width: 1024px) {
  /* line 2, app/assets/stylesheets/tenant/bootstrap-image-gallery.css.scss */
  .blueimp-gallery .modal-dialog {
    max-width: 1088px;
  }
}

/* line 1, app/assets/stylesheets/tenant/buttons.css.scss */
.control-btn {
  padding: 0 15px;
  margin-bottom: 10px;
}

/* line 5, app/assets/stylesheets/tenant/buttons.css.scss */
.control-btn .btn {
  margin: 1px 1px;
}

/* line 10, app/assets/stylesheets/tenant/buttons.css.scss */
.btn-primary {
  color: #ffffff;
  border-color: #ffffff;
  background: #000000;
}

/* line 14, app/assets/stylesheets/tenant/buttons.css.scss */
.btn-primary:hover, .btn-primary.disabled, .btn-primary[disabled] {
  background-color: #474747;
}

/* line 17, app/assets/stylesheets/tenant/buttons.css.scss */
.btn-primary:active, .btn-primary.active {
  background-color: #606060;
}

/* line 21, app/assets/stylesheets/tenant/buttons.css.scss */
.btn-print {
  color: #000000;
  background: #c2c2c2;
}

/* line 24, app/assets/stylesheets/tenant/buttons.css.scss */
.btn-print:hover, .btn-print.disabled, .btn-print[disabled] {
  background-color: #f6e42e;
}

/* line 27, app/assets/stylesheets/tenant/buttons.css.scss */
.btn-print:active, .btn-print.active {
  background-color: #f6d727;
}

/* line 31, app/assets/stylesheets/tenant/buttons.css.scss */
.btn-download {
  color: #000000;
  background: #c2c2c2;
}

/* line 34, app/assets/stylesheets/tenant/buttons.css.scss */
.btn-download:hover, .btn-download.disabled, .btn-download[disabled] {
  background-color: #b6b6b6;
}

/* line 37, app/assets/stylesheets/tenant/buttons.css.scss */
.btn-download:active, .btn-download.active {
  background-color: #9f9f9f;
}

/* line 41, app/assets/stylesheets/tenant/buttons.css.scss */
.btn-qrcode {
  color: #000000;
  background: #ffffff;
  border: 1px solid #b4b4b4;
}

/* line 45, app/assets/stylesheets/tenant/buttons.css.scss */
.btn-qrcode:hover, .btn-qrcode.disabled, .btn-qrcode[disabled] {
  background-color: #f1f1f1;
}

/* line 48, app/assets/stylesheets/tenant/buttons.css.scss */
.btn-qrcode:active, .btn-qrcode.active {
  background-color: #dbdbdb;
}

/* line 52, app/assets/stylesheets/tenant/buttons.css.scss */
.btn-time {
  color: #ffffff;
  background: purple;
}

/* line 55, app/assets/stylesheets/tenant/buttons.css.scss */
.btn-time:hover, .btn-time.disabled, .btn-time[disabled] {
  color: #ffffff;
  background-color: #ba00ba;
}

/* line 59, app/assets/stylesheets/tenant/buttons.css.scss */
.btn-time:active, .btn-time.active {
  color: #ffffff;
  background-color: #ae00ae;
}

/* line 65, app/assets/stylesheets/tenant/buttons.css.scss */
.btn-additional-client {
  color: #FFFFFF;
  background: #000000;
}

/* line 68, app/assets/stylesheets/tenant/buttons.css.scss */
.btn-additional-client:hover, .btn-additional-client.disabled, .btn-additional-client[disabled] {
  color: #FFFFFF;
  background-color: #000000;
}

/* line 72, app/assets/stylesheets/tenant/buttons.css.scss */
.btn-additional-client:active, .btn-additional-client.active {
  color: #FFFFFF;
  background-color: #000000;
}

/* line 78, app/assets/stylesheets/tenant/buttons.css.scss */
.btn-disable-or-enable-qrid {
  padding: 6px 13px;
  margin: 2px;
  color: #ffffff;
  background: #a79bb8;
}

/* line 84, app/assets/stylesheets/tenant/buttons.css.scss */
.btn-disable-or-enable-qrid:hover, .btn-disable-or-enable-qrid.disabled, .btn-disable-or-enable-qrid[disabled] {
  color: #ffffff;
  background-color: #88858B;
}

/* line 88, app/assets/stylesheets/tenant/buttons.css.scss */
.btn-disable-or-enable-qrid:active, .btn-disable-or-enable-qrid.active {
  color: #ffffff;
  background-color: #DCD7E3;
}

/* Note: Can disable button by added class .disabled, but want tooltip to show, so change color and have empty link, not actually disable*/
/* line 94, app/assets/stylesheets/tenant/buttons.css.scss */
.disabled-disable-btn-color {
  color: #ffffff;
  background-color: #DCD7E3;
}

/* line 98, app/assets/stylesheets/tenant/buttons.css.scss */
.disabled-disable-btn-color:hover {
  color: #ffffff;
  background-color: #DCD7E3;
}

/* line 104, app/assets/stylesheets/tenant/buttons.css.scss */
.btn-add-site {
  color: #FFFFFF;
  background: #000000;
}

/* line 107, app/assets/stylesheets/tenant/buttons.css.scss */
.btn-add-site:hover, .btn-add-site.disabled, .btn-add-site[disabled] {
  color: #FFFFFF;
  background-color: #000000;
}

/* line 111, app/assets/stylesheets/tenant/buttons.css.scss */
.btn-add-site:active, .btn-add-site.active {
  color: #FFFFFF;
  background-color: #000000;
}

/* line 117, app/assets/stylesheets/tenant/buttons.css.scss */
.btn-add-occupancy {
  color: #FFFFFF;
  background: #DAA520;
}

/* line 120, app/assets/stylesheets/tenant/buttons.css.scss */
.btn-add-occupancy:hover, .btn-add-occupancy.disabled, .btn-add-occupancy[disabled] {
  color: #FFFFFF;
  background-color: #B8860B;
}

/* line 124, app/assets/stylesheets/tenant/buttons.css.scss */
.btn-add-occupancy:active, .btn-add-occupancy.active {
  color: #FFFFFF;
  background-color: #B8860B;
}

/* line 1, app/assets/stylesheets/tenant/calendar.css.scss */
.fc-day-content, .fc-widget-content {
  cursor: pointer;
}

/* line 4, app/assets/stylesheets/tenant/calendar.css.scss */
.fc-widget-header {
  background: #00b2c0;
  color: white;
}

/* line 11, app/assets/stylesheets/tenant/calendar.css.scss */
.fc-state-highlight {
  background: #fcf8e3;
}

/* line 14, app/assets/stylesheets/tenant/calendar.css.scss */
.fc-cell-overlay {
  background: #00aa00;
  opacity: .3;
  filter: alpha(opacity=30);
  /* for IE */
}

/* line 20, app/assets/stylesheets/tenant/calendar.css.scss */
.box-content ul.nav-tabs > li.active > a {
  background: -moz-linear-gradient(top, #00b2c0 0%, rgba(255, 255, 255, 0) 50%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #00b2c0), color-stop(50%, rgba(255, 255, 255, 0)));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #00b2c0 0%, rgba(255, 255, 255, 0) 50%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #00b2c0 0%, rgba(255, 255, 255, 0) 50%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #00b2c0 0%, rgba(255, 255, 255, 0) 50%);
  /* IE10+ */
  background: linear-gradient(to bottom, #00b2c0 0%, rgba(255, 255, 255, 0) 50%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00b2c0', endColorstr='#00ffffff',GradientType=0 );
  /* IE6-9 */
  color: #000;
  border-color: #00b2c0;
  border-bottom: 0;
}

/* line 32, app/assets/stylesheets/tenant/calendar.css.scss */
.fc-agenda-slots tr:nth-child(odd) {
  background: #ddd;
}

/* line 36, app/assets/stylesheets/tenant/calendar.css.scss */
.recurrent i.fa-redo-alt {
  position: absolute;
  top: 3px;
  right: 3px;
}

/* line 41, app/assets/stylesheets/tenant/calendar.css.scss */
.recurrent div {
  padding-right: 15px;
}

/* line 44, app/assets/stylesheets/tenant/calendar.css.scss */
.fc-event {
  border-width: 3px;
}

/* Absolute Center Spinner */
/* line 50, app/assets/stylesheets/tenant/calendar.css.scss */
#calendar_loading {
  position: fixed;
  z-index: 999;
  height: 2em;
  width: 2em;
  overflow: show;
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: none;
}

/* Transparent Overlay */
/* line 65, app/assets/stylesheets/tenant/calendar.css.scss */
#calendar_loading:before {
  content: '';
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}

/* :not(:required) hides these rules from IE9 and below */
/* line 77, app/assets/stylesheets/tenant/calendar.css.scss */
#calendar_loading:not(:required) {
  /* hide "loading..." text */
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

/* line 86, app/assets/stylesheets/tenant/calendar.css.scss */
#calendar_loading:not(:required):after {
  content: '';
  display: block;
  font-size: 10px;
  width: 1em;
  height: 1em;
  margin-top: -0.5em;
  -webkit-animation: spinner 1500ms infinite linear;
  -moz-animation: spinner 1500ms infinite linear;
  -ms-animation: spinner 1500ms infinite linear;
  -o-animation: spinner 1500ms infinite linear;
  animation: spinner 1500ms infinite linear;
  border-radius: 0.5em;
  -webkit-box-shadow: rgba(0, 0, 0, 0.75) 1.5em 0 0 0, rgba(0, 0, 0, 0.75) 1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) 0 1.5em 0 0, rgba(0, 0, 0, 0.75) -1.1em 1.1em 0 0, rgba(0, 0, 0, 0.5) -1.5em 0 0 0, rgba(0, 0, 0, 0.5) -1.1em -1.1em 0 0, rgba(0, 0, 0, 0.75) 0 -1.5em 0 0, rgba(0, 0, 0, 0.75) 1.1em -1.1em 0 0;
  box-shadow: rgba(0, 0, 0, 0.75) 1.5em 0 0 0, rgba(0, 0, 0, 0.75) 1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) 0 1.5em 0 0, rgba(0, 0, 0, 0.75) -1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) -1.5em 0 0 0, rgba(0, 0, 0, 0.75) -1.1em -1.1em 0 0, rgba(0, 0, 0, 0.75) 0 -1.5em 0 0, rgba(0, 0, 0, 0.75) 1.1em -1.1em 0 0;
}

/* Animation */
@-webkit-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-moz-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-o-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/*Qrid Show*/
/* line 3, app/assets/stylesheets/tenant/checklist_responsive.css.scss */
.tasks_index #myModal .report-instructions label, .permatasks_index #myModak .report-instructions label, .qrids_trial #myModal .report-instructions label, .my_qrids_trial #myModal .report-instructions label, .my_qrids_start .report-instructions label {
  float: none;
}

/* line 5, app/assets/stylesheets/tenant/checklist_responsive.css.scss */
.tasks_index #myModal .report-instructions label ~ input, .permatasks_index #myModak .report-instructions label ~ input, .qrids_trial #myModal .report-instructions label ~ input, .my_qrids_trial #myModal .report-instructions label ~ input, .my_qrids_start .report-instructions label ~ input {
  float: left;
  margin-right: 5px;
}

/* line 10, app/assets/stylesheets/tenant/checklist_responsive.css.scss */
.tasks_index #myModal .qrid-checklist, .permatasks_index #myModak .qrid-checklist, .qrids_trial #myModal .qrid-checklist, .my_qrids_trial #myModal .qrid-checklist, .my_qrids_start .qrid-checklist {
  max-width: 648px;
  margin-left: auto;
  margin-right: auto;
}

/* line 15, app/assets/stylesheets/tenant/checklist_responsive.css.scss */
.tasks_index #myModal .qrid-options, .permatasks_index #myModak .qrid-options, .qrids_trial #myModal .qrid-options, .my_qrids_trial #myModal .qrid-options, .my_qrids_start .qrid-options {
  min-width: 0;
}

/* line 18, app/assets/stylesheets/tenant/checklist_responsive.css.scss */
.tasks_index #myModal .report-photo input, .permatasks_index #myModak .report-photo input, .qrids_trial #myModal .report-photo input, .my_qrids_trial #myModal .report-photo input, .my_qrids_start .report-photo input {
  float: left;
  clear: left;
}

/* line 22, app/assets/stylesheets/tenant/checklist_responsive.css.scss */
.tasks_index #myModal .control-label, .permatasks_index #myModak .control-label, .qrids_trial #myModal .control-label, .my_qrids_trial #myModal .control-label, .my_qrids_start .control-label {
  width: 80% !important;
  text-align: left;
}

/* line 26, app/assets/stylesheets/tenant/checklist_responsive.css.scss */
.tasks_index #myModal .radio-no ~ .qrid-options .question, .tasks_index #myModal .radio-na ~ .qrid-options .question, .tasks_index #myModal .radio-yes ~ .qrid-options .question, .permatasks_index #myModak .radio-no ~ .qrid-options .question, .permatasks_index #myModak .radio-na ~ .qrid-options .question, .permatasks_index #myModak .radio-yes ~ .qrid-options .question, .qrids_trial #myModal .radio-no ~ .qrid-options .question, .qrids_trial #myModal .radio-na ~ .qrid-options .question, .qrids_trial #myModal .radio-yes ~ .qrid-options .question, .my_qrids_trial #myModal .radio-no ~ .qrid-options .question, .my_qrids_trial #myModal .radio-na ~ .qrid-options .question, .my_qrids_trial #myModal .radio-yes ~ .qrid-options .question, .my_qrids_start .radio-no ~ .qrid-options .question, .my_qrids_start .radio-na ~ .qrid-options .question, .my_qrids_start .radio-yes ~ .qrid-options .question {
  padding-left: 20px;
}

/* line 29, app/assets/stylesheets/tenant/checklist_responsive.css.scss */
.tasks_index #myModal .question .qrid-options, .permatasks_index #myModak .question .qrid-options, .qrids_trial #myModal .question .qrid-options, .my_qrids_trial #myModal .question .qrid-options, .my_qrids_start .question .qrid-options {
  padding-left: 10px !important;
}

/* line 32, app/assets/stylesheets/tenant/checklist_responsive.css.scss */
.tasks_index #myModal .radio-yes ~ .qrid-options, .permatasks_index #myModak .radio-yes ~ .qrid-options, .qrids_trial #myModal .radio-yes ~ .qrid-options, .my_qrids_trial #myModal .radio-yes ~ .qrid-options, .my_qrids_start .radio-yes ~ .qrid-options {
  margin-right: -150px;
}

/* line 37, app/assets/stylesheets/tenant/checklist_responsive.css.scss */
.tasks_index #myModal .radio-yes .radio-no ~ .qrid-options, .tasks_index #myModal .radio-na .radio-no ~ .qrid-options, .tasks_index #myModal .question .radio-no ~ .qrid-options, .permatasks_index #myModak .radio-yes .radio-no ~ .qrid-options, .permatasks_index #myModak .radio-na .radio-no ~ .qrid-options, .permatasks_index #myModak .question .radio-no ~ .qrid-options, .qrids_trial #myModal .radio-yes .radio-no ~ .qrid-options, .qrids_trial #myModal .radio-na .radio-no ~ .qrid-options, .qrids_trial #myModal .question .radio-no ~ .qrid-options, .my_qrids_trial #myModal .radio-yes .radio-no ~ .qrid-options, .my_qrids_trial #myModal .radio-na .radio-no ~ .qrid-options, .my_qrids_trial #myModal .question .radio-no ~ .qrid-options, .my_qrids_start .radio-yes .radio-no ~ .qrid-options, .my_qrids_start .radio-na .radio-no ~ .qrid-options, .my_qrids_start .question .radio-no ~ .qrid-options {
  margin-left: -212px;
}

/* line 39, app/assets/stylesheets/tenant/checklist_responsive.css.scss */
.tasks_index #myModal .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .tasks_index #myModal .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .tasks_index #myModal .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .permatasks_index #myModak .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .permatasks_index #myModak .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .permatasks_index #myModak .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .qrids_trial #myModal .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .qrids_trial #myModal .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .qrids_trial #myModal .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_trial #myModal .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_trial #myModal .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_trial #myModal .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_start .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_start .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_start .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options {
  margin-left: -207px;
}

/* line 41, app/assets/stylesheets/tenant/checklist_responsive.css.scss */
.tasks_index #myModal .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .tasks_index #myModal .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .tasks_index #myModal .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .permatasks_index #myModak .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .permatasks_index #myModak .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .permatasks_index #myModak .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .qrids_trial #myModal .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .qrids_trial #myModal .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .qrids_trial #myModal .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_trial #myModal .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_trial #myModal .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_trial #myModal .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_start .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_start .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_start .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options {
  margin-left: -202px;
}

/* line 43, app/assets/stylesheets/tenant/checklist_responsive.css.scss */
.tasks_index #myModal .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .tasks_index #myModal .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .tasks_index #myModal .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .permatasks_index #myModak .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .permatasks_index #myModak .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .permatasks_index #myModak .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .qrids_trial #myModal .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .qrids_trial #myModal .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .qrids_trial #myModal .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_trial #myModal .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_trial #myModal .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_trial #myModal .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_start .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_start .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_start .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options {
  margin-left: -197px;
}

/* line 45, app/assets/stylesheets/tenant/checklist_responsive.css.scss */
.tasks_index #myModal .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .tasks_index #myModal .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .tasks_index #myModal .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .permatasks_index #myModak .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .permatasks_index #myModak .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .permatasks_index #myModak .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .qrids_trial #myModal .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .qrids_trial #myModal .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .qrids_trial #myModal .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_trial #myModal .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_trial #myModal .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_trial #myModal .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_start .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_start .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_start .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options {
  margin-left: -192px;
}

/* line 47, app/assets/stylesheets/tenant/checklist_responsive.css.scss */
.tasks_index #myModal .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .tasks_index #myModal .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .tasks_index #myModal .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .permatasks_index #myModak .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .permatasks_index #myModak .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .permatasks_index #myModak .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .qrids_trial #myModal .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .qrids_trial #myModal .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .qrids_trial #myModal .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_trial #myModal .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_trial #myModal .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_trial #myModal .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_start .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_start .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_start .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options {
  margin-left: -187px;
}

/* line 49, app/assets/stylesheets/tenant/checklist_responsive.css.scss */
.tasks_index #myModal .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .tasks_index #myModal .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .tasks_index #myModal .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .permatasks_index #myModak .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .permatasks_index #myModak .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .permatasks_index #myModak .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .qrids_trial #myModal .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .qrids_trial #myModal .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .qrids_trial #myModal .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_trial #myModal .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_trial #myModal .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_trial #myModal .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_start .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_start .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_start .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options {
  margin-left: -182px;
}

/* line 61, app/assets/stylesheets/tenant/checklist_responsive.css.scss */
.tasks_index #myModal .radio-yes .radio-na ~ .qrid-options, .tasks_index #myModal .radio-no .radio-na ~ .qrid-options, .tasks_index #myModal .question .radio-na ~ .qrid-options, .permatasks_index #myModak .radio-yes .radio-na ~ .qrid-options, .permatasks_index #myModak .radio-no .radio-na ~ .qrid-options, .permatasks_index #myModak .question .radio-na ~ .qrid-options, .qrids_trial #myModal .radio-yes .radio-na ~ .qrid-options, .qrids_trial #myModal .radio-no .radio-na ~ .qrid-options, .qrids_trial #myModal .question .radio-na ~ .qrid-options, .my_qrids_trial #myModal .radio-yes .radio-na ~ .qrid-options, .my_qrids_trial #myModal .radio-no .radio-na ~ .qrid-options, .my_qrids_trial #myModal .question .radio-na ~ .qrid-options, .my_qrids_start .radio-yes .radio-na ~ .qrid-options, .my_qrids_start .radio-no .radio-na ~ .qrid-options, .my_qrids_start .question .radio-na ~ .qrid-options {
  margin-left: -409px;
}

/* line 63, app/assets/stylesheets/tenant/checklist_responsive.css.scss */
.tasks_index #myModal .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .tasks_index #myModal .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .tasks_index #myModal .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .permatasks_index #myModak .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .permatasks_index #myModak .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .permatasks_index #myModak .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .qrids_trial #myModal .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .qrids_trial #myModal .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .qrids_trial #myModal .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_trial #myModal .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_trial #myModal .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_trial #myModal .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_start .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_start .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_start .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options {
  margin-left: -399px;
}

/* line 65, app/assets/stylesheets/tenant/checklist_responsive.css.scss */
.tasks_index #myModal .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .tasks_index #myModal .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .tasks_index #myModal .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .permatasks_index #myModak .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .permatasks_index #myModak .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .permatasks_index #myModak .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .qrids_trial #myModal .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .qrids_trial #myModal .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .qrids_trial #myModal .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_trial #myModal .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_trial #myModal .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_trial #myModal .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_start .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_start .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_start .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options {
  margin-left: -389px;
}

/* line 67, app/assets/stylesheets/tenant/checklist_responsive.css.scss */
.tasks_index #myModal .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .tasks_index #myModal .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .tasks_index #myModal .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .permatasks_index #myModak .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .permatasks_index #myModak .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .permatasks_index #myModak .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .qrids_trial #myModal .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .qrids_trial #myModal .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .qrids_trial #myModal .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_trial #myModal .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_trial #myModal .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_trial #myModal .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_start .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_start .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_start .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options {
  margin-left: -379px;
}

/* line 69, app/assets/stylesheets/tenant/checklist_responsive.css.scss */
.tasks_index #myModal .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .tasks_index #myModal .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .tasks_index #myModal .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .permatasks_index #myModak .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .permatasks_index #myModak .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .permatasks_index #myModak .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .qrids_trial #myModal .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .qrids_trial #myModal .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .qrids_trial #myModal .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_trial #myModal .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_trial #myModal .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_trial #myModal .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_start .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_start .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_start .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options {
  margin-left: -369px;
}

/* line 71, app/assets/stylesheets/tenant/checklist_responsive.css.scss */
.tasks_index #myModal .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .tasks_index #myModal .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .tasks_index #myModal .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .permatasks_index #myModak .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .permatasks_index #myModak .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .permatasks_index #myModak .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .qrids_trial #myModal .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .qrids_trial #myModal .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .qrids_trial #myModal .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_trial #myModal .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_trial #myModal .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_trial #myModal .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_start .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_start .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_start .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options {
  margin-left: -359px;
}

/* line 73, app/assets/stylesheets/tenant/checklist_responsive.css.scss */
.tasks_index #myModal .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .tasks_index #myModal .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .tasks_index #myModal .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .permatasks_index #myModak .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .permatasks_index #myModak .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .permatasks_index #myModak .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .qrids_trial #myModal .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .qrids_trial #myModal .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .qrids_trial #myModal .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_trial #myModal .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_trial #myModal .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_trial #myModal .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_start .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_start .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_start .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options {
  margin-left: -349px;
}

/* line 83, app/assets/stylesheets/tenant/checklist_responsive.css.scss */
.tasks_index #myModal .question, .permatasks_index #myModak .question, .qrids_trial #myModal .question, .my_qrids_trial #myModal .question, .my_qrids_start .question {
  width: 100%;
}

/* line 107, app/assets/stylesheets/tenant/checklist_responsive.css.scss */
.tasks_index #myModal .qrid-options textarea, .permatasks_index #myModak .qrid-options textarea, .qrids_trial #myModal .qrid-options textarea, .my_qrids_trial #myModal .qrid-options textarea, .my_qrids_start .qrid-options textarea {
  width: 100%;
}

@media only screen and (max-width: 768px) {
  /* line 111, app/assets/stylesheets/tenant/checklist_responsive.css.scss */
  .tasks_index #myModal .radio-no ~ .qrid-options, .tasks_index #myModal .radio-na ~ .qrid-options, .tasks_index #myModal .radio-yes ~ .qrid-options .question, .permatasks_index #myModak .radio-no ~ .qrid-options, .permatasks_index #myModak .radio-na ~ .qrid-options, .permatasks_index #myModak .radio-yes ~ .qrid-options .question, .qrids_trial #myModal .radio-no ~ .qrid-options, .qrids_trial #myModal .radio-na ~ .qrid-options, .qrids_trial #myModal .radio-yes ~ .qrid-options .question, .my_qrids_trial #myModal .radio-no ~ .qrid-options, .my_qrids_trial #myModal .radio-na ~ .qrid-options, .my_qrids_trial #myModal .radio-yes ~ .qrid-options .question, .my_qrids_start .radio-no ~ .qrid-options, .my_qrids_start .radio-na ~ .qrid-options, .my_qrids_start .radio-yes ~ .qrid-options .question {
    padding-left: 0;
  }
  /* line 112, app/assets/stylesheets/tenant/checklist_responsive.css.scss */
  .tasks_index #myModal .btn-minimize, .permatasks_index #myModak .btn-minimize, .qrids_trial #myModal .btn-minimize, .my_qrids_trial #myModal .btn-minimize, .my_qrids_start .btn-minimize {
    display: none;
  }
  /* line 115, app/assets/stylesheets/tenant/checklist_responsive.css.scss */
  .tasks_index #myModal .question, .tasks_index #myModal .qrid-options, .permatasks_index #myModak .question, .permatasks_index #myModak .qrid-options, .qrids_trial #myModal .question, .qrids_trial #myModal .qrid-options, .my_qrids_trial #myModal .question, .my_qrids_trial #myModal .qrid-options, .my_qrids_start .question, .my_qrids_start .qrid-options {
    width: 100% !important;
  }
  /* line 118, app/assets/stylesheets/tenant/checklist_responsive.css.scss */
  .tasks_index #myModal .qrid-content, .permatasks_index #myModak .qrid-content, .qrids_trial #myModal .qrid-content, .my_qrids_trial #myModal .qrid-content, .my_qrids_start .qrid-content {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  /* line 122, app/assets/stylesheets/tenant/checklist_responsive.css.scss */
  .tasks_index #myModal .modal-body, .permatasks_index #myModak .modal-body, .qrids_trial #myModal .modal-body, .my_qrids_trial #myModal .modal-body, .my_qrids_start .modal-body {
    padding: 0 !important;
  }
  /* line 125, app/assets/stylesheets/tenant/checklist_responsive.css.scss */
  .tasks_index #myModal .radio-yes ~ .qrid-options, .permatasks_index #myModak .radio-yes ~ .qrid-options, .qrids_trial #myModal .radio-yes ~ .qrid-options, .my_qrids_trial #myModal .radio-yes ~ .qrid-options, .my_qrids_start .radio-yes ~ .qrid-options {
    width: 100%;
    margin-left: 0 !important;
  }
  /* line 129, app/assets/stylesheets/tenant/checklist_responsive.css.scss */
  .tasks_index #myModal .qrid-options .action, .permatasks_index #myModak .qrid-options .action, .qrids_trial #myModal .qrid-options .action, .my_qrids_trial #myModal .qrid-options .action, .my_qrids_start .qrid-options .action {
    width: 100% !important;
  }
}

@media only screen and (max-width: 768px) {
  /* line 134, app/assets/stylesheets/tenant/checklist_responsive.css.scss */
  .tasks_index #myModal .modal-dialog, .permatasks_index #myModak .modal-dialog, .qrids_trial #myModal .modal-dialog, .my_qrids_trial #myModal .modal-dialog, .my_qrids_start .modal-dialog {
    max-width: 768px;
  }
  /* line 137, app/assets/stylesheets/tenant/checklist_responsive.css.scss */
  .tasks_index #myModal .question, .permatasks_index #myModak .question, .qrids_trial #myModal .question, .my_qrids_trial #myModal .question, .my_qrids_start .question {
    width: 100%;
  }
  /* line 163, app/assets/stylesheets/tenant/checklist_responsive.css.scss */
  .tasks_index #myModal .radio-yes .radio-no ~ .qrid-options, .tasks_index #myModal .radio-na .radio-no ~ .qrid-options, .tasks_index #myModal .question .radio-no ~ .qrid-options, .permatasks_index #myModak .radio-yes .radio-no ~ .qrid-options, .permatasks_index #myModak .radio-na .radio-no ~ .qrid-options, .permatasks_index #myModak .question .radio-no ~ .qrid-options, .qrids_trial #myModal .radio-yes .radio-no ~ .qrid-options, .qrids_trial #myModal .radio-na .radio-no ~ .qrid-options, .qrids_trial #myModal .question .radio-no ~ .qrid-options, .my_qrids_trial #myModal .radio-yes .radio-no ~ .qrid-options, .my_qrids_trial #myModal .radio-na .radio-no ~ .qrid-options, .my_qrids_trial #myModal .question .radio-no ~ .qrid-options, .my_qrids_start .radio-yes .radio-no ~ .qrid-options, .my_qrids_start .radio-na .radio-no ~ .qrid-options, .my_qrids_start .question .radio-no ~ .qrid-options {
    margin-left: -229px;
  }
  /* line 165, app/assets/stylesheets/tenant/checklist_responsive.css.scss */
  .tasks_index #myModal .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .tasks_index #myModal .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .tasks_index #myModal .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .permatasks_index #myModak .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .permatasks_index #myModak .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .permatasks_index #myModak .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .qrids_trial #myModal .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .qrids_trial #myModal .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .qrids_trial #myModal .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_trial #myModal .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_trial #myModal .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_trial #myModal .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_start .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_start .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_start .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options {
    margin-left: -224px;
  }
  /* line 167, app/assets/stylesheets/tenant/checklist_responsive.css.scss */
  .tasks_index #myModal .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .tasks_index #myModal .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .tasks_index #myModal .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .permatasks_index #myModak .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .permatasks_index #myModak .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .permatasks_index #myModak .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .qrids_trial #myModal .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .qrids_trial #myModal .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .qrids_trial #myModal .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_trial #myModal .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_trial #myModal .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_trial #myModal .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_start .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_start .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_start .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options {
    margin-left: -219px;
  }
  /* line 169, app/assets/stylesheets/tenant/checklist_responsive.css.scss */
  .tasks_index #myModal .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .tasks_index #myModal .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .tasks_index #myModal .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .permatasks_index #myModak .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .permatasks_index #myModak .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .permatasks_index #myModak .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .qrids_trial #myModal .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .qrids_trial #myModal .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .qrids_trial #myModal .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_trial #myModal .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_trial #myModal .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_trial #myModal .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_start .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_start .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_start .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options {
    margin-left: -214px;
  }
  /* line 171, app/assets/stylesheets/tenant/checklist_responsive.css.scss */
  .tasks_index #myModal .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .tasks_index #myModal .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .tasks_index #myModal .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .permatasks_index #myModak .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .permatasks_index #myModak .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .permatasks_index #myModak .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .qrids_trial #myModal .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .qrids_trial #myModal .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .qrids_trial #myModal .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_trial #myModal .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_trial #myModal .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_trial #myModal .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_start .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_start .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_start .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options {
    margin-left: -209px;
  }
  /* line 173, app/assets/stylesheets/tenant/checklist_responsive.css.scss */
  .tasks_index #myModal .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .tasks_index #myModal .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .tasks_index #myModal .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .permatasks_index #myModak .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .permatasks_index #myModak .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .permatasks_index #myModak .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .qrids_trial #myModal .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .qrids_trial #myModal .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .qrids_trial #myModal .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_trial #myModal .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_trial #myModal .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_trial #myModal .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_start .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_start .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_start .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options {
    margin-left: -204px;
  }
  /* line 175, app/assets/stylesheets/tenant/checklist_responsive.css.scss */
  .tasks_index #myModal .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .tasks_index #myModal .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .tasks_index #myModal .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .permatasks_index #myModak .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .permatasks_index #myModak .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .permatasks_index #myModak .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .qrids_trial #myModal .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .qrids_trial #myModal .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .qrids_trial #myModal .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_trial #myModal .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_trial #myModal .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_trial #myModal .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_start .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_start .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_start .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options {
    margin-left: -199px;
  }
  /* line 187, app/assets/stylesheets/tenant/checklist_responsive.css.scss */
  .tasks_index #myModal .radio-yes .radio-na ~ .qrid-options, .tasks_index #myModal .radio-no .radio-na ~ .qrid-options, .tasks_index #myModal .question .radio-na ~ .qrid-options, .permatasks_index #myModak .radio-yes .radio-na ~ .qrid-options, .permatasks_index #myModak .radio-no .radio-na ~ .qrid-options, .permatasks_index #myModak .question .radio-na ~ .qrid-options, .qrids_trial #myModal .radio-yes .radio-na ~ .qrid-options, .qrids_trial #myModal .radio-no .radio-na ~ .qrid-options, .qrids_trial #myModal .question .radio-na ~ .qrid-options, .my_qrids_trial #myModal .radio-yes .radio-na ~ .qrid-options, .my_qrids_trial #myModal .radio-no .radio-na ~ .qrid-options, .my_qrids_trial #myModal .question .radio-na ~ .qrid-options, .my_qrids_start .radio-yes .radio-na ~ .qrid-options, .my_qrids_start .radio-no .radio-na ~ .qrid-options, .my_qrids_start .question .radio-na ~ .qrid-options {
    margin-left: -459px;
  }
  /* line 189, app/assets/stylesheets/tenant/checklist_responsive.css.scss */
  .tasks_index #myModal .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .tasks_index #myModal .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .tasks_index #myModal .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .permatasks_index #myModak .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .permatasks_index #myModak .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .permatasks_index #myModak .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .qrids_trial #myModal .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .qrids_trial #myModal .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .qrids_trial #myModal .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_trial #myModal .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_trial #myModal .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_trial #myModal .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_start .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_start .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_start .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options {
    margin-left: -454px;
  }
  /* line 191, app/assets/stylesheets/tenant/checklist_responsive.css.scss */
  .tasks_index #myModal .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .tasks_index #myModal .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .tasks_index #myModal .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .permatasks_index #myModak .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .permatasks_index #myModak .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .permatasks_index #myModak .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .qrids_trial #myModal .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .qrids_trial #myModal .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .qrids_trial #myModal .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_trial #myModal .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_trial #myModal .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_trial #myModal .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_start .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_start .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_start .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options {
    margin-left: -449px;
  }
  /* line 193, app/assets/stylesheets/tenant/checklist_responsive.css.scss */
  .tasks_index #myModal .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .tasks_index #myModal .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .tasks_index #myModal .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .permatasks_index #myModak .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .permatasks_index #myModak .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .permatasks_index #myModak .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .qrids_trial #myModal .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .qrids_trial #myModal .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .qrids_trial #myModal .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_trial #myModal .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_trial #myModal .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_trial #myModal .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_start .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_start .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_start .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options {
    margin-left: -444px;
  }
  /* line 195, app/assets/stylesheets/tenant/checklist_responsive.css.scss */
  .tasks_index #myModal .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .tasks_index #myModal .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .tasks_index #myModal .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .permatasks_index #myModak .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .permatasks_index #myModak .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .permatasks_index #myModak .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .qrids_trial #myModal .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .qrids_trial #myModal .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .qrids_trial #myModal .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_trial #myModal .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_trial #myModal .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_trial #myModal .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_start .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_start .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_start .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options {
    margin-left: -439px;
  }
  /* line 197, app/assets/stylesheets/tenant/checklist_responsive.css.scss */
  .tasks_index #myModal .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .tasks_index #myModal .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .tasks_index #myModal .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .permatasks_index #myModak .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .permatasks_index #myModak .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .permatasks_index #myModak .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .qrids_trial #myModal .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .qrids_trial #myModal .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .qrids_trial #myModal .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_trial #myModal .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_trial #myModal .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_trial #myModal .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_start .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_start .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_start .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options {
    margin-left: -434px;
  }
  /* line 199, app/assets/stylesheets/tenant/checklist_responsive.css.scss */
  .tasks_index #myModal .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .tasks_index #myModal .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .tasks_index #myModal .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .permatasks_index #myModak .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .permatasks_index #myModak .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .permatasks_index #myModak .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .qrids_trial #myModal .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .qrids_trial #myModal .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .qrids_trial #myModal .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_trial #myModal .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_trial #myModal .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_trial #myModal .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_start .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_start .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_start .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options {
    margin-left: -429px;
  }
}

@media only screen and (max-width: 640px) {
  /* line 237, app/assets/stylesheets/tenant/checklist_responsive.css.scss */
  .tasks_index #myModal .radio-yes .radio-no ~ .qrid-options, .tasks_index #myModal .radio-na .radio-no ~ .qrid-options, .tasks_index #myModal .question .radio-no ~ .qrid-options, .permatasks_index #myModak .radio-yes .radio-no ~ .qrid-options, .permatasks_index #myModak .radio-na .radio-no ~ .qrid-options, .permatasks_index #myModak .question .radio-no ~ .qrid-options, .qrids_trial #myModal .radio-yes .radio-no ~ .qrid-options, .qrids_trial #myModal .radio-na .radio-no ~ .qrid-options, .qrids_trial #myModal .question .radio-no ~ .qrid-options, .my_qrids_trial #myModal .radio-yes .radio-no ~ .qrid-options, .my_qrids_trial #myModal .radio-na .radio-no ~ .qrid-options, .my_qrids_trial #myModal .question .radio-no ~ .qrid-options, .my_qrids_start .radio-yes .radio-no ~ .qrid-options, .my_qrids_start .radio-na .radio-no ~ .qrid-options, .my_qrids_start .question .radio-no ~ .qrid-options {
    margin-left: -188px;
  }
  /* line 239, app/assets/stylesheets/tenant/checklist_responsive.css.scss */
  .tasks_index #myModal .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .tasks_index #myModal .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .tasks_index #myModal .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .permatasks_index #myModak .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .permatasks_index #myModak .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .permatasks_index #myModak .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .qrids_trial #myModal .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .qrids_trial #myModal .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .qrids_trial #myModal .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_trial #myModal .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_trial #myModal .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_trial #myModal .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_start .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_start .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_start .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options {
    margin-left: -183px;
  }
  /* line 241, app/assets/stylesheets/tenant/checklist_responsive.css.scss */
  .tasks_index #myModal .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .rado-no ~ .qrid-options, .tasks_index #myModal .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .rado-no ~ .qrid-options, .tasks_index #myModal .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .rado-no ~ .qrid-options, .permatasks_index #myModak .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .rado-no ~ .qrid-options, .permatasks_index #myModak .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .rado-no ~ .qrid-options, .permatasks_index #myModak .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .rado-no ~ .qrid-options, .qrids_trial #myModal .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .rado-no ~ .qrid-options, .qrids_trial #myModal .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .rado-no ~ .qrid-options, .qrids_trial #myModal .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .rado-no ~ .qrid-options, .my_qrids_trial #myModal .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .rado-no ~ .qrid-options, .my_qrids_trial #myModal .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .rado-no ~ .qrid-options, .my_qrids_trial #myModal .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .rado-no ~ .qrid-options, .my_qrids_start .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .rado-no ~ .qrid-options, .my_qrids_start .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .rado-no ~ .qrid-options, .my_qrids_start .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .rado-no ~ .qrid-options {
    margin-left: -178px;
  }
  /* line 243, app/assets/stylesheets/tenant/checklist_responsive.css.scss */
  .tasks_index #myModal .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .rado-no ~ .qrid-options .radio-no ~ .qrid-options, .tasks_index #myModal .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .rado-no ~ .qrid-options .radio-no ~ .qrid-options, .tasks_index #myModal .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .rado-no ~ .qrid-options .radio-no ~ .qrid-options, .permatasks_index #myModak .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .rado-no ~ .qrid-options .radio-no ~ .qrid-options, .permatasks_index #myModak .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .rado-no ~ .qrid-options .radio-no ~ .qrid-options, .permatasks_index #myModak .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .rado-no ~ .qrid-options .radio-no ~ .qrid-options, .qrids_trial #myModal .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .rado-no ~ .qrid-options .radio-no ~ .qrid-options, .qrids_trial #myModal .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .rado-no ~ .qrid-options .radio-no ~ .qrid-options, .qrids_trial #myModal .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .rado-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_trial #myModal .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .rado-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_trial #myModal .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .rado-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_trial #myModal .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .rado-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_start .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .rado-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_start .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .rado-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_start .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .rado-no ~ .qrid-options .radio-no ~ .qrid-options {
    margin-left: -173px;
  }
  /* line 245, app/assets/stylesheets/tenant/checklist_responsive.css.scss */
  .tasks_index #myModal .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .rado-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .tasks_index #myModal .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .rado-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .tasks_index #myModal .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .rado-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .permatasks_index #myModak .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .rado-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .permatasks_index #myModak .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .rado-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .permatasks_index #myModak .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .rado-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .qrids_trial #myModal .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .rado-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .qrids_trial #myModal .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .rado-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .qrids_trial #myModal .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .rado-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_trial #myModal .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .rado-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_trial #myModal .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .rado-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_trial #myModal .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .rado-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_start .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .rado-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_start .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .rado-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_start .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .rado-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options {
    margin-left: -168px;
  }
  /* line 247, app/assets/stylesheets/tenant/checklist_responsive.css.scss */
  .tasks_index #myModal .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .rado-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .tasks_index #myModal .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .rado-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .tasks_index #myModal .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .rado-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .permatasks_index #myModak .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .rado-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .permatasks_index #myModak .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .rado-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .permatasks_index #myModak .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .rado-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .qrids_trial #myModal .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .rado-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .qrids_trial #myModal .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .rado-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .qrids_trial #myModal .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .rado-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_trial #myModal .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .rado-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_trial #myModal .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .rado-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_trial #myModal .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .rado-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_start .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .rado-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_start .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .rado-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_start .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .rado-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options {
    margin-left: -163px;
  }
  /* line 249, app/assets/stylesheets/tenant/checklist_responsive.css.scss */
  .tasks_index #myModal .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .rado-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .tasks_index #myModal .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .rado-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .tasks_index #myModal .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .rado-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .permatasks_index #myModak .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .rado-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .permatasks_index #myModak .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .rado-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .permatasks_index #myModak .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .rado-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .qrids_trial #myModal .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .rado-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .qrids_trial #myModal .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .rado-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .qrids_trial #myModal .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .rado-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_trial #myModal .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .rado-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_trial #myModal .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .rado-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_trial #myModal .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .rado-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_start .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .rado-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_start .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .rado-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_start .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .rado-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options {
    margin-left: -158px;
  }
  /* line 261, app/assets/stylesheets/tenant/checklist_responsive.css.scss */
  .tasks_index #myModal .radio-yes .radio-na ~ .qrid-options, .tasks_index #myModal .radio-no .radio-na ~ .qrid-options, .tasks_index #myModal .question .radio-na ~ .qrid-options, .permatasks_index #myModak .radio-yes .radio-na ~ .qrid-options, .permatasks_index #myModak .radio-no .radio-na ~ .qrid-options, .permatasks_index #myModak .question .radio-na ~ .qrid-options, .qrids_trial #myModal .radio-yes .radio-na ~ .qrid-options, .qrids_trial #myModal .radio-no .radio-na ~ .qrid-options, .qrids_trial #myModal .question .radio-na ~ .qrid-options, .my_qrids_trial #myModal .radio-yes .radio-na ~ .qrid-options, .my_qrids_trial #myModal .radio-no .radio-na ~ .qrid-options, .my_qrids_trial #myModal .question .radio-na ~ .qrid-options, .my_qrids_start .radio-yes .radio-na ~ .qrid-options, .my_qrids_start .radio-no .radio-na ~ .qrid-options, .my_qrids_start .question .radio-na ~ .qrid-options {
    margin-left: -378px;
  }
  /* line 263, app/assets/stylesheets/tenant/checklist_responsive.css.scss */
  .tasks_index #myModal .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .tasks_index #myModal .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .tasks_index #myModal .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .permatasks_index #myModak .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .permatasks_index #myModak .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .permatasks_index #myModak .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .qrids_trial #myModal .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .qrids_trial #myModal .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .qrids_trial #myModal .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_trial #myModal .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_trial #myModal .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_trial #myModal .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_start .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_start .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_start .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options {
    margin-left: -368px;
  }
  /* line 265, app/assets/stylesheets/tenant/checklist_responsive.css.scss */
  .tasks_index #myModal .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .tasks_index #myModal .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .tasks_index #myModal .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .permatasks_index #myModak .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .permatasks_index #myModak .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .permatasks_index #myModak .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .qrids_trial #myModal .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .qrids_trial #myModal .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .qrids_trial #myModal .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_trial #myModal .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_trial #myModal .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_trial #myModal .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_start .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_start .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_start .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options {
    margin-left: -358px;
  }
  /* line 267, app/assets/stylesheets/tenant/checklist_responsive.css.scss */
  .tasks_index #myModal .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .tasks_index #myModal .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .tasks_index #myModal .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .permatasks_index #myModak .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .permatasks_index #myModak .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .permatasks_index #myModak .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .qrids_trial #myModal .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .qrids_trial #myModal .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .qrids_trial #myModal .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_trial #myModal .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_trial #myModal .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_trial #myModal .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_start .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_start .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_start .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options {
    margin-left: -348px;
  }
  /* line 269, app/assets/stylesheets/tenant/checklist_responsive.css.scss */
  .tasks_index #myModal .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .tasks_index #myModal .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .tasks_index #myModal .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .permatasks_index #myModak .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .permatasks_index #myModak .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .permatasks_index #myModak .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .qrids_trial #myModal .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .qrids_trial #myModal .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .qrids_trial #myModal .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_trial #myModal .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_trial #myModal .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_trial #myModal .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_start .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_start .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_start .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options {
    margin-left: -338px;
  }
  /* line 271, app/assets/stylesheets/tenant/checklist_responsive.css.scss */
  .tasks_index #myModal .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .tasks_index #myModal .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .tasks_index #myModal .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .permatasks_index #myModak .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .permatasks_index #myModak .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .permatasks_index #myModak .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .qrids_trial #myModal .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .qrids_trial #myModal .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .qrids_trial #myModal .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_trial #myModal .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_trial #myModal .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_trial #myModal .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_start .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_start .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_start .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options {
    margin-left: -328px;
  }
  /* line 273, app/assets/stylesheets/tenant/checklist_responsive.css.scss */
  .tasks_index #myModal .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .tasks_index #myModal .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .tasks_index #myModal .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .permatasks_index #myModak .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .permatasks_index #myModak .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .permatasks_index #myModak .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .qrids_trial #myModal .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .qrids_trial #myModal .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .qrids_trial #myModal .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_trial #myModal .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_trial #myModal .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_trial #myModal .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_start .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_start .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_start .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options {
    margin-left: -318px;
  }
}

@media only screen and (max-width: 480px) {
  /* line 285, app/assets/stylesheets/tenant/checklist_responsive.css.scss */
  .tasks_index #myModal .modal-dialog, .permatasks_index #myModak .modal-dialog, .qrids_trial #myModal .modal-dialog, .my_qrids_trial #myModal .modal-dialog, .my_qrids_start .modal-dialog {
    max-width: 480px;
  }
  /* line 288, app/assets/stylesheets/tenant/checklist_responsive.css.scss */
  .tasks_index #myModal .question, .permatasks_index #myModak .question, .qrids_trial #myModal .question, .my_qrids_trial #myModal .question, .my_qrids_start .question {
    width: 100%;
  }
  /* line 314, app/assets/stylesheets/tenant/checklist_responsive.css.scss */
  .tasks_index #myModal .radio-yes .radio-no ~ .qrid-options, .tasks_index #myModal .radio-na .radio-no ~ .qrid-options, .tasks_index #myModal .question .radio-no ~ .qrid-options, .permatasks_index #myModak .radio-yes .radio-no ~ .qrid-options, .permatasks_index #myModak .radio-na .radio-no ~ .qrid-options, .permatasks_index #myModak .question .radio-no ~ .qrid-options, .qrids_trial #myModal .radio-yes .radio-no ~ .qrid-options, .qrids_trial #myModal .radio-na .radio-no ~ .qrid-options, .qrids_trial #myModal .question .radio-no ~ .qrid-options, .my_qrids_trial #myModal .radio-yes .radio-no ~ .qrid-options, .my_qrids_trial #myModal .radio-na .radio-no ~ .qrid-options, .my_qrids_trial #myModal .question .radio-no ~ .qrid-options, .my_qrids_start .radio-yes .radio-no ~ .qrid-options, .my_qrids_start .radio-na .radio-no ~ .qrid-options, .my_qrids_start .question .radio-no ~ .qrid-options {
    margin-left: -138px;
  }
  /* line 316, app/assets/stylesheets/tenant/checklist_responsive.css.scss */
  .tasks_index #myModal .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .tasks_index #myModal .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .tasks_index #myModal .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .permatasks_index #myModak .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .permatasks_index #myModak .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .permatasks_index #myModak .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .qrids_trial #myModal .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .qrids_trial #myModal .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .qrids_trial #myModal .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_trial #myModal .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_trial #myModal .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_trial #myModal .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_start .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_start .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_start .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options {
    margin-left: -133px;
  }
  /* line 318, app/assets/stylesheets/tenant/checklist_responsive.css.scss */
  .tasks_index #myModal .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .tasks_index #myModal .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .tasks_index #myModal .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .permatasks_index #myModak .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .permatasks_index #myModak .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .permatasks_index #myModak .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .qrids_trial #myModal .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .qrids_trial #myModal .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .qrids_trial #myModal .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_trial #myModal .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_trial #myModal .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_trial #myModal .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_start .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_start .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_start .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options {
    margin-left: -128px;
  }
  /* line 320, app/assets/stylesheets/tenant/checklist_responsive.css.scss */
  .tasks_index #myModal .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .tasks_index #myModal .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .tasks_index #myModal .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .permatasks_index #myModak .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .permatasks_index #myModak .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .permatasks_index #myModak .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .qrids_trial #myModal .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .qrids_trial #myModal .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .qrids_trial #myModal .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_trial #myModal .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_trial #myModal .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_trial #myModal .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_start .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_start .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_start .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options {
    margin-left: -123px;
  }
  /* line 322, app/assets/stylesheets/tenant/checklist_responsive.css.scss */
  .tasks_index #myModal .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .tasks_index #myModal .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .tasks_index #myModal .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .permatasks_index #myModak .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .permatasks_index #myModak .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .permatasks_index #myModak .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .qrids_trial #myModal .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .qrids_trial #myModal .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .qrids_trial #myModal .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_trial #myModal .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_trial #myModal .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_trial #myModal .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_start .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_start .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_start .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options {
    margin-left: -118px;
  }
  /* line 324, app/assets/stylesheets/tenant/checklist_responsive.css.scss */
  .tasks_index #myModal .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .tasks_index #myModal .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .tasks_index #myModal .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .permatasks_index #myModak .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .permatasks_index #myModak .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .permatasks_index #myModak .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .qrids_trial #myModal .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .qrids_trial #myModal .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .qrids_trial #myModal .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_trial #myModal .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_trial #myModal .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_trial #myModal .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_start .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_start .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_start .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options {
    margin-left: -113px;
  }
  /* line 326, app/assets/stylesheets/tenant/checklist_responsive.css.scss */
  .tasks_index #myModal .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .tasks_index #myModal .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .tasks_index #myModal .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .permatasks_index #myModak .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .permatasks_index #myModak .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .permatasks_index #myModak .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .qrids_trial #myModal .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .qrids_trial #myModal .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .qrids_trial #myModal .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_trial #myModal .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_trial #myModal .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_trial #myModal .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_start .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_start .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_start .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options {
    margin-left: -108px;
  }
  /* line 338, app/assets/stylesheets/tenant/checklist_responsive.css.scss */
  .tasks_index #myModal .radio-yes .radio-na ~ .qrid-options, .tasks_index #myModal .radio-no .radio-na ~ .qrid-options, .tasks_index #myModal .question .radio-na ~ .qrid-options, .permatasks_index #myModak .radio-yes .radio-na ~ .qrid-options, .permatasks_index #myModak .radio-no .radio-na ~ .qrid-options, .permatasks_index #myModak .question .radio-na ~ .qrid-options, .qrids_trial #myModal .radio-yes .radio-na ~ .qrid-options, .qrids_trial #myModal .radio-no .radio-na ~ .qrid-options, .qrids_trial #myModal .question .radio-na ~ .qrid-options, .my_qrids_trial #myModal .radio-yes .radio-na ~ .qrid-options, .my_qrids_trial #myModal .radio-no .radio-na ~ .qrid-options, .my_qrids_trial #myModal .question .radio-na ~ .qrid-options, .my_qrids_start .radio-yes .radio-na ~ .qrid-options, .my_qrids_start .radio-no .radio-na ~ .qrid-options, .my_qrids_start .question .radio-na ~ .qrid-options {
    margin-left: -271px;
  }
  /* line 340, app/assets/stylesheets/tenant/checklist_responsive.css.scss */
  .tasks_index #myModal .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .tasks_index #myModal .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .tasks_index #myModal .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .permatasks_index #myModak .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .permatasks_index #myModak .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .permatasks_index #myModak .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .qrids_trial #myModal .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .qrids_trial #myModal .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .qrids_trial #myModal .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_trial #myModal .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_trial #myModal .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_trial #myModal .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_start .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_start .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_start .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options {
    margin-left: -261px;
  }
  /* line 342, app/assets/stylesheets/tenant/checklist_responsive.css.scss */
  .tasks_index #myModal .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .tasks_index #myModal .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .tasks_index #myModal .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .permatasks_index #myModak .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .permatasks_index #myModak .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .permatasks_index #myModak .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .qrids_trial #myModal .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .qrids_trial #myModal .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .qrids_trial #myModal .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_trial #myModal .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_trial #myModal .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_trial #myModal .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_start .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_start .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_start .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options {
    margin-left: -251px;
  }
  /* line 344, app/assets/stylesheets/tenant/checklist_responsive.css.scss */
  .tasks_index #myModal .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .tasks_index #myModal .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .tasks_index #myModal .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .permatasks_index #myModak .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .permatasks_index #myModak .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .permatasks_index #myModak .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .qrids_trial #myModal .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .qrids_trial #myModal .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .qrids_trial #myModal .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_trial #myModal .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_trial #myModal .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_trial #myModal .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_start .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_start .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_start .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options {
    margin-left: -241px;
  }
  /* line 346, app/assets/stylesheets/tenant/checklist_responsive.css.scss */
  .tasks_index #myModal .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .tasks_index #myModal .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .tasks_index #myModal .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .permatasks_index #myModak .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .permatasks_index #myModak .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .permatasks_index #myModak .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .qrids_trial #myModal .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .qrids_trial #myModal .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .qrids_trial #myModal .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_trial #myModal .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_trial #myModal .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_trial #myModal .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_start .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_start .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_start .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options {
    margin-left: -231px;
  }
  /* line 348, app/assets/stylesheets/tenant/checklist_responsive.css.scss */
  .tasks_index #myModal .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .tasks_index #myModal .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .tasks_index #myModal .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .permatasks_index #myModak .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .permatasks_index #myModak .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .permatasks_index #myModak .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .qrids_trial #myModal .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .qrids_trial #myModal .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .qrids_trial #myModal .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_trial #myModal .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_trial #myModal .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_trial #myModal .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_start .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_start .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_start .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options {
    margin-left: -221px;
  }
  /* line 350, app/assets/stylesheets/tenant/checklist_responsive.css.scss */
  .tasks_index #myModal .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .tasks_index #myModal .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .tasks_index #myModal .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .permatasks_index #myModak .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .permatasks_index #myModak .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .permatasks_index #myModak .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .qrids_trial #myModal .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .qrids_trial #myModal .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .qrids_trial #myModal .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_trial #myModal .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_trial #myModal .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_trial #myModal .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_start .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_start .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_start .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options {
    margin-left: -211px;
  }
}

@media only screen and (max-width: 360px) {
  /* line 362, app/assets/stylesheets/tenant/checklist_responsive.css.scss */
  .tasks_index #myModal .question, .permatasks_index #myModak .question, .qrids_trial #myModal .question, .my_qrids_trial #myModal .question, .my_qrids_start .question {
    width: 100%;
  }
  /* line 388, app/assets/stylesheets/tenant/checklist_responsive.css.scss */
  .tasks_index #myModal .radio-yes .radio-no ~ .qrid-options, .tasks_index #myModal .radio-na .radio-no ~ .qrid-options, .tasks_index #myModal .question .radio-no ~ .qrid-options, .permatasks_index #myModak .radio-yes .radio-no ~ .qrid-options, .permatasks_index #myModak .radio-na .radio-no ~ .qrid-options, .permatasks_index #myModak .question .radio-no ~ .qrid-options, .qrids_trial #myModal .radio-yes .radio-no ~ .qrid-options, .qrids_trial #myModal .radio-na .radio-no ~ .qrid-options, .qrids_trial #myModal .question .radio-no ~ .qrid-options, .my_qrids_trial #myModal .radio-yes .radio-no ~ .qrid-options, .my_qrids_trial #myModal .radio-na .radio-no ~ .qrid-options, .my_qrids_trial #myModal .question .radio-no ~ .qrid-options, .my_qrids_start .radio-yes .radio-no ~ .qrid-options, .my_qrids_start .radio-na .radio-no ~ .qrid-options, .my_qrids_start .question .radio-no ~ .qrid-options {
    margin-left: -97px;
  }
  /* line 390, app/assets/stylesheets/tenant/checklist_responsive.css.scss */
  .tasks_index #myModal .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .tasks_index #myModal .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .tasks_index #myModal .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .permatasks_index #myModak .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .permatasks_index #myModak .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .permatasks_index #myModak .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .qrids_trial #myModal .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .qrids_trial #myModal .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .qrids_trial #myModal .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_trial #myModal .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_trial #myModal .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_trial #myModal .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_start .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_start .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_start .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options {
    margin-left: -92px;
  }
  /* line 392, app/assets/stylesheets/tenant/checklist_responsive.css.scss */
  .tasks_index #myModal .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .tasks_index #myModal .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .tasks_index #myModal .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .permatasks_index #myModak .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .permatasks_index #myModak .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .permatasks_index #myModak .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .qrids_trial #myModal .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .qrids_trial #myModal .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .qrids_trial #myModal .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_trial #myModal .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_trial #myModal .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_trial #myModal .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_start .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_start .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_start .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options {
    margin-left: -87px;
  }
  /* line 394, app/assets/stylesheets/tenant/checklist_responsive.css.scss */
  .tasks_index #myModal .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .tasks_index #myModal .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .tasks_index #myModal .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .permatasks_index #myModak .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .permatasks_index #myModak .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .permatasks_index #myModak .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .qrids_trial #myModal .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .qrids_trial #myModal .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .qrids_trial #myModal .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_trial #myModal .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_trial #myModal .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_trial #myModal .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_start .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_start .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_start .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options {
    margin-left: -82px;
  }
  /* line 396, app/assets/stylesheets/tenant/checklist_responsive.css.scss */
  .tasks_index #myModal .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .tasks_index #myModal .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .tasks_index #myModal .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .permatasks_index #myModak .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .permatasks_index #myModak .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .permatasks_index #myModak .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .qrids_trial #myModal .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .qrids_trial #myModal .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .qrids_trial #myModal .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_trial #myModal .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_trial #myModal .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_trial #myModal .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_start .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_start .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_start .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options {
    margin-left: -77px;
  }
  /* line 398, app/assets/stylesheets/tenant/checklist_responsive.css.scss */
  .tasks_index #myModal .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .tasks_index #myModal .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .tasks_index #myModal .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .permatasks_index #myModak .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .permatasks_index #myModak .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .permatasks_index #myModak .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .qrids_trial #myModal .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .qrids_trial #myModal .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .qrids_trial #myModal .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_trial #myModal .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_trial #myModal .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_trial #myModal .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_start .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_start .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_start .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options {
    margin-left: -72px;
  }
  /* line 400, app/assets/stylesheets/tenant/checklist_responsive.css.scss */
  .tasks_index #myModal .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .tasks_index #myModal .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .tasks_index #myModal .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .permatasks_index #myModak .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .permatasks_index #myModak .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .permatasks_index #myModak .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .qrids_trial #myModal .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .qrids_trial #myModal .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .qrids_trial #myModal .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_trial #myModal .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_trial #myModal .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_trial #myModal .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_start .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_start .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_start .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options {
    margin-left: -67px;
  }
  /* line 412, app/assets/stylesheets/tenant/checklist_responsive.css.scss */
  .tasks_index #myModal .radio-yes .radio-na ~ .qrid-options, .tasks_index #myModal .radio-no .radio-na ~ .qrid-options, .tasks_index #myModal .question .radio-na ~ .qrid-options, .permatasks_index #myModak .radio-yes .radio-na ~ .qrid-options, .permatasks_index #myModak .radio-no .radio-na ~ .qrid-options, .permatasks_index #myModak .question .radio-na ~ .qrid-options, .qrids_trial #myModal .radio-yes .radio-na ~ .qrid-options, .qrids_trial #myModal .radio-no .radio-na ~ .qrid-options, .qrids_trial #myModal .question .radio-na ~ .qrid-options, .my_qrids_trial #myModal .radio-yes .radio-na ~ .qrid-options, .my_qrids_trial #myModal .radio-no .radio-na ~ .qrid-options, .my_qrids_trial #myModal .question .radio-na ~ .qrid-options, .my_qrids_start .radio-yes .radio-na ~ .qrid-options, .my_qrids_start .radio-no .radio-na ~ .qrid-options, .my_qrids_start .question .radio-na ~ .qrid-options {
    margin-left: -194px;
  }
  /* line 414, app/assets/stylesheets/tenant/checklist_responsive.css.scss */
  .tasks_index #myModal .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .tasks_index #myModal .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .tasks_index #myModal .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .permatasks_index #myModak .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .permatasks_index #myModak .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .permatasks_index #myModak .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .qrids_trial #myModal .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .qrids_trial #myModal .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .qrids_trial #myModal .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_trial #myModal .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_trial #myModal .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_trial #myModal .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_start .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_start .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_start .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options {
    margin-left: -184px;
  }
  /* line 416, app/assets/stylesheets/tenant/checklist_responsive.css.scss */
  .tasks_index #myModal .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .tasks_index #myModal .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .tasks_index #myModal .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .permatasks_index #myModak .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .permatasks_index #myModak .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .permatasks_index #myModak .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .qrids_trial #myModal .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .qrids_trial #myModal .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .qrids_trial #myModal .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_trial #myModal .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_trial #myModal .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_trial #myModal .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_start .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_start .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_start .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options {
    margin-left: -174px;
  }
  /* line 418, app/assets/stylesheets/tenant/checklist_responsive.css.scss */
  .tasks_index #myModal .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .tasks_index #myModal .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .tasks_index #myModal .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .permatasks_index #myModak .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .permatasks_index #myModak .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .permatasks_index #myModak .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .qrids_trial #myModal .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .qrids_trial #myModal .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .qrids_trial #myModal .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_trial #myModal .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_trial #myModal .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_trial #myModal .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_start .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_start .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_start .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options {
    margin-left: -164px;
  }
  /* line 420, app/assets/stylesheets/tenant/checklist_responsive.css.scss */
  .tasks_index #myModal .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .tasks_index #myModal .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .tasks_index #myModal .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .permatasks_index #myModak .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .permatasks_index #myModak .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .permatasks_index #myModak .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .qrids_trial #myModal .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .qrids_trial #myModal .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .qrids_trial #myModal .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_trial #myModal .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_trial #myModal .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_trial #myModal .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_start .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_start .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_start .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options {
    margin-left: -154px;
  }
  /* line 422, app/assets/stylesheets/tenant/checklist_responsive.css.scss */
  .tasks_index #myModal .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .tasks_index #myModal .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .tasks_index #myModal .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .permatasks_index #myModak .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .permatasks_index #myModak .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .permatasks_index #myModak .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .qrids_trial #myModal .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .qrids_trial #myModal .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .qrids_trial #myModal .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_trial #myModal .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_trial #myModal .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_trial #myModal .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_start .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_start .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_start .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options {
    margin-left: -144px;
  }
  /* line 424, app/assets/stylesheets/tenant/checklist_responsive.css.scss */
  .tasks_index #myModal .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .tasks_index #myModal .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .tasks_index #myModal .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .permatasks_index #myModak .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .permatasks_index #myModak .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .permatasks_index #myModak .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .qrids_trial #myModal .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .qrids_trial #myModal .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .qrids_trial #myModal .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_trial #myModal .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_trial #myModal .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_trial #myModal .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_start .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_start .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_start .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options {
    margin-left: -134px;
  }
}

@media only screen and (max-width: 320px) {
  /* line 436, app/assets/stylesheets/tenant/checklist_responsive.css.scss */
  .tasks_index #myModal .question, .permatasks_index #myModak .question, .qrids_trial #myModal .question, .my_qrids_trial #myModal .question, .my_qrids_start .question {
    width: 100%;
  }
  /* line 446, app/assets/stylesheets/tenant/checklist_responsive.css.scss */
  .tasks_index #myModal .question .qrid-options .qrid-options .qrid-options .qrid-options .radio, .permatasks_index #myModak .question .qrid-options .qrid-options .qrid-options .qrid-options .radio, .qrids_trial #myModal .question .qrid-options .qrid-options .qrid-options .qrid-options .radio, .my_qrids_trial #myModal .question .qrid-options .qrid-options .qrid-options .qrid-options .radio, .my_qrids_start .question .qrid-options .qrid-options .qrid-options .qrid-options .radio {
    padding: 0 !important;
  }
  /* line 465, app/assets/stylesheets/tenant/checklist_responsive.css.scss */
  .tasks_index #myModal .radio-yes .radio-no ~ .qrid-options, .tasks_index #myModal .radio-na .radio-no ~ .qrid-options, .tasks_index #myModal .question .radio-no ~ .qrid-options, .permatasks_index #myModak .radio-yes .radio-no ~ .qrid-options, .permatasks_index #myModak .radio-na .radio-no ~ .qrid-options, .permatasks_index #myModak .question .radio-no ~ .qrid-options, .qrids_trial #myModal .radio-yes .radio-no ~ .qrid-options, .qrids_trial #myModal .radio-na .radio-no ~ .qrid-options, .qrids_trial #myModal .question .radio-no ~ .qrid-options, .my_qrids_trial #myModal .radio-yes .radio-no ~ .qrid-options, .my_qrids_trial #myModal .radio-na .radio-no ~ .qrid-options, .my_qrids_trial #myModal .question .radio-no ~ .qrid-options, .my_qrids_start .radio-yes .radio-no ~ .qrid-options, .my_qrids_start .radio-na .radio-no ~ .qrid-options, .my_qrids_start .question .radio-no ~ .qrid-options {
    margin-left: -84px;
  }
  /* line 467, app/assets/stylesheets/tenant/checklist_responsive.css.scss */
  .tasks_index #myModal .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .tasks_index #myModal .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .tasks_index #myModal .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .permatasks_index #myModak .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .permatasks_index #myModak .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .permatasks_index #myModak .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .qrids_trial #myModal .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .qrids_trial #myModal .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .qrids_trial #myModal .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_trial #myModal .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_trial #myModal .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_trial #myModal .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_start .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_start .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_start .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options {
    margin-left: -79px;
  }
  /* line 469, app/assets/stylesheets/tenant/checklist_responsive.css.scss */
  .tasks_index #myModal .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .tasks_index #myModal .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .tasks_index #myModal .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .permatasks_index #myModak .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .permatasks_index #myModak .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .permatasks_index #myModak .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .qrids_trial #myModal .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .qrids_trial #myModal .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .qrids_trial #myModal .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_trial #myModal .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_trial #myModal .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_trial #myModal .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_start .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_start .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_start .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options {
    margin-left: -74px;
  }
  /* line 471, app/assets/stylesheets/tenant/checklist_responsive.css.scss */
  .tasks_index #myModal .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .tasks_index #myModal .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .tasks_index #myModal .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .permatasks_index #myModak .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .permatasks_index #myModak .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .permatasks_index #myModak .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .qrids_trial #myModal .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .qrids_trial #myModal .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .qrids_trial #myModal .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_trial #myModal .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_trial #myModal .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_trial #myModal .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_start .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_start .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_start .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options {
    margin-left: -69px;
  }
  /* line 473, app/assets/stylesheets/tenant/checklist_responsive.css.scss */
  .tasks_index #myModal .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .tasks_index #myModal .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .tasks_index #myModal .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .permatasks_index #myModak .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .permatasks_index #myModak .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .permatasks_index #myModak .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .qrids_trial #myModal .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .qrids_trial #myModal .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .qrids_trial #myModal .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_trial #myModal .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_trial #myModal .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_trial #myModal .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_start .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_start .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_start .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options {
    margin-left: -64px;
  }
  /* line 475, app/assets/stylesheets/tenant/checklist_responsive.css.scss */
  .tasks_index #myModal .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .tasks_index #myModal .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .tasks_index #myModal .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .permatasks_index #myModak .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .permatasks_index #myModak .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .permatasks_index #myModak .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .qrids_trial #myModal .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .qrids_trial #myModal .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .qrids_trial #myModal .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_trial #myModal .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_trial #myModal .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_trial #myModal .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_start .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_start .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_start .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options {
    margin-left: -59px;
  }
  /* line 477, app/assets/stylesheets/tenant/checklist_responsive.css.scss */
  .tasks_index #myModal .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .tasks_index #myModal .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .tasks_index #myModal .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .permatasks_index #myModak .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .permatasks_index #myModak .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .permatasks_index #myModak .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .qrids_trial #myModal .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .qrids_trial #myModal .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .qrids_trial #myModal .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_trial #myModal .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_trial #myModal .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_trial #myModal .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_start .radio-yes .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_start .radio-na .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options, .my_qrids_start .question .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options .radio-no ~ .qrid-options {
    margin-left: -54px;
  }
  /* line 489, app/assets/stylesheets/tenant/checklist_responsive.css.scss */
  .tasks_index #myModal .radio-yes .radio-na ~ .qrid-options, .tasks_index #myModal .radio-no .radio-na ~ .qrid-options, .tasks_index #myModal .question .radio-na ~ .qrid-options, .permatasks_index #myModak .radio-yes .radio-na ~ .qrid-options, .permatasks_index #myModak .radio-no .radio-na ~ .qrid-options, .permatasks_index #myModak .question .radio-na ~ .qrid-options, .qrids_trial #myModal .radio-yes .radio-na ~ .qrid-options, .qrids_trial #myModal .radio-no .radio-na ~ .qrid-options, .qrids_trial #myModal .question .radio-na ~ .qrid-options, .my_qrids_trial #myModal .radio-yes .radio-na ~ .qrid-options, .my_qrids_trial #myModal .radio-no .radio-na ~ .qrid-options, .my_qrids_trial #myModal .question .radio-na ~ .qrid-options, .my_qrids_start .radio-yes .radio-na ~ .qrid-options, .my_qrids_start .radio-no .radio-na ~ .qrid-options, .my_qrids_start .question .radio-na ~ .qrid-options {
    margin-left: -170px;
  }
  /* line 491, app/assets/stylesheets/tenant/checklist_responsive.css.scss */
  .tasks_index #myModal .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .tasks_index #myModal .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .tasks_index #myModal .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .permatasks_index #myModak .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .permatasks_index #myModak .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .permatasks_index #myModak .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .qrids_trial #myModal .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .qrids_trial #myModal .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .qrids_trial #myModal .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_trial #myModal .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_trial #myModal .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_trial #myModal .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_start .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_start .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_start .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options {
    margin-left: -160px;
  }
  /* line 493, app/assets/stylesheets/tenant/checklist_responsive.css.scss */
  .tasks_index #myModal .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .tasks_index #myModal .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .tasks_index #myModal .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .permatasks_index #myModak .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .permatasks_index #myModak .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .permatasks_index #myModak .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .qrids_trial #myModal .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .qrids_trial #myModal .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .qrids_trial #myModal .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_trial #myModal .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_trial #myModal .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_trial #myModal .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_start .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_start .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_start .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options {
    margin-left: -150px;
  }
  /* line 495, app/assets/stylesheets/tenant/checklist_responsive.css.scss */
  .tasks_index #myModal .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .tasks_index #myModal .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .tasks_index #myModal .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .permatasks_index #myModak .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .permatasks_index #myModak .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .permatasks_index #myModak .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .qrids_trial #myModal .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .qrids_trial #myModal .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .qrids_trial #myModal .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_trial #myModal .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_trial #myModal .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_trial #myModal .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_start .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_start .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_start .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options {
    margin-left: -140px;
  }
  /* line 497, app/assets/stylesheets/tenant/checklist_responsive.css.scss */
  .tasks_index #myModal .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .tasks_index #myModal .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .tasks_index #myModal .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .permatasks_index #myModak .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .permatasks_index #myModak .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .permatasks_index #myModak .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .qrids_trial #myModal .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .qrids_trial #myModal .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .qrids_trial #myModal .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_trial #myModal .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_trial #myModal .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_trial #myModal .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_start .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_start .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_start .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options {
    margin-left: -130px;
  }
  /* line 499, app/assets/stylesheets/tenant/checklist_responsive.css.scss */
  .tasks_index #myModal .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .tasks_index #myModal .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .tasks_index #myModal .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .permatasks_index #myModak .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .permatasks_index #myModak .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .permatasks_index #myModak .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .qrids_trial #myModal .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .qrids_trial #myModal .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .qrids_trial #myModal .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_trial #myModal .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_trial #myModal .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_trial #myModal .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_start .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_start .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_start .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options {
    margin-left: -120px;
  }
  /* line 501, app/assets/stylesheets/tenant/checklist_responsive.css.scss */
  .tasks_index #myModal .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .tasks_index #myModal .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .tasks_index #myModal .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .permatasks_index #myModak .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .permatasks_index #myModak .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .permatasks_index #myModak .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .qrids_trial #myModal .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .qrids_trial #myModal .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .qrids_trial #myModal .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_trial #myModal .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_trial #myModal .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_trial #myModal .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_start .radio-yes .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_start .radio-no .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options, .my_qrids_start .question .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options .radio-na ~ .qrid-options {
    margin-left: -110px;
  }
}

/* line 513, app/assets/stylesheets/tenant/checklist_responsive.css.scss */
.report_photo_progress {
  clear: both;
}

/* line 515, app/assets/stylesheets/tenant/checklist_responsive.css.scss */
.report_photo_progress:empty {
  display: none;
}

/* line 1, app/assets/stylesheets/tenant/connect-wizard.css.scss */
.connect-wizard {
  margin: 20px auto;
  background: #fff;
}

/* line 6, app/assets/stylesheets/tenant/connect-wizard.css.scss */
.connect-wizard .nav-tabs {
  position: relative;
  margin: 40px auto;
  margin-bottom: 0;
  border-bottom-color: #e0e0e0;
}

/* line 13, app/assets/stylesheets/tenant/connect-wizard.css.scss */
.connect-wizard > div.connect-wizard-inner {
  position: relative;
}

/* line 17, app/assets/stylesheets/tenant/connect-wizard.css.scss */
.connecting-line {
  height: 2px;
  background: #e0e0e0;
  position: absolute;
  width: 80%;
  margin: 0 auto;
  left: 0;
  right: 0;
  top: 50%;
  z-index: 1;
}

/* line 29, app/assets/stylesheets/tenant/connect-wizard.css.scss */
.connect-wizard .nav-tabs > li.active > a, .connect-wizard .nav-tabs > li.active > a:hover, .connect-wizard .nav-tabs > li.active > a:focus {
  color: #555555;
  cursor: default;
  border: 0;
  border-bottom-color: transparent;
}

/* line 36, app/assets/stylesheets/tenant/connect-wizard.css.scss */
span.round-tab {
  width: 70px;
  height: 70px;
  line-height: 70px;
  display: inline-block;
  border-radius: 100px;
  background: #fff;
  border: 2px solid #e0e0e0;
  z-index: 2;
  position: absolute;
  left: 0;
  text-align: center;
  font-size: 25px;
}

/* line 51, app/assets/stylesheets/tenant/connect-wizard.css.scss */
span.round-tab i {
  color: #555555;
}

/* line 55, app/assets/stylesheets/tenant/connect-wizard.css.scss */
.connect-wizard li.active span.round-tab {
  background: #fff;
  border: 2px solid #5bc0de;
}

/* line 59, app/assets/stylesheets/tenant/connect-wizard.css.scss */
.connect-wizard li.active span.round-tab i {
  color: #5bc0de;
}

/* line 63, app/assets/stylesheets/tenant/connect-wizard.css.scss */
span.round-tab:hover {
  color: #333;
  border: 2px solid #333;
}

/* line 68, app/assets/stylesheets/tenant/connect-wizard.css.scss */
.connect-wizard .nav-tabs > li {
  width: 25%;
}

/* line 72, app/assets/stylesheets/tenant/connect-wizard.css.scss */
.connect-wizard li:after {
  content: " ";
  position: absolute;
  left: 46%;
  opacity: 0;
  margin: 0 auto;
  bottom: 0px;
  border: 5px solid transparent;
  border-bottom-color: #5bc0de;
  transition: 0.1s ease-in-out;
}

/* line 84, app/assets/stylesheets/tenant/connect-wizard.css.scss */
.connect-wizard li.active:after {
  content: " ";
  position: absolute;
  left: 46%;
  opacity: 1;
  margin: 0 auto;
  bottom: 0px;
  border: 10px solid transparent;
  border-bottom-color: #5bc0de;
}

/* line 95, app/assets/stylesheets/tenant/connect-wizard.css.scss */
.connect-wizard .nav-tabs > li a {
  width: 70px;
  height: 70px;
  margin: 20px auto;
  border-radius: 100%;
  padding: 0;
}

/* line 103, app/assets/stylesheets/tenant/connect-wizard.css.scss */
.connect-wizard .nav-tabs > li a:hover {
  background: transparent;
}

/* line 107, app/assets/stylesheets/tenant/connect-wizard.css.scss */
.connect-wizard .tab-pane {
  position: relative;
  padding-top: 50px;
}

/* line 112, app/assets/stylesheets/tenant/connect-wizard.css.scss */
.connect-wizard h3 {
  margin-top: 0;
}

@media (max-width: 585px) {
  /* line 118, app/assets/stylesheets/tenant/connect-wizard.css.scss */
  .connect-wizard {
    width: 90%;
    height: auto !important;
  }
  /* line 123, app/assets/stylesheets/tenant/connect-wizard.css.scss */
  span.round-tab {
    font-size: 16px;
    width: 50px;
    height: 50px;
    line-height: 50px;
  }
  /* line 130, app/assets/stylesheets/tenant/connect-wizard.css.scss */
  .connect-wizard .nav-tabs > li a {
    width: 50px;
    height: 50px;
    line-height: 50px;
  }
  /* line 136, app/assets/stylesheets/tenant/connect-wizard.css.scss */
  .connect-wizard li.active:after {
    content: " ";
    position: absolute;
    left: 35%;
  }
}

/* line 144, app/assets/stylesheets/tenant/connect-wizard.css.scss */
.connect-wizard .form-control-feedback {
  right: 14px;
}

/* line 153, app/assets/stylesheets/tenant/connect-wizard.css.scss */
.connect-wizard .form-group.has-success input[type="text"], .connect-wizard .form-group.has-success input[type="password"], .connect-wizard .form-group.has-success input[type="datetime"], .connect-wizard .form-group.has-success input[type="datetime-local"], .connect-wizard .form-group.has-success input[type="date"], .connect-wizard .form-group.has-success input[type="month"], .connect-wizard .form-group.has-success input[type="time"], .connect-wizard .form-group.has-success input[type="week"], .connect-wizard .form-group.has-success input[type="number"], .connect-wizard .form-group.has-success input[type="email"], .connect-wizard .form-group.has-success input[type="url"], .connect-wizard .form-group.has-success input[type="search"], .connect-wizard .form-group.has-success input[type="tel"], .connect-wizard .form-group.has-success input[type="color"], .connect-wizard .form-group.has-success input[type="file"] {
  border-color: #5cb85c !important;
}

/* line 161, app/assets/stylesheets/tenant/connect-wizard.css.scss */
.connect-wizard .form-group.has-warning input[type="text"], .connect-wizard .form-group.has-warning input[type="password"], .connect-wizard .form-group.has-warning input[type="datetime"], .connect-wizard .form-group.has-warning input[type="datetime-local"], .connect-wizard .form-group.has-warning input[type="date"], .connect-wizard .form-group.has-warning input[type="month"], .connect-wizard .form-group.has-warning input[type="time"], .connect-wizard .form-group.has-warning input[type="week"], .connect-wizard .form-group.has-warning input[type="number"], .connect-wizard .form-group.has-warning input[type="email"], .connect-wizard .form-group.has-warning input[type="url"], .connect-wizard .form-group.has-warning input[type="search"], .connect-wizard .form-group.has-warning input[type="tel"], .connect-wizard .form-group.has-warning input[type="color"], .connect-wizard .form-group.has-warning input[type="file"] {
  border-color: #f0ad4e !important;
}

/* line 169, app/assets/stylesheets/tenant/connect-wizard.css.scss */
.connect-wizard .form-group.has-error input[type="text"], .connect-wizard .form-group.has-error input[type="password"], .connect-wizard .form-group.has-error input[type="datetime"], .connect-wizard .form-group.has-error input[type="datetime-local"], .connect-wizard .form-group.has-error input[type="date"], .connect-wizard .form-group.has-error input[type="month"], .connect-wizard .form-group.has-error input[type="time"], .connect-wizard .form-group.has-error input[type="week"], .connect-wizard .form-group.has-error input[type="number"], .connect-wizard .form-group.has-error input[type="email"], .connect-wizard .form-group.has-error input[type="url"], .connect-wizard .form-group.has-error input[type="search"], .connect-wizard .form-group.has-error input[type="tel"], .connect-wizard .form-group.has-error input[type="color"], .connect-wizard .form-group.has-error input[type="file"] {
  border-color: #d9534f !important;
}

/* line 2, app/assets/stylesheets/tenant/help.css.scss */
#help-sidebar img {
  max-width: 100%;
  max-height: 100%;
}

/* line 7, app/assets/stylesheets/tenant/help.css.scss */
#help-menu {
  background: #00abba;
  color: #ccc;
  margin-left: 0px;
  padding: 12px;
}

/* line 12, app/assets/stylesheets/tenant/help.css.scss */
#help-menu ul {
  list-style: none;
  padding-left: 20px;
}

/* line 16, app/assets/stylesheets/tenant/help.css.scss */
#help-menu li {
  color: #fff;
}

/* line 20, app/assets/stylesheets/tenant/help.css.scss */
#help-menu a {
  color: #fff;
  padding: 1px;
}

/* line 23, app/assets/stylesheets/tenant/help.css.scss */
#help-menu a.active, #help-menu a:hover {
  color: #000;
  text-decoration: none;
}

/* line 29, app/assets/stylesheets/tenant/help.css.scss */
#help-menu-toggle {
  z-index: 20;
  position: absolute;
  top: -10px;
  right: 15px;
  background: #00abba;
  border-radius: 5px;
  padding: 5px;
}

/* line 37, app/assets/stylesheets/tenant/help.css.scss */
#help-menu-toggle a {
  color: #fff;
}

/* line 42, app/assets/stylesheets/tenant/help.css.scss */
.help_content h2 {
  margin-top: 40px;
}

/* line 45, app/assets/stylesheets/tenant/help.css.scss */
.help_content img {
  max-width: 100%;
  height: auto;
  width: auto;
  margin-left: auto;
  margin-right: auto;
  display: block;
  border: 1px solid #000;
  margin-bottom: 10px;
}

/* line 54, app/assets/stylesheets/tenant/help.css.scss */
.help_content img.pull-right {
  margin-bottom: 5px;
  margin-left: 5px;
}

/* line 59, app/assets/stylesheets/tenant/help.css.scss */
.help_content .btn + .btn {
  margin: 0;
}

/* line 62, app/assets/stylesheets/tenant/help.css.scss */
.help_content ul {
  padding-left: 20px;
}

/* line 66, app/assets/stylesheets/tenant/help.css.scss */
#help-logo {
  margin-bottom: 10px;
  width: 200px;
}

@media (max-width: 767px) {
  /* line 71, app/assets/stylesheets/tenant/help.css.scss */
  #help-menu {
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 10;
    margin-left: -5000px;
    width: 100%;
  }
  /* line 79, app/assets/stylesheets/tenant/help.css.scss */
  .show-help-menu {
    margin-left: 0px !important;
  }
}

/* line 83, app/assets/stylesheets/tenant/help.css.scss */
.faqframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* line 90, app/assets/stylesheets/tenant/help.css.scss */
.faqframe-container {
  position: relative;
  height: 0;
  overflow: hidden;
  padding-bottom: 56.25%;
}

/* line 1, app/assets/stylesheets/tenant/icons.css.scss */
.customicons {
  display: inline-block;
  position: relative;
  width: 48px;
  height: 40px;
  color: #1d1d1b;
  text-decoration: none;
  vertical-align: middle;
}

/* line 10, app/assets/stylesheets/tenant/icons.css.scss */
.customicons.message_new {
  background: url(/assets/tenant/icon-newmail-ebe8d375a6c5e354a68cc0d4b4d77061b31f1b59a66084ee4ffd727fe7f6e959.svg) top left no-repeat;
  background-size: contain;
}

/* line 14, app/assets/stylesheets/tenant/icons.css.scss */
.customicons.message_full {
  background: url(/assets/tenant/read-d9b12d3665d3669f00b2cf43ab6dff462fce14d52dfbb5c4c49f731cdfe8a703.svg) top left no-repeat;
  background-size: contain;
  width: 25px;
  height: 25px;
}

/* line 20, app/assets/stylesheets/tenant/icons.css.scss */
.customicons.message_sent {
  background: url(/assets/tenant/icon-sent-30d69f927739a27d1aea6b906d3013f645971b7bccfde4abdd1d56216e4e0c13.svg) top left no-repeat;
  background-size: contain;
  width: 25px;
  height: 25px;
}

/* line 27, app/assets/stylesheets/tenant/icons.css.scss */
.customicons.flag {
  background: url(/assets/tenant/icon-flagged-bfe5e8506276732eaaf5c8a0904f11fe98c261a40c6fab0453af5a9228bf361f.svg) top left no-repeat;
  background-size: contain;
  width: 25px;
  height: 25px;
}

/* line 35, app/assets/stylesheets/tenant/icons.css.scss */
.occupancy-icon {
  display: inline-block;
  position: relative;
  width: 100%;
  font-size: 25px;
  color: #1d1d1b;
  text-decoration: none;
  vertical-align: middle;
  background-size: contain;
  float: left;
}

/* line 4, app/assets/stylesheets/tenant/invoices.css.scss */
table.inventory {
  border-collapse: separate;
  border-spacing: 2px;
}

/* line 8, app/assets/stylesheets/tenant/invoices.css.scss */
table.inventory th {
  font-weight: bold;
  text-align: center;
  background: #EEE;
  border-color: #BBB;
}

/* line 14, app/assets/stylesheets/tenant/invoices.css.scss */
table.inventory th {
  border-radius: 0.25em;
  border-style: solid;
  border-width: 1px;
  padding: 0.5em;
  position: relative;
  text-align: left;
}

/* since we auto-resize textarea, make other controls stick to the top of cells */
/* line 23, app/assets/stylesheets/tenant/invoices.css.scss */
table.inventory td {
  vertical-align: top;
}

/* line 26, app/assets/stylesheets/tenant/invoices.css.scss */
.bordered {
  border: 1px solid #ccc;
  border-color: #e4e6eb !important;
  border-radius: 2px;
  padding: 0.5em;
  position: relative;
  text-align: left;
}

/* line 34, app/assets/stylesheets/tenant/invoices.css.scss */
td .btn-group {
  width: 100%;
}

/* line 37, app/assets/stylesheets/tenant/invoices.css.scss */
.dropdown-toggle {
  width: 100% !important;
}

/* line 41, app/assets/stylesheets/tenant/invoices.css.scss */
table.balance {
  border-collapse: separate;
  border-spacing: 2px;
  table-layout: fixed;
  width: 26%;
  margin-top: 30px;
}

/* line 49, app/assets/stylesheets/tenant/invoices.css.scss */
table.balance th, table.balance td {
  width: 50%;
}

/* line 53, app/assets/stylesheets/tenant/invoices.css.scss */
table.balance th {
  background: #EEE;
  border-color: #BBB;
}

/* line 57, app/assets/stylesheets/tenant/invoices.css.scss */
.balance th, .balance td {
  border-radius: 0.25em;
  border-style: solid;
  border-width: 1px;
  padding: 0.5em;
  position: relative;
  text-align: left;
}

/* line 67, app/assets/stylesheets/tenant/invoices.css.scss */
.invoices-page.invoices_show .invoice-details-table th {
  white-space: nowrap;
}

/* line 1, app/assets/stylesheets/tenant/loading.css.scss */
.loading-big {
  background-image: url(data:image/gif;base64,R0lGODlhHwGNAMQSACEYGIR7e4yMhJyclJycnKWlpa2trbWtpbW1tb29vca9tcbGxs7Oxs7OztbW1t7e1t7e3ufn5%2F%2F%2F%2FwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP%2F%2F%2FyH%2FC05FVFNDQVBFMi4wAwEAAAAh%2BQQJDAASACwAAAAAHwGNAAAF%2FqAkjmRpnmiqrmzrvnAsz3Rt33iu73zv%2F8CgcEgsGo%2FIpHLJbDqf0Kh0Sq1ar9isdsvter%2FgsHhMLpvP6LR6zW673%2FC4fE6v2%2B%2F4vH7P7%2Fv%2FgIGCg4SFhoeIiYqLjI2Oj5CRkpOUlZaXmJmam5ydnp%2BgoaKjpKWmeAoRp6stEQIBAwyssycDAbcBAgq0oBG7KRG4wgS8na4BBhAoB8K4CcWbx7cCyhIRBwcFA6%2FNAtCa0rgCDMzNwq%2Fe35fh5u3N1eqVDO70udMO8Zfl0%2FXm6fmVDNATYKCgAW7CDAC0JLDbsxINEOaCt1ASgXMNUDyQOKAiJYnEUiRo5lGSAokP%2FlZINIDggAIF%2BEoqOokrpIqG3QR0lJloHywWPpvt5HlIwTAWOCUiI4rIAcJ%2FKWy5e8iUUASpuGSpUCqMatVAQW%2FZPMGM662vgg6YvaXwBE1xBAZcDIA20FpcQ0cEFRDTVAQIDRwEVkUCsGDBiyQ%2BnSZAGwGuGbFECEyZ8BkHcQnEjSwiQubMlov26zfWCgLNcgm0PdMgs9wFJDzLnR36kOK5%2FRpvSeBadZrWqQdwtvZZLsVDDQnia4DVHewRDk4WoHJ6tm80wDM%2F79ybQG3bpSUwF7D4rIhtCI%2BPuPrLSPXMq81gDr6989%2F7lxjgFAZhozmvJJTDl3u9xVdGdq%2BR%2FsKVQs3dkhcJirUXBG%2FWGfgCBAwgkAACgbkQgQMLbLjhAg18lwIEGnKoTHablRDBizCaAOOLsTWgYQLqoQBBAhuWaF%2BMaHDV0X649KcKYWEtJcR7clm4QgS89ZYaAiaKUABqUmpGQH0nRGkdAQUY0BuXV1rn4pWZPROBmMFpluMIXrpWQJwEADgGbuJIYJQ4jJFHnlrtpLRkgTDMl6V1XHKXZZYpsHlocVxiKZeLBTLZXV8lOPqldbM5GYaAAqj20Gj%2BsEWEpZ6e0Fp3m8aVqGzFLRqeBJpKGuuWJdhKKae2dndCrY%2FGhUAaPGo1wjyk%2BlMEhfB52GsCDdApV22w%2FhqwAIkJiHlpCcwWqO2Yufa2q61ttompBN1WaECZn6V6xl2j2fkDqi4wK9d0JNSKLwkJnDtCrV551lsBoS0ALgnsThpbd3VC4PBpB4%2FQK6YQSOquFwIMO8KeybZzsQ70tmDrcbBmBkPFrsXHwJfhIYgrCbouHNy%2BIyDQZnyYiTtuk2cIuAvHfE7j2l0f4xDyChXP%2FGtvw8kImI21xufYbImyKFy4ZsrcLESE1tybnSUPUHQW7KwlgLwQHHSOqULYe90KC3wpb5wDyNsAmrwGF1%2FMXCOKtclax2Vh0qjt3Zu%2FsPJcRpJ8CpBoCWkvGJugIHe9gqWPu2xgzq3yulrY%2FrNaHanO61leeoUw96Ze2GNjAW8ABPiLwkjdSODAAds8eMPRKrideXHxGdx5AXgLfvpnqkZsJenc6S0j8Klbt7rpn%2BYWA9DtULMD7ylgnjzqzbuG4%2FGafR7rCYa2GD3gxyuutfsSjPy882T4pJT2MdC%2BlrE4uF00A8XRWAlW9pntWKppiXtb%2FJg3ApeNLmvkE9v8CpcvSE0QfmKIXDvk1QJ46a4G3NPRl2g2goTFTmIMJA74RBCrponHgutTWPsUGD74ERCCETRQBFLUIxOIKEUmcAAPqTQECDQIKjFoQPamsT3qpcBW1OLbAnFYQwVaKjw31MwD2Rc%2B443LiyIw%2FiKWVAMPCJjQQFbToRRF4L0hIMsZNmhQM2Y1gytq5kp4BBOY4MQry6zpSwKUwNQ0E7AzkuABbdLMA15kxliRiYEJtFAkw8Ww4tEPOtRLYHjc5kIfBOUGb%2FQHB2XgNl75CoWfAVMCLKkZbmVJQ4NMjYG0ZMq8vQyFVGTdBMEoAgeU61EYtFogVYglE7RRCM1BogwYcD8CQEB2NLhiLbkoxmkG51ygi9XNINc5bWrxbzKsoiSdWEpv8vKFK6yi7o4ZhObQ8QX%2BwUXrYGCpX7YJcrR8VI44J6UCaM6HvWoS3bYYTmKe06ASNMGqpIQj6qXxiwWVwAGHwI4PwiCeYpkX%2Fqu8GdEXbvRxI0AZuHRpApR9aTmpJGhpJrkzGpLAAdliSWRMKqwSGAqDmgSo34YAkhtg9CdaEAyJoHmCCJBoAVV60lGTaoVu3ZIM0eGIT1dSFwm8iTiqI8M15JgLUDZjnuq4IwMcAKMHlLMMXC2SDT5ZVRPaUjOd9EKSuGFRFyilqlMMllyGGQbsKeaqK7BfLkbpkYBKCaRggBdYR2A2oi7ERm69I2LDgCd%2FLLYA9nAH%2F75yH8CS4Y2qkSPlOmg9vM6BAAoQ1E9zMTbM9mOxpj0Dke6hAkCVNrZ4MBtMFrlIcpjlbM0hLG7fAIG7%2BIk89YiJEbs63DwUlx8dUyu%2FozbbXDqstmP4q64fGJdZd8BWu21gR3S%2FC941mEUhDSiI2OQogNGWNw%2B2tYcyJYAsiXj2vXJYrjxPcN264rcOkZuvCIhEkP%2F%2B4QHuDZBYDEBdAxuCAA12sIQnTOEKW%2FjCGM6whjfM4Q57%2BMMgDrGIR0ziEpv4xChOsYpXzOIWu%2FjFMI6xjGdM4xrb%2BMY4zrGOd8zjHvv4x0AOspCHTOQiGzkKIQAAIfkECQwAEgAsAAAAAB8BjQAABf6gJI5kaZ5oqq5s675wLM90bd94ru987%2F%2FAoHBILBqPyKRyyWw6n9CodEqtWq%2FYrHbL7Xq%2F4LB4TC6bz%2Bi0es1uu9%2FwuHxOr9vv%2BLx%2Bz%2B%2F7%2F4CBgoOEhYaHiImKi4yNjo%2BQkZKTlJWWl5iZmpucnZ6foKGio6SlpqeofgIFqa0oEQIBAQcrDg%2BuoA4DsbICECmwAb%2B4nASyx7IJr7zCxJsHyMcCCggHCg4MEsHIBs6azNHSAuDc3pgN0uHq4cPmlQbr8QG87e6UDPHkyAIO9pbb0QgM2LWum79KA6IJMDgiQcJ9BysBnFePBDxkFSM6woesgQpwDDU%2BeiiLwIoEvf4CDBAJSQG4bCuYCYDJ8lAEBQQKkJvJwlivWzUPKchHMwVJAUCDGsq3gAW4ARmVAtp5zGTMcAIQJJX6x%2Be8cFtNeMUalWsejuusnoAWb6XZPw%2F07ctYYB29UREgNHCwN0IJvXz5JnpgYEACZRL0ZR1A4IBiZGqjRNhL2S8aBwIJCPQ4IkLmzJYbNZBrl1y%2FKQg0MyYQskyDzIybdoYtMHQjBqQV9kswbl7YJwlotybzevUAziI8GydQNhEDkikhl2hgYPiBAgpsH0nNmPHwMcUzy05Om4B2RxcVEihqoGiJhwIGHDgvhHvm72IwGx%2BfPK9%2FSkOxMwJhsrh1gj4GEv5hn3dphBfbJ2xBJMEDjiHjnggBRnNhEMF1xxoNEDCAQAII7OVCBA4sQCKJCzRAHwoQjFjiL%2BFtVkIEOOZoQo44kjDZiAk099dhJVrG44tcpFfVhOokOEKEyCCx4IcwRBAcbashgGQBqmGpGQH8nXClhzkZQFuYXHp4I5eZKROBmcsxp8KYsBVAJwGIhQFlgRPKlQBOBeyiUzj4ATFloSfo56WHYZLnpZcpwLnoZwOE2SVjNwo3JZmnmSApmR52h2gWBPDCi1VKyrOPLMgVcegLr5UHqkCNKkfpo5GN8Omlt4JZAq%2BZhspreSfsOqlACJQBwYoGJCWTqtE0e0SH9%2F6dOGwCDdzJmHa2GrBAiwmYWV6nIlArnLhn%2FkpbsLwutxy5EpjrYXVpfjbqGGhBi9WGP7zaArWMsWIRbQKTkAC8utKWpza8FmDbAumSUC%2BmPpaHJwQYpxbxCMOSC8Gl94qxp77RtOqSAj742xNtFdmaGQwfwxbSc5%2FlKoGDvpIAbMXGFTwCAsuFhNm67DLIxsj7wCZPNhGwJUDKwrXwcc%2FF0tbqjno1gMCuIQUKW6M1HqeumjxXO13UPyu8I6Uhf%2BGAXQuP0AB0zBB0TNsvAEzlCguQGXe5l%2F59M5vCGhfSzmczOvbLZQs03NSqHU4bwrYaTYZtESg0j%2BAGQxdPD%2F4qqzBlozejPcLQswrLkMsUJ66apUTPNu%2Fas3PMMu2Rl%2BGSNSJ4HoDNKYylzkI8hJ6C3qSHHRLEqRdAuOOyf3YCzmjGTp7huENvu4cZVb63GDLpg3fvqiK1g%2FEojD696d4b1o7Le7MOvKI26mw9w7WXbbkEvHbP9uXyiM8MhKcQfs1AbyFjAKWSZQKarWY8U7qa9yRHNtc9yH4VvF7u2KU9EUiKVrjbHxiQhgyEucBU%2BxhfC9B3AgiQyWcjmBgBOoW46O3vVlcr3X4W1zoNihB%2FZhOBAxnXuAG0JgIyIlEOVyQjEzggiVr6wVewEgAVWoRQv8EBC0%2FAK27VsIY%2B%2FP7elGw2xJxtj4ga7GD01OjCLrGmHRCQYWuUl6n7SUB9PXhbPkz4AnIYymI5CSSXBtkQYYXmTWRioAi8tpqFRUCOJHhAnAjwABzF8VbVyyAQfzhBdVnsedgjgaJE6D2b6S2HOHBJPIAHAyXx4wd6ExaxbFczO4FSMyWIJQFGxEh7eVKWhTOjCMDIuuEUswS6aNek5rhADvZQBHjswQMUqA4rliBDsrAmC8YITDS2sZvGgZf8bhW0v6SOnJqBnSY7WbTvAS6YsmJm%2FsLopDtuDAgoQQbnXoCbckANnLf6y5eCyZiooA5LBcDZcOgUNIaqE41AVGMajbi%2BdgXJdCKgY%2F4RbRbBIWAzAPt0QT%2BPUc8ccBOdz8zosC4Io4GKJ6IUNUHMOKXDLz30mezUnztFGS4DlEgEM0UWMjG6SVzm8p4%2F%2BGhIWzDSbG6BLy3i4wki0KIFIEkFVG2AVb9gLmGSQZXHWCoLmqqSB2RRJM3xzO3OAFan2uCj81gIypSimQIwwAE5eoAu00DWksKAhCVRigzhSQBUjgEcPKHBRMJhQHsoc1aKNEMEfMfKFtAtIFJZKZZIF4bJxqOxwFCVNlGhtcHWlbOdfUwvhDTV3MgCtBrxD2vH4LtoDOCsrSWUAUw127egIV9ySewKFisAq4Qopr6dAwHVIafgrUOqyY0DcMJ3mxYGRKCSlWRAhdTR2%2Bi6IRYC4Axv0rGPcfTGLt31bhsg0B6DuTaAAYCuevWwXPi6db6CyNcU9YXfQTyAZMztbyB8txDWVCcbBRHwH%2FZ73yuWF7cKpgNcQYoCmYg1wnJQgO8itTkMByJbplKBYT3cBxf6lcQoTrGKV8ziFrv4xTCOsYxnTOMa2%2FjGOM6xjnfM4x77%2BMdADrKQh0zkIhv5yEhOspKXzOQmO%2FnJUI6ylKdM5Spb%2BcpYzrKWt8xl9YYAAAAh%2BQQJDAASACwAAAAAHwGNAAAF%2FqAkjmRpnmiqrmzrvnAsz3Rt33iu73zv%2F8CgcEgsGo%2FIpHLJbDqf0Kh0Sq1ar9isdsvter%2FgsHhMLpvP6LR6zW673%2FC4fE6v2%2B%2F4vH7P7%2Fv%2FgIGCg4SFhoeIiYqLjI2Oj5CRkpOUlZaXmJmam5ydnp%2BgoaKjpKWmcBEDBAIEp64oqQIBs7OvtiQHtLoNt726tAa9t7K%2FA8K2CLTEAgYHKA4Px50Kv7oCChEjDrLG0poKxNXKDBK5tBDemODi7MXpluvtAeHiwe%2BS8coEBgYJBvTs7jFyoEABtAcDfhEgR%2BLBP3HE7AlElHCeAICtUCRgJ2DBREUVIUZLsWwWMwcf%2FhUB1CURRQNrCVIuWmmSoYpwAlDKTNSuIwsCykbuNBShp80UIQUcHToI3MWVvFbgFMr0EAQG9LqlKEosY1VFL%2BfNWlqCXsyvih7QE4DuRIFfLdEeMvBLqQmaZ0tFgNDAQd9sJPj69QuJZgFVb9spsBKhr2PAZxwQUDU5qogIkwlkhswIAs2eurxKQaCZclwyDTKr8jgCs6rXnBlRk6esWrcID2IvSaB6X5rUlAdYluC6NIG2juia5AhxRMKnAg7oTEL6tW80wDOzvtybgO5ERSFe3IcSqC7k4hYrqZ759BjJwbdf3ku%2FcD0GDeRLCIlcAkABeSHBniruiZHdapo4%2FtBcCQwYEE1C%2FUlQDYC79VYgC1chkAACfbkQgQMLbLjhAg18hwIEGnKITnaVlRDBizCaAOOLJDSmYQIRpgBBAhuWOF%2BMXjAwAEABShBPNEUqWBdVRwx43QsR8NYbZQiYKEEBxllHGQH6mSCldQQUYEBv%2BmFpnYtYZhZTBGMGp1mOJHypWgFyElDkFhBUdFGN5pg00gMKDLnWPNOVAE0QTl54AnxTknkCZo02mkKbjYI5gH5ZikachU6CWSgJlFo6paJY5CkAAq2tJMADfcozQIQNXARnDom%2BkFp3ol4qI66RaipCqJm6yWUJmboYaa6anQBspaWhikZItNFmQFuz%2FgVAag28WXctd90l0ECdqsRWnAELkOhPpgR8mm2m%2FGjmKAnF1pjZsfOqom697Rlg5rzbcqFWtMwpYwC0AajXQ60trItYCcAW4OWnIwAbIKTWFcDZAu%2BOsK8qxoJpJwQgk5axCOgWCkGW%2FXLhWW0At0zhwRa6kGmExWUGw8mqtSTkvL4eOCy8vXVcmsMlIOBmS5IFLTSBaygnT28t%2Bwmzti2cHBzRDPc2nIx8NYAAsC0dplqXLApHrNKtxVyCzy05eWfNA6TcBU2skCWBqQHPwiQOCj%2BpwgJg3imBnAMI3kCaWtbbUrxrjywB49wFd5rVpS3eG8TFMa3GA%2BL8nEID%2Fnp2vjcOCK%2FgZJcSsG0ouolrvqmbJ5SNKdqRt7cr1SPMfHvlaxAcgK%2BTsgM8rWqv0DfqZbeEca4FID6ZRJkna4LPZdL%2BOu9CPw%2B0dTlGL7cWSi73vdO0DE887qY7LoLqtb%2BGY9pbQo%2FvovVuDfn1rsNve%2B69da%2B4GgTTCgyUQwwB9qBv22JAvZzFIDBtx0lb8972bDY9x90PbqfBIKjq1SUJjoEz4VFGDYgEhNKpIE%2FzwhoJNpYu%2Fp1paX7D19ZSx8GzvVB%2F%2BWuf33Z2Q%2F1pr0Yp6pGXgshAbRDRSjYQgKAOAJDvkaBaszDgDkyogkyJC3L3w5%2FfnOQrHmpmdj28%2Ft4P5SW5wAhrWiOAAAvjkjxjWU8Cp%2FNB%2BCaUkyT%2BooTd0QyW9himMI0gAYmDDJvAVESxUWZia2yIsAiQm73sSzslYCEMM1g8kqGrj7iKC6NyGD1f9W2GOIBiNcznAvIFYFY36FviugM0ntHJeZQpgSoJoCFD8uts9EocGCnow7jtbowicICbWldJGganiGLkWNHUF0p5OLEEonwmC7i4yh6isJr1%2BhTcjMOruFwzWOjapTJx6DcdnmaWw8TeCNhHTinGsQei%2FIXgYICVulzkMDroFDh5KQKcMUsVcEpa6wrAzj%2Bybh%2BEE6emNJg9X1YwWDgqZhvJaBwTQNAHyViO%2FjxvUM925JNX6RwnCW4lKtSl0V3W8QhDS4AzTxnTXQqd5O5ySAIH%2BMMAHOpnlpC5yXJ20kvMvAET2zHPF3RULHesgl9IBLGtkGgBSHRqfqJKhXV9cQxX4REgN2qDo46SKaikWGZQ%2BQWvSnME8dSFFCeiRwY4AEYPmKUasiLUnqxVICwkpmZAOQaA2M1Dn5mFSe8BTlEh0wymJOUKoMUKB%2FBjYFU5qJYGS4aSBOCvKwihSZo6FK%2FlVY%2BULYMp2RKDCGBELrCAwF7kYFrbjA4WKyEraln7GQHw1UX%2Fuets5xAWV5HVPHXh7G7j0CqNjlIBJcoNoIa6oOHiAbgQsedTskDzO%2BfmQVVRq4s7rHsHeoDMd7T5zFm5GwYImAQ5EHgIyyYEXbWS1w6QNYFDAssKjyQAILd9Lx58ZycvKUO2%2Bq3Dv37x2ucAOMB0GPAudITgQCiYFphtcCAYMKEDS7gPeVKFLOp44Q57%2BMMgDrGIR0ziEpv4xChOsYpXzOIWu%2FjFMI6xjGdM4xrb%2BMY4zrGOd8zjHvv4x0AOspCHTOQiG%2FnISE6ykpfM5CY7%2BclQjjIkQgAAIfkEBQwAEgAsAAAAAB8BjQAABf6gJI5kaZ5oqq5s675wLM90bd94ru987%2F%2FAoHBILBqPyKRyyWw6n9CodEqtWq%2FYrHbL7Xq%2F4LB4TC6bz%2Bi0es1uu9%2FwuHxOr9vv%2BLx%2Bz%2B%2F7%2F4CBgoOEhYaHiImKi4yNjo%2BQkZKTlJWWl5iZmpucnZ6foKGio6ReEaWoMwMDAgUDBw4PqbMnEQIBuLkKtLwjD7e5uLK9vAzBuALDxLMKwLkCDMuzDgPHAQTSqAoEzsgBAgnZnAewys3WwQIGyuKVDsADChEH3ei4A%2Bztkgfp9c%2Fo%2BEZEeHBKHyNb9pARGGAAQQJWxwxIcKCA3gGDjBQkxEUgHwMC6ao9y4eREEJ74P5QMPA3siSiByK95ZKY4hy6lC4PPTAQ81k0FSDthcv58mE6CCv4ycw1lCiilc9YQAXoNNHUayweHBOw0MDPqoauJlthLBeBBSTBEoL5rCkKpbjcqkXUc4CKCDHHzlV0NQDNE3C%2F7V3ENpgBpCQcBMaZKgKEBg4gFxzxOHJkR32%2FqWPQ4ACrbtiyRIBMerIZBwsJLGxAIkLq1KYRUdsogGXaKQhUD1D910yD1LsXtAa%2BMLahk%2F825kKMJQHx3mV%2B7149fPpu5ofwKt%2FY2wHnigd2Ocm9ezd0MtJTCxdInIDxtShrK1cnolk3AdiVkE99fgxq6%2BsJ5NiAjOz0jwCsNf5gAE8L%2BTOWRseE1sR%2B5qWRXnCZGNDWCYV5A40EEAZjlxPOlUdAfy1AwIBDCEDmQgQOLJAAiws08B4KELDYAFLpUddaBEACaUKQQgrUgEMJ5JcCBAnMaKMIRN54BUgCBGhCX%2Bo4IMEvEaIwj3hCUHhiDBE4R9x0CEhZgG5nqnbWCmaaSEABBhBnpQRrmlhCBGumFk4EdVqnmpIkxAlcAYYSIFcWO6FYn0hZjpDZAF8JVA19YT4Hw39tmngnlGzKaeJuKQTa6WsD3BmqhKCa2NCpBGh5gqminuloGPSwQgACIjygAETW1FaAAqxJQA8y8gQh5q0l%2FNZerakO%2BWybqv7NOm2tb5Kw6p7UQlutCbSuKiqvaLyDDE0MHLudOuoiEw8QJfL34qqKNpDobrG5Zt4CNSZQZ3uyjhDvc%2F%2FaWcK21YlL724BizCwqwbk%2BRqzXdh0Lj0sbRcREMu6EO9uBZQQbsglJNAwCeG65RpxBZi2gMEkSExqwtMpCsHNucE8Ar0NQxAqxVsgp3E661bKQ8ctrJqfvmzC4DNwvTEgJ6siXJjtzsRxax3JJCAgaHcI0zymGZmhdGbGG3KsKQs%2Bb22ticV6%2BdiR4fbmCnCf9jhA3CKE3aq8za4tgpiLMt3VGR2i5FXDD%2FjbUzqL8vDx2CssIGfkhg4QeQN9jopqb%2F5%2Bj2C1qlknfHgJbesGOnEnS8B0hYgbwBJXCdwmguzWdJSpqy2I%2BakEVkOH2rWCGz5z4AAeXDp7vGsNeN%2FEKWk80F1oKJM6v5sAweOM%2FYA0nDqToHdvL0NbQOenu97eCaOXIDPV00tr3eomSi%2F4GWUFE3kKO3UTkNrNW4Hv2Fe8MyWJeW76i%2FGoJgJO%2BQhrehLbeV5HOQkoTX6qS8MDAoOVGCQOUz%2BYHNA%2BYh1ylUBqrwmQmPimvgBacHniC98LI4jA9NWQIShD1acoSL0t5I8jtlOBxQIwIu%2Fdb0ly4lrMWAfB1GAQdn0TFAuBp0Pl0fBvUERgFlF4xb%2FZ0HUscv6SCWZERhOOwAFhTBMRevKhGcDEGUV03dGOmIJV5ctvoWvh8yQgJgZyUTWk62L8nGfD7bHpRMyBwPugMz5uwXBwMvSB0ARggx9eozwCuIgO%2BqiaNXlyTnMSmOcmAyg5mfFu01HZIkkAk0N2BEiKRNXVRPA%2B52URixV8YXtA%2BSzhHZGCDJzcFHvQlx6iIChU0cHkPLc%2BrL1mTglA33RK1iaHoHJiyutWmwLpRNPhkJDfPKOgPOc5RqLKjHrsZtciiQPFhMcz6TCaDDgooh30kZlXNCQ%2BUXWyBcrya6jz1jgBaUV14nKCdFzmPzMYQxfqsTwmGGAP6OmTG1AUGYSagf6YBioo1LmJnKkh1PDIWYDgjXFhJ8ocN4%2FnxXDesD%2FOMmDqbtlIbzJwhT54XDxvEKJ66C4H91woS0WH0uyJ4GkGG6RHAUbFmq0UfnTkYQoc4K%2BGFOtp5UEnp24JzJN6ygcX%2FYY8YxCiYAWRCZGpUetSEIEaLUBKd3ErXKswsFl%2Boaxb2d8LCrAV%2BejFKRlVX%2FTGYLH7jPUF2jHLAiDgncAapJMMcECQGtcmMiAAGP4w5pW6oVeivA%2BkqhlmF6RmgCYZpaI04OBZXaKwWqHTDGUFIZnqMZgmcnQhRh0DlsAEAw5qth1H%2Bmwnc1sG3LlrtSUYYvdqKxAIOGYOUkuHMfLNlQ7kMjcOQ%2FzGWkugGJ36xbrXdUN2v7EOL9lnKzM5bHixizYBxEMB3mmAAn6Ftpastw7jvUlt5DM0Aqj3vmsQGtGGpplg%2FRfAakjcgNfFFRk5Y7kIhkO7bpFS726ltMM4B4QjDIcGwFFWjdvNTcrbrFVw%2BA72EUDrGudTFYD3xGiAgAL2x6V0wLhA91HxjRVRY%2Fvu%2BBDG8GtttvvjQBhgxouNRZGXzOQmO%2FnJUI6ylKdM5Spb%2BcpYzrKWt8zlLnv5y2AOs5jHTOYym%2FnMaE6zmtfM5ja7%2Bc1wjrOc50znOtv5znjOs573zOc%2B%2B%2FnPWQgBAAA7);
  width: 287px;
  height: 141px;
  margin: 0 auto;
}

/* line 8, app/assets/stylesheets/tenant/loading.css.scss */
a.thumbnail.loading {
  background-image: url(data:image/gif;base64,R0lGODlhKgAqAOZyAFlWV%2FX09ERAQS0pKt7d3rKwscjHyJyam3BtboaDhOfm5vf399XV1XNwcdbW1rW0tIOBgcXExGJfYJSSkj46O%2Fb29pGPj%2BPj48jHx%2F39%2FeDf39vb26Sio7u6uqyqq8rJyfHx8fn5%2Ba2rrO3s7c%2FOz%2Brq6qinp0dEReLi4ltYWbq4ufDw8JCOj%2Fv7%2B%2FPz825sbOjo6IKAgZWTlPj4%2BNDP0Obl5vX19fz8%2FPr6%2Bvz7%2B9fW1%2BHg4Ozs7Le2tuTk5GdlZY2LjNrZ2djX18vKyujn556cnaGgoJaUlb28vMLBwjAsLe%2Fv7%2B%2Fu7sTDw87Nze7t7eXl5cG%2FwNLR0d3d3dnY2HVzc398fW9tbdTT06OhorCvrzo3OLSys7a1tWRhYlBNTuLh4dHQ0KKhofLy8rm4uJ2bnMzLy8nIyXl2d5iWlp%2BdnaakpXx6eoqIiMHAwdzc3M7OziIeH%2F%2F%2F%2FwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH%2FC05FVFNDQVBFMi4wAwEAAAAh%2BQQJCgByACwAAAAAKgAqAAAH%2F4BygoOEhYaHiImKhipxcSqLkZKCAI4Ak5gMPywghZVxl4U4MxmYhRSOLJ6WogEBFaaESo5xF4SfoYIZrgE2sYNFtLlyuIQLvC2%2Fg6iOGIPFgje8sMqCGLQUz6yCFbw31drNggwUFAzRvAuYOidbWYUXtOeHu66lhCsaKCGGVwP%2FJz4QUlHFg6IWIXIQqoCCgEMYho78mygBSrUWChxqZGJojMSJ%2F5D8CqBx4z1DUCSAZPOrREkFyRZ9OPFPyy8XDlFQm%2FRBR7UQO8EJHUpUTpMGSJM22CA0gIOnUB08ESSgqtWqKYSSMMC1K1eqV61mBbfVa1dBR5UiZQrOadSnU9aLyp2bSUO1FTxMMXgBAECUX2AKFOiQd1EJCH37pvn1QbDgCL4OBfCQOPGQXwocOxaCwxDlyhBKVLMRQXMBIYaAJH4xT5CUMmcUBXFjdxCPDo4FFtLwwkuXQiMQCPeBaMSB4y4KTenRYQWmCcIRsC2hRo1oOTWOH3gwdEP0GINEWLAgYpAJ7TWExojOVo548oOyHzcBLkr0CYTelx%2F0QDuWamhEN0J%2B4%2B0niAvaiVHNegj0UIh%2BhTgxXzU%2BlNFDUO4VWEgITnQwIF0Q0pXIG%2BO9IeKJggQCACH5BAUKAHIALAAAAAAqACoAAAf%2FgHKCg4SFhoeIiYqGKnFxKouRkoIAjgCTmDpXR2OFlXGXhCAsPwyYhScDA0eeloUsjhSnhFuqA1CEn6GCF45xSrODWbYSua6Dn3FFwYOpqh%2FIx3IYvrLMgh%2B2J9GggxS%2BGNeDErbQcgwUFKbTvruRGylfIoVQtjqIDL4XhS02FRmGrAgYmIIGISRstCjyUAXSoBsVAkicYcjIwIsNiFzLsECiRxyGXFi8OLBJsBwePyYi0oBkm2AhUi4AuIhGioFkgrWQWOHGKRobNvoUR7So0UFDIChdCkED0RAKokpVEIASgKtYAbwgioKA169erWa9ulVcV7BfBSVlqtSpOKhT2qNWPUq3LqYNPq4FAHFqQwwECM4EK2HAAAm%2Bi0ZMAAx4TbAghQs7oHioQg%2FGjKUEexI58oUchi5jnjDi2gwHnQ3sK1SGcYygg6h4CKMIDAkFokhEDmLIRww0UQotSUAcBqIVBZLbKKTADIm5kjgQT7BD0AgTJkrL4ZG8QISiO6bLGPTgwIEHgzp050FUxvTqgsqfH8Q9eQdxH6ZzICQf%2FaAI3U1xDRDTLcGfef4JYkN3PVzjXgJJFNJfIULYdw0MHiSxgIQIFoKDEB%2BsYJccE46IiAbmuWXiiIEAACH5BAkKAHIALAEAAQAoACgAAAf%2FgHKCg4SFg0gDA0iGjI2OhhKJEo%2BUhhtWRi6FkQOTlZ9yKQICRpuSoJ9fowJEhJyeqI8iqw2up7GUoqM0g6%2B4lDSrKb23v44Nq7xyOicnOsZyGi9eXYVEqxu%2FRUoUDIRAAOEv3oNNbWS4GBRx7D%2BEHuHxECXQFwDs%2BCyEAfDx4UO%2FVODLB8JQCQj%2B0vyqMhDAhUcMXoSL8ssDOwoYQDHQAI1BRmggQ4qUI2WCyZMTfITMsKClywU5EMicKTNGyAoBcurMSZOmTZA4d%2BosidKkSpAsX7bMMbKp0087YEALUQHUDhkJEoT55YIAARRVHS3hkDUrl18wvHpV0MLQgiRlpstS%2BRVArVomGQjBjcthCbQWCuwSYPKurIwdhDR0CPKoxJQnhCqgUCt1EAwZQD4UcnGg84hGAQyInlFohQYUIT496HyghqAVHTqsEARCtAEHIGuwNjEoQoECEQaRsF3QmAnWrgX5Bj6otmgSxrCwfkBoefBBDmwr%2BCWGtabev68LmmHbzK%2FjB5wUsl7owvNfIzo4SV09fKEcF4IEeMr%2BaSMFv22HSyAAIfkECQoAcgAsAAAAACoAKgAAB%2F%2BAcoKDhIWGh4iJioZNAgJNi5GSgg2ODZOYGkAeAYWVApeEY0dXOpiFLwAAHp6WhUcDAyenhF6qACWEn6GCULEDW7SDXbcQuq6DEr9ZwoOpqgyDu4Mfv7PNggy3L9LIcie%2FH9iDELfRchspKRuC1bESmD4xaFGFJbcaiDq%2FUIVFShTOESqDoGAMdoOGpKmXSAsbJIQwUIhD8YehHgUzThiB7QIAiiBZGKqAMWNBKcJUgAwJAtGICSbXCKuyEsCFSBtiFDwjzANFChhObfCBjUHQcUiTKh1EhYPTpxxgINV265YKQQmyas0qA%2BnElSCxbtXaddxXsHEENYXqVOo4qlXXAVxdSrcuphocm2W4caqGiQMHgghrESBABb6LXDwADNiNsBmFCy%2FIgCiEE8aM89HKETkyjkOXMT9wgS3Dgs4BPhfqwNhEDUIKPoBR5KJEp0E3KkSeYWiECTFYCtkoQHxFZQLIWxRqYaMC5UkRiBfgISgACRK3KyAnoCApD%2BkdBjkwYMDBIBTbKyDtIJ26oPHlB2lHjmLcFOkRCME3P0jBduPN9CCdDfqRx58gLWynmTDsFSBEIfsVwgR92KzwgRCqiWdgIRkwAUMIdskRYYiIPEHeEySmGAgAIfkEBQoAcgAsAAAAACoAKgAAB%2F%2BAcoKDhIWGh4iJioZDAABDi5GSghCOEJOYPmU9FYWVAJeELkZWG5iFMQgIPZ6WhUYCAimnhGiqCCOEn6GCRLECX7SDUbcTuq6DDb8iwoOpqqaUyHI0v7PNghu3MYO7gym%2FNNiDE7fRGi8vGoLVsQ2YMDJAH4Ujtz6IG79EhVlbJzoMeUhAUMYOQlLWnFFEpk0TQh9ODJh4xVASghg5LMEGRcLEj0cMLbiIkSAVYUg%2BghyDaAmHklyEsVEpAUqkHTIIhhGmZeIJeph2wMCmA%2Bi4o0iTCtLwoKnTB7nGMXBE1ZEKQQeyas1q4iiFOGDDgsW6VWvXcV%2FFhl361GlUbFPTq1pVSrfuKR4r4GK426FAATDCPIClsHeRjQh%2B%2FZIQ9kMsgAuIcAhJnFiBMBVq47AAYWgy5Qg2sF0AoJaFoQ%2BJO%2FAg9CRICUUtQuQghCFtnB%2BGVnToMaXQDAPAAyDKEKB4hkJFlFBggMkBcAOc5YRAgSKEoBvFAyxACuL5YkEKCBCwLKhC9htHSTyPLif8%2BEHYi3fCpuC5A0LuyQtakL0FNjPPzYCfePrJQVxxoTWjngGQDfgeITjIh00AQVwwm4MFCoLDDMfZlZ9digQgnnAglihHIAAh%2BQQJCgByACwBAAEAKAAoAAAH%2F4BygoOEhYNSCAhShoyNjoYTiROPlIYwHkkLhZEIk4QBHkAalYYyCQlJm5KFHgAAL6SFQKcJS4ScnoIlrgBesYQftBy3q4MQvF2%2FhKanO4O4gwy8sMqDO7Qyz8VyL7wM1YQctM5yPjExPoLSrhCkIyZiWIVLtDCNGrwlhSJfKRuEHQ4INFGDEBUuYR5FSTOEEI0UAiJaIeREoMUHLsAJItIgokcjhEJUtChwVLUmHj9mLOTiAUk34NqkbEDkUQ0TAoOAIxMxBY1YNUZolLPh59CjSJPKURChqdMIK5DqkEC1qgQkBbJqzdoB6YkBYMOC3bq169GvYsMyfdo06tGpVq6pIlFKty4pEAHsOgJBwoABfXoJzXDg1%2B%2BUwIJyXChc%2BAliOYsZO5jxWE6QwiRAfIKxspGHKipiBSBhRkGhFgRSh2jEII7rC0gVpCZQQVCGChUyCMLgOg6AoxVmoxi0IEAATYIo9MYwFMXs2oKKHx%2FE2zUFjStmmyZuHLkgAL2LgNMwuwUh6d4h91YCzjkBJoXQF2JhHVwIGEx0n%2B9eCASLH9%2FUJV9lg%2BRgXA7gBAIAIfkECQoAcgAsAAAAACoAKgAAB%2F%2BAcoKDhIWGh4iJioZUCQlUi5GSghyOHJOYIx1OIYWVCZeEFT1lPpiFJgcHTp6WhT0ICDGnhGKqBy6En6GCI7EIaLSDWLcPuq6DE79RwoOpqjWDu4Mbv7PNgjW3JtLIcjG%2FG9iDD7fRcjAyMjCC1bETmCsdPVOFLrcjiD6%2F%2BYRdXi80GPpQoGAHHoQ0uAmi6MwaKYQYvABAEYghIQUzRrCBrQQEiiA9GMKBMWNBBcKGgAwZAJGNCCZJCEuzEkKJSDw6FAQjLArFFwxO8ViBTUPQcUiTKh30xIHTpw5ajtvQoKrVBk0EGdjKdavMcSkEiB0rVmtXrl%2BxhSU7VlBTqE7apWKjerVq1qV482Kq0KmZjg%2BnKqAgQCAXLS0DBpwAvKiFAsKEb9K6kjixBCiIMjCBDFkuJiSVKx8ZY2gzZwUtsEGREHrAEUMwIKOoQCjHjNSJPFRRQejDicpXDIVAoYEooQwBkmdAxCCO8wuFsmw5oQPTguQBbghiQIHCUQzO4wBIegM7bUEAnI8XRCE8BqQVsGtHr34QeOcUxrXAvoBQevH%2BhVcENjZgt9wg%2F60nyAXhKYFNfAHgUEiChbCAHzYZzCDhhPURAgILPxyVF4V6JaKCc7yVqKIcgQAAIfkEBQoAcgAsAAAAACoAKgAAB%2F%2BAcoKDhIWGh4iJioYaBwcai5GSgg%2BOD5OYKx9COIWVB5eEC0keMJiFHQUFQp6WhUkJCTKnhD2qBTaEn6GCS7EJQLSDU7cRuq6DHL8fwoOpqjyDu4M7v7PNgjy3HdLIcjK%2FO9iDEbfRciMmJiOC1bEcmAEkZgqFNrcriDC%2FS4VRaDF8GApioCAJEIQUkACjKAwXKoQ2xEBAsYyhCwUzOpiBbcQEiiB7GMqBMWPBJ8KkgAxZAdEMByanCFuzcgK7RSBIFCwh7AzFGBtOgQiAzUfQcUiTKh0UQIHTpwpCINUAoapVCEMEEdjKdSsKpC8AiB0rVmtXrl%2FHhSU7VlBTqE7cpY6jerVq1qV482K6kQHbBhqnblQIEKCFMDICBKQAvCjDAsKE5Z6ykjhxAyKJcECGnENYk8qVjbgwpHnzgr7NiDQALcCIoRmQK9wgpOKHB0Va2CAhRCNFZSuGMlSwYZjQhTjIGSDSMaA5lEIivqQ4KgkA8jgYBDGgQEG5nA%2FNB0hIiuE6hUHW4wAYdCI8s3EUrmcXlH69IPDNT4wrct0%2BfeT%2BySFBeFlgo8R1FxBSHyFQhLcFNvHFwUIhCxJyRH7YMPADCwgpCGAhYxxxhQ56yVFhiYeogJwKKLYYCAAh%2BQQJCgByACwBAAEAKAAoAAAH%2F4BygoOEhYMKBQUKhoyNjoYRiRGPlIYBQRc5hZEFk4QhTh0jlYYkBgYXm5KFTgcHJqSFZqcGM4ScnoIurgdisYQKtA63q4MPvFi%2FhKanIIO4gzW8sMqDILQkz8VyJrw11YQOtM5yKx0dK4LSrg%2BkISga6YQztAGNI7wuhR9AMjCEMAgIRFGB0JMpJR4FcaOB0A4ZCSJ6IMREoEUFLcAJWsIhosckhDJUtCjQXjUqHj8uMNRCAcmE1bik5LDkUQUUAvVVCxNRxo5YFUJolAPj59CjSJPKybGgqdMFGZD6mEC16gQpAbJqzVrwaAwEYMOC3bq169CvYsMyfdo06tGpVqapSlFKty4pDAyGash7l0KcOBOrRQEA4AXfRhcA%2FP1bBRwQwoQhwCQEgsXixSrADYEM2YNJQZYvA0ilsQQEzgACC%2FqxmAKGamTaNCHE4AVkILQpKCkCboOA30QKdfHyoqFGHSdO6BBE47eABnYFSRgwQMKgFM5pRJ9efVDz3ym2U7c%2BqIFzEXa5kxdExPmX9OMLGQEPvzshF0asbKi%2FPnohJNQhAU4gACH5BAkKAHIALAAAAAAqACoAAAf%2FgHKCg4SFhoeIiYqGTwYGT4uRkoIOjg6TmCEwTBmFlQaXhDhCHyuYhSgEBEyeloVCBQUdp4QaqgQthJ%2BhgjaxBT20gyu3CrqugxG%2FU8KDqaoVg7uDPL%2BzzYIVtyjSyHIdvzzYgwq30XIBJCQBgtWxEZgZFTa5hC23IYgrvzaFWGImRhiaEaBghRuEApRwoQgMCWODapg4QPGaqIIYF3Rq5uIBxY9ODuHAiDGHMA0fQeY7lGEByZWn3KR8wHDRjQoF650KQtFEjVM3Ngob8XOc0aNIB6kAwLQpAAZGS4iYSlXEG0FxsmrNSsGoGgtgw4LFulVr13FfxYYVtNQpU6jj06RWnXo1qd27mDDAFVbiwikMFLJ6EMYArBq%2Fiy4A2FpFGBexIkAgAsGibBwVwt6otYBhhqHKWwEgFgZChFoMhn6YRT0IyRUtiqKkGULoQloLXAwxoKCkSCEoA4LrQKShaYlCcNKoOT5JQvABHwRtSJFigyAGTSEc%2FfD8xKAGAgQ0GPSi6d5mJ55HFwRe%2FCDsTF%2BMy%2FJcAqH24wdBaNoF25bnUNwXXn6ClNCUF9ikN8ARheBXiAfxYaPDFUeM0eCAhQTgARAa4CWHgx4i0kR4TYRoYiAAIfkEBQoAcgAsAAAAACoAKgAAB%2F%2BAcoKDhIWGh4iJioYBBAQBi5GSggqOCpOYGTM4hpUEl4Q5F0GQmIQVAQGchJ6ggxcGBiSmhDapARmsloQzsQZmtIMttwu6n4QOvq7BqKk3g62DIL6zwYM3txXQu4IkviDWhAu3z3IhKCghgtOxDpgMFEpFhRm3uYcBvjOFUz0dK4Z%2BxBlIAUOoEC0UlZjyhBCPDgUifjDEYqBFABfC2YgQsaMQQyAqWhyoIpiCjh5XGboAYGSVYCRQRrARCQOFgR6CgYnYgYcpDAzCrfAZrqjRo4dUAFjKFEDQoiMeSJ36QIOgkSMpGDVxoKvXrlexEtz69asgpU2XPg0XlapUq0jV48oN9kFHOBg7TH04MWCAlmBhEiSQkXcRFAl9%2B7IJ5kGwYA5LEI05kjgxkmBUHDtOUqwQ5coSoIRbwkFzgiSGriQ%2BMXFQEytkFJ1ZI4XQDhmOcxbScWJLlkJEBAjfgMgHguMjCn0AIgMGpgbCBdAQpOHFC7gbjiOYcJRG9BSDICyFMCiGduJFU0SfLkg8APKCsh%2BPUVRE9AaE3MMXNEF7lHBfREdEfuMRMoJ2aISjngBGFKJfIT3MF84GVhjhgoMFntJDGT7M1V6GHiIyxFJDhGiiIIEAACH5BAUKAHIALAEAAQAoACgAAAf%2FgHKCg4SFgzkBATmGjI2OhguJC4%2BUhgw%2FLCCFkQGThBlMMCGVhhRxcSybkoVMBAQopIVKp3EXhJyegi2uBBqxhEW0ALergwq8K7%2BEpqcYg7iDFbywyoMYtBTPxXIovBXVhAC0znIZFRUZgtKuCuCEF7QMjSG8LYUKZiQBsSpVHo8uSuwbBIKEgYNB3JGa4eCgQ1sKHz1x%2BHBRREdTKDqYcZFSiYMkNHWsFEDkyJMoKSGRwLKlBB0XV0SYSTOCggE4c%2BI8cbFDgZ9Af%2BrUyTOiz6BAV7pkCTOizJoz26WcSnUQjQ0KR9SIRSOFAAFkwAU5cMDEVkdEGnz92gZcB7JkrR%2B4MOTCyNq1TcBpgAvXyahBdu82IKLQxQO%2BB5wQsrI2BQ1CQ4BEeRSGCxVCNUzA7UBoQ4ovIgqVAEDaFyMYCVIvKYRFjIkRpCCQBiBPjo8YMXwI2pE6AYeIDGa%2FGDQBAYIJg2T03qHwxezacoofH8Q7tQx3XWZDICQd%2BSAOvT%2BA8zK7BHfj3gUt6Q0EnHMA%2F85PJ5TEul4gHgYSR78piQcYKXVXlSFSGCcFOIEAADs%3D);
  width: 42px;
  height: 42px;
  margin: 29px;
}

@media print {
  /* line 2, app/assets/stylesheets/tenant/print.css.scss */
  body, .container {
    margin: 0;
    padding: 0;
  }
  /* line 6, app/assets/stylesheets/tenant/print.css.scss */
  footer {
    display: none;
  }
  /* line 9, app/assets/stylesheets/tenant/print.css.scss */
  .no-print {
    display: none;
  }
  /* line 13, app/assets/stylesheets/tenant/print.css.scss */
  .print-only {
    display: block;
  }
  /* line 17, app/assets/stylesheets/tenant/print.css.scss */
  .header-logo {
    padding: 0px;
    margin-left: -110px;
    margin-top: 25px;
  }
  /* line 23, app/assets/stylesheets/tenant/print.css.scss */
  .header-user-info {
    padding: 0px;
    margin-left: 0px;
    margin-top: 25px;
  }
  /* line 29, app/assets/stylesheets/tenant/print.css.scss */
  a[href]:after {
    content: none;
  }
  /* line 32, app/assets/stylesheets/tenant/print.css.scss */
  #report_qrid dd {
    margin-left: 30px !important;
  }
  /* line 35, app/assets/stylesheets/tenant/print.css.scss */
  .panel {
    page-break-inside: avoid;
  }
  /* line 39, app/assets/stylesheets/tenant/print.css.scss */
  #report_details .panel-body {
    padding-top: 0;
    padding-bottom: 0;
  }
  /* line 43, app/assets/stylesheets/tenant/print.css.scss */
  #report_details td {
    padding: 0;
    border: 0 !important;
    display: block;
    float: left;
  }
  /* line 48, app/assets/stylesheets/tenant/print.css.scss */
  #report_details td:nth-child(even) {
    padding-right: 15px;
    float: right;
  }
  /* line 52, app/assets/stylesheets/tenant/print.css.scss */
  #report_details td:nth-child(odd) {
    padding-left: 15px;
  }
  /* line 56, app/assets/stylesheets/tenant/print.css.scss */
  #report_details tr {
    display: block;
    float: right;
    width: 50%;
    border: 0 !important;
  }
  /* line 61, app/assets/stylesheets/tenant/print.css.scss */
  #report_details tr:nth-child(even) {
    border-right: 1px solid;
  }
  /* line 66, app/assets/stylesheets/tenant/print.css.scss */
  #report_location > * {
    float: left;
  }
  /* line 69, app/assets/stylesheets/tenant/print.css.scss */
  #report_comments {
    page-break-before: always;
    page-break-inside: auto;
  }
  /* line 74, app/assets/stylesheets/tenant/print.css.scss */
  .my_reports_show h1, .reports_show h1 {
    text-align: center;
  }
  /* line 78, app/assets/stylesheets/tenant/print.css.scss */
  #content, .panel-body {
    padding: 0 !important;
  }
  /* line 81, app/assets/stylesheets/tenant/print.css.scss */
  #mobile_calendar {
    width: 100%;
  }
  /* line 83, app/assets/stylesheets/tenant/print.css.scss */
  #mobile_calendar table, #mobile_calendar tr, #mobile_calendar td, #mobile_calendar th {
    border: 1px solid;
  }
  /* line 86, app/assets/stylesheets/tenant/print.css.scss */
  #mobile_calendar table {
    width: 100%;
  }
  /* line 89, app/assets/stylesheets/tenant/print.css.scss */
  #mobile_calendar td, #mobile_calendar th {
    padding-left: 5px;
    padding-right: 5px;
  }
  /* line 94, app/assets/stylesheets/tenant/print.css.scss */
  .row {
    margin: 0;
  }
  /* line 98, app/assets/stylesheets/tenant/print.css.scss */
  .my_assignments_index #mobile_calendar > table > tbody > tr > th:nth-child(4), .my_assignments_index #mobile_calendar > table > tbody > tr > td:nth-child(4) {
    display: none;
  }
}

/* line 1, app/assets/stylesheets/tenant/qrids.css.scss */
.qrid-wrapper {
  width: 100%;
  display: inline-block;
  position: relative;
  float: left;
  border: 1px solid black;
  margin: 10px;
}

/* line 10, app/assets/stylesheets/tenant/qrids.css.scss */
.qrid-wrapper:after {
  padding-top: 160%;
  display: block;
  content: '';
}

/* line 16, app/assets/stylesheets/tenant/qrids.css.scss */
.qrid-card {
  overflow: auto;
  position: absolute;
  text-align: center;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}

/* line 26, app/assets/stylesheets/tenant/qrids.css.scss */
.qrid-card-text {
  color: #4D4D4D;
}

/* line 30, app/assets/stylesheets/tenant/qrids.css.scss */
h4.show-qrid, h4.hidden-qrid {
  color: black;
  text-align: center;
}

/* line 35, app/assets/stylesheets/tenant/qrids.css.scss */
#qrcards-select {
  color: black;
  width: 140px;
  height: 40px;
  font-weight: bold;
  border: 1px solid #4D4D4D;
}

/* line 43, app/assets/stylesheets/tenant/qrids.css.scss */
#qrcards-deselect {
  color: black;
  width: 180px;
  height: 40px;
  font-weight: bold;
  border: 1px solid #4D4D4D;
}

/* line 51, app/assets/stylesheets/tenant/qrids.css.scss */
#qrcards-print {
  width: 150px;
  height: 40px;
  font-weight: bold;
}

/* line 57, app/assets/stylesheets/tenant/qrids.css.scss */
.hidden-qrid {
  display: none;
}

/* 1180px */
@media only screen and (max-width: 1180px) {
  /* line 3, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .navbar-collapse {
    padding-left: 0;
  }
  /* line 6, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .navbar-default ul li {
    padding: 0;
  }
  /* line 9, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .navbar-default ul li a {
    font-size: 12px;
    padding: 0 14px;
  }
  /* line 11, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .table > thead > tr > th, .table > thead > tr > td, .table > tbody > tr > th, .table > tbody > tr > td, .table > tfoot > tr > th, .table > tfoot > tr > td {
    padding-left: 2px;
    padding-right: 2px;
  }
}

/*  900 px   */
@media only screen and (max-width: 900px) {
  /* line 17, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .table > thead > tr > th, .table > thead > tr > td, .table > tbody > tr > th, .table > tbody > tr > td, .table > tfoot > tr > th, .table > tfoot > tr > td {
    padding-left: 10px;
    padding-right: 3px;
  }
  /* line 19, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .navbar-form {
    display: none;
  }
}

@media only screen and (max-width: 768px) {
  /* line 24, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .navbar-form {
    display: block;
  }
  /* line 26, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .account.dropdown-toggle {
    padding-top: 0;
    padding-bottom: 0;
  }
  /* line 30, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .nav > li > a {
    padding-right: 5px;
    padding-left: 5px;
  }
  /* line 34, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .navbar-form {
    padding: 0;
  }
  /* line 41, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .clients_index table.bootstrap-datatable thead, .clients_index table.bootstrap-datatable tbody, .clients_index table.bootstrap-datatable th, .clients_index table.bootstrap-datatable td, .clients_index table.bootstrap-datatable tr, .clients_index table.normal-table thead, .clients_index table.normal-table tbody, .clients_index table.normal-table th, .clients_index table.normal-table td, .clients_index table.normal-table tr, .clients_show table.bootstrap-datatable thead, .clients_show table.bootstrap-datatable tbody, .clients_show table.bootstrap-datatable th, .clients_show table.bootstrap-datatable td, .clients_show table.bootstrap-datatable tr, .clients_show table.normal-table thead, .clients_show table.normal-table tbody, .clients_show table.normal-table th, .clients_show table.normal-table td, .clients_show table.normal-table tr, .dashboard_index table.bootstrap-datatable thead, .dashboard_index table.bootstrap-datatable tbody, .dashboard_index table.bootstrap-datatable th, .dashboard_index table.bootstrap-datatable td, .dashboard_index table.bootstrap-datatable tr, .dashboard_index table.normal-table thead, .dashboard_index table.normal-table tbody, .dashboard_index table.normal-table th, .dashboard_index table.normal-table td, .dashboard_index table.normal-table tr, .dashboard_app_c_reports table.bootstrap-datatable thead, .dashboard_app_c_reports table.bootstrap-datatable tbody, .dashboard_app_c_reports table.bootstrap-datatable th, .dashboard_app_c_reports table.bootstrap-datatable td, .dashboard_app_c_reports table.bootstrap-datatable tr, .dashboard_app_c_reports table.normal-table thead, .dashboard_app_c_reports table.normal-table tbody, .dashboard_app_c_reports table.normal-table th, .dashboard_app_c_reports table.normal-table td, .dashboard_app_c_reports table.normal-table tr, .dashboard_app_c_inbox table.bootstrap-datatable thead, .dashboard_app_c_inbox table.bootstrap-datatable tbody, .dashboard_app_c_inbox table.bootstrap-datatable th, .dashboard_app_c_inbox table.bootstrap-datatable td, .dashboard_app_c_inbox table.bootstrap-datatable tr, .dashboard_app_c_inbox table.normal-table thead, .dashboard_app_c_inbox table.normal-table tbody, .dashboard_app_c_inbox table.normal-table th, .dashboard_app_c_inbox table.normal-table td, .dashboard_app_c_inbox table.normal-table tr, .dashboard_app_c_invoices table.bootstrap-datatable thead, .dashboard_app_c_invoices table.bootstrap-datatable tbody, .dashboard_app_c_invoices table.bootstrap-datatable th, .dashboard_app_c_invoices table.bootstrap-datatable td, .dashboard_app_c_invoices table.bootstrap-datatable tr, .dashboard_app_c_invoices table.normal-table thead, .dashboard_app_c_invoices table.normal-table tbody, .dashboard_app_c_invoices table.normal-table th, .dashboard_app_c_invoices table.normal-table td, .dashboard_app_c_invoices table.normal-table tr, .dashboard_app_c_tutorials table.bootstrap-datatable thead, .dashboard_app_c_tutorials table.bootstrap-datatable tbody, .dashboard_app_c_tutorials table.bootstrap-datatable th, .dashboard_app_c_tutorials table.bootstrap-datatable td, .dashboard_app_c_tutorials table.bootstrap-datatable tr, .dashboard_app_c_tutorials table.normal-table thead, .dashboard_app_c_tutorials table.normal-table tbody, .dashboard_app_c_tutorials table.normal-table th, .dashboard_app_c_tutorials table.normal-table td, .dashboard_app_c_tutorials table.normal-table tr, .qrids_index table.bootstrap-datatable thead, .qrids_index table.bootstrap-datatable tbody, .qrids_index table.bootstrap-datatable th, .qrids_index table.bootstrap-datatable td, .qrids_index table.bootstrap-datatable tr, .qrids_index table.normal-table thead, .qrids_index table.normal-table tbody, .qrids_index table.normal-table th, .qrids_index table.normal-table td, .qrids_index table.normal-table tr, .invoices_index table.bootstrap-datatable thead, .invoices_index table.bootstrap-datatable tbody, .invoices_index table.bootstrap-datatable th, .invoices_index table.bootstrap-datatable td, .invoices_index table.bootstrap-datatable tr, .invoices_index table.normal-table thead, .invoices_index table.normal-table tbody, .invoices_index table.normal-table th, .invoices_index table.normal-table td, .invoices_index table.normal-table tr, .reports_index table.bootstrap-datatable thead, .reports_index table.bootstrap-datatable tbody, .reports_index table.bootstrap-datatable th, .reports_index table.bootstrap-datatable td, .reports_index table.bootstrap-datatable tr, .reports_index table.normal-table thead, .reports_index table.normal-table tbody, .reports_index table.normal-table th, .reports_index table.normal-table td, .reports_index table.normal-table tr, .time_index table.bootstrap-datatable thead, .time_index table.bootstrap-datatable tbody, .time_index table.bootstrap-datatable th, .time_index table.bootstrap-datatable td, .time_index table.bootstrap-datatable tr, .time_index table.normal-table thead, .time_index table.normal-table tbody, .time_index table.normal-table th, .time_index table.normal-table td, .time_index table.normal-table tr, .sites_index table.bootstrap-datatable thead, .sites_index table.bootstrap-datatable tbody, .sites_index table.bootstrap-datatable th, .sites_index table.bootstrap-datatable td, .sites_index table.bootstrap-datatable tr, .sites_index table.normal-table thead, .sites_index table.normal-table tbody, .sites_index table.normal-table th, .sites_index table.normal-table td, .sites_index table.normal-table tr, .site_occupancies_index table.bootstrap-datatable thead, .site_occupancies_index table.bootstrap-datatable tbody, .site_occupancies_index table.bootstrap-datatable th, .site_occupancies_index table.bootstrap-datatable td, .site_occupancies_index table.bootstrap-datatable tr, .site_occupancies_index table.normal-table thead, .site_occupancies_index table.normal-table tbody, .site_occupancies_index table.normal-table th, .site_occupancies_index table.normal-table td, .site_occupancies_index table.normal-table tr, .site_occupancies_show table.bootstrap-datatable thead, .site_occupancies_show table.bootstrap-datatable tbody, .site_occupancies_show table.bootstrap-datatable th, .site_occupancies_show table.bootstrap-datatable td, .site_occupancies_show table.bootstrap-datatable tr, .site_occupancies_show table.normal-table thead, .site_occupancies_show table.normal-table tbody, .site_occupancies_show table.normal-table th, .site_occupancies_show table.normal-table td, .site_occupancies_show table.normal-table tr, .users_index table.bootstrap-datatable thead, .users_index table.bootstrap-datatable tbody, .users_index table.bootstrap-datatable th, .users_index table.bootstrap-datatable td, .users_index table.bootstrap-datatable tr, .users_index table.normal-table thead, .users_index table.normal-table tbody, .users_index table.normal-table th, .users_index table.normal-table td, .users_index table.normal-table tr, .sites_show table.bootstrap-datatable thead, .sites_show table.bootstrap-datatable tbody, .sites_show table.bootstrap-datatable th, .sites_show table.bootstrap-datatable td, .sites_show table.bootstrap-datatable tr, .sites_show table.normal-table thead, .sites_show table.normal-table tbody, .sites_show table.normal-table th, .sites_show table.normal-table td, .sites_show table.normal-table tr, #mobile_calendar table.bootstrap-datatable thead, #mobile_calendar table.bootstrap-datatable tbody, #mobile_calendar table.bootstrap-datatable th, #mobile_calendar table.bootstrap-datatable td, #mobile_calendar table.bootstrap-datatable tr, #mobile_calendar table.normal-table thead, #mobile_calendar table.normal-table tbody, #mobile_calendar table.normal-table th, #mobile_calendar table.normal-table td, #mobile_calendar table.normal-table tr, .zones_index table.bootstrap-datatable thead, .zones_index table.bootstrap-datatable tbody, .zones_index table.bootstrap-datatable th, .zones_index table.bootstrap-datatable td, .zones_index table.bootstrap-datatable tr, .zones_index table.normal-table thead, .zones_index table.normal-table tbody, .zones_index table.normal-table th, .zones_index table.normal-table td, .zones_index table.normal-table tr, .my_reports_index table.bootstrap-datatable thead, .my_reports_index table.bootstrap-datatable tbody, .my_reports_index table.bootstrap-datatable th, .my_reports_index table.bootstrap-datatable td, .my_reports_index table.bootstrap-datatable tr, .my_reports_index table.normal-table thead, .my_reports_index table.normal-table tbody, .my_reports_index table.normal-table th, .my_reports_index table.normal-table td, .my_reports_index table.normal-table tr, .c_reports_index table.bootstrap-datatable thead, .c_reports_index table.bootstrap-datatable tbody, .c_reports_index table.bootstrap-datatable th, .c_reports_index table.bootstrap-datatable td, .c_reports_index table.bootstrap-datatable tr, .c_reports_index table.normal-table thead, .c_reports_index table.normal-table tbody, .c_reports_index table.normal-table th, .c_reports_index table.normal-table td, .c_reports_index table.normal-table tr, .c_reports_show table.bootstrap-datatable thead, .c_reports_show table.bootstrap-datatable tbody, .c_reports_show table.bootstrap-datatable th, .c_reports_show table.bootstrap-datatable td, .c_reports_show table.bootstrap-datatable tr, .c_reports_show table.normal-table thead, .c_reports_show table.normal-table tbody, .c_reports_show table.normal-table th, .c_reports_show table.normal-table td, .c_reports_show table.normal-table tr, .my_sites_index table.bootstrap-datatable thead, .my_sites_index table.bootstrap-datatable tbody, .my_sites_index table.bootstrap-datatable th, .my_sites_index table.bootstrap-datatable td, .my_sites_index table.bootstrap-datatable tr, .my_sites_index table.normal-table thead, .my_sites_index table.normal-table tbody, .my_sites_index table.normal-table th, .my_sites_index table.normal-table td, .my_sites_index table.normal-table tr, .my_sites_show table.bootstrap-datatable thead, .my_sites_show table.bootstrap-datatable tbody, .my_sites_show table.bootstrap-datatable th, .my_sites_show table.bootstrap-datatable td, .my_sites_show table.bootstrap-datatable tr, .my_sites_show table.normal-table thead, .my_sites_show table.normal-table tbody, .my_sites_show table.normal-table th, .my_sites_show table.normal-table td, .my_sites_show table.normal-table tr, .invoices_client_invoice table.bootstrap-datatable thead, .invoices_client_invoice table.bootstrap-datatable tbody, .invoices_client_invoice table.bootstrap-datatable th, .invoices_client_invoice table.bootstrap-datatable td, .invoices_client_invoice table.bootstrap-datatable tr, .invoices_client_invoice table.normal-table thead, .invoices_client_invoice table.normal-table tbody, .invoices_client_invoice table.normal-table th, .invoices_client_invoice table.normal-table td, .invoices_client_invoice table.normal-table tr, .settings_client_billing table.bootstrap-datatable thead, .settings_client_billing table.bootstrap-datatable tbody, .settings_client_billing table.bootstrap-datatable th, .settings_client_billing table.bootstrap-datatable td, .settings_client_billing table.bootstrap-datatable tr, .settings_client_billing table.normal-table thead, .settings_client_billing table.normal-table tbody, .settings_client_billing table.normal-table th, .settings_client_billing table.normal-table td, .settings_client_billing table.normal-table tr, .dashboard_app_c_booking_calendar table.bootstrap-datatable thead, .dashboard_app_c_booking_calendar table.bootstrap-datatable tbody, .dashboard_app_c_booking_calendar table.bootstrap-datatable th, .dashboard_app_c_booking_calendar table.bootstrap-datatable td, .dashboard_app_c_booking_calendar table.bootstrap-datatable tr, .dashboard_app_c_booking_calendar table.normal-table thead, .dashboard_app_c_booking_calendar table.normal-table tbody, .dashboard_app_c_booking_calendar table.normal-table th, .dashboard_app_c_booking_calendar table.normal-table td, .dashboard_app_c_booking_calendar table.normal-table tr {
    display: block;
  }
  /* line 45, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .clients_index table.bootstrap-datatable thead tr, .clients_index table.normal-table thead tr, .clients_show table.bootstrap-datatable thead tr, .clients_show table.normal-table thead tr, .dashboard_index table.bootstrap-datatable thead tr, .dashboard_index table.normal-table thead tr, .dashboard_app_c_reports table.bootstrap-datatable thead tr, .dashboard_app_c_reports table.normal-table thead tr, .dashboard_app_c_inbox table.bootstrap-datatable thead tr, .dashboard_app_c_inbox table.normal-table thead tr, .dashboard_app_c_invoices table.bootstrap-datatable thead tr, .dashboard_app_c_invoices table.normal-table thead tr, .dashboard_app_c_tutorials table.bootstrap-datatable thead tr, .dashboard_app_c_tutorials table.normal-table thead tr, .qrids_index table.bootstrap-datatable thead tr, .qrids_index table.normal-table thead tr, .invoices_index table.bootstrap-datatable thead tr, .invoices_index table.normal-table thead tr, .reports_index table.bootstrap-datatable thead tr, .reports_index table.normal-table thead tr, .time_index table.bootstrap-datatable thead tr, .time_index table.normal-table thead tr, .sites_index table.bootstrap-datatable thead tr, .sites_index table.normal-table thead tr, .site_occupancies_index table.bootstrap-datatable thead tr, .site_occupancies_index table.normal-table thead tr, .site_occupancies_show table.bootstrap-datatable thead tr, .site_occupancies_show table.normal-table thead tr, .users_index table.bootstrap-datatable thead tr, .users_index table.normal-table thead tr, .sites_show table.bootstrap-datatable thead tr, .sites_show table.normal-table thead tr, #mobile_calendar table.bootstrap-datatable thead tr, #mobile_calendar table.normal-table thead tr, .zones_index table.bootstrap-datatable thead tr, .zones_index table.normal-table thead tr, .my_reports_index table.bootstrap-datatable thead tr, .my_reports_index table.normal-table thead tr, .c_reports_index table.bootstrap-datatable thead tr, .c_reports_index table.normal-table thead tr, .c_reports_show table.bootstrap-datatable thead tr, .c_reports_show table.normal-table thead tr, .my_sites_index table.bootstrap-datatable thead tr, .my_sites_index table.normal-table thead tr, .my_sites_show table.bootstrap-datatable thead tr, .my_sites_show table.normal-table thead tr, .invoices_client_invoice table.bootstrap-datatable thead tr, .invoices_client_invoice table.normal-table thead tr, .settings_client_billing table.bootstrap-datatable thead tr, .settings_client_billing table.normal-table thead tr, .dashboard_app_c_booking_calendar table.bootstrap-datatable thead tr, .dashboard_app_c_booking_calendar table.normal-table thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }
  /* line 50, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .clients_index table.bootstrap-datatable tr, .clients_index table.normal-table tr, .clients_show table.bootstrap-datatable tr, .clients_show table.normal-table tr, .dashboard_index table.bootstrap-datatable tr, .dashboard_index table.normal-table tr, .dashboard_app_c_reports table.bootstrap-datatable tr, .dashboard_app_c_reports table.normal-table tr, .dashboard_app_c_inbox table.bootstrap-datatable tr, .dashboard_app_c_inbox table.normal-table tr, .dashboard_app_c_invoices table.bootstrap-datatable tr, .dashboard_app_c_invoices table.normal-table tr, .dashboard_app_c_tutorials table.bootstrap-datatable tr, .dashboard_app_c_tutorials table.normal-table tr, .qrids_index table.bootstrap-datatable tr, .qrids_index table.normal-table tr, .invoices_index table.bootstrap-datatable tr, .invoices_index table.normal-table tr, .reports_index table.bootstrap-datatable tr, .reports_index table.normal-table tr, .time_index table.bootstrap-datatable tr, .time_index table.normal-table tr, .sites_index table.bootstrap-datatable tr, .sites_index table.normal-table tr, .site_occupancies_index table.bootstrap-datatable tr, .site_occupancies_index table.normal-table tr, .site_occupancies_show table.bootstrap-datatable tr, .site_occupancies_show table.normal-table tr, .users_index table.bootstrap-datatable tr, .users_index table.normal-table tr, .sites_show table.bootstrap-datatable tr, .sites_show table.normal-table tr, #mobile_calendar table.bootstrap-datatable tr, #mobile_calendar table.normal-table tr, .zones_index table.bootstrap-datatable tr, .zones_index table.normal-table tr, .my_reports_index table.bootstrap-datatable tr, .my_reports_index table.normal-table tr, .c_reports_index table.bootstrap-datatable tr, .c_reports_index table.normal-table tr, .c_reports_show table.bootstrap-datatable tr, .c_reports_show table.normal-table tr, .my_sites_index table.bootstrap-datatable tr, .my_sites_index table.normal-table tr, .my_sites_show table.bootstrap-datatable tr, .my_sites_show table.normal-table tr, .invoices_client_invoice table.bootstrap-datatable tr, .invoices_client_invoice table.normal-table tr, .settings_client_billing table.bootstrap-datatable tr, .settings_client_billing table.normal-table tr, .dashboard_app_c_booking_calendar table.bootstrap-datatable tr, .dashboard_app_c_booking_calendar table.normal-table tr {
    border: 1px solid #eee;
  }
  /* line 51, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .clients_index table.bootstrap-datatable td, .clients_index table.normal-table td, .clients_show table.bootstrap-datatable td, .clients_show table.normal-table td, .dashboard_index table.bootstrap-datatable td, .dashboard_index table.normal-table td, .dashboard_app_c_reports table.bootstrap-datatable td, .dashboard_app_c_reports table.normal-table td, .dashboard_app_c_inbox table.bootstrap-datatable td, .dashboard_app_c_inbox table.normal-table td, .dashboard_app_c_invoices table.bootstrap-datatable td, .dashboard_app_c_invoices table.normal-table td, .dashboard_app_c_tutorials table.bootstrap-datatable td, .dashboard_app_c_tutorials table.normal-table td, .qrids_index table.bootstrap-datatable td, .qrids_index table.normal-table td, .invoices_index table.bootstrap-datatable td, .invoices_index table.normal-table td, .reports_index table.bootstrap-datatable td, .reports_index table.normal-table td, .time_index table.bootstrap-datatable td, .time_index table.normal-table td, .sites_index table.bootstrap-datatable td, .sites_index table.normal-table td, .site_occupancies_index table.bootstrap-datatable td, .site_occupancies_index table.normal-table td, .site_occupancies_show table.bootstrap-datatable td, .site_occupancies_show table.normal-table td, .users_index table.bootstrap-datatable td, .users_index table.normal-table td, .sites_show table.bootstrap-datatable td, .sites_show table.normal-table td, #mobile_calendar table.bootstrap-datatable td, #mobile_calendar table.normal-table td, .zones_index table.bootstrap-datatable td, .zones_index table.normal-table td, .my_reports_index table.bootstrap-datatable td, .my_reports_index table.normal-table td, .c_reports_index table.bootstrap-datatable td, .c_reports_index table.normal-table td, .c_reports_show table.bootstrap-datatable td, .c_reports_show table.normal-table td, .my_sites_index table.bootstrap-datatable td, .my_sites_index table.normal-table td, .my_sites_show table.bootstrap-datatable td, .my_sites_show table.normal-table td, .invoices_client_invoice table.bootstrap-datatable td, .invoices_client_invoice table.normal-table td, .settings_client_billing table.bootstrap-datatable td, .settings_client_billing table.normal-table td, .dashboard_app_c_booking_calendar table.bootstrap-datatable td, .dashboard_app_c_booking_calendar table.normal-table td {
    /* Behave  like a "row" */
    /* Changed 50% to 100px left padding */
    border: none !important;
    position: relative;
    padding-left: 120px !important;
    min-height: 30px;
  }
  /* line 59, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .clients_index table.bootstrap-datatable td:before, .clients_index table.normal-table td:before, .clients_show table.bootstrap-datatable td:before, .clients_show table.normal-table td:before, .dashboard_index table.bootstrap-datatable td:before, .dashboard_index table.normal-table td:before, .dashboard_app_c_reports table.bootstrap-datatable td:before, .dashboard_app_c_reports table.normal-table td:before, .dashboard_app_c_inbox table.bootstrap-datatable td:before, .dashboard_app_c_inbox table.normal-table td:before, .dashboard_app_c_invoices table.bootstrap-datatable td:before, .dashboard_app_c_invoices table.normal-table td:before, .dashboard_app_c_tutorials table.bootstrap-datatable td:before, .dashboard_app_c_tutorials table.normal-table td:before, .qrids_index table.bootstrap-datatable td:before, .qrids_index table.normal-table td:before, .invoices_index table.bootstrap-datatable td:before, .invoices_index table.normal-table td:before, .reports_index table.bootstrap-datatable td:before, .reports_index table.normal-table td:before, .time_index table.bootstrap-datatable td:before, .time_index table.normal-table td:before, .sites_index table.bootstrap-datatable td:before, .sites_index table.normal-table td:before, .site_occupancies_index table.bootstrap-datatable td:before, .site_occupancies_index table.normal-table td:before, .site_occupancies_show table.bootstrap-datatable td:before, .site_occupancies_show table.normal-table td:before, .users_index table.bootstrap-datatable td:before, .users_index table.normal-table td:before, .sites_show table.bootstrap-datatable td:before, .sites_show table.normal-table td:before, #mobile_calendar table.bootstrap-datatable td:before, #mobile_calendar table.normal-table td:before, .zones_index table.bootstrap-datatable td:before, .zones_index table.normal-table td:before, .my_reports_index table.bootstrap-datatable td:before, .my_reports_index table.normal-table td:before, .c_reports_index table.bootstrap-datatable td:before, .c_reports_index table.normal-table td:before, .c_reports_show table.bootstrap-datatable td:before, .c_reports_show table.normal-table td:before, .my_sites_index table.bootstrap-datatable td:before, .my_sites_index table.normal-table td:before, .my_sites_show table.bootstrap-datatable td:before, .my_sites_show table.normal-table td:before, .invoices_client_invoice table.bootstrap-datatable td:before, .invoices_client_invoice table.normal-table td:before, .settings_client_billing table.bootstrap-datatable td:before, .settings_client_billing table.normal-table td:before, .dashboard_app_c_booking_calendar table.bootstrap-datatable td:before, .dashboard_app_c_booking_calendar table.normal-table td:before {
    /* Now like a table header */
    position: absolute;
    /* Top/left values mimic padding */
    top: 6px;
    left: 6px;
    width: 45%;
    padding-right: 10px;
    white-space: nowrap;
  }
  /* line 72, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .clients_index td:nth-of-type(1):before {
    content: "Status";
  }
  /* line 73, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .clients_index td:nth-of-type(2):before {
    content: "Id";
  }
  /* line 74, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .clients_index td:nth-of-type(3):before {
    content: "Client";
  }
  /* line 75, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .clients_index td:nth-of-type(4):before {
    content: "Client Type";
  }
  /* line 76, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .clients_index td:nth-of-type(5):before {
    content: "Site";
  }
  /* line 77, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .clients_index td:nth-of-type(6):before {
    content: "Zone";
  }
  /* line 78, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .clients_index td:nth-of-type(7):before {
    content: "City";
  }
  /* line 79, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .clients_index td:nth-of-type(8):before {
    content: "QRID";
  }
  /* line 80, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .clients_index td:nth-of-type(9):before {
    content: "Work Type";
  }
  /* line 81, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .clients_index td:nth-of-type(10):before {
    content: "Actions";
  }
  /* line 85, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .clients_show #prepaid td:nth-of-type(1):before {
    content: "Work Type";
  }
  /* line 86, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .clients_show #prepaid td:nth-of-type(2):before {
    content: "Remaining";
  }
  /* line 89, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .clients_show #invoices td:nth-of-type(1):before {
    content: "Invoice Number";
  }
  /* line 90, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .clients_show #invoices td:nth-of-type(2):before {
    content: "Type";
  }
  /* line 91, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .clients_show #invoices td:nth-of-type(3):before {
    content: "Client";
  }
  /* line 92, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .clients_show #invoices td:nth-of-type(4):before {
    content: "Created at";
  }
  /* line 93, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .clients_show #invoices td:nth-of-type(5):before {
    content: "Issued on";
  }
  /* line 94, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .clients_show #invoices td:nth-of-type(7):before {
    content: "Sent on";
  }
  /* line 95, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .clients_show #invoices td:nth-of-type(6):before {
    content: "Due Date";
  }
  /* line 96, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .clients_show #invoices td:nth-of-type(8):before {
    content: "Balance";
  }
  /* line 97, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .clients_show #invoices td:nth-of-type(9):before {
    content: "Status";
  }
  /* line 98, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .clients_show #invoices td:nth-of-type(10):before {
    content: "Actions";
  }
  /* line 101, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .clients_show #sites td:nth-of-type(1):before {
    content: "ID";
  }
  /* line 102, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .clients_show #sites td:nth-of-type(2):before {
    content: "Site";
  }
  /* line 103, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .clients_show #sites td:nth-of-type(3):before {
    content: "City";
  }
  /* line 104, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .clients_show #sites td:nth-of-type(4):before {
    content: "Zone";
  }
  /* line 105, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .clients_show #sites td:nth-of-type(5):before {
    content: "QRIDs";
  }
  /* line 106, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .clients_show #sites td:nth-of-type(6):before {
    content: "Actions";
  }
  /* line 109, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .clients_show #occupancies td:nth-of-type(1):before {
    content: "Status";
  }
  /* line 110, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .clients_show #occupancies td:nth-of-type(2):before {
    content: "Arrival";
  }
  /* line 111, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .clients_show #occupancies td:nth-of-type(3):before {
    content: "Departure";
  }
  /* line 112, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .clients_show #occupancies td:nth-of-type(4):before {
    content: "Site";
  }
  /* line 113, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .clients_show #occupancies td:nth-of-type(5):before {
    content: "Occupants";
  }
  /* line 114, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .clients_show #occupancies td:nth-of-type(6):before {
    content: "Comments";
  }
  /* line 115, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .clients_show #occupancies td:nth-of-type(7):before {
    content: "Assignments";
  }
  /* line 116, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .clients_show #occupancies td:nth-of-type(8):before {
    content: "Actions";
  }
  /* line 119, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .clients_show #reports td:nth-of-type(1):before {
    content: "Read";
  }
  /* line 120, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .clients_show #reports td:nth-of-type(2):before {
    content: "Flagged";
  }
  /* line 121, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .clients_show #reports td:nth-of-type(3):before {
    content: "QRID";
  }
  /* line 122, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .clients_show #reports td:nth-of-type(4):before {
    content: "Site";
  }
  /* line 123, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .clients_show #reports td:nth-of-type(5):before {
    content: "Work Type";
  }
  /* line 124, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .clients_show #reports td:nth-of-type(6):before {
    content: "Submitted";
  }
  /* line 125, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .clients_show #reports td:nth-of-type(7):before {
    content: "Sent";
  }
  /* line 126, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .clients_show #reports td:nth-of-type(8):before {
    content: "Replied";
  }
  /* line 127, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .clients_show #reports td:nth-of-type(9):before {
    content: "Last Comment";
  }
  /* line 128, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .clients_show #reports td:nth-of-type(10):before {
    content: "Actions";
  }
  /* line 133, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .invoices_index.manager td:nth-of-type(1):before {
    content: "Invoice Number";
  }
  /* line 134, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .invoices_index.manager td:nth-of-type(2):before {
    content: "Type";
  }
  /* line 135, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .invoices_index.manager td:nth-of-type(3):before {
    content: "Client";
  }
  /* line 136, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .invoices_index.manager td:nth-of-type(4):before {
    content: "Created at";
  }
  /* line 137, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .invoices_index.manager td:nth-of-type(5):before {
    content: "Issued on";
  }
  /* line 138, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .invoices_index.manager td:nth-of-type(6):before {
    content: "Due Date";
  }
  /* line 139, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .invoices_index.manager td:nth-of-type(7):before {
    content: "Sent on";
  }
  /* line 140, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .invoices_index.manager td:nth-of-type(8):before {
    content: "Balance";
  }
  /* line 141, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .invoices_index.manager td:nth-of-type(9):before {
    content: "Total";
  }
  /* line 142, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .invoices_index.manager td:nth-of-type(10):before {
    content: "Credit Left";
  }
  /* line 143, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .invoices_index.manager td:nth-of-type(11):before {
    content: "Status";
  }
  /* line 144, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .invoices_index.manager td:nth-of-type(12):before {
    content: "Actions";
  }
  /* line 148, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .invoices_index.client .bootstrap-datatable td:nth-of-type(1):before {
    content: "Invoice Number";
  }
  /* line 149, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .invoices_index.client .bootstrap-datatable td:nth-of-type(2):before {
    content: "Type";
  }
  /* line 150, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .invoices_index.client .bootstrap-datatable td:nth-of-type(3):before {
    content: "Issued on";
  }
  /* line 151, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .invoices_index.client .bootstrap-datatable td:nth-of-type(4):before {
    content: "Due date";
  }
  /* line 152, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .invoices_index.client .bootstrap-datatable td:nth-of-type(5):before {
    content: "Balance";
  }
  /* line 153, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .invoices_index.client .bootstrap-datatable td:nth-of-type(6):before {
    content: "Total";
  }
  /* line 160, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .dashboard_index.manager #dashboard-m-assignments-table td:nth-of-type(1):before, .dashboard_app_c_inbox.manager #dashboard-m-assignments-table td:nth-of-type(1):before, .dashboard_app_c_invoices.manager #dashboard-m-assignments-table td:nth-of-type(1):before, .dashboard_app_c_reports.manager #dashboard-m-assignments-table td:nth-of-type(1):before, .dashboard_app_c_booking_calendar.manager #dashboard-m-assignments-table td:nth-of-type(1):before {
    content: "Reporter";
  }
  /* line 161, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .dashboard_index.manager #dashboard-m-assignments-table td:nth-of-type(2):before, .dashboard_app_c_inbox.manager #dashboard-m-assignments-table td:nth-of-type(2):before, .dashboard_app_c_invoices.manager #dashboard-m-assignments-table td:nth-of-type(2):before, .dashboard_app_c_reports.manager #dashboard-m-assignments-table td:nth-of-type(2):before, .dashboard_app_c_booking_calendar.manager #dashboard-m-assignments-table td:nth-of-type(2):before {
    content: "Client";
  }
  /* line 162, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .dashboard_index.manager #dashboard-m-assignments-table td:nth-of-type(3):before, .dashboard_app_c_inbox.manager #dashboard-m-assignments-table td:nth-of-type(3):before, .dashboard_app_c_invoices.manager #dashboard-m-assignments-table td:nth-of-type(3):before, .dashboard_app_c_reports.manager #dashboard-m-assignments-table td:nth-of-type(3):before, .dashboard_app_c_booking_calendar.manager #dashboard-m-assignments-table td:nth-of-type(3):before {
    content: "Site";
  }
  /* line 163, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .dashboard_index.manager #dashboard-m-assignments-table td:nth-of-type(4):before, .dashboard_app_c_inbox.manager #dashboard-m-assignments-table td:nth-of-type(4):before, .dashboard_app_c_invoices.manager #dashboard-m-assignments-table td:nth-of-type(4):before, .dashboard_app_c_reports.manager #dashboard-m-assignments-table td:nth-of-type(4):before, .dashboard_app_c_booking_calendar.manager #dashboard-m-assignments-table td:nth-of-type(4):before {
    content: "QRID";
  }
  /* line 164, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .dashboard_index.manager #dashboard-m-assignments-table td:nth-of-type(5):before, .dashboard_app_c_inbox.manager #dashboard-m-assignments-table td:nth-of-type(5):before, .dashboard_app_c_invoices.manager #dashboard-m-assignments-table td:nth-of-type(5):before, .dashboard_app_c_reports.manager #dashboard-m-assignments-table td:nth-of-type(5):before, .dashboard_app_c_booking_calendar.manager #dashboard-m-assignments-table td:nth-of-type(5):before {
    content: "Start at";
  }
  /* line 165, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .dashboard_index.manager #dashboard-m-assignments-table td:nth-of-type(6):before, .dashboard_app_c_inbox.manager #dashboard-m-assignments-table td:nth-of-type(6):before, .dashboard_app_c_invoices.manager #dashboard-m-assignments-table td:nth-of-type(6):before, .dashboard_app_c_reports.manager #dashboard-m-assignments-table td:nth-of-type(6):before, .dashboard_app_c_booking_calendar.manager #dashboard-m-assignments-table td:nth-of-type(6):before {
    content: "Status";
  }
  /* line 166, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .dashboard_index.manager #dashboard-m-assignments-table td:nth-of-type(7):before, .dashboard_app_c_inbox.manager #dashboard-m-assignments-table td:nth-of-type(7):before, .dashboard_app_c_invoices.manager #dashboard-m-assignments-table td:nth-of-type(7):before, .dashboard_app_c_reports.manager #dashboard-m-assignments-table td:nth-of-type(7):before, .dashboard_app_c_booking_calendar.manager #dashboard-m-assignments-table td:nth-of-type(7):before {
    content: "";
  }
  /* line 169, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .dashboard_index.manager #dashboard-m-reports-table td:nth-of-type(1):before, .dashboard_app_c_inbox.manager #dashboard-m-reports-table td:nth-of-type(1):before, .dashboard_app_c_invoices.manager #dashboard-m-reports-table td:nth-of-type(1):before, .dashboard_app_c_reports.manager #dashboard-m-reports-table td:nth-of-type(1):before, .dashboard_app_c_booking_calendar.manager #dashboard-m-reports-table td:nth-of-type(1):before {
    content: "Flagged";
  }
  /* line 170, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .dashboard_index.manager #dashboard-m-reports-table td:nth-of-type(2):before, .dashboard_app_c_inbox.manager #dashboard-m-reports-table td:nth-of-type(2):before, .dashboard_app_c_invoices.manager #dashboard-m-reports-table td:nth-of-type(2):before, .dashboard_app_c_reports.manager #dashboard-m-reports-table td:nth-of-type(2):before, .dashboard_app_c_booking_calendar.manager #dashboard-m-reports-table td:nth-of-type(2):before {
    content: "Reporter";
  }
  /* line 171, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .dashboard_index.manager #dashboard-m-reports-table td:nth-of-type(3):before, .dashboard_app_c_inbox.manager #dashboard-m-reports-table td:nth-of-type(3):before, .dashboard_app_c_invoices.manager #dashboard-m-reports-table td:nth-of-type(3):before, .dashboard_app_c_reports.manager #dashboard-m-reports-table td:nth-of-type(3):before, .dashboard_app_c_booking_calendar.manager #dashboard-m-reports-table td:nth-of-type(3):before {
    content: "Client";
  }
  /* line 172, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .dashboard_index.manager #dashboard-m-reports-table td:nth-of-type(4):before, .dashboard_app_c_inbox.manager #dashboard-m-reports-table td:nth-of-type(4):before, .dashboard_app_c_invoices.manager #dashboard-m-reports-table td:nth-of-type(4):before, .dashboard_app_c_reports.manager #dashboard-m-reports-table td:nth-of-type(4):before, .dashboard_app_c_booking_calendar.manager #dashboard-m-reports-table td:nth-of-type(4):before {
    content: "Site";
  }
  /* line 173, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .dashboard_index.manager #dashboard-m-reports-table td:nth-of-type(5):before, .dashboard_app_c_inbox.manager #dashboard-m-reports-table td:nth-of-type(5):before, .dashboard_app_c_invoices.manager #dashboard-m-reports-table td:nth-of-type(5):before, .dashboard_app_c_reports.manager #dashboard-m-reports-table td:nth-of-type(5):before, .dashboard_app_c_booking_calendar.manager #dashboard-m-reports-table td:nth-of-type(5):before {
    content: "QRID";
  }
  /* line 174, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .dashboard_index.manager #dashboard-m-reports-table td:nth-of-type(6):before, .dashboard_app_c_inbox.manager #dashboard-m-reports-table td:nth-of-type(6):before, .dashboard_app_c_invoices.manager #dashboard-m-reports-table td:nth-of-type(6):before, .dashboard_app_c_reports.manager #dashboard-m-reports-table td:nth-of-type(6):before, .dashboard_app_c_booking_calendar.manager #dashboard-m-reports-table td:nth-of-type(6):before {
    content: "Submitted";
  }
  /* line 175, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .dashboard_index.manager #dashboard-m-reports-table td:nth-of-type(7):before, .dashboard_app_c_inbox.manager #dashboard-m-reports-table td:nth-of-type(7):before, .dashboard_app_c_invoices.manager #dashboard-m-reports-table td:nth-of-type(7):before, .dashboard_app_c_reports.manager #dashboard-m-reports-table td:nth-of-type(7):before, .dashboard_app_c_booking_calendar.manager #dashboard-m-reports-table td:nth-of-type(7):before {
    content: "Latest Comments";
  }
  /* line 176, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .dashboard_index.manager #dashboard-m-reports-table td:nth-of-type(8):before, .dashboard_app_c_inbox.manager #dashboard-m-reports-table td:nth-of-type(8):before, .dashboard_app_c_invoices.manager #dashboard-m-reports-table td:nth-of-type(8):before, .dashboard_app_c_reports.manager #dashboard-m-reports-table td:nth-of-type(8):before, .dashboard_app_c_booking_calendar.manager #dashboard-m-reports-table td:nth-of-type(8):before {
    content: "Actions";
  }
  /* line 179, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .dashboard_index.manager #dashboard-m-inbox-table td:nth-of-type(1):before, .dashboard_app_c_inbox.manager #dashboard-m-inbox-table td:nth-of-type(1):before, .dashboard_app_c_invoices.manager #dashboard-m-inbox-table td:nth-of-type(1):before, .dashboard_app_c_reports.manager #dashboard-m-inbox-table td:nth-of-type(1):before, .dashboard_app_c_booking_calendar.manager #dashboard-m-inbox-table td:nth-of-type(1):before {
    content: "Status";
  }
  /* line 180, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .dashboard_index.manager #dashboard-m-inbox-table td:nth-of-type(2):before, .dashboard_app_c_inbox.manager #dashboard-m-inbox-table td:nth-of-type(2):before, .dashboard_app_c_invoices.manager #dashboard-m-inbox-table td:nth-of-type(2):before, .dashboard_app_c_reports.manager #dashboard-m-inbox-table td:nth-of-type(2):before, .dashboard_app_c_booking_calendar.manager #dashboard-m-inbox-table td:nth-of-type(2):before {
    content: "Client";
  }
  /* line 181, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .dashboard_index.manager #dashboard-m-inbox-table td:nth-of-type(3):before, .dashboard_app_c_inbox.manager #dashboard-m-inbox-table td:nth-of-type(3):before, .dashboard_app_c_invoices.manager #dashboard-m-inbox-table td:nth-of-type(3):before, .dashboard_app_c_reports.manager #dashboard-m-inbox-table td:nth-of-type(3):before, .dashboard_app_c_booking_calendar.manager #dashboard-m-inbox-table td:nth-of-type(3):before {
    content: "Message";
  }
  /* line 182, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .dashboard_index.manager #dashboard-m-inbox-table td:nth-of-type(4):before, .dashboard_app_c_inbox.manager #dashboard-m-inbox-table td:nth-of-type(4):before, .dashboard_app_c_invoices.manager #dashboard-m-inbox-table td:nth-of-type(4):before, .dashboard_app_c_reports.manager #dashboard-m-inbox-table td:nth-of-type(4):before, .dashboard_app_c_booking_calendar.manager #dashboard-m-inbox-table td:nth-of-type(4):before {
    content: "Date";
  }
  /* line 185, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .dashboard_index.manager #dashboard-m-invoices-table td:nth-of-type(1):before, .dashboard_app_c_inbox.manager #dashboard-m-invoices-table td:nth-of-type(1):before, .dashboard_app_c_invoices.manager #dashboard-m-invoices-table td:nth-of-type(1):before, .dashboard_app_c_reports.manager #dashboard-m-invoices-table td:nth-of-type(1):before, .dashboard_app_c_booking_calendar.manager #dashboard-m-invoices-table td:nth-of-type(1):before {
    content: "Invoice Number";
  }
  /* line 186, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .dashboard_index.manager #dashboard-m-invoices-table td:nth-of-type(2):before, .dashboard_app_c_inbox.manager #dashboard-m-invoices-table td:nth-of-type(2):before, .dashboard_app_c_invoices.manager #dashboard-m-invoices-table td:nth-of-type(2):before, .dashboard_app_c_reports.manager #dashboard-m-invoices-table td:nth-of-type(2):before, .dashboard_app_c_booking_calendar.manager #dashboard-m-invoices-table td:nth-of-type(2):before {
    content: "Client";
  }
  /* line 187, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .dashboard_index.manager #dashboard-m-invoices-table td:nth-of-type(3):before, .dashboard_app_c_inbox.manager #dashboard-m-invoices-table td:nth-of-type(3):before, .dashboard_app_c_invoices.manager #dashboard-m-invoices-table td:nth-of-type(3):before, .dashboard_app_c_reports.manager #dashboard-m-invoices-table td:nth-of-type(3):before, .dashboard_app_c_booking_calendar.manager #dashboard-m-invoices-table td:nth-of-type(3):before {
    content: "Due date";
  }
  /* line 188, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .dashboard_index.manager #dashboard-m-invoices-table td:nth-of-type(4):before, .dashboard_app_c_inbox.manager #dashboard-m-invoices-table td:nth-of-type(4):before, .dashboard_app_c_invoices.manager #dashboard-m-invoices-table td:nth-of-type(4):before, .dashboard_app_c_reports.manager #dashboard-m-invoices-table td:nth-of-type(4):before, .dashboard_app_c_booking_calendar.manager #dashboard-m-invoices-table td:nth-of-type(4):before {
    content: "Balance";
  }
  /* line 191, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .dashboard_index.manager #dashboard-m-occupancies-table td:nth-of-type(1):before, .dashboard_app_c_inbox.manager #dashboard-m-occupancies-table td:nth-of-type(1):before, .dashboard_app_c_invoices.manager #dashboard-m-occupancies-table td:nth-of-type(1):before, .dashboard_app_c_reports.manager #dashboard-m-occupancies-table td:nth-of-type(1):before, .dashboard_app_c_booking_calendar.manager #dashboard-m-occupancies-table td:nth-of-type(1):before {
    content: "Status";
  }
  /* line 192, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .dashboard_index.manager #dashboard-m-occupancies-table td:nth-of-type(2):before, .dashboard_app_c_inbox.manager #dashboard-m-occupancies-table td:nth-of-type(2):before, .dashboard_app_c_invoices.manager #dashboard-m-occupancies-table td:nth-of-type(2):before, .dashboard_app_c_reports.manager #dashboard-m-occupancies-table td:nth-of-type(2):before, .dashboard_app_c_booking_calendar.manager #dashboard-m-occupancies-table td:nth-of-type(2):before {
    content: "Arrival";
  }
  /* line 193, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .dashboard_index.manager #dashboard-m-occupancies-table td:nth-of-type(3):before, .dashboard_app_c_inbox.manager #dashboard-m-occupancies-table td:nth-of-type(3):before, .dashboard_app_c_invoices.manager #dashboard-m-occupancies-table td:nth-of-type(3):before, .dashboard_app_c_reports.manager #dashboard-m-occupancies-table td:nth-of-type(3):before, .dashboard_app_c_booking_calendar.manager #dashboard-m-occupancies-table td:nth-of-type(3):before {
    content: "Departure";
  }
  /* line 194, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .dashboard_index.manager #dashboard-m-occupancies-table td:nth-of-type(4):before, .dashboard_app_c_inbox.manager #dashboard-m-occupancies-table td:nth-of-type(4):before, .dashboard_app_c_invoices.manager #dashboard-m-occupancies-table td:nth-of-type(4):before, .dashboard_app_c_reports.manager #dashboard-m-occupancies-table td:nth-of-type(4):before, .dashboard_app_c_booking_calendar.manager #dashboard-m-occupancies-table td:nth-of-type(4):before {
    content: "Site";
  }
  /* line 195, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .dashboard_index.manager #dashboard-m-occupancies-table td:nth-of-type(5):before, .dashboard_app_c_inbox.manager #dashboard-m-occupancies-table td:nth-of-type(5):before, .dashboard_app_c_invoices.manager #dashboard-m-occupancies-table td:nth-of-type(5):before, .dashboard_app_c_reports.manager #dashboard-m-occupancies-table td:nth-of-type(5):before, .dashboard_app_c_booking_calendar.manager #dashboard-m-occupancies-table td:nth-of-type(5):before {
    content: "Client";
  }
  /* line 196, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .dashboard_index.manager #dashboard-m-occupancies-table td:nth-of-type(6):before, .dashboard_app_c_inbox.manager #dashboard-m-occupancies-table td:nth-of-type(6):before, .dashboard_app_c_invoices.manager #dashboard-m-occupancies-table td:nth-of-type(6):before, .dashboard_app_c_reports.manager #dashboard-m-occupancies-table td:nth-of-type(6):before, .dashboard_app_c_booking_calendar.manager #dashboard-m-occupancies-table td:nth-of-type(6):before {
    content: "Comments";
  }
  /* line 197, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .dashboard_index.manager #dashboard-m-occupancies-table td:nth-of-type(7):before, .dashboard_app_c_inbox.manager #dashboard-m-occupancies-table td:nth-of-type(7):before, .dashboard_app_c_invoices.manager #dashboard-m-occupancies-table td:nth-of-type(7):before, .dashboard_app_c_reports.manager #dashboard-m-occupancies-table td:nth-of-type(7):before, .dashboard_app_c_booking_calendar.manager #dashboard-m-occupancies-table td:nth-of-type(7):before {
    content: "Actions";
  }
  /* line 200, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .dashboard_index.manager #dashboard-m-messages-table td:nth-of-type(1):before, .dashboard_app_c_inbox.manager #dashboard-m-messages-table td:nth-of-type(1):before, .dashboard_app_c_invoices.manager #dashboard-m-messages-table td:nth-of-type(1):before, .dashboard_app_c_reports.manager #dashboard-m-messages-table td:nth-of-type(1):before, .dashboard_app_c_booking_calendar.manager #dashboard-m-messages-table td:nth-of-type(1):before {
    content: "Subject";
  }
  /* line 201, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .dashboard_index.manager #dashboard-m-messages-table td:nth-of-type(2):before, .dashboard_app_c_inbox.manager #dashboard-m-messages-table td:nth-of-type(2):before, .dashboard_app_c_invoices.manager #dashboard-m-messages-table td:nth-of-type(2):before, .dashboard_app_c_reports.manager #dashboard-m-messages-table td:nth-of-type(2):before, .dashboard_app_c_booking_calendar.manager #dashboard-m-messages-table td:nth-of-type(2):before {
    content: "Message";
  }
  /* line 202, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .dashboard_index.manager #dashboard-m-messages-table td:nth-of-type(3):before, .dashboard_app_c_inbox.manager #dashboard-m-messages-table td:nth-of-type(3):before, .dashboard_app_c_invoices.manager #dashboard-m-messages-table td:nth-of-type(3):before, .dashboard_app_c_reports.manager #dashboard-m-messages-table td:nth-of-type(3):before, .dashboard_app_c_booking_calendar.manager #dashboard-m-messages-table td:nth-of-type(3):before {
    content: "From";
  }
  /* line 203, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .dashboard_index.manager #dashboard-m-messages-table td:nth-of-type(4):before, .dashboard_app_c_inbox.manager #dashboard-m-messages-table td:nth-of-type(4):before, .dashboard_app_c_invoices.manager #dashboard-m-messages-table td:nth-of-type(4):before, .dashboard_app_c_reports.manager #dashboard-m-messages-table td:nth-of-type(4):before, .dashboard_app_c_booking_calendar.manager #dashboard-m-messages-table td:nth-of-type(4):before {
    content: "To";
  }
  /* line 204, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .dashboard_index.manager #dashboard-m-messages-table td:nth-of-type(5):before, .dashboard_app_c_inbox.manager #dashboard-m-messages-table td:nth-of-type(5):before, .dashboard_app_c_invoices.manager #dashboard-m-messages-table td:nth-of-type(5):before, .dashboard_app_c_reports.manager #dashboard-m-messages-table td:nth-of-type(5):before, .dashboard_app_c_booking_calendar.manager #dashboard-m-messages-table td:nth-of-type(5):before {
    content: "Date";
  }
  /* line 209, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .dashboard_index.reporter #dashboard-i-assignments-table td:nth-of-type(1):before, .dashboard_app_c_inbox.reporter #dashboard-i-assignments-table td:nth-of-type(1):before, .dashboard_app_c_invoices.reporter #dashboard-i-assignments-table td:nth-of-type(1):before, .dashboard_app_c_reports.reporter #dashboard-i-assignments-table td:nth-of-type(1):before, .dashboard_app_c_booking_calendar.reporter #dashboard-i-assignments-table td:nth-of-type(1):before {
    content: "Client";
  }
  /* line 210, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .dashboard_index.reporter #dashboard-i-assignments-table td:nth-of-type(2):before, .dashboard_app_c_inbox.reporter #dashboard-i-assignments-table td:nth-of-type(2):before, .dashboard_app_c_invoices.reporter #dashboard-i-assignments-table td:nth-of-type(2):before, .dashboard_app_c_reports.reporter #dashboard-i-assignments-table td:nth-of-type(2):before, .dashboard_app_c_booking_calendar.reporter #dashboard-i-assignments-table td:nth-of-type(2):before {
    content: "Site";
  }
  /* line 211, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .dashboard_index.reporter #dashboard-i-assignments-table td:nth-of-type(3):before, .dashboard_app_c_inbox.reporter #dashboard-i-assignments-table td:nth-of-type(3):before, .dashboard_app_c_invoices.reporter #dashboard-i-assignments-table td:nth-of-type(3):before, .dashboard_app_c_reports.reporter #dashboard-i-assignments-table td:nth-of-type(3):before, .dashboard_app_c_booking_calendar.reporter #dashboard-i-assignments-table td:nth-of-type(3):before {
    content: "QRID";
  }
  /* line 212, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .dashboard_index.reporter #dashboard-i-assignments-table td:nth-of-type(4):before, .dashboard_app_c_inbox.reporter #dashboard-i-assignments-table td:nth-of-type(4):before, .dashboard_app_c_invoices.reporter #dashboard-i-assignments-table td:nth-of-type(4):before, .dashboard_app_c_reports.reporter #dashboard-i-assignments-table td:nth-of-type(4):before, .dashboard_app_c_booking_calendar.reporter #dashboard-i-assignments-table td:nth-of-type(4):before {
    content: "Start at";
  }
  /* line 213, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .dashboard_index.reporter #dashboard-i-assignments-table td:nth-of-type(5):before, .dashboard_app_c_inbox.reporter #dashboard-i-assignments-table td:nth-of-type(5):before, .dashboard_app_c_invoices.reporter #dashboard-i-assignments-table td:nth-of-type(5):before, .dashboard_app_c_reports.reporter #dashboard-i-assignments-table td:nth-of-type(5):before, .dashboard_app_c_booking_calendar.reporter #dashboard-i-assignments-table td:nth-of-type(5):before {
    content: "Status";
  }
  /* line 214, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .dashboard_index.reporter #dashboard-i-assignments-table td:nth-of-type(6):before, .dashboard_app_c_inbox.reporter #dashboard-i-assignments-table td:nth-of-type(6):before, .dashboard_app_c_invoices.reporter #dashboard-i-assignments-table td:nth-of-type(6):before, .dashboard_app_c_reports.reporter #dashboard-i-assignments-table td:nth-of-type(6):before, .dashboard_app_c_booking_calendar.reporter #dashboard-i-assignments-table td:nth-of-type(6):before {
    content: "";
  }
  /* line 217, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .dashboard_index.reporter #dashboard-i-reports-table td:nth-of-type(1):before, .dashboard_app_c_inbox.reporter #dashboard-i-reports-table td:nth-of-type(1):before, .dashboard_app_c_invoices.reporter #dashboard-i-reports-table td:nth-of-type(1):before, .dashboard_app_c_reports.reporter #dashboard-i-reports-table td:nth-of-type(1):before, .dashboard_app_c_booking_calendar.reporter #dashboard-i-reports-table td:nth-of-type(1):before {
    content: "Client";
  }
  /* line 218, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .dashboard_index.reporter #dashboard-i-reports-table td:nth-of-type(2):before, .dashboard_app_c_inbox.reporter #dashboard-i-reports-table td:nth-of-type(2):before, .dashboard_app_c_invoices.reporter #dashboard-i-reports-table td:nth-of-type(2):before, .dashboard_app_c_reports.reporter #dashboard-i-reports-table td:nth-of-type(2):before, .dashboard_app_c_booking_calendar.reporter #dashboard-i-reports-table td:nth-of-type(2):before {
    content: "Site";
  }
  /* line 219, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .dashboard_index.reporter #dashboard-i-reports-table td:nth-of-type(3):before, .dashboard_app_c_inbox.reporter #dashboard-i-reports-table td:nth-of-type(3):before, .dashboard_app_c_invoices.reporter #dashboard-i-reports-table td:nth-of-type(3):before, .dashboard_app_c_reports.reporter #dashboard-i-reports-table td:nth-of-type(3):before, .dashboard_app_c_booking_calendar.reporter #dashboard-i-reports-table td:nth-of-type(3):before {
    content: "QRID";
  }
  /* line 220, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .dashboard_index.reporter #dashboard-i-reports-table td:nth-of-type(4):before, .dashboard_app_c_inbox.reporter #dashboard-i-reports-table td:nth-of-type(4):before, .dashboard_app_c_invoices.reporter #dashboard-i-reports-table td:nth-of-type(4):before, .dashboard_app_c_reports.reporter #dashboard-i-reports-table td:nth-of-type(4):before, .dashboard_app_c_booking_calendar.reporter #dashboard-i-reports-table td:nth-of-type(4):before {
    content: "Submitted";
  }
  /* line 221, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .dashboard_index.reporter #dashboard-i-reports-table td:nth-of-type(5):before, .dashboard_app_c_inbox.reporter #dashboard-i-reports-table td:nth-of-type(5):before, .dashboard_app_c_invoices.reporter #dashboard-i-reports-table td:nth-of-type(5):before, .dashboard_app_c_reports.reporter #dashboard-i-reports-table td:nth-of-type(5):before, .dashboard_app_c_booking_calendar.reporter #dashboard-i-reports-table td:nth-of-type(5):before {
    content: "Actions";
  }
  /* line 226, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .dashboard_index.client #dashboard-c-reports-table td:nth-of-type(1):before, .dashboard_app_c_inbox.client #dashboard-c-reports-table td:nth-of-type(1):before, .dashboard_app_c_invoices.client #dashboard-c-reports-table td:nth-of-type(1):before, .dashboard_app_c_reports.client #dashboard-c-reports-table td:nth-of-type(1):before, .dashboard_app_c_booking_calendar.client #dashboard-c-reports-table td:nth-of-type(1):before {
    content: "Reporter";
  }
  /* line 227, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .dashboard_index.client #dashboard-c-reports-table td:nth-of-type(2):before, .dashboard_app_c_inbox.client #dashboard-c-reports-table td:nth-of-type(2):before, .dashboard_app_c_invoices.client #dashboard-c-reports-table td:nth-of-type(2):before, .dashboard_app_c_reports.client #dashboard-c-reports-table td:nth-of-type(2):before, .dashboard_app_c_booking_calendar.client #dashboard-c-reports-table td:nth-of-type(2):before {
    content: "Site";
  }
  /* line 228, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .dashboard_index.client #dashboard-c-reports-table td:nth-of-type(3):before, .dashboard_app_c_inbox.client #dashboard-c-reports-table td:nth-of-type(3):before, .dashboard_app_c_invoices.client #dashboard-c-reports-table td:nth-of-type(3):before, .dashboard_app_c_reports.client #dashboard-c-reports-table td:nth-of-type(3):before, .dashboard_app_c_booking_calendar.client #dashboard-c-reports-table td:nth-of-type(3):before {
    content: "QRID";
  }
  /* line 229, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .dashboard_index.client #dashboard-c-reports-table td:nth-of-type(4):before, .dashboard_app_c_inbox.client #dashboard-c-reports-table td:nth-of-type(4):before, .dashboard_app_c_invoices.client #dashboard-c-reports-table td:nth-of-type(4):before, .dashboard_app_c_reports.client #dashboard-c-reports-table td:nth-of-type(4):before, .dashboard_app_c_booking_calendar.client #dashboard-c-reports-table td:nth-of-type(4):before {
    content: "Submitted";
  }
  /* line 230, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .dashboard_index.client #dashboard-c-reports-table td:nth-of-type(5):before, .dashboard_app_c_inbox.client #dashboard-c-reports-table td:nth-of-type(5):before, .dashboard_app_c_invoices.client #dashboard-c-reports-table td:nth-of-type(5):before, .dashboard_app_c_reports.client #dashboard-c-reports-table td:nth-of-type(5):before, .dashboard_app_c_booking_calendar.client #dashboard-c-reports-table td:nth-of-type(5):before {
    content: "Latest Comments";
  }
  /* line 231, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .dashboard_index.client #dashboard-c-reports-table td:nth-of-type(6):before, .dashboard_app_c_inbox.client #dashboard-c-reports-table td:nth-of-type(6):before, .dashboard_app_c_invoices.client #dashboard-c-reports-table td:nth-of-type(6):before, .dashboard_app_c_reports.client #dashboard-c-reports-table td:nth-of-type(6):before, .dashboard_app_c_booking_calendar.client #dashboard-c-reports-table td:nth-of-type(6):before {
    content: "Actions";
  }
  /* line 234, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .dashboard_index.client #dashboard-c-occupancies-table td:nth-of-type(1):before, .dashboard_app_c_inbox.client #dashboard-c-occupancies-table td:nth-of-type(1):before, .dashboard_app_c_invoices.client #dashboard-c-occupancies-table td:nth-of-type(1):before, .dashboard_app_c_reports.client #dashboard-c-occupancies-table td:nth-of-type(1):before, .dashboard_app_c_booking_calendar.client #dashboard-c-occupancies-table td:nth-of-type(1):before {
    content: "Status";
  }
  /* line 235, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .dashboard_index.client #dashboard-c-occupancies-table td:nth-of-type(2):before, .dashboard_app_c_inbox.client #dashboard-c-occupancies-table td:nth-of-type(2):before, .dashboard_app_c_invoices.client #dashboard-c-occupancies-table td:nth-of-type(2):before, .dashboard_app_c_reports.client #dashboard-c-occupancies-table td:nth-of-type(2):before, .dashboard_app_c_booking_calendar.client #dashboard-c-occupancies-table td:nth-of-type(2):before {
    content: "Arrival";
  }
  /* line 236, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .dashboard_index.client #dashboard-c-occupancies-table td:nth-of-type(3):before, .dashboard_app_c_inbox.client #dashboard-c-occupancies-table td:nth-of-type(3):before, .dashboard_app_c_invoices.client #dashboard-c-occupancies-table td:nth-of-type(3):before, .dashboard_app_c_reports.client #dashboard-c-occupancies-table td:nth-of-type(3):before, .dashboard_app_c_booking_calendar.client #dashboard-c-occupancies-table td:nth-of-type(3):before {
    content: "Departure";
  }
  /* line 237, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .dashboard_index.client #dashboard-c-occupancies-table td:nth-of-type(4):before, .dashboard_app_c_inbox.client #dashboard-c-occupancies-table td:nth-of-type(4):before, .dashboard_app_c_invoices.client #dashboard-c-occupancies-table td:nth-of-type(4):before, .dashboard_app_c_reports.client #dashboard-c-occupancies-table td:nth-of-type(4):before, .dashboard_app_c_booking_calendar.client #dashboard-c-occupancies-table td:nth-of-type(4):before {
    content: "Site";
  }
  /* line 238, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .dashboard_index.client #dashboard-c-occupancies-table td:nth-of-type(5):before, .dashboard_app_c_inbox.client #dashboard-c-occupancies-table td:nth-of-type(5):before, .dashboard_app_c_invoices.client #dashboard-c-occupancies-table td:nth-of-type(5):before, .dashboard_app_c_reports.client #dashboard-c-occupancies-table td:nth-of-type(5):before, .dashboard_app_c_booking_calendar.client #dashboard-c-occupancies-table td:nth-of-type(5):before {
    content: "Occupants";
  }
  /* line 239, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .dashboard_index.client #dashboard-c-occupancies-table td:nth-of-type(6):before, .dashboard_app_c_inbox.client #dashboard-c-occupancies-table td:nth-of-type(6):before, .dashboard_app_c_invoices.client #dashboard-c-occupancies-table td:nth-of-type(6):before, .dashboard_app_c_reports.client #dashboard-c-occupancies-table td:nth-of-type(6):before, .dashboard_app_c_booking_calendar.client #dashboard-c-occupancies-table td:nth-of-type(6):before {
    content: "Comments";
  }
  /* line 240, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .dashboard_index.client #dashboard-c-occupancies-table td:nth-of-type(7):before, .dashboard_app_c_inbox.client #dashboard-c-occupancies-table td:nth-of-type(7):before, .dashboard_app_c_invoices.client #dashboard-c-occupancies-table td:nth-of-type(7):before, .dashboard_app_c_reports.client #dashboard-c-occupancies-table td:nth-of-type(7):before, .dashboard_app_c_booking_calendar.client #dashboard-c-occupancies-table td:nth-of-type(7):before {
    content: "Actions";
  }
  /* line 243, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .dashboard_index.client #dashboard-c-inbox-table td:nth-of-type(1):before, .dashboard_app_c_inbox.client #dashboard-c-inbox-table td:nth-of-type(1):before, .dashboard_app_c_invoices.client #dashboard-c-inbox-table td:nth-of-type(1):before, .dashboard_app_c_reports.client #dashboard-c-inbox-table td:nth-of-type(1):before, .dashboard_app_c_booking_calendar.client #dashboard-c-inbox-table td:nth-of-type(1):before {
    content: "Status";
  }
  /* line 244, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .dashboard_index.client #dashboard-c-inbox-table td:nth-of-type(2):before, .dashboard_app_c_inbox.client #dashboard-c-inbox-table td:nth-of-type(2):before, .dashboard_app_c_invoices.client #dashboard-c-inbox-table td:nth-of-type(2):before, .dashboard_app_c_reports.client #dashboard-c-inbox-table td:nth-of-type(2):before, .dashboard_app_c_booking_calendar.client #dashboard-c-inbox-table td:nth-of-type(2):before {
    content: "Manager";
  }
  /* line 245, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .dashboard_index.client #dashboard-c-inbox-table td:nth-of-type(3):before, .dashboard_app_c_inbox.client #dashboard-c-inbox-table td:nth-of-type(3):before, .dashboard_app_c_invoices.client #dashboard-c-inbox-table td:nth-of-type(3):before, .dashboard_app_c_reports.client #dashboard-c-inbox-table td:nth-of-type(3):before, .dashboard_app_c_booking_calendar.client #dashboard-c-inbox-table td:nth-of-type(3):before {
    content: "Message";
  }
  /* line 246, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .dashboard_index.client #dashboard-c-inbox-table td:nth-of-type(4):before, .dashboard_app_c_inbox.client #dashboard-c-inbox-table td:nth-of-type(4):before, .dashboard_app_c_invoices.client #dashboard-c-inbox-table td:nth-of-type(4):before, .dashboard_app_c_reports.client #dashboard-c-inbox-table td:nth-of-type(4):before, .dashboard_app_c_booking_calendar.client #dashboard-c-inbox-table td:nth-of-type(4):before {
    content: "Date";
  }
  /* line 249, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .dashboard_index.client #dashboard-c-messages-table td:nth-of-type(1):before, .dashboard_app_c_inbox.client #dashboard-c-messages-table td:nth-of-type(1):before, .dashboard_app_c_invoices.client #dashboard-c-messages-table td:nth-of-type(1):before, .dashboard_app_c_reports.client #dashboard-c-messages-table td:nth-of-type(1):before, .dashboard_app_c_booking_calendar.client #dashboard-c-messages-table td:nth-of-type(1):before {
    content: "Subject";
  }
  /* line 250, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .dashboard_index.client #dashboard-c-messages-table td:nth-of-type(2):before, .dashboard_app_c_inbox.client #dashboard-c-messages-table td:nth-of-type(2):before, .dashboard_app_c_invoices.client #dashboard-c-messages-table td:nth-of-type(2):before, .dashboard_app_c_reports.client #dashboard-c-messages-table td:nth-of-type(2):before, .dashboard_app_c_booking_calendar.client #dashboard-c-messages-table td:nth-of-type(2):before {
    content: "Message";
  }
  /* line 251, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .dashboard_index.client #dashboard-c-messages-table td:nth-of-type(3):before, .dashboard_app_c_inbox.client #dashboard-c-messages-table td:nth-of-type(3):before, .dashboard_app_c_invoices.client #dashboard-c-messages-table td:nth-of-type(3):before, .dashboard_app_c_reports.client #dashboard-c-messages-table td:nth-of-type(3):before, .dashboard_app_c_booking_calendar.client #dashboard-c-messages-table td:nth-of-type(3):before {
    content: "From";
  }
  /* line 252, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .dashboard_index.client #dashboard-c-messages-table td:nth-of-type(4):before, .dashboard_app_c_inbox.client #dashboard-c-messages-table td:nth-of-type(4):before, .dashboard_app_c_invoices.client #dashboard-c-messages-table td:nth-of-type(4):before, .dashboard_app_c_reports.client #dashboard-c-messages-table td:nth-of-type(4):before, .dashboard_app_c_booking_calendar.client #dashboard-c-messages-table td:nth-of-type(4):before {
    content: "Date";
  }
  /* line 255, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .dashboard_index.client #dashboard-c-invoices-table td:nth-of-type(1):before, .dashboard_app_c_inbox.client #dashboard-c-invoices-table td:nth-of-type(1):before, .dashboard_app_c_invoices.client #dashboard-c-invoices-table td:nth-of-type(1):before, .dashboard_app_c_reports.client #dashboard-c-invoices-table td:nth-of-type(1):before, .dashboard_app_c_booking_calendar.client #dashboard-c-invoices-table td:nth-of-type(1):before {
    content: "Invoice Number";
  }
  /* line 256, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .dashboard_index.client #dashboard-c-invoices-table td:nth-of-type(2):before, .dashboard_app_c_inbox.client #dashboard-c-invoices-table td:nth-of-type(2):before, .dashboard_app_c_invoices.client #dashboard-c-invoices-table td:nth-of-type(2):before, .dashboard_app_c_reports.client #dashboard-c-invoices-table td:nth-of-type(2):before, .dashboard_app_c_booking_calendar.client #dashboard-c-invoices-table td:nth-of-type(2):before {
    content: "Issued on";
  }
  /* line 257, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .dashboard_index.client #dashboard-c-invoices-table td:nth-of-type(3):before, .dashboard_app_c_inbox.client #dashboard-c-invoices-table td:nth-of-type(3):before, .dashboard_app_c_invoices.client #dashboard-c-invoices-table td:nth-of-type(3):before, .dashboard_app_c_reports.client #dashboard-c-invoices-table td:nth-of-type(3):before, .dashboard_app_c_booking_calendar.client #dashboard-c-invoices-table td:nth-of-type(3):before {
    content: "Due date";
  }
  /* line 258, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .dashboard_index.client #dashboard-c-invoices-table td:nth-of-type(4):before, .dashboard_app_c_inbox.client #dashboard-c-invoices-table td:nth-of-type(4):before, .dashboard_app_c_invoices.client #dashboard-c-invoices-table td:nth-of-type(4):before, .dashboard_app_c_reports.client #dashboard-c-invoices-table td:nth-of-type(4):before, .dashboard_app_c_booking_calendar.client #dashboard-c-invoices-table td:nth-of-type(4):before {
    content: "Balance";
  }
  /* line 263, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .qrids_index td:nth-of-type(1):before {
    content: "QRID";
  }
  /* line 264, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .qrids_index td:nth-of-type(2):before {
    content: "Site";
  }
  /* line 265, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .qrids_index td:nth-of-type(3):before {
    content: "Client";
  }
  /* line 266, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .qrids_index td:nth-of-type(4):before {
    content: "Client Type";
  }
  /* line 267, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .qrids_index td:nth-of-type(5):before {
    content: "City";
  }
  /* line 268, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .qrids_index td:nth-of-type(6):before {
    content: "Zone";
  }
  /* line 269, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .qrids_index td:nth-of-type(7):before {
    content: "Work Type";
  }
  /* line 270, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .qrids_index td:nth-of-type(8):before {
    content: "Repeat";
  }
  /* line 271, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .qrids_index td:nth-of-type(9):before {
    content: "Next Assigned";
  }
  /* line 272, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .qrids_index td:nth-of-type(10):before {
    content: "Overdue";
  }
  /* line 273, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .qrids_index td:nth-of-type(11):before {
    content: "Actions";
  }
  /* line 279, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .reports_index.manager .datatable td:nth-of-type(1):before {
    content: "Status";
  }
  /* line 280, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .reports_index.manager .datatable td:nth-of-type(2):before {
    content: "Flagged";
  }
  /* line 281, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .reports_index.manager .datatable td:nth-of-type(3):before {
    content: "Id";
  }
  /* line 282, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .reports_index.manager .datatable td:nth-of-type(4):before {
    content: "QRID";
  }
  /* line 283, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .reports_index.manager .datatable td:nth-of-type(5):before {
    content: "Reporter";
  }
  /* line 284, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .reports_index.manager .datatable td:nth-of-type(6):before {
    content: "Site";
  }
  /* line 285, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .reports_index.manager .datatable td:nth-of-type(7):before {
    content: "Client";
  }
  /* line 286, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .reports_index.manager .datatable td:nth-of-type(8):before {
    content: "Work Type";
  }
  /* line 287, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .reports_index.manager .datatable td:nth-of-type(9):before {
    content: "Reason";
  }
  /* line 288, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .reports_index.manager .datatable td:nth-of-type(10):before {
    content: "Invoice";
  }
  /* line 289, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .reports_index.manager .datatable td:nth-of-type(11):before {
    content: "Completed";
  }
  /* line 290, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .reports_index.manager .datatable td:nth-of-type(12):before {
    content: "Latest Comments";
  }
  /* line 291, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .reports_index.manager .datatable td:nth-of-type(13):before {
    content: "Actions";
  }
  /* line 295, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .reports_index.inspector td:nth-of-type(1):before {
    content: "Status";
  }
  /* line 296, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .reports_index.inspector td:nth-of-type(2):before {
    content: "Flagged";
  }
  /* line 297, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .reports_index.inspector td:nth-of-type(3):before {
    content: "QRID";
  }
  /* line 298, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .reports_index.inspector td:nth-of-type(4):before {
    content: "Site Name";
  }
  /* line 299, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .reports_index.inspector td:nth-of-type(5):before {
    content: "Work Type";
  }
  /* line 300, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .reports_index.inspector td:nth-of-type(6):before {
    content: "Submitted";
  }
  /* line 301, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .reports_index.inspector td:nth-of-type(7):before {
    content: "EST.";
  }
  /* line 302, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .reports_index.inspector td:nth-of-type(8):before {
    content: "Logged";
  }
  /* line 303, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .reports_index.inspector td:nth-of-type(9):before {
    content: "Actions";
  }
  /* line 307, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .time_index td:nth-of-type(1):before {
    content: "Reporter Name";
  }
  /* line 308, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .time_index td:nth-of-type(2):before {
    content: "Base zone";
  }
  /* line 309, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .time_index td:nth-of-type(3):before {
    content: "Last report at";
  }
  /* line 310, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .time_index td:nth-of-type(4):before {
    content: "Time This Week";
  }
  /* line 311, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .time_index td:nth-of-type(5):before {
    content: "Time This Month";
  }
  /* line 312, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .time_index td:nth-of-type(6):before {
    content: "Actions";
  }
  /* line 315, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .sites_index td:nth-of-type(1):before {
    content: "Id";
  }
  /* line 316, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .sites_index td:nth-of-type(2):before {
    content: "Site";
  }
  /* line 317, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .sites_index td:nth-of-type(3):before {
    content: "Client";
  }
  /* line 318, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .sites_index td:nth-of-type(4):before {
    content: "Client Type";
  }
  /* line 319, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .sites_index td:nth-of-type(5):before {
    content: "City";
  }
  /* line 320, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .sites_index td:nth-of-type(6):before {
    content: "Zone";
  }
  /* line 321, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .sites_index td:nth-of-type(7):before {
    content: "QRID";
  }
  /* line 322, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .sites_index td:nth-of-type(8):before {
    content: "Next Occupancy";
  }
  /* line 323, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .sites_index td:nth-of-type(9):before {
    content: "Actions";
  }
  /* line 327, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .site_occupancies_index .datatable td:nth-of-type(1):before {
    content: "Status";
  }
  /* line 328, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .site_occupancies_index .datatable td:nth-of-type(2):before {
    content: "Arrival";
  }
  /* line 329, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .site_occupancies_index .datatable td:nth-of-type(3):before {
    content: "Departure";
  }
  /* line 330, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .site_occupancies_index .datatable td:nth-of-type(4):before {
    content: "Site";
  }
  /* line 331, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .site_occupancies_index .datatable td:nth-of-type(5):before {
    content: "Client";
  }
  /* line 332, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .site_occupancies_index .datatable td:nth-of-type(6):before {
    content: "Occupants";
  }
  /* line 333, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .site_occupancies_index .datatable td:nth-of-type(7):before {
    content: "Comments";
  }
  /* line 334, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .site_occupancies_index .datatable td:nth-of-type(8):before {
    content: "Assignments";
  }
  /* line 335, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .site_occupancies_index .datatable td:nth-of-type(9):before {
    content: "Actions";
  }
  /* line 339, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .users_index td:nth-of-type(1):before {
    content: "Status";
  }
  /* line 340, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .users_index td:nth-of-type(2):before {
    content: "Id";
  }
  /* line 341, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .users_index td:nth-of-type(3):before {
    content: "Name";
  }
  /* line 342, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .users_index td:nth-of-type(4):before {
    content: "Role";
  }
  /* line 343, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .users_index td:nth-of-type(5):before {
    content: "Base zone";
  }
  /* line 344, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .users_index td:nth-of-type(6):before {
    content: "Worked This Week";
  }
  /* line 345, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .users_index td:nth-of-type(7):before {
    content: "Actions";
  }
  /* line 349, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .sites_show #qrids td:nth-of-type(1):before {
    content: "Name";
  }
  /* line 350, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .sites_show #qrids td:nth-of-type(2):before {
    content: "Work type";
  }
  /* line 351, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .sites_show #qrids td:nth-of-type(3):before {
    content: "Repeat";
  }
  /* line 352, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .sites_show #qrids td:nth-of-type(4):before {
    content: "Next Assigned";
  }
  /* line 353, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .sites_show #qrids td:nth-of-type(5):before {
    content: "Overdue";
  }
  /* line 354, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .sites_show #qrids td:nth-of-type(6):before {
    content: "Actions";
  }
  /* line 357, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .sites_show #occupancies td:nth-of-type(1):before {
    content: "Status";
  }
  /* line 358, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .sites_show #occupancies td:nth-of-type(2):before {
    content: "Arrival";
  }
  /* line 359, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .sites_show #occupancies td:nth-of-type(3):before {
    content: "Departure";
  }
  /* line 360, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .sites_show #occupancies td:nth-of-type(4):before {
    content: "Occupants";
  }
  /* line 361, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .sites_show #occupancies td:nth-of-type(5):before {
    content: "Comments";
  }
  /* line 362, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .sites_show #occupancies td:nth-of-type(6):before {
    content: "Assignments";
  }
  /* line 363, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .sites_show #occupancies td:nth-of-type(7):before {
    content: "Actions";
  }
  /* line 368, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .site_occupancies_show #assignments td:nth-of-type(1):before {
    content: "Start at";
  }
  /* line 369, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .site_occupancies_show #assignments td:nth-of-type(2):before {
    content: "End at";
  }
  /* line 370, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .site_occupancies_show #assignments td:nth-of-type(3):before {
    content: "Assignee";
  }
  /* line 371, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .site_occupancies_show #assignments td:nth-of-type(4):before {
    content: "QRID";
  }
  /* line 372, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .site_occupancies_show #assignments td:nth-of-type(5):before {
    content: "Status";
  }
  /* line 373, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .site_occupancies_show #assignments td:nth-of-type(6):before {
    content: "Comment";
  }
  /* line 377, app/assets/stylesheets/tenant/responsiveness.css.scss */
  #mobile_calendar td:nth-of-type(1):before {
    content: "Title";
  }
  /* line 378, app/assets/stylesheets/tenant/responsiveness.css.scss */
  #mobile_calendar td:nth-of-type(2):before {
    content: "Start At";
  }
  /* line 379, app/assets/stylesheets/tenant/responsiveness.css.scss */
  #mobile_calendar td:nth-of-type(3):before {
    content: "Site";
  }
  /* line 380, app/assets/stylesheets/tenant/responsiveness.css.scss */
  #mobile_calendar td:nth-of-type(4):before {
    content: "Assignee";
  }
  /* line 381, app/assets/stylesheets/tenant/responsiveness.css.scss */
  #mobile_calendar td:nth-of-type(5):before {
    content: "WorkType";
  }
  /* line 382, app/assets/stylesheets/tenant/responsiveness.css.scss */
  #mobile_calendar td:nth-of-type(6):before {
    content: "Status";
  }
  /* line 385, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .zones_index td:nth-of-type(1):before {
    content: "Name";
  }
  /* line 386, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .zones_index td:nth-of-type(2):before {
    content: "Cities & Subzones";
  }
  /* line 387, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .zones_index td:nth-of-type(3):before {
    content: "Status";
  }
  /* line 388, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .zones_index td:nth-of-type(4):before {
    content: "Actions";
  }
  /* line 391, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .my_reports_index .bootstrap-datatable td:nth-of-type(1):before {
    content: "QRID";
  }
  /* line 392, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .my_reports_index .bootstrap-datatable td:nth-of-type(2):before {
    content: "Site";
  }
  /* line 393, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .my_reports_index .bootstrap-datatable td:nth-of-type(3):before {
    content: "Client Type";
  }
  /* line 394, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .my_reports_index .bootstrap-datatable td:nth-of-type(4):before {
    content: "Work Type";
  }
  /* line 395, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .my_reports_index .bootstrap-datatable td:nth-of-type(5):before {
    content: "Reason";
  }
  /* line 396, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .my_reports_index .bootstrap-datatable td:nth-of-type(6):before {
    content: "Started at";
  }
  /* line 397, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .my_reports_index .bootstrap-datatable td:nth-of-type(7):before {
    content: "Finished at";
  }
  /* line 398, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .my_reports_index .bootstrap-datatable td:nth-of-type(8):before {
    content: "Actions";
  }
  /* line 401, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .c_reports_index .bootstrap-datatable td:nth-of-type(1):before {
    content: "Read";
  }
  /* line 402, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .c_reports_index .bootstrap-datatable td:nth-of-type(2):before {
    content: "Flagged";
  }
  /* line 403, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .c_reports_index .bootstrap-datatable td:nth-of-type(3):before {
    content: "QRID";
  }
  /* line 404, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .c_reports_index .bootstrap-datatable td:nth-of-type(4):before {
    content: "Site";
  }
  /* line 405, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .c_reports_index .bootstrap-datatable td:nth-of-type(5):before {
    content: "Work Type";
  }
  /* line 406, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .c_reports_index .bootstrap-datatable td:nth-of-type(6):before {
    content: "Completed";
  }
  /* line 407, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .c_reports_index .bootstrap-datatable td:nth-of-type(7):before {
    content: "Sent";
  }
  /* line 408, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .c_reports_index .bootstrap-datatable td:nth-of-type(8):before {
    content: "Replied";
  }
  /* line 409, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .c_reports_index .bootstrap-datatable td:nth-of-type(9):before {
    content: "Latest Comments";
  }
  /* line 410, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .c_reports_index .bootstrap-datatable td:nth-of-type(10):before {
    content: "Quick Actions";
  }
  /* line 413, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .my_sites_index .bootstrap-datatable td:nth-of-type(1):before {
    content: "Site";
  }
  /* line 414, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .my_sites_index .bootstrap-datatable td:nth-of-type(2):before {
    content: "City";
  }
  /* line 415, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .my_sites_index .bootstrap-datatable td:nth-of-type(3):before {
    content: "Zone";
  }
  /* line 416, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .my_sites_index .bootstrap-datatable td:nth-of-type(4):before {
    content: "Address";
  }
  /* line 417, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .my_sites_index .bootstrap-datatable td:nth-of-type(5):before {
    content: "QRID";
  }
  /* line 418, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .my_sites_index .bootstrap-datatable td:nth-of-type(6):before {
    content: "Other Owners";
  }
  /* line 419, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .my_sites_index .bootstrap-datatable td:nth-of-type(7):before {
    content: "Quick Actions";
  }
  /* line 424, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .line_items_show.client td:nth-of-type(1):before {
    content: "Item";
  }
  /* line 425, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .line_items_show.client td:nth-of-type(2):before {
    content: "Description";
  }
  /* line 426, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .line_items_show.client td:nth-of-type(3):before {
    content: "Rate";
  }
  /* line 427, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .line_items_show.client td:nth-of-type(4):before {
    content: "Qty";
  }
  /* line 428, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .line_items_show.client td:nth-of-type(5):before {
    content: "Tax Code";
  }
  /* line 429, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .line_items_show.client td:nth-of-type(6):before {
    content: "Line Total";
  }
  /* line 430, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .line_items_show.client td:nth-of-type(7):before {
    content: "Type";
  }
  /* line 436, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .line_items_show_notes.client td:nth-of-type(1):before {
    content: "Item";
  }
  /* line 437, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .line_items_show_notes.client td:nth-of-type(2):before {
    content: "Description";
  }
  /* line 438, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .line_items_show_notes.client td:nth-of-type(3):before {
    content: "Notes";
  }
  /* line 439, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .line_items_show_notes.client td:nth-of-type(4):before {
    content: "Rate";
  }
  /* line 440, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .line_items_show_notes.client td:nth-of-type(5):before {
    content: "Qty";
  }
  /* line 441, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .line_items_show_notes.client td:nth-of-type(6):before {
    content: "Tax Code";
  }
  /* line 442, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .line_items_show_notes.client td:nth-of-type(7):before {
    content: "Line Total";
  }
  /* line 443, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .line_items_show_notes.client td:nth-of-type(8):before {
    content: "Type";
  }
  /* line 449, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .invoice_payments_show.client td:nth-of-type(1):before {
    content: "Date";
  }
  /* line 450, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .invoice_payments_show.client td:nth-of-type(2):before {
    content: "Amount";
  }
  /* line 451, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .invoice_payments_show.client td:nth-of-type(3):before {
    content: "Reference Number";
  }
  /* line 452, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .invoice_payments_show.client td:nth-of-type(4):before {
    content: "Method";
  }
  /* line 453, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .invoice_payments_show.client td:nth-of-type(5):before {
    content: "Quick Actions";
  }
  /* line 459, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .invoice_refunds_show.client td:nth-of-type(1):before {
    content: "Date";
  }
  /* line 460, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .invoice_refunds_show.client td:nth-of-type(2):before {
    content: "Amount";
  }
  /* line 461, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .invoice_refunds_show.client td:nth-of-type(3):before {
    content: "Reference Number";
  }
  /* line 462, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .invoice_refunds_show.client td:nth-of-type(4):before {
    content: "Method";
  }
  /* line 463, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .invoice_refunds_show.client td:nth-of-type(5):before {
    content: "Description";
  }
  /* line 469, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .invoice_debits_show.client td:nth-of-type(1):before {
    content: "Date";
  }
  /* line 470, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .invoice_debits_show.client td:nth-of-type(2):before {
    content: "Amount";
  }
  /* line 471, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .invoice_debits_show.client td:nth-of-type(3):before {
    content: "Reference";
  }
  /* line 476, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .report-comments td:nth-of-type(1):before {
    content: "Author";
  }
  /* line 477, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .report-comments td:nth-of-type(2):before {
    content: "Comment";
  }
  /* line 478, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .report-comments td:nth-of-type(3):before {
    content: "Sent";
  }
  /* line 479, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .report-comments td:nth-of-type(4):before {
    content: "Quick Actions";
  }
  /* line 483, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .site-qrids td:nth-of-type(1):before {
    content: "Name";
  }
  /* line 484, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .site-qrids td:nth-of-type(2):before {
    content: "Address";
  }
  /* line 485, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .site-qrids td:nth-of-type(3):before {
    content: "City";
  }
  /* line 486, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .site-qrids td:nth-of-type(4):before {
    content: "Zone";
  }
  /* line 487, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .site-qrids td:nth-of-type(5):before {
    content: "Work Type";
  }
  /* line 488, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .site-qrids td:nth-of-type(6):before {
    content: "Quick Actions";
  }
  /* line 492, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .settings_client_billing td:nth-of-type(1):before {
    content: "Invoice";
  }
  /* line 493, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .settings_client_billing td:nth-of-type(2):before {
    content: "Method";
  }
  /* line 494, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .settings_client_billing td:nth-of-type(3):before {
    content: "Reference Number";
  }
  /* line 495, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .settings_client_billing td:nth-of-type(4):before {
    content: "Date";
  }
  /* line 496, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .settings_client_billing td:nth-of-type(5):before {
    content: "Amount";
  }
}

/*jira*/
/* Issue collector tweaks for smaller screens */
@media screen and (max-width: 740px) {
  /* line 502, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .atlwdg-popup {
    left: 0 !important;
    top: 0 !important;
    height: 100% !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }
}

@media only screen and (max-width: 480px) {
  /*menu*/
  /* line 513, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .navbar-default ul li {
    float: none;
  }
  /* line 516, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .secondary-menu {
    display: block !important;
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
  }
  /* line 521, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .secondary-menu li {
    display: list-item !important;
    padding-bottom: 4px !important;
  }
  /* line 524, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .secondary-menu li:hover {
    padding-bottom: 0 !important;
  }
  /* line 529, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .navbar-default .navbar-form .input-group {
    width: 100%;
  }
  /* line 532, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .navbar-default ul.dropdown-menu {
    width: 100%;
    min-width: 100%;
  }
}

@media only print {
  /* line 539, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .small_xs_print {
    display: initial;
  }
}

@media screen and (max-width: 768px) {
  /* line 542, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .small_xs_print {
    display: initial;
  }
}

@media screen and (min-width: 769px) {
  /* line 545, app/assets/stylesheets/tenant/responsiveness.css.scss */
  .small_xs_print {
    display: none;
  }
}

/* line 547, app/assets/stylesheets/tenant/responsiveness.css.scss */
.modal-body > img {
  max-width: 100%;
}

/* 8037808 */
/* line 2, app/assets/stylesheets/tenant/sortable-tree.css.scss */
.maticulating {
  visibility: hidden !important;
}

/* line 7, app/assets/stylesheets/tenant/sortable-tree.css.scss */
.sortable-tree ol, .static-tree ol {
  border-left: 1px dashed gray;
}

/* line 10, app/assets/stylesheets/tenant/sortable-tree.css.scss */
.sortable-tree .placeholder, .static-tree .placeholder {
  background-color: #EEF;
  border: 1px dashed blue;
}

/* line 14, app/assets/stylesheets/tenant/sortable-tree.css.scss */
.sortable-tree .ui-nestedSortable-error, .static-tree .ui-nestedSortable-error {
  background: #FAA;
  color: #8a1f11;
}

/* line 18, app/assets/stylesheets/tenant/sortable-tree.css.scss */
.sortable-tree .dd-handle, .static-tree .dd-handle {
  height: 27px;
  background: #4cae4c;
  float: left;
}

/* line 23, app/assets/stylesheets/tenant/sortable-tree.css.scss */
.sortable-tree .dd3-content.collapse-children .glyphicon-circle-arrow-up, .static-tree .dd3-content.collapse-children .glyphicon-circle-arrow-up {
  transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  /* IE 9 */
  -webkit-transform: rotate(180deg);
  /* Safari and Chrome */
}

/* line 28, app/assets/stylesheets/tenant/sortable-tree.css.scss */
.sortable-tree .dd3-content, .static-tree .dd3-content {
  height: auto;
  line-height: 29px;
  padding-right: 85px;
}

/* line 32, app/assets/stylesheets/tenant/sortable-tree.css.scss */
.sortable-tree .dd3-content.question, .static-tree .dd3-content.question {
  background-color: #f8f08c;
}

/* line 35, app/assets/stylesheets/tenant/sortable-tree.css.scss */
.sortable-tree .dd3-content.answer, .static-tree .dd3-content.answer {
  background-color: #d5fdd0;
}

/* line 38, app/assets/stylesheets/tenant/sortable-tree.css.scss */
.sortable-tree .dd3-content.comment, .static-tree .dd3-content.comment {
  background-color: #bce8f1;
}

/* line 41, app/assets/stylesheets/tenant/sortable-tree.css.scss */
.sortable-tree .dd3-content.photo, .static-tree .dd3-content.photo {
  background-color: #d0d5fd;
}

/* line 44, app/assets/stylesheets/tenant/sortable-tree.css.scss */
.sortable-tree .dd3-content.instructions, .static-tree .dd3-content.instructions {
  background-color: #fcc073;
}

/* line 48, app/assets/stylesheets/tenant/sortable-tree.css.scss */
.sortable-tree .dd3-content > span.active, .static-tree .dd3-content > span.active {
  font-weight: bold;
}

/* line 51, app/assets/stylesheets/tenant/sortable-tree.css.scss */
.sortable-tree .dd3-content > span.blocked, .static-tree .dd3-content > span.blocked {
  font-weight: normal;
  color: grey;
}

/* line 56, app/assets/stylesheets/tenant/sortable-tree.css.scss */
.sortable-tree .dd3-content .controls, .static-tree .dd3-content .controls {
  position: absolute;
  top: 2px;
  right: 2px;
}

/* line 61, app/assets/stylesheets/tenant/sortable-tree.css.scss */
.sortable-tree .dd3-content .controls .btn, .static-tree .dd3-content .controls .btn {
  margin: 1px;
}

/* line 67, app/assets/stylesheets/tenant/sortable-tree.css.scss */
.last-change > .dd3-content {
  border-color: green;
}

/* line 71, app/assets/stylesheets/tenant/sortable-tree.css.scss */
menu.nestable-menu {
  padding: 0;
  margin: 10px 0;
}

/* line 75, app/assets/stylesheets/tenant/sortable-tree.css.scss */
.dd-
.dd-checkbox {
  display: block;
  height: 30px;
  padding: 5px 8px;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
  overflow: hidden;
  border: 1px solid #c7cbd5;
  background: #c7cbd5;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

/* line 99, app/assets/stylesheets/tenant/sortable-tree.css.scss */
.dd-
.dd-checkbox:hover {
  color: #36a9e1;
  background: #383e4b;
}

/* line 104, app/assets/stylesheets/tenant/sortable-tree.css.scss */
.collapse-children + ol.dd-list {
  display: none !important;
}

/* line 108, app/assets/stylesheets/tenant/sortable-tree.css.scss */
ol.sortable-tree li.dd3-item div.dd3-content.group {
  background-color: #000;
  color: #FEF1F0;
}

/* line 113, app/assets/stylesheets/tenant/sortable-tree.css.scss */
ol.sortable-tree li.dd3-item ol.dd-list li.dd3-item div.dd3-content.group {
  background-color: #635c5c;
  color: #FEF1F0;
}

/* line 118, app/assets/stylesheets/tenant/sortable-tree.css.scss */
ol.sortable-tree li.dd3-item ol.dd-list li.dd3-item ol.dd-list li.dd3-item div.dd3-content.group {
  background-color: #908686;
  color: #FEF1F0;
}

/* line 123, app/assets/stylesheets/tenant/sortable-tree.css.scss */
.form-group-template-tasks .dd3-item > .dd-list > .dd3-item > .dd-list > .dd3-item > .dd-list > .dd3-item > .dd3-content.question .controls > .add-node[data-resource-type="Group"] {
  display: none;
}

/* line 127, app/assets/stylesheets/tenant/sortable-tree.css.scss */
.form-group-template-tasks .dd3-item > .dd-list > .dd3-item > .dd-list > .dd3-item > .dd-list > .dd3-item > .dd3-content.group .controls > .add-node[data-resource-type="Group"] {
  display: none;
}

/* line 131, app/assets/stylesheets/tenant/sortable-tree.css.scss */
.form-group-template-tasks .dd3-item > .dd-list > .dd3-item > .dd-list > .dd3-item > .dd-list > .dd3-item > .dd3-content.instructions .controls > .add-node[data-resource-type="Group"] {
  display: none;
}

/* line 135, app/assets/stylesheets/tenant/sortable-tree.css.scss */
.form-group-tasks .dd3-item > .dd-list > .dd3-item > .dd-list > .dd3-item > .dd-list > .dd3-item > .dd3-content.question.controls > .add-node[data-resource-type="Group"] {
  display: none;
}

/* line 139, app/assets/stylesheets/tenant/sortable-tree.css.scss */
.form-group-tasks .dd3-item > .dd-list > .dd3-item > .dd-list > .dd3-item > .dd-list > .dd3-item > .dd3-content.group .controls > .add-node[data-resource-type="Group"] {
  display: none;
}

/* line 143, app/assets/stylesheets/tenant/sortable-tree.css.scss */
.form-group-tasks .dd3-item > .dd-list > .dd3-item > .dd-list > .dd3-item > .dd-list > .dd3-item > .dd3-content.instructions .controls > .add-node[data-resource-type="Group"] {
  display: none;
}

/* line 1, app/assets/stylesheets/tenant/tooltip.css.scss */
.tooltip-inner {
  max-width: 300px;
  padding: 5px 8px;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  background-color: #000000;
  border-radius: 4px;
  font-weight: normal;
}

/* line 1, app/assets/stylesheets/tenant/user-import.css.scss */
.import-status {
  padding-top: 40px;
}

/* line 5, app/assets/stylesheets/tenant/user-import.css.scss */
.import-status.import-status-ongoing p {
  text-align: center;
}

/* line 9, app/assets/stylesheets/tenant/user-import.css.scss */
.import-status.import-status-ongoing .loading {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

/* line 39, app/assets/stylesheets/tenant/application.css.scss */
body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/*primary color*/
/* line 44, app/assets/stylesheets/tenant/application.css.scss */
.turbolinks-progress-bar {
  background-color: #00b2c0;
}

/* line 48, app/assets/stylesheets/tenant/application.css.scss */
.scroll_fix .optgroup {
  margin-right: -5px !important;
  margin-left: -5px !important;
}

/* line 52, app/assets/stylesheets/tenant/application.css.scss */
div.label {
  color: black;
}

/* line 56, app/assets/stylesheets/tenant/application.css.scss */
.modal {
  overflow: auto;
}

/* line 60, app/assets/stylesheets/tenant/application.css.scss */
input[type="radio"], input[type="checkbox"] {
  margin-left: 5px;
}

/* line 62, app/assets/stylesheets/tenant/application.css.scss */
html {
  overflow-x: hidden;
}

/* line 64, app/assets/stylesheets/tenant/application.css.scss */
#flash {
  position: fixed;
  top: 30px;
  margin: 0 auto;
  z-index: 10;
  margin-left: 50%;
}

/* line 71, app/assets/stylesheets/tenant/application.css.scss */
#flash .alert {
  margin-left: -50%;
  margin-right: 50%;
}

/* line 77, app/assets/stylesheets/tenant/application.css.scss */
.company-brand {
  color: #808080;
  font-weight: bold;
  font-size: 14px;
  padding-right: 15px;
  text-transform: uppercase;
}

/* line 85, app/assets/stylesheets/tenant/application.css.scss */
fieldset legend {
  color: #aaaaac;
}

/* line 89, app/assets/stylesheets/tenant/application.css.scss */
.form-actions {
  padding-top: 15px;
}

/* line 93, app/assets/stylesheets/tenant/application.css.scss */
.company-info,
.company-name {
  font-size: 14px;
  text-align: right;
  text-decoration: none;
  color: #00b2c0;
}

/* line 101, app/assets/stylesheets/tenant/application.css.scss */
#help-button, #support-button {
  font-size: 14px;
  text-align: right;
  text-decoration: none;
  color: #00b2c0;
}

/* line 106, app/assets/stylesheets/tenant/application.css.scss */
#help-button:hover, #support-button:hover {
  color: #00b2c0;
  cursor: pointer;
  text-decoration: underline;
}

/* line 113, app/assets/stylesheets/tenant/application.css.scss */
.report-bug {
  margin-bottom: 1em;
}

/* line 117, app/assets/stylesheets/tenant/application.css.scss */
#support-button, .company-info {
  padding-right: 15px;
  margin-right: 15px;
  border-right: solid 3px #00b2c0;
}

/* line 119, app/assets/stylesheets/tenant/application.css.scss */
span.copyright a {
  color: #333;
}

/* line 121, app/assets/stylesheets/tenant/application.css.scss */
.badge {
  color: black;
  background: #cccccc;
  margin-left: 3px;
}

/* line 126, app/assets/stylesheets/tenant/application.css.scss */
.badge.table-badge {
  color: white;
}

/* line 131, app/assets/stylesheets/tenant/application.css.scss */
#atlwdg-trigger {
  background: black;
  border: 2px solid white;
  color: white !important;
  padding: 10px;
  font-size: 16px;
  border-radius: 10px 0 0 0;
  z-index: 10;
}

/* line 140, app/assets/stylesheets/tenant/application.css.scss */
#atlwdg-trigger:hover {
  background: white !important;
  border-color: black !important;
  color: black !important;
}

/* line 145, app/assets/stylesheets/tenant/application.css.scss */
#bs-navbar-collapse {
  background: #00b2c0;
  border: none;
  height: 60px;
  line-height: 60px;
}

/* line 151, app/assets/stylesheets/tenant/application.css.scss */
nav.navbar {
  color: white;
  margin-bottom: 0 !important;
}

/* line 154, app/assets/stylesheets/tenant/application.css.scss */
nav.navbar .open {
  display: block;
}

/* line 165, app/assets/stylesheets/tenant/application.css.scss */
.navbar-default {
  border: none;
}

/* line 166, app/assets/stylesheets/tenant/application.css.scss */
.navbar-default ul {
  margin-left: 0px;
  list-style-type: none;
}

/* line 169, app/assets/stylesheets/tenant/application.css.scss */
.navbar-default ul li {
  position: relative;
  float: left;
  padding: 0;
  margin: 0;
}

/* line 174, app/assets/stylesheets/tenant/application.css.scss */
.navbar-default ul li a {
  display: block;
  color: #00abba;
  padding: 0 25px;
  border-right: solid 1px #3ACCCC;
  height: 60px;
  line-height: 60px;
  position: relative;
}

/* line 184, app/assets/stylesheets/tenant/application.css.scss */
.navbar-default ul li.active a {
  color: #00b2c0 !important;
  background: #fff !important;
}

/* line 195, app/assets/stylesheets/tenant/application.css.scss */
.navbar-default ul li:hover ul {
  display: block;
}

/* line 198, app/assets/stylesheets/tenant/application.css.scss */
.navbar-default .navbar-nav > li > a {
  color: white;
}

/* line 201, app/assets/stylesheets/tenant/application.css.scss */
.dropdown:hover > a {
  color: #00b2c0 !important;
}

/* line 204, app/assets/stylesheets/tenant/application.css.scss */
.navbar-default ul li ul {
  float: none;
  display: none;
  position: absolute;
  top: 50px;
  left: 0px;
  margin: 0;
  padding: 0;
  white-space: nowrap;
}

/* line 214, app/assets/stylesheets/tenant/application.css.scss */
.navbar-default ul li ul:hover {
  display: block;
}

/* line 217, app/assets/stylesheets/tenant/application.css.scss */
.navbar-default ul li ul li {
  position: static;
  float: none;
  display: inline;
  background: white;
  padding: 0;
}

/* line 224, app/assets/stylesheets/tenant/application.css.scss */
.navbar-default ul li ul li a {
  display: block;
  margin: 0;
  padding: 0;
  font-weight: normal;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border: none;
  border-bottom: solid 1px #E0E0E0;
}

/* line 235, app/assets/stylesheets/tenant/application.css.scss */
.navbar-default ul li ul li a:hover {
  background: #F4F4F4;
}

/* line 238, app/assets/stylesheets/tenant/application.css.scss */
.navbar-default ul li:first-of-type {
  border-left: none;
}

/* line 241, app/assets/stylesheets/tenant/application.css.scss */
.navbar-default ul li.active-parent {
  background: white;
}

/* line 244, app/assets/stylesheets/tenant/application.css.scss */
.navbar-default ul li.active-parent.notselected {
  background: transparent;
}

/* line 247, app/assets/stylesheets/tenant/application.css.scss */
.navbar-default ul li.active-parent.notselected a {
  color: white;
}

/* line 251, app/assets/stylesheets/tenant/application.css.scss */
.navbar-default ul li.notselected ul li {
  display: none;
}

/* line 254, app/assets/stylesheets/tenant/application.css.scss */
.navbar-default ul li.notselected ul li.active {
  border-bottom: 0;
}

/* line 260, app/assets/stylesheets/tenant/application.css.scss */
.navbar-default ul li.active-parent a {
  color: #00b2c0;
}

/* line 265, app/assets/stylesheets/tenant/application.css.scss */
.navbar-default ul li ul li.active {
  border-bottom: 4px solid #00b2c0;
}

/* line 269, app/assets/stylesheets/tenant/application.css.scss */
.navbar-default ul li ul:hover li.active {
  border-bottom: 0;
}

/* line 272, app/assets/stylesheets/tenant/application.css.scss */
.navbar-default ul li ul:hover li:hover {
  border-bottom: 4px solid #00b2c0;
}

/* line 274, app/assets/stylesheets/tenant/application.css.scss */
.navbar-default ul li ul:hover li:hover a {
  text-decoration: none;
}

/* line 281, app/assets/stylesheets/tenant/application.css.scss */
.navbar-default .navbar-nav > li:hover {
  background: white;
  color: #00b2c0;
}

/* line 284, app/assets/stylesheets/tenant/application.css.scss */
.navbar-default .navbar-nav > li:hover a {
  color: #00b2c0;
}

/* line 287, app/assets/stylesheets/tenant/application.css.scss */
.navbar-default .navbar-nav > li:hover a.main-menu-dropmenu {
  color: #00b2c0 !important;
}

/* line 292, app/assets/stylesheets/tenant/application.css.scss */
.navbar-default .navbar-nav > li.dropdown:hover a {
  color: #00b2c0 !important;
}

/* line 297, app/assets/stylesheets/tenant/application.css.scss */
.navbar-default ul.dropdown-menu {
  left: 15px;
}

/* line 300, app/assets/stylesheets/tenant/application.css.scss */
.navbar-default ul.dropdown-menu li {
  clear: both;
}

/* line 303, app/assets/stylesheets/tenant/application.css.scss */
.navbar-default .navbar-form .input-group {
  width: 220px;
}

/* line 306, app/assets/stylesheets/tenant/application.css.scss */
.navbar-default ul.dropdown-menu li .subtitle {
  margin-top: -4px;
  padding: 0 10px;
  font-size: 12px;
  color: #999999;
}

/* line 313, app/assets/stylesheets/tenant/application.css.scss */
footer {
  padding: 0;
  padding-top: 5px;
  text-align: center;
}

/* line 317, app/assets/stylesheets/tenant/application.css.scss */
footer section {
  width: 100%;
  display: block;
  margin: 0;
}

/* line 318, app/assets/stylesheets/tenant/application.css.scss */
footer section:nth-child(+1) {
  background: white;
}

/* line 321, app/assets/stylesheets/tenant/application.css.scss */
footer section:nth-child(+3) {
  padding-top: 30px;
  font-weight: 100;
  padding-bottom: 50px;
}

/* line 329, app/assets/stylesheets/tenant/application.css.scss */
footer section section {
  padding: 0 40px;
  position: relative;
  height: 150px;
}

/* line 337, app/assets/stylesheets/tenant/application.css.scss */
footer > .row {
  margin-top: 35px;
  margin-bottom: 35px;
}

/* line 342, app/assets/stylesheets/tenant/application.css.scss */
.last-column {
  text-align: right;
}

/* line 346, app/assets/stylesheets/tenant/application.css.scss */
.last-column > span {
  display: block;
  margin-right: 16px;
}

/* line 351, app/assets/stylesheets/tenant/application.css.scss */
.appStoreButton > img {
  margin-left: 10px !important;
  margin-top: 10px;
  height: 40px;
}

/* line 357, app/assets/stylesheets/tenant/application.css.scss */
a.footer-brand {
  text-align: center;
  display: block;
  width: 256px;
  height: 78px;
  margin-left: 16px;
  text-indent: -9999px;
  background: url(/assets/tenant/QRIDit_logo-aad2ed2ea16f1a2af4385eb532808afc40eae5cd32c17df700a03350e05d9927.svg) 0 0 no-repeat;
  background-size: 224px 78px;
}

/* line 366, app/assets/stylesheets/tenant/application.css.scss */
a.footer-brand span {
  font-family: 'Kaushan Script', cursive;
  color: #fff;
  text-shadow: none;
}

/* line 371, app/assets/stylesheets/tenant/application.css.scss */
a.footer-brand.noBg {
  background: #00b2c0;
  border-bottom: none;
}

/* line 380, app/assets/stylesheets/tenant/application.css.scss */
.table-striped > tbody > tr:nth-child(2n+1) > td, .table-striped > tbody > tr:nth-child(2n+1) > th {
  background: #EFEFEF;
}

/* line 382, app/assets/stylesheets/tenant/application.css.scss */
.qrid-options .control-label {
  font-size: 13px;
}

/* line 385, app/assets/stylesheets/tenant/application.css.scss */
.footer-right-col {
  float: right;
  width: 50%;
}

/* line 386, app/assets/stylesheets/tenant/application.css.scss */
.footer-left-col {
  float: left;
  width: 49%;
}

/* line 388, app/assets/stylesheets/tenant/application.css.scss */
.copyright, .company {
  color: #4D4D4D;
}

/* line 389, app/assets/stylesheets/tenant/application.css.scss */
.brand {
  color: #4D4D4D;
}

/* line 391, app/assets/stylesheets/tenant/application.css.scss */
i.checklist-icon {
  background: url(/assets/tenant/checklist-icon-4cf8cda67361b881e02cef77e5d34812933c558e10cec42f97adaba50d09fad2.png) 14px 12px no-repeat #000 !important;
}

/* line 393, app/assets/stylesheets/tenant/application.css.scss */
.box .box-header .box-icon i {
  border: none;
  display: block;
  float: left;
  height: 40px;
  line-height: 40px;
  padding: 0;
  width: 46px;
}

/* line 395, app/assets/stylesheets/tenant/application.css.scss */
a.btn-minimize i {
  background: rgba(0, 0, 0, 0.7);
}

/* Checklist */
/* line 398, app/assets/stylesheets/tenant/application.css.scss */
.qrid-checklist legend {
  font-size: 15px;
  color: #333;
  font-weight: bold;
  border: none;
  margin-bottom: 5px;
}

/* line 400, app/assets/stylesheets/tenant/application.css.scss */
.qrid-checklist .dd-list {
  padding-left: 0;
}

/* line 402, app/assets/stylesheets/tenant/application.css.scss */
.qrid-checklist label {
  font-size: 15px;
  color: #808080;
  font-weight: bold;
}

/* line 404, app/assets/stylesheets/tenant/application.css.scss */
.qrid-checklist .question {
  clear: both;
  overflow: hidden;
  margin-bottom: 5px;
  background: #fff;
  border: solid 1px #ddd;
  padding: 15px;
  border-radius: 6px;
  -webkit-border-radius: 6px;
}

/* line 414, app/assets/stylesheets/tenant/application.css.scss */
.qrid-checklist .dd-list .controls .radio {
  margin: 0;
  display: block;
  padding: 0 20px;
  text-align: center;
  font-weight: bold;
  font-size: 13px;
  margin: -15px 0 0;
  height: 30px;
  line-height: 30px;
}

/* line 426, app/assets/stylesheets/tenant/application.css.scss */
.qrid-checklist .dd-list .controls .qrid-radio:checked ~ label {
  background: #55B867;
  color: #fff;
}

/* line 430, app/assets/stylesheets/tenant/application.css.scss */
.qrid-checklist .dd-list .controls .radio-yes,
.qrid-checklist .dd-list .controls .radio-no,
.qrid-checklist .dd-list .controls .radio-na {
  background: url(/assets/tenant/checklist-btn-857e4f4e05f75f3b179580881381d035e7e4acaf2c777e77558da939d254d005.png) 0 0 repeat-x;
  border-top: solid 1px #ccc;
  border-bottom: solid 1px #ccc;
}

/* line 436, app/assets/stylesheets/tenant/application.css.scss */
.qrid-checklist .dd-list .controls .radio-yes {
  border-left: solid 1px #ccc;
  border-radius: 20px 0 0 20px;
  -webkit-border-radius: 20px 0 0 20px;
}

/* line 440, app/assets/stylesheets/tenant/application.css.scss */
.qrid-checklist .dd-list .controls .radio-no {
  border-left: solid 1px #ccc;
  border-right: solid 1px #ccc;
}

/* line 442, app/assets/stylesheets/tenant/application.css.scss */
.qrid-checklist .dd-list .controls .radio-na {
  border-right: solid 1px #ccc;
  border-radius: 0 20px 20px 0;
  -webkit-border-radius: 0 20px 20px 0;
}

/* line 447, app/assets/stylesheets/tenant/application.css.scss */
.qrid-checklist .dd-list .answers {
  width: 33%;
}

/* line 450, app/assets/stylesheets/tenant/application.css.scss */
.radio-no ~ .qrid-options {
  margin-left: -96px;
}

/* line 453, app/assets/stylesheets/tenant/application.css.scss */
.radio-na ~ .qrid-options {
  margin-left: -176px;
}

/* line 457, app/assets/stylesheets/tenant/application.css.scss */
.radio-yes ~ .qrid-options {
  margin-left: -15px;
}

/* line 460, app/assets/stylesheets/tenant/application.css.scss */
.radio-no ~ .qrid-options, .radio-na ~ .qrid-options, .radio-yes ~ .qrid-options {
  width: 1000px;
}

/* line 463, app/assets/stylesheets/tenant/application.css.scss */
.radio-no ~ .qrid-options .question, .radio-na ~ .qrid-options .question, .radio-yes ~ .qrid-options .question {
  border-bottom: none;
  border-left: none;
  border-right: none;
  border-radius: 0;
  -webkit-border-radius: 0;
  margin-top: 15px;
  padding-left: 40px;
}

/* line 474, app/assets/stylesheets/tenant/application.css.scss */
.qrid-checklist .radio, .qrid-checklist checkbox {
  margin: 0;
  padding: 0;
}

/* line 476, app/assets/stylesheets/tenant/application.css.scss */
.box-content.qrid-content {
  background: #EFEFEF;
  padding: 15px;
}

/* line 477, app/assets/stylesheets/tenant/application.css.scss */
.qrid-content .btn-primary {
  margin-top: 10px;
  background: url(/assets/tenant/btn-main-bkgd-94c045f1b522866698e47b941817974883c5b237a307c50651f6b43a39db8bd5.png) 0 0 repeat-x;
  height: 40px;
  width: 100%;
  font-size: 16px;
  font-weight: bold;
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
  border: solid 1px #2C938E;
}

/* line 487, app/assets/stylesheets/tenant/application.css.scss */
.qrid-options .question {
  padding-bottom: 0;
  width: 1000px;
}

/* line 489, app/assets/stylesheets/tenant/application.css.scss */
.action {
  padding: 10px 20px;
}

/* line 491, app/assets/stylesheets/tenant/application.css.scss */
.qrid-content div.label {
  font-size: 13px;
  color: #333;
}

/* line 493, app/assets/stylesheets/tenant/application.css.scss */
.qrid-options textarea {
  background: #FCFCF0 !important;
  width: 100%;
}

/* line 495, app/assets/stylesheets/tenant/application.css.scss */
.qrid-checklist fieldset > fieldset {
  color: #333;
  margin-left: 0;
  margin-top: 10px;
}

/* line 496, app/assets/stylesheets/tenant/application.css.scss */
.qrid-checklist fieldset {
  margin-bottom: 10px;
}

/* line 498, app/assets/stylesheets/tenant/application.css.scss */
.user-nav-dropdown {
  min-width: 200px;
}

@media only screen and (max-width: 900px) {
  /* line 504, app/assets/stylesheets/tenant/application.css.scss */
  .qrid-checklist .question {
    width: 500px;
  }
  /* line 506, app/assets/stylesheets/tenant/application.css.scss */
  .qrid-checklist label {
    width: 100%;
  }
  /* line 508, app/assets/stylesheets/tenant/application.css.scss */
  .action {
    width: 500px;
  }
  /* line 509, app/assets/stylesheets/tenant/application.css.scss */
  .qrid-options .action {
    width: 470px;
  }
  /* line 510, app/assets/stylesheets/tenant/application.css.scss */
  .qrid-options textarea {
    float: left;
    clear: both;
    width: 100%;
    margin-bottom: 10px;
  }
  /* line 511, app/assets/stylesheets/tenant/application.css.scss */
  .qrid-options .action .control-label {
    width: 100%;
  }
  /* line 513, app/assets/stylesheets/tenant/application.css.scss */
  .qrid-checklist .dd-list .answers {
    width: 33%;
  }
  /* line 515, app/assets/stylesheets/tenant/application.css.scss */
  .qrid-options .question .control-label {
    width: 100%;
  }
  /* line 517, app/assets/stylesheets/tenant/application.css.scss */
  .thumbnail-image img {
    width: 100% !important;
    max-width: 100% !important;
  }
  /* line 520, app/assets/stylesheets/tenant/application.css.scss */
  #wrap header.navbar {
    max-height: none;
    min-height: 28px;
    height: auto;
  }
}

/* line 528, app/assets/stylesheets/tenant/application.css.scss */
td > ul:not(.bullet) {
  padding-left: 0;
}

/* line 530, app/assets/stylesheets/tenant/application.css.scss */
td > ul:not(.bullet) li {
  list-style: none;
}

/* line 535, app/assets/stylesheets/tenant/application.css.scss */
td > ul.bullet li {
  list-style: disc;
}

/* line 540, app/assets/stylesheets/tenant/application.css.scss */
.col-lg-fifth {
  width: 20%;
}

/* line 543, app/assets/stylesheets/tenant/application.css.scss */
.f_no_padding_left {
  padding-left: 0;
  width: auto;
}

/* line 547, app/assets/stylesheets/tenant/application.css.scss */
.f_2pl {
  width: 37%;
}

/* line 550, app/assets/stylesheets/tenant/application.css.scss */
.form-group a[data="tooltip"] {
  background: #ccc;
  padding: 1px 6px;
  border-radius: 10px;
  position: relative;
}

/* line 558, app/assets/stylesheets/tenant/application.css.scss */
a[data="tooltip"]:after {
  display: none;
  content: attr(title);
}

/* line 563, app/assets/stylesheets/tenant/application.css.scss */
a[data="tooltip"]:hover:after {
  display: inline-block;
  position: absolute;
  left: 0;
  top: -12px;
  min-width: 300px;
  background: #ccc;
  padding: 5px;
  border-radius: 10px;
  text-decoration: none;
  color: black;
}

/* line 575, app/assets/stylesheets/tenant/application.css.scss */
.navbar > div > ul > li {
  font-size: 16px;
}

/* line 578, app/assets/stylesheets/tenant/application.css.scss */
.navbar > div > ul > li .secondary-menu {
  font-size: 14px;
  position: absolute;
  top: 60px;
  left: 0;
  width: 180px;
  z-index: 100;
  background: #fff;
  box-shadow: 0 3px 4px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 3px 4px rgba(0, 0, 0, 0.2);
}

/* line 590, app/assets/stylesheets/tenant/application.css.scss */
.box-header h2 {
  font-size: 14px;
}

/* line 592, app/assets/stylesheets/tenant/application.css.scss */
.box-header h2 .fa, .box-header h2 .fas, .box-header h2 .far {
  font-size: 16px !important;
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

/* line 598, app/assets/stylesheets/tenant/application.css.scss */
footer a:hover {
  text-decoration: none;
}

/* line 601, app/assets/stylesheets/tenant/application.css.scss */
.icon-q {
  background-image: url(/assets/tenant/icon-q-4b4b8fde68fcbc2fecd30ea05a0359c2b8d42a86885c6e84bade2ebbf9c65697.png);
  background-size: 15px 15px;
  background-position: center center;
  height: 15px;
  width: 15px;
}

/* line 607, app/assets/stylesheets/tenant/application.css.scss */
.wider-input {
  width: 40%;
  max-width: 350px;
}

/* line 612, app/assets/stylesheets/tenant/application.css.scss */
.toggle.active {
  background: #7ABC33;
  color: #000;
  text-shadow: 1px 1px #fff;
}

/* line 617, app/assets/stylesheets/tenant/application.css.scss */
.glyphicon-lg {
  font-size: 2em;
  line-height: 1em;
  display: block;
  margin-top: 0px;
  margin-bottom: 0px;
  margin-right: 5px;
  float: left;
}

/* line 627, app/assets/stylesheets/tenant/application.css.scss */
.dd3-content.answer + .dd-list {
  padding-left: 0;
  border-left: 0;
}

/* line 632, app/assets/stylesheets/tenant/application.css.scss */
.dd3-item > .dd-checkbox {
  float: left;
  margin-top: 10px;
  margin-left: -20px;
}

/* line 638, app/assets/stylesheets/tenant/application.css.scss */
.dd3-item > .modified-version-exists {
  float: left;
  margin-top: 14px;
  margin-left: -34px;
}

/* line 644, app/assets/stylesheets/tenant/application.css.scss */
.sortable-tree > .dd3-item > .fa-pencil-alt.modified-version-exists + .dd-checkbox + .dd3-content.group {
  border: 2px dashed #5bc0de;
}

/* line 648, app/assets/stylesheets/tenant/application.css.scss */
.nav.nav-tabs {
  border-color: #00b2c0;
  font-size: 14px;
}

/* line 652, app/assets/stylesheets/tenant/application.css.scss */
.nav-tabs > li.active > a {
  border-top-color: #00b2c0;
  border-left-color: #00b2c0;
  border-right-color: #00b2c0;
}

/* line 658, app/assets/stylesheets/tenant/application.css.scss */
.col-offset-settings-10 {
  margin-left: 10px;
}

/* line 662, app/assets/stylesheets/tenant/application.css.scss */
.col-offset-settings-25 {
  padding-left: 25px;
}

/* line 666, app/assets/stylesheets/tenant/application.css.scss */
.btn-offset-settings-15 {
  margin-top: 15px;
  margin-bottom: 10px;
}

/* line 671, app/assets/stylesheets/tenant/application.css.scss */
.setting-logo-3 {
  height: 390px;
  float: right;
  margin-right: 6%;
}

/* line 677, app/assets/stylesheets/tenant/application.css.scss */
.col-offset-logo {
  margin-left: 20%;
  width: 80%;
}

/* line 682, app/assets/stylesheets/tenant/application.css.scss */
.company-logo {
  text-align: center;
  margin-bottom: 40px;
}

@media screen {
  /* line 688, app/assets/stylesheets/tenant/application.css.scss */
  .header-logo {
    margin-left: 30px;
    margin-top: 0;
    margin-bottom: 0;
    padding: 20px 0 10px;
    float: left;
  }
}

/* line 697, app/assets/stylesheets/tenant/application.css.scss */
.mobile-logo {
  display: none;
}

/* line 699, app/assets/stylesheets/tenant/application.css.scss */
.thumbnail-image {
  text-align: center;
}

/* line 703, app/assets/stylesheets/tenant/application.css.scss */
#new_tenant_qrid_photo, .clientimport-form {
  width: 100%;
  max-width: 768px;
  float: none;
}

/* line 707, app/assets/stylesheets/tenant/application.css.scss */
#new_tenant_qrid_photo .modal-body, .clientimport-form .modal-body {
  overflow: hidden;
}

/* line 712, app/assets/stylesheets/tenant/application.css.scss */
#qrid_photo_upload_button, #site_photo_upload_button, #invoice_photo_upload_button {
  display: inline-block;
}

/* line 716, app/assets/stylesheets/tenant/application.css.scss */
.qrid_photo_input, .site_photo_input, .invoice_photo_input {
  position: relative !important;
  margin-bottom: -34px !important;
  width: 158px !important;
  border: 0 !important;
  transform: none !important;
}

/* line 724, app/assets/stylesheets/tenant/application.css.scss */
.upload {
  max-width: 300px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

/* line 730, app/assets/stylesheets/tenant/application.css.scss */
.panel {
  border: none;
  padding: 0;
}

/* line 731, app/assets/stylesheets/tenant/application.css.scss */
.panel-body {
  padding: 20px 15px 15px;
}

/* line 733, app/assets/stylesheets/tenant/application.css.scss */
.box .box-header {
  border-radius: none;
  -wekit-border-radius: none;
  height: 40px;
  line-height: 40px;
  clear: both;
}

/* line 737, app/assets/stylesheets/tenant/application.css.scss */
.box .box-header h2 i {
  background: none repeat scroll 0 0 #000000;
  color: #FFFFFF;
  display: block;
  float: left;
  height: 40px;
  line-height: 24px;
  margin: 0 10px 0 -20px;
  padding: 0;
  text-align: center;
  width: 46px;
}

/* line 749, app/assets/stylesheets/tenant/application.css.scss */
.box .box-header h2 {
  line-height: 40px;
  height: 40px;
  padding: 0;
}

/* line 751, app/assets/stylesheets/tenant/application.css.scss */
table.table {
  margin-top: 0 !important;
}

/* line 753, app/assets/stylesheets/tenant/application.css.scss */
.dd-list {
  width: 100%;
}

/* line 755, app/assets/stylesheets/tenant/application.css.scss */
.table-bordered {
  border: none;
}

/* line 756, app/assets/stylesheets/tenant/application.css.scss */
.table-bordered > thead > tr > th, .table-bordered > thead > tr > td {
  border-bottom: 1px;
}

/* line 757, app/assets/stylesheets/tenant/application.css.scss */
.table-bordered > thead > tr > th {
  background: #4D4D4D;
  color: #fff;
  border-right: solid 1px #383838;
  font-size: 13px;
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 16px;
}

/* line 758, app/assets/stylesheets/tenant/application.css.scss */
table.table thead .sorting_asc, table.table thead .sorting {
  background-color: #4D4D4D;
}

/* line 759, app/assets/stylesheets/tenant/application.css.scss */
table.table thead .sorting_desc {
  background-color: #4D4D4D;
}

/* line 761, app/assets/stylesheets/tenant/application.css.scss */
.table-bordered > thead > tr > th, .table-bordered > thead > tr > td, .table-bordered > tbody > tr > th, .table-bordered > tbody > tr > td, .table-bordered > tfoot > tr > th, .table-bordered > tfoot > tr > td {
  border-left: none;
}

/* line 762, app/assets/stylesheets/tenant/application.css.scss */
.table-bordered > tbody > tr > td:last-child, .table-bordered > thead > tr > td:last-child {
  border-right: none;
}

/* line 764, app/assets/stylesheets/tenant/application.css.scss */
.form-horizontal .control-label {
  padding-top: 0;
  margin-top: 0;
}

@media (max-width: 767px) {
  /* line 769, app/assets/stylesheets/tenant/application.css.scss */
  a.footer-brand {
    margin-left: auto;
  }
  /* line 773, app/assets/stylesheets/tenant/application.css.scss */
  .setting-logo-3 {
    width: 100%;
    float: none;
    height: auto;
  }
  /* line 775, app/assets/stylesheets/tenant/application.css.scss */
  .fileinput-button {
    float: none;
  }
  /* line 776, app/assets/stylesheets/tenant/application.css.scss */
  .fileinput-button input {
    border-width: 0;
    position: static;
  }
  /* line 777, app/assets/stylesheets/tenant/application.css.scss */
  .thumbnails {
    margin-top: 20px !important;
  }
  /* line 779, app/assets/stylesheets/tenant/application.css.scss */
  .navbar-collapse {
    max-height: 2000px !important;
  }
  /* line 781, app/assets/stylesheets/tenant/application.css.scss */
  .navbar-default ul li ul, .navbar > div > ul > li .secondary-menu {
    display: block;
    top: 0 !important;
  }
  /* line 783, app/assets/stylesheets/tenant/application.css.scss */
  .mobile-logo {
    display: block;
  }
  /* line 784, app/assets/stylesheets/tenant/application.css.scss */
  .desktop-logo {
    display: none;
  }
  /* line 786, app/assets/stylesheets/tenant/application.css.scss */
  .header-logo {
    text-align: center;
    padding: 20px 0;
    float: none;
    margin: 0;
    width: 100%;
  }
  /* line 788, app/assets/stylesheets/tenant/application.css.scss */
  footer section section {
    padding: 0;
  }
  /* line 790, app/assets/stylesheets/tenant/application.css.scss */
  .mobile-footer-wrapper {
    background: #EFEFEF;
    margin-top: 10px;
    border-top: solid 1px #ccc;
    padding: 10px 0 15px;
  }
  /* line 792, app/assets/stylesheets/tenant/application.css.scss */
  .copyright, .company, .brand {
    clear: both;
    float: none;
    display: block;
  }
  /* line 793, app/assets/stylesheets/tenant/application.css.scss */
  .copyright {
    margin: 0;
    padding: 0;
    border: none;
  }
  /* line 795, app/assets/stylesheets/tenant/application.css.scss */
  .footer-right-col {
    width: 100%;
    float: none;
    clear: both;
  }
  /* line 796, app/assets/stylesheets/tenant/application.css.scss */
  .footer-left-col {
    width: 100%;
    float: none;
    clear: both;
  }
  /* line 799, app/assets/stylesheets/tenant/application.css.scss */
  .last-column {
    text-align: center;
    margin-top: 16px;
  }
  /* line 804, app/assets/stylesheets/tenant/application.css.scss */
  .last-column > span {
    margin-right: auto;
  }
  /* line 808, app/assets/stylesheets/tenant/application.css.scss */
  a.footer-brand {
    text-align: center;
    width: 100%;
    height: 78px;
    margin-top: 35px;
    text-indent: -9999px;
    background: url(/assets/tenant/homewatch-logo-6fc0e70076f74069003059a0e35726ff6a07120d1f202a7ffced02ce31dc9bf9.png) top center no-repeat;
    margin-bottom: 10px;
  }
  /* line 818, app/assets/stylesheets/tenant/application.css.scss */
  li.dropdown.open a {
    color: #fff;
  }
  /* line 819, app/assets/stylesheets/tenant/application.css.scss */
  li.dropdown.open a:hover {
    color: #333;
  }
  /* line 821, app/assets/stylesheets/tenant/application.css.scss */
  .table > thead > tr > th, .table > thead > tr > td, .table > tbody > tr > th, .table > tbody > tr > td, .table > tfoot > tr > th, .table > tfoot > tr > td {
    border-top: solid 1px #ddd !important;
  }
  /* line 823, app/assets/stylesheets/tenant/application.css.scss */
  .qrid-options textarea {
    width: 50%;
  }
  /* line 825, app/assets/stylesheets/tenant/application.css.scss */
  .navbar-collapse, .navbar-collapse.in {
    max-height: auto !important;
    overflow: visible !important;
  }
  /* line 827, app/assets/stylesheets/tenant/application.css.scss */
  .container {
    width: 100%;
  }
  /* line 828, app/assets/stylesheets/tenant/application.css.scss */
  .navbar-form .form-group {
    width: 100%;
  }
  /* line 829, app/assets/stylesheets/tenant/application.css.scss */
  .navbar-form {
    margin: 0;
    box-shadow: none;
    -webkit-box-shadow: none;
  }
  /* line 831, app/assets/stylesheets/tenant/application.css.scss */
  nav.navbar {
    padding: 0 15px;
    margin: 0;
    min-height: none;
    max-height: none;
    margin-bottom: 0 !important;
  }
  /* line 832, app/assets/stylesheets/tenant/application.css.scss */
  .navbar {
    margin-bottom: 0 !important;
  }
  /* line 834, app/assets/stylesheets/tenant/application.css.scss */
  .navbar-default .navbar-form .input-group {
    width: 97%;
    margin: 0;
  }
  /* line 836, app/assets/stylesheets/tenant/application.css.scss */
  .navbar-default {
    background: #00B2C0;
  }
  /* line 838, app/assets/stylesheets/tenant/application.css.scss */
  .navbar-default .navbar-collapse, .navbar-default .navbar-form {
    border: none;
  }
  /* line 840, app/assets/stylesheets/tenant/application.css.scss */
  .navbar-default ul li {
    display: block;
    width: 100%;
    clear: both;
    background: none;
  }
  /* line 841, app/assets/stylesheets/tenant/application.css.scss */
  .navbar-default ul li a {
    height: 30px;
    line-height: 30px;
    width: 100%;
    display: block;
    clear: both;
  }
  /* line 844, app/assets/stylesheets/tenant/application.css.scss */
  .dropdown:hover a {
    color: #fff !important;
    background: none !important;
  }
  /* line 846, app/assets/stylesheets/tenant/application.css.scss */
  .navbar-default .navbar-nav li:hover {
    background: none;
    color: #333;
  }
  /* line 848, app/assets/stylesheets/tenant/application.css.scss */
  .navbar-default ul li ul:hover li:hover {
    border-bottom: none;
  }
  /* line 850, app/assets/stylesheets/tenant/application.css.scss */
  .navbar-default ul li ul li, .navbar-default ul li.active-parent {
    background: none;
    color: #fff;
  }
  /* line 851, app/assets/stylesheets/tenant/application.css.scss */
  .navbar-default ul li ul li a:hover {
    background: none;
  }
  /* line 853, app/assets/stylesheets/tenant/application.css.scss */
  .navbar-default ul li.active-parent a, .navbar-default ul li a {
    color: #fff;
  }
  /* line 854, app/assets/stylesheets/tenant/application.css.scss */
  .navbar > div > ul > li .secondary-menu {
    box-shadow: none;
    -webkit-box-shadow: none;
  }
  /* line 856, app/assets/stylesheets/tenant/application.css.scss */
  .header-user-info {
    width: 100%;
    float: none;
    text-align: center;
    color: #fff;
  }
  /* line 858, app/assets/stylesheets/tenant/application.css.scss */
  header.navbar {
    background: #00B2C0;
    position: relative;
    padding: 10px 0;
  }
  /* line 860, app/assets/stylesheets/tenant/application.css.scss */
  .navbar > div > ul > li .secondary-menu {
    width: 100%;
  }
  /* line 861, app/assets/stylesheets/tenant/application.css.scss */
  .navbar-default ul li a {
    border-right: none;
  }
  /* line 863, app/assets/stylesheets/tenant/application.css.scss */
  .btn-primary.navbar-toggle {
    position: absolute;
    right: -5px;
    top: 0;
    background: url(/assets/tenant/nav-hide-b16424531339db80e5cabd579430ec3ffc962e38dfddffe213ac25058f2c9e62.png) 0 0 no-repeat;
    width: 21px;
    height: 18px;
    border-radius: 0 !important;
    -webkit-border-radius: 0 !important;
  }
  /* line 873, app/assets/stylesheets/tenant/application.css.scss */
  .btn-primary.navbar-toggle:hover {
    background: url(/assets/tenant/nav-hide-b16424531339db80e5cabd579430ec3ffc962e38dfddffe213ac25058f2c9e62.png) 0 0 no-repeat;
    border: none;
  }
  /* line 877, app/assets/stylesheets/tenant/application.css.scss */
  .report-collection td {
    border-bottom: solid 1px #ccc;
  }
  /* Secondary Menu */
  /* line 881, app/assets/stylesheets/tenant/application.css.scss */
  .navbar > div > ul > li .secondary-menu {
    position: relative;
    top: 30px;
    background: none !important;
  }
  /* line 883, app/assets/stylesheets/tenant/application.css.scss */
  .company-brand {
    color: #fff;
  }
  /* line 885, app/assets/stylesheets/tenant/application.css.scss */
  .settings-icon {
    background: url(/assets/tenant/settings-icon-00fa9c8f39cf56a1347b91d1cb3fc6c6cebfd2514064c51bf71fc549018a22cf.png) 0 0 no-repeat;
    width: 19px;
    height: 19px;
    position: absolute;
    left: 10px;
    top: -19px;
  }
  /* line 894, app/assets/stylesheets/tenant/application.css.scss */
  .pull-right {
    margin: 0;
  }
  /* line 897, app/assets/stylesheets/tenant/application.css.scss */
  .panel {
    padding: 5px 20px;
  }
  /* line 899, app/assets/stylesheets/tenant/application.css.scss */
  .header-user-info {
    padding-right: 0;
  }
}

@media only screen and (min-width: 769px) {
  /* line 902, app/assets/stylesheets/tenant/application.css.scss */
  .reports_index .report-collection > tr > td:nth-child(12) {
    max-width: 300px;
  }
  /* line 908, app/assets/stylesheets/tenant/application.css.scss */
  .dashboard_index.client table.table:nth-child(2) > tbody:nth-child(2) > tr > td:nth-child(5) {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    max-width: 186px;
  }
  /* line 914, app/assets/stylesheets/tenant/application.css.scss */
  .dashboard_index.manager #content > div > div > div > div:nth-child(1) > div:nth-child(2) > div.box-content > table > tbody > tr > td:nth-child(6) {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    max-width: 120px;
  }
  /* line 920, app/assets/stylesheets/tenant/application.css.scss */
  #DataTables_Table_0 > tbody > tr > td:nth-child(9) {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    max-width: 300px;
  }
  /* line 926, app/assets/stylesheets/tenant/application.css.scss */
  .dashboard_index.manager #inbox > thead > tr > td {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    max-width: 104px;
  }
  /* line 932, app/assets/stylesheets/tenant/application.css.scss */
  .client #inbox td:nth-child(2) {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    max-width: 150px;
  }
  /* line 938, app/assets/stylesheets/tenant/application.css.scss */
  .manager #inbox td:nth-child(2) {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    max-width: 100px;
  }
  /* line 944, app/assets/stylesheets/tenant/application.css.scss */
  .dashboard_index.client #reports td:nth-child(5) {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    max-width: 200px;
  }
  /* line 951, app/assets/stylesheets/tenant/application.css.scss */
  .line_item_notes {
    max-width: 250px;
  }
}

@media only screen and (max-width: 768px) {
  /* line 960, app/assets/stylesheets/tenant/application.css.scss */
  .dashboard_index.client table.table:nth-child(2) > tbody:nth-child(2) > tr > td:nth-child(5) {
    overflow: hidden;
    text-overflow: ellipsis;
  }
  /* line 964, app/assets/stylesheets/tenant/application.css.scss */
  .dashboard_index.manager #content > div > div > div > div:nth-child(1) > div:nth-child(2) > div.box-content > table > tbody > tr > td:nth-child(6) {
    overflow: hidden;
    text-overflow: ellipsis;
  }
  /* line 968, app/assets/stylesheets/tenant/application.css.scss */
  #DataTables_Table_0 > tbody > tr > td:nth-child(9) {
    overflow: hidden;
    text-overflow: ellipsis;
  }
  /* line 972, app/assets/stylesheets/tenant/application.css.scss */
  .dashboard_index.manager #inbox > thead > tr > td {
    overflow: hidden;
    text-overflow: ellipsis;
  }
  /* line 976, app/assets/stylesheets/tenant/application.css.scss */
  .client #inbox td:nth-child(2) {
    overflow: hidden;
    text-overflow: ellipsis;
  }
  /* line 980, app/assets/stylesheets/tenant/application.css.scss */
  .manager #inbox td:nth-child(2) {
    overflow: hidden;
    text-overflow: ellipsis;
  }
  /* line 984, app/assets/stylesheets/tenant/application.css.scss */
  .dashboard_index.client #reports td:nth-child(5) {
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

@media only screen and (max-width: 768px) {
  /* line 990, app/assets/stylesheets/tenant/application.css.scss */
  reports_index .report-collection > tr > td:nth-child(12), .dashboard_index.manager #inbox > thead > tr > td, #DataTables_Table_0 > tbody > tr > td:nth-child(9), .dashboard_index.manager #content > div > div > div > div:nth-child(1) > div:nth-child(2) > div.box-content > table > tbody > tr > td:nth-child(6), .report-collection > tr > td:nth-child(11), .dashboard_index.client table.table:nth-child(2) > tbody:nth-child(2) > tr > td:nth-child(5), .dashboard_index.client table.table:nth-child(1) > tbody:nth-child(2) > tr > td:nth-child(2) {
    max-width: 100%;
  }
  /* line 994, app/assets/stylesheets/tenant/application.css.scss */
  .qrid-checklist .question {
    width: 500px;
  }
  /* line 996, app/assets/stylesheets/tenant/application.css.scss */
  .qrid-checklist label {
    width: 100%;
  }
  /* line 998, app/assets/stylesheets/tenant/application.css.scss */
  .action {
    width: 500px;
  }
  /* line 999, app/assets/stylesheets/tenant/application.css.scss */
  .qrid-options .action {
    width: 470px;
  }
  /* line 1000, app/assets/stylesheets/tenant/application.css.scss */
  .qrid-options textarea {
    float: left;
    clear: both;
    width: 100%;
    margin-bottom: 10px;
  }
  /* line 1001, app/assets/stylesheets/tenant/application.css.scss */
  .qrid-options .action .control-label {
    width: 100%;
  }
  /* line 1003, app/assets/stylesheets/tenant/application.css.scss */
  .qrid-checklist .dd-list .answers {
    width: 33%;
  }
  /* line 1005, app/assets/stylesheets/tenant/application.css.scss */
  .qrid-options .question .control-label {
    width: 100%;
  }
}

@media only screen and (max-width: 480px) {
  /* line 1011, app/assets/stylesheets/tenant/application.css.scss */
  .thumbnails img {
    width: 100% !important;
  }
  /* line 1013, app/assets/stylesheets/tenant/application.css.scss */
  .navbar-default ul li ul {
    display: none;
  }
  /* line 1015, app/assets/stylesheets/tenant/application.css.scss */
  .qrid-content div.label {
    font-size: 11px;
  }
  /* line 1017, app/assets/stylesheets/tenant/application.css.scss */
  .box-icon {
    display: none;
  }
  /* line 1019, app/assets/stylesheets/tenant/application.css.scss */
  .radio-no ~ .qrid-options, .radio-na ~ .qrid-options, .radio-yes ~ .qrid-options .question {
    padding-left: 15px;
  }
  /* line 1021, app/assets/stylesheets/tenant/application.css.scss */
  .qrid-options .question .control-label {
    width: 22%;
    text-align: left;
  }
  /* line 1022, app/assets/stylesheets/tenant/application.css.scss */
  .qrid-options .action .control-label {
    width: 62%;
  }
  /* line 1025, app/assets/stylesheets/tenant/application.css.scss */
  .navbar-collapse {
    max-height: 100% !important;
  }
  /* line 1027, app/assets/stylesheets/tenant/application.css.scss */
  .qrid-checklist .question {
    width: 225px;
  }
  /* line 1029, app/assets/stylesheets/tenant/application.css.scss */
  .qrid-checklist label {
    width: 100%;
  }
  /* line 1031, app/assets/stylesheets/tenant/application.css.scss */
  .action {
    width: 225px;
  }
  /* line 1032, app/assets/stylesheets/tenant/application.css.scss */
  .qrid-options .action {
    width: 195px;
  }
  /* line 1033, app/assets/stylesheets/tenant/application.css.scss */
  .qrid-options textarea {
    float: left;
    clear: both;
    width: 100%;
    margin-bottom: 10px;
  }
  /* line 1034, app/assets/stylesheets/tenant/application.css.scss */
  .qrid-options .action .control-label {
    width: 100%;
  }
  /* line 1036, app/assets/stylesheets/tenant/application.css.scss */
  .qrid-checklist .dd-list .answers {
    width: 33%;
  }
  /* line 1038, app/assets/stylesheets/tenant/application.css.scss */
  .qrid-options .question .control-label {
    width: 100%;
  }
}

/* line 1041, app/assets/stylesheets/tenant/application.css.scss */
.client_phone_info {
  font-size: 14px;
  color: #00b2c0;
}

/* line 1044, app/assets/stylesheets/tenant/application.css.scss */
.client_phone_info div {
  float: right;
  margin-top: 40px;
  font-weight: bold;
}

/* line 1048, app/assets/stylesheets/tenant/application.css.scss */
.client_phone_info div:nth-child(2) {
  margin-left: 15px;
  margin-right: 15px;
}

/* line 1054, app/assets/stylesheets/tenant/application.css.scss */
.header-user-info .client_phone_info div {
  margin-top: 0;
}

/* line 1060, app/assets/stylesheets/tenant/application.css.scss */
.reports_show .media, .reports_show .media .media, .my_reports_show .media, .my_reports_show .media .media, .c_reports_show .media, .c_reports_show .media .media {
  margin-top: 0 !important;
}

/* line 1064, app/assets/stylesheets/tenant/application.css.scss */
.reports_show .media-body :not(.media-heading), .my_reports_show .media-body :not(.media-heading), .c_reports_show .media-body :not(.media-heading) {
  margin-left: 10px;
}

/* line 1067, app/assets/stylesheets/tenant/application.css.scss */
.reports_show .media-body .media-heading ~ .media h4, .my_reports_show .media-body .media-heading ~ .media h4, .c_reports_show .media-body .media-heading ~ .media h4 {
  font-size: 16px;
}

/* line 1071, app/assets/stylesheets/tenant/application.css.scss */
.reports_show .media-body .media-heading:not(.Question):not(.Comment):not(.Instructions), .my_reports_show .media-body .media-heading:not(.Question):not(.Comment):not(.Instructions), .c_reports_show .media-body .media-heading:not(.Question):not(.Comment):not(.Instructions) {
  font-weight: bold;
}

/* line 1074, app/assets/stylesheets/tenant/application.css.scss */
.reports_show .media-body .media-heading.Question, .reports_show .media-body .media-heading.Comment, .reports_show .media-body .media-heading.Instructions, .my_reports_show .media-body .media-heading.Question, .my_reports_show .media-body .media-heading.Comment, .my_reports_show .media-body .media-heading.Instructions, .c_reports_show .media-body .media-heading.Question, .c_reports_show .media-body .media-heading.Comment, .c_reports_show .media-body .media-heading.Instructions {
  font-size: 14px;
}

/* line 1077, app/assets/stylesheets/tenant/application.css.scss */
.reports_show .media-body .media-heading.Comment ~ p, .my_reports_show .media-body .media-heading.Comment ~ p, .c_reports_show .media-body .media-heading.Comment ~ p {
  white-space: pre-wrap;
}

/* line 1081, app/assets/stylesheets/tenant/application.css.scss */
.reports_show .media-body p, .my_reports_show .media-body p, .c_reports_show .media-body p {
  font-size: 12px;
}

@media not print {
  /* line 1087, app/assets/stylesheets/tenant/application.css.scss */
  .print-only {
    display: none;
  }
}

/* line 1092, app/assets/stylesheets/tenant/application.css.scss */
.new-report-comment {
  margin-bottom: 20px;
}

/* line 1097, app/assets/stylesheets/tenant/application.css.scss */
.radio.select-checklist {
  margin-left: 20px;
}

/* line 1101, app/assets/stylesheets/tenant/application.css.scss */
.search-form {
  margin-right: 10px;
  padding-right: 0;
}

/* line 1104, app/assets/stylesheets/tenant/application.css.scss */
.search-form li:not(.dropdown-header) {
  width: 100%;
}

/* line 1107, app/assets/stylesheets/tenant/application.css.scss */
.search-form li.dropdown-header {
  margin-left: 10px;
}

/* line 1110, app/assets/stylesheets/tenant/application.css.scss */
.search-form ul.dropdown-menu {
  left: 0;
}

/* line 1113, app/assets/stylesheets/tenant/application.css.scss */
.search-form ul li a {
  height: auto;
  line-height: 2.5em;
  border: none;
  width: 100%;
  padding: 0 10px 0 10px;
  display: inline-block;
  margin-bottom: 5px;
}

/* line 1122, app/assets/stylesheets/tenant/application.css.scss */
.search-form .subtitle {
  padding-top: 5px;
  padding-left: 25px;
}

/* Undoing the bad css being applied by JQuery File Upload onto all input elements*/
/* line 1129, app/assets/stylesheets/tenant/application.css.scss */
.fileinput-button input {
  position: static;
  top: 0;
  right: 0;
  margin: 0;
  border: solid transparent;
  border-width: medium;
  opacity: 1;
  filter: alpha(opacity=0);
  -moz-transform: translate(-300px, 0) scale(4);
  direction: ltr;
  cursor: auto;
}

/* re-apply it nicely */
/* line 1144, app/assets/stylesheets/tenant/application.css.scss */
.fileinput-button input[type=file] {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  border: solid transparent;
  border-width: 0 0 100px 200px;
  opacity: 0;
  filter: alpha(opacity=0);
  -moz-transform: translate(-300px, 0) scale(4);
  direction: ltr;
  cursor: pointer;
}

/* Not removing 'fa' styling yet in case of error somewhere */
/* line 1158, app/assets/stylesheets/tenant/application.css.scss */
.fa::before {
  font-family: FontAwesome !important;
}

/* line 1162, app/assets/stylesheets/tenant/application.css.scss */
.fa {
  font-family: inherit !important;
}

/* Dashboard */
/* line 1168, app/assets/stylesheets/tenant/application.css.scss */
#assignee_select_dashboard {
  width: 100% !important;
}

/* line 1172, app/assets/stylesheets/tenant/application.css.scss */
.glyphicon.glyphicon-exclamation-sign {
  color: orange;
}

/* line 1176, app/assets/stylesheets/tenant/application.css.scss */
.blue-check-mail {
  color: #00b2c0;
}

/* line 1180, app/assets/stylesheets/tenant/application.css.scss */
.red-check-mail {
  color: #bd0202;
  font-size: 20px;
}

/* line 1185, app/assets/stylesheets/tenant/application.css.scss */
.red-icon {
  color: #bd0202 !important;
  background-size: contain;
  display: inline-block;
  position: relative;
  font-size: 33px;
  width: 100%;
  text-decoration: none;
  vertical-align: middle;
}

/* line 1196, app/assets/stylesheets/tenant/application.css.scss */
.blue-icon {
  color: #00b2c0 !important;
  background-size: contain;
  display: inline-block;
  position: relative;
  font-size: 33px;
  width: 100%;
  text-decoration: none;
  vertical-align: middle;
}

/* Filters */
/* line 1208, app/assets/stylesheets/tenant/application.css.scss */
.border-dashboard-table-style {
  width: 100%;
  border-style: solid;
  border-width: 1px 0px 0px 0px;
  border-top-color: #4D4D4D;
}

/* line 1215, app/assets/stylesheets/tenant/application.css.scss */
.dashboard-dropdown {
  position: relative;
  top: 30px;
  z-index: 1;
  margin-top: -24px;
}

/* line 1222, app/assets/stylesheets/tenant/application.css.scss */
.btn-filter-dropdown {
  border: solid 1px #383838;
  height: 35px;
  width: 105px;
  color: #EFEFEF;
  background: #4D4D4D;
  font-size: 15px;
  padding-top: 5px;
  padding-bottom: 5px;
  text-align: center;
  z-index: 1;
  position: relative;
  margin-left: 97.5%;
  right: 105px;
}

/* line 1240, app/assets/stylesheets/tenant/application.css.scss */
.btn-filter-dropdown:active, .btn-filter-dropdown.active {
  border: solid 1px;
  border-top-color: black;
  border-right-color: black;
  border-left-color: black;
  border-bottom-color: black;
  /* was #EFEFEF, close to filter body, but not overlapping, so put to black... */
  background: #EFEFEF;
  color: black;
}

/* line 1251, app/assets/stylesheets/tenant/application.css.scss */
.filter-dropdown-menu {
  width: 95%;
  margin-left: 2.5%;
  margin-top: 1px;
  background: #F5F5F5;
  padding: 0px;
  height: 0px;
  z-index: 1;
}

/* line 1262, app/assets/stylesheets/tenant/application.css.scss */
.filter-outline {
  border: solid 1px black;
  margin: 0px;
  width: 100%;
}

/* line 1268, app/assets/stylesheets/tenant/application.css.scss */
#show-dashboard {
  display: inline;
  width: 100%;
}

/* line 1273, app/assets/stylesheets/tenant/application.css.scss */
#hide-dashboard {
  display: none;
  width: 100%;
}

/* line 1278, app/assets/stylesheets/tenant/application.css.scss */
#map-hide-dashboard {
  display: inline;
  width: 100%;
}

/* dashboard section end */
/* line 1285, app/assets/stylesheets/tenant/application.css.scss */
#myModal .modal-body {
  max-height: 80vh !important;
  max-height: calc(100vh - 212px) !important;
  overflow-y: auto !important;
}

/* line 1290, app/assets/stylesheets/tenant/application.css.scss */
.media.Photo img {
  display: block;
  max-width: 100%;
  height: auto;
  margin-left: auto !important;
  margin-right: auto;
}

/* line 1297, app/assets/stylesheets/tenant/application.css.scss */
.inline-photo {
  max-width: 49%;
  max-width: calc(49% - 10px);
  padding: 10px;
}

/* line 1305, app/assets/stylesheets/tenant/application.css.scss */
#search-box {
  min-width: 300px;
  width: 80%;
}

/* line 1310, app/assets/stylesheets/tenant/application.css.scss */
.box.search-results-dropdown {
  display: none;
  min-width: 300px;
  width: 80%;
}

/* line 1316, app/assets/stylesheets/tenant/application.css.scss */
.box-content.search-results-dropdown {
  display: none;
}

/* line 1320, app/assets/stylesheets/tenant/application.css.scss */
.box.bug-search-results-dropdown {
  text-align: center;
  width: 100%;
  border: solid 1px black;
  display: none;
  padding: 1px 0px 0px 0px;
}

/* line 1328, app/assets/stylesheets/tenant/application.css.scss */
.box-content.bug-search-results-dropdown {
  width: 100%;
  padding: 3px 5px;
  display: none;
}

/* line 1334, app/assets/stylesheets/tenant/application.css.scss */
#search-results {
  list-style-type: none;
  margin-top: 0px;
  margin-bottom: 2px;
}

/* line 1339, app/assets/stylesheets/tenant/application.css.scss */
#search-results li {
  font-size: 10pt;
  padding-left: 10px;
  word-wrap: normal;
  color: #8D8D8D;
  font-family: Arial;
}

/* line 1347, app/assets/stylesheets/tenant/application.css.scss */
#close-suggestions {
  float: right;
  display: inline-block;
  font-weight: bold;
  padding: 2px;
  cursor: context-menu;
}

/* line 1353, app/assets/stylesheets/tenant/application.css.scss */
#close-suggestions:hover {
  color: grey;
}

/* line 1358, app/assets/stylesheets/tenant/application.css.scss */
.search_highlight {
  background-color: #FBFB00;
}

/* line 1362, app/assets/stylesheets/tenant/application.css.scss */
.table-z-index {
  z-index: 0;
}

/* line 1366, app/assets/stylesheets/tenant/application.css.scss */
#site-submit-button {
  display: none;
}

/* line 1370, app/assets/stylesheets/tenant/application.css.scss */
ul.site_owners_list {
  list-style-type: none;
  padding: 0 5%;
  margin: 0;
}

/* line 1374, app/assets/stylesheets/tenant/application.css.scss */
ul.site_owners_list #limit-size {
  padding: 0;
}

/* line 1379, app/assets/stylesheets/tenant/application.css.scss */
.qrid-op-mssg {
  font-size: 14px;
  text-align: center;
}

/* line 1384, app/assets/stylesheets/tenant/application.css.scss */
.secondary-menu hr {
  margin: 0;
  border: 2px #000 solid;
}

/* line 1389, app/assets/stylesheets/tenant/application.css.scss */
.branding .form-control.pick-a-color {
  display: inline-block;
  width: auto;
}

/* line 1395, app/assets/stylesheets/tenant/application.css.scss */
.branding-emails-show td, .branding-emails-edit td {
  border: 1px solid black;
  text-align: center;
  padding: 5px;
}

/* line 1401, app/assets/stylesheets/tenant/application.css.scss */
.branding-emails-show th, .branding-emails-edit th {
  border: 1px solid black;
  text-align: center;
  padding: 5px;
}

/* line 1408, app/assets/stylesheets/tenant/application.css.scss */
.branding-emails-show > td {
  width: 60%;
}

/* line 1410, app/assets/stylesheets/tenant/application.css.scss */
.email-draft {
  width: 50%;
  padding: 0px;
}

/* line 1415, app/assets/stylesheets/tenant/application.css.scss */
.email-live {
  width: 35%;
}

/* line 1420, app/assets/stylesheets/tenant/application.css.scss */
.badge-default {
  background-color: #777777;
}

/* line 7, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_labels.scss */
.badge-default[href]:hover, .badge-default[href]:focus {
  background-color: #5e5e5e;
}

/* line 1424, app/assets/stylesheets/tenant/application.css.scss */
.badge-primary {
  background-color: #337ab7;
}

/* line 7, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_labels.scss */
.badge-primary[href]:hover, .badge-primary[href]:focus {
  background-color: #286090;
}

/* line 1428, app/assets/stylesheets/tenant/application.css.scss */
.badge-success {
  background-color: #5cb85c;
}

/* line 7, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_labels.scss */
.badge-success[href]:hover, .badge-success[href]:focus {
  background-color: #449d44;
}

/* line 1432, app/assets/stylesheets/tenant/application.css.scss */
.badge-info {
  background-color: #5bc0de;
}

/* line 7, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_labels.scss */
.badge-info[href]:hover, .badge-info[href]:focus {
  background-color: #31b0d5;
}

/* line 1436, app/assets/stylesheets/tenant/application.css.scss */
.badge-warning {
  background-color: #f0ad4e;
}

/* line 7, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_labels.scss */
.badge-warning[href]:hover, .badge-warning[href]:focus {
  background-color: #ec971f;
}

/* line 1440, app/assets/stylesheets/tenant/application.css.scss */
.badge-danger {
  background-color: #d9534f;
}

/* line 7, vendor/bundle/ruby/3.3.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_labels.scss */
.badge-danger[href]:hover, .badge-danger[href]:focus {
  background-color: #c9302c;
}

/* line 1444, app/assets/stylesheets/tenant/application.css.scss */
.d-inline-block {
  display: inline-block !important;
}

/* line 1448, app/assets/stylesheets/tenant/application.css.scss */
.comment {
  padding: 10px;
  border-top: 1px dotted black;
  border-bottom: 1px dotted black;
}
