/* BASICS */

.no-select {
  box-shadow: 4px 5px rgba(255,165,0, 0.6);
}

@media print
{    
    .no-print, .no-print *
    {
        display: none !important;
    }
}

.CodeMirror {
  /* Set height, width, borders, and global font properties here */
  font-family: monospace;
  height: 300px;
  color: black;
}

/* PADDING */

.CodeMirror-lines {
  padding: 4px 0; /* Vertical padding around content */
}
.CodeMirror pre {
  padding: 0 4px; /* Horizontal padding of content */
}

.CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {
  background-color: white; /* The little square between H and V scrollbars */
}

/* GUTTER */

.CodeMirror-gutters {
  border-right: 1px solid #ddd;
  background-color: #f7f7f7;
  white-space: nowrap;
}
.CodeMirror-linenumbers {}
.CodeMirror-linenumber {
  padding: 0 3px 0 5px;
  min-width: 20px;
  text-align: right;
  color: #999;
  white-space: nowrap;
}

.CodeMirror-guttermarker { color: black; }
.CodeMirror-guttermarker-subtle { color: #999; }

/* CURSOR */

.CodeMirror-cursor {
  border-left: 1px solid black;
  border-right: none;
  width: 0;
}
/* Shown when moving in bi-directional text */
.CodeMirror div.CodeMirror-secondarycursor {
  border-left: 1px solid silver;
}
.cm-fat-cursor .CodeMirror-cursor {
  width: auto;
  border: 0 !important;
  background: #7e7;
}
.cm-fat-cursor div.CodeMirror-cursors {
  z-index: 1;
}

.cm-animate-fat-cursor {
  width: auto;
  border: 0;
  -webkit-animation: blink 1.06s steps(1) infinite;
  -moz-animation: blink 1.06s steps(1) infinite;
  animation: blink 1.06s steps(1) infinite;
  background-color: #7e7;
}
@-moz-keyframes blink {
  0% {}
  50% { background-color: transparent; }
  100% {}
}
@-webkit-keyframes blink {
  0% {}
  50% { background-color: transparent; }
  100% {}
}
@keyframes blink {
  0% {}
  50% { background-color: transparent; }
  100% {}
}

/* Can style cursor different in overwrite (non-insert) mode */
.CodeMirror-overwrite .CodeMirror-cursor {}

.cm-tab { display: inline-block; text-decoration: inherit; }

.CodeMirror-rulers {
  position: absolute;
  left: 0; right: 0; top: -50px; bottom: -20px;
  overflow: hidden;
}
.CodeMirror-ruler {
  border-left: 1px solid #ccc;
  top: 0; bottom: 0;
  position: absolute;
}

/* DEFAULT THEME */

.cm-s-default .cm-header {color: blue;}
.cm-s-default .cm-quote {color: #090;}
.cm-negative {color: #d44;}
.cm-positive {color: #292;}
.cm-header, .cm-strong {font-weight: bold;}
.cm-em {font-style: italic;}
.cm-link {text-decoration: underline;}
.cm-strikethrough {text-decoration: line-through;}

.cm-s-default .cm-keyword {color: #708;}
.cm-s-default .cm-atom {color: #219;}
.cm-s-default .cm-number {color: #164;}
.cm-s-default .cm-def {color: #00f;}
.cm-s-default .cm-variable,
.cm-s-default .cm-punctuation,
.cm-s-default .cm-property,
.cm-s-default .cm-operator {}
.cm-s-default .cm-variable-2 {color: #05a;}
.cm-s-default .cm-variable-3 {color: #085;}
.cm-s-default .cm-comment {color: #a50;}
.cm-s-default .cm-string {color: #a11;}
.cm-s-default .cm-string-2 {color: #f50;}
.cm-s-default .cm-meta {color: #555;}
.cm-s-default .cm-qualifier {color: #555;}
.cm-s-default .cm-builtin {color: #30a;}
.cm-s-default .cm-bracket {color: #997;}
.cm-s-default .cm-tag {color: #170;}
.cm-s-default .cm-attribute {color: #00c;}
.cm-s-default .cm-hr {color: #999;}
.cm-s-default .cm-link {color: #00c;}

.cm-s-default .cm-error {color: #f00;}
.cm-invalidchar {color: #f00;}

.CodeMirror-composing { border-bottom: 2px solid; }

/* Default styles for common addons */

div.CodeMirror span.CodeMirror-matchingbracket {color: #0f0;}
div.CodeMirror span.CodeMirror-nonmatchingbracket {color: #f22;}
.CodeMirror-matchingtag { background: rgba(255, 150, 0, .3); }
.CodeMirror-activeline-background {background: #e8f2ff;}

/* STOP */

/* The rest of this file contains styles related to the mechanics of
   the editor. You probably shouldn't touch them. */

.CodeMirror {
  position: relative;
  overflow: hidden;
  background: white;
}

.CodeMirror-scroll {
  overflow: scroll !important; /* Things will break if this is overridden */
  /* 30px is the magic margin used to hide the element's real scrollbars */
  /* See overflow: hidden in .CodeMirror */
  margin-bottom: -30px; margin-right: -30px;
  padding-bottom: 30px;
  height: 100%;
  outline: none; /* Prevent dragging from highlighting the element */
  position: relative;
}
.CodeMirror-sizer {
  position: relative;
  border-right: 30px solid transparent;
}

/* The fake, visible scrollbars. Used to force redraw during scrolling
   before actual scrolling happens, thus preventing shaking and
   flickering artifacts. */
.CodeMirror-vscrollbar, .CodeMirror-hscrollbar, .CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {
  position: absolute;
  z-index: 6;
  display: none;
}
.CodeMirror-vscrollbar {
  right: 0; top: 0;
  overflow-x: hidden;
  overflow-y: scroll;
}
.CodeMirror-hscrollbar {
  bottom: 0; left: 0;
  overflow-y: hidden;
  overflow-x: scroll;
}
.CodeMirror-scrollbar-filler {
  right: 0; bottom: 0;
}
.CodeMirror-gutter-filler {
  left: 0; bottom: 0;
}

.CodeMirror-gutters {
  position: absolute; left: 0; top: 0;
  min-height: 100%;
  z-index: 3;
}
.CodeMirror-gutter {
  white-space: normal;
  height: 100%;
  display: inline-block;
  vertical-align: top;
  margin-bottom: -30px;
  /* Hack to make IE7 behave */
  *zoom:1;
  *display:inline;
}
.CodeMirror-gutter-wrapper {
  position: absolute;
  z-index: 4;
  background: none !important;
  border: none !important;
}
.CodeMirror-gutter-background {
  position: absolute;
  top: 0; bottom: 0;
  z-index: 4;
}
.CodeMirror-gutter-elt {
  position: absolute;
  cursor: default;
  z-index: 4;
}
.CodeMirror-gutter-wrapper {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.CodeMirror-lines {
  cursor: text;
  min-height: 1px; /* prevents collapsing before first draw */
}
.CodeMirror pre {
  /* Reset some styles that the rest of the page might have set */
  -moz-border-radius: 0; -webkit-border-radius: 0; border-radius: 0;
  border-width: 0;
  background: transparent;
  font-family: inherit;
  font-size: inherit;
  margin: 0;
  white-space: pre;
  word-wrap: normal;
  line-height: inherit;
  color: inherit;
  z-index: 2;
  position: relative;
  overflow: visible;
  -webkit-tap-highlight-color: transparent;
  -webkit-font-variant-ligatures: none;
  font-variant-ligatures: none;
}
.CodeMirror-wrap pre {
  word-wrap: break-word;
  white-space: pre-wrap;
  word-break: normal;
}

.CodeMirror-linebackground {
  position: absolute;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 0;
}

.CodeMirror-linewidget {
  position: relative;
  z-index: 2;
  overflow: auto;
}

.CodeMirror-widget {}

.CodeMirror-code {
  outline: none;
}

/* Force content-box sizing for the elements where we expect it */
.CodeMirror-scroll,
.CodeMirror-sizer,
.CodeMirror-gutter,
.CodeMirror-gutters,
.CodeMirror-linenumber {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

.CodeMirror-measure {
  position: absolute;
  width: 100%;
  height: 0;
  overflow: hidden;
  visibility: hidden;
}

.CodeMirror-cursor {
  position: absolute;
  pointer-events: none;
}
.CodeMirror-measure pre { position: static; }

div.CodeMirror-cursors {
  visibility: hidden;
  position: relative;
  z-index: 3;
}
div.CodeMirror-dragcursors {
  visibility: visible;
}

.CodeMirror-focused div.CodeMirror-cursors {
  visibility: visible;
}

.CodeMirror-selected { background: #d9d9d9; }
.CodeMirror-focused .CodeMirror-selected { background: #d7d4f0; }
.CodeMirror-crosshair { cursor: crosshair; }
.CodeMirror-line::selection, .CodeMirror-line > span::selection, .CodeMirror-line > span > span::selection { background: #d7d4f0; }
.CodeMirror-line::-moz-selection, .CodeMirror-line > span::-moz-selection, .CodeMirror-line > span > span::-moz-selection { background: #d7d4f0; }

.cm-searching {
  background: #ffa;
  background: rgba(255, 255, 0, .4);
}

/* IE7 hack to prevent it from returning funny offsetTops on the spans */
.CodeMirror span { *vertical-align: text-bottom; }

/* Used to force a border model for a node */
.cm-force-border { padding-right: .1px; }

@media print {
  /* Hide the cursor when printing */
  .CodeMirror div.CodeMirror-cursors {
    visibility: hidden;
  }
}

/* See issue #2901 */
.cm-tab-wrap-hack:after { content: ''; }

/* Help users use markselection to safely style text background */
span.CodeMirror-selectedtext { background: none; }
/* Based on Sublime Text's Monokai theme */


.cm-s-monokai.CodeMirror { background: #272822; color: #f8f8f2; }
.cm-s-monokai div.CodeMirror-selected { background: #49483E; }
.cm-s-monokai .CodeMirror-line::selection, .cm-s-monokai .CodeMirror-line > span::selection, .cm-s-monokai .CodeMirror-line > span > span::selection { background: rgba(73, 72, 62, .99); }
.cm-s-monokai .CodeMirror-line::-moz-selection, .cm-s-monokai .CodeMirror-line > span::-moz-selection, .cm-s-monokai .CodeMirror-line > span > span::-moz-selection { background: rgba(73, 72, 62, .99); }
.cm-s-monokai .CodeMirror-gutters { background: #272822; border-right: 0px; }
.cm-s-monokai .CodeMirror-guttermarker { color: white; }
.cm-s-monokai .CodeMirror-guttermarker-subtle { color: #d0d0d0; }
.cm-s-monokai .CodeMirror-linenumber { color: #d0d0d0; }
.cm-s-monokai .CodeMirror-cursor { border-left: 1px solid #f8f8f0; }

.cm-s-monokai span.cm-comment { color: #75715e; }
.cm-s-monokai span.cm-atom { color: #ae81ff; }
.cm-s-monokai span.cm-number { color: #ae81ff; }

.cm-s-monokai span.cm-property, .cm-s-monokai span.cm-attribute { color: #a6e22e; }
.cm-s-monokai span.cm-keyword { color: #f92672; }
.cm-s-monokai span.cm-builtin { color: #66d9ef; }
.cm-s-monokai span.cm-string { color: #e6db74; }

.cm-s-monokai span.cm-variable { color: #f8f8f2; }
.cm-s-monokai span.cm-variable-2 { color: #9effff; }
.cm-s-monokai span.cm-variable-3 { color: #66d9ef; }
.cm-s-monokai span.cm-def { color: #fd971f; }
.cm-s-monokai span.cm-bracket { color: #f8f8f2; }
.cm-s-monokai span.cm-tag { color: #f92672; }
.cm-s-monokai span.cm-header { color: #ae81ff; }
.cm-s-monokai span.cm-link { color: #ae81ff; }
.cm-s-monokai span.cm-error { background: #f92672; color: #f8f8f0; }

.cm-s-monokai .CodeMirror-activeline-background { background: #373831; }
.cm-s-monokai .CodeMirror-matchingbracket {
  text-decoration: underline;
  color: white !important;
}
.mt-hotkey-el {
  position: relative; }

a[data-keybinding] .mt-hotkey-hint {
  display: block;
  float: right;
  position: absolute;
  top: -4px;
  right: -4px;
  z-index: 999;
  font: bold 13px/1em sans-serif;
  text-decoration: none;
  text-indent: 0;
  text-align: center;
  vertical-align: center;
  margin: 0;
  padding: 0.3ex 0.7ex;
  background: beige;
  color: black;
  text-shadow: 1px 1px 0 white;
  box-shadow: 1px 1px 0 #333333;
  border-radius: 5px;
  border: 1px solid #888888;
  opacity: 0.75;
  -webkit-transition: all 0.15s linear;
  -moz-transition: all 0.15s linear;
  -o-transition: all 0.15s linear;
  -ms-transition: all 0.15s linear;
  transition: all 0.15s linear; }
  a[data-keybinding] .mt-hotkey-hint:hover {
    background: white;
    opacity: 1;
    -webkit-transform: scale(1.25);
    -moz-transform: scale(1.25);
    -o-transform: scale(1.25);
    -ms-transform: scale(1.25);
    transform: scale(1.25); }
/* line 1, /opt/marast/vendor/bundle/ruby/2.6.0/gems/jquery-datatables-rails-3.4.0/app/assets/stylesheets/dataTables/bootstrap/3/jquery.dataTables.bootstrap.scss */
div.dataTables_length label {
  font-weight: normal;
  text-align: left;
  white-space: nowrap;
}

/* line 7, /opt/marast/vendor/bundle/ruby/2.6.0/gems/jquery-datatables-rails-3.4.0/app/assets/stylesheets/dataTables/bootstrap/3/jquery.dataTables.bootstrap.scss */
div.dataTables_length select {
  width: 75px;
  display: inline-block;
}

/* line 12, /opt/marast/vendor/bundle/ruby/2.6.0/gems/jquery-datatables-rails-3.4.0/app/assets/stylesheets/dataTables/bootstrap/3/jquery.dataTables.bootstrap.scss */
div.dataTables_filter {
  text-align: right;
}

/* line 16, /opt/marast/vendor/bundle/ruby/2.6.0/gems/jquery-datatables-rails-3.4.0/app/assets/stylesheets/dataTables/bootstrap/3/jquery.dataTables.bootstrap.scss */
div.dataTables_filter label {
  font-weight: normal;
  white-space: nowrap;
  text-align: left;
}

/* line 22, /opt/marast/vendor/bundle/ruby/2.6.0/gems/jquery-datatables-rails-3.4.0/app/assets/stylesheets/dataTables/bootstrap/3/jquery.dataTables.bootstrap.scss */
div.dataTables_filter input {
  margin-left: 0.5em;
  display: inline-block;
  width: auto;
}

/* line 28, /opt/marast/vendor/bundle/ruby/2.6.0/gems/jquery-datatables-rails-3.4.0/app/assets/stylesheets/dataTables/bootstrap/3/jquery.dataTables.bootstrap.scss */
div.dataTables_info {
  padding-top: 8px;
  white-space: nowrap;
}

/* line 33, /opt/marast/vendor/bundle/ruby/2.6.0/gems/jquery-datatables-rails-3.4.0/app/assets/stylesheets/dataTables/bootstrap/3/jquery.dataTables.bootstrap.scss */
div.dataTables_paginate {
  margin: 0;
  white-space: nowrap;
  text-align: right;
}

/* line 39, /opt/marast/vendor/bundle/ruby/2.6.0/gems/jquery-datatables-rails-3.4.0/app/assets/stylesheets/dataTables/bootstrap/3/jquery.dataTables.bootstrap.scss */
div.dataTables_paginate ul.pagination {
  margin: 2px 0;
  white-space: nowrap;
}

@media screen and (max-width: 767px) {
  /* line 45, /opt/marast/vendor/bundle/ruby/2.6.0/gems/jquery-datatables-rails-3.4.0/app/assets/stylesheets/dataTables/bootstrap/3/jquery.dataTables.bootstrap.scss */
  div.dataTables_wrapper > div.row > div,
  div.dataTables_length,
  div.dataTables_filter,
  div.dataTables_info,
  div.dataTables_paginate {
    text-align: center;
  }

  /* line 53, /opt/marast/vendor/bundle/ruby/2.6.0/gems/jquery-datatables-rails-3.4.0/app/assets/stylesheets/dataTables/bootstrap/3/jquery.dataTables.bootstrap.scss */
  div.DTTT {
    margin-bottom: 0.5em;
  }
}
/* line 59, /opt/marast/vendor/bundle/ruby/2.6.0/gems/jquery-datatables-rails-3.4.0/app/assets/stylesheets/dataTables/bootstrap/3/jquery.dataTables.bootstrap.scss */
table.dataTable td,
table.dataTable th {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

/* line 67, /opt/marast/vendor/bundle/ruby/2.6.0/gems/jquery-datatables-rails-3.4.0/app/assets/stylesheets/dataTables/bootstrap/3/jquery.dataTables.bootstrap.scss */
table.dataTable {
  clear: both;
  margin-top: 6px !important;
  margin-bottom: 6px !important;
  max-width: none !important;
}

/* line 74, /opt/marast/vendor/bundle/ruby/2.6.0/gems/jquery-datatables-rails-3.4.0/app/assets/stylesheets/dataTables/bootstrap/3/jquery.dataTables.bootstrap.scss */
table.dataTable thead .sorting,
table.dataTable thead .sorting_asc,
table.dataTable thead .sorting_desc,
table.dataTable thead .sorting_asc_disabled,
table.dataTable thead .sorting_desc_disabled {
  cursor: pointer;
  position: relative;
}

/* line 83, /opt/marast/vendor/bundle/ruby/2.6.0/gems/jquery-datatables-rails-3.4.0/app/assets/stylesheets/dataTables/bootstrap/3/jquery.dataTables.bootstrap.scss */
table.dataTable thead .sorting:after,
table.dataTable thead .sorting_asc:after,
table.dataTable thead .sorting_desc:after {
  position: absolute;
  top: 8px;
  right: 8px;
  display: block;
  font-family: 'Glyphicons Halflings';
  opacity: 0.5;
}

/* line 93, /opt/marast/vendor/bundle/ruby/2.6.0/gems/jquery-datatables-rails-3.4.0/app/assets/stylesheets/dataTables/bootstrap/3/jquery.dataTables.bootstrap.scss */
table.dataTable thead .sorting:after {
  opacity: 0.2;
  content: "\e150";
  /* sort */
}

/* line 97, /opt/marast/vendor/bundle/ruby/2.6.0/gems/jquery-datatables-rails-3.4.0/app/assets/stylesheets/dataTables/bootstrap/3/jquery.dataTables.bootstrap.scss */
table.dataTable thead .sorting_asc:after {
  content: "\e155";
  /* sort-by-attributes */
}

/* line 100, /opt/marast/vendor/bundle/ruby/2.6.0/gems/jquery-datatables-rails-3.4.0/app/assets/stylesheets/dataTables/bootstrap/3/jquery.dataTables.bootstrap.scss */
table.dataTable thead .sorting_desc:after {
  content: "\e156";
  /* sort-by-attributes-alt */
}

/* line 103, /opt/marast/vendor/bundle/ruby/2.6.0/gems/jquery-datatables-rails-3.4.0/app/assets/stylesheets/dataTables/bootstrap/3/jquery.dataTables.bootstrap.scss */
div.dataTables_scrollBody table.dataTable thead .sorting:after,
div.dataTables_scrollBody table.dataTable thead .sorting_asc:after,
div.dataTables_scrollBody table.dataTable thead .sorting_desc:after {
  display: none;
}

/* line 109, /opt/marast/vendor/bundle/ruby/2.6.0/gems/jquery-datatables-rails-3.4.0/app/assets/stylesheets/dataTables/bootstrap/3/jquery.dataTables.bootstrap.scss */
table.dataTable thead .sorting_asc_disabled:after,
table.dataTable thead .sorting_desc_disabled:after {
  color: #eee;
}

/* line 114, /opt/marast/vendor/bundle/ruby/2.6.0/gems/jquery-datatables-rails-3.4.0/app/assets/stylesheets/dataTables/bootstrap/3/jquery.dataTables.bootstrap.scss */
table.dataTable thead > tr > th {
  padding-right: 30px;
}

/* line 118, /opt/marast/vendor/bundle/ruby/2.6.0/gems/jquery-datatables-rails-3.4.0/app/assets/stylesheets/dataTables/bootstrap/3/jquery.dataTables.bootstrap.scss */
table.dataTable th:active {
  outline: none;
}

/* Condensed */
/* line 124, /opt/marast/vendor/bundle/ruby/2.6.0/gems/jquery-datatables-rails-3.4.0/app/assets/stylesheets/dataTables/bootstrap/3/jquery.dataTables.bootstrap.scss */
table.dataTable.table-condensed thead > tr > th {
  padding-right: 20px;
}

/* line 128, /opt/marast/vendor/bundle/ruby/2.6.0/gems/jquery-datatables-rails-3.4.0/app/assets/stylesheets/dataTables/bootstrap/3/jquery.dataTables.bootstrap.scss */
table.dataTable.table-condensed thead .sorting:after,
table.dataTable.table-condensed thead .sorting_asc:after,
table.dataTable.table-condensed thead .sorting_desc:after {
  top: 6px;
  right: 6px;
}

/* Scrolling */
/* line 136, /opt/marast/vendor/bundle/ruby/2.6.0/gems/jquery-datatables-rails-3.4.0/app/assets/stylesheets/dataTables/bootstrap/3/jquery.dataTables.bootstrap.scss */
div.dataTables_scrollHead table {
  margin-bottom: 0 !important;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

/* line 142, /opt/marast/vendor/bundle/ruby/2.6.0/gems/jquery-datatables-rails-3.4.0/app/assets/stylesheets/dataTables/bootstrap/3/jquery.dataTables.bootstrap.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 148, /opt/marast/vendor/bundle/ruby/2.6.0/gems/jquery-datatables-rails-3.4.0/app/assets/stylesheets/dataTables/bootstrap/3/jquery.dataTables.bootstrap.scss */
div.dataTables_scrollBody table {
  border-top: none;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/* line 154, /opt/marast/vendor/bundle/ruby/2.6.0/gems/jquery-datatables-rails-3.4.0/app/assets/stylesheets/dataTables/bootstrap/3/jquery.dataTables.bootstrap.scss */
div.dataTables_scrollBody tbody tr:first-child th,
div.dataTables_scrollBody tbody tr:first-child td {
  border-top: none;
}

/* line 159, /opt/marast/vendor/bundle/ruby/2.6.0/gems/jquery-datatables-rails-3.4.0/app/assets/stylesheets/dataTables/bootstrap/3/jquery.dataTables.bootstrap.scss */
div.dataTables_scrollFoot table {
  margin-top: 0 !important;
  border-top: none;
}

/* Frustratingly the border-collapse:collapse used by Bootstrap makes the column
   width calculations when using scrolling impossible to align columns. We have
   to use separate
 */
/* line 168, /opt/marast/vendor/bundle/ruby/2.6.0/gems/jquery-datatables-rails-3.4.0/app/assets/stylesheets/dataTables/bootstrap/3/jquery.dataTables.bootstrap.scss */
table.table-bordered.dataTable {
  border-collapse: separate !important;
}

/* line 171, /opt/marast/vendor/bundle/ruby/2.6.0/gems/jquery-datatables-rails-3.4.0/app/assets/stylesheets/dataTables/bootstrap/3/jquery.dataTables.bootstrap.scss */
table.table-bordered thead th,
table.table-bordered thead td {
  border-left-width: 0;
  border-top-width: 0;
}

/* line 176, /opt/marast/vendor/bundle/ruby/2.6.0/gems/jquery-datatables-rails-3.4.0/app/assets/stylesheets/dataTables/bootstrap/3/jquery.dataTables.bootstrap.scss */
table.table-bordered tbody th,
table.table-bordered tbody td {
  border-left-width: 0;
  border-bottom-width: 0;
}

/* line 181, /opt/marast/vendor/bundle/ruby/2.6.0/gems/jquery-datatables-rails-3.4.0/app/assets/stylesheets/dataTables/bootstrap/3/jquery.dataTables.bootstrap.scss */
table.table-bordered tfoot th,
table.table-bordered tfoot td {
  border-left-width: 0;
  border-bottom-width: 0;
}

/* line 186, /opt/marast/vendor/bundle/ruby/2.6.0/gems/jquery-datatables-rails-3.4.0/app/assets/stylesheets/dataTables/bootstrap/3/jquery.dataTables.bootstrap.scss */
table.table-bordered th:last-child,
table.table-bordered td:last-child {
  border-right-width: 0;
}

/* line 190, /opt/marast/vendor/bundle/ruby/2.6.0/gems/jquery-datatables-rails-3.4.0/app/assets/stylesheets/dataTables/bootstrap/3/jquery.dataTables.bootstrap.scss */
div.dataTables_scrollHead table.table-bordered {
  border-bottom-width: 0;
}

/*
 * TableTools styles
 */
/* line 200, /opt/marast/vendor/bundle/ruby/2.6.0/gems/jquery-datatables-rails-3.4.0/app/assets/stylesheets/dataTables/bootstrap/3/jquery.dataTables.bootstrap.scss */
.table.dataTable tbody tr.active td,
.table.dataTable tbody tr.active th {
  background-color: #08C;
  color: white;
}

/* line 206, /opt/marast/vendor/bundle/ruby/2.6.0/gems/jquery-datatables-rails-3.4.0/app/assets/stylesheets/dataTables/bootstrap/3/jquery.dataTables.bootstrap.scss */
.table.dataTable tbody tr.active:hover td,
.table.dataTable tbody tr.active:hover th {
  background-color: #0075b0 !important;
}

/* line 211, /opt/marast/vendor/bundle/ruby/2.6.0/gems/jquery-datatables-rails-3.4.0/app/assets/stylesheets/dataTables/bootstrap/3/jquery.dataTables.bootstrap.scss */
.table.dataTable tbody tr.active th > a,
.table.dataTable tbody tr.active td > a {
  color: white;
}

/* line 216, /opt/marast/vendor/bundle/ruby/2.6.0/gems/jquery-datatables-rails-3.4.0/app/assets/stylesheets/dataTables/bootstrap/3/jquery.dataTables.bootstrap.scss */
.table-striped.dataTable tbody tr.active:nth-child(odd) td,
.table-striped.dataTable tbody tr.active:nth-child(odd) th {
  background-color: #017ebc;
}

/* line 221, /opt/marast/vendor/bundle/ruby/2.6.0/gems/jquery-datatables-rails-3.4.0/app/assets/stylesheets/dataTables/bootstrap/3/jquery.dataTables.bootstrap.scss */
table.DTTT_selectable tbody tr {
  cursor: pointer;
}

/* line 225, /opt/marast/vendor/bundle/ruby/2.6.0/gems/jquery-datatables-rails-3.4.0/app/assets/stylesheets/dataTables/bootstrap/3/jquery.dataTables.bootstrap.scss */
div.DTTT .btn:hover {
  text-decoration: none !important;
}

/* line 229, /opt/marast/vendor/bundle/ruby/2.6.0/gems/jquery-datatables-rails-3.4.0/app/assets/stylesheets/dataTables/bootstrap/3/jquery.dataTables.bootstrap.scss */
ul.DTTT_dropdown.dropdown-menu {
  z-index: 2003;
}

/* line 233, /opt/marast/vendor/bundle/ruby/2.6.0/gems/jquery-datatables-rails-3.4.0/app/assets/stylesheets/dataTables/bootstrap/3/jquery.dataTables.bootstrap.scss */
ul.DTTT_dropdown.dropdown-menu a {
  color: #333 !important;
  /* needed only when demo_page.css is included */
}

/* line 237, /opt/marast/vendor/bundle/ruby/2.6.0/gems/jquery-datatables-rails-3.4.0/app/assets/stylesheets/dataTables/bootstrap/3/jquery.dataTables.bootstrap.scss */
ul.DTTT_dropdown.dropdown-menu li {
  position: relative;
}

/* line 241, /opt/marast/vendor/bundle/ruby/2.6.0/gems/jquery-datatables-rails-3.4.0/app/assets/stylesheets/dataTables/bootstrap/3/jquery.dataTables.bootstrap.scss */
ul.DTTT_dropdown.dropdown-menu li:hover a {
  background-color: #0088cc;
  color: white !important;
}

/* line 246, /opt/marast/vendor/bundle/ruby/2.6.0/gems/jquery-datatables-rails-3.4.0/app/assets/stylesheets/dataTables/bootstrap/3/jquery.dataTables.bootstrap.scss */
div.DTTT_collection_background {
  z-index: 2002;
}

/* TableTools information display */
/* line 251, /opt/marast/vendor/bundle/ruby/2.6.0/gems/jquery-datatables-rails-3.4.0/app/assets/stylesheets/dataTables/bootstrap/3/jquery.dataTables.bootstrap.scss */
div.DTTT_print_info {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 400px;
  height: 150px;
  margin-left: -200px;
  margin-top: -75px;
  text-align: center;
  color: #333;
  padding: 10px 30px;
  opacity: 0.95;
  background-color: white;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.5);
}

/* line 272, /opt/marast/vendor/bundle/ruby/2.6.0/gems/jquery-datatables-rails-3.4.0/app/assets/stylesheets/dataTables/bootstrap/3/jquery.dataTables.bootstrap.scss */
div.DTTT_print_info h6 {
  font-weight: normal;
  font-size: 28px;
  line-height: 28px;
  margin: 1em;
}

/* line 279, /opt/marast/vendor/bundle/ruby/2.6.0/gems/jquery-datatables-rails-3.4.0/app/assets/stylesheets/dataTables/bootstrap/3/jquery.dataTables.bootstrap.scss */
div.DTTT_print_info p {
  font-size: 14px;
  line-height: 20px;
}

/* line 284, /opt/marast/vendor/bundle/ruby/2.6.0/gems/jquery-datatables-rails-3.4.0/app/assets/stylesheets/dataTables/bootstrap/3/jquery.dataTables.bootstrap.scss */
div.dataTables_processing {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 60px;
  margin-left: -50%;
  margin-top: -25px;
  padding-top: 20px;
  padding-bottom: 20px;
  text-align: center;
  font-size: 1.2em;
  background-color: white;
  background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(25%, rgba(255, 255, 255, 0.9)), color-stop(75%, rgba(255, 255, 255, 0.9)), color-stop(100%, rgba(255, 255, 255, 0)));
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
  background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
  background: -ms-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
}

/*
 * FixedColumns styles
 */
/* line 310, /opt/marast/vendor/bundle/ruby/2.6.0/gems/jquery-datatables-rails-3.4.0/app/assets/stylesheets/dataTables/bootstrap/3/jquery.dataTables.bootstrap.scss */
div.DTFC_LeftHeadWrapper table,
div.DTFC_LeftFootWrapper table,
div.DTFC_RightHeadWrapper table,
div.DTFC_RightFootWrapper table,
table.DTFC_Cloned tr.even {
  background-color: white;
  margin-bottom: 0;
}

/* line 319, /opt/marast/vendor/bundle/ruby/2.6.0/gems/jquery-datatables-rails-3.4.0/app/assets/stylesheets/dataTables/bootstrap/3/jquery.dataTables.bootstrap.scss */
div.DTFC_RightHeadWrapper table,
div.DTFC_LeftHeadWrapper table {
  border-bottom: none !important;
  margin-bottom: 0 !important;
  border-top-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

/* line 328, /opt/marast/vendor/bundle/ruby/2.6.0/gems/jquery-datatables-rails-3.4.0/app/assets/stylesheets/dataTables/bootstrap/3/jquery.dataTables.bootstrap.scss */
div.DTFC_RightHeadWrapper table thead tr:last-child th:first-child,
div.DTFC_RightHeadWrapper table thead tr:last-child td:first-child,
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 336, /opt/marast/vendor/bundle/ruby/2.6.0/gems/jquery-datatables-rails-3.4.0/app/assets/stylesheets/dataTables/bootstrap/3/jquery.dataTables.bootstrap.scss */
div.DTFC_RightBodyWrapper table,
div.DTFC_LeftBodyWrapper table {
  border-top: none;
  margin: 0 !important;
}

/* line 342, /opt/marast/vendor/bundle/ruby/2.6.0/gems/jquery-datatables-rails-3.4.0/app/assets/stylesheets/dataTables/bootstrap/3/jquery.dataTables.bootstrap.scss */
div.DTFC_RightBodyWrapper tbody tr:first-child th,
div.DTFC_RightBodyWrapper tbody tr:first-child td,
div.DTFC_LeftBodyWrapper tbody tr:first-child th,
div.DTFC_LeftBodyWrapper tbody tr:first-child td {
  border-top: none;
}

/* line 349, /opt/marast/vendor/bundle/ruby/2.6.0/gems/jquery-datatables-rails-3.4.0/app/assets/stylesheets/dataTables/bootstrap/3/jquery.dataTables.bootstrap.scss */
div.DTFC_RightFootWrapper table,
div.DTFC_LeftFootWrapper table {
  border-top: none;
  margin-top: 0 !important;
}

/* line 356, /opt/marast/vendor/bundle/ruby/2.6.0/gems/jquery-datatables-rails-3.4.0/app/assets/stylesheets/dataTables/bootstrap/3/jquery.dataTables.bootstrap.scss */
div.DTFC_LeftBodyWrapper table.dataTable thead .sorting:after,
div.DTFC_LeftBodyWrapper table.dataTable thead .sorting_asc:after,
div.DTFC_LeftBodyWrapper table.dataTable thead .sorting_desc:after,
div.DTFC_RightBodyWrapper table.dataTable thead .sorting:after,
div.DTFC_RightBodyWrapper table.dataTable thead .sorting_asc:after,
div.DTFC_RightBodyWrapper table.dataTable thead .sorting_desc:after {
  display: none;
}

/*
 * FixedHeader styles
 */
/* line 369, /opt/marast/vendor/bundle/ruby/2.6.0/gems/jquery-datatables-rails-3.4.0/app/assets/stylesheets/dataTables/bootstrap/3/jquery.dataTables.bootstrap.scss */
div.FixedHeader_Cloned table {
  margin: 0 !important;
}
/* jQuery Countdown styles 2.0.0. */

.is-countdown {
	border: 1px solid #ccc;
	background-color: #eee;
}
.countdown-rtl {
	direction: rtl;
}
.countdown-holding span {
	color: #888;
}
.countdown-row {
	clear: both;
	width: 100%;
	padding: 0px 2px;
	text-align: center;
}
.countdown-show1 .countdown-section {
	width: 98%;
}
.countdown-show2 .countdown-section {
	width: 48%;
}
.countdown-show3 .countdown-section {
	width: 32.5%;
}
.countdown-show4 .countdown-section {
	width: 24.5%;
}
.countdown-show5 .countdown-section {
	width: 19.5%;
}
.countdown-show6 .countdown-section {
	width: 16.25%;
}
.countdown-show7 .countdown-section {
	width: 14%;
}
.countdown-section {
	display: block;
	float: left;
	font-size: 75%;
	text-align: center;
}
.countdown-amount {
    font-size: 200%;
}
.countdown-period {
    display: block;
}
.countdown-descr {
	display: block;
	width: 100%;
}
/*!
 * Datepicker for Bootstrap v1.9.0 (https://github.com/uxsolutions/bootstrap-datepicker)
 *
 * Licensed under the Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0)
 */


.datepicker {
  border-radius: 4px;
  direction: ltr;
}
.datepicker-inline {
  width: 220px;
}
.datepicker-rtl {
  direction: rtl;
}
.datepicker-rtl.dropdown-menu {
  left: auto;
}
.datepicker-rtl table tr td span {
  float: right;
}
.datepicker-dropdown {
  top: 0;
  left: 0;
  padding: 4px;
}
.datepicker-dropdown:before {
  content: '';
  display: inline-block;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid rgba(0, 0, 0, 0.15);
  border-top: 0;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  position: absolute;
}
.datepicker-dropdown:after {
  content: '';
  display: inline-block;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #fff;
  border-top: 0;
  position: absolute;
}
.datepicker-dropdown.datepicker-orient-left:before {
  left: 6px;
}
.datepicker-dropdown.datepicker-orient-left:after {
  left: 7px;
}
.datepicker-dropdown.datepicker-orient-right:before {
  right: 6px;
}
.datepicker-dropdown.datepicker-orient-right:after {
  right: 7px;
}
.datepicker-dropdown.datepicker-orient-bottom:before {
  top: -7px;
}
.datepicker-dropdown.datepicker-orient-bottom:after {
  top: -6px;
}
.datepicker-dropdown.datepicker-orient-top:before {
  bottom: -7px;
  border-bottom: 0;
  border-top: 7px solid rgba(0, 0, 0, 0.15);
}
.datepicker-dropdown.datepicker-orient-top:after {
  bottom: -6px;
  border-bottom: 0;
  border-top: 6px solid #fff;
}
.datepicker table {
  margin: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.datepicker table tr td,
.datepicker table tr th {
  text-align: center;
  width: 30px;
  height: 30px;
  border-radius: 4px;
  border: none;
}
.table-striped .datepicker table tr td,
.table-striped .datepicker table tr th {
  background-color: transparent;
}
.datepicker table tr td.old,
.datepicker table tr td.new {
  color: #777777;
}
.datepicker table tr td.day:hover,
.datepicker table tr td.focused {
  background: #eeeeee;
  cursor: pointer;
}
.datepicker table tr td.disabled,
.datepicker table tr td.disabled:hover {
  background: none;
  color: #777777;
  cursor: default;
}
.datepicker table tr td.highlighted {
  color: #000;
  background-color: #d9edf7;
  border-color: #85c5e5;
  border-radius: 0;
}
.datepicker table tr td.highlighted:focus,
.datepicker table tr td.highlighted.focus {
  color: #000;
  background-color: #afd9ee;
  border-color: #298fc2;
}
.datepicker table tr td.highlighted:hover {
  color: #000;
  background-color: #afd9ee;
  border-color: #52addb;
}
.datepicker table tr td.highlighted:active,
.datepicker table tr td.highlighted.active {
  color: #000;
  background-color: #afd9ee;
  border-color: #52addb;
}
.datepicker table tr td.highlighted:active:hover,
.datepicker table tr td.highlighted.active:hover,
.datepicker table tr td.highlighted:active:focus,
.datepicker table tr td.highlighted.active:focus,
.datepicker table tr td.highlighted:active.focus,
.datepicker table tr td.highlighted.active.focus {
  color: #000;
  background-color: #91cbe8;
  border-color: #298fc2;
}
.datepicker table tr td.highlighted.disabled:hover,
.datepicker table tr td.highlighted[disabled]:hover,
fieldset[disabled] .datepicker table tr td.highlighted:hover,
.datepicker table tr td.highlighted.disabled:focus,
.datepicker table tr td.highlighted[disabled]:focus,
fieldset[disabled] .datepicker table tr td.highlighted:focus,
.datepicker table tr td.highlighted.disabled.focus,
.datepicker table tr td.highlighted[disabled].focus,
fieldset[disabled] .datepicker table tr td.highlighted.focus {
  background-color: #d9edf7;
  border-color: #85c5e5;
}
.datepicker table tr td.highlighted.focused {
  background: #afd9ee;
}
.datepicker table tr td.highlighted.disabled,
.datepicker table tr td.highlighted.disabled:active {
  background: #d9edf7;
  color: #777777;
}
.datepicker table tr td.today {
  color: #000;
  background-color: #ffdb99;
  border-color: #ffb733;
}
.datepicker table tr td.today:focus,
.datepicker table tr td.today.focus {
  color: #000;
  background-color: #ffc966;
  border-color: #b37400;
}
.datepicker table tr td.today:hover {
  color: #000;
  background-color: #ffc966;
  border-color: #f59e00;
}
.datepicker table tr td.today:active,
.datepicker table tr td.today.active {
  color: #000;
  background-color: #ffc966;
  border-color: #f59e00;
}
.datepicker table tr td.today:active:hover,
.datepicker table tr td.today.active:hover,
.datepicker table tr td.today:active:focus,
.datepicker table tr td.today.active:focus,
.datepicker table tr td.today:active.focus,
.datepicker table tr td.today.active.focus {
  color: #000;
  background-color: #ffbc42;
  border-color: #b37400;
}
.datepicker table tr td.today.disabled:hover,
.datepicker table tr td.today[disabled]:hover,
fieldset[disabled] .datepicker table tr td.today:hover,
.datepicker table tr td.today.disabled:focus,
.datepicker table tr td.today[disabled]:focus,
fieldset[disabled] .datepicker table tr td.today:focus,
.datepicker table tr td.today.disabled.focus,
.datepicker table tr td.today[disabled].focus,
fieldset[disabled] .datepicker table tr td.today.focus {
  background-color: #ffdb99;
  border-color: #ffb733;
}
.datepicker table tr td.today.focused {
  background: #ffc966;
}
.datepicker table tr td.today.disabled,
.datepicker table tr td.today.disabled:active {
  background: #ffdb99;
  color: #777777;
}
.datepicker table tr td.range {
  color: #000;
  background-color: #eeeeee;
  border-color: #bbbbbb;
  border-radius: 0;
}
.datepicker table tr td.range:focus,
.datepicker table tr td.range.focus {
  color: #000;
  background-color: #d5d5d5;
  border-color: #7c7c7c;
}
.datepicker table tr td.range:hover {
  color: #000;
  background-color: #d5d5d5;
  border-color: #9d9d9d;
}
.datepicker table tr td.range:active,
.datepicker table tr td.range.active {
  color: #000;
  background-color: #d5d5d5;
  border-color: #9d9d9d;
}
.datepicker table tr td.range:active:hover,
.datepicker table tr td.range.active:hover,
.datepicker table tr td.range:active:focus,
.datepicker table tr td.range.active:focus,
.datepicker table tr td.range:active.focus,
.datepicker table tr td.range.active.focus {
  color: #000;
  background-color: #c3c3c3;
  border-color: #7c7c7c;
}
.datepicker table tr td.range.disabled:hover,
.datepicker table tr td.range[disabled]:hover,
fieldset[disabled] .datepicker table tr td.range:hover,
.datepicker table tr td.range.disabled:focus,
.datepicker table tr td.range[disabled]:focus,
fieldset[disabled] .datepicker table tr td.range:focus,
.datepicker table tr td.range.disabled.focus,
.datepicker table tr td.range[disabled].focus,
fieldset[disabled] .datepicker table tr td.range.focus {
  background-color: #eeeeee;
  border-color: #bbbbbb;
}
.datepicker table tr td.range.focused {
  background: #d5d5d5;
}
.datepicker table tr td.range.disabled,
.datepicker table tr td.range.disabled:active {
  background: #eeeeee;
  color: #777777;
}
.datepicker table tr td.range.highlighted {
  color: #000;
  background-color: #e4eef3;
  border-color: #9dc1d3;
}
.datepicker table tr td.range.highlighted:focus,
.datepicker table tr td.range.highlighted.focus {
  color: #000;
  background-color: #c1d7e3;
  border-color: #4b88a6;
}
.datepicker table tr td.range.highlighted:hover {
  color: #000;
  background-color: #c1d7e3;
  border-color: #73a6c0;
}
.datepicker table tr td.range.highlighted:active,
.datepicker table tr td.range.highlighted.active {
  color: #000;
  background-color: #c1d7e3;
  border-color: #73a6c0;
}
.datepicker table tr td.range.highlighted:active:hover,
.datepicker table tr td.range.highlighted.active:hover,
.datepicker table tr td.range.highlighted:active:focus,
.datepicker table tr td.range.highlighted.active:focus,
.datepicker table tr td.range.highlighted:active.focus,
.datepicker table tr td.range.highlighted.active.focus {
  color: #000;
  background-color: #a8c8d8;
  border-color: #4b88a6;
}
.datepicker table tr td.range.highlighted.disabled:hover,
.datepicker table tr td.range.highlighted[disabled]:hover,
fieldset[disabled] .datepicker table tr td.range.highlighted:hover,
.datepicker table tr td.range.highlighted.disabled:focus,
.datepicker table tr td.range.highlighted[disabled]:focus,
fieldset[disabled] .datepicker table tr td.range.highlighted:focus,
.datepicker table tr td.range.highlighted.disabled.focus,
.datepicker table tr td.range.highlighted[disabled].focus,
fieldset[disabled] .datepicker table tr td.range.highlighted.focus {
  background-color: #e4eef3;
  border-color: #9dc1d3;
}
.datepicker table tr td.range.highlighted.focused {
  background: #c1d7e3;
}
.datepicker table tr td.range.highlighted.disabled,
.datepicker table tr td.range.highlighted.disabled:active {
  background: #e4eef3;
  color: #777777;
}
.datepicker table tr td.range.today {
  color: #000;
  background-color: #f7ca77;
  border-color: #f1a417;
}
.datepicker table tr td.range.today:focus,
.datepicker table tr td.range.today.focus {
  color: #000;
  background-color: #f4b747;
  border-color: #815608;
}
.datepicker table tr td.range.today:hover {
  color: #000;
  background-color: #f4b747;
  border-color: #bf800c;
}
.datepicker table tr td.range.today:active,
.datepicker table tr td.range.today.active {
  color: #000;
  background-color: #f4b747;
  border-color: #bf800c;
}
.datepicker table tr td.range.today:active:hover,
.datepicker table tr td.range.today.active:hover,
.datepicker table tr td.range.today:active:focus,
.datepicker table tr td.range.today.active:focus,
.datepicker table tr td.range.today:active.focus,
.datepicker table tr td.range.today.active.focus {
  color: #000;
  background-color: #f2aa25;
  border-color: #815608;
}
.datepicker table tr td.range.today.disabled:hover,
.datepicker table tr td.range.today[disabled]:hover,
fieldset[disabled] .datepicker table tr td.range.today:hover,
.datepicker table tr td.range.today.disabled:focus,
.datepicker table tr td.range.today[disabled]:focus,
fieldset[disabled] .datepicker table tr td.range.today:focus,
.datepicker table tr td.range.today.disabled.focus,
.datepicker table tr td.range.today[disabled].focus,
fieldset[disabled] .datepicker table tr td.range.today.focus {
  background-color: #f7ca77;
  border-color: #f1a417;
}
.datepicker table tr td.range.today.disabled,
.datepicker table tr td.range.today.disabled:active {
  background: #f7ca77;
  color: #777777;
}
.datepicker table tr td.selected,
.datepicker table tr td.selected.highlighted {
  color: #fff;
  background-color: #777777;
  border-color: #555555;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.datepicker table tr td.selected:focus,
.datepicker table tr td.selected.highlighted:focus,
.datepicker table tr td.selected.focus,
.datepicker table tr td.selected.highlighted.focus {
  color: #fff;
  background-color: #5e5e5e;
  border-color: #161616;
}
.datepicker table tr td.selected:hover,
.datepicker table tr td.selected.highlighted:hover {
  color: #fff;
  background-color: #5e5e5e;
  border-color: #373737;
}
.datepicker table tr td.selected:active,
.datepicker table tr td.selected.highlighted:active,
.datepicker table tr td.selected.active,
.datepicker table tr td.selected.highlighted.active {
  color: #fff;
  background-color: #5e5e5e;
  border-color: #373737;
}
.datepicker table tr td.selected:active:hover,
.datepicker table tr td.selected.highlighted:active:hover,
.datepicker table tr td.selected.active:hover,
.datepicker table tr td.selected.highlighted.active:hover,
.datepicker table tr td.selected:active:focus,
.datepicker table tr td.selected.highlighted:active:focus,
.datepicker table tr td.selected.active:focus,
.datepicker table tr td.selected.highlighted.active:focus,
.datepicker table tr td.selected:active.focus,
.datepicker table tr td.selected.highlighted:active.focus,
.datepicker table tr td.selected.active.focus,
.datepicker table tr td.selected.highlighted.active.focus {
  color: #fff;
  background-color: #4c4c4c;
  border-color: #161616;
}
.datepicker table tr td.selected.disabled:hover,
.datepicker table tr td.selected.highlighted.disabled:hover,
.datepicker table tr td.selected[disabled]:hover,
.datepicker table tr td.selected.highlighted[disabled]:hover,
fieldset[disabled] .datepicker table tr td.selected:hover,
fieldset[disabled] .datepicker table tr td.selected.highlighted:hover,
.datepicker table tr td.selected.disabled:focus,
.datepicker table tr td.selected.highlighted.disabled:focus,
.datepicker table tr td.selected[disabled]:focus,
.datepicker table tr td.selected.highlighted[disabled]:focus,
fieldset[disabled] .datepicker table tr td.selected:focus,
fieldset[disabled] .datepicker table tr td.selected.highlighted:focus,
.datepicker table tr td.selected.disabled.focus,
.datepicker table tr td.selected.highlighted.disabled.focus,
.datepicker table tr td.selected[disabled].focus,
.datepicker table tr td.selected.highlighted[disabled].focus,
fieldset[disabled] .datepicker table tr td.selected.focus,
fieldset[disabled] .datepicker table tr td.selected.highlighted.focus {
  background-color: #777777;
  border-color: #555555;
}
.datepicker table tr td.active,
.datepicker table tr td.active.highlighted {
  color: #fff;
  background-color: #337ab7;
  border-color: #2e6da4;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.datepicker table tr td.active:focus,
.datepicker table tr td.active.highlighted:focus,
.datepicker table tr td.active.focus,
.datepicker table tr td.active.highlighted.focus {
  color: #fff;
  background-color: #286090;
  border-color: #122b40;
}
.datepicker table tr td.active:hover,
.datepicker table tr td.active.highlighted:hover {
  color: #fff;
  background-color: #286090;
  border-color: #204d74;
}
.datepicker table tr td.active:active,
.datepicker table tr td.active.highlighted:active,
.datepicker table tr td.active.active,
.datepicker table tr td.active.highlighted.active {
  color: #fff;
  background-color: #286090;
  border-color: #204d74;
}
.datepicker table tr td.active:active:hover,
.datepicker table tr td.active.highlighted:active:hover,
.datepicker table tr td.active.active:hover,
.datepicker table tr td.active.highlighted.active:hover,
.datepicker table tr td.active:active:focus,
.datepicker table tr td.active.highlighted:active:focus,
.datepicker table tr td.active.active:focus,
.datepicker table tr td.active.highlighted.active:focus,
.datepicker table tr td.active:active.focus,
.datepicker table tr td.active.highlighted:active.focus,
.datepicker table tr td.active.active.focus,
.datepicker table tr td.active.highlighted.active.focus {
  color: #fff;
  background-color: #204d74;
  border-color: #122b40;
}
.datepicker table tr td.active.disabled:hover,
.datepicker table tr td.active.highlighted.disabled:hover,
.datepicker table tr td.active[disabled]:hover,
.datepicker table tr td.active.highlighted[disabled]:hover,
fieldset[disabled] .datepicker table tr td.active:hover,
fieldset[disabled] .datepicker table tr td.active.highlighted:hover,
.datepicker table tr td.active.disabled:focus,
.datepicker table tr td.active.highlighted.disabled:focus,
.datepicker table tr td.active[disabled]:focus,
.datepicker table tr td.active.highlighted[disabled]:focus,
fieldset[disabled] .datepicker table tr td.active:focus,
fieldset[disabled] .datepicker table tr td.active.highlighted:focus,
.datepicker table tr td.active.disabled.focus,
.datepicker table tr td.active.highlighted.disabled.focus,
.datepicker table tr td.active[disabled].focus,
.datepicker table tr td.active.highlighted[disabled].focus,
fieldset[disabled] .datepicker table tr td.active.focus,
fieldset[disabled] .datepicker table tr td.active.highlighted.focus {
  background-color: #337ab7;
  border-color: #2e6da4;
}
.datepicker table tr td span {
  display: block;
  width: 23%;
  height: 54px;
  line-height: 54px;
  float: left;
  margin: 1%;
  cursor: pointer;
  border-radius: 4px;
}
.datepicker table tr td span:hover,
.datepicker table tr td span.focused {
  background: #eeeeee;
}
.datepicker table tr td span.disabled,
.datepicker table tr td span.disabled:hover {
  background: none;
  color: #777777;
  cursor: default;
}
.datepicker table tr td span.active,
.datepicker table tr td span.active:hover,
.datepicker table tr td span.active.disabled,
.datepicker table tr td span.active.disabled:hover {
  color: #fff;
  background-color: #337ab7;
  border-color: #2e6da4;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.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.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 {
  color: #fff;
  background-color: #286090;
  border-color: #122b40;
}
.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 {
  color: #fff;
  background-color: #286090;
  border-color: #204d74;
}
.datepicker table tr td span.active:active,
.datepicker table tr td span.active:hover:active,
.datepicker table tr td span.active.disabled:active,
.datepicker table tr td span.active.disabled:hover:active,
.datepicker table tr td span.active.active,
.datepicker table tr td span.active:hover.active,
.datepicker table tr td span.active.disabled.active,
.datepicker table tr td span.active.disabled:hover.active {
  color: #fff;
  background-color: #286090;
  border-color: #204d74;
}
.datepicker table tr td span.active:active:hover,
.datepicker table tr td span.active:hover:active:hover,
.datepicker table tr td span.active.disabled:active:hover,
.datepicker table tr td span.active.disabled:hover:active:hover,
.datepicker table tr td span.active.active:hover,
.datepicker table tr td span.active:hover.active:hover,
.datepicker table tr td span.active.disabled.active:hover,
.datepicker table tr td span.active.disabled:hover.active:hover,
.datepicker table tr td span.active:active:focus,
.datepicker table tr td span.active:hover:active:focus,
.datepicker table tr td span.active.disabled:active:focus,
.datepicker table tr td span.active.disabled:hover:active:focus,
.datepicker table tr td span.active.active:focus,
.datepicker table tr td span.active:hover.active:focus,
.datepicker table tr td span.active.disabled.active:focus,
.datepicker table tr td span.active.disabled:hover.active:focus,
.datepicker table tr td span.active:active.focus,
.datepicker table tr td span.active:hover:active.focus,
.datepicker table tr td span.active.disabled:active.focus,
.datepicker table tr td span.active.disabled:hover:active.focus,
.datepicker table tr td span.active.active.focus,
.datepicker table tr td span.active:hover.active.focus,
.datepicker table tr td span.active.disabled.active.focus,
.datepicker table tr td span.active.disabled:hover.active.focus {
  color: #fff;
  background-color: #204d74;
  border-color: #122b40;
}
.datepicker table tr td span.active.disabled:hover,
.datepicker table tr td span.active:hover.disabled:hover,
.datepicker table tr td span.active.disabled.disabled:hover,
.datepicker table tr td span.active.disabled:hover.disabled:hover,
.datepicker table tr td span.active[disabled]:hover,
.datepicker table tr td span.active:hover[disabled]:hover,
.datepicker table tr td span.active.disabled[disabled]:hover,
.datepicker table tr td span.active.disabled:hover[disabled]:hover,
fieldset[disabled] .datepicker table tr td span.active:hover,
fieldset[disabled] .datepicker table tr td span.active:hover:hover,
fieldset[disabled] .datepicker table tr td span.active.disabled:hover,
fieldset[disabled] .datepicker table tr td span.active.disabled:hover:hover,
.datepicker table tr td span.active.disabled:focus,
.datepicker table tr td span.active:hover.disabled:focus,
.datepicker table tr td span.active.disabled.disabled:focus,
.datepicker table tr td span.active.disabled:hover.disabled:focus,
.datepicker table tr td span.active[disabled]:focus,
.datepicker table tr td span.active:hover[disabled]:focus,
.datepicker table tr td span.active.disabled[disabled]:focus,
.datepicker table tr td span.active.disabled:hover[disabled]:focus,
fieldset[disabled] .datepicker table tr td span.active:focus,
fieldset[disabled] .datepicker table tr td span.active:hover:focus,
fieldset[disabled] .datepicker table tr td span.active.disabled:focus,
fieldset[disabled] .datepicker table tr td span.active.disabled:hover:focus,
.datepicker table tr td span.active.disabled.focus,
.datepicker table tr td span.active:hover.disabled.focus,
.datepicker table tr td span.active.disabled.disabled.focus,
.datepicker table tr td span.active.disabled:hover.disabled.focus,
.datepicker table tr td span.active[disabled].focus,
.datepicker table tr td span.active:hover[disabled].focus,
.datepicker table tr td span.active.disabled[disabled].focus,
.datepicker table tr td span.active.disabled:hover[disabled].focus,
fieldset[disabled] .datepicker table tr td span.active.focus,
fieldset[disabled] .datepicker table tr td span.active:hover.focus,
fieldset[disabled] .datepicker table tr td span.active.disabled.focus,
fieldset[disabled] .datepicker table tr td span.active.disabled:hover.focus {
  background-color: #337ab7;
  border-color: #2e6da4;
}
.datepicker table tr td span.old,
.datepicker table tr td span.new {
  color: #777777;
}
.datepicker .datepicker-switch {
  width: 145px;
}
.datepicker .datepicker-switch,
.datepicker .prev,
.datepicker .next,
.datepicker tfoot tr th {
  cursor: pointer;
}
.datepicker .datepicker-switch:hover,
.datepicker .prev:hover,
.datepicker .next:hover,
.datepicker tfoot tr th:hover {
  background: #eeeeee;
}
.datepicker .prev.disabled,
.datepicker .next.disabled {
  visibility: hidden;
}
.datepicker .cw {
  font-size: 10px;
  width: 12px;
  padding: 0 2px 0 5px;
  vertical-align: middle;
}
.input-group.date .input-group-addon {
  cursor: pointer;
}
.input-daterange {
  width: 100%;
}
.input-daterange input {
  text-align: center;
}
.input-daterange input:first-child {
  border-radius: 3px 0 0 3px;
}
.input-daterange input:last-child {
  border-radius: 0 3px 3px 0;
}
.input-daterange .input-group-addon {
  width: auto;
  min-width: 16px;
  padding: 4px 5px;
  line-height: 1.42857143;
  border-width: 1px 0;
  margin-left: -5px;
  margin-right: -5px;
}
@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 any plugin's vendor/assets/stylesheets directory 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 bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any styles
 * defined in the other CSS/SCSS files in this directory. It is generally better to create a new
 * file per style scope.
 *






 */
/* line 3, /opt/marast/app/assets/stylesheets/themes/base.scss */
html {
  font-size: 10px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

/* line 12, /opt/marast/app/assets/stylesheets/themes/base.scss */
body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.428571429;
  margin: 0;
}
/* line 20, /opt/marast/app/assets/stylesheets/themes/base.scss */
body:not([data-theme]), body[data-theme="light"] {
  /*!
   * 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 */
  /*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
  /*!
   * Bootstrap v3.4.1 (https://getbootstrap.com/)
   * Copyright 2011-2019 Twitter, Inc.
   * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
   */
  /**
   * All CSS that comes with Selectivity.js can be used as is, or tweaked to your heart's content :)
   *
   * Please realize though there is no "API contract" regarding styling of CSS classes, meaning that
   * any customized CSS made may need to be updated without warning if you want to upgrade the
   * Selectivity version you use. You can mitigate this problem by using your own templates instead of
   * those defined in selectivity-templates.js, since templates will at the very least continue
   * working across patch versions and any changes necessary to templates will be documented in the
   * changelog.
   */
  /**
   * Backdrop
   */
  /**
   * Dropdown
   */
  /** MODIFIED BY slavikry */
  /**
   * Multi-selection input
   */
  /**
   * Single-selection input
   */
  /**
   * Submenu
   */
  color: #333333;
  /* BASICS */
  /* PADDING */
  /* GUTTER */
  /* CURSOR */
  /* Shown when moving in bi-directional text */
  /* Can style cursor different in overwrite (non-insert) mode */
  /* DEFAULT THEME */
  /* Default styles for common addons */
  /* STOP */
  /* The rest of this file contains styles related to the mechanics of
     the editor. You probably shouldn't touch them. */
  /* The fake, visible scrollbars. Used to force redraw during scrolling
     before actual scrolling happens, thus preventing shaking and
     flickering artifacts. */
  /* Force content-box sizing for the elements where we expect it */
  /* IE7 hack to prevent it from returning funny offsetTops on the spans */
  /* Used to force a border model for a node */
  /* See issue #2901 */
  /* Help users use markselection to safely style text background */
  background-color: #fff;
}
/* line 9, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body:not([data-theme]) html, body[data-theme="light"] html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
/* line 19, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body:not([data-theme]) body, body[data-theme="light"] body {
  margin: 0;
}
/* line 33, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body:not([data-theme]) article,
body:not([data-theme]) aside,
body:not([data-theme]) details,
body:not([data-theme]) figcaption,
body:not([data-theme]) figure,
body:not([data-theme]) footer,
body:not([data-theme]) header,
body:not([data-theme]) hgroup,
body:not([data-theme]) main,
body:not([data-theme]) menu,
body:not([data-theme]) nav,
body:not([data-theme]) section,
body:not([data-theme]) summary, body[data-theme="light"] article,
body[data-theme="light"] aside,
body[data-theme="light"] details,
body[data-theme="light"] figcaption,
body[data-theme="light"] figure,
body[data-theme="light"] footer,
body[data-theme="light"] header,
body[data-theme="light"] hgroup,
body[data-theme="light"] main,
body[data-theme="light"] menu,
body[data-theme="light"] nav,
body[data-theme="light"] section,
body[data-theme="light"] summary {
  display: block;
}
/* line 54, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body:not([data-theme]) audio,
body:not([data-theme]) canvas,
body:not([data-theme]) progress,
body:not([data-theme]) video, body[data-theme="light"] audio,
body[data-theme="light"] canvas,
body[data-theme="light"] progress,
body[data-theme="light"] video {
  display: inline-block;
  vertical-align: baseline;
}
/* line 67, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body:not([data-theme]) audio:not([controls]), body[data-theme="light"] audio:not([controls]) {
  display: none;
  height: 0;
}
/* line 77, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body:not([data-theme]) [hidden],
body:not([data-theme]) template, body[data-theme="light"] [hidden],
body[data-theme="light"] template {
  display: none;
}
/* line 89, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body:not([data-theme]) a, body[data-theme="light"] a {
  background-color: transparent;
}
/* line 98, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body:not([data-theme]) a:active,
body:not([data-theme]) a:hover, body[data-theme="light"] a:active,
body[data-theme="light"] a:hover {
  outline: 0;
}
/* line 111, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body:not([data-theme]) abbr[title], body[data-theme="light"] abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}
/* line 121, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body:not([data-theme]) b,
body:not([data-theme]) strong, body[data-theme="light"] b,
body[data-theme="light"] strong {
  font-weight: bold;
}
/* line 130, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body:not([data-theme]) dfn, body[data-theme="light"] dfn {
  font-style: italic;
}
/* line 139, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body:not([data-theme]) h1, body[data-theme="light"] h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
/* line 148, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body:not([data-theme]) mark, body[data-theme="light"] mark {
  background: #ff0;
  color: #000;
}
/* line 157, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body:not([data-theme]) small, body[data-theme="light"] small {
  font-size: 80%;
}
/* line 165, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body:not([data-theme]) sub,
body:not([data-theme]) sup, body[data-theme="light"] sub,
body[data-theme="light"] sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
/* line 173, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body:not([data-theme]) sup, body[data-theme="light"] sup {
  top: -0.5em;
}
/* line 177, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body:not([data-theme]) sub, body[data-theme="light"] sub {
  bottom: -0.25em;
}
/* line 188, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body:not([data-theme]) img, body[data-theme="light"] img {
  border: 0;
}
/* line 196, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body:not([data-theme]) svg:not(:root), body[data-theme="light"] svg:not(:root) {
  overflow: hidden;
}
/* line 207, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body:not([data-theme]) figure, body[data-theme="light"] figure {
  margin: 1em 40px;
}
/* line 215, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body:not([data-theme]) hr, body[data-theme="light"] hr {
  box-sizing: content-box;
  height: 0;
}
/* line 224, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body:not([data-theme]) pre, body[data-theme="light"] pre {
  overflow: auto;
}
/* line 232, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body:not([data-theme]) code,
body:not([data-theme]) kbd,
body:not([data-theme]) pre,
body:not([data-theme]) samp, body[data-theme="light"] code,
body[data-theme="light"] kbd,
body[data-theme="light"] pre,
body[data-theme="light"] samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
/* line 255, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body:not([data-theme]) button,
body:not([data-theme]) input,
body:not([data-theme]) optgroup,
body:not([data-theme]) select,
body:not([data-theme]) textarea, body[data-theme="light"] button,
body[data-theme="light"] input,
body[data-theme="light"] optgroup,
body[data-theme="light"] select,
body[data-theme="light"] textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}
/* line 269, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body:not([data-theme]) button, body[data-theme="light"] button {
  overflow: visible;
}
/* line 280, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body:not([data-theme]) button,
body:not([data-theme]) select, body[data-theme="light"] button,
body[data-theme="light"] select {
  text-transform: none;
}
/* line 293, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body:not([data-theme]) button,
body:not([data-theme]) html input[type="button"],
body:not([data-theme]) input[type="reset"],
body:not([data-theme]) input[type="submit"], body[data-theme="light"] button,
body[data-theme="light"] html input[type="button"],
body[data-theme="light"] input[type="reset"],
body[data-theme="light"] input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
/* line 305, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body:not([data-theme]) button[disabled],
body:not([data-theme]) html input[disabled], body[data-theme="light"] button[disabled],
body[data-theme="light"] html input[disabled] {
  cursor: default;
}
/* line 314, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body:not([data-theme]) button::-moz-focus-inner,
body:not([data-theme]) input::-moz-focus-inner, body[data-theme="light"] button::-moz-focus-inner,
body[data-theme="light"] input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
/* line 325, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body:not([data-theme]) input, body[data-theme="light"] input {
  line-height: normal;
}
/* line 337, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body:not([data-theme]) input[type="checkbox"],
body:not([data-theme]) input[type="radio"], body[data-theme="light"] input[type="checkbox"],
body[data-theme="light"] input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
/* line 349, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body:not([data-theme]) input[type="number"]::-webkit-inner-spin-button,
body:not([data-theme]) input[type="number"]::-webkit-outer-spin-button, body[data-theme="light"] input[type="number"]::-webkit-inner-spin-button,
body[data-theme="light"] input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
/* line 359, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body:not([data-theme]) input[type="search"], body[data-theme="light"] input[type="search"] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
}
/* line 370, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body:not([data-theme]) input[type="search"]::-webkit-search-cancel-button,
body:not([data-theme]) input[type="search"]::-webkit-search-decoration, body[data-theme="light"] input[type="search"]::-webkit-search-cancel-button,
body[data-theme="light"] input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
/* line 379, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body:not([data-theme]) fieldset, body[data-theme="light"] fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
/* line 390, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body:not([data-theme]) legend, body[data-theme="light"] legend {
  border: 0;
  padding: 0;
}
/* line 399, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body:not([data-theme]) textarea, body[data-theme="light"] textarea {
  overflow: auto;
}
/* line 408, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body:not([data-theme]) optgroup, body[data-theme="light"] optgroup {
  font-weight: bold;
}
/* line 419, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body:not([data-theme]) table, body[data-theme="light"] table {
  border-collapse: collapse;
  border-spacing: 0;
}
/* line 424, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body:not([data-theme]) td,
body:not([data-theme]) th, body[data-theme="light"] td,
body[data-theme="light"] th {
  padding: 0;
}
@media print {
  /* line 9, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_print.scss */
  body:not([data-theme]) *,
  body:not([data-theme]) *:before,
  body:not([data-theme]) *:after, body[data-theme="light"] *,
  body[data-theme="light"] *:before,
  body[data-theme="light"] *:after {
    color: #000 !important;
    text-shadow: none !important;
    background: transparent !important;
    box-shadow: none !important;
  }
  /* line 18, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_print.scss */
  body:not([data-theme]) a,
  body:not([data-theme]) a:visited, body[data-theme="light"] a,
  body[data-theme="light"] a:visited {
    text-decoration: underline;
  }
  /* line 23, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_print.scss */
  body:not([data-theme]) a[href]:after, body[data-theme="light"] a[href]:after {
    content: " (" attr(href) ")";
  }
  /* line 27, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_print.scss */
  body:not([data-theme]) abbr[title]:after, body[data-theme="light"] abbr[title]:after {
    content: " (" attr(title) ")";
  }
  /* line 33, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_print.scss */
  body:not([data-theme]) a[href^="#"]:after,
  body:not([data-theme]) a[href^="javascript:"]:after, body[data-theme="light"] a[href^="#"]:after,
  body[data-theme="light"] a[href^="javascript:"]:after {
    content: "";
  }
  /* line 38, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_print.scss */
  body:not([data-theme]) pre,
  body:not([data-theme]) blockquote, body[data-theme="light"] pre,
  body[data-theme="light"] blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  /* line 44, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_print.scss */
  body:not([data-theme]) thead, body[data-theme="light"] thead {
    display: table-header-group;
  }
  /* line 48, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_print.scss */
  body:not([data-theme]) tr,
  body:not([data-theme]) img, body[data-theme="light"] tr,
  body[data-theme="light"] img {
    page-break-inside: avoid;
  }
  /* line 53, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_print.scss */
  body:not([data-theme]) img, body[data-theme="light"] img {
    max-width: 100% !important;
  }
  /* line 57, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_print.scss */
  body:not([data-theme]) p,
  body:not([data-theme]) h2,
  body:not([data-theme]) h3, body[data-theme="light"] p,
  body[data-theme="light"] h2,
  body[data-theme="light"] h3 {
    orphans: 3;
    widows: 3;
  }
  /* line 64, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_print.scss */
  body:not([data-theme]) h2,
  body:not([data-theme]) h3, body[data-theme="light"] h2,
  body[data-theme="light"] h3 {
    page-break-after: avoid;
  }
  /* line 72, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_print.scss */
  body:not([data-theme]) .navbar, body[data-theme="light"] .navbar {
    display: none;
  }
  /* line 77, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_print.scss */
  body:not([data-theme]) .btn > .caret,
  body:not([data-theme]) .dropup > .btn > .caret, body[data-theme="light"] .btn > .caret,
  body[data-theme="light"] .dropup > .btn > .caret {
    border-top-color: #000 !important;
  }
  /* line 81, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_print.scss */
  body:not([data-theme]) .label, body[data-theme="light"] .label {
    border: 1px solid #000;
  }
  /* line 85, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_print.scss */
  body:not([data-theme]) .table, body[data-theme="light"] .table {
    border-collapse: collapse !important;
  }
  /* line 88, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_print.scss */
  body:not([data-theme]) .table td,
  body:not([data-theme]) .table th, body[data-theme="light"] .table td,
  body[data-theme="light"] .table th {
    background-color: #fff !important;
  }
  /* line 94, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_print.scss */
  body:not([data-theme]) .table-bordered th,
  body:not([data-theme]) .table-bordered td, body[data-theme="light"] .table-bordered th,
  body[data-theme="light"] .table-bordered td {
    border: 1px solid #ddd !important;
  }
}
@font-face {
  font-family: "Glyphicons Halflings";
  src: url("/assets/bootstrap/glyphicons-halflings-regular-13634da87d9e23f8c3ed9108ce1724d183a39ad072e73e1b3d8cbf646d2d0407.eot");
  src: url("/assets/bootstrap/glyphicons-halflings-regular-13634da87d9e23f8c3ed9108ce1724d183a39ad072e73e1b3d8cbf646d2d0407.eot?#iefix") format("embedded-opentype"), url("/assets/bootstrap/glyphicons-halflings-regular-fe185d11a49676890d47bb783312a0cda5a44c4039214094e7957b4c040ef11c.woff2") format("woff2"), url("/assets/bootstrap/glyphicons-halflings-regular-a26394f7ede100ca118eff2eda08596275a9839b959c226e15439557a5a80742.woff") format("woff"), url("/assets/bootstrap/glyphicons-halflings-regular-e395044093757d82afcb138957d06a1ea9361bdcf0b442d06a18a8051af57456.ttf") format("truetype"), url("/assets/bootstrap/glyphicons-halflings-regular-42f60659d265c1a3c30f9fa42abcbb56bd4a53af4d83d316d6dd7a36903c43e5.svg#glyphicons_halflingsregular") format("svg");
}
/* line 24, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon, body:not([data-theme]) .fa.fa-remove, body:not([data-theme]) .fa.fa-chevron-right, body:not([data-theme]) .fa.fa-sort-desc, body[data-theme="light"] .glyphicon, body[data-theme="light"] .fa.fa-remove, body[data-theme="light"] .fa.fa-chevron-right, body[data-theme="light"] .fa.fa-sort-desc {
  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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-asterisk:before, body[data-theme="light"] .glyphicon-asterisk:before {
  content: "\002a";
}
/* line 38, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-plus:before, body[data-theme="light"] .glyphicon-plus:before {
  content: "\002b";
}
/* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-euro:before,
body:not([data-theme]) .glyphicon-eur:before, body[data-theme="light"] .glyphicon-euro:before,
body[data-theme="light"] .glyphicon-eur:before {
  content: "\20ac";
}
/* line 41, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-minus:before, body[data-theme="light"] .glyphicon-minus:before {
  content: "\2212";
}
/* line 42, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-cloud:before, body[data-theme="light"] .glyphicon-cloud:before {
  content: "\2601";
}
/* line 43, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-envelope:before, body[data-theme="light"] .glyphicon-envelope:before {
  content: "\2709";
}
/* line 44, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-pencil:before, body[data-theme="light"] .glyphicon-pencil:before {
  content: "\270f";
}
/* line 45, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-glass:before, body[data-theme="light"] .glyphicon-glass:before {
  content: "\e001";
}
/* line 46, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-music:before, body[data-theme="light"] .glyphicon-music:before {
  content: "\e002";
}
/* line 47, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-search:before, body[data-theme="light"] .glyphicon-search:before {
  content: "\e003";
}
/* line 48, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-heart:before, body[data-theme="light"] .glyphicon-heart:before {
  content: "\e005";
}
/* line 49, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-star:before, body[data-theme="light"] .glyphicon-star:before {
  content: "\e006";
}
/* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-star-empty:before, body[data-theme="light"] .glyphicon-star-empty:before {
  content: "\e007";
}
/* line 51, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-user:before, body[data-theme="light"] .glyphicon-user:before {
  content: "\e008";
}
/* line 52, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-film:before, body[data-theme="light"] .glyphicon-film:before {
  content: "\e009";
}
/* line 53, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-th-large:before, body[data-theme="light"] .glyphicon-th-large:before {
  content: "\e010";
}
/* line 54, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-th:before, body[data-theme="light"] .glyphicon-th:before {
  content: "\e011";
}
/* line 55, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-th-list:before, body[data-theme="light"] .glyphicon-th-list:before {
  content: "\e012";
}
/* line 56, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-ok:before, body[data-theme="light"] .glyphicon-ok:before {
  content: "\e013";
}
/* line 57, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-remove:before, body:not([data-theme]) .fa.fa-remove:before, body[data-theme="light"] .glyphicon-remove:before, body[data-theme="light"] .fa.fa-remove:before {
  content: "\e014";
}
/* line 58, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-zoom-in:before, body[data-theme="light"] .glyphicon-zoom-in:before {
  content: "\e015";
}
/* line 59, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-zoom-out:before, body[data-theme="light"] .glyphicon-zoom-out:before {
  content: "\e016";
}
/* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-off:before, body[data-theme="light"] .glyphicon-off:before {
  content: "\e017";
}
/* line 61, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-signal:before, body[data-theme="light"] .glyphicon-signal:before {
  content: "\e018";
}
/* line 62, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-cog:before, body[data-theme="light"] .glyphicon-cog:before {
  content: "\e019";
}
/* line 63, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-trash:before, body[data-theme="light"] .glyphicon-trash:before {
  content: "\e020";
}
/* line 64, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-home:before, body[data-theme="light"] .glyphicon-home:before {
  content: "\e021";
}
/* line 65, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-file:before, body[data-theme="light"] .glyphicon-file:before {
  content: "\e022";
}
/* line 66, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-time:before, body[data-theme="light"] .glyphicon-time:before {
  content: "\e023";
}
/* line 67, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-road:before, body[data-theme="light"] .glyphicon-road:before {
  content: "\e024";
}
/* line 68, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-download-alt:before, body[data-theme="light"] .glyphicon-download-alt:before {
  content: "\e025";
}
/* line 69, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-download:before, body[data-theme="light"] .glyphicon-download:before {
  content: "\e026";
}
/* line 70, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-upload:before, body[data-theme="light"] .glyphicon-upload:before {
  content: "\e027";
}
/* line 71, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-inbox:before, body[data-theme="light"] .glyphicon-inbox:before {
  content: "\e028";
}
/* line 72, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-play-circle:before, body[data-theme="light"] .glyphicon-play-circle:before {
  content: "\e029";
}
/* line 73, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-repeat:before, body[data-theme="light"] .glyphicon-repeat:before {
  content: "\e030";
}
/* line 74, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-refresh:before, body[data-theme="light"] .glyphicon-refresh:before {
  content: "\e031";
}
/* line 75, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-list-alt:before, body[data-theme="light"] .glyphicon-list-alt:before {
  content: "\e032";
}
/* line 76, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-lock:before, body[data-theme="light"] .glyphicon-lock:before {
  content: "\e033";
}
/* line 77, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-flag:before, body[data-theme="light"] .glyphicon-flag:before {
  content: "\e034";
}
/* line 78, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-headphones:before, body[data-theme="light"] .glyphicon-headphones:before {
  content: "\e035";
}
/* line 79, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-volume-off:before, body[data-theme="light"] .glyphicon-volume-off:before {
  content: "\e036";
}
/* line 80, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-volume-down:before, body[data-theme="light"] .glyphicon-volume-down:before {
  content: "\e037";
}
/* line 81, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-volume-up:before, body[data-theme="light"] .glyphicon-volume-up:before {
  content: "\e038";
}
/* line 82, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-qrcode:before, body[data-theme="light"] .glyphicon-qrcode:before {
  content: "\e039";
}
/* line 83, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-barcode:before, body[data-theme="light"] .glyphicon-barcode:before {
  content: "\e040";
}
/* line 84, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-tag:before, body[data-theme="light"] .glyphicon-tag:before {
  content: "\e041";
}
/* line 85, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-tags:before, body[data-theme="light"] .glyphicon-tags:before {
  content: "\e042";
}
/* line 86, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-book:before, body[data-theme="light"] .glyphicon-book:before {
  content: "\e043";
}
/* line 87, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-bookmark:before, body[data-theme="light"] .glyphicon-bookmark:before {
  content: "\e044";
}
/* line 88, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-print:before, body[data-theme="light"] .glyphicon-print:before {
  content: "\e045";
}
/* line 89, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-camera:before, body[data-theme="light"] .glyphicon-camera:before {
  content: "\e046";
}
/* line 90, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-font:before, body[data-theme="light"] .glyphicon-font:before {
  content: "\e047";
}
/* line 91, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-bold:before, body[data-theme="light"] .glyphicon-bold:before {
  content: "\e048";
}
/* line 92, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-italic:before, body[data-theme="light"] .glyphicon-italic:before {
  content: "\e049";
}
/* line 93, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-text-height:before, body[data-theme="light"] .glyphicon-text-height:before {
  content: "\e050";
}
/* line 94, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-text-width:before, body[data-theme="light"] .glyphicon-text-width:before {
  content: "\e051";
}
/* line 95, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-align-left:before, body[data-theme="light"] .glyphicon-align-left:before {
  content: "\e052";
}
/* line 96, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-align-center:before, body[data-theme="light"] .glyphicon-align-center:before {
  content: "\e053";
}
/* line 97, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-align-right:before, body[data-theme="light"] .glyphicon-align-right:before {
  content: "\e054";
}
/* line 98, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-align-justify:before, body[data-theme="light"] .glyphicon-align-justify:before {
  content: "\e055";
}
/* line 99, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-list:before, body[data-theme="light"] .glyphicon-list:before {
  content: "\e056";
}
/* line 100, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-indent-left:before, body[data-theme="light"] .glyphicon-indent-left:before {
  content: "\e057";
}
/* line 101, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-indent-right:before, body[data-theme="light"] .glyphicon-indent-right:before {
  content: "\e058";
}
/* line 102, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-facetime-video:before, body[data-theme="light"] .glyphicon-facetime-video:before {
  content: "\e059";
}
/* line 103, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-picture:before, body[data-theme="light"] .glyphicon-picture:before {
  content: "\e060";
}
/* line 104, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-map-marker:before, body[data-theme="light"] .glyphicon-map-marker:before {
  content: "\e062";
}
/* line 105, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-adjust:before, body[data-theme="light"] .glyphicon-adjust:before {
  content: "\e063";
}
/* line 106, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-tint:before, body[data-theme="light"] .glyphicon-tint:before {
  content: "\e064";
}
/* line 107, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-edit:before, body[data-theme="light"] .glyphicon-edit:before {
  content: "\e065";
}
/* line 108, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-share:before, body[data-theme="light"] .glyphicon-share:before {
  content: "\e066";
}
/* line 109, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-check:before, body[data-theme="light"] .glyphicon-check:before {
  content: "\e067";
}
/* line 110, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-move:before, body[data-theme="light"] .glyphicon-move:before {
  content: "\e068";
}
/* line 111, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-step-backward:before, body[data-theme="light"] .glyphicon-step-backward:before {
  content: "\e069";
}
/* line 112, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-fast-backward:before, body[data-theme="light"] .glyphicon-fast-backward:before {
  content: "\e070";
}
/* line 113, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-backward:before, body[data-theme="light"] .glyphicon-backward:before {
  content: "\e071";
}
/* line 114, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-play:before, body[data-theme="light"] .glyphicon-play:before {
  content: "\e072";
}
/* line 115, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-pause:before, body[data-theme="light"] .glyphicon-pause:before {
  content: "\e073";
}
/* line 116, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-stop:before, body[data-theme="light"] .glyphicon-stop:before {
  content: "\e074";
}
/* line 117, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-forward:before, body[data-theme="light"] .glyphicon-forward:before {
  content: "\e075";
}
/* line 118, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-fast-forward:before, body[data-theme="light"] .glyphicon-fast-forward:before {
  content: "\e076";
}
/* line 119, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-step-forward:before, body[data-theme="light"] .glyphicon-step-forward:before {
  content: "\e077";
}
/* line 120, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-eject:before, body[data-theme="light"] .glyphicon-eject:before {
  content: "\e078";
}
/* line 121, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-chevron-left:before, body[data-theme="light"] .glyphicon-chevron-left:before {
  content: "\e079";
}
/* line 122, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-chevron-right:before, body:not([data-theme]) .fa.fa-chevron-right:before, body[data-theme="light"] .glyphicon-chevron-right:before, body[data-theme="light"] .fa.fa-chevron-right:before {
  content: "\e080";
}
/* line 123, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-plus-sign:before, body[data-theme="light"] .glyphicon-plus-sign:before {
  content: "\e081";
}
/* line 124, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-minus-sign:before, body[data-theme="light"] .glyphicon-minus-sign:before {
  content: "\e082";
}
/* line 125, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-remove-sign:before, body[data-theme="light"] .glyphicon-remove-sign:before {
  content: "\e083";
}
/* line 126, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-ok-sign:before, body[data-theme="light"] .glyphicon-ok-sign:before {
  content: "\e084";
}
/* line 127, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-question-sign:before, body[data-theme="light"] .glyphicon-question-sign:before {
  content: "\e085";
}
/* line 128, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-info-sign:before, body[data-theme="light"] .glyphicon-info-sign:before {
  content: "\e086";
}
/* line 129, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-screenshot:before, body[data-theme="light"] .glyphicon-screenshot:before {
  content: "\e087";
}
/* line 130, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-remove-circle:before, body[data-theme="light"] .glyphicon-remove-circle:before {
  content: "\e088";
}
/* line 131, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-ok-circle:before, body[data-theme="light"] .glyphicon-ok-circle:before {
  content: "\e089";
}
/* line 132, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-ban-circle:before, body[data-theme="light"] .glyphicon-ban-circle:before {
  content: "\e090";
}
/* line 133, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-arrow-left:before, body[data-theme="light"] .glyphicon-arrow-left:before {
  content: "\e091";
}
/* line 134, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-arrow-right:before, body[data-theme="light"] .glyphicon-arrow-right:before {
  content: "\e092";
}
/* line 135, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-arrow-up:before, body[data-theme="light"] .glyphicon-arrow-up:before {
  content: "\e093";
}
/* line 136, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-arrow-down:before, body[data-theme="light"] .glyphicon-arrow-down:before {
  content: "\e094";
}
/* line 137, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-share-alt:before, body[data-theme="light"] .glyphicon-share-alt:before {
  content: "\e095";
}
/* line 138, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-resize-full:before, body[data-theme="light"] .glyphicon-resize-full:before {
  content: "\e096";
}
/* line 139, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-resize-small:before, body[data-theme="light"] .glyphicon-resize-small:before {
  content: "\e097";
}
/* line 140, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-exclamation-sign:before, body[data-theme="light"] .glyphicon-exclamation-sign:before {
  content: "\e101";
}
/* line 141, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-gift:before, body[data-theme="light"] .glyphicon-gift:before {
  content: "\e102";
}
/* line 142, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-leaf:before, body[data-theme="light"] .glyphicon-leaf:before {
  content: "\e103";
}
/* line 143, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-fire:before, body[data-theme="light"] .glyphicon-fire:before {
  content: "\e104";
}
/* line 144, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-eye-open:before, body[data-theme="light"] .glyphicon-eye-open:before {
  content: "\e105";
}
/* line 145, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-eye-close:before, body[data-theme="light"] .glyphicon-eye-close:before {
  content: "\e106";
}
/* line 146, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-warning-sign:before, body[data-theme="light"] .glyphicon-warning-sign:before {
  content: "\e107";
}
/* line 147, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-plane:before, body[data-theme="light"] .glyphicon-plane:before {
  content: "\e108";
}
/* line 148, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-calendar:before, body[data-theme="light"] .glyphicon-calendar:before {
  content: "\e109";
}
/* line 149, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-random:before, body[data-theme="light"] .glyphicon-random:before {
  content: "\e110";
}
/* line 150, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-comment:before, body[data-theme="light"] .glyphicon-comment:before {
  content: "\e111";
}
/* line 151, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-magnet:before, body[data-theme="light"] .glyphicon-magnet:before {
  content: "\e112";
}
/* line 152, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-chevron-up:before, body[data-theme="light"] .glyphicon-chevron-up:before {
  content: "\e113";
}
/* line 153, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-chevron-down:before, body:not([data-theme]) .fa.fa-sort-desc:before, body[data-theme="light"] .glyphicon-chevron-down:before, body[data-theme="light"] .fa.fa-sort-desc:before {
  content: "\e114";
}
/* line 154, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-retweet:before, body[data-theme="light"] .glyphicon-retweet:before {
  content: "\e115";
}
/* line 155, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-shopping-cart:before, body[data-theme="light"] .glyphicon-shopping-cart:before {
  content: "\e116";
}
/* line 156, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-folder-close:before, body[data-theme="light"] .glyphicon-folder-close:before {
  content: "\e117";
}
/* line 157, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-folder-open:before, body[data-theme="light"] .glyphicon-folder-open:before {
  content: "\e118";
}
/* line 158, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-resize-vertical:before, body[data-theme="light"] .glyphicon-resize-vertical:before {
  content: "\e119";
}
/* line 159, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-resize-horizontal:before, body[data-theme="light"] .glyphicon-resize-horizontal:before {
  content: "\e120";
}
/* line 160, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-hdd:before, body[data-theme="light"] .glyphicon-hdd:before {
  content: "\e121";
}
/* line 161, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-bullhorn:before, body[data-theme="light"] .glyphicon-bullhorn:before {
  content: "\e122";
}
/* line 162, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-bell:before, body[data-theme="light"] .glyphicon-bell:before {
  content: "\e123";
}
/* line 163, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-certificate:before, body[data-theme="light"] .glyphicon-certificate:before {
  content: "\e124";
}
/* line 164, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-thumbs-up:before, body[data-theme="light"] .glyphicon-thumbs-up:before {
  content: "\e125";
}
/* line 165, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-thumbs-down:before, body[data-theme="light"] .glyphicon-thumbs-down:before {
  content: "\e126";
}
/* line 166, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-hand-right:before, body[data-theme="light"] .glyphicon-hand-right:before {
  content: "\e127";
}
/* line 167, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-hand-left:before, body[data-theme="light"] .glyphicon-hand-left:before {
  content: "\e128";
}
/* line 168, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-hand-up:before, body[data-theme="light"] .glyphicon-hand-up:before {
  content: "\e129";
}
/* line 169, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-hand-down:before, body[data-theme="light"] .glyphicon-hand-down:before {
  content: "\e130";
}
/* line 170, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-circle-arrow-right:before, body[data-theme="light"] .glyphicon-circle-arrow-right:before {
  content: "\e131";
}
/* line 171, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-circle-arrow-left:before, body[data-theme="light"] .glyphicon-circle-arrow-left:before {
  content: "\e132";
}
/* line 172, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-circle-arrow-up:before, body[data-theme="light"] .glyphicon-circle-arrow-up:before {
  content: "\e133";
}
/* line 173, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-circle-arrow-down:before, body[data-theme="light"] .glyphicon-circle-arrow-down:before {
  content: "\e134";
}
/* line 174, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-globe:before, body[data-theme="light"] .glyphicon-globe:before {
  content: "\e135";
}
/* line 175, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-wrench:before, body[data-theme="light"] .glyphicon-wrench:before {
  content: "\e136";
}
/* line 176, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-tasks:before, body[data-theme="light"] .glyphicon-tasks:before {
  content: "\e137";
}
/* line 177, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-filter:before, body[data-theme="light"] .glyphicon-filter:before {
  content: "\e138";
}
/* line 178, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-briefcase:before, body[data-theme="light"] .glyphicon-briefcase:before {
  content: "\e139";
}
/* line 179, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-fullscreen:before, body[data-theme="light"] .glyphicon-fullscreen:before {
  content: "\e140";
}
/* line 180, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-dashboard:before, body[data-theme="light"] .glyphicon-dashboard:before {
  content: "\e141";
}
/* line 181, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-paperclip:before, body[data-theme="light"] .glyphicon-paperclip:before {
  content: "\e142";
}
/* line 182, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-heart-empty:before, body[data-theme="light"] .glyphicon-heart-empty:before {
  content: "\e143";
}
/* line 183, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-link:before, body[data-theme="light"] .glyphicon-link:before {
  content: "\e144";
}
/* line 184, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-phone:before, body[data-theme="light"] .glyphicon-phone:before {
  content: "\e145";
}
/* line 185, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-pushpin:before, body[data-theme="light"] .glyphicon-pushpin:before {
  content: "\e146";
}
/* line 186, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-usd:before, body[data-theme="light"] .glyphicon-usd:before {
  content: "\e148";
}
/* line 187, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-gbp:before, body[data-theme="light"] .glyphicon-gbp:before {
  content: "\e149";
}
/* line 188, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-sort:before, body[data-theme="light"] .glyphicon-sort:before {
  content: "\e150";
}
/* line 189, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-sort-by-alphabet:before, body[data-theme="light"] .glyphicon-sort-by-alphabet:before {
  content: "\e151";
}
/* line 190, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-sort-by-alphabet-alt:before, body[data-theme="light"] .glyphicon-sort-by-alphabet-alt:before {
  content: "\e152";
}
/* line 191, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-sort-by-order:before, body[data-theme="light"] .glyphicon-sort-by-order:before {
  content: "\e153";
}
/* line 192, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-sort-by-order-alt:before, body[data-theme="light"] .glyphicon-sort-by-order-alt:before {
  content: "\e154";
}
/* line 193, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-sort-by-attributes:before, body[data-theme="light"] .glyphicon-sort-by-attributes:before {
  content: "\e155";
}
/* line 194, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-sort-by-attributes-alt:before, body[data-theme="light"] .glyphicon-sort-by-attributes-alt:before {
  content: "\e156";
}
/* line 195, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-unchecked:before, body[data-theme="light"] .glyphicon-unchecked:before {
  content: "\e157";
}
/* line 196, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-expand:before, body[data-theme="light"] .glyphicon-expand:before {
  content: "\e158";
}
/* line 197, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-collapse-down:before, body[data-theme="light"] .glyphicon-collapse-down:before {
  content: "\e159";
}
/* line 198, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-collapse-up:before, body[data-theme="light"] .glyphicon-collapse-up:before {
  content: "\e160";
}
/* line 199, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-log-in:before, body[data-theme="light"] .glyphicon-log-in:before {
  content: "\e161";
}
/* line 200, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-flash:before, body[data-theme="light"] .glyphicon-flash:before {
  content: "\e162";
}
/* line 201, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-log-out:before, body[data-theme="light"] .glyphicon-log-out:before {
  content: "\e163";
}
/* line 202, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-new-window:before, body[data-theme="light"] .glyphicon-new-window:before {
  content: "\e164";
}
/* line 203, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-record:before, body[data-theme="light"] .glyphicon-record:before {
  content: "\e165";
}
/* line 204, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-save:before, body[data-theme="light"] .glyphicon-save:before {
  content: "\e166";
}
/* line 205, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-open:before, body[data-theme="light"] .glyphicon-open:before {
  content: "\e167";
}
/* line 206, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-saved:before, body[data-theme="light"] .glyphicon-saved:before {
  content: "\e168";
}
/* line 207, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-import:before, body[data-theme="light"] .glyphicon-import:before {
  content: "\e169";
}
/* line 208, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-export:before, body[data-theme="light"] .glyphicon-export:before {
  content: "\e170";
}
/* line 209, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-send:before, body[data-theme="light"] .glyphicon-send:before {
  content: "\e171";
}
/* line 210, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-floppy-disk:before, body[data-theme="light"] .glyphicon-floppy-disk:before {
  content: "\e172";
}
/* line 211, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-floppy-saved:before, body[data-theme="light"] .glyphicon-floppy-saved:before {
  content: "\e173";
}
/* line 212, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-floppy-remove:before, body[data-theme="light"] .glyphicon-floppy-remove:before {
  content: "\e174";
}
/* line 213, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-floppy-save:before, body[data-theme="light"] .glyphicon-floppy-save:before {
  content: "\e175";
}
/* line 214, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-floppy-open:before, body[data-theme="light"] .glyphicon-floppy-open:before {
  content: "\e176";
}
/* line 215, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-credit-card:before, body[data-theme="light"] .glyphicon-credit-card:before {
  content: "\e177";
}
/* line 216, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-transfer:before, body[data-theme="light"] .glyphicon-transfer:before {
  content: "\e178";
}
/* line 217, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-cutlery:before, body[data-theme="light"] .glyphicon-cutlery:before {
  content: "\e179";
}
/* line 218, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-header:before, body[data-theme="light"] .glyphicon-header:before {
  content: "\e180";
}
/* line 219, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-compressed:before, body[data-theme="light"] .glyphicon-compressed:before {
  content: "\e181";
}
/* line 220, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-earphone:before, body[data-theme="light"] .glyphicon-earphone:before {
  content: "\e182";
}
/* line 221, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-phone-alt:before, body[data-theme="light"] .glyphicon-phone-alt:before {
  content: "\e183";
}
/* line 222, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-tower:before, body[data-theme="light"] .glyphicon-tower:before {
  content: "\e184";
}
/* line 223, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-stats:before, body[data-theme="light"] .glyphicon-stats:before {
  content: "\e185";
}
/* line 224, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-sd-video:before, body[data-theme="light"] .glyphicon-sd-video:before {
  content: "\e186";
}
/* line 225, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-hd-video:before, body[data-theme="light"] .glyphicon-hd-video:before {
  content: "\e187";
}
/* line 226, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-subtitles:before, body[data-theme="light"] .glyphicon-subtitles:before {
  content: "\e188";
}
/* line 227, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-sound-stereo:before, body[data-theme="light"] .glyphicon-sound-stereo:before {
  content: "\e189";
}
/* line 228, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-sound-dolby:before, body[data-theme="light"] .glyphicon-sound-dolby:before {
  content: "\e190";
}
/* line 229, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-sound-5-1:before, body[data-theme="light"] .glyphicon-sound-5-1:before {
  content: "\e191";
}
/* line 230, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-sound-6-1:before, body[data-theme="light"] .glyphicon-sound-6-1:before {
  content: "\e192";
}
/* line 231, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-sound-7-1:before, body[data-theme="light"] .glyphicon-sound-7-1:before {
  content: "\e193";
}
/* line 232, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-copyright-mark:before, body[data-theme="light"] .glyphicon-copyright-mark:before {
  content: "\e194";
}
/* line 233, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-registration-mark:before, body[data-theme="light"] .glyphicon-registration-mark:before {
  content: "\e195";
}
/* line 234, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-cloud-download:before, body[data-theme="light"] .glyphicon-cloud-download:before {
  content: "\e197";
}
/* line 235, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-cloud-upload:before, body[data-theme="light"] .glyphicon-cloud-upload:before {
  content: "\e198";
}
/* line 236, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-tree-conifer:before, body[data-theme="light"] .glyphicon-tree-conifer:before {
  content: "\e199";
}
/* line 237, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-tree-deciduous:before, body[data-theme="light"] .glyphicon-tree-deciduous:before {
  content: "\e200";
}
/* line 238, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-cd:before, body[data-theme="light"] .glyphicon-cd:before {
  content: "\e201";
}
/* line 239, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-save-file:before, body[data-theme="light"] .glyphicon-save-file:before {
  content: "\e202";
}
/* line 240, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-open-file:before, body[data-theme="light"] .glyphicon-open-file:before {
  content: "\e203";
}
/* line 241, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-level-up:before, body[data-theme="light"] .glyphicon-level-up:before {
  content: "\e204";
}
/* line 242, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-copy:before, body[data-theme="light"] .glyphicon-copy:before {
  content: "\e205";
}
/* line 243, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-paste:before, body[data-theme="light"] .glyphicon-paste:before {
  content: "\e206";
}
/* line 252, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-alert:before, body[data-theme="light"] .glyphicon-alert:before {
  content: "\e209";
}
/* line 253, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-equalizer:before, body[data-theme="light"] .glyphicon-equalizer:before {
  content: "\e210";
}
/* line 254, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-king:before, body[data-theme="light"] .glyphicon-king:before {
  content: "\e211";
}
/* line 255, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-queen:before, body[data-theme="light"] .glyphicon-queen:before {
  content: "\e212";
}
/* line 256, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-pawn:before, body[data-theme="light"] .glyphicon-pawn:before {
  content: "\e213";
}
/* line 257, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-bishop:before, body[data-theme="light"] .glyphicon-bishop:before {
  content: "\e214";
}
/* line 258, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-knight:before, body[data-theme="light"] .glyphicon-knight:before {
  content: "\e215";
}
/* line 259, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-baby-formula:before, body[data-theme="light"] .glyphicon-baby-formula:before {
  content: "\e216";
}
/* line 260, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-tent:before, body[data-theme="light"] .glyphicon-tent:before {
  content: "\26fa";
}
/* line 261, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-blackboard:before, body[data-theme="light"] .glyphicon-blackboard:before {
  content: "\e218";
}
/* line 262, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-bed:before, body[data-theme="light"] .glyphicon-bed:before {
  content: "\e219";
}
/* line 263, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-apple:before, body[data-theme="light"] .glyphicon-apple:before {
  content: "\f8ff";
}
/* line 264, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-erase:before, body[data-theme="light"] .glyphicon-erase:before {
  content: "\e221";
}
/* line 265, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-hourglass:before, body[data-theme="light"] .glyphicon-hourglass:before {
  content: "\231b";
}
/* line 266, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-lamp:before, body[data-theme="light"] .glyphicon-lamp:before {
  content: "\e223";
}
/* line 267, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-duplicate:before, body[data-theme="light"] .glyphicon-duplicate:before {
  content: "\e224";
}
/* line 268, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-piggy-bank:before, body[data-theme="light"] .glyphicon-piggy-bank:before {
  content: "\e225";
}
/* line 269, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-scissors:before, body[data-theme="light"] .glyphicon-scissors:before {
  content: "\e226";
}
/* line 270, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-bitcoin:before, body[data-theme="light"] .glyphicon-bitcoin:before {
  content: "\e227";
}
/* line 271, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-btc:before, body[data-theme="light"] .glyphicon-btc:before {
  content: "\e227";
}
/* line 272, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-xbt:before, body[data-theme="light"] .glyphicon-xbt:before {
  content: "\e227";
}
/* line 273, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-yen:before, body[data-theme="light"] .glyphicon-yen:before {
  content: "\00a5";
}
/* line 274, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-jpy:before, body[data-theme="light"] .glyphicon-jpy:before {
  content: "\00a5";
}
/* line 275, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-ruble:before, body[data-theme="light"] .glyphicon-ruble:before {
  content: "\20bd";
}
/* line 276, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-rub:before, body[data-theme="light"] .glyphicon-rub:before {
  content: "\20bd";
}
/* line 277, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-scale:before, body[data-theme="light"] .glyphicon-scale:before {
  content: "\e230";
}
/* line 278, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-ice-lolly:before, body[data-theme="light"] .glyphicon-ice-lolly:before {
  content: "\e231";
}
/* line 279, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-ice-lolly-tasted:before, body[data-theme="light"] .glyphicon-ice-lolly-tasted:before {
  content: "\e232";
}
/* line 280, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-education:before, body[data-theme="light"] .glyphicon-education:before {
  content: "\e233";
}
/* line 281, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-option-horizontal:before, body[data-theme="light"] .glyphicon-option-horizontal:before {
  content: "\e234";
}
/* line 282, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-option-vertical:before, body[data-theme="light"] .glyphicon-option-vertical:before {
  content: "\e235";
}
/* line 283, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-menu-hamburger:before, body[data-theme="light"] .glyphicon-menu-hamburger:before {
  content: "\e236";
}
/* line 284, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-modal-window:before, body[data-theme="light"] .glyphicon-modal-window:before {
  content: "\e237";
}
/* line 285, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-oil:before, body[data-theme="light"] .glyphicon-oil:before {
  content: "\e238";
}
/* line 286, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-grain:before, body[data-theme="light"] .glyphicon-grain:before {
  content: "\e239";
}
/* line 287, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-sunglasses:before, body[data-theme="light"] .glyphicon-sunglasses:before {
  content: "\e240";
}
/* line 288, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-text-size:before, body[data-theme="light"] .glyphicon-text-size:before {
  content: "\e241";
}
/* line 289, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-text-color:before, body[data-theme="light"] .glyphicon-text-color:before {
  content: "\e242";
}
/* line 290, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-text-background:before, body[data-theme="light"] .glyphicon-text-background:before {
  content: "\e243";
}
/* line 291, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-object-align-top:before, body[data-theme="light"] .glyphicon-object-align-top:before {
  content: "\e244";
}
/* line 292, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-object-align-bottom:before, body[data-theme="light"] .glyphicon-object-align-bottom:before {
  content: "\e245";
}
/* line 293, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-object-align-horizontal:before, body[data-theme="light"] .glyphicon-object-align-horizontal:before {
  content: "\e246";
}
/* line 294, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-object-align-left:before, body[data-theme="light"] .glyphicon-object-align-left:before {
  content: "\e247";
}
/* line 295, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-object-align-vertical:before, body[data-theme="light"] .glyphicon-object-align-vertical:before {
  content: "\e248";
}
/* line 296, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-object-align-right:before, body[data-theme="light"] .glyphicon-object-align-right:before {
  content: "\e249";
}
/* line 297, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-triangle-right:before, body[data-theme="light"] .glyphicon-triangle-right:before {
  content: "\e250";
}
/* line 298, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-triangle-left:before, body[data-theme="light"] .glyphicon-triangle-left:before {
  content: "\e251";
}
/* line 299, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-triangle-bottom:before, body[data-theme="light"] .glyphicon-triangle-bottom:before {
  content: "\e252";
}
/* line 300, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-triangle-top:before, body[data-theme="light"] .glyphicon-triangle-top:before {
  content: "\e253";
}
/* line 301, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-console:before, body[data-theme="light"] .glyphicon-console:before {
  content: "\e254";
}
/* line 302, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-superscript:before, body[data-theme="light"] .glyphicon-superscript:before {
  content: "\e255";
}
/* line 303, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-subscript:before, body[data-theme="light"] .glyphicon-subscript:before {
  content: "\e256";
}
/* line 304, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-menu-left:before, body[data-theme="light"] .glyphicon-menu-left:before {
  content: "\e257";
}
/* line 305, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-menu-right:before, body[data-theme="light"] .glyphicon-menu-right:before {
  content: "\e258";
}
/* line 306, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-menu-down:before, body[data-theme="light"] .glyphicon-menu-down:before {
  content: "\e259";
}
/* line 307, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body:not([data-theme]) .glyphicon-menu-up:before, body[data-theme="light"] .glyphicon-menu-up:before {
  content: "\e260";
}
/* line 11, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_scaffolding.scss */
body:not([data-theme]) *, body[data-theme="light"] * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
/* line 14, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_scaffolding.scss */
body:not([data-theme]) *:before,
body:not([data-theme]) *:after, body[data-theme="light"] *:before,
body[data-theme="light"] *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
/* line 22, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_scaffolding.scss */
body:not([data-theme]) html, body[data-theme="light"] html {
  font-size: 10px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
/* line 27, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_scaffolding.scss */
body:not([data-theme]) body, body[data-theme="light"] body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.428571429;
  color: #333333;
  background-color: #fff;
}
/* line 36, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_scaffolding.scss */
body:not([data-theme]) input,
body:not([data-theme]) button,
body:not([data-theme]) select,
body:not([data-theme]) textarea, body[data-theme="light"] input,
body[data-theme="light"] button,
body[data-theme="light"] select,
body[data-theme="light"] textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
/* line 48, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_scaffolding.scss */
body:not([data-theme]) a, body[data-theme="light"] a {
  color: #337ab7;
  text-decoration: none;
}
/* line 52, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_scaffolding.scss */
body:not([data-theme]) a:hover, body:not([data-theme]) a:focus, body[data-theme="light"] a:hover, body[data-theme="light"] a:focus {
  color: #23527c;
  text-decoration: underline;
}
/* line 58, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_scaffolding.scss */
body:not([data-theme]) a:focus, body[data-theme="light"] a:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
/* line 69, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_scaffolding.scss */
body:not([data-theme]) figure, body[data-theme="light"] figure {
  margin: 0;
}
/* line 76, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_scaffolding.scss */
body:not([data-theme]) img, body[data-theme="light"] img {
  vertical-align: middle;
}
/* line 81, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_scaffolding.scss */
body:not([data-theme]) .img-responsive, body[data-theme="light"] .img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}
/* line 86, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_scaffolding.scss */
body:not([data-theme]) .img-rounded, body[data-theme="light"] .img-rounded {
  border-radius: 6px;
}
/* line 93, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_scaffolding.scss */
body:not([data-theme]) .img-thumbnail, body[data-theme="light"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_scaffolding.scss */
body:not([data-theme]) .img-circle, body[data-theme="light"] .img-circle {
  border-radius: 50%;
}
/* line 113, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_scaffolding.scss */
body:not([data-theme]) hr, body[data-theme="light"] hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #eeeeee;
}
/* line 125, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_scaffolding.scss */
body:not([data-theme]) .sr-only, body[data-theme="light"] .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
/* line 141, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_scaffolding.scss */
body:not([data-theme]) .sr-only-focusable:active, body:not([data-theme]) .sr-only-focusable:focus, body[data-theme="light"] .sr-only-focusable:active, body[data-theme="light"] .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}
/* line 159, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_scaffolding.scss */
body:not([data-theme]) [role="button"], body[data-theme="light"] [role="button"] {
  cursor: pointer;
}
/* line 9, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body:not([data-theme]) h1, body:not([data-theme]) h2, body:not([data-theme]) h3, body:not([data-theme]) h4, body:not([data-theme]) h5, body:not([data-theme]) h6,
body:not([data-theme]) .h1, body:not([data-theme]) .h2, body:not([data-theme]) .h3, body:not([data-theme]) .h4, body:not([data-theme]) .h5, body:not([data-theme]) .h6, body[data-theme="light"] h1, body[data-theme="light"] h2, body[data-theme="light"] h3, body[data-theme="light"] h4, body[data-theme="light"] h5, body[data-theme="light"] h6,
body[data-theme="light"] .h1, body[data-theme="light"] .h2, body[data-theme="light"] .h3, body[data-theme="light"] .h4, body[data-theme="light"] .h5, body[data-theme="light"] .h6 {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  color: inherit;
}
/* line 16, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body:not([data-theme]) h1 small,
body:not([data-theme]) h1 .small, body:not([data-theme]) h2 small,
body:not([data-theme]) h2 .small, body:not([data-theme]) h3 small,
body:not([data-theme]) h3 .small, body:not([data-theme]) h4 small,
body:not([data-theme]) h4 .small, body:not([data-theme]) h5 small,
body:not([data-theme]) h5 .small, body:not([data-theme]) h6 small,
body:not([data-theme]) h6 .small,
body:not([data-theme]) .h1 small,
body:not([data-theme]) .h1 .small, body:not([data-theme]) .h2 small,
body:not([data-theme]) .h2 .small, body:not([data-theme]) .h3 small,
body:not([data-theme]) .h3 .small, body:not([data-theme]) .h4 small,
body:not([data-theme]) .h4 .small, body:not([data-theme]) .h5 small,
body:not([data-theme]) .h5 .small, body:not([data-theme]) .h6 small,
body:not([data-theme]) .h6 .small, body[data-theme="light"] h1 small,
body[data-theme="light"] h1 .small, body[data-theme="light"] h2 small,
body[data-theme="light"] h2 .small, body[data-theme="light"] h3 small,
body[data-theme="light"] h3 .small, body[data-theme="light"] h4 small,
body[data-theme="light"] h4 .small, body[data-theme="light"] h5 small,
body[data-theme="light"] h5 .small, body[data-theme="light"] h6 small,
body[data-theme="light"] h6 .small,
body[data-theme="light"] .h1 small,
body[data-theme="light"] .h1 .small, body[data-theme="light"] .h2 small,
body[data-theme="light"] .h2 .small, body[data-theme="light"] .h3 small,
body[data-theme="light"] .h3 .small, body[data-theme="light"] .h4 small,
body[data-theme="light"] .h4 .small, body[data-theme="light"] .h5 small,
body[data-theme="light"] .h5 .small, body[data-theme="light"] .h6 small,
body[data-theme="light"] .h6 .small {
  font-weight: 400;
  line-height: 1;
  color: #777777;
}
/* line 24, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body:not([data-theme]) h1, body:not([data-theme]) .h1,
body:not([data-theme]) h2, body:not([data-theme]) .h2,
body:not([data-theme]) h3, body:not([data-theme]) .h3, body[data-theme="light"] h1, body[data-theme="light"] .h1,
body[data-theme="light"] h2, body[data-theme="light"] .h2,
body[data-theme="light"] h3, body[data-theme="light"] .h3 {
  margin-top: 20px;
  margin-bottom: 10px;
}
/* line 30, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body:not([data-theme]) h1 small,
body:not([data-theme]) h1 .small, body:not([data-theme]) .h1 small,
body:not([data-theme]) .h1 .small,
body:not([data-theme]) h2 small,
body:not([data-theme]) h2 .small, body:not([data-theme]) .h2 small,
body:not([data-theme]) .h2 .small,
body:not([data-theme]) h3 small,
body:not([data-theme]) h3 .small, body:not([data-theme]) .h3 small,
body:not([data-theme]) .h3 .small, body[data-theme="light"] h1 small,
body[data-theme="light"] h1 .small, body[data-theme="light"] .h1 small,
body[data-theme="light"] .h1 .small,
body[data-theme="light"] h2 small,
body[data-theme="light"] h2 .small, body[data-theme="light"] .h2 small,
body[data-theme="light"] .h2 .small,
body[data-theme="light"] h3 small,
body[data-theme="light"] h3 .small, body[data-theme="light"] .h3 small,
body[data-theme="light"] .h3 .small {
  font-size: 65%;
}
/* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body:not([data-theme]) h4, body:not([data-theme]) .h4,
body:not([data-theme]) h5, body:not([data-theme]) .h5,
body:not([data-theme]) h6, body:not([data-theme]) .h6, body[data-theme="light"] h4, body[data-theme="light"] .h4,
body[data-theme="light"] h5, body[data-theme="light"] .h5,
body[data-theme="light"] h6, body[data-theme="light"] .h6 {
  margin-top: 10px;
  margin-bottom: 10px;
}
/* line 41, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body:not([data-theme]) h4 small,
body:not([data-theme]) h4 .small, body:not([data-theme]) .h4 small,
body:not([data-theme]) .h4 .small,
body:not([data-theme]) h5 small,
body:not([data-theme]) h5 .small, body:not([data-theme]) .h5 small,
body:not([data-theme]) .h5 .small,
body:not([data-theme]) h6 small,
body:not([data-theme]) h6 .small, body:not([data-theme]) .h6 small,
body:not([data-theme]) .h6 .small, body[data-theme="light"] h4 small,
body[data-theme="light"] h4 .small, body[data-theme="light"] .h4 small,
body[data-theme="light"] .h4 .small,
body[data-theme="light"] h5 small,
body[data-theme="light"] h5 .small, body[data-theme="light"] .h5 small,
body[data-theme="light"] .h5 .small,
body[data-theme="light"] h6 small,
body[data-theme="light"] h6 .small, body[data-theme="light"] .h6 small,
body[data-theme="light"] .h6 .small {
  font-size: 75%;
}
/* line 47, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body:not([data-theme]) h1, body:not([data-theme]) .h1, body[data-theme="light"] h1, body[data-theme="light"] .h1 {
  font-size: 36px;
}
/* line 48, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body:not([data-theme]) h2, body:not([data-theme]) .h2, body[data-theme="light"] h2, body[data-theme="light"] .h2 {
  font-size: 30px;
}
/* line 49, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body:not([data-theme]) h3, body:not([data-theme]) .h3, body[data-theme="light"] h3, body[data-theme="light"] .h3 {
  font-size: 24px;
}
/* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body:not([data-theme]) h4, body:not([data-theme]) .h4, body[data-theme="light"] h4, body[data-theme="light"] .h4 {
  font-size: 18px;
}
/* line 51, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body:not([data-theme]) h5, body:not([data-theme]) .h5, body[data-theme="light"] h5, body[data-theme="light"] .h5 {
  font-size: 14px;
}
/* line 52, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body:not([data-theme]) h6, body:not([data-theme]) .h6, body[data-theme="light"] h6, body[data-theme="light"] .h6 {
  font-size: 12px;
}
/* line 58, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body:not([data-theme]) p, body[data-theme="light"] p {
  margin: 0 0 10px;
}
/* line 62, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body:not([data-theme]) .lead, body[data-theme="light"] .lead {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
}
@media (min-width: 768px) {
  /* line 62, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
  body:not([data-theme]) .lead, body[data-theme="light"] .lead {
    font-size: 21px;
  }
}
/* line 78, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body:not([data-theme]) small,
body:not([data-theme]) .small, body[data-theme="light"] small,
body[data-theme="light"] .small {
  font-size: 85%;
}
/* line 83, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body:not([data-theme]) mark,
body:not([data-theme]) .mark, body[data-theme="light"] mark,
body[data-theme="light"] .mark {
  padding: .2em;
  background-color: #fcf8e3;
}
/* line 90, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body:not([data-theme]) .text-left, body[data-theme="light"] .text-left {
  text-align: left;
}
/* line 91, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body:not([data-theme]) .text-right, body[data-theme="light"] .text-right {
  text-align: right;
}
/* line 92, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body:not([data-theme]) .text-center, body[data-theme="light"] .text-center {
  text-align: center;
}
/* line 93, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body:not([data-theme]) .text-justify, body[data-theme="light"] .text-justify {
  text-align: justify;
}
/* line 94, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body:not([data-theme]) .text-nowrap, body[data-theme="light"] .text-nowrap {
  white-space: nowrap;
}
/* line 97, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body:not([data-theme]) .text-lowercase, body[data-theme="light"] .text-lowercase {
  text-transform: lowercase;
}
/* line 98, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body:not([data-theme]) .text-uppercase, body:not([data-theme]) .initialism, body[data-theme="light"] .text-uppercase, body[data-theme="light"] .initialism {
  text-transform: uppercase;
}
/* line 99, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body:not([data-theme]) .text-capitalize, body[data-theme="light"] .text-capitalize {
  text-transform: capitalize;
}
/* line 102, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body:not([data-theme]) .text-muted, body[data-theme="light"] .text-muted {
  color: #777777;
}
/* line 5, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
body:not([data-theme]) .text-primary, body[data-theme="light"] .text-primary {
  color: #337ab7;
}
/* line 8, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
body:not([data-theme]) a.text-primary:hover,
body:not([data-theme]) a.text-primary:focus, body[data-theme="light"] a.text-primary:hover,
body[data-theme="light"] a.text-primary:focus {
  color: #286090;
}
/* line 5, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
body:not([data-theme]) .text-success, body[data-theme="light"] .text-success {
  color: #3c763d;
}
/* line 8, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
body:not([data-theme]) a.text-success:hover,
body:not([data-theme]) a.text-success:focus, body[data-theme="light"] a.text-success:hover,
body[data-theme="light"] a.text-success:focus {
  color: #2b542c;
}
/* line 5, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
body:not([data-theme]) .text-info, body[data-theme="light"] .text-info {
  color: #31708f;
}
/* line 8, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
body:not([data-theme]) a.text-info:hover,
body:not([data-theme]) a.text-info:focus, body[data-theme="light"] a.text-info:hover,
body[data-theme="light"] a.text-info:focus {
  color: #245269;
}
/* line 5, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
body:not([data-theme]) .text-warning, body[data-theme="light"] .text-warning {
  color: #8a6d3b;
}
/* line 8, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
body:not([data-theme]) a.text-warning:hover,
body:not([data-theme]) a.text-warning:focus, body[data-theme="light"] a.text-warning:hover,
body[data-theme="light"] a.text-warning:focus {
  color: #66512c;
}
/* line 5, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
body:not([data-theme]) .text-danger, body[data-theme="light"] .text-danger {
  color: #a94442;
}
/* line 8, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
body:not([data-theme]) a.text-danger:hover,
body:not([data-theme]) a.text-danger:focus, body[data-theme="light"] a.text-danger:hover,
body[data-theme="light"] a.text-danger:focus {
  color: #843534;
}
/* line 119, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body:not([data-theme]) .bg-primary, body[data-theme="light"] .bg-primary {
  color: #fff;
}
/* line 5, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
body:not([data-theme]) .bg-primary, body[data-theme="light"] .bg-primary {
  background-color: #337ab7;
}
/* line 8, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
body:not([data-theme]) a.bg-primary:hover,
body:not([data-theme]) a.bg-primary:focus, body[data-theme="light"] a.bg-primary:hover,
body[data-theme="light"] a.bg-primary:focus {
  background-color: #286090;
}
/* line 5, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
body:not([data-theme]) .bg-success, body[data-theme="light"] .bg-success {
  background-color: #dff0d8;
}
/* line 8, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
body:not([data-theme]) a.bg-success:hover,
body:not([data-theme]) a.bg-success:focus, body[data-theme="light"] a.bg-success:hover,
body[data-theme="light"] a.bg-success:focus {
  background-color: #c1e2b3;
}
/* line 5, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
body:not([data-theme]) .bg-info, body[data-theme="light"] .bg-info {
  background-color: #d9edf7;
}
/* line 8, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
body:not([data-theme]) a.bg-info:hover,
body:not([data-theme]) a.bg-info:focus, body[data-theme="light"] a.bg-info:hover,
body[data-theme="light"] a.bg-info:focus {
  background-color: #afd9ee;
}
/* line 5, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
body:not([data-theme]) .bg-warning, body[data-theme="light"] .bg-warning {
  background-color: #fcf8e3;
}
/* line 8, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
body:not([data-theme]) a.bg-warning:hover,
body:not([data-theme]) a.bg-warning:focus, body[data-theme="light"] a.bg-warning:hover,
body[data-theme="light"] a.bg-warning:focus {
  background-color: #f7ecb5;
}
/* line 5, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
body:not([data-theme]) .bg-danger, body[data-theme="light"] .bg-danger {
  background-color: #f2dede;
}
/* line 8, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
body:not([data-theme]) a.bg-danger:hover,
body:not([data-theme]) a.bg-danger:focus, body[data-theme="light"] a.bg-danger:hover,
body[data-theme="light"] a.bg-danger:focus {
  background-color: #e4b9b9;
}
/* line 138, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body:not([data-theme]) .page-header, body[data-theme="light"] .page-header {
  padding-bottom: 9px;
  margin: 40px 0 20px;
  border-bottom: 1px solid #eeeeee;
}
/* line 149, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body:not([data-theme]) ul,
body:not([data-theme]) ol, body[data-theme="light"] ul,
body[data-theme="light"] ol {
  margin-top: 0;
  margin-bottom: 10px;
}
/* line 153, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body:not([data-theme]) ul ul,
body:not([data-theme]) ul ol,
body:not([data-theme]) ol ul,
body:not([data-theme]) ol ol, body[data-theme="light"] ul ul,
body[data-theme="light"] ul ol,
body[data-theme="light"] ol ul,
body[data-theme="light"] ol ol {
  margin-bottom: 0;
}
/* line 167, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body:not([data-theme]) .list-unstyled, body[data-theme="light"] .list-unstyled {
  padding-left: 0;
  list-style: none;
}
/* line 173, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body:not([data-theme]) .list-inline, body[data-theme="light"] .list-inline {
  padding-left: 0;
  list-style: none;
  margin-left: -5px;
}
/* line 177, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body:not([data-theme]) .list-inline > li, body[data-theme="light"] .list-inline > li {
  display: inline-block;
  padding-right: 5px;
  padding-left: 5px;
}
/* line 185, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body:not([data-theme]) dl, body[data-theme="light"] dl {
  margin-top: 0;
  margin-bottom: 20px;
}
/* line 189, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body:not([data-theme]) dt,
body:not([data-theme]) dd, body[data-theme="light"] dt,
body[data-theme="light"] dd {
  line-height: 1.428571429;
}
/* line 193, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body:not([data-theme]) dt, body[data-theme="light"] dt {
  font-weight: 700;
}
/* line 196, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body:not([data-theme]) dd, body[data-theme="light"] dd {
  margin-left: 0;
}
/* line 14, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
body:not([data-theme]) .dl-horizontal dd:before, body:not([data-theme]) .dl-horizontal dd:after, body[data-theme="light"] .dl-horizontal dd:before, body[data-theme="light"] .dl-horizontal dd:after {
  display: table;
  content: " ";
}
/* line 19, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
body:not([data-theme]) .dl-horizontal dd:after, body[data-theme="light"] .dl-horizontal dd:after {
  clear: both;
}
@media (min-width: 768px) {
  /* line 211, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
  body:not([data-theme]) .dl-horizontal dt, body[data-theme="light"] .dl-horizontal dt {
    float: left;
    width: 160px;
    clear: left;
    text-align: right;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  /* line 218, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
  body:not([data-theme]) .dl-horizontal dd, body[data-theme="light"] .dl-horizontal dd {
    margin-left: 180px;
  }
}
/* line 230, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body:not([data-theme]) abbr[title],
body:not([data-theme]) abbr[data-original-title], body[data-theme="light"] abbr[title],
body[data-theme="light"] abbr[data-original-title] {
  cursor: help;
}
/* line 235, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body:not([data-theme]) .initialism, body[data-theme="light"] .initialism {
  font-size: 90%;
}
/* line 241, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body:not([data-theme]) blockquote, body[data-theme="light"] blockquote {
  padding: 10px 20px;
  margin: 0 0 20px;
  font-size: 17.5px;
  border-left: 5px solid #eeeeee;
}
/* line 250, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body:not([data-theme]) blockquote p:last-child,
body:not([data-theme]) blockquote ul:last-child,
body:not([data-theme]) blockquote ol:last-child, body[data-theme="light"] blockquote p:last-child,
body[data-theme="light"] blockquote ul:last-child,
body[data-theme="light"] blockquote ol:last-child {
  margin-bottom: 0;
}
/* line 257, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body:not([data-theme]) blockquote footer,
body:not([data-theme]) blockquote small,
body:not([data-theme]) blockquote .small, body[data-theme="light"] blockquote footer,
body[data-theme="light"] blockquote small,
body[data-theme="light"] blockquote .small {
  display: block;
  font-size: 80%;
  line-height: 1.428571429;
  color: #777777;
}
/* line 265, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body:not([data-theme]) blockquote footer:before,
body:not([data-theme]) blockquote small:before,
body:not([data-theme]) blockquote .small:before, body[data-theme="light"] blockquote footer:before,
body[data-theme="light"] blockquote small:before,
body[data-theme="light"] blockquote .small:before {
  content: "\2014 \00A0";
}
/* line 274, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body:not([data-theme]) .blockquote-reverse,
body:not([data-theme]) blockquote.pull-right, body[data-theme="light"] .blockquote-reverse,
body[data-theme="light"] blockquote.pull-right {
  padding-right: 15px;
  padding-left: 0;
  text-align: right;
  border-right: 5px solid #eeeeee;
  border-left: 0;
}
/* line 286, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body:not([data-theme]) .blockquote-reverse footer:before,
body:not([data-theme]) .blockquote-reverse small:before,
body:not([data-theme]) .blockquote-reverse .small:before,
body:not([data-theme]) blockquote.pull-right footer:before,
body:not([data-theme]) blockquote.pull-right small:before,
body:not([data-theme]) blockquote.pull-right .small:before, body[data-theme="light"] .blockquote-reverse footer:before,
body[data-theme="light"] .blockquote-reverse small:before,
body[data-theme="light"] .blockquote-reverse .small:before,
body[data-theme="light"] blockquote.pull-right footer:before,
body[data-theme="light"] blockquote.pull-right small:before,
body[data-theme="light"] blockquote.pull-right .small:before {
  content: "";
}
/* line 287, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body:not([data-theme]) .blockquote-reverse footer:after,
body:not([data-theme]) .blockquote-reverse small:after,
body:not([data-theme]) .blockquote-reverse .small:after,
body:not([data-theme]) blockquote.pull-right footer:after,
body:not([data-theme]) blockquote.pull-right small:after,
body:not([data-theme]) blockquote.pull-right .small:after, body[data-theme="light"] .blockquote-reverse footer:after,
body[data-theme="light"] .blockquote-reverse small:after,
body[data-theme="light"] .blockquote-reverse .small:after,
body[data-theme="light"] blockquote.pull-right footer:after,
body[data-theme="light"] blockquote.pull-right small:after,
body[data-theme="light"] blockquote.pull-right .small:after {
  content: "\00A0 \2014";
}
/* line 294, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body:not([data-theme]) address, body[data-theme="light"] address {
  margin-bottom: 20px;
  font-style: normal;
  line-height: 1.428571429;
}
/* line 7, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_code.scss */
body:not([data-theme]) code,
body:not([data-theme]) kbd,
body:not([data-theme]) pre,
body:not([data-theme]) samp, body[data-theme="light"] code,
body[data-theme="light"] kbd,
body[data-theme="light"] pre,
body[data-theme="light"] samp {
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
}
/* line 15, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_code.scss */
body:not([data-theme]) code, body[data-theme="light"] code {
  padding: 2px 4px;
  font-size: 90%;
  color: #c7254e;
  background-color: #f9f2f4;
  border-radius: 4px;
}
/* line 24, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_code.scss */
body:not([data-theme]) kbd, body[data-theme="light"] 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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_code.scss */
body:not([data-theme]) kbd kbd, body[data-theme="light"] kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: 700;
  box-shadow: none;
}
/* line 41, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_code.scss */
body:not([data-theme]) pre, body[data-theme="light"] 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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_code.scss */
body:not([data-theme]) pre code, body[data-theme="light"] pre code {
  padding: 0;
  font-size: inherit;
  color: inherit;
  white-space: pre-wrap;
  background-color: transparent;
  border-radius: 0;
}
/* line 66, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_code.scss */
body:not([data-theme]) .pre-scrollable, body[data-theme="light"] .pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}
/* line 10, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_grid.scss */
body:not([data-theme]) .container, body[data-theme="light"] .container {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
/* line 14, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
body:not([data-theme]) .container:before, body:not([data-theme]) .container:after, body[data-theme="light"] .container:before, body[data-theme="light"] .container:after {
  display: table;
  content: " ";
}
/* line 19, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
body:not([data-theme]) .container:after, body[data-theme="light"] .container:after {
  clear: both;
}
@media (min-width: 768px) {
  /* line 10, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_grid.scss */
  body:not([data-theme]) .container, body[data-theme="light"] .container {
    width: 750px;
  }
}
@media (min-width: 992px) {
  /* line 10, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_grid.scss */
  body:not([data-theme]) .container, body[data-theme="light"] .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  /* line 10, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_grid.scss */
  body:not([data-theme]) .container, body[data-theme="light"] .container {
    width: 1170px;
  }
}
/* line 30, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_grid.scss */
body:not([data-theme]) .container-fluid, body[data-theme="light"] .container-fluid {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
/* line 14, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
body:not([data-theme]) .container-fluid:before, body:not([data-theme]) .container-fluid:after, body[data-theme="light"] .container-fluid:before, body[data-theme="light"] .container-fluid:after {
  display: table;
  content: " ";
}
/* line 19, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
body:not([data-theme]) .container-fluid:after, body[data-theme="light"] .container-fluid:after {
  clear: both;
}
/* line 39, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_grid.scss */
body:not([data-theme]) .row, body[data-theme="light"] .row {
  margin-right: -15px;
  margin-left: -15px;
}
/* line 14, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
body:not([data-theme]) .row:before, body:not([data-theme]) .row:after, body[data-theme="light"] .row:before, body[data-theme="light"] .row:after {
  display: table;
  content: " ";
}
/* line 19, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
body:not([data-theme]) .row:after, body[data-theme="light"] .row:after {
  clear: both;
}
/* line 43, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_grid.scss */
body:not([data-theme]) .row-no-gutters, body[data-theme="light"] .row-no-gutters {
  margin-right: 0;
  margin-left: 0;
}
/* line 47, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_grid.scss */
body:not([data-theme]) .row-no-gutters [class*="col-"], body[data-theme="light"] .row-no-gutters [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}
/* line 11, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body:not([data-theme]) .col-xs-1, body:not([data-theme]) .col-sm-1, body:not([data-theme]) .col-md-1, body:not([data-theme]) .col-lg-1, body:not([data-theme]) .col-xs-2, body:not([data-theme]) .col-sm-2, body:not([data-theme]) .col-md-2, body:not([data-theme]) .col-lg-2, body:not([data-theme]) .col-xs-3, body:not([data-theme]) .col-sm-3, body:not([data-theme]) .col-md-3, body:not([data-theme]) .col-lg-3, body:not([data-theme]) .col-xs-4, body:not([data-theme]) .col-sm-4, body:not([data-theme]) .col-md-4, body:not([data-theme]) .col-lg-4, body:not([data-theme]) .col-xs-5, body:not([data-theme]) .col-sm-5, body:not([data-theme]) .col-md-5, body:not([data-theme]) .col-lg-5, body:not([data-theme]) .col-xs-6, body:not([data-theme]) .col-sm-6, body:not([data-theme]) .col-md-6, body:not([data-theme]) .col-lg-6, body:not([data-theme]) .col-xs-7, body:not([data-theme]) .col-sm-7, body:not([data-theme]) .col-md-7, body:not([data-theme]) .col-lg-7, body:not([data-theme]) .col-xs-8, body:not([data-theme]) .col-sm-8, body:not([data-theme]) .col-md-8, body:not([data-theme]) .col-lg-8, body:not([data-theme]) .col-xs-9, body:not([data-theme]) .col-sm-9, body:not([data-theme]) .col-md-9, body:not([data-theme]) .col-lg-9, body:not([data-theme]) .col-xs-10, body:not([data-theme]) .col-sm-10, body:not([data-theme]) .col-md-10, body:not([data-theme]) .col-lg-10, body:not([data-theme]) .col-xs-11, body:not([data-theme]) .col-sm-11, body:not([data-theme]) .col-md-11, body:not([data-theme]) .col-lg-11, body:not([data-theme]) .col-xs-12, body:not([data-theme]) .col-sm-12, body:not([data-theme]) .col-md-12, body:not([data-theme]) .col-lg-12, body[data-theme="light"] .col-xs-1, body[data-theme="light"] .col-sm-1, body[data-theme="light"] .col-md-1, body[data-theme="light"] .col-lg-1, body[data-theme="light"] .col-xs-2, body[data-theme="light"] .col-sm-2, body[data-theme="light"] .col-md-2, body[data-theme="light"] .col-lg-2, body[data-theme="light"] .col-xs-3, body[data-theme="light"] .col-sm-3, body[data-theme="light"] .col-md-3, body[data-theme="light"] .col-lg-3, body[data-theme="light"] .col-xs-4, body[data-theme="light"] .col-sm-4, body[data-theme="light"] .col-md-4, body[data-theme="light"] .col-lg-4, body[data-theme="light"] .col-xs-5, body[data-theme="light"] .col-sm-5, body[data-theme="light"] .col-md-5, body[data-theme="light"] .col-lg-5, body[data-theme="light"] .col-xs-6, body[data-theme="light"] .col-sm-6, body[data-theme="light"] .col-md-6, body[data-theme="light"] .col-lg-6, body[data-theme="light"] .col-xs-7, body[data-theme="light"] .col-sm-7, body[data-theme="light"] .col-md-7, body[data-theme="light"] .col-lg-7, body[data-theme="light"] .col-xs-8, body[data-theme="light"] .col-sm-8, body[data-theme="light"] .col-md-8, body[data-theme="light"] .col-lg-8, body[data-theme="light"] .col-xs-9, body[data-theme="light"] .col-sm-9, body[data-theme="light"] .col-md-9, body[data-theme="light"] .col-lg-9, body[data-theme="light"] .col-xs-10, body[data-theme="light"] .col-sm-10, body[data-theme="light"] .col-md-10, body[data-theme="light"] .col-lg-10, body[data-theme="light"] .col-xs-11, body[data-theme="light"] .col-sm-11, body[data-theme="light"] .col-md-11, body[data-theme="light"] .col-lg-11, body[data-theme="light"] .col-xs-12, body[data-theme="light"] .col-sm-12, body[data-theme="light"] .col-md-12, body[data-theme="light"] .col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}
/* line 27, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body:not([data-theme]) .col-xs-1, body:not([data-theme]) .col-xs-2, body:not([data-theme]) .col-xs-3, body:not([data-theme]) .col-xs-4, body:not([data-theme]) .col-xs-5, body:not([data-theme]) .col-xs-6, body:not([data-theme]) .col-xs-7, body:not([data-theme]) .col-xs-8, body:not([data-theme]) .col-xs-9, body:not([data-theme]) .col-xs-10, body:not([data-theme]) .col-xs-11, body:not([data-theme]) .col-xs-12, body[data-theme="light"] .col-xs-1, body[data-theme="light"] .col-xs-2, body[data-theme="light"] .col-xs-3, body[data-theme="light"] .col-xs-4, body[data-theme="light"] .col-xs-5, body[data-theme="light"] .col-xs-6, body[data-theme="light"] .col-xs-7, body[data-theme="light"] .col-xs-8, body[data-theme="light"] .col-xs-9, body[data-theme="light"] .col-xs-10, body[data-theme="light"] .col-xs-11, body[data-theme="light"] .col-xs-12 {
  float: left;
}
/* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body:not([data-theme]) .col-xs-1, body[data-theme="light"] .col-xs-1 {
  width: 8.3333333333%;
}
/* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body:not([data-theme]) .col-xs-2, body[data-theme="light"] .col-xs-2 {
  width: 16.6666666667%;
}
/* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body:not([data-theme]) .col-xs-3, body[data-theme="light"] .col-xs-3 {
  width: 25%;
}
/* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body:not([data-theme]) .col-xs-4, body[data-theme="light"] .col-xs-4 {
  width: 33.3333333333%;
}
/* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body:not([data-theme]) .col-xs-5, body[data-theme="light"] .col-xs-5 {
  width: 41.6666666667%;
}
/* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body:not([data-theme]) .col-xs-6, body[data-theme="light"] .col-xs-6 {
  width: 50%;
}
/* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body:not([data-theme]) .col-xs-7, body[data-theme="light"] .col-xs-7 {
  width: 58.3333333333%;
}
/* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body:not([data-theme]) .col-xs-8, body[data-theme="light"] .col-xs-8 {
  width: 66.6666666667%;
}
/* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body:not([data-theme]) .col-xs-9, body[data-theme="light"] .col-xs-9 {
  width: 75%;
}
/* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body:not([data-theme]) .col-xs-10, body[data-theme="light"] .col-xs-10 {
  width: 83.3333333333%;
}
/* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body:not([data-theme]) .col-xs-11, body[data-theme="light"] .col-xs-11 {
  width: 91.6666666667%;
}
/* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body:not([data-theme]) .col-xs-12, body[data-theme="light"] .col-xs-12 {
  width: 100%;
}
/* line 55, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body:not([data-theme]) .col-xs-pull-0, body[data-theme="light"] .col-xs-pull-0 {
  right: auto;
}
/* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body:not([data-theme]) .col-xs-pull-1, body[data-theme="light"] .col-xs-pull-1 {
  right: 8.3333333333%;
}
/* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body:not([data-theme]) .col-xs-pull-2, body[data-theme="light"] .col-xs-pull-2 {
  right: 16.6666666667%;
}
/* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body:not([data-theme]) .col-xs-pull-3, body[data-theme="light"] .col-xs-pull-3 {
  right: 25%;
}
/* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body:not([data-theme]) .col-xs-pull-4, body[data-theme="light"] .col-xs-pull-4 {
  right: 33.3333333333%;
}
/* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body:not([data-theme]) .col-xs-pull-5, body[data-theme="light"] .col-xs-pull-5 {
  right: 41.6666666667%;
}
/* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body:not([data-theme]) .col-xs-pull-6, body[data-theme="light"] .col-xs-pull-6 {
  right: 50%;
}
/* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body:not([data-theme]) .col-xs-pull-7, body[data-theme="light"] .col-xs-pull-7 {
  right: 58.3333333333%;
}
/* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body:not([data-theme]) .col-xs-pull-8, body[data-theme="light"] .col-xs-pull-8 {
  right: 66.6666666667%;
}
/* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body:not([data-theme]) .col-xs-pull-9, body[data-theme="light"] .col-xs-pull-9 {
  right: 75%;
}
/* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body:not([data-theme]) .col-xs-pull-10, body[data-theme="light"] .col-xs-pull-10 {
  right: 83.3333333333%;
}
/* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body:not([data-theme]) .col-xs-pull-11, body[data-theme="light"] .col-xs-pull-11 {
  right: 91.6666666667%;
}
/* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body:not([data-theme]) .col-xs-pull-12, body[data-theme="light"] .col-xs-pull-12 {
  right: 100%;
}
/* line 45, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body:not([data-theme]) .col-xs-push-0, body[data-theme="light"] .col-xs-push-0 {
  left: auto;
}
/* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body:not([data-theme]) .col-xs-push-1, body[data-theme="light"] .col-xs-push-1 {
  left: 8.3333333333%;
}
/* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body:not([data-theme]) .col-xs-push-2, body[data-theme="light"] .col-xs-push-2 {
  left: 16.6666666667%;
}
/* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body:not([data-theme]) .col-xs-push-3, body[data-theme="light"] .col-xs-push-3 {
  left: 25%;
}
/* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body:not([data-theme]) .col-xs-push-4, body[data-theme="light"] .col-xs-push-4 {
  left: 33.3333333333%;
}
/* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body:not([data-theme]) .col-xs-push-5, body[data-theme="light"] .col-xs-push-5 {
  left: 41.6666666667%;
}
/* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body:not([data-theme]) .col-xs-push-6, body[data-theme="light"] .col-xs-push-6 {
  left: 50%;
}
/* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body:not([data-theme]) .col-xs-push-7, body[data-theme="light"] .col-xs-push-7 {
  left: 58.3333333333%;
}
/* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body:not([data-theme]) .col-xs-push-8, body[data-theme="light"] .col-xs-push-8 {
  left: 66.6666666667%;
}
/* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body:not([data-theme]) .col-xs-push-9, body[data-theme="light"] .col-xs-push-9 {
  left: 75%;
}
/* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body:not([data-theme]) .col-xs-push-10, body[data-theme="light"] .col-xs-push-10 {
  left: 83.3333333333%;
}
/* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body:not([data-theme]) .col-xs-push-11, body[data-theme="light"] .col-xs-push-11 {
  left: 91.6666666667%;
}
/* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body:not([data-theme]) .col-xs-push-12, body[data-theme="light"] .col-xs-push-12 {
  left: 100%;
}
/* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body:not([data-theme]) .col-xs-offset-0, body[data-theme="light"] .col-xs-offset-0 {
  margin-left: 0%;
}
/* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body:not([data-theme]) .col-xs-offset-1, body[data-theme="light"] .col-xs-offset-1 {
  margin-left: 8.3333333333%;
}
/* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body:not([data-theme]) .col-xs-offset-2, body[data-theme="light"] .col-xs-offset-2 {
  margin-left: 16.6666666667%;
}
/* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body:not([data-theme]) .col-xs-offset-3, body[data-theme="light"] .col-xs-offset-3 {
  margin-left: 25%;
}
/* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body:not([data-theme]) .col-xs-offset-4, body[data-theme="light"] .col-xs-offset-4 {
  margin-left: 33.3333333333%;
}
/* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body:not([data-theme]) .col-xs-offset-5, body[data-theme="light"] .col-xs-offset-5 {
  margin-left: 41.6666666667%;
}
/* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body:not([data-theme]) .col-xs-offset-6, body[data-theme="light"] .col-xs-offset-6 {
  margin-left: 50%;
}
/* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body:not([data-theme]) .col-xs-offset-7, body[data-theme="light"] .col-xs-offset-7 {
  margin-left: 58.3333333333%;
}
/* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body:not([data-theme]) .col-xs-offset-8, body[data-theme="light"] .col-xs-offset-8 {
  margin-left: 66.6666666667%;
}
/* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body:not([data-theme]) .col-xs-offset-9, body[data-theme="light"] .col-xs-offset-9 {
  margin-left: 75%;
}
/* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body:not([data-theme]) .col-xs-offset-10, body[data-theme="light"] .col-xs-offset-10 {
  margin-left: 83.3333333333%;
}
/* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body:not([data-theme]) .col-xs-offset-11, body[data-theme="light"] .col-xs-offset-11 {
  margin-left: 91.6666666667%;
}
/* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body:not([data-theme]) .col-xs-offset-12, body[data-theme="light"] .col-xs-offset-12 {
  margin-left: 100%;
}
@media (min-width: 768px) {
  /* line 27, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-sm-1, body:not([data-theme]) .col-sm-2, body:not([data-theme]) .col-sm-3, body:not([data-theme]) .col-sm-4, body:not([data-theme]) .col-sm-5, body:not([data-theme]) .col-sm-6, body:not([data-theme]) .col-sm-7, body:not([data-theme]) .col-sm-8, body:not([data-theme]) .col-sm-9, body:not([data-theme]) .col-sm-10, body:not([data-theme]) .col-sm-11, body:not([data-theme]) .col-sm-12, body[data-theme="light"] .col-sm-1, body[data-theme="light"] .col-sm-2, body[data-theme="light"] .col-sm-3, body[data-theme="light"] .col-sm-4, body[data-theme="light"] .col-sm-5, body[data-theme="light"] .col-sm-6, body[data-theme="light"] .col-sm-7, body[data-theme="light"] .col-sm-8, body[data-theme="light"] .col-sm-9, body[data-theme="light"] .col-sm-10, body[data-theme="light"] .col-sm-11, body[data-theme="light"] .col-sm-12 {
    float: left;
  }
  /* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-sm-1, body[data-theme="light"] .col-sm-1 {
    width: 8.3333333333%;
  }
  /* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-sm-2, body[data-theme="light"] .col-sm-2 {
    width: 16.6666666667%;
  }
  /* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-sm-3, body[data-theme="light"] .col-sm-3 {
    width: 25%;
  }
  /* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-sm-4, body[data-theme="light"] .col-sm-4 {
    width: 33.3333333333%;
  }
  /* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-sm-5, body[data-theme="light"] .col-sm-5 {
    width: 41.6666666667%;
  }
  /* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-sm-6, body[data-theme="light"] .col-sm-6 {
    width: 50%;
  }
  /* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-sm-7, body[data-theme="light"] .col-sm-7 {
    width: 58.3333333333%;
  }
  /* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-sm-8, body[data-theme="light"] .col-sm-8 {
    width: 66.6666666667%;
  }
  /* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-sm-9, body[data-theme="light"] .col-sm-9 {
    width: 75%;
  }
  /* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-sm-10, body[data-theme="light"] .col-sm-10 {
    width: 83.3333333333%;
  }
  /* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-sm-11, body[data-theme="light"] .col-sm-11 {
    width: 91.6666666667%;
  }
  /* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-sm-12, body[data-theme="light"] .col-sm-12 {
    width: 100%;
  }
  /* line 55, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-sm-pull-0, body[data-theme="light"] .col-sm-pull-0 {
    right: auto;
  }
  /* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-sm-pull-1, body[data-theme="light"] .col-sm-pull-1 {
    right: 8.3333333333%;
  }
  /* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-sm-pull-2, body[data-theme="light"] .col-sm-pull-2 {
    right: 16.6666666667%;
  }
  /* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-sm-pull-3, body[data-theme="light"] .col-sm-pull-3 {
    right: 25%;
  }
  /* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-sm-pull-4, body[data-theme="light"] .col-sm-pull-4 {
    right: 33.3333333333%;
  }
  /* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-sm-pull-5, body[data-theme="light"] .col-sm-pull-5 {
    right: 41.6666666667%;
  }
  /* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-sm-pull-6, body[data-theme="light"] .col-sm-pull-6 {
    right: 50%;
  }
  /* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-sm-pull-7, body[data-theme="light"] .col-sm-pull-7 {
    right: 58.3333333333%;
  }
  /* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-sm-pull-8, body[data-theme="light"] .col-sm-pull-8 {
    right: 66.6666666667%;
  }
  /* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-sm-pull-9, body[data-theme="light"] .col-sm-pull-9 {
    right: 75%;
  }
  /* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-sm-pull-10, body[data-theme="light"] .col-sm-pull-10 {
    right: 83.3333333333%;
  }
  /* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-sm-pull-11, body[data-theme="light"] .col-sm-pull-11 {
    right: 91.6666666667%;
  }
  /* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-sm-pull-12, body[data-theme="light"] .col-sm-pull-12 {
    right: 100%;
  }
  /* line 45, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-sm-push-0, body[data-theme="light"] .col-sm-push-0 {
    left: auto;
  }
  /* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-sm-push-1, body[data-theme="light"] .col-sm-push-1 {
    left: 8.3333333333%;
  }
  /* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-sm-push-2, body[data-theme="light"] .col-sm-push-2 {
    left: 16.6666666667%;
  }
  /* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-sm-push-3, body[data-theme="light"] .col-sm-push-3 {
    left: 25%;
  }
  /* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-sm-push-4, body[data-theme="light"] .col-sm-push-4 {
    left: 33.3333333333%;
  }
  /* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-sm-push-5, body[data-theme="light"] .col-sm-push-5 {
    left: 41.6666666667%;
  }
  /* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-sm-push-6, body[data-theme="light"] .col-sm-push-6 {
    left: 50%;
  }
  /* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-sm-push-7, body[data-theme="light"] .col-sm-push-7 {
    left: 58.3333333333%;
  }
  /* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-sm-push-8, body[data-theme="light"] .col-sm-push-8 {
    left: 66.6666666667%;
  }
  /* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-sm-push-9, body[data-theme="light"] .col-sm-push-9 {
    left: 75%;
  }
  /* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-sm-push-10, body[data-theme="light"] .col-sm-push-10 {
    left: 83.3333333333%;
  }
  /* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-sm-push-11, body[data-theme="light"] .col-sm-push-11 {
    left: 91.6666666667%;
  }
  /* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-sm-push-12, body[data-theme="light"] .col-sm-push-12 {
    left: 100%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-sm-offset-0, body[data-theme="light"] .col-sm-offset-0 {
    margin-left: 0%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-sm-offset-1, body[data-theme="light"] .col-sm-offset-1 {
    margin-left: 8.3333333333%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-sm-offset-2, body[data-theme="light"] .col-sm-offset-2 {
    margin-left: 16.6666666667%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-sm-offset-3, body[data-theme="light"] .col-sm-offset-3 {
    margin-left: 25%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-sm-offset-4, body[data-theme="light"] .col-sm-offset-4 {
    margin-left: 33.3333333333%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-sm-offset-5, body[data-theme="light"] .col-sm-offset-5 {
    margin-left: 41.6666666667%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-sm-offset-6, body[data-theme="light"] .col-sm-offset-6 {
    margin-left: 50%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-sm-offset-7, body[data-theme="light"] .col-sm-offset-7 {
    margin-left: 58.3333333333%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-sm-offset-8, body[data-theme="light"] .col-sm-offset-8 {
    margin-left: 66.6666666667%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-sm-offset-9, body[data-theme="light"] .col-sm-offset-9 {
    margin-left: 75%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-sm-offset-10, body[data-theme="light"] .col-sm-offset-10 {
    margin-left: 83.3333333333%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-sm-offset-11, body[data-theme="light"] .col-sm-offset-11 {
    margin-left: 91.6666666667%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-sm-offset-12, body[data-theme="light"] .col-sm-offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 992px) {
  /* line 27, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-md-1, body:not([data-theme]) .col-md-2, body:not([data-theme]) .col-md-3, body:not([data-theme]) .col-md-4, body:not([data-theme]) .col-md-5, body:not([data-theme]) .col-md-6, body:not([data-theme]) .col-md-7, body:not([data-theme]) .col-md-8, body:not([data-theme]) .col-md-9, body:not([data-theme]) .col-md-10, body:not([data-theme]) .col-md-11, body:not([data-theme]) .col-md-12, body[data-theme="light"] .col-md-1, body[data-theme="light"] .col-md-2, body[data-theme="light"] .col-md-3, body[data-theme="light"] .col-md-4, body[data-theme="light"] .col-md-5, body[data-theme="light"] .col-md-6, body[data-theme="light"] .col-md-7, body[data-theme="light"] .col-md-8, body[data-theme="light"] .col-md-9, body[data-theme="light"] .col-md-10, body[data-theme="light"] .col-md-11, body[data-theme="light"] .col-md-12 {
    float: left;
  }
  /* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-md-1, body[data-theme="light"] .col-md-1 {
    width: 8.3333333333%;
  }
  /* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-md-2, body[data-theme="light"] .col-md-2 {
    width: 16.6666666667%;
  }
  /* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-md-3, body[data-theme="light"] .col-md-3 {
    width: 25%;
  }
  /* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-md-4, body[data-theme="light"] .col-md-4 {
    width: 33.3333333333%;
  }
  /* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-md-5, body[data-theme="light"] .col-md-5 {
    width: 41.6666666667%;
  }
  /* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-md-6, body[data-theme="light"] .col-md-6 {
    width: 50%;
  }
  /* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-md-7, body[data-theme="light"] .col-md-7 {
    width: 58.3333333333%;
  }
  /* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-md-8, body[data-theme="light"] .col-md-8 {
    width: 66.6666666667%;
  }
  /* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-md-9, body[data-theme="light"] .col-md-9 {
    width: 75%;
  }
  /* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-md-10, body[data-theme="light"] .col-md-10 {
    width: 83.3333333333%;
  }
  /* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-md-11, body[data-theme="light"] .col-md-11 {
    width: 91.6666666667%;
  }
  /* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-md-12, body[data-theme="light"] .col-md-12 {
    width: 100%;
  }
  /* line 55, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-md-pull-0, body[data-theme="light"] .col-md-pull-0 {
    right: auto;
  }
  /* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-md-pull-1, body[data-theme="light"] .col-md-pull-1 {
    right: 8.3333333333%;
  }
  /* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-md-pull-2, body[data-theme="light"] .col-md-pull-2 {
    right: 16.6666666667%;
  }
  /* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-md-pull-3, body[data-theme="light"] .col-md-pull-3 {
    right: 25%;
  }
  /* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-md-pull-4, body[data-theme="light"] .col-md-pull-4 {
    right: 33.3333333333%;
  }
  /* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-md-pull-5, body[data-theme="light"] .col-md-pull-5 {
    right: 41.6666666667%;
  }
  /* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-md-pull-6, body[data-theme="light"] .col-md-pull-6 {
    right: 50%;
  }
  /* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-md-pull-7, body[data-theme="light"] .col-md-pull-7 {
    right: 58.3333333333%;
  }
  /* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-md-pull-8, body[data-theme="light"] .col-md-pull-8 {
    right: 66.6666666667%;
  }
  /* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-md-pull-9, body[data-theme="light"] .col-md-pull-9 {
    right: 75%;
  }
  /* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-md-pull-10, body[data-theme="light"] .col-md-pull-10 {
    right: 83.3333333333%;
  }
  /* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-md-pull-11, body[data-theme="light"] .col-md-pull-11 {
    right: 91.6666666667%;
  }
  /* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-md-pull-12, body[data-theme="light"] .col-md-pull-12 {
    right: 100%;
  }
  /* line 45, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-md-push-0, body[data-theme="light"] .col-md-push-0 {
    left: auto;
  }
  /* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-md-push-1, body[data-theme="light"] .col-md-push-1 {
    left: 8.3333333333%;
  }
  /* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-md-push-2, body[data-theme="light"] .col-md-push-2 {
    left: 16.6666666667%;
  }
  /* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-md-push-3, body[data-theme="light"] .col-md-push-3 {
    left: 25%;
  }
  /* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-md-push-4, body[data-theme="light"] .col-md-push-4 {
    left: 33.3333333333%;
  }
  /* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-md-push-5, body[data-theme="light"] .col-md-push-5 {
    left: 41.6666666667%;
  }
  /* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-md-push-6, body[data-theme="light"] .col-md-push-6 {
    left: 50%;
  }
  /* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-md-push-7, body[data-theme="light"] .col-md-push-7 {
    left: 58.3333333333%;
  }
  /* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-md-push-8, body[data-theme="light"] .col-md-push-8 {
    left: 66.6666666667%;
  }
  /* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-md-push-9, body[data-theme="light"] .col-md-push-9 {
    left: 75%;
  }
  /* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-md-push-10, body[data-theme="light"] .col-md-push-10 {
    left: 83.3333333333%;
  }
  /* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-md-push-11, body[data-theme="light"] .col-md-push-11 {
    left: 91.6666666667%;
  }
  /* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-md-push-12, body[data-theme="light"] .col-md-push-12 {
    left: 100%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-md-offset-0, body[data-theme="light"] .col-md-offset-0 {
    margin-left: 0%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-md-offset-1, body[data-theme="light"] .col-md-offset-1 {
    margin-left: 8.3333333333%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-md-offset-2, body[data-theme="light"] .col-md-offset-2 {
    margin-left: 16.6666666667%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-md-offset-3, body[data-theme="light"] .col-md-offset-3 {
    margin-left: 25%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-md-offset-4, body[data-theme="light"] .col-md-offset-4 {
    margin-left: 33.3333333333%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-md-offset-5, body[data-theme="light"] .col-md-offset-5 {
    margin-left: 41.6666666667%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-md-offset-6, body[data-theme="light"] .col-md-offset-6 {
    margin-left: 50%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-md-offset-7, body[data-theme="light"] .col-md-offset-7 {
    margin-left: 58.3333333333%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-md-offset-8, body[data-theme="light"] .col-md-offset-8 {
    margin-left: 66.6666666667%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-md-offset-9, body[data-theme="light"] .col-md-offset-9 {
    margin-left: 75%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-md-offset-10, body[data-theme="light"] .col-md-offset-10 {
    margin-left: 83.3333333333%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-md-offset-11, body[data-theme="light"] .col-md-offset-11 {
    margin-left: 91.6666666667%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-md-offset-12, body[data-theme="light"] .col-md-offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 1200px) {
  /* line 27, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-lg-1, body:not([data-theme]) .col-lg-2, body:not([data-theme]) .col-lg-3, body:not([data-theme]) .col-lg-4, body:not([data-theme]) .col-lg-5, body:not([data-theme]) .col-lg-6, body:not([data-theme]) .col-lg-7, body:not([data-theme]) .col-lg-8, body:not([data-theme]) .col-lg-9, body:not([data-theme]) .col-lg-10, body:not([data-theme]) .col-lg-11, body:not([data-theme]) .col-lg-12, body[data-theme="light"] .col-lg-1, body[data-theme="light"] .col-lg-2, body[data-theme="light"] .col-lg-3, body[data-theme="light"] .col-lg-4, body[data-theme="light"] .col-lg-5, body[data-theme="light"] .col-lg-6, body[data-theme="light"] .col-lg-7, body[data-theme="light"] .col-lg-8, body[data-theme="light"] .col-lg-9, body[data-theme="light"] .col-lg-10, body[data-theme="light"] .col-lg-11, body[data-theme="light"] .col-lg-12 {
    float: left;
  }
  /* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-lg-1, body[data-theme="light"] .col-lg-1 {
    width: 8.3333333333%;
  }
  /* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-lg-2, body[data-theme="light"] .col-lg-2 {
    width: 16.6666666667%;
  }
  /* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-lg-3, body[data-theme="light"] .col-lg-3 {
    width: 25%;
  }
  /* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-lg-4, body[data-theme="light"] .col-lg-4 {
    width: 33.3333333333%;
  }
  /* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-lg-5, body[data-theme="light"] .col-lg-5 {
    width: 41.6666666667%;
  }
  /* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-lg-6, body[data-theme="light"] .col-lg-6 {
    width: 50%;
  }
  /* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-lg-7, body[data-theme="light"] .col-lg-7 {
    width: 58.3333333333%;
  }
  /* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-lg-8, body[data-theme="light"] .col-lg-8 {
    width: 66.6666666667%;
  }
  /* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-lg-9, body[data-theme="light"] .col-lg-9 {
    width: 75%;
  }
  /* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-lg-10, body[data-theme="light"] .col-lg-10 {
    width: 83.3333333333%;
  }
  /* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-lg-11, body[data-theme="light"] .col-lg-11 {
    width: 91.6666666667%;
  }
  /* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-lg-12, body[data-theme="light"] .col-lg-12 {
    width: 100%;
  }
  /* line 55, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-lg-pull-0, body[data-theme="light"] .col-lg-pull-0 {
    right: auto;
  }
  /* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-lg-pull-1, body[data-theme="light"] .col-lg-pull-1 {
    right: 8.3333333333%;
  }
  /* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-lg-pull-2, body[data-theme="light"] .col-lg-pull-2 {
    right: 16.6666666667%;
  }
  /* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-lg-pull-3, body[data-theme="light"] .col-lg-pull-3 {
    right: 25%;
  }
  /* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-lg-pull-4, body[data-theme="light"] .col-lg-pull-4 {
    right: 33.3333333333%;
  }
  /* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-lg-pull-5, body[data-theme="light"] .col-lg-pull-5 {
    right: 41.6666666667%;
  }
  /* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-lg-pull-6, body[data-theme="light"] .col-lg-pull-6 {
    right: 50%;
  }
  /* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-lg-pull-7, body[data-theme="light"] .col-lg-pull-7 {
    right: 58.3333333333%;
  }
  /* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-lg-pull-8, body[data-theme="light"] .col-lg-pull-8 {
    right: 66.6666666667%;
  }
  /* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-lg-pull-9, body[data-theme="light"] .col-lg-pull-9 {
    right: 75%;
  }
  /* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-lg-pull-10, body[data-theme="light"] .col-lg-pull-10 {
    right: 83.3333333333%;
  }
  /* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-lg-pull-11, body[data-theme="light"] .col-lg-pull-11 {
    right: 91.6666666667%;
  }
  /* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-lg-pull-12, body[data-theme="light"] .col-lg-pull-12 {
    right: 100%;
  }
  /* line 45, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-lg-push-0, body[data-theme="light"] .col-lg-push-0 {
    left: auto;
  }
  /* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-lg-push-1, body[data-theme="light"] .col-lg-push-1 {
    left: 8.3333333333%;
  }
  /* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-lg-push-2, body[data-theme="light"] .col-lg-push-2 {
    left: 16.6666666667%;
  }
  /* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-lg-push-3, body[data-theme="light"] .col-lg-push-3 {
    left: 25%;
  }
  /* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-lg-push-4, body[data-theme="light"] .col-lg-push-4 {
    left: 33.3333333333%;
  }
  /* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-lg-push-5, body[data-theme="light"] .col-lg-push-5 {
    left: 41.6666666667%;
  }
  /* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-lg-push-6, body[data-theme="light"] .col-lg-push-6 {
    left: 50%;
  }
  /* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-lg-push-7, body[data-theme="light"] .col-lg-push-7 {
    left: 58.3333333333%;
  }
  /* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-lg-push-8, body[data-theme="light"] .col-lg-push-8 {
    left: 66.6666666667%;
  }
  /* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-lg-push-9, body[data-theme="light"] .col-lg-push-9 {
    left: 75%;
  }
  /* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-lg-push-10, body[data-theme="light"] .col-lg-push-10 {
    left: 83.3333333333%;
  }
  /* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-lg-push-11, body[data-theme="light"] .col-lg-push-11 {
    left: 91.6666666667%;
  }
  /* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-lg-push-12, body[data-theme="light"] .col-lg-push-12 {
    left: 100%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-lg-offset-0, body[data-theme="light"] .col-lg-offset-0 {
    margin-left: 0%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-lg-offset-1, body[data-theme="light"] .col-lg-offset-1 {
    margin-left: 8.3333333333%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-lg-offset-2, body[data-theme="light"] .col-lg-offset-2 {
    margin-left: 16.6666666667%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-lg-offset-3, body[data-theme="light"] .col-lg-offset-3 {
    margin-left: 25%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-lg-offset-4, body[data-theme="light"] .col-lg-offset-4 {
    margin-left: 33.3333333333%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-lg-offset-5, body[data-theme="light"] .col-lg-offset-5 {
    margin-left: 41.6666666667%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-lg-offset-6, body[data-theme="light"] .col-lg-offset-6 {
    margin-left: 50%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-lg-offset-7, body[data-theme="light"] .col-lg-offset-7 {
    margin-left: 58.3333333333%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-lg-offset-8, body[data-theme="light"] .col-lg-offset-8 {
    margin-left: 66.6666666667%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-lg-offset-9, body[data-theme="light"] .col-lg-offset-9 {
    margin-left: 75%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-lg-offset-10, body[data-theme="light"] .col-lg-offset-10 {
    margin-left: 83.3333333333%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-lg-offset-11, body[data-theme="light"] .col-lg-offset-11 {
    margin-left: 91.6666666667%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body:not([data-theme]) .col-lg-offset-12, body[data-theme="light"] .col-lg-offset-12 {
    margin-left: 100%;
  }
}
/* line 6, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
body:not([data-theme]) table, body[data-theme="light"] table {
  background-color: transparent;
}
/* line 13, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
body:not([data-theme]) table col[class*="col-"], body[data-theme="light"] table col[class*="col-"] {
  position: static;
  display: table-column;
  float: none;
}
/* line 21, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
body:not([data-theme]) table td[class*="col-"],
body:not([data-theme]) table th[class*="col-"], body[data-theme="light"] table td[class*="col-"],
body[data-theme="light"] table th[class*="col-"] {
  position: static;
  display: table-cell;
  float: none;
}
/* line 29, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
body:not([data-theme]) caption, body[data-theme="light"] caption {
  padding-top: 8px;
  padding-bottom: 8px;
  color: #777777;
  text-align: left;
}
/* line 36, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
body:not([data-theme]) th, body[data-theme="light"] th {
  text-align: left;
}
/* line 43, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
body:not([data-theme]) .table, body[data-theme="light"] .table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
}
/* line 52, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
body:not([data-theme]) .table > thead > tr > th,
body:not([data-theme]) .table > thead > tr > td,
body:not([data-theme]) .table > tbody > tr > th,
body:not([data-theme]) .table > tbody > tr > td,
body:not([data-theme]) .table > tfoot > tr > th,
body:not([data-theme]) .table > tfoot > tr > td, body[data-theme="light"] .table > thead > tr > th,
body[data-theme="light"] .table > thead > tr > td,
body[data-theme="light"] .table > tbody > tr > th,
body[data-theme="light"] .table > tbody > tr > td,
body[data-theme="light"] .table > tfoot > tr > th,
body[data-theme="light"] .table > tfoot > tr > td {
  padding: 8px;
  line-height: 1.428571429;
  vertical-align: top;
  border-top: 1px solid #ddd;
}
/* line 62, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
body:not([data-theme]) .table > thead > tr > th, body[data-theme="light"] .table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 2px solid #ddd;
}
/* line 71, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
body:not([data-theme]) .table > caption + thead > tr:first-child > th,
body:not([data-theme]) .table > caption + thead > tr:first-child > td,
body:not([data-theme]) .table > colgroup + thead > tr:first-child > th,
body:not([data-theme]) .table > colgroup + thead > tr:first-child > td,
body:not([data-theme]) .table > thead:first-child > tr:first-child > th,
body:not([data-theme]) .table > thead:first-child > tr:first-child > td, body[data-theme="light"] .table > caption + thead > tr:first-child > th,
body[data-theme="light"] .table > caption + thead > tr:first-child > td,
body[data-theme="light"] .table > colgroup + thead > tr:first-child > th,
body[data-theme="light"] .table > colgroup + thead > tr:first-child > td,
body[data-theme="light"] .table > thead:first-child > tr:first-child > th,
body[data-theme="light"] .table > thead:first-child > tr:first-child > td {
  border-top: 0;
}
/* line 78, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
body:not([data-theme]) .table > tbody + tbody, body[data-theme="light"] .table > tbody + tbody {
  border-top: 2px solid #ddd;
}
/* line 83, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
body:not([data-theme]) .table .table, body[data-theme="light"] .table .table {
  background-color: #fff;
}
/* line 96, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
body:not([data-theme]) .table-condensed > thead > tr > th,
body:not([data-theme]) .table-condensed > thead > tr > td,
body:not([data-theme]) .table-condensed > tbody > tr > th,
body:not([data-theme]) .table-condensed > tbody > tr > td,
body:not([data-theme]) .table-condensed > tfoot > tr > th,
body:not([data-theme]) .table-condensed > tfoot > tr > td, body[data-theme="light"] .table-condensed > thead > tr > th,
body[data-theme="light"] .table-condensed > thead > tr > td,
body[data-theme="light"] .table-condensed > tbody > tr > th,
body[data-theme="light"] .table-condensed > tbody > tr > td,
body[data-theme="light"] .table-condensed > tfoot > tr > th,
body[data-theme="light"] .table-condensed > tfoot > tr > td {
  padding: 5px;
}
/* line 109, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
body:not([data-theme]) .table-bordered, body[data-theme="light"] .table-bordered {
  border: 1px solid #ddd;
}
/* line 115, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
body:not([data-theme]) .table-bordered > thead > tr > th,
body:not([data-theme]) .table-bordered > thead > tr > td,
body:not([data-theme]) .table-bordered > tbody > tr > th,
body:not([data-theme]) .table-bordered > tbody > tr > td,
body:not([data-theme]) .table-bordered > tfoot > tr > th,
body:not([data-theme]) .table-bordered > tfoot > tr > td, body[data-theme="light"] .table-bordered > thead > tr > th,
body[data-theme="light"] .table-bordered > thead > tr > td,
body[data-theme="light"] .table-bordered > tbody > tr > th,
body[data-theme="light"] .table-bordered > tbody > tr > td,
body[data-theme="light"] .table-bordered > tfoot > tr > th,
body[data-theme="light"] .table-bordered > tfoot > tr > td {
  border: 1px solid #ddd;
}
/* line 122, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
body:not([data-theme]) .table-bordered > thead > tr > th,
body:not([data-theme]) .table-bordered > thead > tr > td, body[data-theme="light"] .table-bordered > thead > tr > th,
body[data-theme="light"] .table-bordered > thead > tr > td {
  border-bottom-width: 2px;
}
/* line 135, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
body:not([data-theme]) .table-striped > tbody > tr:nth-of-type(odd), body[data-theme="light"] .table-striped > tbody > tr:nth-of-type(odd) {
  background-color: #f9f9f9;
}
/* line 146, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
body:not([data-theme]) .table-hover > tbody > tr:hover, body[data-theme="light"] .table-hover > tbody > tr:hover {
  background-color: #f5f5f5;
}
/* line 9, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */
body:not([data-theme]) .table > thead > tr > td.active,
body:not([data-theme]) .table > thead > tr > th.active, body:not([data-theme]) .table > thead > tr.active > td, body:not([data-theme]) .table > thead > tr.active > th,
body:not([data-theme]) .table > tbody > tr > td.active,
body:not([data-theme]) .table > tbody > tr > th.active,
body:not([data-theme]) .table > tbody > tr.active > td,
body:not([data-theme]) .table > tbody > tr.active > th,
body:not([data-theme]) .table > tfoot > tr > td.active,
body:not([data-theme]) .table > tfoot > tr > th.active,
body:not([data-theme]) .table > tfoot > tr.active > td,
body:not([data-theme]) .table > tfoot > tr.active > th, body[data-theme="light"] .table > thead > tr > td.active,
body[data-theme="light"] .table > thead > tr > th.active, body[data-theme="light"] .table > thead > tr.active > td, body[data-theme="light"] .table > thead > tr.active > th,
body[data-theme="light"] .table > tbody > tr > td.active,
body[data-theme="light"] .table > tbody > tr > th.active,
body[data-theme="light"] .table > tbody > tr.active > td,
body[data-theme="light"] .table > tbody > tr.active > th,
body[data-theme="light"] .table > tfoot > tr > td.active,
body[data-theme="light"] .table > tfoot > tr > th.active,
body[data-theme="light"] .table > tfoot > tr.active > td,
body[data-theme="light"] .table > tfoot > tr.active > th {
  background-color: #f5f5f5;
}
/* line 20, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */
body:not([data-theme]) .table-hover > tbody > tr > td.active:hover,
body:not([data-theme]) .table-hover > tbody > tr > th.active:hover, body:not([data-theme]) .table-hover > tbody > tr.active:hover > td, body:not([data-theme]) .table-hover > tbody > tr:hover > .active, body:not([data-theme]) .table-hover > tbody > tr.active:hover > th, body[data-theme="light"] .table-hover > tbody > tr > td.active:hover,
body[data-theme="light"] .table-hover > tbody > tr > th.active:hover, body[data-theme="light"] .table-hover > tbody > tr.active:hover > td, body[data-theme="light"] .table-hover > tbody > tr:hover > .active, body[data-theme="light"] .table-hover > tbody > tr.active:hover > th {
  background-color: #e8e8e8;
}
/* line 9, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */
body:not([data-theme]) .table > thead > tr > td.success,
body:not([data-theme]) .table > thead > tr > th.success, body:not([data-theme]) .table > thead > tr.success > td, body:not([data-theme]) .table > thead > tr.success > th,
body:not([data-theme]) .table > tbody > tr > td.success,
body:not([data-theme]) .table > tbody > tr > th.success,
body:not([data-theme]) .table > tbody > tr.success > td,
body:not([data-theme]) .table > tbody > tr.success > th,
body:not([data-theme]) .table > tfoot > tr > td.success,
body:not([data-theme]) .table > tfoot > tr > th.success,
body:not([data-theme]) .table > tfoot > tr.success > td,
body:not([data-theme]) .table > tfoot > tr.success > th, body[data-theme="light"] .table > thead > tr > td.success,
body[data-theme="light"] .table > thead > tr > th.success, body[data-theme="light"] .table > thead > tr.success > td, body[data-theme="light"] .table > thead > tr.success > th,
body[data-theme="light"] .table > tbody > tr > td.success,
body[data-theme="light"] .table > tbody > tr > th.success,
body[data-theme="light"] .table > tbody > tr.success > td,
body[data-theme="light"] .table > tbody > tr.success > th,
body[data-theme="light"] .table > tfoot > tr > td.success,
body[data-theme="light"] .table > tfoot > tr > th.success,
body[data-theme="light"] .table > tfoot > tr.success > td,
body[data-theme="light"] .table > tfoot > tr.success > th {
  background-color: #dff0d8;
}
/* line 20, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */
body:not([data-theme]) .table-hover > tbody > tr > td.success:hover,
body:not([data-theme]) .table-hover > tbody > tr > th.success:hover, body:not([data-theme]) .table-hover > tbody > tr.success:hover > td, body:not([data-theme]) .table-hover > tbody > tr:hover > .success, body:not([data-theme]) .table-hover > tbody > tr.success:hover > th, body[data-theme="light"] .table-hover > tbody > tr > td.success:hover,
body[data-theme="light"] .table-hover > tbody > tr > th.success:hover, body[data-theme="light"] .table-hover > tbody > tr.success:hover > td, body[data-theme="light"] .table-hover > tbody > tr:hover > .success, body[data-theme="light"] .table-hover > tbody > tr.success:hover > th {
  background-color: #d0e9c6;
}
/* line 9, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */
body:not([data-theme]) .table > thead > tr > td.info,
body:not([data-theme]) .table > thead > tr > th.info, body:not([data-theme]) .table > thead > tr.info > td, body:not([data-theme]) .table > thead > tr.info > th,
body:not([data-theme]) .table > tbody > tr > td.info,
body:not([data-theme]) .table > tbody > tr > th.info,
body:not([data-theme]) .table > tbody > tr.info > td,
body:not([data-theme]) .table > tbody > tr.info > th,
body:not([data-theme]) .table > tfoot > tr > td.info,
body:not([data-theme]) .table > tfoot > tr > th.info,
body:not([data-theme]) .table > tfoot > tr.info > td,
body:not([data-theme]) .table > tfoot > tr.info > th, body[data-theme="light"] .table > thead > tr > td.info,
body[data-theme="light"] .table > thead > tr > th.info, body[data-theme="light"] .table > thead > tr.info > td, body[data-theme="light"] .table > thead > tr.info > th,
body[data-theme="light"] .table > tbody > tr > td.info,
body[data-theme="light"] .table > tbody > tr > th.info,
body[data-theme="light"] .table > tbody > tr.info > td,
body[data-theme="light"] .table > tbody > tr.info > th,
body[data-theme="light"] .table > tfoot > tr > td.info,
body[data-theme="light"] .table > tfoot > tr > th.info,
body[data-theme="light"] .table > tfoot > tr.info > td,
body[data-theme="light"] .table > tfoot > tr.info > th {
  background-color: #d9edf7;
}
/* line 20, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */
body:not([data-theme]) .table-hover > tbody > tr > td.info:hover,
body:not([data-theme]) .table-hover > tbody > tr > th.info:hover, body:not([data-theme]) .table-hover > tbody > tr.info:hover > td, body:not([data-theme]) .table-hover > tbody > tr:hover > .info, body:not([data-theme]) .table-hover > tbody > tr.info:hover > th, body[data-theme="light"] .table-hover > tbody > tr > td.info:hover,
body[data-theme="light"] .table-hover > tbody > tr > th.info:hover, body[data-theme="light"] .table-hover > tbody > tr.info:hover > td, body[data-theme="light"] .table-hover > tbody > tr:hover > .info, body[data-theme="light"] .table-hover > tbody > tr.info:hover > th {
  background-color: #c4e3f3;
}
/* line 9, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */
body:not([data-theme]) .table > thead > tr > td.warning,
body:not([data-theme]) .table > thead > tr > th.warning, body:not([data-theme]) .table > thead > tr.warning > td, body:not([data-theme]) .table > thead > tr.warning > th,
body:not([data-theme]) .table > tbody > tr > td.warning,
body:not([data-theme]) .table > tbody > tr > th.warning,
body:not([data-theme]) .table > tbody > tr.warning > td,
body:not([data-theme]) .table > tbody > tr.warning > th,
body:not([data-theme]) .table > tfoot > tr > td.warning,
body:not([data-theme]) .table > tfoot > tr > th.warning,
body:not([data-theme]) .table > tfoot > tr.warning > td,
body:not([data-theme]) .table > tfoot > tr.warning > th, body[data-theme="light"] .table > thead > tr > td.warning,
body[data-theme="light"] .table > thead > tr > th.warning, body[data-theme="light"] .table > thead > tr.warning > td, body[data-theme="light"] .table > thead > tr.warning > th,
body[data-theme="light"] .table > tbody > tr > td.warning,
body[data-theme="light"] .table > tbody > tr > th.warning,
body[data-theme="light"] .table > tbody > tr.warning > td,
body[data-theme="light"] .table > tbody > tr.warning > th,
body[data-theme="light"] .table > tfoot > tr > td.warning,
body[data-theme="light"] .table > tfoot > tr > th.warning,
body[data-theme="light"] .table > tfoot > tr.warning > td,
body[data-theme="light"] .table > tfoot > tr.warning > th {
  background-color: #fcf8e3;
}
/* line 20, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */
body:not([data-theme]) .table-hover > tbody > tr > td.warning:hover,
body:not([data-theme]) .table-hover > tbody > tr > th.warning:hover, body:not([data-theme]) .table-hover > tbody > tr.warning:hover > td, body:not([data-theme]) .table-hover > tbody > tr:hover > .warning, body:not([data-theme]) .table-hover > tbody > tr.warning:hover > th, body[data-theme="light"] .table-hover > tbody > tr > td.warning:hover,
body[data-theme="light"] .table-hover > tbody > tr > th.warning:hover, body[data-theme="light"] .table-hover > tbody > tr.warning:hover > td, body[data-theme="light"] .table-hover > tbody > tr:hover > .warning, body[data-theme="light"] .table-hover > tbody > tr.warning:hover > th {
  background-color: #faf2cc;
}
/* line 9, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */
body:not([data-theme]) .table > thead > tr > td.danger,
body:not([data-theme]) .table > thead > tr > th.danger, body:not([data-theme]) .table > thead > tr.danger > td, body:not([data-theme]) .table > thead > tr.danger > th,
body:not([data-theme]) .table > tbody > tr > td.danger,
body:not([data-theme]) .table > tbody > tr > th.danger,
body:not([data-theme]) .table > tbody > tr.danger > td,
body:not([data-theme]) .table > tbody > tr.danger > th,
body:not([data-theme]) .table > tfoot > tr > td.danger,
body:not([data-theme]) .table > tfoot > tr > th.danger,
body:not([data-theme]) .table > tfoot > tr.danger > td,
body:not([data-theme]) .table > tfoot > tr.danger > th, body[data-theme="light"] .table > thead > tr > td.danger,
body[data-theme="light"] .table > thead > tr > th.danger, body[data-theme="light"] .table > thead > tr.danger > td, body[data-theme="light"] .table > thead > tr.danger > th,
body[data-theme="light"] .table > tbody > tr > td.danger,
body[data-theme="light"] .table > tbody > tr > th.danger,
body[data-theme="light"] .table > tbody > tr.danger > td,
body[data-theme="light"] .table > tbody > tr.danger > th,
body[data-theme="light"] .table > tfoot > tr > td.danger,
body[data-theme="light"] .table > tfoot > tr > th.danger,
body[data-theme="light"] .table > tfoot > tr.danger > td,
body[data-theme="light"] .table > tfoot > tr.danger > th {
  background-color: #f2dede;
}
/* line 20, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */
body:not([data-theme]) .table-hover > tbody > tr > td.danger:hover,
body:not([data-theme]) .table-hover > tbody > tr > th.danger:hover, body:not([data-theme]) .table-hover > tbody > tr.danger:hover > td, body:not([data-theme]) .table-hover > tbody > tr:hover > .danger, body:not([data-theme]) .table-hover > tbody > tr.danger:hover > th, body[data-theme="light"] .table-hover > tbody > tr > td.danger:hover,
body[data-theme="light"] .table-hover > tbody > tr > th.danger:hover, body[data-theme="light"] .table-hover > tbody > tr.danger:hover > td, body[data-theme="light"] .table-hover > tbody > tr:hover > .danger, body[data-theme="light"] .table-hover > tbody > tr.danger:hover > th {
  background-color: #ebcccc;
}
/* line 171, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
body:not([data-theme]) .table-responsive, body[data-theme="light"] .table-responsive {
  min-height: .01%;
  overflow-x: auto;
}
@media screen and (max-width: 767px) {
  /* line 171, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
  body:not([data-theme]) .table-responsive, body[data-theme="light"] .table-responsive {
    width: 100%;
    margin-bottom: 15px;
    overflow-y: hidden;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    border: 1px solid #ddd;
  }
  /* line 183, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
  body:not([data-theme]) .table-responsive > .table, body[data-theme="light"] .table-responsive > .table {
    margin-bottom: 0;
  }
  /* line 191, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
  body:not([data-theme]) .table-responsive > .table > thead > tr > th,
  body:not([data-theme]) .table-responsive > .table > thead > tr > td,
  body:not([data-theme]) .table-responsive > .table > tbody > tr > th,
  body:not([data-theme]) .table-responsive > .table > tbody > tr > td,
  body:not([data-theme]) .table-responsive > .table > tfoot > tr > th,
  body:not([data-theme]) .table-responsive > .table > tfoot > tr > td, body[data-theme="light"] .table-responsive > .table > thead > tr > th,
  body[data-theme="light"] .table-responsive > .table > thead > tr > td,
  body[data-theme="light"] .table-responsive > .table > tbody > tr > th,
  body[data-theme="light"] .table-responsive > .table > tbody > tr > td,
  body[data-theme="light"] .table-responsive > .table > tfoot > tr > th,
  body[data-theme="light"] .table-responsive > .table > tfoot > tr > td {
    white-space: nowrap;
  }
  /* line 200, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
  body:not([data-theme]) .table-responsive > .table-bordered, body[data-theme="light"] .table-responsive > .table-bordered {
    border: 0;
  }
  /* line 208, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
  body:not([data-theme]) .table-responsive > .table-bordered > thead > tr > th:first-child,
  body:not([data-theme]) .table-responsive > .table-bordered > thead > tr > td:first-child,
  body:not([data-theme]) .table-responsive > .table-bordered > tbody > tr > th:first-child,
  body:not([data-theme]) .table-responsive > .table-bordered > tbody > tr > td:first-child,
  body:not([data-theme]) .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  body:not([data-theme]) .table-responsive > .table-bordered > tfoot > tr > td:first-child, body[data-theme="light"] .table-responsive > .table-bordered > thead > tr > th:first-child,
  body[data-theme="light"] .table-responsive > .table-bordered > thead > tr > td:first-child,
  body[data-theme="light"] .table-responsive > .table-bordered > tbody > tr > th:first-child,
  body[data-theme="light"] .table-responsive > .table-bordered > tbody > tr > td:first-child,
  body[data-theme="light"] .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  body[data-theme="light"] .table-responsive > .table-bordered > tfoot > tr > td:first-child {
    border-left: 0;
  }
  /* line 212, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
  body:not([data-theme]) .table-responsive > .table-bordered > thead > tr > th:last-child,
  body:not([data-theme]) .table-responsive > .table-bordered > thead > tr > td:last-child,
  body:not([data-theme]) .table-responsive > .table-bordered > tbody > tr > th:last-child,
  body:not([data-theme]) .table-responsive > .table-bordered > tbody > tr > td:last-child,
  body:not([data-theme]) .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  body:not([data-theme]) .table-responsive > .table-bordered > tfoot > tr > td:last-child, body[data-theme="light"] .table-responsive > .table-bordered > thead > tr > th:last-child,
  body[data-theme="light"] .table-responsive > .table-bordered > thead > tr > td:last-child,
  body[data-theme="light"] .table-responsive > .table-bordered > tbody > tr > th:last-child,
  body[data-theme="light"] .table-responsive > .table-bordered > tbody > tr > td:last-child,
  body[data-theme="light"] .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  body[data-theme="light"] .table-responsive > .table-bordered > tfoot > tr > td:last-child {
    border-right: 0;
  }
  /* line 225, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
  body:not([data-theme]) .table-responsive > .table-bordered > tbody > tr:last-child > th,
  body:not([data-theme]) .table-responsive > .table-bordered > tbody > tr:last-child > td,
  body:not([data-theme]) .table-responsive > .table-bordered > tfoot > tr:last-child > th,
  body:not([data-theme]) .table-responsive > .table-bordered > tfoot > tr:last-child > td, body[data-theme="light"] .table-responsive > .table-bordered > tbody > tr:last-child > th,
  body[data-theme="light"] .table-responsive > .table-bordered > tbody > tr:last-child > td,
  body[data-theme="light"] .table-responsive > .table-bordered > tfoot > tr:last-child > th,
  body[data-theme="light"] .table-responsive > .table-bordered > tfoot > tr:last-child > td {
    border-bottom: 0;
  }
}
/* line 10, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body:not([data-theme]) fieldset, body[data-theme="light"] fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}
/* line 20, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body:not([data-theme]) legend, body[data-theme="light"] 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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body:not([data-theme]) label, body[data-theme="light"] label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: 700;
}
/* line 46, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body:not([data-theme]) input[type="search"], body[data-theme="light"] input[type="search"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
}
/* line 61, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body:not([data-theme]) input[type="radio"], body:not([data-theme]) input[type="checkbox"], body[data-theme="light"] input[type="radio"], body[data-theme="light"] input[type="checkbox"] {
  margin: 4px 0 0;
  margin-top: 1px \9;
  line-height: normal;
}
/* line 71, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body:not([data-theme]) input[type="radio"][disabled], body:not([data-theme]) input[type="radio"].disabled, fieldset[disabled] body:not([data-theme]) input[type="radio"],
body:not([data-theme]) input[type="checkbox"][disabled],
body:not([data-theme]) input[type="checkbox"].disabled,
fieldset[disabled] body:not([data-theme]) input[type="checkbox"], body[data-theme="light"] input[type="radio"][disabled], body[data-theme="light"] input[type="radio"].disabled,
fieldset[disabled] body[data-theme="light"] input[type="radio"],
body[data-theme="light"] input[type="checkbox"][disabled],
body[data-theme="light"] input[type="checkbox"].disabled,
fieldset[disabled] body[data-theme="light"] input[type="checkbox"] {
  cursor: not-allowed;
}
/* line 78, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body:not([data-theme]) input[type="file"], body[data-theme="light"] input[type="file"] {
  display: block;
}
/* line 83, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body:not([data-theme]) input[type="range"], body[data-theme="light"] input[type="range"] {
  display: block;
  width: 100%;
}
/* line 89, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body:not([data-theme]) select[multiple],
body:not([data-theme]) select[size], body[data-theme="light"] select[multiple],
body[data-theme="light"] select[size] {
  height: auto;
}
/* line 95, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body:not([data-theme]) input[type="file"]:focus,
body:not([data-theme]) input[type="radio"]:focus,
body:not([data-theme]) input[type="checkbox"]:focus, body[data-theme="light"] input[type="file"]:focus,
body[data-theme="light"] input[type="radio"]:focus,
body[data-theme="light"] input[type="checkbox"]:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
/* line 102, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body:not([data-theme]) output, body[data-theme="light"] output {
  display: block;
  padding-top: 7px;
  font-size: 14px;
  line-height: 1.428571429;
  color: #555555;
}
/* line 133, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body:not([data-theme]) .form-control, body[data-theme="light"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
body:not([data-theme]) .form-control:focus, body[data-theme="light"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_vendor-prefixes.scss */
body:not([data-theme]) .form-control::-moz-placeholder, body[data-theme="light"] .form-control::-moz-placeholder {
  color: #999;
  opacity: 1;
}
/* line 107, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_vendor-prefixes.scss */
body:not([data-theme]) .form-control:-ms-input-placeholder, body[data-theme="light"] .form-control:-ms-input-placeholder {
  color: #999;
}
/* line 108, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_vendor-prefixes.scss */
body:not([data-theme]) .form-control::-webkit-input-placeholder, body[data-theme="light"] .form-control::-webkit-input-placeholder {
  color: #999;
}
/* line 155, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body:not([data-theme]) .form-control::-ms-expand, body[data-theme="light"] .form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}
/* line 165, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body:not([data-theme]) .form-control[disabled], body:not([data-theme]) .form-control[readonly], fieldset[disabled] body:not([data-theme]) .form-control, body[data-theme="light"] .form-control[disabled], body[data-theme="light"] .form-control[readonly], fieldset[disabled] body[data-theme="light"] .form-control {
  background-color: #eeeeee;
  opacity: 1;
}
/* line 172, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body:not([data-theme]) .form-control[disabled], fieldset[disabled] body:not([data-theme]) .form-control, body[data-theme="light"] .form-control[disabled], fieldset[disabled] body[data-theme="light"] .form-control {
  cursor: not-allowed;
}
/* line 181, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body:not([data-theme]) textarea.form-control, body[data-theme="light"] textarea.form-control {
  height: auto;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  /* line 200, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  body:not([data-theme]) input[type="date"].form-control,
  body:not([data-theme]) input[type="time"].form-control,
  body:not([data-theme]) input[type="datetime-local"].form-control,
  body:not([data-theme]) input[type="month"].form-control, body[data-theme="light"] input[type="date"].form-control,
  body[data-theme="light"] input[type="time"].form-control,
  body[data-theme="light"] input[type="datetime-local"].form-control,
  body[data-theme="light"] input[type="month"].form-control {
    line-height: 34px;
  }
  /* line 204, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  body:not([data-theme]) input[type="date"].input-sm, body:not([data-theme]) .input-group-sm > input[type="date"].form-control,
  body:not([data-theme]) .input-group-sm > input[type="date"].input-group-addon,
  body:not([data-theme]) .input-group-sm > .input-group-btn > input[type="date"].btn, body:not([data-theme]) body[data-theme="light"] .input-group-sm > input[type="date"].form-control,
  body:not([data-theme]) body[data-theme="light"] .input-group-sm > input[type="date"].input-group-addon, body:not([data-theme]) body[data-theme="united"] .input-group-sm > input[type="date"].form-control,
  body:not([data-theme]) body[data-theme="united"] .input-group-sm > input[type="date"].input-group-addon, body:not([data-theme]) body[data-theme="slate"] .input-group-sm > input[type="date"].form-control,
  body:not([data-theme]) body[data-theme="slate"] .input-group-sm > input[type="date"].input-group-addon, .input-group-sm body:not([data-theme]) input[type="date"],
  body:not([data-theme]) input[type="time"].input-sm,
  body:not([data-theme]) .input-group-sm > input[type="time"].form-control,
  body:not([data-theme]) .input-group-sm > input[type="time"].input-group-addon,
  body:not([data-theme]) .input-group-sm > .input-group-btn > input[type="time"].btn,
  body:not([data-theme]) body[data-theme="light"] .input-group-sm > input[type="time"].form-control,
  body:not([data-theme]) body[data-theme="light"] .input-group-sm > input[type="time"].input-group-addon,
  body:not([data-theme]) body[data-theme="united"] .input-group-sm > input[type="time"].form-control,
  body:not([data-theme]) body[data-theme="united"] .input-group-sm > input[type="time"].input-group-addon,
  body:not([data-theme]) body[data-theme="slate"] .input-group-sm > input[type="time"].form-control,
  body:not([data-theme]) body[data-theme="slate"] .input-group-sm > input[type="time"].input-group-addon,
  .input-group-sm body:not([data-theme]) input[type="time"],
  body:not([data-theme]) input[type="datetime-local"].input-sm,
  body:not([data-theme]) .input-group-sm > input[type="datetime-local"].form-control,
  body:not([data-theme]) .input-group-sm > input[type="datetime-local"].input-group-addon,
  body:not([data-theme]) .input-group-sm > .input-group-btn > input[type="datetime-local"].btn,
  body:not([data-theme]) body[data-theme="light"] .input-group-sm > input[type="datetime-local"].form-control,
  body:not([data-theme]) body[data-theme="light"] .input-group-sm > input[type="datetime-local"].input-group-addon,
  body:not([data-theme]) body[data-theme="united"] .input-group-sm > input[type="datetime-local"].form-control,
  body:not([data-theme]) body[data-theme="united"] .input-group-sm > input[type="datetime-local"].input-group-addon,
  body:not([data-theme]) body[data-theme="slate"] .input-group-sm > input[type="datetime-local"].form-control,
  body:not([data-theme]) body[data-theme="slate"] .input-group-sm > input[type="datetime-local"].input-group-addon,
  .input-group-sm body:not([data-theme]) input[type="datetime-local"],
  body:not([data-theme]) input[type="month"].input-sm,
  body:not([data-theme]) .input-group-sm > input[type="month"].form-control,
  body:not([data-theme]) .input-group-sm > input[type="month"].input-group-addon,
  body:not([data-theme]) .input-group-sm > .input-group-btn > input[type="month"].btn,
  body:not([data-theme]) body[data-theme="light"] .input-group-sm > input[type="month"].form-control,
  body:not([data-theme]) body[data-theme="light"] .input-group-sm > input[type="month"].input-group-addon,
  body:not([data-theme]) body[data-theme="united"] .input-group-sm > input[type="month"].form-control,
  body:not([data-theme]) body[data-theme="united"] .input-group-sm > input[type="month"].input-group-addon,
  body:not([data-theme]) body[data-theme="slate"] .input-group-sm > input[type="month"].form-control,
  body:not([data-theme]) body[data-theme="slate"] .input-group-sm > input[type="month"].input-group-addon,
  .input-group-sm body:not([data-theme]) input[type="month"], body[data-theme="light"] input[type="date"].input-sm, body[data-theme="light"] body:not([data-theme]) .input-group-sm > input[type="date"].form-control,
  body[data-theme="light"] body:not([data-theme]) .input-group-sm > input[type="date"].input-group-addon, body[data-theme="light"] .input-group-sm > input[type="date"].form-control,
  body[data-theme="light"] .input-group-sm > input[type="date"].input-group-addon,
  body[data-theme="light"] .input-group-sm > .input-group-btn > input[type="date"].btn, body[data-theme="light"] body[data-theme="united"] .input-group-sm > input[type="date"].form-control,
  body[data-theme="light"] body[data-theme="united"] .input-group-sm > input[type="date"].input-group-addon, body[data-theme="light"] body[data-theme="slate"] .input-group-sm > input[type="date"].form-control,
  body[data-theme="light"] body[data-theme="slate"] .input-group-sm > input[type="date"].input-group-addon,
  .input-group-sm body[data-theme="light"] input[type="date"],
  body[data-theme="light"] input[type="time"].input-sm,
  body[data-theme="light"] body:not([data-theme]) .input-group-sm > input[type="time"].form-control,
  body[data-theme="light"] body:not([data-theme]) .input-group-sm > input[type="time"].input-group-addon,
  body[data-theme="light"] .input-group-sm > input[type="time"].form-control,
  body[data-theme="light"] .input-group-sm > input[type="time"].input-group-addon,
  body[data-theme="light"] .input-group-sm > .input-group-btn > input[type="time"].btn,
  body[data-theme="light"] body[data-theme="united"] .input-group-sm > input[type="time"].form-control,
  body[data-theme="light"] body[data-theme="united"] .input-group-sm > input[type="time"].input-group-addon,
  body[data-theme="light"] body[data-theme="slate"] .input-group-sm > input[type="time"].form-control,
  body[data-theme="light"] body[data-theme="slate"] .input-group-sm > input[type="time"].input-group-addon,
  .input-group-sm body[data-theme="light"] input[type="time"],
  body[data-theme="light"] input[type="datetime-local"].input-sm,
  body[data-theme="light"] body:not([data-theme]) .input-group-sm > input[type="datetime-local"].form-control,
  body[data-theme="light"] body:not([data-theme]) .input-group-sm > input[type="datetime-local"].input-group-addon,
  body[data-theme="light"] .input-group-sm > input[type="datetime-local"].form-control,
  body[data-theme="light"] .input-group-sm > input[type="datetime-local"].input-group-addon,
  body[data-theme="light"] .input-group-sm > .input-group-btn > input[type="datetime-local"].btn,
  body[data-theme="light"] body[data-theme="united"] .input-group-sm > input[type="datetime-local"].form-control,
  body[data-theme="light"] body[data-theme="united"] .input-group-sm > input[type="datetime-local"].input-group-addon,
  body[data-theme="light"] body[data-theme="slate"] .input-group-sm > input[type="datetime-local"].form-control,
  body[data-theme="light"] body[data-theme="slate"] .input-group-sm > input[type="datetime-local"].input-group-addon,
  .input-group-sm body[data-theme="light"] input[type="datetime-local"],
  body[data-theme="light"] input[type="month"].input-sm,
  body[data-theme="light"] body:not([data-theme]) .input-group-sm > input[type="month"].form-control,
  body[data-theme="light"] body:not([data-theme]) .input-group-sm > input[type="month"].input-group-addon,
  body[data-theme="light"] .input-group-sm > input[type="month"].form-control,
  body[data-theme="light"] .input-group-sm > input[type="month"].input-group-addon,
  body[data-theme="light"] .input-group-sm > .input-group-btn > input[type="month"].btn,
  body[data-theme="light"] body[data-theme="united"] .input-group-sm > input[type="month"].form-control,
  body[data-theme="light"] body[data-theme="united"] .input-group-sm > input[type="month"].input-group-addon,
  body[data-theme="light"] body[data-theme="slate"] .input-group-sm > input[type="month"].form-control,
  body[data-theme="light"] body[data-theme="slate"] .input-group-sm > input[type="month"].input-group-addon,
  .input-group-sm body[data-theme="light"] input[type="month"] {
    line-height: 30px;
  }
  /* line 209, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  body:not([data-theme]) input[type="date"].input-lg, body:not([data-theme]) .input-group-lg > input[type="date"].form-control,
  body:not([data-theme]) .input-group-lg > input[type="date"].input-group-addon,
  body:not([data-theme]) .input-group-lg > .input-group-btn > input[type="date"].btn, body:not([data-theme]) body[data-theme="light"] .input-group-lg > input[type="date"].form-control,
  body:not([data-theme]) body[data-theme="light"] .input-group-lg > input[type="date"].input-group-addon, body:not([data-theme]) body[data-theme="united"] .input-group-lg > input[type="date"].form-control,
  body:not([data-theme]) body[data-theme="united"] .input-group-lg > input[type="date"].input-group-addon, body:not([data-theme]) body[data-theme="slate"] .input-group-lg > input[type="date"].form-control,
  body:not([data-theme]) body[data-theme="slate"] .input-group-lg > input[type="date"].input-group-addon, .input-group-lg body:not([data-theme]) input[type="date"], body:not([data-theme]) input[type="time"].input-lg, body:not([data-theme]) .input-group-lg > input[type="time"].form-control,
  body:not([data-theme]) .input-group-lg > input[type="time"].input-group-addon,
  body:not([data-theme]) .input-group-lg > .input-group-btn > input[type="time"].btn, body:not([data-theme]) body[data-theme="light"] .input-group-lg > input[type="time"].form-control,
  body:not([data-theme]) body[data-theme="light"] .input-group-lg > input[type="time"].input-group-addon, body:not([data-theme]) body[data-theme="united"] .input-group-lg > input[type="time"].form-control,
  body:not([data-theme]) body[data-theme="united"] .input-group-lg > input[type="time"].input-group-addon, body:not([data-theme]) body[data-theme="slate"] .input-group-lg > input[type="time"].form-control,
  body:not([data-theme]) body[data-theme="slate"] .input-group-lg > input[type="time"].input-group-addon, .input-group-lg body:not([data-theme]) input[type="time"], body:not([data-theme]) input[type="datetime-local"].input-lg, body:not([data-theme]) .input-group-lg > input[type="datetime-local"].form-control,
  body:not([data-theme]) .input-group-lg > input[type="datetime-local"].input-group-addon,
  body:not([data-theme]) .input-group-lg > .input-group-btn > input[type="datetime-local"].btn, body:not([data-theme]) body[data-theme="light"] .input-group-lg > input[type="datetime-local"].form-control,
  body:not([data-theme]) body[data-theme="light"] .input-group-lg > input[type="datetime-local"].input-group-addon, body:not([data-theme]) body[data-theme="united"] .input-group-lg > input[type="datetime-local"].form-control,
  body:not([data-theme]) body[data-theme="united"] .input-group-lg > input[type="datetime-local"].input-group-addon, body:not([data-theme]) body[data-theme="slate"] .input-group-lg > input[type="datetime-local"].form-control,
  body:not([data-theme]) body[data-theme="slate"] .input-group-lg > input[type="datetime-local"].input-group-addon, .input-group-lg body:not([data-theme]) input[type="datetime-local"], body:not([data-theme]) input[type="month"].input-lg, body:not([data-theme]) .input-group-lg > input[type="month"].form-control,
  body:not([data-theme]) .input-group-lg > input[type="month"].input-group-addon,
  body:not([data-theme]) .input-group-lg > .input-group-btn > input[type="month"].btn, body:not([data-theme]) body[data-theme="light"] .input-group-lg > input[type="month"].form-control,
  body:not([data-theme]) body[data-theme="light"] .input-group-lg > input[type="month"].input-group-addon, body:not([data-theme]) body[data-theme="united"] .input-group-lg > input[type="month"].form-control,
  body:not([data-theme]) body[data-theme="united"] .input-group-lg > input[type="month"].input-group-addon, body:not([data-theme]) body[data-theme="slate"] .input-group-lg > input[type="month"].form-control,
  body:not([data-theme]) body[data-theme="slate"] .input-group-lg > input[type="month"].input-group-addon, .input-group-lg body:not([data-theme]) input[type="month"], body[data-theme="light"] input[type="date"].input-lg, body[data-theme="light"] body:not([data-theme]) .input-group-lg > input[type="date"].form-control,
  body[data-theme="light"] body:not([data-theme]) .input-group-lg > input[type="date"].input-group-addon, body[data-theme="light"] .input-group-lg > input[type="date"].form-control,
  body[data-theme="light"] .input-group-lg > input[type="date"].input-group-addon,
  body[data-theme="light"] .input-group-lg > .input-group-btn > input[type="date"].btn, body[data-theme="light"] body[data-theme="united"] .input-group-lg > input[type="date"].form-control,
  body[data-theme="light"] body[data-theme="united"] .input-group-lg > input[type="date"].input-group-addon, body[data-theme="light"] body[data-theme="slate"] .input-group-lg > input[type="date"].form-control,
  body[data-theme="light"] body[data-theme="slate"] .input-group-lg > input[type="date"].input-group-addon, .input-group-lg body[data-theme="light"] input[type="date"], body[data-theme="light"] input[type="time"].input-lg, body[data-theme="light"] body:not([data-theme]) .input-group-lg > input[type="time"].form-control,
  body[data-theme="light"] body:not([data-theme]) .input-group-lg > input[type="time"].input-group-addon, body[data-theme="light"] .input-group-lg > input[type="time"].form-control,
  body[data-theme="light"] .input-group-lg > input[type="time"].input-group-addon,
  body[data-theme="light"] .input-group-lg > .input-group-btn > input[type="time"].btn, body[data-theme="light"] body[data-theme="united"] .input-group-lg > input[type="time"].form-control,
  body[data-theme="light"] body[data-theme="united"] .input-group-lg > input[type="time"].input-group-addon, body[data-theme="light"] body[data-theme="slate"] .input-group-lg > input[type="time"].form-control,
  body[data-theme="light"] body[data-theme="slate"] .input-group-lg > input[type="time"].input-group-addon, .input-group-lg body[data-theme="light"] input[type="time"], body[data-theme="light"] input[type="datetime-local"].input-lg, body[data-theme="light"] body:not([data-theme]) .input-group-lg > input[type="datetime-local"].form-control,
  body[data-theme="light"] body:not([data-theme]) .input-group-lg > input[type="datetime-local"].input-group-addon, body[data-theme="light"] .input-group-lg > input[type="datetime-local"].form-control,
  body[data-theme="light"] .input-group-lg > input[type="datetime-local"].input-group-addon,
  body[data-theme="light"] .input-group-lg > .input-group-btn > input[type="datetime-local"].btn, body[data-theme="light"] body[data-theme="united"] .input-group-lg > input[type="datetime-local"].form-control,
  body[data-theme="light"] body[data-theme="united"] .input-group-lg > input[type="datetime-local"].input-group-addon, body[data-theme="light"] body[data-theme="slate"] .input-group-lg > input[type="datetime-local"].form-control,
  body[data-theme="light"] body[data-theme="slate"] .input-group-lg > input[type="datetime-local"].input-group-addon, .input-group-lg body[data-theme="light"] input[type="datetime-local"], body[data-theme="light"] input[type="month"].input-lg, body[data-theme="light"] body:not([data-theme]) .input-group-lg > input[type="month"].form-control,
  body[data-theme="light"] body:not([data-theme]) .input-group-lg > input[type="month"].input-group-addon, body[data-theme="light"] .input-group-lg > input[type="month"].form-control,
  body[data-theme="light"] .input-group-lg > input[type="month"].input-group-addon,
  body[data-theme="light"] .input-group-lg > .input-group-btn > input[type="month"].btn, body[data-theme="light"] body[data-theme="united"] .input-group-lg > input[type="month"].form-control,
  body[data-theme="light"] body[data-theme="united"] .input-group-lg > input[type="month"].input-group-addon, body[data-theme="light"] body[data-theme="slate"] .input-group-lg > input[type="month"].form-control,
  body[data-theme="light"] body[data-theme="slate"] .input-group-lg > input[type="month"].input-group-addon, .input-group-lg body[data-theme="light"] input[type="month"] {
    line-height: 46px;
  }
}
/* line 222, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body:not([data-theme]) .form-group, body[data-theme="light"] .form-group {
  margin-bottom: 15px;
}
/* line 231, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body:not([data-theme]) .radio, body:not([data-theme]) .checkbox, body[data-theme="light"] .radio, body[data-theme="light"] .checkbox {
  position: relative;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
}
/* line 241, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body:not([data-theme]) .radio.disabled label, fieldset[disabled] body:not([data-theme]) .radio label,
body:not([data-theme]) .checkbox.disabled label,
fieldset[disabled] body:not([data-theme]) .checkbox label, body[data-theme="light"] .radio.disabled label,
fieldset[disabled] body[data-theme="light"] .radio label,
body[data-theme="light"] .checkbox.disabled label,
fieldset[disabled] body[data-theme="light"] .checkbox label {
  cursor: not-allowed;
}
/* line 246, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body:not([data-theme]) .radio label, body:not([data-theme]) .checkbox label, body[data-theme="light"] .radio label, body[data-theme="light"] .checkbox label {
  min-height: 20px;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: 400;
  cursor: pointer;
}
/* line 254, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body:not([data-theme]) .radio input[type="radio"],
body:not([data-theme]) .radio-inline input[type="radio"],
body:not([data-theme]) .checkbox input[type="checkbox"],
body:not([data-theme]) .checkbox-inline input[type="checkbox"], body[data-theme="light"] .radio input[type="radio"],
body[data-theme="light"] .radio-inline input[type="radio"],
body[data-theme="light"] .checkbox input[type="checkbox"],
body[data-theme="light"] .checkbox-inline input[type="checkbox"] {
  position: absolute;
  margin-top: 4px \9;
  margin-left: -20px;
}
/* line 263, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body:not([data-theme]) .radio + .radio,
body:not([data-theme]) .checkbox + .checkbox, body[data-theme="light"] .radio + .radio,
body[data-theme="light"] .checkbox + .checkbox {
  margin-top: -5px;
}
/* line 269, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body:not([data-theme]) .radio-inline, body:not([data-theme]) .checkbox-inline, body[data-theme="light"] .radio-inline, body[data-theme="light"] .checkbox-inline {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: 400;
  vertical-align: middle;
  cursor: pointer;
}
/* line 280, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body:not([data-theme]) .radio-inline.disabled, fieldset[disabled] body:not([data-theme]) .radio-inline,
body:not([data-theme]) .checkbox-inline.disabled,
fieldset[disabled] body:not([data-theme]) .checkbox-inline, body[data-theme="light"] .radio-inline.disabled,
fieldset[disabled] body[data-theme="light"] .radio-inline,
body[data-theme="light"] .checkbox-inline.disabled,
fieldset[disabled] body[data-theme="light"] .checkbox-inline {
  cursor: not-allowed;
}
/* line 285, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body:not([data-theme]) .radio-inline + .radio-inline,
body:not([data-theme]) .checkbox-inline + .checkbox-inline, body[data-theme="light"] .radio-inline + .radio-inline,
body[data-theme="light"] .checkbox-inline + .checkbox-inline {
  margin-top: 0;
  margin-left: 10px;
}
/* line 297, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body:not([data-theme]) .form-control-static, body[data-theme="light"] .form-control-static {
  min-height: 34px;
  padding-top: 7px;
  padding-bottom: 7px;
  margin-bottom: 0;
}
/* line 305, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body:not([data-theme]) .form-control-static.input-lg, body:not([data-theme]) .input-group-lg > .form-control-static.form-control,
body:not([data-theme]) .input-group-lg > .form-control-static.input-group-addon,
body:not([data-theme]) .input-group-lg > .input-group-btn > .form-control-static.btn, body:not([data-theme]) body[data-theme="light"] .input-group-lg > .form-control-static.form-control,
body:not([data-theme]) body[data-theme="light"] .input-group-lg > .form-control-static.input-group-addon, body:not([data-theme]) body[data-theme="united"] .input-group-lg > .form-control-static.form-control,
body:not([data-theme]) body[data-theme="united"] .input-group-lg > .form-control-static.input-group-addon, body:not([data-theme]) body[data-theme="slate"] .input-group-lg > .form-control-static.form-control,
body:not([data-theme]) body[data-theme="slate"] .input-group-lg > .form-control-static.input-group-addon, body:not([data-theme]) .form-control-static.input-sm, body:not([data-theme]) .input-group-sm > .form-control-static.form-control,
body:not([data-theme]) .input-group-sm > .form-control-static.input-group-addon,
body:not([data-theme]) .input-group-sm > .input-group-btn > .form-control-static.btn, body:not([data-theme]) body[data-theme="light"] .input-group-sm > .form-control-static.form-control,
body:not([data-theme]) body[data-theme="light"] .input-group-sm > .form-control-static.input-group-addon, body:not([data-theme]) body[data-theme="united"] .input-group-sm > .form-control-static.form-control,
body:not([data-theme]) body[data-theme="united"] .input-group-sm > .form-control-static.input-group-addon, body:not([data-theme]) body[data-theme="slate"] .input-group-sm > .form-control-static.form-control,
body:not([data-theme]) body[data-theme="slate"] .input-group-sm > .form-control-static.input-group-addon, body[data-theme="light"] .form-control-static.input-lg, body[data-theme="light"] body:not([data-theme]) .input-group-lg > .form-control-static.form-control,
body[data-theme="light"] body:not([data-theme]) .input-group-lg > .form-control-static.input-group-addon, body[data-theme="light"] .input-group-lg > .form-control-static.form-control,
body[data-theme="light"] .input-group-lg > .form-control-static.input-group-addon,
body[data-theme="light"] .input-group-lg > .input-group-btn > .form-control-static.btn, body[data-theme="light"] body[data-theme="united"] .input-group-lg > .form-control-static.form-control,
body[data-theme="light"] body[data-theme="united"] .input-group-lg > .form-control-static.input-group-addon, body[data-theme="light"] body[data-theme="slate"] .input-group-lg > .form-control-static.form-control,
body[data-theme="light"] body[data-theme="slate"] .input-group-lg > .form-control-static.input-group-addon, body[data-theme="light"] .form-control-static.input-sm, body[data-theme="light"] body:not([data-theme]) .input-group-sm > .form-control-static.form-control,
body[data-theme="light"] body:not([data-theme]) .input-group-sm > .form-control-static.input-group-addon, body[data-theme="light"] .input-group-sm > .form-control-static.form-control,
body[data-theme="light"] .input-group-sm > .form-control-static.input-group-addon,
body[data-theme="light"] .input-group-sm > .input-group-btn > .form-control-static.btn, body[data-theme="light"] body[data-theme="united"] .input-group-sm > .form-control-static.form-control,
body[data-theme="light"] body[data-theme="united"] .input-group-sm > .form-control-static.input-group-addon, body[data-theme="light"] body[data-theme="slate"] .input-group-sm > .form-control-static.form-control,
body[data-theme="light"] body[data-theme="slate"] .input-group-sm > .form-control-static.input-group-addon {
  padding-right: 0;
  padding-left: 0;
}
/* line 71, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
body:not([data-theme]) .input-sm, body:not([data-theme]) .input-group-sm > .form-control,
body:not([data-theme]) .input-group-sm > .input-group-addon,
body:not([data-theme]) .input-group-sm > .input-group-btn > .btn, body:not([data-theme]) body[data-theme="light"] .input-group-sm > .form-control,
body:not([data-theme]) body[data-theme="light"] .input-group-sm > .input-group-addon, body:not([data-theme]) body[data-theme="united"] .input-group-sm > .form-control,
body:not([data-theme]) body[data-theme="united"] .input-group-sm > .input-group-addon, body:not([data-theme]) body[data-theme="slate"] .input-group-sm > .form-control,
body:not([data-theme]) body[data-theme="slate"] .input-group-sm > .input-group-addon, body[data-theme="light"] .input-sm, body[data-theme="light"] body:not([data-theme]) .input-group-sm > .form-control,
body[data-theme="light"] body:not([data-theme]) .input-group-sm > .input-group-addon, body[data-theme="light"] .input-group-sm > .form-control,
body[data-theme="light"] .input-group-sm > .input-group-addon,
body[data-theme="light"] .input-group-sm > .input-group-btn > .btn, body[data-theme="light"] body[data-theme="united"] .input-group-sm > .form-control,
body[data-theme="light"] body[data-theme="united"] .input-group-sm > .input-group-addon, body[data-theme="light"] body[data-theme="slate"] .input-group-sm > .form-control,
body[data-theme="light"] body[data-theme="slate"] .input-group-sm > .input-group-addon {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
/* line 79, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
body:not([data-theme]) select.input-sm, body:not([data-theme]) .input-group-sm > select.form-control,
body:not([data-theme]) .input-group-sm > select.input-group-addon,
body:not([data-theme]) .input-group-sm > .input-group-btn > select.btn, body:not([data-theme]) body[data-theme="light"] .input-group-sm > select.form-control,
body:not([data-theme]) body[data-theme="light"] .input-group-sm > select.input-group-addon, body:not([data-theme]) body[data-theme="united"] .input-group-sm > select.form-control,
body:not([data-theme]) body[data-theme="united"] .input-group-sm > select.input-group-addon, body:not([data-theme]) body[data-theme="slate"] .input-group-sm > select.form-control,
body:not([data-theme]) body[data-theme="slate"] .input-group-sm > select.input-group-addon, body[data-theme="light"] select.input-sm, body[data-theme="light"] body:not([data-theme]) .input-group-sm > select.form-control,
body[data-theme="light"] body:not([data-theme]) .input-group-sm > select.input-group-addon, body[data-theme="light"] .input-group-sm > select.form-control,
body[data-theme="light"] .input-group-sm > select.input-group-addon,
body[data-theme="light"] .input-group-sm > .input-group-btn > select.btn, body[data-theme="light"] body[data-theme="united"] .input-group-sm > select.form-control,
body[data-theme="light"] body[data-theme="united"] .input-group-sm > select.input-group-addon, body[data-theme="light"] body[data-theme="slate"] .input-group-sm > select.form-control,
body[data-theme="light"] body[data-theme="slate"] .input-group-sm > select.input-group-addon {
  height: 30px;
  line-height: 30px;
}
/* line 84, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
body:not([data-theme]) textarea.input-sm, body:not([data-theme]) .input-group-sm > textarea.form-control,
body:not([data-theme]) .input-group-sm > textarea.input-group-addon,
body:not([data-theme]) .input-group-sm > .input-group-btn > textarea.btn, body:not([data-theme]) body[data-theme="light"] .input-group-sm > textarea.form-control,
body:not([data-theme]) body[data-theme="light"] .input-group-sm > textarea.input-group-addon, body:not([data-theme]) body[data-theme="united"] .input-group-sm > textarea.form-control,
body:not([data-theme]) body[data-theme="united"] .input-group-sm > textarea.input-group-addon, body:not([data-theme]) body[data-theme="slate"] .input-group-sm > textarea.form-control,
body:not([data-theme]) body[data-theme="slate"] .input-group-sm > textarea.input-group-addon,
body:not([data-theme]) select[multiple].input-sm,
body:not([data-theme]) .input-group-sm > select[multiple].form-control,
body:not([data-theme]) .input-group-sm > select[multiple].input-group-addon,
body:not([data-theme]) .input-group-sm > .input-group-btn > select[multiple].btn,
body:not([data-theme]) body[data-theme="light"] .input-group-sm > select[multiple].form-control,
body:not([data-theme]) body[data-theme="light"] .input-group-sm > select[multiple].input-group-addon,
body:not([data-theme]) body[data-theme="united"] .input-group-sm > select[multiple].form-control,
body:not([data-theme]) body[data-theme="united"] .input-group-sm > select[multiple].input-group-addon,
body:not([data-theme]) body[data-theme="slate"] .input-group-sm > select[multiple].form-control,
body:not([data-theme]) body[data-theme="slate"] .input-group-sm > select[multiple].input-group-addon, body[data-theme="light"] textarea.input-sm, body[data-theme="light"] body:not([data-theme]) .input-group-sm > textarea.form-control,
body[data-theme="light"] body:not([data-theme]) .input-group-sm > textarea.input-group-addon, body[data-theme="light"] .input-group-sm > textarea.form-control,
body[data-theme="light"] .input-group-sm > textarea.input-group-addon,
body[data-theme="light"] .input-group-sm > .input-group-btn > textarea.btn, body[data-theme="light"] body[data-theme="united"] .input-group-sm > textarea.form-control,
body[data-theme="light"] body[data-theme="united"] .input-group-sm > textarea.input-group-addon, body[data-theme="light"] body[data-theme="slate"] .input-group-sm > textarea.form-control,
body[data-theme="light"] body[data-theme="slate"] .input-group-sm > textarea.input-group-addon,
body[data-theme="light"] select[multiple].input-sm,
body[data-theme="light"] body:not([data-theme]) .input-group-sm > select[multiple].form-control,
body[data-theme="light"] body:not([data-theme]) .input-group-sm > select[multiple].input-group-addon,
body[data-theme="light"] .input-group-sm > select[multiple].form-control,
body[data-theme="light"] .input-group-sm > select[multiple].input-group-addon,
body[data-theme="light"] .input-group-sm > .input-group-btn > select[multiple].btn,
body[data-theme="light"] body[data-theme="united"] .input-group-sm > select[multiple].form-control,
body[data-theme="light"] body[data-theme="united"] .input-group-sm > select[multiple].input-group-addon,
body[data-theme="light"] body[data-theme="slate"] .input-group-sm > select[multiple].form-control,
body[data-theme="light"] body[data-theme="slate"] .input-group-sm > select[multiple].input-group-addon {
  height: auto;
}
/* line 323, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body:not([data-theme]) .form-group-sm .form-control, body[data-theme="light"] .form-group-sm .form-control {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
/* line 330, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body:not([data-theme]) .form-group-sm select.form-control, body[data-theme="light"] .form-group-sm select.form-control {
  height: 30px;
  line-height: 30px;
}
/* line 334, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body:not([data-theme]) .form-group-sm textarea.form-control,
body:not([data-theme]) .form-group-sm select[multiple].form-control, body[data-theme="light"] .form-group-sm textarea.form-control,
body[data-theme="light"] .form-group-sm select[multiple].form-control {
  height: auto;
}
/* line 338, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body:not([data-theme]) .form-group-sm .form-control-static, body[data-theme="light"] .form-group-sm .form-control-static {
  height: 30px;
  min-height: 32px;
  padding: 6px 10px;
  font-size: 12px;
  line-height: 1.5;
}
/* line 71, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
body:not([data-theme]) .input-lg, body:not([data-theme]) .input-group-lg > .form-control,
body:not([data-theme]) .input-group-lg > .input-group-addon,
body:not([data-theme]) .input-group-lg > .input-group-btn > .btn, body:not([data-theme]) body[data-theme="light"] .input-group-lg > .form-control,
body:not([data-theme]) body[data-theme="light"] .input-group-lg > .input-group-addon, body:not([data-theme]) body[data-theme="united"] .input-group-lg > .form-control,
body:not([data-theme]) body[data-theme="united"] .input-group-lg > .input-group-addon, body:not([data-theme]) body[data-theme="slate"] .input-group-lg > .form-control,
body:not([data-theme]) body[data-theme="slate"] .input-group-lg > .input-group-addon, body[data-theme="light"] .input-lg, body[data-theme="light"] body:not([data-theme]) .input-group-lg > .form-control,
body[data-theme="light"] body:not([data-theme]) .input-group-lg > .input-group-addon, body[data-theme="light"] .input-group-lg > .form-control,
body[data-theme="light"] .input-group-lg > .input-group-addon,
body[data-theme="light"] .input-group-lg > .input-group-btn > .btn, body[data-theme="light"] body[data-theme="united"] .input-group-lg > .form-control,
body[data-theme="light"] body[data-theme="united"] .input-group-lg > .input-group-addon, body[data-theme="light"] body[data-theme="slate"] .input-group-lg > .form-control,
body[data-theme="light"] body[data-theme="slate"] .input-group-lg > .input-group-addon {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}
/* line 79, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
body:not([data-theme]) select.input-lg, body:not([data-theme]) .input-group-lg > select.form-control,
body:not([data-theme]) .input-group-lg > select.input-group-addon,
body:not([data-theme]) .input-group-lg > .input-group-btn > select.btn, body:not([data-theme]) body[data-theme="light"] .input-group-lg > select.form-control,
body:not([data-theme]) body[data-theme="light"] .input-group-lg > select.input-group-addon, body:not([data-theme]) body[data-theme="united"] .input-group-lg > select.form-control,
body:not([data-theme]) body[data-theme="united"] .input-group-lg > select.input-group-addon, body:not([data-theme]) body[data-theme="slate"] .input-group-lg > select.form-control,
body:not([data-theme]) body[data-theme="slate"] .input-group-lg > select.input-group-addon, body[data-theme="light"] select.input-lg, body[data-theme="light"] body:not([data-theme]) .input-group-lg > select.form-control,
body[data-theme="light"] body:not([data-theme]) .input-group-lg > select.input-group-addon, body[data-theme="light"] .input-group-lg > select.form-control,
body[data-theme="light"] .input-group-lg > select.input-group-addon,
body[data-theme="light"] .input-group-lg > .input-group-btn > select.btn, body[data-theme="light"] body[data-theme="united"] .input-group-lg > select.form-control,
body[data-theme="light"] body[data-theme="united"] .input-group-lg > select.input-group-addon, body[data-theme="light"] body[data-theme="slate"] .input-group-lg > select.form-control,
body[data-theme="light"] body[data-theme="slate"] .input-group-lg > select.input-group-addon {
  height: 46px;
  line-height: 46px;
}
/* line 84, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
body:not([data-theme]) textarea.input-lg, body:not([data-theme]) .input-group-lg > textarea.form-control,
body:not([data-theme]) .input-group-lg > textarea.input-group-addon,
body:not([data-theme]) .input-group-lg > .input-group-btn > textarea.btn, body:not([data-theme]) body[data-theme="light"] .input-group-lg > textarea.form-control,
body:not([data-theme]) body[data-theme="light"] .input-group-lg > textarea.input-group-addon, body:not([data-theme]) body[data-theme="united"] .input-group-lg > textarea.form-control,
body:not([data-theme]) body[data-theme="united"] .input-group-lg > textarea.input-group-addon, body:not([data-theme]) body[data-theme="slate"] .input-group-lg > textarea.form-control,
body:not([data-theme]) body[data-theme="slate"] .input-group-lg > textarea.input-group-addon,
body:not([data-theme]) select[multiple].input-lg,
body:not([data-theme]) .input-group-lg > select[multiple].form-control,
body:not([data-theme]) .input-group-lg > select[multiple].input-group-addon,
body:not([data-theme]) .input-group-lg > .input-group-btn > select[multiple].btn,
body:not([data-theme]) body[data-theme="light"] .input-group-lg > select[multiple].form-control,
body:not([data-theme]) body[data-theme="light"] .input-group-lg > select[multiple].input-group-addon,
body:not([data-theme]) body[data-theme="united"] .input-group-lg > select[multiple].form-control,
body:not([data-theme]) body[data-theme="united"] .input-group-lg > select[multiple].input-group-addon,
body:not([data-theme]) body[data-theme="slate"] .input-group-lg > select[multiple].form-control,
body:not([data-theme]) body[data-theme="slate"] .input-group-lg > select[multiple].input-group-addon, body[data-theme="light"] textarea.input-lg, body[data-theme="light"] body:not([data-theme]) .input-group-lg > textarea.form-control,
body[data-theme="light"] body:not([data-theme]) .input-group-lg > textarea.input-group-addon, body[data-theme="light"] .input-group-lg > textarea.form-control,
body[data-theme="light"] .input-group-lg > textarea.input-group-addon,
body[data-theme="light"] .input-group-lg > .input-group-btn > textarea.btn, body[data-theme="light"] body[data-theme="united"] .input-group-lg > textarea.form-control,
body[data-theme="light"] body[data-theme="united"] .input-group-lg > textarea.input-group-addon, body[data-theme="light"] body[data-theme="slate"] .input-group-lg > textarea.form-control,
body[data-theme="light"] body[data-theme="slate"] .input-group-lg > textarea.input-group-addon,
body[data-theme="light"] select[multiple].input-lg,
body[data-theme="light"] body:not([data-theme]) .input-group-lg > select[multiple].form-control,
body[data-theme="light"] body:not([data-theme]) .input-group-lg > select[multiple].input-group-addon,
body[data-theme="light"] .input-group-lg > select[multiple].form-control,
body[data-theme="light"] .input-group-lg > select[multiple].input-group-addon,
body[data-theme="light"] .input-group-lg > .input-group-btn > select[multiple].btn,
body[data-theme="light"] body[data-theme="united"] .input-group-lg > select[multiple].form-control,
body[data-theme="light"] body[data-theme="united"] .input-group-lg > select[multiple].input-group-addon,
body[data-theme="light"] body[data-theme="slate"] .input-group-lg > select[multiple].form-control,
body[data-theme="light"] body[data-theme="slate"] .input-group-lg > select[multiple].input-group-addon {
  height: auto;
}
/* line 349, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body:not([data-theme]) .form-group-lg .form-control, body[data-theme="light"] .form-group-lg .form-control {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}
/* line 356, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body:not([data-theme]) .form-group-lg select.form-control, body[data-theme="light"] .form-group-lg select.form-control {
  height: 46px;
  line-height: 46px;
}
/* line 360, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body:not([data-theme]) .form-group-lg textarea.form-control,
body:not([data-theme]) .form-group-lg select[multiple].form-control, body[data-theme="light"] .form-group-lg textarea.form-control,
body[data-theme="light"] .form-group-lg select[multiple].form-control {
  height: auto;
}
/* line 364, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body:not([data-theme]) .form-group-lg .form-control-static, body[data-theme="light"] .form-group-lg .form-control-static {
  height: 46px;
  min-height: 38px;
  padding: 11px 16px;
  font-size: 18px;
  line-height: 1.3333333;
}
/* line 378, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body:not([data-theme]) .has-feedback, body[data-theme="light"] .has-feedback {
  position: relative;
}
/* line 383, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body:not([data-theme]) .has-feedback .form-control, body[data-theme="light"] .has-feedback .form-control {
  padding-right: 42.5px;
}
/* line 388, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body:not([data-theme]) .form-control-feedback, body[data-theme="light"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body:not([data-theme]) .input-lg + .form-control-feedback, body:not([data-theme]) .input-group-lg > .form-control + .form-control-feedback,
body:not([data-theme]) .input-group-lg > .input-group-addon + .form-control-feedback,
body:not([data-theme]) .input-group-lg > .input-group-btn > .btn + .form-control-feedback,
body:not([data-theme]) .input-group-lg + .form-control-feedback,
body:not([data-theme]) .form-group-lg .form-control + .form-control-feedback, body[data-theme="light"] .input-lg + .form-control-feedback, body[data-theme="light"] .input-group-lg > .form-control + .form-control-feedback,
body[data-theme="light"] .input-group-lg > .input-group-addon + .form-control-feedback,
body[data-theme="light"] .input-group-lg > .input-group-btn > .btn + .form-control-feedback,
body[data-theme="light"] .input-group-lg + .form-control-feedback,
body[data-theme="light"] .form-group-lg .form-control + .form-control-feedback {
  width: 46px;
  height: 46px;
  line-height: 46px;
}
/* line 407, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body:not([data-theme]) .input-sm + .form-control-feedback, body:not([data-theme]) .input-group-sm > .form-control + .form-control-feedback,
body:not([data-theme]) .input-group-sm > .input-group-addon + .form-control-feedback,
body:not([data-theme]) .input-group-sm > .input-group-btn > .btn + .form-control-feedback,
body:not([data-theme]) .input-group-sm + .form-control-feedback,
body:not([data-theme]) .form-group-sm .form-control + .form-control-feedback, body[data-theme="light"] .input-sm + .form-control-feedback, body[data-theme="light"] .input-group-sm > .form-control + .form-control-feedback,
body[data-theme="light"] .input-group-sm > .input-group-addon + .form-control-feedback,
body[data-theme="light"] .input-group-sm > .input-group-btn > .btn + .form-control-feedback,
body[data-theme="light"] .input-group-sm + .form-control-feedback,
body[data-theme="light"] .form-group-sm .form-control + .form-control-feedback {
  width: 30px;
  height: 30px;
  line-height: 30px;
}
/* line 8, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
body:not([data-theme]) .has-success .help-block,
body:not([data-theme]) .has-success .control-label,
body:not([data-theme]) .has-success .radio,
body:not([data-theme]) .has-success .checkbox,
body:not([data-theme]) .has-success .radio-inline,
body:not([data-theme]) .has-success .checkbox-inline, body:not([data-theme]) .has-success.radio label, body:not([data-theme]) .has-success.checkbox label, body:not([data-theme]) .has-success.radio-inline label, body:not([data-theme]) .has-success.checkbox-inline label, body[data-theme="light"] .has-success .help-block,
body[data-theme="light"] .has-success .control-label,
body[data-theme="light"] .has-success .radio,
body[data-theme="light"] .has-success .checkbox,
body[data-theme="light"] .has-success .radio-inline,
body[data-theme="light"] .has-success .checkbox-inline, body[data-theme="light"] .has-success.radio label, body[data-theme="light"] .has-success.checkbox label, body[data-theme="light"] .has-success.radio-inline label, body[data-theme="light"] .has-success.checkbox-inline label {
  color: #3c763d;
}
/* line 21, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
body:not([data-theme]) .has-success .form-control, body[data-theme="light"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
body:not([data-theme]) .has-success .form-control:focus, body[data-theme="light"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
body:not([data-theme]) .has-success .input-group-addon, body[data-theme="light"] .has-success .input-group-addon {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #3c763d;
}
/* line 37, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
body:not([data-theme]) .has-success .form-control-feedback, body[data-theme="light"] .has-success .form-control-feedback {
  color: #3c763d;
}
/* line 8, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
body:not([data-theme]) .has-warning .help-block,
body:not([data-theme]) .has-warning .control-label,
body:not([data-theme]) .has-warning .radio,
body:not([data-theme]) .has-warning .checkbox,
body:not([data-theme]) .has-warning .radio-inline,
body:not([data-theme]) .has-warning .checkbox-inline, body:not([data-theme]) .has-warning.radio label, body:not([data-theme]) .has-warning.checkbox label, body:not([data-theme]) .has-warning.radio-inline label, body:not([data-theme]) .has-warning.checkbox-inline label, body[data-theme="light"] .has-warning .help-block,
body[data-theme="light"] .has-warning .control-label,
body[data-theme="light"] .has-warning .radio,
body[data-theme="light"] .has-warning .checkbox,
body[data-theme="light"] .has-warning .radio-inline,
body[data-theme="light"] .has-warning .checkbox-inline, body[data-theme="light"] .has-warning.radio label, body[data-theme="light"] .has-warning.checkbox label, body[data-theme="light"] .has-warning.radio-inline label, body[data-theme="light"] .has-warning.checkbox-inline label {
  color: #8a6d3b;
}
/* line 21, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
body:not([data-theme]) .has-warning .form-control, body[data-theme="light"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
body:not([data-theme]) .has-warning .form-control:focus, body[data-theme="light"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
body:not([data-theme]) .has-warning .input-group-addon, body[data-theme="light"] .has-warning .input-group-addon {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #8a6d3b;
}
/* line 37, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
body:not([data-theme]) .has-warning .form-control-feedback, body[data-theme="light"] .has-warning .form-control-feedback {
  color: #8a6d3b;
}
/* line 8, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
body:not([data-theme]) .has-error .help-block,
body:not([data-theme]) .has-error .control-label,
body:not([data-theme]) .has-error .radio,
body:not([data-theme]) .has-error .checkbox,
body:not([data-theme]) .has-error .radio-inline,
body:not([data-theme]) .has-error .checkbox-inline, body:not([data-theme]) .has-error.radio label, body:not([data-theme]) .has-error.checkbox label, body:not([data-theme]) .has-error.radio-inline label, body:not([data-theme]) .has-error.checkbox-inline label, body[data-theme="light"] .has-error .help-block,
body[data-theme="light"] .has-error .control-label,
body[data-theme="light"] .has-error .radio,
body[data-theme="light"] .has-error .checkbox,
body[data-theme="light"] .has-error .radio-inline,
body[data-theme="light"] .has-error .checkbox-inline, body[data-theme="light"] .has-error.radio label, body[data-theme="light"] .has-error.checkbox label, body[data-theme="light"] .has-error.radio-inline label, body[data-theme="light"] .has-error.checkbox-inline label {
  color: #a94442;
}
/* line 21, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
body:not([data-theme]) .has-error .form-control, body[data-theme="light"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
body:not([data-theme]) .has-error .form-control:focus, body[data-theme="light"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
body:not([data-theme]) .has-error .input-group-addon, body[data-theme="light"] .has-error .input-group-addon {
  color: #a94442;
  background-color: #f2dede;
  border-color: #a94442;
}
/* line 37, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
body:not([data-theme]) .has-error .form-control-feedback, body[data-theme="light"] .has-error .form-control-feedback {
  color: #a94442;
}
/* line 429, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body:not([data-theme]) .has-feedback label ~ .form-control-feedback, body[data-theme="light"] .has-feedback label ~ .form-control-feedback {
  top: 25px;
}
/* line 432, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body:not([data-theme]) .has-feedback label.sr-only ~ .form-control-feedback, body[data-theme="light"] .has-feedback label.sr-only ~ .form-control-feedback {
  top: 0;
}
/* line 443, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body:not([data-theme]) .help-block, body[data-theme="light"] .help-block {
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #737373;
}
@media (min-width: 768px) {
  /* line 468, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  body:not([data-theme]) .form-inline .form-group, body[data-theme="light"] .form-inline .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  /* line 475, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  body:not([data-theme]) .form-inline .form-control, body[data-theme="light"] .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  /* line 482, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  body:not([data-theme]) .form-inline .form-control-static, body[data-theme="light"] .form-inline .form-control-static {
    display: inline-block;
  }
  /* line 486, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  body:not([data-theme]) .form-inline .input-group, body[data-theme="light"] .form-inline .input-group {
    display: inline-table;
    vertical-align: middle;
  }
  /* line 490, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  body:not([data-theme]) .form-inline .input-group .input-group-addon,
  body:not([data-theme]) .form-inline .input-group .input-group-btn,
  body:not([data-theme]) .form-inline .input-group .form-control, body[data-theme="light"] .form-inline .input-group .input-group-addon,
  body[data-theme="light"] .form-inline .input-group .input-group-btn,
  body[data-theme="light"] .form-inline .input-group .form-control {
    width: auto;
  }
  /* line 498, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  body:not([data-theme]) .form-inline .input-group > .form-control, body[data-theme="light"] .form-inline .input-group > .form-control {
    width: 100%;
  }
  /* line 502, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  body:not([data-theme]) .form-inline .control-label, body[data-theme="light"] .form-inline .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
  /* line 509, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  body:not([data-theme]) .form-inline .radio,
  body:not([data-theme]) .form-inline .checkbox, body[data-theme="light"] .form-inline .radio,
  body[data-theme="light"] .form-inline .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }
  /* line 516, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  body:not([data-theme]) .form-inline .radio label,
  body:not([data-theme]) .form-inline .checkbox label, body[data-theme="light"] .form-inline .radio label,
  body[data-theme="light"] .form-inline .checkbox label {
    padding-left: 0;
  }
  /* line 520, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  body:not([data-theme]) .form-inline .radio input[type="radio"],
  body:not([data-theme]) .form-inline .checkbox input[type="checkbox"], body[data-theme="light"] .form-inline .radio input[type="radio"],
  body[data-theme="light"] .form-inline .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0;
  }
  /* line 527, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  body:not([data-theme]) .form-inline .has-feedback .form-control-feedback, body[data-theme="light"] .form-inline .has-feedback .form-control-feedback {
    top: 0;
  }
}
/* line 549, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body:not([data-theme]) .form-horizontal .radio,
body:not([data-theme]) .form-horizontal .checkbox,
body:not([data-theme]) .form-horizontal .radio-inline,
body:not([data-theme]) .form-horizontal .checkbox-inline, body[data-theme="light"] .form-horizontal .radio,
body[data-theme="light"] .form-horizontal .checkbox,
body[data-theme="light"] .form-horizontal .radio-inline,
body[data-theme="light"] .form-horizontal .checkbox-inline {
  padding-top: 7px;
  margin-top: 0;
  margin-bottom: 0;
}
/* line 559, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body:not([data-theme]) .form-horizontal .radio,
body:not([data-theme]) .form-horizontal .checkbox, body[data-theme="light"] .form-horizontal .radio,
body[data-theme="light"] .form-horizontal .checkbox {
  min-height: 27px;
}
/* line 565, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body:not([data-theme]) .form-horizontal .form-group, body[data-theme="light"] .form-horizontal .form-group {
  margin-right: -15px;
  margin-left: -15px;
}
/* line 14, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
body:not([data-theme]) .form-horizontal .form-group:before, body:not([data-theme]) .form-horizontal .form-group:after, body[data-theme="light"] .form-horizontal .form-group:before, body[data-theme="light"] .form-horizontal .form-group:after {
  display: table;
  content: " ";
}
/* line 19, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
body:not([data-theme]) .form-horizontal .form-group:after, body[data-theme="light"] .form-horizontal .form-group:after {
  clear: both;
}
@media (min-width: 768px) {
  /* line 572, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  body:not([data-theme]) .form-horizontal .control-label, body[data-theme="light"] .form-horizontal .control-label {
    padding-top: 7px;
    margin-bottom: 0;
    text-align: right;
  }
}
/* line 583, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body:not([data-theme]) .form-horizontal .has-feedback .form-control-feedback, body[data-theme="light"] .form-horizontal .has-feedback .form-control-feedback {
  right: 15px;
}
@media (min-width: 768px) {
  /* line 593, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  body:not([data-theme]) .form-horizontal .form-group-lg .control-label, body[data-theme="light"] .form-horizontal .form-group-lg .control-label {
    padding-top: 11px;
    font-size: 18px;
  }
}
@media (min-width: 768px) {
  /* line 601, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  body:not([data-theme]) .form-horizontal .form-group-sm .control-label, body[data-theme="light"] .form-horizontal .form-group-sm .control-label {
    padding-top: 6px;
    font-size: 12px;
  }
}
/* line 9, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
body:not([data-theme]) .btn, body[data-theme="light"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
body:not([data-theme]) .btn:focus, body:not([data-theme]) .btn.focus, body:not([data-theme]) .btn:active:focus, body:not([data-theme]) .btn:active.focus, body:not([data-theme]) .btn.active:focus, body:not([data-theme]) .btn.active.focus, body[data-theme="light"] .btn:focus, body[data-theme="light"] .btn.focus, body[data-theme="light"] .btn:active:focus, body[data-theme="light"] .btn:active.focus, body[data-theme="light"] .btn.active:focus, body[data-theme="light"] .btn.active.focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
/* line 32, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
body:not([data-theme]) .btn:hover, body:not([data-theme]) .btn:focus, body:not([data-theme]) .btn.focus, body[data-theme="light"] .btn:hover, body[data-theme="light"] .btn:focus, body[data-theme="light"] .btn.focus {
  color: #333;
  text-decoration: none;
}
/* line 39, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
body:not([data-theme]) .btn:active, body:not([data-theme]) .btn.active, body[data-theme="light"] .btn:active, body[data-theme="light"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
body:not([data-theme]) .btn.disabled, body:not([data-theme]) .btn[disabled], fieldset[disabled] body:not([data-theme]) .btn, body[data-theme="light"] .btn.disabled, body[data-theme="light"] .btn[disabled], fieldset[disabled] body[data-theme="light"] .btn {
  cursor: not-allowed;
  filter: alpha(opacity=65);
  opacity: 0.65;
  -webkit-box-shadow: none;
  box-shadow: none;
}
/* line 58, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
body:not([data-theme]) a.btn.disabled, fieldset[disabled] body:not([data-theme]) a.btn, body[data-theme="light"] a.btn.disabled, fieldset[disabled] body[data-theme="light"] a.btn {
  pointer-events: none;
}
/* line 68, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
body:not([data-theme]) .btn-default, body[data-theme="light"] .btn-default {
  color: #333;
  background-color: #fff;
  border-color: #ccc;
}
/* line 11, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
body:not([data-theme]) .btn-default:focus, body:not([data-theme]) .btn-default.focus, body[data-theme="light"] .btn-default:focus, body[data-theme="light"] .btn-default.focus {
  color: #333;
  background-color: #e6e6e6;
  border-color: #8c8c8c;
}
/* line 17, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
body:not([data-theme]) .btn-default:hover, body[data-theme="light"] .btn-default:hover {
  color: #333;
  background-color: #e6e6e6;
  border-color: #adadad;
}
/* line 22, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
body:not([data-theme]) .btn-default:active, body:not([data-theme]) .btn-default.active, .open > body:not([data-theme]) .btn-default.dropdown-toggle, body[data-theme="light"] .btn-default:active, body[data-theme="light"] .btn-default.active, .open > body[data-theme="light"] .btn-default.dropdown-toggle {
  color: #333;
  background-color: #e6e6e6;
  background-image: none;
  border-color: #adadad;
}
/* line 30, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
body:not([data-theme]) .btn-default:active:hover, body:not([data-theme]) .btn-default:active:focus, body:not([data-theme]) .btn-default:active.focus, body:not([data-theme]) .btn-default.active:hover, body:not([data-theme]) .btn-default.active:focus, body:not([data-theme]) .btn-default.active.focus, .open > body:not([data-theme]) .btn-default.dropdown-toggle:hover, .open > body:not([data-theme]) .btn-default.dropdown-toggle:focus, .open > body:not([data-theme]) .btn-default.dropdown-toggle.focus, body[data-theme="light"] .btn-default:active:hover, body[data-theme="light"] .btn-default:active:focus, body[data-theme="light"] .btn-default:active.focus, body[data-theme="light"] .btn-default.active:hover, body[data-theme="light"] .btn-default.active:focus, body[data-theme="light"] .btn-default.active.focus, .open > body[data-theme="light"] .btn-default.dropdown-toggle:hover, .open > body[data-theme="light"] .btn-default.dropdown-toggle:focus, .open > body[data-theme="light"] .btn-default.dropdown-toggle.focus {
  color: #333;
  background-color: #d4d4d4;
  border-color: #8c8c8c;
}
/* line 41, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
body:not([data-theme]) .btn-default.disabled:hover, body:not([data-theme]) .btn-default.disabled:focus, body:not([data-theme]) .btn-default.disabled.focus, body:not([data-theme]) .btn-default[disabled]:hover, body:not([data-theme]) .btn-default[disabled]:focus, body:not([data-theme]) .btn-default[disabled].focus, fieldset[disabled] body:not([data-theme]) .btn-default:hover, fieldset[disabled] body:not([data-theme]) .btn-default:focus, fieldset[disabled] body:not([data-theme]) .btn-default.focus, body[data-theme="light"] .btn-default.disabled:hover, body[data-theme="light"] .btn-default.disabled:focus, body[data-theme="light"] .btn-default.disabled.focus, body[data-theme="light"] .btn-default[disabled]:hover, body[data-theme="light"] .btn-default[disabled]:focus, body[data-theme="light"] .btn-default[disabled].focus, fieldset[disabled] body[data-theme="light"] .btn-default:hover, fieldset[disabled] body[data-theme="light"] .btn-default:focus, fieldset[disabled] body[data-theme="light"] .btn-default.focus {
  background-color: #fff;
  border-color: #ccc;
}
/* line 49, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
body:not([data-theme]) .btn-default .badge, body[data-theme="light"] .btn-default .badge {
  color: #fff;
  background-color: #333;
}
/* line 71, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
body:not([data-theme]) .btn-primary, body[data-theme="light"] .btn-primary {
  color: #fff;
  background-color: #337ab7;
  border-color: #2e6da4;
}
/* line 11, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
body:not([data-theme]) .btn-primary:focus, body:not([data-theme]) .btn-primary.focus, body[data-theme="light"] .btn-primary:focus, body[data-theme="light"] .btn-primary.focus {
  color: #fff;
  background-color: #286090;
  border-color: #122b40;
}
/* line 17, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
body:not([data-theme]) .btn-primary:hover, body[data-theme="light"] .btn-primary:hover {
  color: #fff;
  background-color: #286090;
  border-color: #204d74;
}
/* line 22, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
body:not([data-theme]) .btn-primary:active, body:not([data-theme]) .btn-primary.active, .open > body:not([data-theme]) .btn-primary.dropdown-toggle, body[data-theme="light"] .btn-primary:active, body[data-theme="light"] .btn-primary.active, .open > body[data-theme="light"] .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #286090;
  background-image: none;
  border-color: #204d74;
}
/* line 30, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
body:not([data-theme]) .btn-primary:active:hover, body:not([data-theme]) .btn-primary:active:focus, body:not([data-theme]) .btn-primary:active.focus, body:not([data-theme]) .btn-primary.active:hover, body:not([data-theme]) .btn-primary.active:focus, body:not([data-theme]) .btn-primary.active.focus, .open > body:not([data-theme]) .btn-primary.dropdown-toggle:hover, .open > body:not([data-theme]) .btn-primary.dropdown-toggle:focus, .open > body:not([data-theme]) .btn-primary.dropdown-toggle.focus, body[data-theme="light"] .btn-primary:active:hover, body[data-theme="light"] .btn-primary:active:focus, body[data-theme="light"] .btn-primary:active.focus, body[data-theme="light"] .btn-primary.active:hover, body[data-theme="light"] .btn-primary.active:focus, body[data-theme="light"] .btn-primary.active.focus, .open > body[data-theme="light"] .btn-primary.dropdown-toggle:hover, .open > body[data-theme="light"] .btn-primary.dropdown-toggle:focus, .open > body[data-theme="light"] .btn-primary.dropdown-toggle.focus {
  color: #fff;
  background-color: #204d74;
  border-color: #122b40;
}
/* line 41, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
body:not([data-theme]) .btn-primary.disabled:hover, body:not([data-theme]) .btn-primary.disabled:focus, body:not([data-theme]) .btn-primary.disabled.focus, body:not([data-theme]) .btn-primary[disabled]:hover, body:not([data-theme]) .btn-primary[disabled]:focus, body:not([data-theme]) .btn-primary[disabled].focus, fieldset[disabled] body:not([data-theme]) .btn-primary:hover, fieldset[disabled] body:not([data-theme]) .btn-primary:focus, fieldset[disabled] body:not([data-theme]) .btn-primary.focus, body[data-theme="light"] .btn-primary.disabled:hover, body[data-theme="light"] .btn-primary.disabled:focus, body[data-theme="light"] .btn-primary.disabled.focus, body[data-theme="light"] .btn-primary[disabled]:hover, body[data-theme="light"] .btn-primary[disabled]:focus, body[data-theme="light"] .btn-primary[disabled].focus, fieldset[disabled] body[data-theme="light"] .btn-primary:hover, fieldset[disabled] body[data-theme="light"] .btn-primary:focus, fieldset[disabled] body[data-theme="light"] .btn-primary.focus {
  background-color: #337ab7;
  border-color: #2e6da4;
}
/* line 49, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
body:not([data-theme]) .btn-primary .badge, body[data-theme="light"] .btn-primary .badge {
  color: #337ab7;
  background-color: #fff;
}
/* line 75, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
body:not([data-theme]) .btn-success, body[data-theme="light"] .btn-success {
  color: #fff;
  background-color: #5cb85c;
  border-color: #4cae4c;
}
/* line 11, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
body:not([data-theme]) .btn-success:focus, body:not([data-theme]) .btn-success.focus, body[data-theme="light"] .btn-success:focus, body[data-theme="light"] .btn-success.focus {
  color: #fff;
  background-color: #449d44;
  border-color: #255625;
}
/* line 17, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
body:not([data-theme]) .btn-success:hover, body[data-theme="light"] .btn-success:hover {
  color: #fff;
  background-color: #449d44;
  border-color: #398439;
}
/* line 22, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
body:not([data-theme]) .btn-success:active, body:not([data-theme]) .btn-success.active, .open > body:not([data-theme]) .btn-success.dropdown-toggle, body[data-theme="light"] .btn-success:active, body[data-theme="light"] .btn-success.active, .open > body[data-theme="light"] .btn-success.dropdown-toggle {
  color: #fff;
  background-color: #449d44;
  background-image: none;
  border-color: #398439;
}
/* line 30, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
body:not([data-theme]) .btn-success:active:hover, body:not([data-theme]) .btn-success:active:focus, body:not([data-theme]) .btn-success:active.focus, body:not([data-theme]) .btn-success.active:hover, body:not([data-theme]) .btn-success.active:focus, body:not([data-theme]) .btn-success.active.focus, .open > body:not([data-theme]) .btn-success.dropdown-toggle:hover, .open > body:not([data-theme]) .btn-success.dropdown-toggle:focus, .open > body:not([data-theme]) .btn-success.dropdown-toggle.focus, body[data-theme="light"] .btn-success:active:hover, body[data-theme="light"] .btn-success:active:focus, body[data-theme="light"] .btn-success:active.focus, body[data-theme="light"] .btn-success.active:hover, body[data-theme="light"] .btn-success.active:focus, body[data-theme="light"] .btn-success.active.focus, .open > body[data-theme="light"] .btn-success.dropdown-toggle:hover, .open > body[data-theme="light"] .btn-success.dropdown-toggle:focus, .open > body[data-theme="light"] .btn-success.dropdown-toggle.focus {
  color: #fff;
  background-color: #398439;
  border-color: #255625;
}
/* line 41, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
body:not([data-theme]) .btn-success.disabled:hover, body:not([data-theme]) .btn-success.disabled:focus, body:not([data-theme]) .btn-success.disabled.focus, body:not([data-theme]) .btn-success[disabled]:hover, body:not([data-theme]) .btn-success[disabled]:focus, body:not([data-theme]) .btn-success[disabled].focus, fieldset[disabled] body:not([data-theme]) .btn-success:hover, fieldset[disabled] body:not([data-theme]) .btn-success:focus, fieldset[disabled] body:not([data-theme]) .btn-success.focus, body[data-theme="light"] .btn-success.disabled:hover, body[data-theme="light"] .btn-success.disabled:focus, body[data-theme="light"] .btn-success.disabled.focus, body[data-theme="light"] .btn-success[disabled]:hover, body[data-theme="light"] .btn-success[disabled]:focus, body[data-theme="light"] .btn-success[disabled].focus, fieldset[disabled] body[data-theme="light"] .btn-success:hover, fieldset[disabled] body[data-theme="light"] .btn-success:focus, fieldset[disabled] body[data-theme="light"] .btn-success.focus {
  background-color: #5cb85c;
  border-color: #4cae4c;
}
/* line 49, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
body:not([data-theme]) .btn-success .badge, body[data-theme="light"] .btn-success .badge {
  color: #5cb85c;
  background-color: #fff;
}
/* line 79, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
body:not([data-theme]) .btn-info, body[data-theme="light"] .btn-info {
  color: #fff;
  background-color: #5bc0de;
  border-color: #46b8da;
}
/* line 11, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
body:not([data-theme]) .btn-info:focus, body:not([data-theme]) .btn-info.focus, body[data-theme="light"] .btn-info:focus, body[data-theme="light"] .btn-info.focus {
  color: #fff;
  background-color: #31b0d5;
  border-color: #1b6d85;
}
/* line 17, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
body:not([data-theme]) .btn-info:hover, body[data-theme="light"] .btn-info:hover {
  color: #fff;
  background-color: #31b0d5;
  border-color: #269abc;
}
/* line 22, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
body:not([data-theme]) .btn-info:active, body:not([data-theme]) .btn-info.active, .open > body:not([data-theme]) .btn-info.dropdown-toggle, body[data-theme="light"] .btn-info:active, body[data-theme="light"] .btn-info.active, .open > body[data-theme="light"] .btn-info.dropdown-toggle {
  color: #fff;
  background-color: #31b0d5;
  background-image: none;
  border-color: #269abc;
}
/* line 30, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
body:not([data-theme]) .btn-info:active:hover, body:not([data-theme]) .btn-info:active:focus, body:not([data-theme]) .btn-info:active.focus, body:not([data-theme]) .btn-info.active:hover, body:not([data-theme]) .btn-info.active:focus, body:not([data-theme]) .btn-info.active.focus, .open > body:not([data-theme]) .btn-info.dropdown-toggle:hover, .open > body:not([data-theme]) .btn-info.dropdown-toggle:focus, .open > body:not([data-theme]) .btn-info.dropdown-toggle.focus, body[data-theme="light"] .btn-info:active:hover, body[data-theme="light"] .btn-info:active:focus, body[data-theme="light"] .btn-info:active.focus, body[data-theme="light"] .btn-info.active:hover, body[data-theme="light"] .btn-info.active:focus, body[data-theme="light"] .btn-info.active.focus, .open > body[data-theme="light"] .btn-info.dropdown-toggle:hover, .open > body[data-theme="light"] .btn-info.dropdown-toggle:focus, .open > body[data-theme="light"] .btn-info.dropdown-toggle.focus {
  color: #fff;
  background-color: #269abc;
  border-color: #1b6d85;
}
/* line 41, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
body:not([data-theme]) .btn-info.disabled:hover, body:not([data-theme]) .btn-info.disabled:focus, body:not([data-theme]) .btn-info.disabled.focus, body:not([data-theme]) .btn-info[disabled]:hover, body:not([data-theme]) .btn-info[disabled]:focus, body:not([data-theme]) .btn-info[disabled].focus, fieldset[disabled] body:not([data-theme]) .btn-info:hover, fieldset[disabled] body:not([data-theme]) .btn-info:focus, fieldset[disabled] body:not([data-theme]) .btn-info.focus, body[data-theme="light"] .btn-info.disabled:hover, body[data-theme="light"] .btn-info.disabled:focus, body[data-theme="light"] .btn-info.disabled.focus, body[data-theme="light"] .btn-info[disabled]:hover, body[data-theme="light"] .btn-info[disabled]:focus, body[data-theme="light"] .btn-info[disabled].focus, fieldset[disabled] body[data-theme="light"] .btn-info:hover, fieldset[disabled] body[data-theme="light"] .btn-info:focus, fieldset[disabled] body[data-theme="light"] .btn-info.focus {
  background-color: #5bc0de;
  border-color: #46b8da;
}
/* line 49, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
body:not([data-theme]) .btn-info .badge, body[data-theme="light"] .btn-info .badge {
  color: #5bc0de;
  background-color: #fff;
}
/* line 83, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
body:not([data-theme]) .btn-warning, body[data-theme="light"] .btn-warning {
  color: #fff;
  background-color: #f0ad4e;
  border-color: #eea236;
}
/* line 11, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
body:not([data-theme]) .btn-warning:focus, body:not([data-theme]) .btn-warning.focus, body[data-theme="light"] .btn-warning:focus, body[data-theme="light"] .btn-warning.focus {
  color: #fff;
  background-color: #ec971f;
  border-color: #985f0d;
}
/* line 17, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
body:not([data-theme]) .btn-warning:hover, body[data-theme="light"] .btn-warning:hover {
  color: #fff;
  background-color: #ec971f;
  border-color: #d58512;
}
/* line 22, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
body:not([data-theme]) .btn-warning:active, body:not([data-theme]) .btn-warning.active, .open > body:not([data-theme]) .btn-warning.dropdown-toggle, body[data-theme="light"] .btn-warning:active, body[data-theme="light"] .btn-warning.active, .open > body[data-theme="light"] .btn-warning.dropdown-toggle {
  color: #fff;
  background-color: #ec971f;
  background-image: none;
  border-color: #d58512;
}
/* line 30, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
body:not([data-theme]) .btn-warning:active:hover, body:not([data-theme]) .btn-warning:active:focus, body:not([data-theme]) .btn-warning:active.focus, body:not([data-theme]) .btn-warning.active:hover, body:not([data-theme]) .btn-warning.active:focus, body:not([data-theme]) .btn-warning.active.focus, .open > body:not([data-theme]) .btn-warning.dropdown-toggle:hover, .open > body:not([data-theme]) .btn-warning.dropdown-toggle:focus, .open > body:not([data-theme]) .btn-warning.dropdown-toggle.focus, body[data-theme="light"] .btn-warning:active:hover, body[data-theme="light"] .btn-warning:active:focus, body[data-theme="light"] .btn-warning:active.focus, body[data-theme="light"] .btn-warning.active:hover, body[data-theme="light"] .btn-warning.active:focus, body[data-theme="light"] .btn-warning.active.focus, .open > body[data-theme="light"] .btn-warning.dropdown-toggle:hover, .open > body[data-theme="light"] .btn-warning.dropdown-toggle:focus, .open > body[data-theme="light"] .btn-warning.dropdown-toggle.focus {
  color: #fff;
  background-color: #d58512;
  border-color: #985f0d;
}
/* line 41, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
body:not([data-theme]) .btn-warning.disabled:hover, body:not([data-theme]) .btn-warning.disabled:focus, body:not([data-theme]) .btn-warning.disabled.focus, body:not([data-theme]) .btn-warning[disabled]:hover, body:not([data-theme]) .btn-warning[disabled]:focus, body:not([data-theme]) .btn-warning[disabled].focus, fieldset[disabled] body:not([data-theme]) .btn-warning:hover, fieldset[disabled] body:not([data-theme]) .btn-warning:focus, fieldset[disabled] body:not([data-theme]) .btn-warning.focus, body[data-theme="light"] .btn-warning.disabled:hover, body[data-theme="light"] .btn-warning.disabled:focus, body[data-theme="light"] .btn-warning.disabled.focus, body[data-theme="light"] .btn-warning[disabled]:hover, body[data-theme="light"] .btn-warning[disabled]:focus, body[data-theme="light"] .btn-warning[disabled].focus, fieldset[disabled] body[data-theme="light"] .btn-warning:hover, fieldset[disabled] body[data-theme="light"] .btn-warning:focus, fieldset[disabled] body[data-theme="light"] .btn-warning.focus {
  background-color: #f0ad4e;
  border-color: #eea236;
}
/* line 49, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
body:not([data-theme]) .btn-warning .badge, body[data-theme="light"] .btn-warning .badge {
  color: #f0ad4e;
  background-color: #fff;
}
/* line 87, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
body:not([data-theme]) .btn-danger, body[data-theme="light"] .btn-danger {
  color: #fff;
  background-color: #d9534f;
  border-color: #d43f3a;
}
/* line 11, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
body:not([data-theme]) .btn-danger:focus, body:not([data-theme]) .btn-danger.focus, body[data-theme="light"] .btn-danger:focus, body[data-theme="light"] .btn-danger.focus {
  color: #fff;
  background-color: #c9302c;
  border-color: #761c19;
}
/* line 17, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
body:not([data-theme]) .btn-danger:hover, body[data-theme="light"] .btn-danger:hover {
  color: #fff;
  background-color: #c9302c;
  border-color: #ac2925;
}
/* line 22, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
body:not([data-theme]) .btn-danger:active, body:not([data-theme]) .btn-danger.active, .open > body:not([data-theme]) .btn-danger.dropdown-toggle, body[data-theme="light"] .btn-danger:active, body[data-theme="light"] .btn-danger.active, .open > body[data-theme="light"] .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #c9302c;
  background-image: none;
  border-color: #ac2925;
}
/* line 30, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
body:not([data-theme]) .btn-danger:active:hover, body:not([data-theme]) .btn-danger:active:focus, body:not([data-theme]) .btn-danger:active.focus, body:not([data-theme]) .btn-danger.active:hover, body:not([data-theme]) .btn-danger.active:focus, body:not([data-theme]) .btn-danger.active.focus, .open > body:not([data-theme]) .btn-danger.dropdown-toggle:hover, .open > body:not([data-theme]) .btn-danger.dropdown-toggle:focus, .open > body:not([data-theme]) .btn-danger.dropdown-toggle.focus, body[data-theme="light"] .btn-danger:active:hover, body[data-theme="light"] .btn-danger:active:focus, body[data-theme="light"] .btn-danger:active.focus, body[data-theme="light"] .btn-danger.active:hover, body[data-theme="light"] .btn-danger.active:focus, body[data-theme="light"] .btn-danger.active.focus, .open > body[data-theme="light"] .btn-danger.dropdown-toggle:hover, .open > body[data-theme="light"] .btn-danger.dropdown-toggle:focus, .open > body[data-theme="light"] .btn-danger.dropdown-toggle.focus {
  color: #fff;
  background-color: #ac2925;
  border-color: #761c19;
}
/* line 41, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
body:not([data-theme]) .btn-danger.disabled:hover, body:not([data-theme]) .btn-danger.disabled:focus, body:not([data-theme]) .btn-danger.disabled.focus, body:not([data-theme]) .btn-danger[disabled]:hover, body:not([data-theme]) .btn-danger[disabled]:focus, body:not([data-theme]) .btn-danger[disabled].focus, fieldset[disabled] body:not([data-theme]) .btn-danger:hover, fieldset[disabled] body:not([data-theme]) .btn-danger:focus, fieldset[disabled] body:not([data-theme]) .btn-danger.focus, body[data-theme="light"] .btn-danger.disabled:hover, body[data-theme="light"] .btn-danger.disabled:focus, body[data-theme="light"] .btn-danger.disabled.focus, body[data-theme="light"] .btn-danger[disabled]:hover, body[data-theme="light"] .btn-danger[disabled]:focus, body[data-theme="light"] .btn-danger[disabled].focus, fieldset[disabled] body[data-theme="light"] .btn-danger:hover, fieldset[disabled] body[data-theme="light"] .btn-danger:focus, fieldset[disabled] body[data-theme="light"] .btn-danger.focus {
  background-color: #d9534f;
  border-color: #d43f3a;
}
/* line 49, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
body:not([data-theme]) .btn-danger .badge, body[data-theme="light"] .btn-danger .badge {
  color: #d9534f;
  background-color: #fff;
}
/* line 96, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
body:not([data-theme]) .btn-link, body[data-theme="light"] .btn-link {
  font-weight: 400;
  color: #337ab7;
  border-radius: 0;
}
/* line 101, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
body:not([data-theme]) .btn-link, body:not([data-theme]) .btn-link:active, body:not([data-theme]) .btn-link.active, body:not([data-theme]) .btn-link[disabled], fieldset[disabled] body:not([data-theme]) .btn-link, body[data-theme="light"] .btn-link, body[data-theme="light"] .btn-link:active, body[data-theme="light"] .btn-link.active, body[data-theme="light"] .btn-link[disabled], fieldset[disabled] body[data-theme="light"] .btn-link {
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}
/* line 109, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
body:not([data-theme]) .btn-link, body:not([data-theme]) .btn-link:hover, body:not([data-theme]) .btn-link:focus, body:not([data-theme]) .btn-link:active, body[data-theme="light"] .btn-link, body[data-theme="light"] .btn-link:hover, body[data-theme="light"] .btn-link:focus, body[data-theme="light"] .btn-link:active {
  border-color: transparent;
}
/* line 115, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
body:not([data-theme]) .btn-link:hover, body:not([data-theme]) .btn-link:focus, body[data-theme="light"] .btn-link:hover, body[data-theme="light"] .btn-link:focus {
  color: #23527c;
  text-decoration: underline;
  background-color: transparent;
}
/* line 123, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
body:not([data-theme]) .btn-link[disabled]:hover, body:not([data-theme]) .btn-link[disabled]:focus, fieldset[disabled] body:not([data-theme]) .btn-link:hover, fieldset[disabled] body:not([data-theme]) .btn-link:focus, body[data-theme="light"] .btn-link[disabled]:hover, body[data-theme="light"] .btn-link[disabled]:focus, fieldset[disabled] body[data-theme="light"] .btn-link:hover, fieldset[disabled] body[data-theme="light"] .btn-link:focus {
  color: #777777;
  text-decoration: none;
}
/* line 135, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
body:not([data-theme]) .btn-lg, body:not([data-theme]) .btn-group-lg > .btn, body:not([data-theme]) body[data-theme="light"] .btn-group-lg > .btn, body:not([data-theme]) body[data-theme="united"] .btn-group-lg > .btn, body:not([data-theme]) body[data-theme="slate"] .btn-group-lg > .btn, body[data-theme="light"] .btn-lg, body[data-theme="light"] body:not([data-theme]) .btn-group-lg > .btn, body[data-theme="light"] .btn-group-lg > .btn, body[data-theme="light"] body[data-theme="united"] .btn-group-lg > .btn, body[data-theme="light"] body[data-theme="slate"] .btn-group-lg > .btn {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}
/* line 139, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
body:not([data-theme]) .btn-sm, body:not([data-theme]) .btn-group-sm > .btn, body:not([data-theme]) body[data-theme="light"] .btn-group-sm > .btn, body:not([data-theme]) body[data-theme="united"] .btn-group-sm > .btn, body:not([data-theme]) body[data-theme="slate"] .btn-group-sm > .btn, body[data-theme="light"] .btn-sm, body[data-theme="light"] body:not([data-theme]) .btn-group-sm > .btn, body[data-theme="light"] .btn-group-sm > .btn, body[data-theme="light"] body[data-theme="united"] .btn-group-sm > .btn, body[data-theme="light"] body[data-theme="slate"] .btn-group-sm > .btn {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
/* line 143, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
body:not([data-theme]) .btn-xs, body:not([data-theme]) .btn-group-xs > .btn, body:not([data-theme]) body[data-theme="light"] .btn-group-xs > .btn, body:not([data-theme]) body[data-theme="united"] .btn-group-xs > .btn, body:not([data-theme]) body[data-theme="slate"] .btn-group-xs > .btn, body[data-theme="light"] .btn-xs, body[data-theme="light"] body:not([data-theme]) .btn-group-xs > .btn, body[data-theme="light"] .btn-group-xs > .btn, body[data-theme="light"] body[data-theme="united"] .btn-group-xs > .btn, body[data-theme="light"] body[data-theme="slate"] .btn-group-xs > .btn {
  padding: 1px 5px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
/* line 151, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
body:not([data-theme]) .btn-block, body[data-theme="light"] .btn-block {
  display: block;
  width: 100%;
}
/* line 157, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
body:not([data-theme]) .btn-block + .btn-block, body[data-theme="light"] .btn-block + .btn-block {
  margin-top: 5px;
}
/* line 165, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
body:not([data-theme]) input[type="submit"].btn-block,
body:not([data-theme]) input[type="reset"].btn-block,
body:not([data-theme]) input[type="button"].btn-block, body[data-theme="light"] input[type="submit"].btn-block,
body[data-theme="light"] input[type="reset"].btn-block,
body[data-theme="light"] input[type="button"].btn-block {
  width: 100%;
}
/* line 10, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_component-animations.scss */
body:not([data-theme]) .fade, body[data-theme="light"] .fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}
/* line 14, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_component-animations.scss */
body:not([data-theme]) .fade.in, body[data-theme="light"] .fade.in {
  opacity: 1;
}
/* line 19, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_component-animations.scss */
body:not([data-theme]) .collapse, body[data-theme="light"] .collapse {
  display: none;
}
/* line 22, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_component-animations.scss */
body:not([data-theme]) .collapse.in, body[data-theme="light"] .collapse.in {
  display: block;
}
/* line 27, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_component-animations.scss */
body:not([data-theme]) tr.collapse.in, body[data-theme="light"] tr.collapse.in {
  display: table-row;
}
/* line 29, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_component-animations.scss */
body:not([data-theme]) tbody.collapse.in, body[data-theme="light"] tbody.collapse.in {
  display: table-row-group;
}
/* line 31, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_component-animations.scss */
body:not([data-theme]) .collapsing, body[data-theme="light"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
body:not([data-theme]) .caret, body[data-theme="light"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
body:not([data-theme]) .dropup,
body:not([data-theme]) .dropdown, body[data-theme="light"] .dropup,
body[data-theme="light"] .dropdown {
  position: relative;
}
/* line 26, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
body:not([data-theme]) .dropdown-toggle:focus, body[data-theme="light"] .dropdown-toggle:focus {
  outline: 0;
}
/* line 31, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
body:not([data-theme]) .dropdown-menu, body[data-theme="light"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
body:not([data-theme]) .dropdown-menu.pull-right, body[data-theme="light"] .dropdown-menu.pull-right {
  right: 0;
  left: auto;
}
/* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
body:not([data-theme]) .dropdown-menu .divider, body[data-theme="light"] .dropdown-menu .divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}
/* line 65, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
body:not([data-theme]) .dropdown-menu > li > a, body[data-theme="light"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
body:not([data-theme]) .dropdown-menu > li > a:hover, body:not([data-theme]) .dropdown-menu > li > a:focus, body[data-theme="light"] .dropdown-menu > li > a:hover, body[data-theme="light"] .dropdown-menu > li > a:focus {
  color: #262626;
  text-decoration: none;
  background-color: #f5f5f5;
}
/* line 85, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
body:not([data-theme]) .dropdown-menu > .active > a, body:not([data-theme]) .dropdown-menu > .active > a:hover, body:not([data-theme]) .dropdown-menu > .active > a:focus, body[data-theme="light"] .dropdown-menu > .active > a, body[data-theme="light"] .dropdown-menu > .active > a:hover, body[data-theme="light"] .dropdown-menu > .active > a:focus {
  color: #fff;
  text-decoration: none;
  background-color: #337ab7;
  outline: 0;
}
/* line 100, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
body:not([data-theme]) .dropdown-menu > .disabled > a, body:not([data-theme]) .dropdown-menu > .disabled > a:hover, body:not([data-theme]) .dropdown-menu > .disabled > a:focus, body[data-theme="light"] .dropdown-menu > .disabled > a, body[data-theme="light"] .dropdown-menu > .disabled > a:hover, body[data-theme="light"] .dropdown-menu > .disabled > a:focus {
  color: #777777;
}
/* line 107, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
body:not([data-theme]) .dropdown-menu > .disabled > a:hover, body:not([data-theme]) .dropdown-menu > .disabled > a:focus, body[data-theme="light"] .dropdown-menu > .disabled > a:hover, body[data-theme="light"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
body:not([data-theme]) .open > .dropdown-menu, body[data-theme="light"] .open > .dropdown-menu {
  display: block;
}
/* line 125, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
body:not([data-theme]) .open > a, body[data-theme="light"] .open > a {
  outline: 0;
}
/* line 134, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
body:not([data-theme]) .dropdown-menu-right, body[data-theme="light"] .dropdown-menu-right {
  right: 0;
  left: auto;
}
/* line 144, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
body:not([data-theme]) .dropdown-menu-left, body[data-theme="light"] .dropdown-menu-left {
  right: auto;
  left: 0;
}
/* line 150, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
body:not([data-theme]) .dropdown-header, body[data-theme="light"] .dropdown-header {
  display: block;
  padding: 3px 20px;
  font-size: 12px;
  line-height: 1.428571429;
  color: #777777;
  white-space: nowrap;
}
/* line 160, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
body:not([data-theme]) .dropdown-backdrop, body[data-theme="light"] .dropdown-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 990;
}
/* line 170, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
body:not([data-theme]) .pull-right > .dropdown-menu, body[data-theme="light"] .pull-right > .dropdown-menu {
  right: 0;
  left: auto;
}
/* line 183, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
body:not([data-theme]) .dropup .caret,
body:not([data-theme]) .navbar-fixed-bottom .dropdown .caret, body[data-theme="light"] .dropup .caret,
body[data-theme="light"] .navbar-fixed-bottom .dropdown .caret {
  content: "";
  border-top: 0;
  border-bottom: 4px dashed;
  border-bottom: 4px solid \9 ;
}
/* line 190, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
body:not([data-theme]) .dropup .dropdown-menu,
body:not([data-theme]) .navbar-fixed-bottom .dropdown .dropdown-menu, body[data-theme="light"] .dropup .dropdown-menu,
body[data-theme="light"] .navbar-fixed-bottom .dropdown .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 2px;
}
@media (min-width: 768px) {
  /* line 204, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
  body:not([data-theme]) .navbar-right .dropdown-menu, body[data-theme="light"] .navbar-right .dropdown-menu {
    right: 0;
    left: auto;
  }
  /* line 209, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
  body:not([data-theme]) .navbar-right .dropdown-menu-left, body[data-theme="light"] .navbar-right .dropdown-menu-left {
    left: 0;
    right: auto;
  }
}
/* line 6, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
body:not([data-theme]) .btn-group,
body:not([data-theme]) .btn-group-vertical, body[data-theme="light"] .btn-group,
body[data-theme="light"] .btn-group-vertical {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
/* line 11, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
body:not([data-theme]) .btn-group > .btn,
body:not([data-theme]) .btn-group-vertical > .btn, body[data-theme="light"] .btn-group > .btn,
body[data-theme="light"] .btn-group-vertical > .btn {
  position: relative;
  float: left;
}
/* line 15, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
body:not([data-theme]) .btn-group > .btn:hover, body:not([data-theme]) .btn-group > .btn:focus, body:not([data-theme]) .btn-group > .btn:active, body:not([data-theme]) .btn-group > .btn.active,
body:not([data-theme]) .btn-group-vertical > .btn:hover,
body:not([data-theme]) .btn-group-vertical > .btn:focus,
body:not([data-theme]) .btn-group-vertical > .btn:active,
body:not([data-theme]) .btn-group-vertical > .btn.active, body[data-theme="light"] .btn-group > .btn:hover, body[data-theme="light"] .btn-group > .btn:focus, body[data-theme="light"] .btn-group > .btn:active, body[data-theme="light"] .btn-group > .btn.active,
body[data-theme="light"] .btn-group-vertical > .btn:hover,
body[data-theme="light"] .btn-group-vertical > .btn:focus,
body[data-theme="light"] .btn-group-vertical > .btn:active,
body[data-theme="light"] .btn-group-vertical > .btn.active {
  z-index: 2;
}
/* line 26, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
body:not([data-theme]) .btn-group .btn + .btn,
body:not([data-theme]) .btn-group .btn + .btn-group,
body:not([data-theme]) .btn-group .btn-group + .btn,
body:not([data-theme]) .btn-group .btn-group + .btn-group, body[data-theme="light"] .btn-group .btn + .btn,
body[data-theme="light"] .btn-group .btn + .btn-group,
body[data-theme="light"] .btn-group .btn-group + .btn,
body[data-theme="light"] .btn-group .btn-group + .btn-group {
  margin-left: -1px;
}
/* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
body:not([data-theme]) .btn-toolbar, body[data-theme="light"] .btn-toolbar {
  margin-left: -5px;
}
/* line 14, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
body:not([data-theme]) .btn-toolbar:before, body:not([data-theme]) .btn-toolbar:after, body[data-theme="light"] .btn-toolbar:before, body[data-theme="light"] .btn-toolbar:after {
  display: table;
  content: " ";
}
/* line 19, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
body:not([data-theme]) .btn-toolbar:after, body[data-theme="light"] .btn-toolbar:after {
  clear: both;
}
/* line 39, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
body:not([data-theme]) .btn-toolbar .btn,
body:not([data-theme]) .btn-toolbar .btn-group,
body:not([data-theme]) .btn-toolbar .input-group, body[data-theme="light"] .btn-toolbar .btn,
body[data-theme="light"] .btn-toolbar .btn-group,
body[data-theme="light"] .btn-toolbar .input-group {
  float: left;
}
/* line 44, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
body:not([data-theme]) .btn-toolbar > .btn,
body:not([data-theme]) .btn-toolbar > .btn-group,
body:not([data-theme]) .btn-toolbar > .input-group, body[data-theme="light"] .btn-toolbar > .btn,
body[data-theme="light"] .btn-toolbar > .btn-group,
body[data-theme="light"] .btn-toolbar > .input-group {
  margin-left: 5px;
}
/* line 51, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
body:not([data-theme]) .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle), body[data-theme="light"] .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  border-radius: 0;
}
/* line 56, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
body:not([data-theme]) .btn-group > .btn:first-child, body[data-theme="light"] .btn-group > .btn:first-child {
  margin-left: 0;
}
/* line 58, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
body:not([data-theme]) .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle), body[data-theme="light"] .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
/* line 63, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
body:not([data-theme]) .btn-group > .btn:last-child:not(:first-child),
body:not([data-theme]) .btn-group > .dropdown-toggle:not(:first-child), body[data-theme="light"] .btn-group > .btn:last-child:not(:first-child),
body[data-theme="light"] .btn-group > .dropdown-toggle:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
/* line 69, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
body:not([data-theme]) .btn-group > .btn-group, body[data-theme="light"] .btn-group > .btn-group {
  float: left;
}
/* line 72, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
body:not([data-theme]) .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn, body[data-theme="light"] .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}
/* line 76, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
body:not([data-theme]) .btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,
body:not([data-theme]) .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle, body[data-theme="light"] .btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,
body[data-theme="light"] .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
/* line 81, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
body:not([data-theme]) .btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child, body[data-theme="light"] .btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
/* line 86, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
body:not([data-theme]) .btn-group .dropdown-toggle:active,
body:not([data-theme]) .btn-group.open .dropdown-toggle, body[data-theme="light"] .btn-group .dropdown-toggle:active,
body[data-theme="light"] .btn-group.open .dropdown-toggle {
  outline: 0;
}
/* line 105, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
body:not([data-theme]) .btn-group > .btn + .dropdown-toggle, body[data-theme="light"] .btn-group > .btn + .dropdown-toggle {
  padding-right: 8px;
  padding-left: 8px;
}
/* line 109, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
body:not([data-theme]) .btn-group > .btn-lg + .dropdown-toggle, body:not([data-theme]) .btn-group-lg.btn-group > .btn + .dropdown-toggle, body[data-theme="light"] .btn-group > .btn-lg + .dropdown-toggle, body[data-theme="light"] .btn-group-lg.btn-group > .btn + .dropdown-toggle {
  padding-right: 12px;
  padding-left: 12px;
}
/* line 116, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
body:not([data-theme]) .btn-group.open .dropdown-toggle, body[data-theme="light"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
body:not([data-theme]) .btn-group.open .dropdown-toggle.btn-link, body[data-theme="light"] .btn-group.open .dropdown-toggle.btn-link {
  -webkit-box-shadow: none;
  box-shadow: none;
}
/* line 127, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
body:not([data-theme]) .btn .caret, body[data-theme="light"] .btn .caret {
  margin-left: 0;
}
/* line 131, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
body:not([data-theme]) .btn-lg .caret, body:not([data-theme]) .btn-group-lg > .btn .caret, body[data-theme="light"] .btn-lg .caret, body[data-theme="light"] .btn-group-lg > .btn .caret {
  border-width: 5px 5px 0;
  border-bottom-width: 0;
}
/* line 136, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
body:not([data-theme]) .dropup .btn-lg .caret, body:not([data-theme]) .dropup .btn-group-lg > .btn .caret, body[data-theme="light"] .dropup .btn-lg .caret, body[data-theme="light"] .dropup .btn-group-lg > .btn .caret {
  border-width: 0 5px 5px;
}
/* line 145, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
body:not([data-theme]) .btn-group-vertical > .btn,
body:not([data-theme]) .btn-group-vertical > .btn-group,
body:not([data-theme]) .btn-group-vertical > .btn-group > .btn, body[data-theme="light"] .btn-group-vertical > .btn,
body[data-theme="light"] .btn-group-vertical > .btn-group,
body[data-theme="light"] .btn-group-vertical > .btn-group > .btn {
  display: block;
  float: none;
  width: 100%;
  max-width: 100%;
}
/* line 14, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
body:not([data-theme]) .btn-group-vertical > .btn-group:before, body:not([data-theme]) .btn-group-vertical > .btn-group:after, body[data-theme="light"] .btn-group-vertical > .btn-group:before, body[data-theme="light"] .btn-group-vertical > .btn-group:after {
  display: table;
  content: " ";
}
/* line 19, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
body:not([data-theme]) .btn-group-vertical > .btn-group:after, body[data-theme="light"] .btn-group-vertical > .btn-group:after {
  clear: both;
}
/* line 157, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
body:not([data-theme]) .btn-group-vertical > .btn-group > .btn, body[data-theme="light"] .btn-group-vertical > .btn-group > .btn {
  float: none;
}
/* line 162, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
body:not([data-theme]) .btn-group-vertical > .btn + .btn,
body:not([data-theme]) .btn-group-vertical > .btn + .btn-group,
body:not([data-theme]) .btn-group-vertical > .btn-group + .btn,
body:not([data-theme]) .btn-group-vertical > .btn-group + .btn-group, body[data-theme="light"] .btn-group-vertical > .btn + .btn,
body[data-theme="light"] .btn-group-vertical > .btn + .btn-group,
body[data-theme="light"] .btn-group-vertical > .btn-group + .btn,
body[data-theme="light"] .btn-group-vertical > .btn-group + .btn-group {
  margin-top: -1px;
  margin-left: 0;
}
/* line 172, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
body:not([data-theme]) .btn-group-vertical > .btn:not(:first-child):not(:last-child), body[data-theme="light"] .btn-group-vertical > .btn:not(:first-child):not(:last-child) {
  border-radius: 0;
}
/* line 175, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
body:not([data-theme]) .btn-group-vertical > .btn:first-child:not(:last-child), body[data-theme="light"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
body:not([data-theme]) .btn-group-vertical > .btn:last-child:not(:first-child), body[data-theme="light"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
body:not([data-theme]) .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn, body[data-theme="light"] .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}
/* line 188, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
body:not([data-theme]) .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
body:not([data-theme]) .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle, body[data-theme="light"] .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
body[data-theme="light"] .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
/* line 193, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
body:not([data-theme]) .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child, body[data-theme="light"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
body:not([data-theme]) .btn-group-justified, body[data-theme="light"] .btn-group-justified {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
}
/* line 206, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
body:not([data-theme]) .btn-group-justified > .btn,
body:not([data-theme]) .btn-group-justified > .btn-group, body[data-theme="light"] .btn-group-justified > .btn,
body[data-theme="light"] .btn-group-justified > .btn-group {
  display: table-cell;
  float: none;
  width: 1%;
}
/* line 212, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
body:not([data-theme]) .btn-group-justified > .btn-group .btn, body[data-theme="light"] .btn-group-justified > .btn-group .btn {
  width: 100%;
}
/* line 216, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
body:not([data-theme]) .btn-group-justified > .btn-group .dropdown-menu, body[data-theme="light"] .btn-group-justified > .btn-group .dropdown-menu {
  left: auto;
}
/* line 237, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
body:not([data-theme]) [data-toggle="buttons"] > .btn input[type="radio"],
body:not([data-theme]) [data-toggle="buttons"] > .btn input[type="checkbox"],
body:not([data-theme]) [data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
body:not([data-theme]) [data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"], body[data-theme="light"] [data-toggle="buttons"] > .btn input[type="radio"],
body[data-theme="light"] [data-toggle="buttons"] > .btn input[type="checkbox"],
body[data-theme="light"] [data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
body[data-theme="light"] [data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}
/* line 7, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
body:not([data-theme]) .input-group, body[data-theme="light"] .input-group {
  position: relative;
  display: table;
  border-collapse: separate;
}
/* line 13, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
body:not([data-theme]) .input-group[class*="col-"], body[data-theme="light"] .input-group[class*="col-"] {
  float: none;
  padding-right: 0;
  padding-left: 0;
}
/* line 19, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
body:not([data-theme]) .input-group .form-control, body[data-theme="light"] .input-group .form-control {
  position: relative;
  z-index: 2;
  float: left;
  width: 100%;
  margin-bottom: 0;
}
/* line 33, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
body:not([data-theme]) .input-group .form-control:focus, body[data-theme="light"] .input-group .form-control:focus {
  z-index: 3;
}
/* line 58, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
body:not([data-theme]) .input-group-addon,
body:not([data-theme]) .input-group-btn,
body:not([data-theme]) .input-group .form-control, body[data-theme="light"] .input-group-addon,
body[data-theme="light"] .input-group-btn,
body[data-theme="light"] .input-group .form-control {
  display: table-cell;
}
/* line 63, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
body:not([data-theme]) .input-group-addon:not(:first-child):not(:last-child),
body:not([data-theme]) .input-group-btn:not(:first-child):not(:last-child),
body:not([data-theme]) .input-group .form-control:not(:first-child):not(:last-child), body[data-theme="light"] .input-group-addon:not(:first-child):not(:last-child),
body[data-theme="light"] .input-group-btn:not(:first-child):not(:last-child),
body[data-theme="light"] .input-group .form-control:not(:first-child):not(:last-child) {
  border-radius: 0;
}
/* line 68, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
body:not([data-theme]) .input-group-addon,
body:not([data-theme]) .input-group-btn, body[data-theme="light"] .input-group-addon,
body[data-theme="light"] .input-group-btn {
  width: 1%;
  white-space: nowrap;
  vertical-align: middle;
}
/* line 77, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
body:not([data-theme]) .input-group-addon, body[data-theme="light"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
body:not([data-theme]) .input-group-addon.input-sm,
body:not([data-theme]) .input-group-sm > .input-group-addon,
body:not([data-theme]) .input-group-sm > .input-group-btn > .input-group-addon.btn,
body:not([data-theme]) body[data-theme="light"] .input-group-sm > .input-group-addon,
body:not([data-theme]) body[data-theme="united"] .input-group-sm > .input-group-addon,
body:not([data-theme]) body[data-theme="slate"] .input-group-sm > .input-group-addon, body[data-theme="light"] .input-group-addon.input-sm,
body[data-theme="light"] body:not([data-theme]) .input-group-sm > .input-group-addon,
body[data-theme="light"] .input-group-sm > .input-group-addon,
body[data-theme="light"] .input-group-sm > .input-group-btn > .input-group-addon.btn,
body[data-theme="light"] body[data-theme="united"] .input-group-sm > .input-group-addon,
body[data-theme="light"] body[data-theme="slate"] .input-group-sm > .input-group-addon {
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 3px;
}
/* line 94, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
body:not([data-theme]) .input-group-addon.input-lg,
body:not([data-theme]) .input-group-lg > .input-group-addon,
body:not([data-theme]) .input-group-lg > .input-group-btn > .input-group-addon.btn,
body:not([data-theme]) body[data-theme="light"] .input-group-lg > .input-group-addon,
body:not([data-theme]) body[data-theme="united"] .input-group-lg > .input-group-addon,
body:not([data-theme]) body[data-theme="slate"] .input-group-lg > .input-group-addon, body[data-theme="light"] .input-group-addon.input-lg,
body[data-theme="light"] body:not([data-theme]) .input-group-lg > .input-group-addon,
body[data-theme="light"] .input-group-lg > .input-group-addon,
body[data-theme="light"] .input-group-lg > .input-group-btn > .input-group-addon.btn,
body[data-theme="light"] body[data-theme="united"] .input-group-lg > .input-group-addon,
body[data-theme="light"] body[data-theme="slate"] .input-group-lg > .input-group-addon {
  padding: 10px 16px;
  font-size: 18px;
  border-radius: 6px;
}
/* line 101, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
body:not([data-theme]) .input-group-addon input[type="radio"],
body:not([data-theme]) .input-group-addon input[type="checkbox"], body[data-theme="light"] .input-group-addon input[type="radio"],
body[data-theme="light"] .input-group-addon input[type="checkbox"] {
  margin-top: 0;
}
/* line 108, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
body:not([data-theme]) .input-group .form-control:first-child,
body:not([data-theme]) .input-group-addon:first-child,
body:not([data-theme]) .input-group-btn:first-child > .btn,
body:not([data-theme]) .input-group-btn:first-child > .btn-group > .btn,
body:not([data-theme]) .input-group-btn:first-child > .dropdown-toggle,
body:not([data-theme]) .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
body:not([data-theme]) .input-group-btn:last-child > .btn-group:not(:last-child) > .btn, body[data-theme="light"] .input-group .form-control:first-child,
body[data-theme="light"] .input-group-addon:first-child,
body[data-theme="light"] .input-group-btn:first-child > .btn,
body[data-theme="light"] .input-group-btn:first-child > .btn-group > .btn,
body[data-theme="light"] .input-group-btn:first-child > .dropdown-toggle,
body[data-theme="light"] .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
body[data-theme="light"] .input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
/* line 117, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
body:not([data-theme]) .input-group-addon:first-child, body[data-theme="light"] .input-group-addon:first-child {
  border-right: 0;
}
/* line 120, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
body:not([data-theme]) .input-group .form-control:last-child,
body:not([data-theme]) .input-group-addon:last-child,
body:not([data-theme]) .input-group-btn:last-child > .btn,
body:not([data-theme]) .input-group-btn:last-child > .btn-group > .btn,
body:not([data-theme]) .input-group-btn:last-child > .dropdown-toggle,
body:not([data-theme]) .input-group-btn:first-child > .btn:not(:first-child),
body:not([data-theme]) .input-group-btn:first-child > .btn-group:not(:first-child) > .btn, body[data-theme="light"] .input-group .form-control:last-child,
body[data-theme="light"] .input-group-addon:last-child,
body[data-theme="light"] .input-group-btn:last-child > .btn,
body[data-theme="light"] .input-group-btn:last-child > .btn-group > .btn,
body[data-theme="light"] .input-group-btn:last-child > .dropdown-toggle,
body[data-theme="light"] .input-group-btn:first-child > .btn:not(:first-child),
body[data-theme="light"] .input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
/* line 129, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
body:not([data-theme]) .input-group-addon:last-child, body[data-theme="light"] .input-group-addon:last-child {
  border-left: 0;
}
/* line 135, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
body:not([data-theme]) .input-group-btn, body[data-theme="light"] .input-group-btn {
  position: relative;
  font-size: 0;
  white-space: nowrap;
}
/* line 144, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
body:not([data-theme]) .input-group-btn > .btn, body[data-theme="light"] .input-group-btn > .btn {
  position: relative;
}
/* line 146, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
body:not([data-theme]) .input-group-btn > .btn + .btn, body[data-theme="light"] .input-group-btn > .btn + .btn {
  margin-left: -1px;
}
/* line 150, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
body:not([data-theme]) .input-group-btn > .btn:hover, body:not([data-theme]) .input-group-btn > .btn:focus, body:not([data-theme]) .input-group-btn > .btn:active, body[data-theme="light"] .input-group-btn > .btn:hover, body[data-theme="light"] .input-group-btn > .btn:focus, body[data-theme="light"] .input-group-btn > .btn:active {
  z-index: 2;
}
/* line 159, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
body:not([data-theme]) .input-group-btn:first-child > .btn,
body:not([data-theme]) .input-group-btn:first-child > .btn-group, body[data-theme="light"] .input-group-btn:first-child > .btn,
body[data-theme="light"] .input-group-btn:first-child > .btn-group {
  margin-right: -1px;
}
/* line 165, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
body:not([data-theme]) .input-group-btn:last-child > .btn,
body:not([data-theme]) .input-group-btn:last-child > .btn-group, body[data-theme="light"] .input-group-btn:last-child > .btn,
body[data-theme="light"] .input-group-btn:last-child > .btn-group {
  z-index: 2;
  margin-left: -1px;
}
/* line 9, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
body:not([data-theme]) .nav, body[data-theme="light"] .nav {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
/* line 14, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
body:not([data-theme]) .nav:before, body:not([data-theme]) .nav:after, body[data-theme="light"] .nav:before, body[data-theme="light"] .nav:after {
  display: table;
  content: " ";
}
/* line 19, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
body:not([data-theme]) .nav:after, body[data-theme="light"] .nav:after {
  clear: both;
}
/* line 15, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
body:not([data-theme]) .nav > li, body[data-theme="light"] .nav > li {
  position: relative;
  display: block;
}
/* line 19, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
body:not([data-theme]) .nav > li > a, body[data-theme="light"] .nav > li > a {
  position: relative;
  display: block;
  padding: 10px 15px;
}
/* line 23, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
body:not([data-theme]) .nav > li > a:hover, body:not([data-theme]) .nav > li > a:focus, body[data-theme="light"] .nav > li > a:hover, body[data-theme="light"] .nav > li > a:focus {
  text-decoration: none;
  background-color: #eeeeee;
}
/* line 31, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
body:not([data-theme]) .nav > li.disabled > a, body[data-theme="light"] .nav > li.disabled > a {
  color: #777777;
}
/* line 34, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
body:not([data-theme]) .nav > li.disabled > a:hover, body:not([data-theme]) .nav > li.disabled > a:focus, body[data-theme="light"] .nav > li.disabled > a:hover, body[data-theme="light"] .nav > li.disabled > a:focus {
  color: #777777;
  text-decoration: none;
  cursor: not-allowed;
  background-color: transparent;
}
/* line 46, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
body:not([data-theme]) .nav .open > a, body:not([data-theme]) .nav .open > a:hover, body:not([data-theme]) .nav .open > a:focus, body[data-theme="light"] .nav .open > a, body[data-theme="light"] .nav .open > a:hover, body[data-theme="light"] .nav .open > a:focus {
  background-color: #eeeeee;
  border-color: #337ab7;
}
/* line 59, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
body:not([data-theme]) .nav .nav-divider, body[data-theme="light"] .nav .nav-divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}
/* line 66, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
body:not([data-theme]) .nav > li > a > img, body[data-theme="light"] .nav > li > a > img {
  max-width: none;
}
/* line 76, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
body:not([data-theme]) .nav-tabs, body[data-theme="light"] .nav-tabs {
  border-bottom: 1px solid #ddd;
}
/* line 78, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
body:not([data-theme]) .nav-tabs > li, body[data-theme="light"] .nav-tabs > li {
  float: left;
  margin-bottom: -1px;
}
/* line 84, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
body:not([data-theme]) .nav-tabs > li > a, body[data-theme="light"] .nav-tabs > li > a {
  margin-right: 2px;
  line-height: 1.428571429;
  border: 1px solid transparent;
  border-radius: 4px 4px 0 0;
}
/* line 89, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
body:not([data-theme]) .nav-tabs > li > a:hover, body[data-theme="light"] .nav-tabs > li > a:hover {
  border-color: #eeeeee #eeeeee #ddd;
}
/* line 96, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
body:not([data-theme]) .nav-tabs > li.active > a, body:not([data-theme]) .nav-tabs > li.active > a:hover, body:not([data-theme]) .nav-tabs > li.active > a:focus, body[data-theme="light"] .nav-tabs > li.active > a, body[data-theme="light"] .nav-tabs > li.active > a:hover, body[data-theme="light"] .nav-tabs > li.active > a:focus {
  color: #555555;
  cursor: default;
  background-color: #fff;
  border: 1px solid #ddd;
  border-bottom-color: transparent;
}
/* line 118, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
body:not([data-theme]) .nav-pills > li, body[data-theme="light"] .nav-pills > li {
  float: left;
}
/* line 122, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
body:not([data-theme]) .nav-pills > li > a, body[data-theme="light"] .nav-pills > li > a {
  border-radius: 4px;
}
/* line 125, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
body:not([data-theme]) .nav-pills > li + li, body[data-theme="light"] .nav-pills > li + li {
  margin-left: 2px;
}
/* line 131, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
body:not([data-theme]) .nav-pills > li.active > a, body:not([data-theme]) .nav-pills > li.active > a:hover, body:not([data-theme]) .nav-pills > li.active > a:focus, body[data-theme="light"] .nav-pills > li.active > a, body[data-theme="light"] .nav-pills > li.active > a:hover, body[data-theme="light"] .nav-pills > li.active > a:focus {
  color: #fff;
  background-color: #337ab7;
}
/* line 144, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
body:not([data-theme]) .nav-stacked > li, body[data-theme="light"] .nav-stacked > li {
  float: none;
}
/* line 146, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
body:not([data-theme]) .nav-stacked > li + li, body[data-theme="light"] .nav-stacked > li + li {
  margin-top: 2px;
  margin-left: 0;
}
/* line 160, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
body:not([data-theme]) .nav-justified, body:not([data-theme]) .nav-tabs.nav-justified, body[data-theme="light"] .nav-justified, body[data-theme="light"] .nav-tabs.nav-justified {
  width: 100%;
}
/* line 163, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
body:not([data-theme]) .nav-justified > li, body:not([data-theme]) .nav-tabs.nav-justified > li, body:not([data-theme]) body[data-theme="light"] .nav-tabs.nav-justified > li, body:not([data-theme]) body[data-theme="united"] .nav-tabs.nav-justified > li, body:not([data-theme]) body[data-theme="slate"] .nav-tabs.nav-justified > li, body[data-theme="light"] .nav-justified > li, body[data-theme="light"] body:not([data-theme]) .nav-tabs.nav-justified > li, body[data-theme="light"] .nav-tabs.nav-justified > li, body[data-theme="light"] body[data-theme="united"] .nav-tabs.nav-justified > li, body[data-theme="light"] body[data-theme="slate"] .nav-tabs.nav-justified > li {
  float: none;
}
/* line 165, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
body:not([data-theme]) .nav-justified > li > a, body:not([data-theme]) .nav-tabs.nav-justified > li > a, body[data-theme="light"] .nav-justified > li > a, body[data-theme="light"] .nav-tabs.nav-justified > li > a {
  margin-bottom: 5px;
  text-align: center;
}
/* line 171, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
body:not([data-theme]) .nav-justified > .dropdown .dropdown-menu, body[data-theme="light"] .nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}
@media (min-width: 768px) {
  /* line 177, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
  body:not([data-theme]) .nav-justified > li, body:not([data-theme]) .nav-tabs.nav-justified > li, body:not([data-theme]) body[data-theme="light"] .nav-tabs.nav-justified > li, body:not([data-theme]) body[data-theme="united"] .nav-tabs.nav-justified > li, body:not([data-theme]) body[data-theme="slate"] .nav-tabs.nav-justified > li, body[data-theme="light"] .nav-justified > li, body[data-theme="light"] body:not([data-theme]) .nav-tabs.nav-justified > li, body[data-theme="light"] .nav-tabs.nav-justified > li, body[data-theme="light"] body[data-theme="united"] .nav-tabs.nav-justified > li, body[data-theme="light"] body[data-theme="slate"] .nav-tabs.nav-justified > li {
    display: table-cell;
    width: 1%;
  }
  /* line 180, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
  body:not([data-theme]) .nav-justified > li > a, body:not([data-theme]) .nav-tabs.nav-justified > li > a, body[data-theme="light"] .nav-justified > li > a, body[data-theme="light"] .nav-tabs.nav-justified > li > a {
    margin-bottom: 0;
  }
}
/* line 190, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
body:not([data-theme]) .nav-tabs-justified, body:not([data-theme]) .nav-tabs.nav-justified, body[data-theme="light"] .nav-tabs-justified, body[data-theme="light"] .nav-tabs.nav-justified {
  border-bottom: 0;
}
/* line 193, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
body:not([data-theme]) .nav-tabs-justified > li > a, body:not([data-theme]) .nav-tabs.nav-justified > li > a, body[data-theme="light"] .nav-tabs-justified > li > a, body[data-theme="light"] .nav-tabs.nav-justified > li > a {
  margin-right: 0;
  border-radius: 4px;
}
/* line 199, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
body:not([data-theme]) .nav-tabs-justified > .active > a, body:not([data-theme]) .nav-tabs.nav-justified > .active > a,
body:not([data-theme]) .nav-tabs-justified > .active > a:hover,
body:not([data-theme]) .nav-tabs.nav-justified > .active > a:hover,
body:not([data-theme]) .nav-tabs-justified > .active > a:focus,
body:not([data-theme]) .nav-tabs.nav-justified > .active > a:focus, body[data-theme="light"] .nav-tabs-justified > .active > a, body[data-theme="light"] .nav-tabs.nav-justified > .active > a,
body[data-theme="light"] .nav-tabs-justified > .active > a:hover,
body[data-theme="light"] .nav-tabs.nav-justified > .active > a:hover,
body[data-theme="light"] .nav-tabs-justified > .active > a:focus,
body[data-theme="light"] .nav-tabs.nav-justified > .active > a:focus {
  border: 1px solid #ddd;
}
@media (min-width: 768px) {
  /* line 206, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
  body:not([data-theme]) .nav-tabs-justified > li > a, body:not([data-theme]) .nav-tabs.nav-justified > li > a, body[data-theme="light"] .nav-tabs-justified > li > a, body[data-theme="light"] .nav-tabs.nav-justified > li > a {
    border-bottom: 1px solid #ddd;
    border-radius: 4px 4px 0 0;
  }
  /* line 210, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
  body:not([data-theme]) .nav-tabs-justified > .active > a, body:not([data-theme]) .nav-tabs.nav-justified > .active > a,
  body:not([data-theme]) .nav-tabs-justified > .active > a:hover,
  body:not([data-theme]) .nav-tabs.nav-justified > .active > a:hover,
  body:not([data-theme]) .nav-tabs-justified > .active > a:focus,
  body:not([data-theme]) .nav-tabs.nav-justified > .active > a:focus, body[data-theme="light"] .nav-tabs-justified > .active > a, body[data-theme="light"] .nav-tabs.nav-justified > .active > a,
  body[data-theme="light"] .nav-tabs-justified > .active > a:hover,
  body[data-theme="light"] .nav-tabs.nav-justified > .active > a:hover,
  body[data-theme="light"] .nav-tabs-justified > .active > a:focus,
  body[data-theme="light"] .nav-tabs.nav-justified > .active > a:focus {
    border-bottom-color: #fff;
  }
}
/* line 224, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
body:not([data-theme]) .tab-content > .tab-pane, body[data-theme="light"] .tab-content > .tab-pane {
  display: none;
}
/* line 227, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
body:not([data-theme]) .tab-content > .active, body[data-theme="light"] .tab-content > .active {
  display: block;
}
/* line 237, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
body:not([data-theme]) .nav-tabs .dropdown-menu, body[data-theme="light"] .nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
/* line 11, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body:not([data-theme]) .navbar, body[data-theme="light"] .navbar {
  position: relative;
  min-height: 50px;
  margin-bottom: 20px;
  border: 1px solid transparent;
}
/* line 14, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
body:not([data-theme]) .navbar:before, body:not([data-theme]) .navbar:after, body[data-theme="light"] .navbar:before, body[data-theme="light"] .navbar:after {
  display: table;
  content: " ";
}
/* line 19, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
body:not([data-theme]) .navbar:after, body[data-theme="light"] .navbar:after {
  clear: both;
}
@media (min-width: 768px) {
  /* line 11, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  body:not([data-theme]) .navbar, body[data-theme="light"] .navbar {
    border-radius: 4px;
  }
}
/* line 14, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
body:not([data-theme]) .navbar-header:before, body:not([data-theme]) .navbar-header:after, body[data-theme="light"] .navbar-header:before, body[data-theme="light"] .navbar-header:after {
  display: table;
  content: " ";
}
/* line 19, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
body:not([data-theme]) .navbar-header:after, body[data-theme="light"] .navbar-header:after {
  clear: both;
}
@media (min-width: 768px) {
  /* line 31, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  body:not([data-theme]) .navbar-header, body[data-theme="light"] .navbar-header {
    float: left;
  }
}
/* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body:not([data-theme]) .navbar-collapse, body[data-theme="light"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
body:not([data-theme]) .navbar-collapse:before, body:not([data-theme]) .navbar-collapse:after, body[data-theme="light"] .navbar-collapse:before, body[data-theme="light"] .navbar-collapse:after {
  display: table;
  content: " ";
}
/* line 19, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
body:not([data-theme]) .navbar-collapse:after, body[data-theme="light"] .navbar-collapse:after {
  clear: both;
}
/* line 59, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body:not([data-theme]) .navbar-collapse.in, body[data-theme="light"] .navbar-collapse.in {
  overflow-y: auto;
}
@media (min-width: 768px) {
  /* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  body:not([data-theme]) .navbar-collapse, body[data-theme="light"] .navbar-collapse {
    width: auto;
    border-top: 0;
    box-shadow: none;
  }
  /* line 68, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  body:not([data-theme]) .navbar-collapse.collapse, body[data-theme="light"] .navbar-collapse.collapse {
    display: block !important;
    height: auto !important;
    padding-bottom: 0;
    overflow: visible !important;
  }
  /* line 75, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  body:not([data-theme]) .navbar-collapse.in, body[data-theme="light"] .navbar-collapse.in {
    overflow-y: visible;
  }
  /* line 81, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-fixed-top body:not([data-theme]) .navbar-collapse, .navbar-static-top body:not([data-theme]) .navbar-collapse, .navbar-fixed-bottom body:not([data-theme]) .navbar-collapse, .navbar-fixed-top body[data-theme="light"] .navbar-collapse, .navbar-static-top body[data-theme="light"] .navbar-collapse, .navbar-fixed-bottom body[data-theme="light"] .navbar-collapse {
    padding-right: 0;
    padding-left: 0;
  }
}
/* line 90, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body:not([data-theme]) .navbar-fixed-top,
body:not([data-theme]) .navbar-fixed-bottom, body[data-theme="light"] .navbar-fixed-top,
body[data-theme="light"] .navbar-fixed-bottom {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1030;
}
/* line 92, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body:not([data-theme]) .navbar-fixed-top .navbar-collapse,
body:not([data-theme]) .navbar-fixed-bottom .navbar-collapse, body[data-theme="light"] .navbar-fixed-top .navbar-collapse,
body[data-theme="light"] .navbar-fixed-bottom .navbar-collapse {
  max-height: 340px;
}
@media (max-device-width: 480px) and (orientation: landscape) {
  /* line 92, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  body:not([data-theme]) .navbar-fixed-top .navbar-collapse,
  body:not([data-theme]) .navbar-fixed-bottom .navbar-collapse, body[data-theme="light"] .navbar-fixed-top .navbar-collapse,
  body[data-theme="light"] .navbar-fixed-bottom .navbar-collapse {
    max-height: 200px;
  }
}
@media (min-width: 768px) {
  /* line 90, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  body:not([data-theme]) .navbar-fixed-top,
  body:not([data-theme]) .navbar-fixed-bottom, body[data-theme="light"] .navbar-fixed-top,
  body[data-theme="light"] .navbar-fixed-bottom {
    border-radius: 0;
  }
}
/* line 112, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body:not([data-theme]) .navbar-fixed-top, body[data-theme="light"] .navbar-fixed-top {
  top: 0;
  border-width: 0 0 1px;
}
/* line 116, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body:not([data-theme]) .navbar-fixed-bottom, body[data-theme="light"] .navbar-fixed-bottom {
  bottom: 0;
  margin-bottom: 0;
  border-width: 1px 0 0;
}
/* line 129, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body:not([data-theme]) .container > .navbar-header,
body:not([data-theme]) .container > .navbar-collapse,
body:not([data-theme]) .container-fluid > .navbar-header,
body:not([data-theme]) .container-fluid > .navbar-collapse, body[data-theme="light"] .container > .navbar-header,
body[data-theme="light"] .container > .navbar-collapse,
body[data-theme="light"] .container-fluid > .navbar-header,
body[data-theme="light"] .container-fluid > .navbar-collapse {
  margin-right: -15px;
  margin-left: -15px;
}
@media (min-width: 768px) {
  /* line 129, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  body:not([data-theme]) .container > .navbar-header,
  body:not([data-theme]) .container > .navbar-collapse,
  body:not([data-theme]) .container-fluid > .navbar-header,
  body:not([data-theme]) .container-fluid > .navbar-collapse, body[data-theme="light"] .container > .navbar-header,
  body[data-theme="light"] .container > .navbar-collapse,
  body[data-theme="light"] .container-fluid > .navbar-header,
  body[data-theme="light"] .container-fluid > .navbar-collapse {
    margin-right: 0;
    margin-left: 0;
  }
}
/* line 149, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body:not([data-theme]) .navbar-static-top, body[data-theme="light"] .navbar-static-top {
  z-index: 1000;
  border-width: 0 0 1px;
}
@media (min-width: 768px) {
  /* line 149, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  body:not([data-theme]) .navbar-static-top, body[data-theme="light"] .navbar-static-top {
    border-radius: 0;
  }
}
/* line 161, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body:not([data-theme]) .navbar-brand, body[data-theme="light"] .navbar-brand {
  float: left;
  height: 50px;
  padding: 15px 15px;
  font-size: 18px;
  line-height: 20px;
}
/* line 168, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body:not([data-theme]) .navbar-brand:hover, body:not([data-theme]) .navbar-brand:focus, body[data-theme="light"] .navbar-brand:hover, body[data-theme="light"] .navbar-brand:focus {
  text-decoration: none;
}
/* line 173, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body:not([data-theme]) .navbar-brand > img, body[data-theme="light"] .navbar-brand > img {
  display: block;
}
@media (min-width: 768px) {
  /* line 178, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar > .container body:not([data-theme]) .navbar-brand, .navbar > .container-fluid body:not([data-theme]) .navbar-brand, .navbar > .container body[data-theme="light"] .navbar-brand, .navbar > .container-fluid body[data-theme="light"] .navbar-brand {
    margin-left: -15px;
  }
}
/* line 191, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body:not([data-theme]) .navbar-toggle, body[data-theme="light"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body:not([data-theme]) .navbar-toggle:focus, body[data-theme="light"] .navbar-toggle:focus {
  outline: 0;
}
/* line 209, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body:not([data-theme]) .navbar-toggle .icon-bar, body[data-theme="light"] .navbar-toggle .icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px;
}
/* line 215, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body:not([data-theme]) .navbar-toggle .icon-bar + .icon-bar, body[data-theme="light"] .navbar-toggle .icon-bar + .icon-bar {
  margin-top: 4px;
}
@media (min-width: 768px) {
  /* line 191, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  body:not([data-theme]) .navbar-toggle, body[data-theme="light"] .navbar-toggle {
    display: none;
  }
}
/* line 230, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body:not([data-theme]) .navbar-nav, body[data-theme="light"] .navbar-nav {
  margin: 7.5px -15px;
}
/* line 233, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body:not([data-theme]) .navbar-nav > li > a, body[data-theme="light"] .navbar-nav > li > a {
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 20px;
}
@media (max-width: 767px) {
  /* line 241, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  body:not([data-theme]) .navbar-nav .open .dropdown-menu, body[data-theme="light"] .navbar-nav .open .dropdown-menu {
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    background-color: transparent;
    border: 0;
    box-shadow: none;
  }
  /* line 249, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  body:not([data-theme]) .navbar-nav .open .dropdown-menu > li > a,
  body:not([data-theme]) .navbar-nav .open .dropdown-menu .dropdown-header, body[data-theme="light"] .navbar-nav .open .dropdown-menu > li > a,
  body[data-theme="light"] .navbar-nav .open .dropdown-menu .dropdown-header {
    padding: 5px 15px 5px 25px;
  }
  /* line 253, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  body:not([data-theme]) .navbar-nav .open .dropdown-menu > li > a, body[data-theme="light"] .navbar-nav .open .dropdown-menu > li > a {
    line-height: 20px;
  }
  /* line 255, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  body:not([data-theme]) .navbar-nav .open .dropdown-menu > li > a:hover, body:not([data-theme]) .navbar-nav .open .dropdown-menu > li > a:focus, body[data-theme="light"] .navbar-nav .open .dropdown-menu > li > a:hover, body[data-theme="light"] .navbar-nav .open .dropdown-menu > li > a:focus {
    background-image: none;
  }
}
@media (min-width: 768px) {
  /* line 230, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  body:not([data-theme]) .navbar-nav, body[data-theme="light"] .navbar-nav {
    float: left;
    margin: 0;
  }
  /* line 268, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  body:not([data-theme]) .navbar-nav > li, body[data-theme="light"] .navbar-nav > li {
    float: left;
  }
  /* line 270, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  body:not([data-theme]) .navbar-nav > li > a, body[data-theme="light"] .navbar-nav > li > a {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
/* line 284, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body:not([data-theme]) .navbar-form, body[data-theme="light"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  body:not([data-theme]) .navbar-form .form-group, body[data-theme="light"] .navbar-form .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  /* line 475, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  body:not([data-theme]) .navbar-form .form-control, body[data-theme="light"] .navbar-form .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  /* line 482, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  body:not([data-theme]) .navbar-form .form-control-static, body[data-theme="light"] .navbar-form .form-control-static {
    display: inline-block;
  }
  /* line 486, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  body:not([data-theme]) .navbar-form .input-group, body[data-theme="light"] .navbar-form .input-group {
    display: inline-table;
    vertical-align: middle;
  }
  /* line 490, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  body:not([data-theme]) .navbar-form .input-group .input-group-addon,
  body:not([data-theme]) .navbar-form .input-group .input-group-btn,
  body:not([data-theme]) .navbar-form .input-group .form-control, body[data-theme="light"] .navbar-form .input-group .input-group-addon,
  body[data-theme="light"] .navbar-form .input-group .input-group-btn,
  body[data-theme="light"] .navbar-form .input-group .form-control {
    width: auto;
  }
  /* line 498, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  body:not([data-theme]) .navbar-form .input-group > .form-control, body[data-theme="light"] .navbar-form .input-group > .form-control {
    width: 100%;
  }
  /* line 502, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  body:not([data-theme]) .navbar-form .control-label, body[data-theme="light"] .navbar-form .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
  /* line 509, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  body:not([data-theme]) .navbar-form .radio,
  body:not([data-theme]) .navbar-form .checkbox, body[data-theme="light"] .navbar-form .radio,
  body[data-theme="light"] .navbar-form .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }
  /* line 516, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  body:not([data-theme]) .navbar-form .radio label,
  body:not([data-theme]) .navbar-form .checkbox label, body[data-theme="light"] .navbar-form .radio label,
  body[data-theme="light"] .navbar-form .checkbox label {
    padding-left: 0;
  }
  /* line 520, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  body:not([data-theme]) .navbar-form .radio input[type="radio"],
  body:not([data-theme]) .navbar-form .checkbox input[type="checkbox"], body[data-theme="light"] .navbar-form .radio input[type="radio"],
  body[data-theme="light"] .navbar-form .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0;
  }
  /* line 527, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  body:not([data-theme]) .navbar-form .has-feedback .form-control-feedback, body[data-theme="light"] .navbar-form .has-feedback .form-control-feedback {
    top: 0;
  }
}
@media (max-width: 767px) {
  /* line 296, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  body:not([data-theme]) .navbar-form .form-group, body[data-theme="light"] .navbar-form .form-group {
    margin-bottom: 5px;
  }
  /* line 300, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  body:not([data-theme]) .navbar-form .form-group:last-child, body[data-theme="light"] .navbar-form .form-group:last-child {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  /* line 284, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  body:not([data-theme]) .navbar-form, body[data-theme="light"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body:not([data-theme]) .navbar-nav > li > .dropdown-menu, body[data-theme="light"] .navbar-nav > li > .dropdown-menu {
  margin-top: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
/* line 330, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body:not([data-theme]) .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu, body[data-theme="light"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body:not([data-theme]) .navbar-btn, body[data-theme="light"] .navbar-btn {
  margin-top: 8px;
  margin-bottom: 8px;
}
/* line 344, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body:not([data-theme]) .navbar-btn.btn-sm, body:not([data-theme]) .btn-group-sm > .navbar-btn.btn, body:not([data-theme]) body[data-theme="light"] .btn-group-sm > .navbar-btn.btn, body:not([data-theme]) body[data-theme="united"] .btn-group-sm > .navbar-btn.btn, body:not([data-theme]) body[data-theme="slate"] .btn-group-sm > .navbar-btn.btn, body[data-theme="light"] .navbar-btn.btn-sm, body[data-theme="light"] body:not([data-theme]) .btn-group-sm > .navbar-btn.btn, body[data-theme="light"] .btn-group-sm > .navbar-btn.btn, body[data-theme="light"] body[data-theme="united"] .btn-group-sm > .navbar-btn.btn, body[data-theme="light"] body[data-theme="slate"] .btn-group-sm > .navbar-btn.btn {
  margin-top: 10px;
  margin-bottom: 10px;
}
/* line 347, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body:not([data-theme]) .navbar-btn.btn-xs, body:not([data-theme]) .btn-group-xs > .navbar-btn.btn, body:not([data-theme]) body[data-theme="light"] .btn-group-xs > .navbar-btn.btn, body:not([data-theme]) body[data-theme="united"] .btn-group-xs > .navbar-btn.btn, body:not([data-theme]) body[data-theme="slate"] .btn-group-xs > .navbar-btn.btn, body[data-theme="light"] .navbar-btn.btn-xs, body[data-theme="light"] body:not([data-theme]) .btn-group-xs > .navbar-btn.btn, body[data-theme="light"] .btn-group-xs > .navbar-btn.btn, body[data-theme="light"] body[data-theme="united"] .btn-group-xs > .navbar-btn.btn, body[data-theme="light"] body[data-theme="slate"] .btn-group-xs > .navbar-btn.btn {
  margin-top: 14px;
  margin-bottom: 14px;
}
/* line 357, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body:not([data-theme]) .navbar-text, body[data-theme="light"] .navbar-text {
  margin-top: 15px;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  /* line 357, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  body:not([data-theme]) .navbar-text, body[data-theme="light"] .navbar-text {
    float: left;
    margin-right: 15px;
    margin-left: 15px;
  }
}
@media (min-width: 768px) {
  /* line 377, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  body:not([data-theme]) .navbar-left, body[data-theme="light"] .navbar-left {
    float: left !important;
  }
  /* line 380, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  body:not([data-theme]) .navbar-right, body[data-theme="light"] .navbar-right {
    float: right !important;
    margin-right: -15px;
  }
  /* line 384, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  body:not([data-theme]) .navbar-right ~ .navbar-right, body[data-theme="light"] .navbar-right ~ .navbar-right {
    margin-right: 0;
  }
}
/* line 395, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body:not([data-theme]) .navbar-default, body[data-theme="light"] .navbar-default {
  background-color: #f8f8f8;
  border-color: #e7e7e7;
}
/* line 399, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body:not([data-theme]) .navbar-default .navbar-brand, body[data-theme="light"] .navbar-default .navbar-brand {
  color: #777;
}
/* line 401, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body:not([data-theme]) .navbar-default .navbar-brand:hover, body:not([data-theme]) .navbar-default .navbar-brand:focus, body[data-theme="light"] .navbar-default .navbar-brand:hover, body[data-theme="light"] .navbar-default .navbar-brand:focus {
  color: #5e5e5e;
  background-color: transparent;
}
/* line 408, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body:not([data-theme]) .navbar-default .navbar-text, body[data-theme="light"] .navbar-default .navbar-text {
  color: #777;
}
/* line 413, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body:not([data-theme]) .navbar-default .navbar-nav > li > a, body[data-theme="light"] .navbar-default .navbar-nav > li > a {
  color: #777;
}
/* line 416, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body:not([data-theme]) .navbar-default .navbar-nav > li > a:hover, body:not([data-theme]) .navbar-default .navbar-nav > li > a:focus, body[data-theme="light"] .navbar-default .navbar-nav > li > a:hover, body[data-theme="light"] .navbar-default .navbar-nav > li > a:focus {
  color: #333;
  background-color: transparent;
}
/* line 423, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body:not([data-theme]) .navbar-default .navbar-nav > .active > a, body:not([data-theme]) .navbar-default .navbar-nav > .active > a:hover, body:not([data-theme]) .navbar-default .navbar-nav > .active > a:focus, body[data-theme="light"] .navbar-default .navbar-nav > .active > a, body[data-theme="light"] .navbar-default .navbar-nav > .active > a:hover, body[data-theme="light"] .navbar-default .navbar-nav > .active > a:focus {
  color: #555;
  background-color: #e7e7e7;
}
/* line 431, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body:not([data-theme]) .navbar-default .navbar-nav > .disabled > a, body:not([data-theme]) .navbar-default .navbar-nav > .disabled > a:hover, body:not([data-theme]) .navbar-default .navbar-nav > .disabled > a:focus, body[data-theme="light"] .navbar-default .navbar-nav > .disabled > a, body[data-theme="light"] .navbar-default .navbar-nav > .disabled > a:hover, body[data-theme="light"] .navbar-default .navbar-nav > .disabled > a:focus {
  color: #ccc;
  background-color: transparent;
}
/* line 442, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body:not([data-theme]) .navbar-default .navbar-nav > .open > a, body:not([data-theme]) .navbar-default .navbar-nav > .open > a:hover, body:not([data-theme]) .navbar-default .navbar-nav > .open > a:focus, body[data-theme="light"] .navbar-default .navbar-nav > .open > a, body[data-theme="light"] .navbar-default .navbar-nav > .open > a:hover, body[data-theme="light"] .navbar-default .navbar-nav > .open > a:focus {
  color: #555;
  background-color: #e7e7e7;
}
@media (max-width: 767px) {
  /* line 453, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  body:not([data-theme]) .navbar-default .navbar-nav .open .dropdown-menu > li > a, body[data-theme="light"] .navbar-default .navbar-nav .open .dropdown-menu > li > a {
    color: #777;
  }
  /* line 455, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  body:not([data-theme]) .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, body:not([data-theme]) .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus, body[data-theme="light"] .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, body[data-theme="light"] .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #333;
    background-color: transparent;
  }
  /* line 462, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  body:not([data-theme]) .navbar-default .navbar-nav .open .dropdown-menu > .active > a, body:not([data-theme]) .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, body:not([data-theme]) .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus, body[data-theme="light"] .navbar-default .navbar-nav .open .dropdown-menu > .active > a, body[data-theme="light"] .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, body[data-theme="light"] .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #555;
    background-color: #e7e7e7;
  }
  /* line 470, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  body:not([data-theme]) .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a, body:not([data-theme]) .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover, body:not([data-theme]) .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus, body[data-theme="light"] .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a, body[data-theme="light"] .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover, body[data-theme="light"] .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #ccc;
    background-color: transparent;
  }
}
/* line 481, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body:not([data-theme]) .navbar-default .navbar-toggle, body[data-theme="light"] .navbar-default .navbar-toggle {
  border-color: #ddd;
}
/* line 483, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body:not([data-theme]) .navbar-default .navbar-toggle:hover, body:not([data-theme]) .navbar-default .navbar-toggle:focus, body[data-theme="light"] .navbar-default .navbar-toggle:hover, body[data-theme="light"] .navbar-default .navbar-toggle:focus {
  background-color: #ddd;
}
/* line 487, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body:not([data-theme]) .navbar-default .navbar-toggle .icon-bar, body[data-theme="light"] .navbar-default .navbar-toggle .icon-bar {
  background-color: #888;
}
/* line 492, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body:not([data-theme]) .navbar-default .navbar-collapse,
body:not([data-theme]) .navbar-default .navbar-form, body[data-theme="light"] .navbar-default .navbar-collapse,
body[data-theme="light"] .navbar-default .navbar-form {
  border-color: #e7e7e7;
}
/* line 502, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body:not([data-theme]) .navbar-default .navbar-link, body[data-theme="light"] .navbar-default .navbar-link {
  color: #777;
}
/* line 504, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body:not([data-theme]) .navbar-default .navbar-link:hover, body[data-theme="light"] .navbar-default .navbar-link:hover {
  color: #333;
}
/* line 509, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body:not([data-theme]) .navbar-default .btn-link, body[data-theme="light"] .navbar-default .btn-link {
  color: #777;
}
/* line 511, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body:not([data-theme]) .navbar-default .btn-link:hover, body:not([data-theme]) .navbar-default .btn-link:focus, body[data-theme="light"] .navbar-default .btn-link:hover, body[data-theme="light"] .navbar-default .btn-link:focus {
  color: #333;
}
/* line 517, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body:not([data-theme]) .navbar-default .btn-link[disabled]:hover, body:not([data-theme]) .navbar-default .btn-link[disabled]:focus, fieldset[disabled] body:not([data-theme]) .navbar-default .btn-link:hover, fieldset[disabled] body:not([data-theme]) .navbar-default .btn-link:focus, body[data-theme="light"] .navbar-default .btn-link[disabled]:hover, body[data-theme="light"] .navbar-default .btn-link[disabled]:focus, fieldset[disabled] body[data-theme="light"] .navbar-default .btn-link:hover, fieldset[disabled] body[data-theme="light"] .navbar-default .btn-link:focus {
  color: #ccc;
}
/* line 527, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body:not([data-theme]) .navbar-inverse, body[data-theme="light"] .navbar-inverse {
  background-color: #222;
  border-color: #090909;
}
/* line 531, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body:not([data-theme]) .navbar-inverse .navbar-brand, body[data-theme="light"] .navbar-inverse .navbar-brand {
  color: #9d9d9d;
}
/* line 533, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body:not([data-theme]) .navbar-inverse .navbar-brand:hover, body:not([data-theme]) .navbar-inverse .navbar-brand:focus, body[data-theme="light"] .navbar-inverse .navbar-brand:hover, body[data-theme="light"] .navbar-inverse .navbar-brand:focus {
  color: #fff;
  background-color: transparent;
}
/* line 540, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body:not([data-theme]) .navbar-inverse .navbar-text, body[data-theme="light"] .navbar-inverse .navbar-text {
  color: #9d9d9d;
}
/* line 545, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body:not([data-theme]) .navbar-inverse .navbar-nav > li > a, body[data-theme="light"] .navbar-inverse .navbar-nav > li > a {
  color: #9d9d9d;
}
/* line 548, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body:not([data-theme]) .navbar-inverse .navbar-nav > li > a:hover, body:not([data-theme]) .navbar-inverse .navbar-nav > li > a:focus, body[data-theme="light"] .navbar-inverse .navbar-nav > li > a:hover, body[data-theme="light"] .navbar-inverse .navbar-nav > li > a:focus {
  color: #fff;
  background-color: transparent;
}
/* line 555, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body:not([data-theme]) .navbar-inverse .navbar-nav > .active > a, body:not([data-theme]) .navbar-inverse .navbar-nav > .active > a:hover, body:not([data-theme]) .navbar-inverse .navbar-nav > .active > a:focus, body[data-theme="light"] .navbar-inverse .navbar-nav > .active > a, body[data-theme="light"] .navbar-inverse .navbar-nav > .active > a:hover, body[data-theme="light"] .navbar-inverse .navbar-nav > .active > a:focus {
  color: #fff;
  background-color: #090909;
}
/* line 563, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body:not([data-theme]) .navbar-inverse .navbar-nav > .disabled > a, body:not([data-theme]) .navbar-inverse .navbar-nav > .disabled > a:hover, body:not([data-theme]) .navbar-inverse .navbar-nav > .disabled > a:focus, body[data-theme="light"] .navbar-inverse .navbar-nav > .disabled > a, body[data-theme="light"] .navbar-inverse .navbar-nav > .disabled > a:hover, body[data-theme="light"] .navbar-inverse .navbar-nav > .disabled > a:focus {
  color: #444;
  background-color: transparent;
}
/* line 573, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body:not([data-theme]) .navbar-inverse .navbar-nav > .open > a, body:not([data-theme]) .navbar-inverse .navbar-nav > .open > a:hover, body:not([data-theme]) .navbar-inverse .navbar-nav > .open > a:focus, body[data-theme="light"] .navbar-inverse .navbar-nav > .open > a, body[data-theme="light"] .navbar-inverse .navbar-nav > .open > a:hover, body[data-theme="light"] .navbar-inverse .navbar-nav > .open > a:focus {
  color: #fff;
  background-color: #090909;
}
@media (max-width: 767px) {
  /* line 584, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  body:not([data-theme]) .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header, body[data-theme="light"] .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
    border-color: #090909;
  }
  /* line 587, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  body:not([data-theme]) .navbar-inverse .navbar-nav .open .dropdown-menu .divider, body[data-theme="light"] .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
    background-color: #090909;
  }
  /* line 590, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  body:not([data-theme]) .navbar-inverse .navbar-nav .open .dropdown-menu > li > a, body[data-theme="light"] .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
    color: #9d9d9d;
  }
  /* line 592, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  body:not([data-theme]) .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover, body:not([data-theme]) .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus, body[data-theme="light"] .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover, body[data-theme="light"] .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #fff;
    background-color: transparent;
  }
  /* line 599, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  body:not([data-theme]) .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a, body:not([data-theme]) .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover, body:not([data-theme]) .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus, body[data-theme="light"] .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a, body[data-theme="light"] .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover, body[data-theme="light"] .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #fff;
    background-color: #090909;
  }
  /* line 607, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  body:not([data-theme]) .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a, body:not([data-theme]) .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover, body:not([data-theme]) .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus, body[data-theme="light"] .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a, body[data-theme="light"] .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover, body[data-theme="light"] .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #444;
    background-color: transparent;
  }
}
/* line 619, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body:not([data-theme]) .navbar-inverse .navbar-toggle, body[data-theme="light"] .navbar-inverse .navbar-toggle {
  border-color: #333;
}
/* line 621, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body:not([data-theme]) .navbar-inverse .navbar-toggle:hover, body:not([data-theme]) .navbar-inverse .navbar-toggle:focus, body[data-theme="light"] .navbar-inverse .navbar-toggle:hover, body[data-theme="light"] .navbar-inverse .navbar-toggle:focus {
  background-color: #333;
}
/* line 625, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body:not([data-theme]) .navbar-inverse .navbar-toggle .icon-bar, body[data-theme="light"] .navbar-inverse .navbar-toggle .icon-bar {
  background-color: #fff;
}
/* line 630, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body:not([data-theme]) .navbar-inverse .navbar-collapse,
body:not([data-theme]) .navbar-inverse .navbar-form, body[data-theme="light"] .navbar-inverse .navbar-collapse,
body[data-theme="light"] .navbar-inverse .navbar-form {
  border-color: #101010;
}
/* line 635, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body:not([data-theme]) .navbar-inverse .navbar-link, body[data-theme="light"] .navbar-inverse .navbar-link {
  color: #9d9d9d;
}
/* line 637, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body:not([data-theme]) .navbar-inverse .navbar-link:hover, body[data-theme="light"] .navbar-inverse .navbar-link:hover {
  color: #fff;
}
/* line 642, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body:not([data-theme]) .navbar-inverse .btn-link, body[data-theme="light"] .navbar-inverse .btn-link {
  color: #9d9d9d;
}
/* line 644, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body:not([data-theme]) .navbar-inverse .btn-link:hover, body:not([data-theme]) .navbar-inverse .btn-link:focus, body[data-theme="light"] .navbar-inverse .btn-link:hover, body[data-theme="light"] .navbar-inverse .btn-link:focus {
  color: #fff;
}
/* line 650, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body:not([data-theme]) .navbar-inverse .btn-link[disabled]:hover, body:not([data-theme]) .navbar-inverse .btn-link[disabled]:focus, fieldset[disabled] body:not([data-theme]) .navbar-inverse .btn-link:hover, fieldset[disabled] body:not([data-theme]) .navbar-inverse .btn-link:focus, body[data-theme="light"] .navbar-inverse .btn-link[disabled]:hover, body[data-theme="light"] .navbar-inverse .btn-link[disabled]:focus, fieldset[disabled] body[data-theme="light"] .navbar-inverse .btn-link:hover, fieldset[disabled] body[data-theme="light"] .navbar-inverse .btn-link:focus {
  color: #444;
}
/* line 6, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_breadcrumbs.scss */
body:not([data-theme]) .breadcrumb, body[data-theme="light"] .breadcrumb {
  padding: 8px 15px;
  margin-bottom: 20px;
  list-style: none;
  background-color: #f5f5f5;
  border-radius: 4px;
}
/* line 13, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_breadcrumbs.scss */
body:not([data-theme]) .breadcrumb > li, body[data-theme="light"] .breadcrumb > li {
  display: inline-block;
}
/* line 16, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_breadcrumbs.scss */
body:not([data-theme]) .breadcrumb > li + li:before, body[data-theme="light"] .breadcrumb > li + li:before {
  padding: 0 5px;
  color: #ccc;
  content: "/ ";
}
/* line 25, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_breadcrumbs.scss */
body:not([data-theme]) .breadcrumb > .active, body[data-theme="light"] .breadcrumb > .active {
  color: #777777;
}
/* line 4, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pagination.scss */
body:not([data-theme]) .pagination, body[data-theme="light"] .pagination {
  display: inline-block;
  padding-left: 0;
  margin: 20px 0;
  border-radius: 4px;
}
/* line 10, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pagination.scss */
body:not([data-theme]) .pagination > li, body[data-theme="light"] .pagination > li {
  display: inline;
}
/* line 12, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pagination.scss */
body:not([data-theme]) .pagination > li > a,
body:not([data-theme]) .pagination > li > span, body[data-theme="light"] .pagination > li > a,
body[data-theme="light"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pagination.scss */
body:not([data-theme]) .pagination > li > a:hover, body:not([data-theme]) .pagination > li > a:focus,
body:not([data-theme]) .pagination > li > span:hover,
body:not([data-theme]) .pagination > li > span:focus, body[data-theme="light"] .pagination > li > a:hover, body[data-theme="light"] .pagination > li > a:focus,
body[data-theme="light"] .pagination > li > span:hover,
body[data-theme="light"] .pagination > li > span:focus {
  z-index: 2;
  color: #23527c;
  background-color: #eeeeee;
  border-color: #ddd;
}
/* line 33, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pagination.scss */
body:not([data-theme]) .pagination > li:first-child > a,
body:not([data-theme]) .pagination > li:first-child > span, body[data-theme="light"] .pagination > li:first-child > a,
body[data-theme="light"] .pagination > li:first-child > span {
  margin-left: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
/* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pagination.scss */
body:not([data-theme]) .pagination > li:last-child > a,
body:not([data-theme]) .pagination > li:last-child > span, body[data-theme="light"] .pagination > li:last-child > a,
body[data-theme="light"] .pagination > li:last-child > span {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
/* line 49, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pagination.scss */
body:not([data-theme]) .pagination > .active > a, body:not([data-theme]) .pagination > .active > a:hover, body:not([data-theme]) .pagination > .active > a:focus,
body:not([data-theme]) .pagination > .active > span,
body:not([data-theme]) .pagination > .active > span:hover,
body:not([data-theme]) .pagination > .active > span:focus, body[data-theme="light"] .pagination > .active > a, body[data-theme="light"] .pagination > .active > a:hover, body[data-theme="light"] .pagination > .active > a:focus,
body[data-theme="light"] .pagination > .active > span,
body[data-theme="light"] .pagination > .active > span:hover,
body[data-theme="light"] .pagination > .active > span:focus {
  z-index: 3;
  color: #fff;
  cursor: default;
  background-color: #337ab7;
  border-color: #337ab7;
}
/* line 61, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pagination.scss */
body:not([data-theme]) .pagination > .disabled > span,
body:not([data-theme]) .pagination > .disabled > span:hover,
body:not([data-theme]) .pagination > .disabled > span:focus,
body:not([data-theme]) .pagination > .disabled > a,
body:not([data-theme]) .pagination > .disabled > a:hover,
body:not([data-theme]) .pagination > .disabled > a:focus, body[data-theme="light"] .pagination > .disabled > span,
body[data-theme="light"] .pagination > .disabled > span:hover,
body[data-theme="light"] .pagination > .disabled > span:focus,
body[data-theme="light"] .pagination > .disabled > a,
body[data-theme="light"] .pagination > .disabled > a:hover,
body[data-theme="light"] .pagination > .disabled > a:focus {
  color: #777777;
  cursor: not-allowed;
  background-color: #fff;
  border-color: #ddd;
}
/* line 5, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_pagination.scss */
body:not([data-theme]) .pagination-lg > li > a,
body:not([data-theme]) .pagination-lg > li > span, body[data-theme="light"] .pagination-lg > li > a,
body[data-theme="light"] .pagination-lg > li > span {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
}
/* line 12, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_pagination.scss */
body:not([data-theme]) .pagination-lg > li:first-child > a,
body:not([data-theme]) .pagination-lg > li:first-child > span, body[data-theme="light"] .pagination-lg > li:first-child > a,
body[data-theme="light"] .pagination-lg > li:first-child > span {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}
/* line 18, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_pagination.scss */
body:not([data-theme]) .pagination-lg > li:last-child > a,
body:not([data-theme]) .pagination-lg > li:last-child > span, body[data-theme="light"] .pagination-lg > li:last-child > a,
body[data-theme="light"] .pagination-lg > li:last-child > span {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}
/* line 5, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_pagination.scss */
body:not([data-theme]) .pagination-sm > li > a,
body:not([data-theme]) .pagination-sm > li > span, body[data-theme="light"] .pagination-sm > li > a,
body[data-theme="light"] .pagination-sm > li > span {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
}
/* line 12, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_pagination.scss */
body:not([data-theme]) .pagination-sm > li:first-child > a,
body:not([data-theme]) .pagination-sm > li:first-child > span, body[data-theme="light"] .pagination-sm > li:first-child > a,
body[data-theme="light"] .pagination-sm > li:first-child > span {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
/* line 18, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_pagination.scss */
body:not([data-theme]) .pagination-sm > li:last-child > a,
body:not([data-theme]) .pagination-sm > li:last-child > span, body[data-theme="light"] .pagination-sm > li:last-child > a,
body[data-theme="light"] .pagination-sm > li:last-child > span {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}
/* line 6, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pager.scss */
body:not([data-theme]) .pager, body[data-theme="light"] .pager {
  padding-left: 0;
  margin: 20px 0;
  text-align: center;
  list-style: none;
}
/* line 14, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
body:not([data-theme]) .pager:before, body:not([data-theme]) .pager:after, body[data-theme="light"] .pager:before, body[data-theme="light"] .pager:after {
  display: table;
  content: " ";
}
/* line 19, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
body:not([data-theme]) .pager:after, body[data-theme="light"] .pager:after {
  clear: both;
}
/* line 12, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pager.scss */
body:not([data-theme]) .pager li, body[data-theme="light"] .pager li {
  display: inline;
}
/* line 14, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pager.scss */
body:not([data-theme]) .pager li > a,
body:not([data-theme]) .pager li > span, body[data-theme="light"] .pager li > a,
body[data-theme="light"] .pager li > span {
  display: inline-block;
  padding: 5px 14px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 15px;
}
/* line 23, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pager.scss */
body:not([data-theme]) .pager li > a:hover,
body:not([data-theme]) .pager li > a:focus, body[data-theme="light"] .pager li > a:hover,
body[data-theme="light"] .pager li > a:focus {
  text-decoration: none;
  background-color: #eeeeee;
}
/* line 31, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pager.scss */
body:not([data-theme]) .pager .next > a,
body:not([data-theme]) .pager .next > span, body[data-theme="light"] .pager .next > a,
body[data-theme="light"] .pager .next > span {
  float: right;
}
/* line 38, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pager.scss */
body:not([data-theme]) .pager .previous > a,
body:not([data-theme]) .pager .previous > span, body[data-theme="light"] .pager .previous > a,
body[data-theme="light"] .pager .previous > span {
  float: left;
}
/* line 45, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pager.scss */
body:not([data-theme]) .pager .disabled > a,
body:not([data-theme]) .pager .disabled > a:hover,
body:not([data-theme]) .pager .disabled > a:focus,
body:not([data-theme]) .pager .disabled > span, body[data-theme="light"] .pager .disabled > a,
body[data-theme="light"] .pager .disabled > a:hover,
body[data-theme="light"] .pager .disabled > a:focus,
body[data-theme="light"] .pager .disabled > span {
  color: #777777;
  cursor: not-allowed;
  background-color: #fff;
}
/* line 5, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_labels.scss */
body:not([data-theme]) .label, body[data-theme="light"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_labels.scss */
body:not([data-theme]) .label:empty, body[data-theme="light"] .label:empty {
  display: none;
}
/* line 25, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_labels.scss */
.btn body:not([data-theme]) .label, .btn body[data-theme="light"] .label {
  position: relative;
  top: -1px;
}
/* line 33, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_labels.scss */
body:not([data-theme]) a.label:hover, body:not([data-theme]) a.label:focus, body[data-theme="light"] a.label:hover, body[data-theme="light"] a.label:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}
/* line 44, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_labels.scss */
body:not([data-theme]) .label-default, body[data-theme="light"] .label-default {
  background-color: #777777;
}
/* line 7, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_labels.scss */
body:not([data-theme]) .label-default[href]:hover, body:not([data-theme]) .label-default[href]:focus, body[data-theme="light"] .label-default[href]:hover, body[data-theme="light"] .label-default[href]:focus {
  background-color: #5e5e5e;
}
/* line 48, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_labels.scss */
body:not([data-theme]) .label-primary, body[data-theme="light"] .label-primary {
  background-color: #337ab7;
}
/* line 7, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_labels.scss */
body:not([data-theme]) .label-primary[href]:hover, body:not([data-theme]) .label-primary[href]:focus, body[data-theme="light"] .label-primary[href]:hover, body[data-theme="light"] .label-primary[href]:focus {
  background-color: #286090;
}
/* line 52, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_labels.scss */
body:not([data-theme]) .label-success, body[data-theme="light"] .label-success {
  background-color: #5cb85c;
}
/* line 7, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_labels.scss */
body:not([data-theme]) .label-success[href]:hover, body:not([data-theme]) .label-success[href]:focus, body[data-theme="light"] .label-success[href]:hover, body[data-theme="light"] .label-success[href]:focus {
  background-color: #449d44;
}
/* line 56, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_labels.scss */
body:not([data-theme]) .label-info, body[data-theme="light"] .label-info {
  background-color: #5bc0de;
}
/* line 7, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_labels.scss */
body:not([data-theme]) .label-info[href]:hover, body:not([data-theme]) .label-info[href]:focus, body[data-theme="light"] .label-info[href]:hover, body[data-theme="light"] .label-info[href]:focus {
  background-color: #31b0d5;
}
/* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_labels.scss */
body:not([data-theme]) .label-warning, body[data-theme="light"] .label-warning {
  background-color: #f0ad4e;
}
/* line 7, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_labels.scss */
body:not([data-theme]) .label-warning[href]:hover, body:not([data-theme]) .label-warning[href]:focus, body[data-theme="light"] .label-warning[href]:hover, body[data-theme="light"] .label-warning[href]:focus {
  background-color: #ec971f;
}
/* line 64, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_labels.scss */
body:not([data-theme]) .label-danger, body[data-theme="light"] .label-danger {
  background-color: #d9534f;
}
/* line 7, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_labels.scss */
body:not([data-theme]) .label-danger[href]:hover, body:not([data-theme]) .label-danger[href]:focus, body[data-theme="light"] .label-danger[href]:hover, body[data-theme="light"] .label-danger[href]:focus {
  background-color: #c9302c;
}
/* line 7, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_badges.scss */
body:not([data-theme]) .badge, body[data-theme="light"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_badges.scss */
body:not([data-theme]) .badge:empty, body[data-theme="light"] .badge:empty {
  display: none;
}
/* line 27, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_badges.scss */
.btn body:not([data-theme]) .badge, .btn body[data-theme="light"] .badge {
  position: relative;
  top: -1px;
}
/* line 32, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_badges.scss */
.btn-xs body:not([data-theme]) .badge, body:not([data-theme]) .btn-group-xs > .btn body:not([data-theme]) .badge, body[data-theme="light"] .btn-group-xs > .btn body:not([data-theme]) .badge, body[data-theme="united"] .btn-group-xs > .btn body:not([data-theme]) .badge, body[data-theme="slate"] .btn-group-xs > .btn body:not([data-theme]) .badge, .btn-group-xs > .btn body:not([data-theme]) .badge, .btn-xs body[data-theme="light"] .badge, body:not([data-theme]) .btn-group-xs > .btn body[data-theme="light"] .badge, body[data-theme="light"] .btn-group-xs > .btn body[data-theme="light"] .badge, body[data-theme="united"] .btn-group-xs > .btn body[data-theme="light"] .badge, body[data-theme="slate"] .btn-group-xs > .btn body[data-theme="light"] .badge, .btn-group-xs > .btn body[data-theme="light"] .badge {
  top: 0;
  padding: 1px 5px;
}
/* line 41, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_badges.scss */
.list-group-item.active > body:not([data-theme]) .badge, .nav-pills > .active > a > body:not([data-theme]) .badge, .list-group-item.active > body[data-theme="light"] .badge, .nav-pills > .active > a > body[data-theme="light"] .badge {
  color: #337ab7;
  background-color: #fff;
}
/* line 47, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_badges.scss */
.list-group-item > body:not([data-theme]) .badge, .list-group-item > body[data-theme="light"] .badge {
  float: right;
}
/* line 51, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_badges.scss */
.list-group-item > body:not([data-theme]) .badge + body:not([data-theme]) .badge, .list-group-item > body[data-theme="light"] .badge + body:not([data-theme]) .badge, .list-group-item > body:not([data-theme]) .badge + body[data-theme="light"] .badge, .list-group-item > body[data-theme="light"] .badge + body[data-theme="light"] .badge {
  margin-right: 5px;
}
/* line 55, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_badges.scss */
.nav-pills > li > a > body:not([data-theme]) .badge, .nav-pills > li > a > body[data-theme="light"] .badge {
  margin-left: 3px;
}
/* line 62, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_badges.scss */
body:not([data-theme]) a.badge:hover, body:not([data-theme]) a.badge:focus, body[data-theme="light"] a.badge:hover, body[data-theme="light"] a.badge:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}
/* line 6, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_jumbotron.scss */
body:not([data-theme]) .jumbotron, body[data-theme="light"] .jumbotron {
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 30px;
  color: inherit;
  background-color: #eeeeee;
}
/* line 13, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_jumbotron.scss */
body:not([data-theme]) .jumbotron h1,
body:not([data-theme]) .jumbotron .h1, body[data-theme="light"] .jumbotron h1,
body[data-theme="light"] .jumbotron .h1 {
  color: inherit;
}
/* line 18, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_jumbotron.scss */
body:not([data-theme]) .jumbotron p, body[data-theme="light"] .jumbotron p {
  margin-bottom: 15px;
  font-size: 21px;
  font-weight: 200;
}
/* line 24, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_jumbotron.scss */
body:not([data-theme]) .jumbotron > hr, body[data-theme="light"] .jumbotron > hr {
  border-top-color: #d5d5d5;
}
/* line 28, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_jumbotron.scss */
.container body:not([data-theme]) .jumbotron, .container-fluid body:not([data-theme]) .jumbotron, .container body[data-theme="light"] .jumbotron, .container-fluid body[data-theme="light"] .jumbotron {
  padding-right: 15px;
  padding-left: 15px;
  border-radius: 6px;
}
/* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_jumbotron.scss */
body:not([data-theme]) .jumbotron .container, body[data-theme="light"] .jumbotron .container {
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  /* line 6, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_jumbotron.scss */
  body:not([data-theme]) .jumbotron, body[data-theme="light"] .jumbotron {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  /* line 43, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_jumbotron.scss */
  .container body:not([data-theme]) .jumbotron, .container-fluid body:not([data-theme]) .jumbotron, .container body[data-theme="light"] .jumbotron, .container-fluid body[data-theme="light"] .jumbotron {
    padding-right: 60px;
    padding-left: 60px;
  }
  /* line 49, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_jumbotron.scss */
  body:not([data-theme]) .jumbotron h1,
  body:not([data-theme]) .jumbotron .h1, body[data-theme="light"] .jumbotron h1,
  body[data-theme="light"] .jumbotron .h1 {
    font-size: 63px;
  }
}
/* line 7, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_thumbnails.scss */
body:not([data-theme]) .thumbnail, body[data-theme="light"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_thumbnails.scss */
body:not([data-theme]) .thumbnail > img,
body:not([data-theme]) .thumbnail a > img, body[data-theme="light"] .thumbnail > img,
body[data-theme="light"] .thumbnail a > img {
  display: block;
  max-width: 100%;
  height: auto;
  margin-right: auto;
  margin-left: auto;
}
/* line 27, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_thumbnails.scss */
body:not([data-theme]) .thumbnail .caption, body[data-theme="light"] .thumbnail .caption {
  padding: 9px;
  color: #333333;
}
/* line 34, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_thumbnails.scss */
body:not([data-theme]) a.thumbnail:hover,
body:not([data-theme]) a.thumbnail:focus,
body:not([data-theme]) a.thumbnail.active, body[data-theme="light"] a.thumbnail:hover,
body[data-theme="light"] a.thumbnail:focus,
body[data-theme="light"] a.thumbnail.active {
  border-color: #337ab7;
}
/* line 9, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_alerts.scss */
body:not([data-theme]) .alert, body[data-theme="light"] .alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
}
/* line 16, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_alerts.scss */
body:not([data-theme]) .alert h4, body[data-theme="light"] .alert h4 {
  margin-top: 0;
  color: inherit;
}
/* line 22, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_alerts.scss */
body:not([data-theme]) .alert .alert-link, body[data-theme="light"] .alert .alert-link {
  font-weight: bold;
}
/* line 27, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_alerts.scss */
body:not([data-theme]) .alert > p,
body:not([data-theme]) .alert > ul, body[data-theme="light"] .alert > p,
body[data-theme="light"] .alert > ul {
  margin-bottom: 0;
}
/* line 32, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_alerts.scss */
body:not([data-theme]) .alert > p + p, body[data-theme="light"] .alert > p + p {
  margin-top: 5px;
}
/* line 42, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_alerts.scss */
body:not([data-theme]) .alert-dismissable,
body:not([data-theme]) .alert-dismissible, body[data-theme="light"] .alert-dismissable,
body[data-theme="light"] .alert-dismissible {
  padding-right: 35px;
}
/* line 47, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_alerts.scss */
body:not([data-theme]) .alert-dismissable .close,
body:not([data-theme]) .alert-dismissible .close, body[data-theme="light"] .alert-dismissable .close,
body[data-theme="light"] .alert-dismissible .close {
  position: relative;
  top: -2px;
  right: -21px;
  color: inherit;
}
/* line 59, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_alerts.scss */
body:not([data-theme]) .alert-success, body[data-theme="light"] .alert-success {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}
/* line 8, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_alerts.scss */
body:not([data-theme]) .alert-success hr, body[data-theme="light"] .alert-success hr {
  border-top-color: #c9e2b3;
}
/* line 12, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_alerts.scss */
body:not([data-theme]) .alert-success .alert-link, body[data-theme="light"] .alert-success .alert-link {
  color: #2b542c;
}
/* line 63, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_alerts.scss */
body:not([data-theme]) .alert-info, body[data-theme="light"] .alert-info {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1;
}
/* line 8, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_alerts.scss */
body:not([data-theme]) .alert-info hr, body[data-theme="light"] .alert-info hr {
  border-top-color: #a6e1ec;
}
/* line 12, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_alerts.scss */
body:not([data-theme]) .alert-info .alert-link, body[data-theme="light"] .alert-info .alert-link {
  color: #245269;
}
/* line 67, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_alerts.scss */
body:not([data-theme]) .alert-warning, body[data-theme="light"] .alert-warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
}
/* line 8, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_alerts.scss */
body:not([data-theme]) .alert-warning hr, body[data-theme="light"] .alert-warning hr {
  border-top-color: #f7e1b5;
}
/* line 12, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_alerts.scss */
body:not([data-theme]) .alert-warning .alert-link, body[data-theme="light"] .alert-warning .alert-link {
  color: #66512c;
}
/* line 71, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_alerts.scss */
body:not([data-theme]) .alert-danger, body[data-theme="light"] .alert-danger {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}
/* line 8, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_alerts.scss */
body:not([data-theme]) .alert-danger hr, body[data-theme="light"] .alert-danger hr {
  border-top-color: #e4b9c0;
}
/* line 12, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_alerts.scss */
body:not([data-theme]) .alert-danger .alert-link, body[data-theme="light"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_progress-bars.scss */
body:not([data-theme]) .progress, body[data-theme="light"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_progress-bars.scss */
body:not([data-theme]) .progress-bar, body[data-theme="light"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_progress-bars.scss */
body:not([data-theme]) .progress-striped .progress-bar,
body:not([data-theme]) .progress-bar-striped, body[data-theme="light"] .progress-striped .progress-bar,
body[data-theme="light"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_progress-bars.scss */
body:not([data-theme]) .progress.active .progress-bar,
body:not([data-theme]) .progress-bar.active, body[data-theme="light"] .progress.active .progress-bar,
body[data-theme="light"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_progress-bars.scss */
body:not([data-theme]) .progress-bar-success, body[data-theme="light"] .progress-bar-success {
  background-color: #5cb85c;
}
/* line 7, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_progress-bar.scss */
.progress-striped body:not([data-theme]) .progress-bar-success, .progress-striped body[data-theme="light"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_progress-bars.scss */
body:not([data-theme]) .progress-bar-info, body[data-theme="light"] .progress-bar-info {
  background-color: #5bc0de;
}
/* line 7, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_progress-bar.scss */
.progress-striped body:not([data-theme]) .progress-bar-info, .progress-striped body[data-theme="light"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_progress-bars.scss */
body:not([data-theme]) .progress-bar-warning, body[data-theme="light"] .progress-bar-warning {
  background-color: #f0ad4e;
}
/* line 7, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_progress-bar.scss */
.progress-striped body:not([data-theme]) .progress-bar-warning, .progress-striped body[data-theme="light"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_progress-bars.scss */
body:not([data-theme]) .progress-bar-danger, body[data-theme="light"] .progress-bar-danger {
  background-color: #d9534f;
}
/* line 7, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_progress-bar.scss */
.progress-striped body:not([data-theme]) .progress-bar-danger, .progress-striped body[data-theme="light"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_media.scss */
body:not([data-theme]) .media, body[data-theme="light"] .media {
  margin-top: 15px;
}
/* line 5, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_media.scss */
body:not([data-theme]) .media:first-child, body[data-theme="light"] .media:first-child {
  margin-top: 0;
}
/* line 10, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_media.scss */
body:not([data-theme]) .media,
body:not([data-theme]) .media-body, body[data-theme="light"] .media,
body[data-theme="light"] .media-body {
  overflow: hidden;
  zoom: 1;
}
/* line 16, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_media.scss */
body:not([data-theme]) .media-body, body[data-theme="light"] .media-body {
  width: 10000px;
}
/* line 20, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_media.scss */
body:not([data-theme]) .media-object, body[data-theme="light"] .media-object {
  display: block;
}
/* line 24, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_media.scss */
body:not([data-theme]) .media-object.img-thumbnail, body[data-theme="light"] .media-object.img-thumbnail {
  max-width: none;
}
/* line 29, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_media.scss */
body:not([data-theme]) .media-right,
body:not([data-theme]) .media > .pull-right, body[data-theme="light"] .media-right,
body[data-theme="light"] .media > .pull-right {
  padding-left: 10px;
}
/* line 34, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_media.scss */
body:not([data-theme]) .media-left,
body:not([data-theme]) .media > .pull-left, body[data-theme="light"] .media-left,
body[data-theme="light"] .media > .pull-left {
  padding-right: 10px;
}
/* line 39, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_media.scss */
body:not([data-theme]) .media-left,
body:not([data-theme]) .media-right,
body:not([data-theme]) .media-body, body[data-theme="light"] .media-left,
body[data-theme="light"] .media-right,
body[data-theme="light"] .media-body {
  display: table-cell;
  vertical-align: top;
}
/* line 46, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_media.scss */
body:not([data-theme]) .media-middle, body[data-theme="light"] .media-middle {
  vertical-align: middle;
}
/* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_media.scss */
body:not([data-theme]) .media-bottom, body[data-theme="light"] .media-bottom {
  vertical-align: bottom;
}
/* line 55, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_media.scss */
body:not([data-theme]) .media-heading, body[data-theme="light"] .media-heading {
  margin-top: 0;
  margin-bottom: 5px;
}
/* line 63, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_media.scss */
body:not([data-theme]) .media-list, body[data-theme="light"] .media-list {
  padding-left: 0;
  list-style: none;
}
/* line 10, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
body:not([data-theme]) .list-group, body[data-theme="light"] .list-group {
  padding-left: 0;
  margin-bottom: 20px;
}
/* line 21, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
body:not([data-theme]) .list-group-item, body[data-theme="light"] .list-group-item {
  position: relative;
  display: block;
  padding: 10px 15px;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid #ddd;
}
/* line 31, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
body:not([data-theme]) .list-group-item:first-child, body[data-theme="light"] .list-group-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
/* line 34, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
body:not([data-theme]) .list-group-item:last-child, body[data-theme="light"] .list-group-item:last-child {
  margin-bottom: 0;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
/* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
body:not([data-theme]) .list-group-item.disabled, body:not([data-theme]) .list-group-item.disabled:hover, body:not([data-theme]) .list-group-item.disabled:focus, body[data-theme="light"] .list-group-item.disabled, body[data-theme="light"] .list-group-item.disabled:hover, body[data-theme="light"] .list-group-item.disabled:focus {
  color: #777777;
  cursor: not-allowed;
  background-color: #eeeeee;
}
/* line 48, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
body:not([data-theme]) .list-group-item.disabled .list-group-item-heading, body:not([data-theme]) .list-group-item.disabled:hover .list-group-item-heading, body:not([data-theme]) .list-group-item.disabled:focus .list-group-item-heading, body[data-theme="light"] .list-group-item.disabled .list-group-item-heading, body[data-theme="light"] .list-group-item.disabled:hover .list-group-item-heading, body[data-theme="light"] .list-group-item.disabled:focus .list-group-item-heading {
  color: inherit;
}
/* line 51, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
body:not([data-theme]) .list-group-item.disabled .list-group-item-text, body:not([data-theme]) .list-group-item.disabled:hover .list-group-item-text, body:not([data-theme]) .list-group-item.disabled:focus .list-group-item-text, body[data-theme="light"] .list-group-item.disabled .list-group-item-text, body[data-theme="light"] .list-group-item.disabled:hover .list-group-item-text, body[data-theme="light"] .list-group-item.disabled:focus .list-group-item-text {
  color: #777777;
}
/* line 57, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
body:not([data-theme]) .list-group-item.active, body:not([data-theme]) .list-group-item.active:hover, body:not([data-theme]) .list-group-item.active:focus, body[data-theme="light"] .list-group-item.active, body[data-theme="light"] .list-group-item.active:hover, body[data-theme="light"] .list-group-item.active:focus {
  z-index: 2;
  color: #fff;
  background-color: #337ab7;
  border-color: #337ab7;
}
/* line 66, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
body:not([data-theme]) .list-group-item.active .list-group-item-heading,
body:not([data-theme]) .list-group-item.active .list-group-item-heading > small,
body:not([data-theme]) .list-group-item.active .list-group-item-heading > .small, body:not([data-theme]) .list-group-item.active:hover .list-group-item-heading,
body:not([data-theme]) .list-group-item.active:hover .list-group-item-heading > small,
body:not([data-theme]) .list-group-item.active:hover .list-group-item-heading > .small, body:not([data-theme]) .list-group-item.active:focus .list-group-item-heading,
body:not([data-theme]) .list-group-item.active:focus .list-group-item-heading > small,
body:not([data-theme]) .list-group-item.active:focus .list-group-item-heading > .small, body[data-theme="light"] .list-group-item.active .list-group-item-heading,
body[data-theme="light"] .list-group-item.active .list-group-item-heading > small,
body[data-theme="light"] .list-group-item.active .list-group-item-heading > .small, body[data-theme="light"] .list-group-item.active:hover .list-group-item-heading,
body[data-theme="light"] .list-group-item.active:hover .list-group-item-heading > small,
body[data-theme="light"] .list-group-item.active:hover .list-group-item-heading > .small, body[data-theme="light"] .list-group-item.active:focus .list-group-item-heading,
body[data-theme="light"] .list-group-item.active:focus .list-group-item-heading > small,
body[data-theme="light"] .list-group-item.active:focus .list-group-item-heading > .small {
  color: inherit;
}
/* line 71, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
body:not([data-theme]) .list-group-item.active .list-group-item-text, body:not([data-theme]) .list-group-item.active:hover .list-group-item-text, body:not([data-theme]) .list-group-item.active:focus .list-group-item-text, body[data-theme="light"] .list-group-item.active .list-group-item-text, body[data-theme="light"] .list-group-item.active:hover .list-group-item-text, body[data-theme="light"] .list-group-item.active:focus .list-group-item-text {
  color: #c7ddef;
}
/* line 83, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
body:not([data-theme]) a.list-group-item,
body:not([data-theme]) button.list-group-item, body[data-theme="light"] a.list-group-item,
body[data-theme="light"] button.list-group-item {
  color: #555;
}
/* line 87, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
body:not([data-theme]) a.list-group-item .list-group-item-heading,
body:not([data-theme]) button.list-group-item .list-group-item-heading, body[data-theme="light"] a.list-group-item .list-group-item-heading,
body[data-theme="light"] button.list-group-item .list-group-item-heading {
  color: #333;
}
/* line 92, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
body:not([data-theme]) a.list-group-item:hover, body:not([data-theme]) a.list-group-item:focus,
body:not([data-theme]) button.list-group-item:hover,
body:not([data-theme]) button.list-group-item:focus, body[data-theme="light"] a.list-group-item:hover, body[data-theme="light"] a.list-group-item:focus,
body[data-theme="light"] button.list-group-item:hover,
body[data-theme="light"] button.list-group-item:focus {
  color: #555;
  text-decoration: none;
  background-color: #f5f5f5;
}
/* line 100, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
body:not([data-theme]) button.list-group-item, body[data-theme="light"] button.list-group-item {
  width: 100%;
  text-align: left;
}
/* line 4, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
body:not([data-theme]) .list-group-item-success, body[data-theme="light"] .list-group-item-success {
  color: #3c763d;
  background-color: #dff0d8;
}
/* line 11, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
body:not([data-theme]) a.list-group-item-success,
body:not([data-theme]) button.list-group-item-success, body[data-theme="light"] a.list-group-item-success,
body[data-theme="light"] button.list-group-item-success {
  color: #3c763d;
}
/* line 15, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
body:not([data-theme]) a.list-group-item-success .list-group-item-heading,
body:not([data-theme]) button.list-group-item-success .list-group-item-heading, body[data-theme="light"] a.list-group-item-success .list-group-item-heading,
body[data-theme="light"] button.list-group-item-success .list-group-item-heading {
  color: inherit;
}
/* line 19, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
body:not([data-theme]) a.list-group-item-success:hover, body:not([data-theme]) a.list-group-item-success:focus,
body:not([data-theme]) button.list-group-item-success:hover,
body:not([data-theme]) button.list-group-item-success:focus, body[data-theme="light"] a.list-group-item-success:hover, body[data-theme="light"] a.list-group-item-success:focus,
body[data-theme="light"] button.list-group-item-success:hover,
body[data-theme="light"] button.list-group-item-success:focus {
  color: #3c763d;
  background-color: #d0e9c6;
}
/* line 24, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
body:not([data-theme]) a.list-group-item-success.active, body:not([data-theme]) a.list-group-item-success.active:hover, body:not([data-theme]) a.list-group-item-success.active:focus,
body:not([data-theme]) button.list-group-item-success.active,
body:not([data-theme]) button.list-group-item-success.active:hover,
body:not([data-theme]) button.list-group-item-success.active:focus, body[data-theme="light"] a.list-group-item-success.active, body[data-theme="light"] a.list-group-item-success.active:hover, body[data-theme="light"] a.list-group-item-success.active:focus,
body[data-theme="light"] button.list-group-item-success.active,
body[data-theme="light"] button.list-group-item-success.active:hover,
body[data-theme="light"] button.list-group-item-success.active:focus {
  color: #fff;
  background-color: #3c763d;
  border-color: #3c763d;
}
/* line 4, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
body:not([data-theme]) .list-group-item-info, body[data-theme="light"] .list-group-item-info {
  color: #31708f;
  background-color: #d9edf7;
}
/* line 11, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
body:not([data-theme]) a.list-group-item-info,
body:not([data-theme]) button.list-group-item-info, body[data-theme="light"] a.list-group-item-info,
body[data-theme="light"] button.list-group-item-info {
  color: #31708f;
}
/* line 15, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
body:not([data-theme]) a.list-group-item-info .list-group-item-heading,
body:not([data-theme]) button.list-group-item-info .list-group-item-heading, body[data-theme="light"] a.list-group-item-info .list-group-item-heading,
body[data-theme="light"] button.list-group-item-info .list-group-item-heading {
  color: inherit;
}
/* line 19, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
body:not([data-theme]) a.list-group-item-info:hover, body:not([data-theme]) a.list-group-item-info:focus,
body:not([data-theme]) button.list-group-item-info:hover,
body:not([data-theme]) button.list-group-item-info:focus, body[data-theme="light"] a.list-group-item-info:hover, body[data-theme="light"] a.list-group-item-info:focus,
body[data-theme="light"] button.list-group-item-info:hover,
body[data-theme="light"] button.list-group-item-info:focus {
  color: #31708f;
  background-color: #c4e3f3;
}
/* line 24, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
body:not([data-theme]) a.list-group-item-info.active, body:not([data-theme]) a.list-group-item-info.active:hover, body:not([data-theme]) a.list-group-item-info.active:focus,
body:not([data-theme]) button.list-group-item-info.active,
body:not([data-theme]) button.list-group-item-info.active:hover,
body:not([data-theme]) button.list-group-item-info.active:focus, body[data-theme="light"] a.list-group-item-info.active, body[data-theme="light"] a.list-group-item-info.active:hover, body[data-theme="light"] a.list-group-item-info.active:focus,
body[data-theme="light"] button.list-group-item-info.active,
body[data-theme="light"] button.list-group-item-info.active:hover,
body[data-theme="light"] button.list-group-item-info.active:focus {
  color: #fff;
  background-color: #31708f;
  border-color: #31708f;
}
/* line 4, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
body:not([data-theme]) .list-group-item-warning, body[data-theme="light"] .list-group-item-warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
}
/* line 11, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
body:not([data-theme]) a.list-group-item-warning,
body:not([data-theme]) button.list-group-item-warning, body[data-theme="light"] a.list-group-item-warning,
body[data-theme="light"] button.list-group-item-warning {
  color: #8a6d3b;
}
/* line 15, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
body:not([data-theme]) a.list-group-item-warning .list-group-item-heading,
body:not([data-theme]) button.list-group-item-warning .list-group-item-heading, body[data-theme="light"] a.list-group-item-warning .list-group-item-heading,
body[data-theme="light"] button.list-group-item-warning .list-group-item-heading {
  color: inherit;
}
/* line 19, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
body:not([data-theme]) a.list-group-item-warning:hover, body:not([data-theme]) a.list-group-item-warning:focus,
body:not([data-theme]) button.list-group-item-warning:hover,
body:not([data-theme]) button.list-group-item-warning:focus, body[data-theme="light"] a.list-group-item-warning:hover, body[data-theme="light"] a.list-group-item-warning:focus,
body[data-theme="light"] button.list-group-item-warning:hover,
body[data-theme="light"] button.list-group-item-warning:focus {
  color: #8a6d3b;
  background-color: #faf2cc;
}
/* line 24, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
body:not([data-theme]) a.list-group-item-warning.active, body:not([data-theme]) a.list-group-item-warning.active:hover, body:not([data-theme]) a.list-group-item-warning.active:focus,
body:not([data-theme]) button.list-group-item-warning.active,
body:not([data-theme]) button.list-group-item-warning.active:hover,
body:not([data-theme]) button.list-group-item-warning.active:focus, body[data-theme="light"] a.list-group-item-warning.active, body[data-theme="light"] a.list-group-item-warning.active:hover, body[data-theme="light"] a.list-group-item-warning.active:focus,
body[data-theme="light"] button.list-group-item-warning.active,
body[data-theme="light"] button.list-group-item-warning.active:hover,
body[data-theme="light"] button.list-group-item-warning.active:focus {
  color: #fff;
  background-color: #8a6d3b;
  border-color: #8a6d3b;
}
/* line 4, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
body:not([data-theme]) .list-group-item-danger, body[data-theme="light"] .list-group-item-danger {
  color: #a94442;
  background-color: #f2dede;
}
/* line 11, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
body:not([data-theme]) a.list-group-item-danger,
body:not([data-theme]) button.list-group-item-danger, body[data-theme="light"] a.list-group-item-danger,
body[data-theme="light"] button.list-group-item-danger {
  color: #a94442;
}
/* line 15, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
body:not([data-theme]) a.list-group-item-danger .list-group-item-heading,
body:not([data-theme]) button.list-group-item-danger .list-group-item-heading, body[data-theme="light"] a.list-group-item-danger .list-group-item-heading,
body[data-theme="light"] button.list-group-item-danger .list-group-item-heading {
  color: inherit;
}
/* line 19, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
body:not([data-theme]) a.list-group-item-danger:hover, body:not([data-theme]) a.list-group-item-danger:focus,
body:not([data-theme]) button.list-group-item-danger:hover,
body:not([data-theme]) button.list-group-item-danger:focus, body[data-theme="light"] a.list-group-item-danger:hover, body[data-theme="light"] a.list-group-item-danger:focus,
body[data-theme="light"] button.list-group-item-danger:hover,
body[data-theme="light"] button.list-group-item-danger:focus {
  color: #a94442;
  background-color: #ebcccc;
}
/* line 24, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
body:not([data-theme]) a.list-group-item-danger.active, body:not([data-theme]) a.list-group-item-danger.active:hover, body:not([data-theme]) a.list-group-item-danger.active:focus,
body:not([data-theme]) button.list-group-item-danger.active,
body:not([data-theme]) button.list-group-item-danger.active:hover,
body:not([data-theme]) button.list-group-item-danger.active:focus, body[data-theme="light"] a.list-group-item-danger.active, body[data-theme="light"] a.list-group-item-danger.active:hover, body[data-theme="light"] a.list-group-item-danger.active:focus,
body[data-theme="light"] button.list-group-item-danger.active,
body[data-theme="light"] button.list-group-item-danger.active:hover,
body[data-theme="light"] button.list-group-item-danger.active:focus {
  color: #fff;
  background-color: #a94442;
  border-color: #a94442;
}
/* line 121, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
body:not([data-theme]) .list-group-item-heading, body[data-theme="light"] .list-group-item-heading {
  margin-top: 0;
  margin-bottom: 5px;
}
/* line 125, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
body:not([data-theme]) .list-group-item-text, body[data-theme="light"] .list-group-item-text {
  margin-bottom: 0;
  line-height: 1.3;
}
/* line 7, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body:not([data-theme]) .panel, body[data-theme="light"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body:not([data-theme]) .panel-body, body[data-theme="light"] .panel-body {
  padding: 15px;
}
/* line 14, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
body:not([data-theme]) .panel-body:before, body:not([data-theme]) .panel-body:after, body[data-theme="light"] .panel-body:before, body[data-theme="light"] .panel-body:after {
  display: table;
  content: " ";
}
/* line 19, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
body:not([data-theme]) .panel-body:after, body[data-theme="light"] .panel-body:after {
  clear: both;
}
/* line 22, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body:not([data-theme]) .panel-heading, body[data-theme="light"] .panel-heading {
  padding: 10px 15px;
  border-bottom: 1px solid transparent;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
/* line 27, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body:not([data-theme]) .panel-heading > .dropdown .dropdown-toggle, body[data-theme="light"] .panel-heading > .dropdown .dropdown-toggle {
  color: inherit;
}
/* line 33, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body:not([data-theme]) .panel-title, body[data-theme="light"] .panel-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  color: inherit;
}
/* line 39, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body:not([data-theme]) .panel-title > a,
body:not([data-theme]) .panel-title > small,
body:not([data-theme]) .panel-title > .small,
body:not([data-theme]) .panel-title > small > a,
body:not([data-theme]) .panel-title > .small > a, body[data-theme="light"] .panel-title > a,
body[data-theme="light"] .panel-title > small,
body[data-theme="light"] .panel-title > .small,
body[data-theme="light"] .panel-title > small > a,
body[data-theme="light"] .panel-title > .small > a {
  color: inherit;
}
/* line 49, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body:not([data-theme]) .panel-footer, body[data-theme="light"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body:not([data-theme]) .panel > .list-group,
body:not([data-theme]) .panel > .panel-collapse > .list-group, body[data-theme="light"] .panel > .list-group,
body[data-theme="light"] .panel > .panel-collapse > .list-group {
  margin-bottom: 0;
}
/* line 67, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body:not([data-theme]) .panel > .list-group .list-group-item,
body:not([data-theme]) .panel > .panel-collapse > .list-group .list-group-item, body[data-theme="light"] .panel > .list-group .list-group-item,
body[data-theme="light"] .panel > .panel-collapse > .list-group .list-group-item {
  border-width: 1px 0;
  border-radius: 0;
}
/* line 74, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body:not([data-theme]) .panel > .list-group:first-child .list-group-item:first-child,
body:not([data-theme]) .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child, body[data-theme="light"] .panel > .list-group:first-child .list-group-item:first-child,
body[data-theme="light"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body:not([data-theme]) .panel > .list-group:last-child .list-group-item:last-child,
body:not([data-theme]) .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child, body[data-theme="light"] .panel > .list-group:last-child .list-group-item:last-child,
body[data-theme="light"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body:not([data-theme]) .panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child, body[data-theme="light"] .panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
/* line 96, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body:not([data-theme]) .panel-heading + .list-group .list-group-item:first-child, body[data-theme="light"] .panel-heading + .list-group .list-group-item:first-child {
  border-top-width: 0;
}
/* line 100, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body:not([data-theme]) .list-group + .panel-footer, body[data-theme="light"] .list-group + .panel-footer {
  border-top-width: 0;
}
/* line 110, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body:not([data-theme]) .panel > .table,
body:not([data-theme]) .panel > .table-responsive > .table,
body:not([data-theme]) .panel > .panel-collapse > .table, body[data-theme="light"] .panel > .table,
body[data-theme="light"] .panel > .table-responsive > .table,
body[data-theme="light"] .panel > .panel-collapse > .table {
  margin-bottom: 0;
}
/* line 115, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body:not([data-theme]) .panel > .table caption,
body:not([data-theme]) .panel > .table-responsive > .table caption,
body:not([data-theme]) .panel > .panel-collapse > .table caption, body[data-theme="light"] .panel > .table caption,
body[data-theme="light"] .panel > .table-responsive > .table caption,
body[data-theme="light"] .panel > .panel-collapse > .table caption {
  padding-right: 15px;
  padding-left: 15px;
}
/* line 121, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body:not([data-theme]) .panel > .table:first-child,
body:not([data-theme]) .panel > .table-responsive:first-child > .table:first-child, body[data-theme="light"] .panel > .table:first-child,
body[data-theme="light"] .panel > .table-responsive:first-child > .table:first-child {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
/* line 127, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body:not([data-theme]) .panel > .table:first-child > thead:first-child > tr:first-child,
body:not([data-theme]) .panel > .table:first-child > tbody:first-child > tr:first-child,
body:not([data-theme]) .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
body:not([data-theme]) .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child, body[data-theme="light"] .panel > .table:first-child > thead:first-child > tr:first-child,
body[data-theme="light"] .panel > .table:first-child > tbody:first-child > tr:first-child,
body[data-theme="light"] .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
body[data-theme="light"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body:not([data-theme]) .panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
body:not([data-theme]) .panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
body:not([data-theme]) .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
body:not([data-theme]) .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
body:not([data-theme]) .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
body:not([data-theme]) .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
body:not([data-theme]) .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
body:not([data-theme]) .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child, body[data-theme="light"] .panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
body[data-theme="light"] .panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
body[data-theme="light"] .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
body[data-theme="light"] .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
body[data-theme="light"] .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
body[data-theme="light"] .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
body[data-theme="light"] .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
body[data-theme="light"] .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
  border-top-left-radius: 3px;
}
/* line 135, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body:not([data-theme]) .panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
body:not([data-theme]) .panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
body:not([data-theme]) .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
body:not([data-theme]) .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
body:not([data-theme]) .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
body:not([data-theme]) .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
body:not([data-theme]) .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
body:not([data-theme]) .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child, body[data-theme="light"] .panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
body[data-theme="light"] .panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
body[data-theme="light"] .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
body[data-theme="light"] .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
body[data-theme="light"] .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
body[data-theme="light"] .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
body[data-theme="light"] .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
body[data-theme="light"] .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
  border-top-right-radius: 3px;
}
/* line 143, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body:not([data-theme]) .panel > .table:last-child,
body:not([data-theme]) .panel > .table-responsive:last-child > .table:last-child, body[data-theme="light"] .panel > .table:last-child,
body[data-theme="light"] .panel > .table-responsive:last-child > .table:last-child {
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}
/* line 149, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body:not([data-theme]) .panel > .table:last-child > tbody:last-child > tr:last-child,
body:not([data-theme]) .panel > .table:last-child > tfoot:last-child > tr:last-child,
body:not([data-theme]) .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
body:not([data-theme]) .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child, body[data-theme="light"] .panel > .table:last-child > tbody:last-child > tr:last-child,
body[data-theme="light"] .panel > .table:last-child > tfoot:last-child > tr:last-child,
body[data-theme="light"] .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
body[data-theme="light"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body:not([data-theme]) .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
body:not([data-theme]) .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
body:not([data-theme]) .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
body:not([data-theme]) .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
body:not([data-theme]) .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
body:not([data-theme]) .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
body:not([data-theme]) .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
body:not([data-theme]) .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child, body[data-theme="light"] .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
body[data-theme="light"] .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
body[data-theme="light"] .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
body[data-theme="light"] .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
body[data-theme="light"] .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
body[data-theme="light"] .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
body[data-theme="light"] .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
body[data-theme="light"] .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
  border-bottom-left-radius: 3px;
}
/* line 157, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body:not([data-theme]) .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
body:not([data-theme]) .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
body:not([data-theme]) .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
body:not([data-theme]) .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
body:not([data-theme]) .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
body:not([data-theme]) .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
body:not([data-theme]) .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
body:not([data-theme]) .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child, body[data-theme="light"] .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
body[data-theme="light"] .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
body[data-theme="light"] .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
body[data-theme="light"] .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
body[data-theme="light"] .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
body[data-theme="light"] .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
body[data-theme="light"] .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
body[data-theme="light"] .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
  border-bottom-right-radius: 3px;
}
/* line 164, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body:not([data-theme]) .panel > .panel-body + .table,
body:not([data-theme]) .panel > .panel-body + .table-responsive,
body:not([data-theme]) .panel > .table + .panel-body,
body:not([data-theme]) .panel > .table-responsive + .panel-body, body[data-theme="light"] .panel > .panel-body + .table,
body[data-theme="light"] .panel > .panel-body + .table-responsive,
body[data-theme="light"] .panel > .table + .panel-body,
body[data-theme="light"] .panel > .table-responsive + .panel-body {
  border-top: 1px solid #ddd;
}
/* line 170, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body:not([data-theme]) .panel > .table > tbody:first-child > tr:first-child th,
body:not([data-theme]) .panel > .table > tbody:first-child > tr:first-child td, body[data-theme="light"] .panel > .table > tbody:first-child > tr:first-child th,
body[data-theme="light"] .panel > .table > tbody:first-child > tr:first-child td {
  border-top: 0;
}
/* line 174, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body:not([data-theme]) .panel > .table-bordered,
body:not([data-theme]) .panel > .table-responsive > .table-bordered, body[data-theme="light"] .panel > .table-bordered,
body[data-theme="light"] .panel > .table-responsive > .table-bordered {
  border: 0;
}
/* line 181, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body:not([data-theme]) .panel > .table-bordered > thead > tr > th:first-child,
body:not([data-theme]) .panel > .table-bordered > thead > tr > td:first-child,
body:not([data-theme]) .panel > .table-bordered > tbody > tr > th:first-child,
body:not([data-theme]) .panel > .table-bordered > tbody > tr > td:first-child,
body:not([data-theme]) .panel > .table-bordered > tfoot > tr > th:first-child,
body:not([data-theme]) .panel > .table-bordered > tfoot > tr > td:first-child,
body:not([data-theme]) .panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
body:not([data-theme]) .panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
body:not([data-theme]) .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
body:not([data-theme]) .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
body:not([data-theme]) .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
body:not([data-theme]) .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child, body[data-theme="light"] .panel > .table-bordered > thead > tr > th:first-child,
body[data-theme="light"] .panel > .table-bordered > thead > tr > td:first-child,
body[data-theme="light"] .panel > .table-bordered > tbody > tr > th:first-child,
body[data-theme="light"] .panel > .table-bordered > tbody > tr > td:first-child,
body[data-theme="light"] .panel > .table-bordered > tfoot > tr > th:first-child,
body[data-theme="light"] .panel > .table-bordered > tfoot > tr > td:first-child,
body[data-theme="light"] .panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
body[data-theme="light"] .panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
body[data-theme="light"] .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
body[data-theme="light"] .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
body[data-theme="light"] .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
body[data-theme="light"] .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
  border-left: 0;
}
/* line 185, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body:not([data-theme]) .panel > .table-bordered > thead > tr > th:last-child,
body:not([data-theme]) .panel > .table-bordered > thead > tr > td:last-child,
body:not([data-theme]) .panel > .table-bordered > tbody > tr > th:last-child,
body:not([data-theme]) .panel > .table-bordered > tbody > tr > td:last-child,
body:not([data-theme]) .panel > .table-bordered > tfoot > tr > th:last-child,
body:not([data-theme]) .panel > .table-bordered > tfoot > tr > td:last-child,
body:not([data-theme]) .panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
body:not([data-theme]) .panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
body:not([data-theme]) .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
body:not([data-theme]) .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
body:not([data-theme]) .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
body:not([data-theme]) .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child, body[data-theme="light"] .panel > .table-bordered > thead > tr > th:last-child,
body[data-theme="light"] .panel > .table-bordered > thead > tr > td:last-child,
body[data-theme="light"] .panel > .table-bordered > tbody > tr > th:last-child,
body[data-theme="light"] .panel > .table-bordered > tbody > tr > td:last-child,
body[data-theme="light"] .panel > .table-bordered > tfoot > tr > th:last-child,
body[data-theme="light"] .panel > .table-bordered > tfoot > tr > td:last-child,
body[data-theme="light"] .panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
body[data-theme="light"] .panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
body[data-theme="light"] .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
body[data-theme="light"] .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
body[data-theme="light"] .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
body[data-theme="light"] .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
  border-right: 0;
}
/* line 194, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body:not([data-theme]) .panel > .table-bordered > thead > tr:first-child > td,
body:not([data-theme]) .panel > .table-bordered > thead > tr:first-child > th,
body:not([data-theme]) .panel > .table-bordered > tbody > tr:first-child > td,
body:not([data-theme]) .panel > .table-bordered > tbody > tr:first-child > th,
body:not([data-theme]) .panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
body:not([data-theme]) .panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
body:not([data-theme]) .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
body:not([data-theme]) .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th, body[data-theme="light"] .panel > .table-bordered > thead > tr:first-child > td,
body[data-theme="light"] .panel > .table-bordered > thead > tr:first-child > th,
body[data-theme="light"] .panel > .table-bordered > tbody > tr:first-child > td,
body[data-theme="light"] .panel > .table-bordered > tbody > tr:first-child > th,
body[data-theme="light"] .panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
body[data-theme="light"] .panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
body[data-theme="light"] .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
body[data-theme="light"] .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
  border-bottom: 0;
}
/* line 203, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body:not([data-theme]) .panel > .table-bordered > tbody > tr:last-child > td,
body:not([data-theme]) .panel > .table-bordered > tbody > tr:last-child > th,
body:not([data-theme]) .panel > .table-bordered > tfoot > tr:last-child > td,
body:not([data-theme]) .panel > .table-bordered > tfoot > tr:last-child > th,
body:not([data-theme]) .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
body:not([data-theme]) .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
body:not([data-theme]) .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
body:not([data-theme]) .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th, body[data-theme="light"] .panel > .table-bordered > tbody > tr:last-child > td,
body[data-theme="light"] .panel > .table-bordered > tbody > tr:last-child > th,
body[data-theme="light"] .panel > .table-bordered > tfoot > tr:last-child > td,
body[data-theme="light"] .panel > .table-bordered > tfoot > tr:last-child > th,
body[data-theme="light"] .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
body[data-theme="light"] .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
body[data-theme="light"] .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
body[data-theme="light"] .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
  border-bottom: 0;
}
/* line 210, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body:not([data-theme]) .panel > .table-responsive, body[data-theme="light"] .panel > .table-responsive {
  margin-bottom: 0;
  border: 0;
}
/* line 222, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body:not([data-theme]) .panel-group, body[data-theme="light"] .panel-group {
  margin-bottom: 20px;
}
/* line 226, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body:not([data-theme]) .panel-group .panel, body[data-theme="light"] .panel-group .panel {
  margin-bottom: 0;
  border-radius: 4px;
}
/* line 230, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body:not([data-theme]) .panel-group .panel + .panel, body[data-theme="light"] .panel-group .panel + .panel {
  margin-top: 5px;
}
/* line 235, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body:not([data-theme]) .panel-group .panel-heading, body[data-theme="light"] .panel-group .panel-heading {
  border-bottom: 0;
}
/* line 238, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body:not([data-theme]) .panel-group .panel-heading + .panel-collapse > .panel-body,
body:not([data-theme]) .panel-group .panel-heading + .panel-collapse > .list-group, body[data-theme="light"] .panel-group .panel-heading + .panel-collapse > .panel-body,
body[data-theme="light"] .panel-group .panel-heading + .panel-collapse > .list-group {
  border-top: 1px solid #ddd;
}
/* line 244, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body:not([data-theme]) .panel-group .panel-footer, body[data-theme="light"] .panel-group .panel-footer {
  border-top: 0;
}
/* line 246, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body:not([data-theme]) .panel-group .panel-footer + .panel-collapse .panel-body, body[data-theme="light"] .panel-group .panel-footer + .panel-collapse .panel-body {
  border-bottom: 1px solid #ddd;
}
/* line 254, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body:not([data-theme]) .panel-default, body[data-theme="light"] .panel-default {
  border-color: #ddd;
}
/* line 6, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
body:not([data-theme]) .panel-default > .panel-heading, body[data-theme="light"] .panel-default > .panel-heading {
  color: #333333;
  background-color: #f5f5f5;
  border-color: #ddd;
}
/* line 11, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
body:not([data-theme]) .panel-default > .panel-heading + .panel-collapse > .panel-body, body[data-theme="light"] .panel-default > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #ddd;
}
/* line 14, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
body:not([data-theme]) .panel-default > .panel-heading .badge, body[data-theme="light"] .panel-default > .panel-heading .badge {
  color: #f5f5f5;
  background-color: #333333;
}
/* line 20, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
body:not([data-theme]) .panel-default > .panel-footer + .panel-collapse > .panel-body, body[data-theme="light"] .panel-default > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #ddd;
}
/* line 257, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body:not([data-theme]) .panel-primary, body[data-theme="light"] .panel-primary {
  border-color: #337ab7;
}
/* line 6, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
body:not([data-theme]) .panel-primary > .panel-heading, body[data-theme="light"] .panel-primary > .panel-heading {
  color: #fff;
  background-color: #337ab7;
  border-color: #337ab7;
}
/* line 11, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
body:not([data-theme]) .panel-primary > .panel-heading + .panel-collapse > .panel-body, body[data-theme="light"] .panel-primary > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #337ab7;
}
/* line 14, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
body:not([data-theme]) .panel-primary > .panel-heading .badge, body[data-theme="light"] .panel-primary > .panel-heading .badge {
  color: #337ab7;
  background-color: #fff;
}
/* line 20, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
body:not([data-theme]) .panel-primary > .panel-footer + .panel-collapse > .panel-body, body[data-theme="light"] .panel-primary > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #337ab7;
}
/* line 260, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body:not([data-theme]) .panel-success, body[data-theme="light"] .panel-success {
  border-color: #d6e9c6;
}
/* line 6, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
body:not([data-theme]) .panel-success > .panel-heading, body[data-theme="light"] .panel-success > .panel-heading {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}
/* line 11, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
body:not([data-theme]) .panel-success > .panel-heading + .panel-collapse > .panel-body, body[data-theme="light"] .panel-success > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #d6e9c6;
}
/* line 14, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
body:not([data-theme]) .panel-success > .panel-heading .badge, body[data-theme="light"] .panel-success > .panel-heading .badge {
  color: #dff0d8;
  background-color: #3c763d;
}
/* line 20, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
body:not([data-theme]) .panel-success > .panel-footer + .panel-collapse > .panel-body, body[data-theme="light"] .panel-success > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #d6e9c6;
}
/* line 263, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body:not([data-theme]) .panel-info, body[data-theme="light"] .panel-info {
  border-color: #bce8f1;
}
/* line 6, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
body:not([data-theme]) .panel-info > .panel-heading, body[data-theme="light"] .panel-info > .panel-heading {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1;
}
/* line 11, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
body:not([data-theme]) .panel-info > .panel-heading + .panel-collapse > .panel-body, body[data-theme="light"] .panel-info > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #bce8f1;
}
/* line 14, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
body:not([data-theme]) .panel-info > .panel-heading .badge, body[data-theme="light"] .panel-info > .panel-heading .badge {
  color: #d9edf7;
  background-color: #31708f;
}
/* line 20, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
body:not([data-theme]) .panel-info > .panel-footer + .panel-collapse > .panel-body, body[data-theme="light"] .panel-info > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #bce8f1;
}
/* line 266, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body:not([data-theme]) .panel-warning, body[data-theme="light"] .panel-warning {
  border-color: #faebcc;
}
/* line 6, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
body:not([data-theme]) .panel-warning > .panel-heading, body[data-theme="light"] .panel-warning > .panel-heading {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
}
/* line 11, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
body:not([data-theme]) .panel-warning > .panel-heading + .panel-collapse > .panel-body, body[data-theme="light"] .panel-warning > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #faebcc;
}
/* line 14, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
body:not([data-theme]) .panel-warning > .panel-heading .badge, body[data-theme="light"] .panel-warning > .panel-heading .badge {
  color: #fcf8e3;
  background-color: #8a6d3b;
}
/* line 20, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
body:not([data-theme]) .panel-warning > .panel-footer + .panel-collapse > .panel-body, body[data-theme="light"] .panel-warning > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #faebcc;
}
/* line 269, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body:not([data-theme]) .panel-danger, body[data-theme="light"] .panel-danger {
  border-color: #ebccd1;
}
/* line 6, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
body:not([data-theme]) .panel-danger > .panel-heading, body[data-theme="light"] .panel-danger > .panel-heading {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}
/* line 11, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
body:not([data-theme]) .panel-danger > .panel-heading + .panel-collapse > .panel-body, body[data-theme="light"] .panel-danger > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #ebccd1;
}
/* line 14, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
body:not([data-theme]) .panel-danger > .panel-heading .badge, body[data-theme="light"] .panel-danger > .panel-heading .badge {
  color: #f2dede;
  background-color: #a94442;
}
/* line 20, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
body:not([data-theme]) .panel-danger > .panel-footer + .panel-collapse > .panel-body, body[data-theme="light"] .panel-danger > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #ebccd1;
}
/* line 5, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-embed.scss */
body:not([data-theme]) .embed-responsive, body[data-theme="light"] .embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
}
/* line 12, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-embed.scss */
body:not([data-theme]) .embed-responsive .embed-responsive-item,
body:not([data-theme]) .embed-responsive iframe,
body:not([data-theme]) .embed-responsive embed,
body:not([data-theme]) .embed-responsive object,
body:not([data-theme]) .embed-responsive video, body[data-theme="light"] .embed-responsive .embed-responsive-item,
body[data-theme="light"] .embed-responsive iframe,
body[data-theme="light"] .embed-responsive embed,
body[data-theme="light"] .embed-responsive object,
body[data-theme="light"] .embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
/* line 28, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-embed.scss */
body:not([data-theme]) .embed-responsive-16by9, body[data-theme="light"] .embed-responsive-16by9 {
  padding-bottom: 56.25%;
}
/* line 33, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-embed.scss */
body:not([data-theme]) .embed-responsive-4by3, body[data-theme="light"] .embed-responsive-4by3 {
  padding-bottom: 75%;
}
/* line 7, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_wells.scss */
body:not([data-theme]) .well, body[data-theme="light"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_wells.scss */
body:not([data-theme]) .well blockquote, body[data-theme="light"] .well blockquote {
  border-color: #ddd;
  border-color: rgba(0, 0, 0, 0.15);
}
/* line 22, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_wells.scss */
body:not([data-theme]) .well-lg, body[data-theme="light"] .well-lg {
  padding: 24px;
  border-radius: 6px;
}
/* line 26, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_wells.scss */
body:not([data-theme]) .well-sm, body[data-theme="light"] .well-sm {
  padding: 9px;
  border-radius: 3px;
}
/* line 6, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_close.scss */
body:not([data-theme]) .close, body[data-theme="light"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_close.scss */
body:not([data-theme]) .close:hover, body:not([data-theme]) .close:focus, body[data-theme="light"] .close:hover, body[data-theme="light"] .close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
  filter: alpha(opacity=50);
  opacity: 0.5;
}
/* line 30, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_close.scss */
body:not([data-theme]) button.close, body[data-theme="light"] button.close {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  appearance: none;
}
/* line 11, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
body:not([data-theme]) .modal-open, body[data-theme="light"] .modal-open {
  overflow: hidden;
}
/* line 16, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
body:not([data-theme]) .modal, body[data-theme="light"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
body:not([data-theme]) .modal.fade .modal-dialog, body[data-theme="light"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
body:not([data-theme]) .modal.in .modal-dialog, body[data-theme="light"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
body:not([data-theme]) .modal-open .modal, body[data-theme="light"] .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
/* line 44, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
body:not([data-theme]) .modal-dialog, body[data-theme="light"] .modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}
/* line 51, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
body:not([data-theme]) .modal-content, body[data-theme="light"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
body:not([data-theme]) .modal-backdrop, body[data-theme="light"] .modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
}
/* line 73, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
body:not([data-theme]) .modal-backdrop.fade, body[data-theme="light"] .modal-backdrop.fade {
  filter: alpha(opacity=0);
  opacity: 0;
}
/* line 74, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
body:not([data-theme]) .modal-backdrop.in, body[data-theme="light"] .modal-backdrop.in {
  filter: alpha(opacity=50);
  opacity: 0.5;
}
/* line 79, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
body:not([data-theme]) .modal-header, body[data-theme="light"] .modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
}
/* line 14, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
body:not([data-theme]) .modal-header:before, body:not([data-theme]) .modal-header:after, body[data-theme="light"] .modal-header:before, body[data-theme="light"] .modal-header:after {
  display: table;
  content: " ";
}
/* line 19, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
body:not([data-theme]) .modal-header:after, body[data-theme="light"] .modal-header:after {
  clear: both;
}
/* line 85, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
body:not([data-theme]) .modal-header .close, body[data-theme="light"] .modal-header .close {
  margin-top: -2px;
}
/* line 90, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
body:not([data-theme]) .modal-title, body[data-theme="light"] .modal-title {
  margin: 0;
  line-height: 1.428571429;
}
/* line 97, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
body:not([data-theme]) .modal-body, body[data-theme="light"] .modal-body {
  position: relative;
  padding: 15px;
}
/* line 103, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
body:not([data-theme]) .modal-footer, body[data-theme="light"] .modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}
/* line 14, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
body:not([data-theme]) .modal-footer:before, body:not([data-theme]) .modal-footer:after, body[data-theme="light"] .modal-footer:before, body[data-theme="light"] .modal-footer:after {
  display: table;
  content: " ";
}
/* line 19, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
body:not([data-theme]) .modal-footer:after, body[data-theme="light"] .modal-footer:after {
  clear: both;
}
/* line 110, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
body:not([data-theme]) .modal-footer .btn + .btn, body[data-theme="light"] .modal-footer .btn + .btn {
  margin-bottom: 0;
  margin-left: 5px;
}
/* line 115, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
body:not([data-theme]) .modal-footer .btn-group .btn + .btn, body[data-theme="light"] .modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}
/* line 119, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
body:not([data-theme]) .modal-footer .btn-block + .btn-block, body[data-theme="light"] .modal-footer .btn-block + .btn-block {
  margin-left: 0;
}
/* line 125, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
body:not([data-theme]) .modal-scrollbar-measure, body[data-theme="light"] .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 768px) {
  /* line 136, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
  body:not([data-theme]) .modal-dialog, body[data-theme="light"] .modal-dialog {
    width: 600px;
    margin: 30px auto;
  }
  /* line 140, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
  body:not([data-theme]) .modal-content, body[data-theme="light"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
  body:not([data-theme]) .modal-sm, body[data-theme="light"] .modal-sm {
    width: 300px;
  }
}
@media (min-width: 992px) {
  /* line 149, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
  body:not([data-theme]) .modal-lg, body[data-theme="light"] .modal-lg {
    width: 900px;
  }
}
/* line 7, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
body:not([data-theme]) .tooltip, body[data-theme="light"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
body:not([data-theme]) .tooltip.in, body[data-theme="light"] .tooltip.in {
  filter: alpha(opacity=90);
  opacity: 0.9;
}
/* line 19, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
body:not([data-theme]) .tooltip.top, body[data-theme="light"] .tooltip.top {
  padding: 5px 0;
  margin-top: -3px;
}
/* line 23, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
body:not([data-theme]) .tooltip.right, body[data-theme="light"] .tooltip.right {
  padding: 0 5px;
  margin-left: 3px;
}
/* line 27, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
body:not([data-theme]) .tooltip.bottom, body[data-theme="light"] .tooltip.bottom {
  padding: 5px 0;
  margin-top: 3px;
}
/* line 31, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
body:not([data-theme]) .tooltip.left, body[data-theme="light"] .tooltip.left {
  padding: 0 5px;
  margin-left: -3px;
}
/* line 37, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
body:not([data-theme]) .tooltip.top .tooltip-arrow, body[data-theme="light"] .tooltip.top .tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
/* line 44, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
body:not([data-theme]) .tooltip.top-left .tooltip-arrow, body[data-theme="light"] .tooltip.top-left .tooltip-arrow {
  right: 5px;
  bottom: 0;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
/* line 51, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
body:not([data-theme]) .tooltip.top-right .tooltip-arrow, body[data-theme="light"] .tooltip.top-right .tooltip-arrow {
  bottom: 0;
  left: 5px;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
/* line 58, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
body:not([data-theme]) .tooltip.right .tooltip-arrow, body[data-theme="light"] .tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: #000;
}
/* line 65, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
body:not([data-theme]) .tooltip.left .tooltip-arrow, body[data-theme="light"] .tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: #000;
}
/* line 72, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
body:not([data-theme]) .tooltip.bottom .tooltip-arrow, body[data-theme="light"] .tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
/* line 79, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
body:not([data-theme]) .tooltip.bottom-left .tooltip-arrow, body[data-theme="light"] .tooltip.bottom-left .tooltip-arrow {
  top: 0;
  right: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
/* line 86, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
body:not([data-theme]) .tooltip.bottom-right .tooltip-arrow, body[data-theme="light"] .tooltip.bottom-right .tooltip-arrow {
  top: 0;
  left: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
/* line 96, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
body:not([data-theme]) .tooltip-inner, body[data-theme="light"] .tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 4px;
}
/* line 106, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
body:not([data-theme]) .tooltip-arrow, body[data-theme="light"] .tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
/* line 6, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
body:not([data-theme]) .popover, body[data-theme="light"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
body:not([data-theme]) .popover.top, body[data-theme="light"] .popover.top {
  margin-top: -10px;
}
/* line 27, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
body:not([data-theme]) .popover.right, body[data-theme="light"] .popover.right {
  margin-left: 10px;
}
/* line 28, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
body:not([data-theme]) .popover.bottom, body[data-theme="light"] .popover.bottom {
  margin-top: 10px;
}
/* line 29, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
body:not([data-theme]) .popover.left, body[data-theme="light"] .popover.left {
  margin-left: -10px;
}
/* line 33, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
body:not([data-theme]) .popover > .arrow, body[data-theme="light"] .popover > .arrow {
  border-width: 11px;
}
/* line 36, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
body:not([data-theme]) .popover > .arrow, body:not([data-theme]) .popover > .arrow:after, body[data-theme="light"] .popover > .arrow, body[data-theme="light"] .popover > .arrow:after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
/* line 46, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
body:not([data-theme]) .popover > .arrow:after, body[data-theme="light"] .popover > .arrow:after {
  content: "";
  border-width: 10px;
}
/* line 52, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
body:not([data-theme]) .popover.top > .arrow, body[data-theme="light"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
body:not([data-theme]) .popover.top > .arrow:after, body[data-theme="light"] .popover.top > .arrow:after {
  bottom: 1px;
  margin-left: -10px;
  content: " ";
  border-top-color: #fff;
  border-bottom-width: 0;
}
/* line 67, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
body:not([data-theme]) .popover.right > .arrow, body[data-theme="light"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
body:not([data-theme]) .popover.right > .arrow:after, body[data-theme="light"] .popover.right > .arrow:after {
  bottom: -10px;
  left: 1px;
  content: " ";
  border-right-color: #fff;
  border-left-width: 0;
}
/* line 82, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
body:not([data-theme]) .popover.bottom > .arrow, body[data-theme="light"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
body:not([data-theme]) .popover.bottom > .arrow:after, body[data-theme="light"] .popover.bottom > .arrow:after {
  top: 1px;
  margin-left: -10px;
  content: " ";
  border-top-width: 0;
  border-bottom-color: #fff;
}
/* line 98, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
body:not([data-theme]) .popover.left > .arrow, body[data-theme="light"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
body:not([data-theme]) .popover.left > .arrow:after, body[data-theme="light"] .popover.left > .arrow:after {
  right: 1px;
  bottom: -10px;
  content: " ";
  border-right-width: 0;
  border-left-color: #fff;
}
/* line 115, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
body:not([data-theme]) .popover-title, body[data-theme="light"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
body:not([data-theme]) .popover-content, body[data-theme="light"] .popover-content {
  padding: 9px 14px;
}
/* line 7, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
body:not([data-theme]) .carousel, body[data-theme="light"] .carousel {
  position: relative;
}
/* line 11, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
body:not([data-theme]) .carousel-inner, body[data-theme="light"] .carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}
/* line 16, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
body:not([data-theme]) .carousel-inner > .item, body[data-theme="light"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
body:not([data-theme]) .carousel-inner > .item > img,
body:not([data-theme]) .carousel-inner > .item > a > img, body[data-theme="light"] .carousel-inner > .item > img,
body[data-theme="light"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
  body:not([data-theme]) .carousel-inner > .item, body[data-theme="light"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
  body:not([data-theme]) .carousel-inner > .item.next, body:not([data-theme]) .carousel-inner > .item.active.right, body[data-theme="light"] .carousel-inner > .item.next, body[data-theme="light"] .carousel-inner > .item.active.right {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    left: 0;
  }
  /* line 39, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
  body:not([data-theme]) .carousel-inner > .item.prev, body:not([data-theme]) .carousel-inner > .item.active.left, body[data-theme="light"] .carousel-inner > .item.prev, body[data-theme="light"] .carousel-inner > .item.active.left {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    left: 0;
  }
  /* line 44, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
  body:not([data-theme]) .carousel-inner > .item.next.left, body:not([data-theme]) .carousel-inner > .item.prev.right, body:not([data-theme]) .carousel-inner > .item.active, body[data-theme="light"] .carousel-inner > .item.next.left, body[data-theme="light"] .carousel-inner > .item.prev.right, body[data-theme="light"] .carousel-inner > .item.active {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    left: 0;
  }
}
/* line 53, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
body:not([data-theme]) .carousel-inner > .active,
body:not([data-theme]) .carousel-inner > .next,
body:not([data-theme]) .carousel-inner > .prev, body[data-theme="light"] .carousel-inner > .active,
body[data-theme="light"] .carousel-inner > .next,
body[data-theme="light"] .carousel-inner > .prev {
  display: block;
}
/* line 59, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
body:not([data-theme]) .carousel-inner > .active, body[data-theme="light"] .carousel-inner > .active {
  left: 0;
}
/* line 63, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
body:not([data-theme]) .carousel-inner > .next,
body:not([data-theme]) .carousel-inner > .prev, body[data-theme="light"] .carousel-inner > .next,
body[data-theme="light"] .carousel-inner > .prev {
  position: absolute;
  top: 0;
  width: 100%;
}
/* line 70, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
body:not([data-theme]) .carousel-inner > .next, body[data-theme="light"] .carousel-inner > .next {
  left: 100%;
}
/* line 73, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
body:not([data-theme]) .carousel-inner > .prev, body[data-theme="light"] .carousel-inner > .prev {
  left: -100%;
}
/* line 76, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
body:not([data-theme]) .carousel-inner > .next.left,
body:not([data-theme]) .carousel-inner > .prev.right, body[data-theme="light"] .carousel-inner > .next.left,
body[data-theme="light"] .carousel-inner > .prev.right {
  left: 0;
}
/* line 81, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
body:not([data-theme]) .carousel-inner > .active.left, body[data-theme="light"] .carousel-inner > .active.left {
  left: -100%;
}
/* line 84, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
body:not([data-theme]) .carousel-inner > .active.right, body[data-theme="light"] .carousel-inner > .active.right {
  left: 100%;
}
/* line 93, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
body:not([data-theme]) .carousel-control, body[data-theme="light"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
body:not([data-theme]) .carousel-control.left, body[data-theme="light"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
body:not([data-theme]) .carousel-control.right, body[data-theme="light"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
body:not([data-theme]) .carousel-control:hover, body:not([data-theme]) .carousel-control:focus, body[data-theme="light"] .carousel-control:hover, body[data-theme="light"] .carousel-control:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  filter: alpha(opacity=90);
  opacity: 0.9;
}
/* line 128, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
body:not([data-theme]) .carousel-control .icon-prev,
body:not([data-theme]) .carousel-control .icon-next,
body:not([data-theme]) .carousel-control .glyphicon-chevron-left,
body:not([data-theme]) .carousel-control .glyphicon-chevron-right,
body:not([data-theme]) .carousel-control .fa.fa-chevron-right, body[data-theme="light"] .carousel-control .icon-prev,
body[data-theme="light"] .carousel-control .icon-next,
body[data-theme="light"] .carousel-control .glyphicon-chevron-left,
body[data-theme="light"] .carousel-control .glyphicon-chevron-right,
body[data-theme="light"] .carousel-control .fa.fa-chevron-right {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: inline-block;
  margin-top: -10px;
}
/* line 138, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
body:not([data-theme]) .carousel-control .icon-prev,
body:not([data-theme]) .carousel-control .glyphicon-chevron-left, body[data-theme="light"] .carousel-control .icon-prev,
body[data-theme="light"] .carousel-control .glyphicon-chevron-left {
  left: 50%;
  margin-left: -10px;
}
/* line 143, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
body:not([data-theme]) .carousel-control .icon-next,
body:not([data-theme]) .carousel-control .glyphicon-chevron-right,
body:not([data-theme]) .carousel-control .fa.fa-chevron-right, body[data-theme="light"] .carousel-control .icon-next,
body[data-theme="light"] .carousel-control .glyphicon-chevron-right,
body[data-theme="light"] .carousel-control .fa.fa-chevron-right {
  right: 50%;
  margin-right: -10px;
}
/* line 148, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
body:not([data-theme]) .carousel-control .icon-prev,
body:not([data-theme]) .carousel-control .icon-next, body[data-theme="light"] .carousel-control .icon-prev,
body[data-theme="light"] .carousel-control .icon-next {
  width: 20px;
  height: 20px;
  font-family: serif;
  line-height: 1;
}
/* line 157, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
body:not([data-theme]) .carousel-control .icon-prev:before, body[data-theme="light"] .carousel-control .icon-prev:before {
  content: "\2039";
}
/* line 162, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
body:not([data-theme]) .carousel-control .icon-next:before, body[data-theme="light"] .carousel-control .icon-next:before {
  content: "\203a";
}
/* line 173, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
body:not([data-theme]) .carousel-indicators, body[data-theme="light"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
body:not([data-theme]) .carousel-indicators li, body[data-theme="light"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
body:not([data-theme]) .carousel-indicators .active, body[data-theme="light"] .carousel-indicators .active {
  width: 12px;
  height: 12px;
  margin: 0;
  background-color: #fff;
}
/* line 218, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
body:not([data-theme]) .carousel-caption, body[data-theme="light"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
body:not([data-theme]) .carousel-caption .btn, body[data-theme="light"] .carousel-caption .btn {
  text-shadow: none;
}
@media screen and (min-width: 768px) {
  /* line 241, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
  body:not([data-theme]) .carousel-control .glyphicon-chevron-left,
  body:not([data-theme]) .carousel-control .glyphicon-chevron-right,
  body:not([data-theme]) .carousel-control .fa.fa-chevron-right,
  body:not([data-theme]) .carousel-control .icon-prev,
  body:not([data-theme]) .carousel-control .icon-next, body[data-theme="light"] .carousel-control .glyphicon-chevron-left,
  body[data-theme="light"] .carousel-control .glyphicon-chevron-right,
  body[data-theme="light"] .carousel-control .fa.fa-chevron-right,
  body[data-theme="light"] .carousel-control .icon-prev,
  body[data-theme="light"] .carousel-control .icon-next {
    width: 30px;
    height: 30px;
    margin-top: -10px;
    font-size: 30px;
  }
  /* line 250, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
  body:not([data-theme]) .carousel-control .glyphicon-chevron-left,
  body:not([data-theme]) .carousel-control .icon-prev, body[data-theme="light"] .carousel-control .glyphicon-chevron-left,
  body[data-theme="light"] .carousel-control .icon-prev {
    margin-left: -10px;
  }
  /* line 254, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
  body:not([data-theme]) .carousel-control .glyphicon-chevron-right, body:not([data-theme]) .carousel-control .fa.fa-chevron-right,
  body:not([data-theme]) .carousel-control .icon-next, body[data-theme="light"] .carousel-control .glyphicon-chevron-right, body[data-theme="light"] .carousel-control .fa.fa-chevron-right,
  body[data-theme="light"] .carousel-control .icon-next {
    margin-right: -10px;
  }
  /* line 261, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
  body:not([data-theme]) .carousel-caption, body[data-theme="light"] .carousel-caption {
    right: 20%;
    left: 20%;
    padding-bottom: 30px;
  }
  /* line 268, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
  body:not([data-theme]) .carousel-indicators, body[data-theme="light"] .carousel-indicators {
    bottom: 20px;
  }
}
/* line 14, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
body:not([data-theme]) .clearfix:before, body:not([data-theme]) .clearfix:after, body[data-theme="light"] .clearfix:before, body[data-theme="light"] .clearfix:after {
  display: table;
  content: " ";
}
/* line 19, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
body:not([data-theme]) .clearfix:after, body[data-theme="light"] .clearfix:after {
  clear: both;
}
/* line 12, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_utilities.scss */
body:not([data-theme]) .center-block, body[data-theme="light"] .center-block {
  display: block;
  margin-right: auto;
  margin-left: auto;
}
/* line 15, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_utilities.scss */
body:not([data-theme]) .pull-right, body[data-theme="light"] .pull-right {
  float: right !important;
}
/* line 18, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_utilities.scss */
body:not([data-theme]) .pull-left, body[data-theme="light"] .pull-left {
  float: left !important;
}
/* line 27, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_utilities.scss */
body:not([data-theme]) .hide, body[data-theme="light"] .hide {
  display: none !important;
}
/* line 30, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_utilities.scss */
body:not([data-theme]) .show, body[data-theme="light"] .show {
  display: block !important;
}
/* line 33, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_utilities.scss */
body:not([data-theme]) .invisible, body[data-theme="light"] .invisible {
  visibility: hidden;
}
/* line 36, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_utilities.scss */
body:not([data-theme]) .text-hide, body[data-theme="light"] .text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
/* line 45, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_utilities.scss */
body:not([data-theme]) .hidden, body[data-theme="light"] .hidden {
  display: none !important;
}
/* line 53, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_utilities.scss */
body:not([data-theme]) .affix, body[data-theme="light"] .affix {
  position: fixed;
}
@-ms-viewport {
  width: device-width;
}
/* line 14, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
body:not([data-theme]) .visible-xs, body[data-theme="light"] .visible-xs {
  display: none !important;
}
/* line 14, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
body:not([data-theme]) .visible-sm, body[data-theme="light"] .visible-sm {
  display: none !important;
}
/* line 14, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
body:not([data-theme]) .visible-md, body[data-theme="light"] .visible-md {
  display: none !important;
}
/* line 14, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
body:not([data-theme]) .visible-lg, body[data-theme="light"] .visible-lg {
  display: none !important;
}
/* line 36, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
body:not([data-theme]) .visible-xs-block,
body:not([data-theme]) .visible-xs-inline,
body:not([data-theme]) .visible-xs-inline-block,
body:not([data-theme]) .visible-sm-block,
body:not([data-theme]) .visible-sm-inline,
body:not([data-theme]) .visible-sm-inline-block,
body:not([data-theme]) .visible-md-block,
body:not([data-theme]) .visible-md-inline,
body:not([data-theme]) .visible-md-inline-block,
body:not([data-theme]) .visible-lg-block,
body:not([data-theme]) .visible-lg-inline,
body:not([data-theme]) .visible-lg-inline-block, body[data-theme="light"] .visible-xs-block,
body[data-theme="light"] .visible-xs-inline,
body[data-theme="light"] .visible-xs-inline-block,
body[data-theme="light"] .visible-sm-block,
body[data-theme="light"] .visible-sm-inline,
body[data-theme="light"] .visible-sm-inline-block,
body[data-theme="light"] .visible-md-block,
body[data-theme="light"] .visible-md-inline,
body[data-theme="light"] .visible-md-inline-block,
body[data-theme="light"] .visible-lg-block,
body[data-theme="light"] .visible-lg-inline,
body[data-theme="light"] .visible-lg-inline-block {
  display: none !important;
}
@media (max-width: 767px) {
  /* line 3, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  body:not([data-theme]) .visible-xs, body[data-theme="light"] .visible-xs {
    display: block !important;
  }
  /* line 6, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  body:not([data-theme]) table.visible-xs, body[data-theme="light"] table.visible-xs {
    display: table !important;
  }
  /* line 7, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  body:not([data-theme]) tr.visible-xs, body[data-theme="light"] tr.visible-xs {
    display: table-row !important;
  }
  /* line 8, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  body:not([data-theme]) th.visible-xs,
  body:not([data-theme]) td.visible-xs, body[data-theme="light"] th.visible-xs,
  body[data-theme="light"] td.visible-xs {
    display: table-cell !important;
  }
}
@media (max-width: 767px) {
  /* line 54, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  body:not([data-theme]) .visible-xs-block, body[data-theme="light"] .visible-xs-block {
    display: block !important;
  }
}
@media (max-width: 767px) {
  /* line 59, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  body:not([data-theme]) .visible-xs-inline, body[data-theme="light"] .visible-xs-inline {
    display: inline !important;
  }
}
@media (max-width: 767px) {
  /* line 64, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  body:not([data-theme]) .visible-xs-inline-block, body[data-theme="light"] .visible-xs-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  /* line 3, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  body:not([data-theme]) .visible-sm, body[data-theme="light"] .visible-sm {
    display: block !important;
  }
  /* line 6, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  body:not([data-theme]) table.visible-sm, body[data-theme="light"] table.visible-sm {
    display: table !important;
  }
  /* line 7, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  body:not([data-theme]) tr.visible-sm, body[data-theme="light"] tr.visible-sm {
    display: table-row !important;
  }
  /* line 8, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  body:not([data-theme]) th.visible-sm,
  body:not([data-theme]) td.visible-sm, body[data-theme="light"] th.visible-sm,
  body[data-theme="light"] td.visible-sm {
    display: table-cell !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  /* line 73, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  body:not([data-theme]) .visible-sm-block, body[data-theme="light"] .visible-sm-block {
    display: block !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  /* line 78, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  body:not([data-theme]) .visible-sm-inline, body[data-theme="light"] .visible-sm-inline {
    display: inline !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  /* line 83, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  body:not([data-theme]) .visible-sm-inline-block, body[data-theme="light"] .visible-sm-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  /* line 3, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  body:not([data-theme]) .visible-md, body[data-theme="light"] .visible-md {
    display: block !important;
  }
  /* line 6, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  body:not([data-theme]) table.visible-md, body[data-theme="light"] table.visible-md {
    display: table !important;
  }
  /* line 7, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  body:not([data-theme]) tr.visible-md, body[data-theme="light"] tr.visible-md {
    display: table-row !important;
  }
  /* line 8, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  body:not([data-theme]) th.visible-md,
  body:not([data-theme]) td.visible-md, body[data-theme="light"] th.visible-md,
  body[data-theme="light"] td.visible-md {
    display: table-cell !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  /* line 92, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  body:not([data-theme]) .visible-md-block, body[data-theme="light"] .visible-md-block {
    display: block !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  /* line 97, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  body:not([data-theme]) .visible-md-inline, body[data-theme="light"] .visible-md-inline {
    display: inline !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  /* line 102, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  body:not([data-theme]) .visible-md-inline-block, body[data-theme="light"] .visible-md-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 1200px) {
  /* line 3, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  body:not([data-theme]) .visible-lg, body[data-theme="light"] .visible-lg {
    display: block !important;
  }
  /* line 6, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  body:not([data-theme]) table.visible-lg, body[data-theme="light"] table.visible-lg {
    display: table !important;
  }
  /* line 7, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  body:not([data-theme]) tr.visible-lg, body[data-theme="light"] tr.visible-lg {
    display: table-row !important;
  }
  /* line 8, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  body:not([data-theme]) th.visible-lg,
  body:not([data-theme]) td.visible-lg, body[data-theme="light"] th.visible-lg,
  body[data-theme="light"] td.visible-lg {
    display: table-cell !important;
  }
}
@media (min-width: 1200px) {
  /* line 111, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  body:not([data-theme]) .visible-lg-block, body[data-theme="light"] .visible-lg-block {
    display: block !important;
  }
}
@media (min-width: 1200px) {
  /* line 116, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  body:not([data-theme]) .visible-lg-inline, body[data-theme="light"] .visible-lg-inline {
    display: inline !important;
  }
}
@media (min-width: 1200px) {
  /* line 121, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  body:not([data-theme]) .visible-lg-inline-block, body[data-theme="light"] .visible-lg-inline-block {
    display: inline-block !important;
  }
}
@media (max-width: 767px) {
  /* line 14, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  body:not([data-theme]) .hidden-xs, body[data-theme="light"] .hidden-xs {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  /* line 14, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  body:not([data-theme]) .hidden-sm, body[data-theme="light"] .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  /* line 14, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  body:not([data-theme]) .hidden-md, body[data-theme="light"] .hidden-md {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  /* line 14, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  body:not([data-theme]) .hidden-lg, body[data-theme="light"] .hidden-lg {
    display: none !important;
  }
}
/* line 14, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
body:not([data-theme]) .visible-print, body[data-theme="light"] .visible-print {
  display: none !important;
}
@media print {
  /* line 3, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  body:not([data-theme]) .visible-print, body[data-theme="light"] .visible-print {
    display: block !important;
  }
  /* line 6, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  body:not([data-theme]) table.visible-print, body[data-theme="light"] table.visible-print {
    display: table !important;
  }
  /* line 7, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  body:not([data-theme]) tr.visible-print, body[data-theme="light"] tr.visible-print {
    display: table-row !important;
  }
  /* line 8, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  body:not([data-theme]) th.visible-print,
  body:not([data-theme]) td.visible-print, body[data-theme="light"] th.visible-print,
  body[data-theme="light"] td.visible-print {
    display: table-cell !important;
  }
}
/* line 155, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
body:not([data-theme]) .visible-print-block, body[data-theme="light"] .visible-print-block {
  display: none !important;
}
@media print {
  /* line 155, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  body:not([data-theme]) .visible-print-block, body[data-theme="light"] .visible-print-block {
    display: block !important;
  }
}
/* line 162, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
body:not([data-theme]) .visible-print-inline, body[data-theme="light"] .visible-print-inline {
  display: none !important;
}
@media print {
  /* line 162, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  body:not([data-theme]) .visible-print-inline, body[data-theme="light"] .visible-print-inline {
    display: inline !important;
  }
}
/* line 169, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
body:not([data-theme]) .visible-print-inline-block, body[data-theme="light"] .visible-print-inline-block {
  display: none !important;
}
@media print {
  /* line 169, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  body:not([data-theme]) .visible-print-inline-block, body[data-theme="light"] .visible-print-inline-block {
    display: inline-block !important;
  }
}
@media print {
  /* line 14, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  body:not([data-theme]) .hidden-print, body[data-theme="light"] .hidden-print {
    display: none !important;
  }
}
/* line 20, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_theme.scss */
body:not([data-theme]) .btn-default, body:not([data-theme]) .btn-primary, body:not([data-theme]) .btn-success, body:not([data-theme]) .btn-info, body:not([data-theme]) .btn-warning, body:not([data-theme]) .btn-danger, body[data-theme="light"] .btn-default, body[data-theme="light"] .btn-primary, body[data-theme="light"] .btn-success, body[data-theme="light"] .btn-info, body[data-theme="light"] .btn-warning, body[data-theme="light"] .btn-danger {
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
}
/* line 31, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_theme.scss */
body:not([data-theme]) .btn-default:active, body:not([data-theme]) .btn-default.active,
body:not([data-theme]) .btn-primary:active,
body:not([data-theme]) .btn-primary.active,
body:not([data-theme]) .btn-success:active,
body:not([data-theme]) .btn-success.active,
body:not([data-theme]) .btn-info:active,
body:not([data-theme]) .btn-info.active,
body:not([data-theme]) .btn-warning:active,
body:not([data-theme]) .btn-warning.active,
body:not([data-theme]) .btn-danger:active,
body:not([data-theme]) .btn-danger.active, body[data-theme="light"] .btn-default:active, body[data-theme="light"] .btn-default.active,
body[data-theme="light"] .btn-primary:active,
body[data-theme="light"] .btn-primary.active,
body[data-theme="light"] .btn-success:active,
body[data-theme="light"] .btn-success.active,
body[data-theme="light"] .btn-info:active,
body[data-theme="light"] .btn-info.active,
body[data-theme="light"] .btn-warning:active,
body[data-theme="light"] .btn-warning.active,
body[data-theme="light"] .btn-danger:active,
body[data-theme="light"] .btn-danger.active {
  -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 36, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_theme.scss */
body:not([data-theme]) .btn-default.disabled, body:not([data-theme]) .btn-default[disabled], fieldset[disabled] body:not([data-theme]) .btn-default,
body:not([data-theme]) .btn-primary.disabled,
body:not([data-theme]) .btn-primary[disabled],
fieldset[disabled] body:not([data-theme]) .btn-primary,
body:not([data-theme]) .btn-success.disabled,
body:not([data-theme]) .btn-success[disabled],
fieldset[disabled] body:not([data-theme]) .btn-success,
body:not([data-theme]) .btn-info.disabled,
body:not([data-theme]) .btn-info[disabled],
fieldset[disabled] body:not([data-theme]) .btn-info,
body:not([data-theme]) .btn-warning.disabled,
body:not([data-theme]) .btn-warning[disabled],
fieldset[disabled] body:not([data-theme]) .btn-warning,
body:not([data-theme]) .btn-danger.disabled,
body:not([data-theme]) .btn-danger[disabled],
fieldset[disabled] body:not([data-theme]) .btn-danger, body[data-theme="light"] .btn-default.disabled, body[data-theme="light"] .btn-default[disabled],
fieldset[disabled] body[data-theme="light"] .btn-default,
body[data-theme="light"] .btn-primary.disabled,
body[data-theme="light"] .btn-primary[disabled],
fieldset[disabled] body[data-theme="light"] .btn-primary,
body[data-theme="light"] .btn-success.disabled,
body[data-theme="light"] .btn-success[disabled],
fieldset[disabled] body[data-theme="light"] .btn-success,
body[data-theme="light"] .btn-info.disabled,
body[data-theme="light"] .btn-info[disabled],
fieldset[disabled] body[data-theme="light"] .btn-info,
body[data-theme="light"] .btn-warning.disabled,
body[data-theme="light"] .btn-warning[disabled],
fieldset[disabled] body[data-theme="light"] .btn-warning,
body[data-theme="light"] .btn-danger.disabled,
body[data-theme="light"] .btn-danger[disabled],
fieldset[disabled] body[data-theme="light"] .btn-danger {
  -webkit-box-shadow: none;
  box-shadow: none;
}
/* line 42, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_theme.scss */
body:not([data-theme]) .btn-default .badge, body:not([data-theme]) .btn-primary .badge, body:not([data-theme]) .btn-success .badge, body:not([data-theme]) .btn-info .badge, body:not([data-theme]) .btn-warning .badge, body:not([data-theme]) .btn-danger .badge, body[data-theme="light"] .btn-default .badge, body[data-theme="light"] .btn-primary .badge, body[data-theme="light"] .btn-success .badge, body[data-theme="light"] .btn-info .badge, body[data-theme="light"] .btn-warning .badge, body[data-theme="light"] .btn-danger .badge {
  text-shadow: none;
}
/* line 84, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_theme.scss */
body:not([data-theme]) .btn:active, body:not([data-theme]) .btn.active, body[data-theme="light"] .btn:active, body[data-theme="light"] .btn.active {
  background-image: none;
}
/* line 91, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_theme.scss */
body:not([data-theme]) .btn-default, body[data-theme="light"] .btn-default {
  background-image: -webkit-linear-gradient(top, #fff 0%, #e0e0e0 100%);
  background-image: -o-linear-gradient(top, #fff 0%, #e0e0e0 100%);
  background-image: linear-gradient(to bottom, #fff 0%, #e0e0e0 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFE0E0E0', GradientType=0);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  background-repeat: repeat-x;
  border-color: #dbdbdb;
  text-shadow: 0 1px 0 #fff;
  border-color: #ccc;
}
/* line 54, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_theme.scss */
body:not([data-theme]) .btn-default:hover, body:not([data-theme]) .btn-default:focus, body[data-theme="light"] .btn-default:hover, body[data-theme="light"] .btn-default:focus {
  background-color: #e0e0e0;
  background-position: 0 -15px;
}
/* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_theme.scss */
body:not([data-theme]) .btn-default:active, body:not([data-theme]) .btn-default.active, body[data-theme="light"] .btn-default:active, body[data-theme="light"] .btn-default.active {
  background-color: #e0e0e0;
  border-color: #dbdbdb;
}
/* line 69, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_theme.scss */
body:not([data-theme]) .btn-default.disabled, body:not([data-theme]) .btn-default.disabled:hover, body:not([data-theme]) .btn-default.disabled:focus, body:not([data-theme]) .btn-default.disabled.focus, body:not([data-theme]) .btn-default.disabled:active, body:not([data-theme]) .btn-default.disabled.active, body:not([data-theme]) .btn-default[disabled], body:not([data-theme]) .btn-default[disabled]:hover, body:not([data-theme]) .btn-default[disabled]:focus, body:not([data-theme]) .btn-default[disabled].focus, body:not([data-theme]) .btn-default[disabled]:active, body:not([data-theme]) .btn-default[disabled].active, fieldset[disabled] body:not([data-theme]) .btn-default, fieldset[disabled] body:not([data-theme]) .btn-default:hover, fieldset[disabled] body:not([data-theme]) .btn-default:focus, fieldset[disabled] body:not([data-theme]) .btn-default.focus, fieldset[disabled] body:not([data-theme]) .btn-default:active, fieldset[disabled] body:not([data-theme]) .btn-default.active, body[data-theme="light"] .btn-default.disabled, body[data-theme="light"] .btn-default.disabled:hover, body[data-theme="light"] .btn-default.disabled:focus, body[data-theme="light"] .btn-default.disabled.focus, body[data-theme="light"] .btn-default.disabled:active, body[data-theme="light"] .btn-default.disabled.active, body[data-theme="light"] .btn-default[disabled], body[data-theme="light"] .btn-default[disabled]:hover, body[data-theme="light"] .btn-default[disabled]:focus, body[data-theme="light"] .btn-default[disabled].focus, body[data-theme="light"] .btn-default[disabled]:active, body[data-theme="light"] .btn-default[disabled].active, fieldset[disabled] body[data-theme="light"] .btn-default, fieldset[disabled] body[data-theme="light"] .btn-default:hover, fieldset[disabled] body[data-theme="light"] .btn-default:focus, fieldset[disabled] body[data-theme="light"] .btn-default.focus, fieldset[disabled] body[data-theme="light"] .btn-default:active, fieldset[disabled] body[data-theme="light"] .btn-default.active {
  background-color: #e0e0e0;
  background-image: none;
}
/* line 96, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_theme.scss */
body:not([data-theme]) .btn-primary, body[data-theme="light"] .btn-primary {
  background-image: -webkit-linear-gradient(top, #337ab7 0%, #265a88 100%);
  background-image: -o-linear-gradient(top, #337ab7 0%, #265a88 100%);
  background-image: linear-gradient(to bottom, #337ab7 0%, #265a88 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF337AB7', endColorstr='#FF265A88', GradientType=0);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  background-repeat: repeat-x;
  border-color: #245580;
}
/* line 54, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_theme.scss */
body:not([data-theme]) .btn-primary:hover, body:not([data-theme]) .btn-primary:focus, body[data-theme="light"] .btn-primary:hover, body[data-theme="light"] .btn-primary:focus {
  background-color: #265a88;
  background-position: 0 -15px;
}
/* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_theme.scss */
body:not([data-theme]) .btn-primary:active, body:not([data-theme]) .btn-primary.active, body[data-theme="light"] .btn-primary:active, body[data-theme="light"] .btn-primary.active {
  background-color: #265a88;
  border-color: #245580;
}
/* line 69, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_theme.scss */
body:not([data-theme]) .btn-primary.disabled, body:not([data-theme]) .btn-primary.disabled:hover, body:not([data-theme]) .btn-primary.disabled:focus, body:not([data-theme]) .btn-primary.disabled.focus, body:not([data-theme]) .btn-primary.disabled:active, body:not([data-theme]) .btn-primary.disabled.active, body:not([data-theme]) .btn-primary[disabled], body:not([data-theme]) .btn-primary[disabled]:hover, body:not([data-theme]) .btn-primary[disabled]:focus, body:not([data-theme]) .btn-primary[disabled].focus, body:not([data-theme]) .btn-primary[disabled]:active, body:not([data-theme]) .btn-primary[disabled].active, fieldset[disabled] body:not([data-theme]) .btn-primary, fieldset[disabled] body:not([data-theme]) .btn-primary:hover, fieldset[disabled] body:not([data-theme]) .btn-primary:focus, fieldset[disabled] body:not([data-theme]) .btn-primary.focus, fieldset[disabled] body:not([data-theme]) .btn-primary:active, fieldset[disabled] body:not([data-theme]) .btn-primary.active, body[data-theme="light"] .btn-primary.disabled, body[data-theme="light"] .btn-primary.disabled:hover, body[data-theme="light"] .btn-primary.disabled:focus, body[data-theme="light"] .btn-primary.disabled.focus, body[data-theme="light"] .btn-primary.disabled:active, body[data-theme="light"] .btn-primary.disabled.active, body[data-theme="light"] .btn-primary[disabled], body[data-theme="light"] .btn-primary[disabled]:hover, body[data-theme="light"] .btn-primary[disabled]:focus, body[data-theme="light"] .btn-primary[disabled].focus, body[data-theme="light"] .btn-primary[disabled]:active, body[data-theme="light"] .btn-primary[disabled].active, fieldset[disabled] body[data-theme="light"] .btn-primary, fieldset[disabled] body[data-theme="light"] .btn-primary:hover, fieldset[disabled] body[data-theme="light"] .btn-primary:focus, fieldset[disabled] body[data-theme="light"] .btn-primary.focus, fieldset[disabled] body[data-theme="light"] .btn-primary:active, fieldset[disabled] body[data-theme="light"] .btn-primary.active {
  background-color: #265a88;
  background-image: none;
}
/* line 97, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_theme.scss */
body:not([data-theme]) .btn-success, body[data-theme="light"] .btn-success {
  background-image: -webkit-linear-gradient(top, #5cb85c 0%, #419641 100%);
  background-image: -o-linear-gradient(top, #5cb85c 0%, #419641 100%);
  background-image: linear-gradient(to bottom, #5cb85c 0%, #419641 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF5CB85C', endColorstr='#FF419641', GradientType=0);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  background-repeat: repeat-x;
  border-color: #3e8f3e;
}
/* line 54, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_theme.scss */
body:not([data-theme]) .btn-success:hover, body:not([data-theme]) .btn-success:focus, body[data-theme="light"] .btn-success:hover, body[data-theme="light"] .btn-success:focus {
  background-color: #419641;
  background-position: 0 -15px;
}
/* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_theme.scss */
body:not([data-theme]) .btn-success:active, body:not([data-theme]) .btn-success.active, body[data-theme="light"] .btn-success:active, body[data-theme="light"] .btn-success.active {
  background-color: #419641;
  border-color: #3e8f3e;
}
/* line 69, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_theme.scss */
body:not([data-theme]) .btn-success.disabled, body:not([data-theme]) .btn-success.disabled:hover, body:not([data-theme]) .btn-success.disabled:focus, body:not([data-theme]) .btn-success.disabled.focus, body:not([data-theme]) .btn-success.disabled:active, body:not([data-theme]) .btn-success.disabled.active, body:not([data-theme]) .btn-success[disabled], body:not([data-theme]) .btn-success[disabled]:hover, body:not([data-theme]) .btn-success[disabled]:focus, body:not([data-theme]) .btn-success[disabled].focus, body:not([data-theme]) .btn-success[disabled]:active, body:not([data-theme]) .btn-success[disabled].active, fieldset[disabled] body:not([data-theme]) .btn-success, fieldset[disabled] body:not([data-theme]) .btn-success:hover, fieldset[disabled] body:not([data-theme]) .btn-success:focus, fieldset[disabled] body:not([data-theme]) .btn-success.focus, fieldset[disabled] body:not([data-theme]) .btn-success:active, fieldset[disabled] body:not([data-theme]) .btn-success.active, body[data-theme="light"] .btn-success.disabled, body[data-theme="light"] .btn-success.disabled:hover, body[data-theme="light"] .btn-success.disabled:focus, body[data-theme="light"] .btn-success.disabled.focus, body[data-theme="light"] .btn-success.disabled:active, body[data-theme="light"] .btn-success.disabled.active, body[data-theme="light"] .btn-success[disabled], body[data-theme="light"] .btn-success[disabled]:hover, body[data-theme="light"] .btn-success[disabled]:focus, body[data-theme="light"] .btn-success[disabled].focus, body[data-theme="light"] .btn-success[disabled]:active, body[data-theme="light"] .btn-success[disabled].active, fieldset[disabled] body[data-theme="light"] .btn-success, fieldset[disabled] body[data-theme="light"] .btn-success:hover, fieldset[disabled] body[data-theme="light"] .btn-success:focus, fieldset[disabled] body[data-theme="light"] .btn-success.focus, fieldset[disabled] body[data-theme="light"] .btn-success:active, fieldset[disabled] body[data-theme="light"] .btn-success.active {
  background-color: #419641;
  background-image: none;
}
/* line 98, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_theme.scss */
body:not([data-theme]) .btn-info, body[data-theme="light"] .btn-info {
  background-image: -webkit-linear-gradient(top, #5bc0de 0%, #2aabd2 100%);
  background-image: -o-linear-gradient(top, #5bc0de 0%, #2aabd2 100%);
  background-image: linear-gradient(to bottom, #5bc0de 0%, #2aabd2 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF5BC0DE', endColorstr='#FF2AABD2', GradientType=0);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  background-repeat: repeat-x;
  border-color: #28a4c9;
}
/* line 54, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_theme.scss */
body:not([data-theme]) .btn-info:hover, body:not([data-theme]) .btn-info:focus, body[data-theme="light"] .btn-info:hover, body[data-theme="light"] .btn-info:focus {
  background-color: #2aabd2;
  background-position: 0 -15px;
}
/* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_theme.scss */
body:not([data-theme]) .btn-info:active, body:not([data-theme]) .btn-info.active, body[data-theme="light"] .btn-info:active, body[data-theme="light"] .btn-info.active {
  background-color: #2aabd2;
  border-color: #28a4c9;
}
/* line 69, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_theme.scss */
body:not([data-theme]) .btn-info.disabled, body:not([data-theme]) .btn-info.disabled:hover, body:not([data-theme]) .btn-info.disabled:focus, body:not([data-theme]) .btn-info.disabled.focus, body:not([data-theme]) .btn-info.disabled:active, body:not([data-theme]) .btn-info.disabled.active, body:not([data-theme]) .btn-info[disabled], body:not([data-theme]) .btn-info[disabled]:hover, body:not([data-theme]) .btn-info[disabled]:focus, body:not([data-theme]) .btn-info[disabled].focus, body:not([data-theme]) .btn-info[disabled]:active, body:not([data-theme]) .btn-info[disabled].active, fieldset[disabled] body:not([data-theme]) .btn-info, fieldset[disabled] body:not([data-theme]) .btn-info:hover, fieldset[disabled] body:not([data-theme]) .btn-info:focus, fieldset[disabled] body:not([data-theme]) .btn-info.focus, fieldset[disabled] body:not([data-theme]) .btn-info:active, fieldset[disabled] body:not([data-theme]) .btn-info.active, body[data-theme="light"] .btn-info.disabled, body[data-theme="light"] .btn-info.disabled:hover, body[data-theme="light"] .btn-info.disabled:focus, body[data-theme="light"] .btn-info.disabled.focus, body[data-theme="light"] .btn-info.disabled:active, body[data-theme="light"] .btn-info.disabled.active, body[data-theme="light"] .btn-info[disabled], body[data-theme="light"] .btn-info[disabled]:hover, body[data-theme="light"] .btn-info[disabled]:focus, body[data-theme="light"] .btn-info[disabled].focus, body[data-theme="light"] .btn-info[disabled]:active, body[data-theme="light"] .btn-info[disabled].active, fieldset[disabled] body[data-theme="light"] .btn-info, fieldset[disabled] body[data-theme="light"] .btn-info:hover, fieldset[disabled] body[data-theme="light"] .btn-info:focus, fieldset[disabled] body[data-theme="light"] .btn-info.focus, fieldset[disabled] body[data-theme="light"] .btn-info:active, fieldset[disabled] body[data-theme="light"] .btn-info.active {
  background-color: #2aabd2;
  background-image: none;
}
/* line 99, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_theme.scss */
body:not([data-theme]) .btn-warning, body[data-theme="light"] .btn-warning {
  background-image: -webkit-linear-gradient(top, #f0ad4e 0%, #eb9316 100%);
  background-image: -o-linear-gradient(top, #f0ad4e 0%, #eb9316 100%);
  background-image: linear-gradient(to bottom, #f0ad4e 0%, #eb9316 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFF0AD4E', endColorstr='#FFEB9316', GradientType=0);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  background-repeat: repeat-x;
  border-color: #e38d13;
}
/* line 54, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_theme.scss */
body:not([data-theme]) .btn-warning:hover, body:not([data-theme]) .btn-warning:focus, body[data-theme="light"] .btn-warning:hover, body[data-theme="light"] .btn-warning:focus {
  background-color: #eb9316;
  background-position: 0 -15px;
}
/* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_theme.scss */
body:not([data-theme]) .btn-warning:active, body:not([data-theme]) .btn-warning.active, body[data-theme="light"] .btn-warning:active, body[data-theme="light"] .btn-warning.active {
  background-color: #eb9316;
  border-color: #e38d13;
}
/* line 69, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_theme.scss */
body:not([data-theme]) .btn-warning.disabled, body:not([data-theme]) .btn-warning.disabled:hover, body:not([data-theme]) .btn-warning.disabled:focus, body:not([data-theme]) .btn-warning.disabled.focus, body:not([data-theme]) .btn-warning.disabled:active, body:not([data-theme]) .btn-warning.disabled.active, body:not([data-theme]) .btn-warning[disabled], body:not([data-theme]) .btn-warning[disabled]:hover, body:not([data-theme]) .btn-warning[disabled]:focus, body:not([data-theme]) .btn-warning[disabled].focus, body:not([data-theme]) .btn-warning[disabled]:active, body:not([data-theme]) .btn-warning[disabled].active, fieldset[disabled] body:not([data-theme]) .btn-warning, fieldset[disabled] body:not([data-theme]) .btn-warning:hover, fieldset[disabled] body:not([data-theme]) .btn-warning:focus, fieldset[disabled] body:not([data-theme]) .btn-warning.focus, fieldset[disabled] body:not([data-theme]) .btn-warning:active, fieldset[disabled] body:not([data-theme]) .btn-warning.active, body[data-theme="light"] .btn-warning.disabled, body[data-theme="light"] .btn-warning.disabled:hover, body[data-theme="light"] .btn-warning.disabled:focus, body[data-theme="light"] .btn-warning.disabled.focus, body[data-theme="light"] .btn-warning.disabled:active, body[data-theme="light"] .btn-warning.disabled.active, body[data-theme="light"] .btn-warning[disabled], body[data-theme="light"] .btn-warning[disabled]:hover, body[data-theme="light"] .btn-warning[disabled]:focus, body[data-theme="light"] .btn-warning[disabled].focus, body[data-theme="light"] .btn-warning[disabled]:active, body[data-theme="light"] .btn-warning[disabled].active, fieldset[disabled] body[data-theme="light"] .btn-warning, fieldset[disabled] body[data-theme="light"] .btn-warning:hover, fieldset[disabled] body[data-theme="light"] .btn-warning:focus, fieldset[disabled] body[data-theme="light"] .btn-warning.focus, fieldset[disabled] body[data-theme="light"] .btn-warning:active, fieldset[disabled] body[data-theme="light"] .btn-warning.active {
  background-color: #eb9316;
  background-image: none;
}
/* line 100, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_theme.scss */
body:not([data-theme]) .btn-danger, body[data-theme="light"] .btn-danger {
  background-image: -webkit-linear-gradient(top, #d9534f 0%, #c12e2a 100%);
  background-image: -o-linear-gradient(top, #d9534f 0%, #c12e2a 100%);
  background-image: linear-gradient(to bottom, #d9534f 0%, #c12e2a 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFD9534F', endColorstr='#FFC12E2A', GradientType=0);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  background-repeat: repeat-x;
  border-color: #b92c28;
}
/* line 54, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_theme.scss */
body:not([data-theme]) .btn-danger:hover, body:not([data-theme]) .btn-danger:focus, body[data-theme="light"] .btn-danger:hover, body[data-theme="light"] .btn-danger:focus {
  background-color: #c12e2a;
  background-position: 0 -15px;
}
/* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_theme.scss */
body:not([data-theme]) .btn-danger:active, body:not([data-theme]) .btn-danger.active, body[data-theme="light"] .btn-danger:active, body[data-theme="light"] .btn-danger.active {
  background-color: #c12e2a;
  border-color: #b92c28;
}
/* line 69, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_theme.scss */
body:not([data-theme]) .btn-danger.disabled, body:not([data-theme]) .btn-danger.disabled:hover, body:not([data-theme]) .btn-danger.disabled:focus, body:not([data-theme]) .btn-danger.disabled.focus, body:not([data-theme]) .btn-danger.disabled:active, body:not([data-theme]) .btn-danger.disabled.active, body:not([data-theme]) .btn-danger[disabled], body:not([data-theme]) .btn-danger[disabled]:hover, body:not([data-theme]) .btn-danger[disabled]:focus, body:not([data-theme]) .btn-danger[disabled].focus, body:not([data-theme]) .btn-danger[disabled]:active, body:not([data-theme]) .btn-danger[disabled].active, fieldset[disabled] body:not([data-theme]) .btn-danger, fieldset[disabled] body:not([data-theme]) .btn-danger:hover, fieldset[disabled] body:not([data-theme]) .btn-danger:focus, fieldset[disabled] body:not([data-theme]) .btn-danger.focus, fieldset[disabled] body:not([data-theme]) .btn-danger:active, fieldset[disabled] body:not([data-theme]) .btn-danger.active, body[data-theme="light"] .btn-danger.disabled, body[data-theme="light"] .btn-danger.disabled:hover, body[data-theme="light"] .btn-danger.disabled:focus, body[data-theme="light"] .btn-danger.disabled.focus, body[data-theme="light"] .btn-danger.disabled:active, body[data-theme="light"] .btn-danger.disabled.active, body[data-theme="light"] .btn-danger[disabled], body[data-theme="light"] .btn-danger[disabled]:hover, body[data-theme="light"] .btn-danger[disabled]:focus, body[data-theme="light"] .btn-danger[disabled].focus, body[data-theme="light"] .btn-danger[disabled]:active, body[data-theme="light"] .btn-danger[disabled].active, fieldset[disabled] body[data-theme="light"] .btn-danger, fieldset[disabled] body[data-theme="light"] .btn-danger:hover, fieldset[disabled] body[data-theme="light"] .btn-danger:focus, fieldset[disabled] body[data-theme="light"] .btn-danger.focus, fieldset[disabled] body[data-theme="light"] .btn-danger:active, fieldset[disabled] body[data-theme="light"] .btn-danger.active {
  background-color: #c12e2a;
  background-image: none;
}
/* line 107, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_theme.scss */
body:not([data-theme]) .thumbnail,
body:not([data-theme]) .img-thumbnail, body[data-theme="light"] .thumbnail,
body[data-theme="light"] .img-thumbnail {
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);
}
/* line 117, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_theme.scss */
body:not([data-theme]) .dropdown-menu > li > a:hover,
body:not([data-theme]) .dropdown-menu > li > a:focus, body[data-theme="light"] .dropdown-menu > li > a:hover,
body[data-theme="light"] .dropdown-menu > li > a:focus {
  background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);
  background-image: -o-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);
  background-image: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFF5F5F5', endColorstr='#FFE8E8E8', GradientType=0);
  background-repeat: repeat-x;
  background-color: #e8e8e8;
}
/* line 122, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_theme.scss */
body:not([data-theme]) .dropdown-menu > .active > a,
body:not([data-theme]) .dropdown-menu > .active > a:hover,
body:not([data-theme]) .dropdown-menu > .active > a:focus, body[data-theme="light"] .dropdown-menu > .active > a,
body[data-theme="light"] .dropdown-menu > .active > a:hover,
body[data-theme="light"] .dropdown-menu > .active > a:focus {
  background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%);
  background-image: -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%);
  background-image: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF337AB7', endColorstr='#FF2E6DA4', GradientType=0);
  background-repeat: repeat-x;
  background-color: #2e6da4;
}
/* line 135, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_theme.scss */
body:not([data-theme]) .navbar-default, body[data-theme="light"] .navbar-default {
  background-image: -webkit-linear-gradient(top, white 0%, #f8f8f8 100%);
  background-image: -o-linear-gradient(top, white 0%, #f8f8f8 100%);
  background-image: linear-gradient(to bottom, white 0%, #f8f8f8 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFF8F8F8', GradientType=0);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 5px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 5px rgba(0, 0, 0, 0.075);
}
/* line 142, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_theme.scss */
body:not([data-theme]) .navbar-default .navbar-nav > .open > a,
body:not([data-theme]) .navbar-default .navbar-nav > .active > a, body[data-theme="light"] .navbar-default .navbar-nav > .open > a,
body[data-theme="light"] .navbar-default .navbar-nav > .active > a {
  background-image: -webkit-linear-gradient(top, #dbdbdb 0%, #e2e2e2 100%);
  background-image: -o-linear-gradient(top, #dbdbdb 0%, #e2e2e2 100%);
  background-image: linear-gradient(to bottom, #dbdbdb 0%, #e2e2e2 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFDBDBDB', endColorstr='#FFE2E2E2', GradientType=0);
  background-repeat: repeat-x;
  -webkit-box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.075);
}
/* line 148, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_theme.scss */
body:not([data-theme]) .navbar-brand,
body:not([data-theme]) .navbar-nav > li > a, body[data-theme="light"] .navbar-brand,
body[data-theme="light"] .navbar-nav > li > a {
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);
}
/* line 154, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_theme.scss */
body:not([data-theme]) .navbar-inverse, body[data-theme="light"] .navbar-inverse {
  background-image: -webkit-linear-gradient(top, #3c3c3c 0%, #222 100%);
  background-image: -o-linear-gradient(top, #3c3c3c 0%, #222 100%);
  background-image: linear-gradient(to bottom, #3c3c3c 0%, #222 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF3C3C3C', endColorstr='#FF222222', GradientType=0);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  border-radius: 4px;
}
/* line 158, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_theme.scss */
body:not([data-theme]) .navbar-inverse .navbar-nav > .open > a,
body:not([data-theme]) .navbar-inverse .navbar-nav > .active > a, body[data-theme="light"] .navbar-inverse .navbar-nav > .open > a,
body[data-theme="light"] .navbar-inverse .navbar-nav > .active > a {
  background-image: -webkit-linear-gradient(top, #090909 0%, #0f0f0f 100%);
  background-image: -o-linear-gradient(top, #090909 0%, #0f0f0f 100%);
  background-image: linear-gradient(to bottom, #090909 0%, #0f0f0f 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF090909', endColorstr='#FF0F0F0F', GradientType=0);
  background-repeat: repeat-x;
  -webkit-box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.25);
  box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.25);
}
/* line 164, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_theme.scss */
body:not([data-theme]) .navbar-inverse .navbar-brand,
body:not([data-theme]) .navbar-inverse .navbar-nav > li > a, body[data-theme="light"] .navbar-inverse .navbar-brand,
body[data-theme="light"] .navbar-inverse .navbar-nav > li > a {
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
/* line 171, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_theme.scss */
body:not([data-theme]) .navbar-static-top,
body:not([data-theme]) .navbar-fixed-top,
body:not([data-theme]) .navbar-fixed-bottom, body[data-theme="light"] .navbar-static-top,
body[data-theme="light"] .navbar-fixed-top,
body[data-theme="light"] .navbar-fixed-bottom {
  border-radius: 0;
}
@media (max-width: 767px) {
  /* line 180, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_theme.scss */
  body:not([data-theme]) .navbar .navbar-nav .open .dropdown-menu > .active > a, body:not([data-theme]) .navbar .navbar-nav .open .dropdown-menu > .active > a:hover, body:not([data-theme]) .navbar .navbar-nav .open .dropdown-menu > .active > a:focus, body[data-theme="light"] .navbar .navbar-nav .open .dropdown-menu > .active > a, body[data-theme="light"] .navbar .navbar-nav .open .dropdown-menu > .active > a:hover, body[data-theme="light"] .navbar .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #fff;
    background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%);
    background-image: -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%);
    background-image: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF337AB7', endColorstr='#FF2E6DA4', GradientType=0);
    background-repeat: repeat-x;
  }
}
/* line 195, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_theme.scss */
body:not([data-theme]) .alert, body[data-theme="light"] .alert {
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05);
}
/* line 208, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_theme.scss */
body:not([data-theme]) .alert-success, body[data-theme="light"] .alert-success {
  background-image: -webkit-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%);
  background-image: -o-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%);
  background-image: linear-gradient(to bottom, #dff0d8 0%, #c8e5bc 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFDFF0D8', endColorstr='#FFC8E5BC', GradientType=0);
  background-repeat: repeat-x;
  border-color: #b2dba1;
}
/* line 209, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_theme.scss */
body:not([data-theme]) .alert-info, body[data-theme="light"] .alert-info {
  background-image: -webkit-linear-gradient(top, #d9edf7 0%, #b9def0 100%);
  background-image: -o-linear-gradient(top, #d9edf7 0%, #b9def0 100%);
  background-image: linear-gradient(to bottom, #d9edf7 0%, #b9def0 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFD9EDF7', endColorstr='#FFB9DEF0', GradientType=0);
  background-repeat: repeat-x;
  border-color: #9acfea;
}
/* line 210, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_theme.scss */
body:not([data-theme]) .alert-warning, body[data-theme="light"] .alert-warning {
  background-image: -webkit-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%);
  background-image: -o-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%);
  background-image: linear-gradient(to bottom, #fcf8e3 0%, #f8efc0 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFCF8E3', endColorstr='#FFF8EFC0', GradientType=0);
  background-repeat: repeat-x;
  border-color: #f5e79e;
}
/* line 211, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_theme.scss */
body:not([data-theme]) .alert-danger, body[data-theme="light"] .alert-danger {
  background-image: -webkit-linear-gradient(top, #f2dede 0%, #e7c3c3 100%);
  background-image: -o-linear-gradient(top, #f2dede 0%, #e7c3c3 100%);
  background-image: linear-gradient(to bottom, #f2dede 0%, #e7c3c3 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFF2DEDE', endColorstr='#FFE7C3C3', GradientType=0);
  background-repeat: repeat-x;
  border-color: #dca7a7;
}
/* line 219, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_theme.scss */
body:not([data-theme]) .progress, body[data-theme="light"] .progress {
  background-image: -webkit-linear-gradient(top, #ebebeb 0%, #f5f5f5 100%);
  background-image: -o-linear-gradient(top, #ebebeb 0%, #f5f5f5 100%);
  background-image: linear-gradient(to bottom, #ebebeb 0%, #f5f5f5 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEBEBEB', endColorstr='#FFF5F5F5', GradientType=0);
  background-repeat: repeat-x;
}
/* line 229, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_theme.scss */
body:not([data-theme]) .progress-bar, body[data-theme="light"] .progress-bar {
  background-image: -webkit-linear-gradient(top, #337ab7 0%, #286090 100%);
  background-image: -o-linear-gradient(top, #337ab7 0%, #286090 100%);
  background-image: linear-gradient(to bottom, #337ab7 0%, #286090 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF337AB7', endColorstr='#FF286090', GradientType=0);
  background-repeat: repeat-x;
}
/* line 230, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_theme.scss */
body:not([data-theme]) .progress-bar-success, body[data-theme="light"] .progress-bar-success {
  background-image: -webkit-linear-gradient(top, #5cb85c 0%, #449d44 100%);
  background-image: -o-linear-gradient(top, #5cb85c 0%, #449d44 100%);
  background-image: linear-gradient(to bottom, #5cb85c 0%, #449d44 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF5CB85C', endColorstr='#FF449D44', GradientType=0);
  background-repeat: repeat-x;
}
/* line 231, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_theme.scss */
body:not([data-theme]) .progress-bar-info, body[data-theme="light"] .progress-bar-info {
  background-image: -webkit-linear-gradient(top, #5bc0de 0%, #31b0d5 100%);
  background-image: -o-linear-gradient(top, #5bc0de 0%, #31b0d5 100%);
  background-image: linear-gradient(to bottom, #5bc0de 0%, #31b0d5 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF5BC0DE', endColorstr='#FF31B0D5', GradientType=0);
  background-repeat: repeat-x;
}
/* line 232, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_theme.scss */
body:not([data-theme]) .progress-bar-warning, body[data-theme="light"] .progress-bar-warning {
  background-image: -webkit-linear-gradient(top, #f0ad4e 0%, #ec971f 100%);
  background-image: -o-linear-gradient(top, #f0ad4e 0%, #ec971f 100%);
  background-image: linear-gradient(to bottom, #f0ad4e 0%, #ec971f 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFF0AD4E', endColorstr='#FFEC971F', GradientType=0);
  background-repeat: repeat-x;
}
/* line 233, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_theme.scss */
body:not([data-theme]) .progress-bar-danger, body[data-theme="light"] .progress-bar-danger {
  background-image: -webkit-linear-gradient(top, #d9534f 0%, #c9302c 100%);
  background-image: -o-linear-gradient(top, #d9534f 0%, #c9302c 100%);
  background-image: linear-gradient(to bottom, #d9534f 0%, #c9302c 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFD9534F', endColorstr='#FFC9302C', GradientType=0);
  background-repeat: repeat-x;
}
/* line 237, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_theme.scss */
body:not([data-theme]) .progress-bar-striped, body[data-theme="light"] .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);
}
/* line 246, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_theme.scss */
body:not([data-theme]) .list-group, body[data-theme="light"] .list-group {
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);
}
/* line 250, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_theme.scss */
body:not([data-theme]) .list-group-item.active,
body:not([data-theme]) .list-group-item.active:hover,
body:not([data-theme]) .list-group-item.active:focus, body[data-theme="light"] .list-group-item.active,
body[data-theme="light"] .list-group-item.active:hover,
body[data-theme="light"] .list-group-item.active:focus {
  text-shadow: 0 -1px 0 #286090;
  background-image: -webkit-linear-gradient(top, #337ab7 0%, #2b669a 100%);
  background-image: -o-linear-gradient(top, #337ab7 0%, #2b669a 100%);
  background-image: linear-gradient(to bottom, #337ab7 0%, #2b669a 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF337AB7', endColorstr='#FF2B669A', GradientType=0);
  background-repeat: repeat-x;
  border-color: #2b669a;
}
/* line 257, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_theme.scss */
body:not([data-theme]) .list-group-item.active .badge,
body:not([data-theme]) .list-group-item.active:hover .badge,
body:not([data-theme]) .list-group-item.active:focus .badge, body[data-theme="light"] .list-group-item.active .badge,
body[data-theme="light"] .list-group-item.active:hover .badge,
body[data-theme="light"] .list-group-item.active:focus .badge {
  text-shadow: none;
}
/* line 268, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_theme.scss */
body:not([data-theme]) .panel, body[data-theme="light"] .panel {
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
/* line 278, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_theme.scss */
body:not([data-theme]) .panel-default > .panel-heading, body[data-theme="light"] .panel-default > .panel-heading {
  background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);
  background-image: -o-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);
  background-image: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFF5F5F5', endColorstr='#FFE8E8E8', GradientType=0);
  background-repeat: repeat-x;
}
/* line 279, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_theme.scss */
body:not([data-theme]) .panel-primary > .panel-heading, body[data-theme="light"] .panel-primary > .panel-heading {
  background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%);
  background-image: -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%);
  background-image: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF337AB7', endColorstr='#FF2E6DA4', GradientType=0);
  background-repeat: repeat-x;
}
/* line 280, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_theme.scss */
body:not([data-theme]) .panel-success > .panel-heading, body[data-theme="light"] .panel-success > .panel-heading {
  background-image: -webkit-linear-gradient(top, #dff0d8 0%, #d0e9c6 100%);
  background-image: -o-linear-gradient(top, #dff0d8 0%, #d0e9c6 100%);
  background-image: linear-gradient(to bottom, #dff0d8 0%, #d0e9c6 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFDFF0D8', endColorstr='#FFD0E9C6', GradientType=0);
  background-repeat: repeat-x;
}
/* line 281, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_theme.scss */
body:not([data-theme]) .panel-info > .panel-heading, body[data-theme="light"] .panel-info > .panel-heading {
  background-image: -webkit-linear-gradient(top, #d9edf7 0%, #c4e3f3 100%);
  background-image: -o-linear-gradient(top, #d9edf7 0%, #c4e3f3 100%);
  background-image: linear-gradient(to bottom, #d9edf7 0%, #c4e3f3 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFD9EDF7', endColorstr='#FFC4E3F3', GradientType=0);
  background-repeat: repeat-x;
}
/* line 282, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_theme.scss */
body:not([data-theme]) .panel-warning > .panel-heading, body[data-theme="light"] .panel-warning > .panel-heading {
  background-image: -webkit-linear-gradient(top, #fcf8e3 0%, #faf2cc 100%);
  background-image: -o-linear-gradient(top, #fcf8e3 0%, #faf2cc 100%);
  background-image: linear-gradient(to bottom, #fcf8e3 0%, #faf2cc 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFCF8E3', endColorstr='#FFFAF2CC', GradientType=0);
  background-repeat: repeat-x;
}
/* line 283, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_theme.scss */
body:not([data-theme]) .panel-danger > .panel-heading, body[data-theme="light"] .panel-danger > .panel-heading {
  background-image: -webkit-linear-gradient(top, #f2dede 0%, #ebcccc 100%);
  background-image: -o-linear-gradient(top, #f2dede 0%, #ebcccc 100%);
  background-image: linear-gradient(to bottom, #f2dede 0%, #ebcccc 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFF2DEDE', endColorstr='#FFEBCCCC', GradientType=0);
  background-repeat: repeat-x;
}
/* line 290, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_theme.scss */
body:not([data-theme]) .well, body[data-theme="light"] .well {
  background-image: -webkit-linear-gradient(top, #e8e8e8 0%, #f5f5f5 100%);
  background-image: -o-linear-gradient(top, #e8e8e8 0%, #f5f5f5 100%);
  background-image: linear-gradient(to bottom, #e8e8e8 0%, #f5f5f5 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFE8E8E8', endColorstr='#FFF5F5F5', GradientType=0);
  background-repeat: repeat-x;
  border-color: gainsboro;
  -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 0 rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 0 rgba(255, 255, 255, 0.1);
}
/* line 12, /opt/marast/vendor/assets/stylesheets/selectivity/base.sass */
body:not([data-theme]) .selectivity-clearfix, body[data-theme="light"] .selectivity-clearfix {
  clear: both;
}
/* line 15, /opt/marast/vendor/assets/stylesheets/selectivity/base.sass */
body:not([data-theme]) .selectivity-input, body[data-theme="light"] .selectivity-input {
  display: inline-block;
  width: 250px;
}
/* line 19, /opt/marast/vendor/assets/stylesheets/selectivity/base.sass */
body:not([data-theme]) .selectivity-input select, body[data-theme="light"] .selectivity-input select {
  display: none;
}
/* line 22, /opt/marast/vendor/assets/stylesheets/selectivity/base.sass */
body:not([data-theme]) .selectivity-placeholder, body[data-theme="light"] .selectivity-placeholder {
  color: #999;
}
/* line 5, /opt/marast/vendor/assets/stylesheets/selectivity/backdrop.sass */
body:not([data-theme]) .selectivity-backdrop, body[data-theme="light"] .selectivity-backdrop {
  background: transparent;
  position: fixed;
  z-index: 1045;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
/* line 5, /opt/marast/vendor/assets/stylesheets/selectivity/dropdown.sass */
body:not([data-theme]) .selectivity-dropdown, body[data-theme="light"] .selectivity-dropdown {
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 1px 5px 1px rgba(0, 0, 0, 0.15), 0 10px 16px 0 rgba(0, 0, 0, 0.2);
  position: absolute;
  z-index: 1046;
}
/* line 12, /opt/marast/vendor/assets/stylesheets/selectivity/dropdown.sass */
body:not([data-theme]) .selectivity-search-input-container, body[data-theme="light"] .selectivity-search-input-container {
  border-bottom: 1px solid #eee;
}
/* line 15, /opt/marast/vendor/assets/stylesheets/selectivity/dropdown.sass */
body:not([data-theme]) .selectivity-search-input, body[data-theme="light"] .selectivity-search-input {
  background: transparent;
  border: 0;
  outline: 0;
  width: 100%;
}
/* line 21, /opt/marast/vendor/assets/stylesheets/selectivity/dropdown.sass */
body:not([data-theme]) .selectivity-results-container, body[data-theme="light"] .selectivity-results-container {
  max-height: 28em;
  overflow: auto;
  position: relative;
}
/* line 26, /opt/marast/vendor/assets/stylesheets/selectivity/dropdown.sass */
body:not([data-theme]) .selectivity-load-more,
body:not([data-theme]) .selectivity-result-item, body[data-theme="light"] .selectivity-load-more,
body[data-theme="light"] .selectivity-result-item {
  cursor: pointer;
  padding: 7px;
}
/* line 32, /opt/marast/vendor/assets/stylesheets/selectivity/dropdown.sass */
body:not([data-theme]) .selectivity-result-children, body[data-theme="light"] .selectivity-result-children {
  padding-left: 17px;
}
/* line 35, /opt/marast/vendor/assets/stylesheets/selectivity/dropdown.sass */
body:not([data-theme]) .selectivity-load-more.highlight,
body:not([data-theme]) .selectivity-result-item.highlight, body[data-theme="light"] .selectivity-load-more.highlight,
body[data-theme="light"] .selectivity-result-item.highlight {
  background: #4484c7;
  color: #fff;
}
/* line 40, /opt/marast/vendor/assets/stylesheets/selectivity/dropdown.sass */
body:not([data-theme]) .selectivity-result-item:first-child, body[data-theme="light"] .selectivity-result-item:first-child {
  border-radius: 4px 4px 0 0;
}
/* line 43, /opt/marast/vendor/assets/stylesheets/selectivity/dropdown.sass */
body:not([data-theme]) .selectivity-dropdown.has-search-input .selectivity-result-item:first-child, body[data-theme="light"] .selectivity-dropdown.has-search-input .selectivity-result-item:first-child {
  border-radius: 0;
}
/* line 46, /opt/marast/vendor/assets/stylesheets/selectivity/dropdown.sass */
body:not([data-theme]) .selectivity-result-label, body[data-theme="light"] .selectivity-result-label {
  font-weight: bold;
}
/* line 49, /opt/marast/vendor/assets/stylesheets/selectivity/dropdown.sass */
body:not([data-theme]) .selectivity-load-more,
body:not([data-theme]) .selectivity-result-item:last-child,
body:not([data-theme]) .selectivity-result-children:last-child .selectivity-result-item:last-child, body[data-theme="light"] .selectivity-load-more,
body[data-theme="light"] .selectivity-result-item:last-child,
body[data-theme="light"] .selectivity-result-children:last-child .selectivity-result-item:last-child {
  border-radius: 0 0 4px 4px;
}
/* line 54, /opt/marast/vendor/assets/stylesheets/selectivity/dropdown.sass */
body:not([data-theme]) .selectivity-result-children .selectivity-result-item:last-child, body[data-theme="light"] .selectivity-result-children .selectivity-result-item:last-child {
  border-radius: 0;
}
/* line 57, /opt/marast/vendor/assets/stylesheets/selectivity/dropdown.sass */
body:not([data-theme]) .selectivity-error,
body:not([data-theme]) .selectivity-loading,
body:not([data-theme]) .selectivity-search-input-container,
body:not([data-theme]) .selectivity-result-label, body[data-theme="light"] .selectivity-error,
body[data-theme="light"] .selectivity-loading,
body[data-theme="light"] .selectivity-search-input-container,
body[data-theme="light"] .selectivity-result-label {
  padding: 7px;
}
/* line 5, /opt/marast/vendor/assets/stylesheets/selectivity/multiple.sass */
body:not([data-theme]) .selectivity-multiple-input-container, body[data-theme="light"] .selectivity-multiple-input-container {
  background: #eee;
  border-radius: 2px;
  cursor: text;
  max-height: 10em;
  min-height: calc(2em + 4px);
  overflow: auto;
  padding: 5px;
}
/* line 14, /opt/marast/vendor/assets/stylesheets/selectivity/multiple.sass */
body:not([data-theme]) .selectivity-multiple-input-container .selectivity-placeholder, body[data-theme="light"] .selectivity-multiple-input-container .selectivity-placeholder {
  height: calc(2em + 4px);
  line-height: calc(2em + 4px);
}
/* line 18, /opt/marast/vendor/assets/stylesheets/selectivity/multiple.sass */
body:not([data-theme]) .selectivity-multiple-input,
body:not([data-theme]) input[type='text'].selectivity-multiple-input, body[data-theme="light"] .selectivity-multiple-input,
body[data-theme="light"] input[type='text'].selectivity-multiple-input {
  background-color: transparent;
  border: none;
  float: left;
  height: calc(2em + 4px);
  max-width: 100%;
  outline: 0;
  padding: 0;
}
/* line 28, /opt/marast/vendor/assets/stylesheets/selectivity/multiple.sass */
body:not([data-theme]) .selectivity-multiple-input:focus,
body:not([data-theme]) input[type='text'].selectivity-multiple-input:focus, body[data-theme="light"] .selectivity-multiple-input:focus,
body[data-theme="light"] input[type='text'].selectivity-multiple-input:focus {
  background-color: transparent;
  box-shadow: none;
  outline: none;
}
/* line 33, /opt/marast/vendor/assets/stylesheets/selectivity/multiple.sass */
body:not([data-theme]) .selectivity-multiple-input::-ms-clear, body[data-theme="light"] .selectivity-multiple-input::-ms-clear {
  display: none;
}
/* line 36, /opt/marast/vendor/assets/stylesheets/selectivity/multiple.sass */
body:not([data-theme]) .selectivity-multiple-input.selectivity-width-detector, body[data-theme="light"] .selectivity-multiple-input.selectivity-width-detector {
  position: absolute;
  top: -10000px;
  left: 0;
  white-space: pre;
}
/* line 42, /opt/marast/vendor/assets/stylesheets/selectivity/multiple.sass */
body:not([data-theme]) .selectivity-multiple-selected-item, body[data-theme="light"] .selectivity-multiple-selected-item {
  background: #4484c7;
  border-radius: 3px;
  color: #fff;
  cursor: default;
  float: left;
  line-height: 2em;
  margin: 2px;
  padding-right: 5px;
  position: relative;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  white-space: nowrap;
}
/* line 58, /opt/marast/vendor/assets/stylesheets/selectivity/multiple.sass */
body:not([data-theme]) .selectivity-multiple-selected-item.highlighted, body[data-theme="light"] .selectivity-multiple-selected-item.highlighted {
  background-color: #ccc;
}
/* line 61, /opt/marast/vendor/assets/stylesheets/selectivity/multiple.sass */
body:not([data-theme]) .selectivity-multiple-selected-item-remove, body[data-theme="light"] .selectivity-multiple-selected-item-remove {
  color: #fff;
  cursor: pointer;
  padding: 5px;
}
/* line 5, /opt/marast/vendor/assets/stylesheets/selectivity/single.sass */
body:not([data-theme]) .selectivity-single-select, body[data-theme="light"] .selectivity-single-select {
  background: #eee;
  border-radius: 2px;
  cursor: pointer;
  min-height: 2em;
  padding: 5px;
  position: relative;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
/* line 16, /opt/marast/vendor/assets/stylesheets/selectivity/single.sass */
body:not([data-theme]) .selectivity-single-select-input, body[data-theme="light"] .selectivity-single-select-input {
  opacity: 0;
}
/* line 19, /opt/marast/vendor/assets/stylesheets/selectivity/single.sass */
body:not([data-theme]) .selectivity-single-result-container, body[data-theme="light"] .selectivity-single-result-container {
  position: absolute;
  top: 0.8em;
  right: 15px;
  left: 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* line 28, /opt/marast/vendor/assets/stylesheets/selectivity/single.sass */
body:not([data-theme]) .selectivity-single-selected-item, body[data-theme="light"] .selectivity-single-selected-item {
  color: #000;
}
/* line 31, /opt/marast/vendor/assets/stylesheets/selectivity/single.sass */
body:not([data-theme]) .selectivity-single-selected-item-remove, body[data-theme="light"] .selectivity-single-selected-item-remove {
  color: #000;
  float: right;
  padding: 0 5px;
}
/* line 36, /opt/marast/vendor/assets/stylesheets/selectivity/single.sass */
body:not([data-theme]) .selectivity-caret, body[data-theme="light"] .selectivity-caret {
  position: absolute;
  right: 5px;
  top: 0.7em;
}
@media only screen and (max-device-width: 480px) {
  /* line 42, /opt/marast/vendor/assets/stylesheets/selectivity/single.sass */
  body:not([data-theme]) .selectivity-single-select, body[data-theme="light"] .selectivity-single-select {
    background: #eee;
    border-radius: 2px;
  }
  /* line 46, /opt/marast/vendor/assets/stylesheets/selectivity/single.sass */
  body:not([data-theme]) .selectivity-single-result-container, body[data-theme="light"] .selectivity-single-result-container {
    right: 5px;
  }
  /* line 49, /opt/marast/vendor/assets/stylesheets/selectivity/single.sass */
  body:not([data-theme]) .selectivity-caret, body[data-theme="light"] .selectivity-caret {
    display: none;
  }
}
/* line 5, /opt/marast/vendor/assets/stylesheets/selectivity/submenu.sass */
body:not([data-theme]) .selectivity-submenu-icon, body[data-theme="light"] .selectivity-submenu-icon {
  position: absolute;
  right: 4px;
}
/* line 8, /opt/marast/vendor/assets/stylesheets/selectivity_bootstrap.sass */
body:not([data-theme]) .form-control.selectivity-input, body[data-theme="light"] .form-control.selectivity-input {
  width: 100%;
  height: auto;
  display: block;
  padding: inherit;
  border-color: #ccc;
  border-radius: 4px;
  color: #555555;
  background: #fff;
}
/* line 18, /opt/marast/vendor/assets/stylesheets/selectivity_bootstrap.sass */
body:not([data-theme]) .form-control.selectivity-input .selectivity-multiple-input-container,
body:not([data-theme]) .form-control.selectivity-input .selectivity-single-select, body[data-theme="light"] .form-control.selectivity-input .selectivity-multiple-input-container,
body[data-theme="light"] .form-control.selectivity-input .selectivity-single-select {
  color: #555555;
  background: #fff;
}
/* line 23, /opt/marast/vendor/assets/stylesheets/selectivity_bootstrap.sass */
body:not([data-theme]) .form-control.selectivity-input .selectivity-multiple-input-container, body[data-theme="light"] .form-control.selectivity-input .selectivity-multiple-input-container {
  padding: 0;
}
/* line 26, /opt/marast/vendor/assets/stylesheets/selectivity_bootstrap.sass */
body:not([data-theme]) .form-control.selectivity-input .selectivity-single-select, body[data-theme="light"] .form-control.selectivity-input .selectivity-single-select {
  padding: 2px;
}
/* line 29, /opt/marast/vendor/assets/stylesheets/selectivity_bootstrap.sass */
body:not([data-theme]) .form-control.selectivity-input .selectivity-single-result-container,
body:not([data-theme]) .form-control.selectivity-input .selectivity-caret, body[data-theme="light"] .form-control.selectivity-input .selectivity-single-result-container,
body[data-theme="light"] .form-control.selectivity-input .selectivity-caret {
  top: 0.5em;
}
/* line 35, /opt/marast/vendor/assets/stylesheets/selectivity_bootstrap.sass */
body:not([data-theme]) .form-horizontal .form-control.selectivity-input, body[data-theme="light"] .form-horizontal .form-control.selectivity-input {
  padding-left: 0;
  padding-right: 0;
}
/* line 39, /opt/marast/vendor/assets/stylesheets/selectivity_bootstrap.sass */
body:not([data-theme]) .form-horizontal .form-control.selectivity-input .selectivity-single-result-container, body[data-theme="light"] .form-horizontal .form-control.selectivity-input .selectivity-single-result-container {
  padding-left: 6px;
}
/* line 43, /opt/marast/vendor/assets/stylesheets/selectivity_bootstrap.sass */
body:not([data-theme]) .selectivity-dropdown, body[data-theme="light"] .selectivity-dropdown {
  margin-top: 2px;
}
/* line 3, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body:not([data-theme]) .CodeMirror, body[data-theme="light"] .CodeMirror {
  /* Set height, width, borders, and global font properties here */
  font-family: monospace;
  height: 300px;
  color: black;
}
/* line 12, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body:not([data-theme]) .CodeMirror-lines, body[data-theme="light"] .CodeMirror-lines {
  padding: 4px 0;
  /* Vertical padding around content */
}
/* line 15, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body:not([data-theme]) .CodeMirror pre, body[data-theme="light"] .CodeMirror pre {
  padding: 0 4px;
  /* Horizontal padding of content */
}
/* line 19, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body:not([data-theme]) .CodeMirror-scrollbar-filler, body:not([data-theme]) .CodeMirror-gutter-filler, body[data-theme="light"] .CodeMirror-scrollbar-filler, body[data-theme="light"] .CodeMirror-gutter-filler {
  background-color: white;
  /* The little square between H and V scrollbars */
}
/* line 25, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body:not([data-theme]) .CodeMirror-gutters, body[data-theme="light"] .CodeMirror-gutters {
  border-right: 1px solid #ddd;
  background-color: #f7f7f7;
  white-space: nowrap;
}
/* line 31, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body:not([data-theme]) .CodeMirror-linenumber, body[data-theme="light"] .CodeMirror-linenumber {
  padding: 0 3px 0 5px;
  min-width: 20px;
  text-align: right;
  color: #999;
  white-space: nowrap;
}
/* line 39, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body:not([data-theme]) .CodeMirror-guttermarker, body[data-theme="light"] .CodeMirror-guttermarker {
  color: black;
}
/* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body:not([data-theme]) .CodeMirror-guttermarker-subtle, body[data-theme="light"] .CodeMirror-guttermarker-subtle {
  color: #999;
}
/* line 44, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body:not([data-theme]) .CodeMirror-cursor, body[data-theme="light"] .CodeMirror-cursor {
  border-left: 1px solid black;
  border-right: none;
  width: 0;
}
/* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body:not([data-theme]) .CodeMirror div.CodeMirror-secondarycursor, body[data-theme="light"] .CodeMirror div.CodeMirror-secondarycursor {
  border-left: 1px solid silver;
}
/* line 53, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body:not([data-theme]) .cm-fat-cursor .CodeMirror-cursor, body[data-theme="light"] .cm-fat-cursor .CodeMirror-cursor {
  width: auto;
  border: 0 !important;
  background: #7e7;
}
/* line 58, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body:not([data-theme]) .cm-fat-cursor div.CodeMirror-cursors, body[data-theme="light"] .cm-fat-cursor div.CodeMirror-cursors {
  z-index: 1;
}
/* line 62, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body:not([data-theme]) .cm-animate-fat-cursor, body[data-theme="light"] .cm-animate-fat-cursor {
  width: auto;
  border: 0;
  -webkit-animation: blink 1.06s steps(1) infinite;
  -moz-animation: blink 1.06s steps(1) infinite;
  animation: blink 1.06s steps(1) infinite;
  background-color: #7e7;
}
@-moz-keyframes blink {
  50% {
    background-color: transparent;
  }
}
@-webkit-keyframes blink {
  50% {
    background-color: transparent;
  }
}
@keyframes blink {
  50% {
    background-color: transparent;
  }
}
/* line 89, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body:not([data-theme]) .cm-tab, body[data-theme="light"] .cm-tab {
  display: inline-block;
  text-decoration: inherit;
}
/* line 91, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body:not([data-theme]) .CodeMirror-rulers, body[data-theme="light"] .CodeMirror-rulers {
  position: absolute;
  left: 0;
  right: 0;
  top: -50px;
  bottom: -20px;
  overflow: hidden;
}
/* line 96, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body:not([data-theme]) .CodeMirror-ruler, body[data-theme="light"] .CodeMirror-ruler {
  border-left: 1px solid #ccc;
  top: 0;
  bottom: 0;
  position: absolute;
}
/* line 104, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body:not([data-theme]) .cm-s-default .cm-header, body[data-theme="light"] .cm-s-default .cm-header {
  color: blue;
}
/* line 105, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body:not([data-theme]) .cm-s-default .cm-quote, body[data-theme="light"] .cm-s-default .cm-quote {
  color: #090;
}
/* line 106, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body:not([data-theme]) .cm-negative, body[data-theme="light"] .cm-negative {
  color: #d44;
}
/* line 107, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body:not([data-theme]) .cm-positive, body[data-theme="light"] .cm-positive {
  color: #292;
}
/* line 108, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body:not([data-theme]) .cm-header, body:not([data-theme]) .cm-strong, body[data-theme="light"] .cm-header, body[data-theme="light"] .cm-strong {
  font-weight: bold;
}
/* line 109, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body:not([data-theme]) .cm-em, body[data-theme="light"] .cm-em {
  font-style: italic;
}
/* line 110, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body:not([data-theme]) .cm-link, body[data-theme="light"] .cm-link {
  text-decoration: underline;
}
/* line 111, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body:not([data-theme]) .cm-strikethrough, body[data-theme="light"] .cm-strikethrough {
  text-decoration: line-through;
}
/* line 113, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body:not([data-theme]) .cm-s-default .cm-keyword, body[data-theme="light"] .cm-s-default .cm-keyword {
  color: #708;
}
/* line 114, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body:not([data-theme]) .cm-s-default .cm-atom, body[data-theme="light"] .cm-s-default .cm-atom {
  color: #219;
}
/* line 115, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body:not([data-theme]) .cm-s-default .cm-number, body[data-theme="light"] .cm-s-default .cm-number {
  color: #164;
}
/* line 116, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body:not([data-theme]) .cm-s-default .cm-def, body[data-theme="light"] .cm-s-default .cm-def {
  color: #00f;
}
/* line 121, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body:not([data-theme]) .cm-s-default .cm-variable-2, body[data-theme="light"] .cm-s-default .cm-variable-2 {
  color: #05a;
}
/* line 122, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body:not([data-theme]) .cm-s-default .cm-variable-3, body[data-theme="light"] .cm-s-default .cm-variable-3 {
  color: #085;
}
/* line 123, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body:not([data-theme]) .cm-s-default .cm-comment, body[data-theme="light"] .cm-s-default .cm-comment {
  color: #a50;
}
/* line 124, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body:not([data-theme]) .cm-s-default .cm-string, body[data-theme="light"] .cm-s-default .cm-string {
  color: #a11;
}
/* line 125, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body:not([data-theme]) .cm-s-default .cm-string-2, body[data-theme="light"] .cm-s-default .cm-string-2 {
  color: #f50;
}
/* line 126, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body:not([data-theme]) .cm-s-default .cm-meta, body[data-theme="light"] .cm-s-default .cm-meta {
  color: #555;
}
/* line 127, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body:not([data-theme]) .cm-s-default .cm-qualifier, body[data-theme="light"] .cm-s-default .cm-qualifier {
  color: #555;
}
/* line 128, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body:not([data-theme]) .cm-s-default .cm-builtin, body[data-theme="light"] .cm-s-default .cm-builtin {
  color: #30a;
}
/* line 129, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body:not([data-theme]) .cm-s-default .cm-bracket, body[data-theme="light"] .cm-s-default .cm-bracket {
  color: #997;
}
/* line 130, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body:not([data-theme]) .cm-s-default .cm-tag, body[data-theme="light"] .cm-s-default .cm-tag {
  color: #170;
}
/* line 131, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body:not([data-theme]) .cm-s-default .cm-attribute, body[data-theme="light"] .cm-s-default .cm-attribute {
  color: #00c;
}
/* line 132, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body:not([data-theme]) .cm-s-default .cm-hr, body[data-theme="light"] .cm-s-default .cm-hr {
  color: #999;
}
/* line 133, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body:not([data-theme]) .cm-s-default .cm-link, body[data-theme="light"] .cm-s-default .cm-link {
  color: #00c;
}
/* line 135, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body:not([data-theme]) .cm-s-default .cm-error, body[data-theme="light"] .cm-s-default .cm-error {
  color: #f00;
}
/* line 136, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body:not([data-theme]) .cm-invalidchar, body[data-theme="light"] .cm-invalidchar {
  color: #f00;
}
/* line 138, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body:not([data-theme]) .CodeMirror-composing, body[data-theme="light"] .CodeMirror-composing {
  border-bottom: 2px solid;
}
/* line 142, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body:not([data-theme]) div.CodeMirror span.CodeMirror-matchingbracket, body[data-theme="light"] div.CodeMirror span.CodeMirror-matchingbracket {
  color: #0f0;
}
/* line 143, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body:not([data-theme]) div.CodeMirror span.CodeMirror-nonmatchingbracket, body[data-theme="light"] div.CodeMirror span.CodeMirror-nonmatchingbracket {
  color: #f22;
}
/* line 144, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body:not([data-theme]) .CodeMirror-matchingtag, body[data-theme="light"] .CodeMirror-matchingtag {
  background: rgba(255, 150, 0, 0.3);
}
/* line 145, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body:not([data-theme]) .CodeMirror-activeline-background, body[data-theme="light"] .CodeMirror-activeline-background {
  background: #e8f2ff;
}
/* line 152, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body:not([data-theme]) .CodeMirror, body[data-theme="light"] .CodeMirror {
  position: relative;
  overflow: hidden;
  background: white;
}
/* line 158, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body:not([data-theme]) .CodeMirror-scroll, body[data-theme="light"] .CodeMirror-scroll {
  overflow: scroll !important;
  /* Things will break if this is overridden */
  /* 30px is the magic margin used to hide the element's real scrollbars */
  /* See overflow: hidden in .CodeMirror */
  margin-bottom: -30px;
  margin-right: -30px;
  padding-bottom: 30px;
  height: 100%;
  outline: none;
  /* Prevent dragging from highlighting the element */
  position: relative;
}
/* line 168, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body:not([data-theme]) .CodeMirror-sizer, body[data-theme="light"] .CodeMirror-sizer {
  position: relative;
  border-right: 30px solid transparent;
}
/* line 176, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body:not([data-theme]) .CodeMirror-vscrollbar, body:not([data-theme]) .CodeMirror-hscrollbar, body:not([data-theme]) .CodeMirror-scrollbar-filler, body:not([data-theme]) .CodeMirror-gutter-filler, body[data-theme="light"] .CodeMirror-vscrollbar, body[data-theme="light"] .CodeMirror-hscrollbar, body[data-theme="light"] .CodeMirror-scrollbar-filler, body[data-theme="light"] .CodeMirror-gutter-filler {
  position: absolute;
  z-index: 6;
  display: none;
}
/* line 181, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body:not([data-theme]) .CodeMirror-vscrollbar, body[data-theme="light"] .CodeMirror-vscrollbar {
  right: 0;
  top: 0;
  overflow-x: hidden;
  overflow-y: scroll;
}
/* line 186, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body:not([data-theme]) .CodeMirror-hscrollbar, body[data-theme="light"] .CodeMirror-hscrollbar {
  bottom: 0;
  left: 0;
  overflow-y: hidden;
  overflow-x: scroll;
}
/* line 191, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body:not([data-theme]) .CodeMirror-scrollbar-filler, body[data-theme="light"] .CodeMirror-scrollbar-filler {
  right: 0;
  bottom: 0;
}
/* line 194, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body:not([data-theme]) .CodeMirror-gutter-filler, body[data-theme="light"] .CodeMirror-gutter-filler {
  left: 0;
  bottom: 0;
}
/* line 198, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body:not([data-theme]) .CodeMirror-gutters, body[data-theme="light"] .CodeMirror-gutters {
  position: absolute;
  left: 0;
  top: 0;
  min-height: 100%;
  z-index: 3;
}
/* line 203, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body:not([data-theme]) .CodeMirror-gutter, body[data-theme="light"] .CodeMirror-gutter {
  white-space: normal;
  height: 100%;
  display: inline-block;
  vertical-align: top;
  margin-bottom: -30px;
  /* Hack to make IE7 behave */
  *zoom: 1;
  *display: inline;
}
/* line 213, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body:not([data-theme]) .CodeMirror-gutter-wrapper, body[data-theme="light"] .CodeMirror-gutter-wrapper {
  position: absolute;
  z-index: 4;
  background: none !important;
  border: none !important;
}
/* line 219, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body:not([data-theme]) .CodeMirror-gutter-background, body[data-theme="light"] .CodeMirror-gutter-background {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 4;
}
/* line 224, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body:not([data-theme]) .CodeMirror-gutter-elt, body[data-theme="light"] .CodeMirror-gutter-elt {
  position: absolute;
  cursor: default;
  z-index: 4;
}
/* line 229, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body:not([data-theme]) .CodeMirror-gutter-wrapper, body[data-theme="light"] .CodeMirror-gutter-wrapper {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
/* line 235, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body:not([data-theme]) .CodeMirror-lines, body[data-theme="light"] .CodeMirror-lines {
  cursor: text;
  min-height: 1px;
  /* prevents collapsing before first draw */
}
/* line 239, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body:not([data-theme]) .CodeMirror pre, body[data-theme="light"] .CodeMirror pre {
  /* Reset some styles that the rest of the page might have set */
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  border-width: 0;
  background: transparent;
  font-family: inherit;
  font-size: inherit;
  margin: 0;
  white-space: pre;
  word-wrap: normal;
  line-height: inherit;
  color: inherit;
  z-index: 2;
  position: relative;
  overflow: visible;
  -webkit-tap-highlight-color: transparent;
  -webkit-font-variant-ligatures: none;
  font-variant-ligatures: none;
}
/* line 258, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body:not([data-theme]) .CodeMirror-wrap pre, body[data-theme="light"] .CodeMirror-wrap pre {
  word-wrap: break-word;
  white-space: pre-wrap;
  word-break: normal;
}
/* line 264, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body:not([data-theme]) .CodeMirror-linebackground, body[data-theme="light"] .CodeMirror-linebackground {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 0;
}
/* line 270, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body:not([data-theme]) .CodeMirror-linewidget, body[data-theme="light"] .CodeMirror-linewidget {
  position: relative;
  z-index: 2;
  overflow: auto;
}
/* line 278, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body:not([data-theme]) .CodeMirror-code, body[data-theme="light"] .CodeMirror-code {
  outline: none;
}
/* line 283, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body:not([data-theme]) .CodeMirror-scroll,
body:not([data-theme]) .CodeMirror-sizer,
body:not([data-theme]) .CodeMirror-gutter,
body:not([data-theme]) .CodeMirror-gutters,
body:not([data-theme]) .CodeMirror-linenumber, body[data-theme="light"] .CodeMirror-scroll,
body[data-theme="light"] .CodeMirror-sizer,
body[data-theme="light"] .CodeMirror-gutter,
body[data-theme="light"] .CodeMirror-gutters,
body[data-theme="light"] .CodeMirror-linenumber {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
/* line 292, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body:not([data-theme]) .CodeMirror-measure, body[data-theme="light"] .CodeMirror-measure {
  position: absolute;
  width: 100%;
  height: 0;
  overflow: hidden;
  visibility: hidden;
}
/* line 300, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body:not([data-theme]) .CodeMirror-cursor, body[data-theme="light"] .CodeMirror-cursor {
  position: absolute;
  pointer-events: none;
}
/* line 304, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body:not([data-theme]) .CodeMirror-measure pre, body[data-theme="light"] .CodeMirror-measure pre {
  position: static;
}
/* line 306, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body:not([data-theme]) div.CodeMirror-cursors, body[data-theme="light"] div.CodeMirror-cursors {
  visibility: hidden;
  position: relative;
  z-index: 3;
}
/* line 311, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body:not([data-theme]) div.CodeMirror-dragcursors, body[data-theme="light"] div.CodeMirror-dragcursors {
  visibility: visible;
}
/* line 315, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body:not([data-theme]) .CodeMirror-focused div.CodeMirror-cursors, body[data-theme="light"] .CodeMirror-focused div.CodeMirror-cursors {
  visibility: visible;
}
/* line 319, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body:not([data-theme]) .CodeMirror-selected, body[data-theme="light"] .CodeMirror-selected {
  background: #d9d9d9;
}
/* line 320, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body:not([data-theme]) .CodeMirror-focused .CodeMirror-selected, body[data-theme="light"] .CodeMirror-focused .CodeMirror-selected {
  background: #d7d4f0;
}
/* line 321, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body:not([data-theme]) .CodeMirror-crosshair, body[data-theme="light"] .CodeMirror-crosshair {
  cursor: crosshair;
}
/* line 322, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body:not([data-theme]) .CodeMirror-line::selection, body:not([data-theme]) .CodeMirror-line > span::selection, body:not([data-theme]) .CodeMirror-line > span > span::selection, body[data-theme="light"] .CodeMirror-line::selection, body[data-theme="light"] .CodeMirror-line > span::selection, body[data-theme="light"] .CodeMirror-line > span > span::selection {
  background: #d7d4f0;
}
/* line 323, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body:not([data-theme]) .CodeMirror-line::-moz-selection, body:not([data-theme]) .CodeMirror-line > span::-moz-selection, body:not([data-theme]) .CodeMirror-line > span > span::-moz-selection, body[data-theme="light"] .CodeMirror-line::-moz-selection, body[data-theme="light"] .CodeMirror-line > span::-moz-selection, body[data-theme="light"] .CodeMirror-line > span > span::-moz-selection {
  background: #d7d4f0;
}
/* line 325, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body:not([data-theme]) .cm-searching, body[data-theme="light"] .cm-searching {
  background: #ffa;
  background: rgba(255, 255, 0, 0.4);
}
/* line 331, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body:not([data-theme]) .CodeMirror span, body[data-theme="light"] .CodeMirror span {
  *vertical-align: text-bottom;
}
/* line 334, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body:not([data-theme]) .cm-force-border, body[data-theme="light"] .cm-force-border {
  padding-right: .1px;
}
@media print {
  /* line 20, /opt/marast/app/assets/stylesheets/themes/base.scss */
  body:not([data-theme]), body[data-theme="light"] {
    /* Hide the cursor when printing */
  }
  /* line 338, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
  body:not([data-theme]) .CodeMirror div.CodeMirror-cursors, body[data-theme="light"] .CodeMirror div.CodeMirror-cursors {
    visibility: hidden;
  }
}
/* line 344, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body:not([data-theme]) .cm-tab-wrap-hack:after, body[data-theme="light"] .cm-tab-wrap-hack:after {
  content: '';
}
/* line 347, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body:not([data-theme]) span.CodeMirror-selectedtext, body[data-theme="light"] span.CodeMirror-selectedtext {
  background: none;
}
/* line 31, /opt/marast/app/assets/stylesheets/themes/base.scss */
body[data-theme="united"] {
  /*!
   * 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 */
  /*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
  /**
   * All CSS that comes with Selectivity.js can be used as is, or tweaked to your heart's content :)
   *
   * Please realize though there is no "API contract" regarding styling of CSS classes, meaning that
   * any customized CSS made may need to be updated without warning if you want to upgrade the
   * Selectivity version you use. You can mitigate this problem by using your own templates instead of
   * those defined in selectivity-templates.js, since templates will at the very least continue
   * working across patch versions and any changes necessary to templates will be documented in the
   * changelog.
   */
  /**
   * Backdrop
   */
  /**
   * Dropdown
   */
  /** MODIFIED BY slavikry */
  /**
   * Multi-selection input
   */
  /**
   * Single-selection input
   */
  /**
   * Submenu
   */
  @import url("//fonts.googleapis.com/css?family=Ubuntu:400,700");
  /* BASICS */
  /* PADDING */
  /* GUTTER */
  /* CURSOR */
  /* Shown when moving in bi-directional text */
  /* Can style cursor different in overwrite (non-insert) mode */
  /* DEFAULT THEME */
  /* Default styles for common addons */
  /* STOP */
  /* The rest of this file contains styles related to the mechanics of
     the editor. You probably shouldn't touch them. */
  /* The fake, visible scrollbars. Used to force redraw during scrolling
     before actual scrolling happens, thus preventing shaking and
     flickering artifacts. */
  /* Force content-box sizing for the elements where we expect it */
  /* IE7 hack to prevent it from returning funny offsetTops on the spans */
  /* Used to force a border model for a node */
  /* See issue #2901 */
  /* Help users use markselection to safely style text background */
  color: #333;
  background-color: #fffdf7;
}
/* line 3, /opt/marast/app/assets/stylesheets/themes/united.scss */
body[data-theme="united"] label.btn.btn-default.active {
  background-color: #e2cca6 !important;
  color: #4e4e4e !important;
}
/* line 7, /opt/marast/app/assets/stylesheets/themes/united.scss */
body[data-theme="united"] label.btn.btn-default.active:hover, body[data-theme="united"] label.btn.btn-default.active:focus {
  color: #fff !important;
  background-color: #867c71 !important;
}
/* line 9, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body[data-theme="united"] html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
/* line 19, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body[data-theme="united"] body {
  margin: 0;
}
/* line 33, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body[data-theme="united"] article,
body[data-theme="united"] aside,
body[data-theme="united"] details,
body[data-theme="united"] figcaption,
body[data-theme="united"] figure,
body[data-theme="united"] footer,
body[data-theme="united"] header,
body[data-theme="united"] hgroup,
body[data-theme="united"] main,
body[data-theme="united"] menu,
body[data-theme="united"] nav,
body[data-theme="united"] section,
body[data-theme="united"] summary {
  display: block;
}
/* line 54, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body[data-theme="united"] audio,
body[data-theme="united"] canvas,
body[data-theme="united"] progress,
body[data-theme="united"] video {
  display: inline-block;
  vertical-align: baseline;
}
/* line 67, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body[data-theme="united"] audio:not([controls]) {
  display: none;
  height: 0;
}
/* line 77, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body[data-theme="united"] [hidden],
body[data-theme="united"] template {
  display: none;
}
/* line 89, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body[data-theme="united"] a {
  background-color: transparent;
}
/* line 98, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body[data-theme="united"] a:active,
body[data-theme="united"] a:hover {
  outline: 0;
}
/* line 111, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body[data-theme="united"] abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}
/* line 121, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body[data-theme="united"] b,
body[data-theme="united"] strong {
  font-weight: bold;
}
/* line 130, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body[data-theme="united"] dfn {
  font-style: italic;
}
/* line 139, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body[data-theme="united"] h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
/* line 148, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body[data-theme="united"] mark {
  background: #ff0;
  color: #000;
}
/* line 157, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body[data-theme="united"] small {
  font-size: 80%;
}
/* line 165, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body[data-theme="united"] sub,
body[data-theme="united"] sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
/* line 173, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body[data-theme="united"] sup {
  top: -0.5em;
}
/* line 177, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body[data-theme="united"] sub {
  bottom: -0.25em;
}
/* line 188, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body[data-theme="united"] img {
  border: 0;
}
/* line 196, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body[data-theme="united"] svg:not(:root) {
  overflow: hidden;
}
/* line 207, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body[data-theme="united"] figure {
  margin: 1em 40px;
}
/* line 215, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body[data-theme="united"] hr {
  box-sizing: content-box;
  height: 0;
}
/* line 224, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body[data-theme="united"] pre {
  overflow: auto;
}
/* line 232, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body[data-theme="united"] code,
body[data-theme="united"] kbd,
body[data-theme="united"] pre,
body[data-theme="united"] samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
/* line 255, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body[data-theme="united"] button,
body[data-theme="united"] input,
body[data-theme="united"] optgroup,
body[data-theme="united"] select,
body[data-theme="united"] textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}
/* line 269, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body[data-theme="united"] button {
  overflow: visible;
}
/* line 280, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body[data-theme="united"] button,
body[data-theme="united"] select {
  text-transform: none;
}
/* line 293, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body[data-theme="united"] button,
body[data-theme="united"] html input[type="button"],
body[data-theme="united"] input[type="reset"],
body[data-theme="united"] input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
/* line 305, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body[data-theme="united"] button[disabled],
body[data-theme="united"] html input[disabled] {
  cursor: default;
}
/* line 314, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body[data-theme="united"] button::-moz-focus-inner,
body[data-theme="united"] input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
/* line 325, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body[data-theme="united"] input {
  line-height: normal;
}
/* line 337, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body[data-theme="united"] input[type="checkbox"],
body[data-theme="united"] input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
/* line 349, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body[data-theme="united"] input[type="number"]::-webkit-inner-spin-button,
body[data-theme="united"] input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
/* line 359, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body[data-theme="united"] input[type="search"] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
}
/* line 370, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body[data-theme="united"] input[type="search"]::-webkit-search-cancel-button,
body[data-theme="united"] input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
/* line 379, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body[data-theme="united"] fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
/* line 390, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body[data-theme="united"] legend {
  border: 0;
  padding: 0;
}
/* line 399, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body[data-theme="united"] textarea {
  overflow: auto;
}
/* line 408, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body[data-theme="united"] optgroup {
  font-weight: bold;
}
/* line 419, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body[data-theme="united"] table {
  border-collapse: collapse;
  border-spacing: 0;
}
/* line 424, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body[data-theme="united"] td,
body[data-theme="united"] th {
  padding: 0;
}
@media print {
  /* line 9, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_print.scss */
  body[data-theme="united"] *,
  body[data-theme="united"] *:before,
  body[data-theme="united"] *:after {
    color: #000 !important;
    text-shadow: none !important;
    background: transparent !important;
    box-shadow: none !important;
  }
  /* line 18, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_print.scss */
  body[data-theme="united"] a,
  body[data-theme="united"] a:visited {
    text-decoration: underline;
  }
  /* line 23, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_print.scss */
  body[data-theme="united"] a[href]:after {
    content: " (" attr(href) ")";
  }
  /* line 27, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_print.scss */
  body[data-theme="united"] abbr[title]:after {
    content: " (" attr(title) ")";
  }
  /* line 33, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_print.scss */
  body[data-theme="united"] a[href^="#"]:after,
  body[data-theme="united"] a[href^="javascript:"]:after {
    content: "";
  }
  /* line 38, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_print.scss */
  body[data-theme="united"] pre,
  body[data-theme="united"] blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  /* line 44, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_print.scss */
  body[data-theme="united"] thead {
    display: table-header-group;
  }
  /* line 48, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_print.scss */
  body[data-theme="united"] tr,
  body[data-theme="united"] img {
    page-break-inside: avoid;
  }
  /* line 53, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_print.scss */
  body[data-theme="united"] img {
    max-width: 100% !important;
  }
  /* line 57, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_print.scss */
  body[data-theme="united"] p,
  body[data-theme="united"] h2,
  body[data-theme="united"] h3 {
    orphans: 3;
    widows: 3;
  }
  /* line 64, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_print.scss */
  body[data-theme="united"] h2,
  body[data-theme="united"] h3 {
    page-break-after: avoid;
  }
  /* line 72, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_print.scss */
  body[data-theme="united"] .navbar {
    display: none;
  }
  /* line 77, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_print.scss */
  body[data-theme="united"] .btn > .caret,
  body[data-theme="united"] .dropup > .btn > .caret {
    border-top-color: #000 !important;
  }
  /* line 81, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_print.scss */
  body[data-theme="united"] .label {
    border: 1px solid #000;
  }
  /* line 85, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_print.scss */
  body[data-theme="united"] .table {
    border-collapse: collapse !important;
  }
  /* line 88, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_print.scss */
  body[data-theme="united"] .table td,
  body[data-theme="united"] .table th {
    background-color: #fff !important;
  }
  /* line 94, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_print.scss */
  body[data-theme="united"] .table-bordered th,
  body[data-theme="united"] .table-bordered td {
    border: 1px solid #ddd !important;
  }
}
@font-face {
  font-family: "Glyphicons Halflings";
  src: url("/assets/bootstrap/glyphicons-halflings-regular-13634da87d9e23f8c3ed9108ce1724d183a39ad072e73e1b3d8cbf646d2d0407.eot");
  src: url("/assets/bootstrap/glyphicons-halflings-regular-13634da87d9e23f8c3ed9108ce1724d183a39ad072e73e1b3d8cbf646d2d0407.eot?#iefix") format("embedded-opentype"), url("/assets/bootstrap/glyphicons-halflings-regular-fe185d11a49676890d47bb783312a0cda5a44c4039214094e7957b4c040ef11c.woff2") format("woff2"), url("/assets/bootstrap/glyphicons-halflings-regular-a26394f7ede100ca118eff2eda08596275a9839b959c226e15439557a5a80742.woff") format("woff"), url("/assets/bootstrap/glyphicons-halflings-regular-e395044093757d82afcb138957d06a1ea9361bdcf0b442d06a18a8051af57456.ttf") format("truetype"), url("/assets/bootstrap/glyphicons-halflings-regular-42f60659d265c1a3c30f9fa42abcbb56bd4a53af4d83d316d6dd7a36903c43e5.svg#glyphicons_halflingsregular") format("svg");
}
/* line 24, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon, body[data-theme="united"] .fa.fa-remove, body[data-theme="united"] .fa.fa-chevron-right, body[data-theme="united"] .fa.fa-sort-desc {
  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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-asterisk:before {
  content: "\002a";
}
/* line 38, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-plus:before {
  content: "\002b";
}
/* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-euro:before,
body[data-theme="united"] .glyphicon-eur:before {
  content: "\20ac";
}
/* line 41, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-minus:before {
  content: "\2212";
}
/* line 42, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-cloud:before {
  content: "\2601";
}
/* line 43, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-envelope:before {
  content: "\2709";
}
/* line 44, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-pencil:before {
  content: "\270f";
}
/* line 45, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-glass:before {
  content: "\e001";
}
/* line 46, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-music:before {
  content: "\e002";
}
/* line 47, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-search:before {
  content: "\e003";
}
/* line 48, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-heart:before {
  content: "\e005";
}
/* line 49, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-star:before {
  content: "\e006";
}
/* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-star-empty:before {
  content: "\e007";
}
/* line 51, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-user:before {
  content: "\e008";
}
/* line 52, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-film:before {
  content: "\e009";
}
/* line 53, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-th-large:before {
  content: "\e010";
}
/* line 54, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-th:before {
  content: "\e011";
}
/* line 55, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-th-list:before {
  content: "\e012";
}
/* line 56, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-ok:before {
  content: "\e013";
}
/* line 57, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-remove:before, body[data-theme="united"] .fa.fa-remove:before {
  content: "\e014";
}
/* line 58, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-zoom-in:before {
  content: "\e015";
}
/* line 59, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-zoom-out:before {
  content: "\e016";
}
/* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-off:before {
  content: "\e017";
}
/* line 61, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-signal:before {
  content: "\e018";
}
/* line 62, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-cog:before {
  content: "\e019";
}
/* line 63, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-trash:before {
  content: "\e020";
}
/* line 64, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-home:before {
  content: "\e021";
}
/* line 65, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-file:before {
  content: "\e022";
}
/* line 66, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-time:before {
  content: "\e023";
}
/* line 67, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-road:before {
  content: "\e024";
}
/* line 68, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-download-alt:before {
  content: "\e025";
}
/* line 69, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-download:before {
  content: "\e026";
}
/* line 70, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-upload:before {
  content: "\e027";
}
/* line 71, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-inbox:before {
  content: "\e028";
}
/* line 72, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-play-circle:before {
  content: "\e029";
}
/* line 73, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-repeat:before {
  content: "\e030";
}
/* line 74, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-refresh:before {
  content: "\e031";
}
/* line 75, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-list-alt:before {
  content: "\e032";
}
/* line 76, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-lock:before {
  content: "\e033";
}
/* line 77, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-flag:before {
  content: "\e034";
}
/* line 78, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-headphones:before {
  content: "\e035";
}
/* line 79, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-volume-off:before {
  content: "\e036";
}
/* line 80, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-volume-down:before {
  content: "\e037";
}
/* line 81, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-volume-up:before {
  content: "\e038";
}
/* line 82, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-qrcode:before {
  content: "\e039";
}
/* line 83, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-barcode:before {
  content: "\e040";
}
/* line 84, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-tag:before {
  content: "\e041";
}
/* line 85, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-tags:before {
  content: "\e042";
}
/* line 86, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-book:before {
  content: "\e043";
}
/* line 87, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-bookmark:before {
  content: "\e044";
}
/* line 88, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-print:before {
  content: "\e045";
}
/* line 89, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-camera:before {
  content: "\e046";
}
/* line 90, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-font:before {
  content: "\e047";
}
/* line 91, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-bold:before {
  content: "\e048";
}
/* line 92, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-italic:before {
  content: "\e049";
}
/* line 93, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-text-height:before {
  content: "\e050";
}
/* line 94, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-text-width:before {
  content: "\e051";
}
/* line 95, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-align-left:before {
  content: "\e052";
}
/* line 96, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-align-center:before {
  content: "\e053";
}
/* line 97, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-align-right:before {
  content: "\e054";
}
/* line 98, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-align-justify:before {
  content: "\e055";
}
/* line 99, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-list:before {
  content: "\e056";
}
/* line 100, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-indent-left:before {
  content: "\e057";
}
/* line 101, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-indent-right:before {
  content: "\e058";
}
/* line 102, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-facetime-video:before {
  content: "\e059";
}
/* line 103, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-picture:before {
  content: "\e060";
}
/* line 104, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-map-marker:before {
  content: "\e062";
}
/* line 105, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-adjust:before {
  content: "\e063";
}
/* line 106, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-tint:before {
  content: "\e064";
}
/* line 107, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-edit:before {
  content: "\e065";
}
/* line 108, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-share:before {
  content: "\e066";
}
/* line 109, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-check:before {
  content: "\e067";
}
/* line 110, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-move:before {
  content: "\e068";
}
/* line 111, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-step-backward:before {
  content: "\e069";
}
/* line 112, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-fast-backward:before {
  content: "\e070";
}
/* line 113, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-backward:before {
  content: "\e071";
}
/* line 114, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-play:before {
  content: "\e072";
}
/* line 115, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-pause:before {
  content: "\e073";
}
/* line 116, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-stop:before {
  content: "\e074";
}
/* line 117, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-forward:before {
  content: "\e075";
}
/* line 118, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-fast-forward:before {
  content: "\e076";
}
/* line 119, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-step-forward:before {
  content: "\e077";
}
/* line 120, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-eject:before {
  content: "\e078";
}
/* line 121, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-chevron-left:before {
  content: "\e079";
}
/* line 122, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-chevron-right:before, body[data-theme="united"] .fa.fa-chevron-right:before {
  content: "\e080";
}
/* line 123, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-plus-sign:before {
  content: "\e081";
}
/* line 124, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-minus-sign:before {
  content: "\e082";
}
/* line 125, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-remove-sign:before {
  content: "\e083";
}
/* line 126, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-ok-sign:before {
  content: "\e084";
}
/* line 127, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-question-sign:before {
  content: "\e085";
}
/* line 128, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-info-sign:before {
  content: "\e086";
}
/* line 129, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-screenshot:before {
  content: "\e087";
}
/* line 130, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-remove-circle:before {
  content: "\e088";
}
/* line 131, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-ok-circle:before {
  content: "\e089";
}
/* line 132, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-ban-circle:before {
  content: "\e090";
}
/* line 133, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-arrow-left:before {
  content: "\e091";
}
/* line 134, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-arrow-right:before {
  content: "\e092";
}
/* line 135, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-arrow-up:before {
  content: "\e093";
}
/* line 136, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-arrow-down:before {
  content: "\e094";
}
/* line 137, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-share-alt:before {
  content: "\e095";
}
/* line 138, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-resize-full:before {
  content: "\e096";
}
/* line 139, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-resize-small:before {
  content: "\e097";
}
/* line 140, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-exclamation-sign:before {
  content: "\e101";
}
/* line 141, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-gift:before {
  content: "\e102";
}
/* line 142, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-leaf:before {
  content: "\e103";
}
/* line 143, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-fire:before {
  content: "\e104";
}
/* line 144, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-eye-open:before {
  content: "\e105";
}
/* line 145, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-eye-close:before {
  content: "\e106";
}
/* line 146, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-warning-sign:before {
  content: "\e107";
}
/* line 147, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-plane:before {
  content: "\e108";
}
/* line 148, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-calendar:before {
  content: "\e109";
}
/* line 149, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-random:before {
  content: "\e110";
}
/* line 150, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-comment:before {
  content: "\e111";
}
/* line 151, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-magnet:before {
  content: "\e112";
}
/* line 152, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-chevron-up:before {
  content: "\e113";
}
/* line 153, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-chevron-down:before, body[data-theme="united"] .fa.fa-sort-desc:before {
  content: "\e114";
}
/* line 154, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-retweet:before {
  content: "\e115";
}
/* line 155, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-shopping-cart:before {
  content: "\e116";
}
/* line 156, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-folder-close:before {
  content: "\e117";
}
/* line 157, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-folder-open:before {
  content: "\e118";
}
/* line 158, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-resize-vertical:before {
  content: "\e119";
}
/* line 159, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-resize-horizontal:before {
  content: "\e120";
}
/* line 160, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-hdd:before {
  content: "\e121";
}
/* line 161, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-bullhorn:before {
  content: "\e122";
}
/* line 162, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-bell:before {
  content: "\e123";
}
/* line 163, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-certificate:before {
  content: "\e124";
}
/* line 164, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-thumbs-up:before {
  content: "\e125";
}
/* line 165, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-thumbs-down:before {
  content: "\e126";
}
/* line 166, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-hand-right:before {
  content: "\e127";
}
/* line 167, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-hand-left:before {
  content: "\e128";
}
/* line 168, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-hand-up:before {
  content: "\e129";
}
/* line 169, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-hand-down:before {
  content: "\e130";
}
/* line 170, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-circle-arrow-right:before {
  content: "\e131";
}
/* line 171, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-circle-arrow-left:before {
  content: "\e132";
}
/* line 172, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-circle-arrow-up:before {
  content: "\e133";
}
/* line 173, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-circle-arrow-down:before {
  content: "\e134";
}
/* line 174, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-globe:before {
  content: "\e135";
}
/* line 175, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-wrench:before {
  content: "\e136";
}
/* line 176, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-tasks:before {
  content: "\e137";
}
/* line 177, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-filter:before {
  content: "\e138";
}
/* line 178, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-briefcase:before {
  content: "\e139";
}
/* line 179, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-fullscreen:before {
  content: "\e140";
}
/* line 180, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-dashboard:before {
  content: "\e141";
}
/* line 181, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-paperclip:before {
  content: "\e142";
}
/* line 182, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-heart-empty:before {
  content: "\e143";
}
/* line 183, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-link:before {
  content: "\e144";
}
/* line 184, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-phone:before {
  content: "\e145";
}
/* line 185, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-pushpin:before {
  content: "\e146";
}
/* line 186, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-usd:before {
  content: "\e148";
}
/* line 187, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-gbp:before {
  content: "\e149";
}
/* line 188, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-sort:before {
  content: "\e150";
}
/* line 189, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-sort-by-alphabet:before {
  content: "\e151";
}
/* line 190, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-sort-by-alphabet-alt:before {
  content: "\e152";
}
/* line 191, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-sort-by-order:before {
  content: "\e153";
}
/* line 192, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-sort-by-order-alt:before {
  content: "\e154";
}
/* line 193, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-sort-by-attributes:before {
  content: "\e155";
}
/* line 194, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-sort-by-attributes-alt:before {
  content: "\e156";
}
/* line 195, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-unchecked:before {
  content: "\e157";
}
/* line 196, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-expand:before {
  content: "\e158";
}
/* line 197, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-collapse-down:before {
  content: "\e159";
}
/* line 198, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-collapse-up:before {
  content: "\e160";
}
/* line 199, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-log-in:before {
  content: "\e161";
}
/* line 200, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-flash:before {
  content: "\e162";
}
/* line 201, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-log-out:before {
  content: "\e163";
}
/* line 202, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-new-window:before {
  content: "\e164";
}
/* line 203, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-record:before {
  content: "\e165";
}
/* line 204, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-save:before {
  content: "\e166";
}
/* line 205, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-open:before {
  content: "\e167";
}
/* line 206, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-saved:before {
  content: "\e168";
}
/* line 207, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-import:before {
  content: "\e169";
}
/* line 208, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-export:before {
  content: "\e170";
}
/* line 209, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-send:before {
  content: "\e171";
}
/* line 210, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-floppy-disk:before {
  content: "\e172";
}
/* line 211, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-floppy-saved:before {
  content: "\e173";
}
/* line 212, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-floppy-remove:before {
  content: "\e174";
}
/* line 213, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-floppy-save:before {
  content: "\e175";
}
/* line 214, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-floppy-open:before {
  content: "\e176";
}
/* line 215, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-credit-card:before {
  content: "\e177";
}
/* line 216, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-transfer:before {
  content: "\e178";
}
/* line 217, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-cutlery:before {
  content: "\e179";
}
/* line 218, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-header:before {
  content: "\e180";
}
/* line 219, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-compressed:before {
  content: "\e181";
}
/* line 220, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-earphone:before {
  content: "\e182";
}
/* line 221, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-phone-alt:before {
  content: "\e183";
}
/* line 222, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-tower:before {
  content: "\e184";
}
/* line 223, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-stats:before {
  content: "\e185";
}
/* line 224, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-sd-video:before {
  content: "\e186";
}
/* line 225, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-hd-video:before {
  content: "\e187";
}
/* line 226, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-subtitles:before {
  content: "\e188";
}
/* line 227, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-sound-stereo:before {
  content: "\e189";
}
/* line 228, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-sound-dolby:before {
  content: "\e190";
}
/* line 229, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-sound-5-1:before {
  content: "\e191";
}
/* line 230, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-sound-6-1:before {
  content: "\e192";
}
/* line 231, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-sound-7-1:before {
  content: "\e193";
}
/* line 232, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-copyright-mark:before {
  content: "\e194";
}
/* line 233, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-registration-mark:before {
  content: "\e195";
}
/* line 234, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-cloud-download:before {
  content: "\e197";
}
/* line 235, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-cloud-upload:before {
  content: "\e198";
}
/* line 236, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-tree-conifer:before {
  content: "\e199";
}
/* line 237, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-tree-deciduous:before {
  content: "\e200";
}
/* line 238, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-cd:before {
  content: "\e201";
}
/* line 239, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-save-file:before {
  content: "\e202";
}
/* line 240, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-open-file:before {
  content: "\e203";
}
/* line 241, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-level-up:before {
  content: "\e204";
}
/* line 242, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-copy:before {
  content: "\e205";
}
/* line 243, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-paste:before {
  content: "\e206";
}
/* line 252, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-alert:before {
  content: "\e209";
}
/* line 253, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-equalizer:before {
  content: "\e210";
}
/* line 254, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-king:before {
  content: "\e211";
}
/* line 255, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-queen:before {
  content: "\e212";
}
/* line 256, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-pawn:before {
  content: "\e213";
}
/* line 257, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-bishop:before {
  content: "\e214";
}
/* line 258, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-knight:before {
  content: "\e215";
}
/* line 259, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-baby-formula:before {
  content: "\e216";
}
/* line 260, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-tent:before {
  content: "\26fa";
}
/* line 261, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-blackboard:before {
  content: "\e218";
}
/* line 262, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-bed:before {
  content: "\e219";
}
/* line 263, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-apple:before {
  content: "\f8ff";
}
/* line 264, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-erase:before {
  content: "\e221";
}
/* line 265, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-hourglass:before {
  content: "\231b";
}
/* line 266, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-lamp:before {
  content: "\e223";
}
/* line 267, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-duplicate:before {
  content: "\e224";
}
/* line 268, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-piggy-bank:before {
  content: "\e225";
}
/* line 269, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-scissors:before {
  content: "\e226";
}
/* line 270, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-bitcoin:before {
  content: "\e227";
}
/* line 271, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-btc:before {
  content: "\e227";
}
/* line 272, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-xbt:before {
  content: "\e227";
}
/* line 273, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-yen:before {
  content: "\00a5";
}
/* line 274, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-jpy:before {
  content: "\00a5";
}
/* line 275, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-ruble:before {
  content: "\20bd";
}
/* line 276, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-rub:before {
  content: "\20bd";
}
/* line 277, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-scale:before {
  content: "\e230";
}
/* line 278, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-ice-lolly:before {
  content: "\e231";
}
/* line 279, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-ice-lolly-tasted:before {
  content: "\e232";
}
/* line 280, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-education:before {
  content: "\e233";
}
/* line 281, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-option-horizontal:before {
  content: "\e234";
}
/* line 282, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-option-vertical:before {
  content: "\e235";
}
/* line 283, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-menu-hamburger:before {
  content: "\e236";
}
/* line 284, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-modal-window:before {
  content: "\e237";
}
/* line 285, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-oil:before {
  content: "\e238";
}
/* line 286, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-grain:before {
  content: "\e239";
}
/* line 287, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-sunglasses:before {
  content: "\e240";
}
/* line 288, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-text-size:before {
  content: "\e241";
}
/* line 289, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-text-color:before {
  content: "\e242";
}
/* line 290, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-text-background:before {
  content: "\e243";
}
/* line 291, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-object-align-top:before {
  content: "\e244";
}
/* line 292, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-object-align-bottom:before {
  content: "\e245";
}
/* line 293, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-object-align-horizontal:before {
  content: "\e246";
}
/* line 294, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-object-align-left:before {
  content: "\e247";
}
/* line 295, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-object-align-vertical:before {
  content: "\e248";
}
/* line 296, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-object-align-right:before {
  content: "\e249";
}
/* line 297, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-triangle-right:before {
  content: "\e250";
}
/* line 298, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-triangle-left:before {
  content: "\e251";
}
/* line 299, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-triangle-bottom:before {
  content: "\e252";
}
/* line 300, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-triangle-top:before {
  content: "\e253";
}
/* line 301, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-console:before {
  content: "\e254";
}
/* line 302, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-superscript:before {
  content: "\e255";
}
/* line 303, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-subscript:before {
  content: "\e256";
}
/* line 304, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-menu-left:before {
  content: "\e257";
}
/* line 305, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-menu-right:before {
  content: "\e258";
}
/* line 306, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-menu-down:before {
  content: "\e259";
}
/* line 307, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="united"] .glyphicon-menu-up:before {
  content: "\e260";
}
/* line 11, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_scaffolding.scss */
body[data-theme="united"] * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
/* line 14, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_scaffolding.scss */
body[data-theme="united"] *:before,
body[data-theme="united"] *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
/* line 22, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_scaffolding.scss */
body[data-theme="united"] html {
  font-size: 10px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
/* line 27, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_scaffolding.scss */
body[data-theme="united"] body {
  font-family: "Ubuntu", Tahoma, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.428571429;
  color: #333;
  background-color: #fffdf7;
}
/* line 36, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_scaffolding.scss */
body[data-theme="united"] input,
body[data-theme="united"] button,
body[data-theme="united"] select,
body[data-theme="united"] textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
/* line 48, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_scaffolding.scss */
body[data-theme="united"] a {
  color: #DD4814;
  text-decoration: none;
}
/* line 52, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_scaffolding.scss */
body[data-theme="united"] a:hover, body[data-theme="united"] a:focus {
  color: #97310e;
  text-decoration: underline;
}
/* line 58, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_scaffolding.scss */
body[data-theme="united"] a:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
/* line 69, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_scaffolding.scss */
body[data-theme="united"] figure {
  margin: 0;
}
/* line 76, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_scaffolding.scss */
body[data-theme="united"] img {
  vertical-align: middle;
}
/* line 81, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_scaffolding.scss */
body[data-theme="united"] .img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}
/* line 86, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_scaffolding.scss */
body[data-theme="united"] .img-rounded {
  border-radius: 6px;
}
/* line 93, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_scaffolding.scss */
body[data-theme="united"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_scaffolding.scss */
body[data-theme="united"] .img-circle {
  border-radius: 50%;
}
/* line 113, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_scaffolding.scss */
body[data-theme="united"] hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #eeeeee;
}
/* line 125, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_scaffolding.scss */
body[data-theme="united"] .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
/* line 141, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_scaffolding.scss */
body[data-theme="united"] .sr-only-focusable:active, body[data-theme="united"] .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}
/* line 159, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_scaffolding.scss */
body[data-theme="united"] [role="button"] {
  cursor: pointer;
}
/* line 9, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body[data-theme="united"] h1, body[data-theme="united"] h2, body[data-theme="united"] h3, body[data-theme="united"] h4, body[data-theme="united"] h5, body[data-theme="united"] h6,
body[data-theme="united"] .h1, body[data-theme="united"] .h2, body[data-theme="united"] .h3, body[data-theme="united"] .h4, body[data-theme="united"] .h5, body[data-theme="united"] .h6 {
  font-family: "Ubuntu", Tahoma, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 500;
  line-height: 1.1;
  color: inherit;
}
/* line 16, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body[data-theme="united"] h1 small,
body[data-theme="united"] h1 .small, body[data-theme="united"] h2 small,
body[data-theme="united"] h2 .small, body[data-theme="united"] h3 small,
body[data-theme="united"] h3 .small, body[data-theme="united"] h4 small,
body[data-theme="united"] h4 .small, body[data-theme="united"] h5 small,
body[data-theme="united"] h5 .small, body[data-theme="united"] h6 small,
body[data-theme="united"] h6 .small,
body[data-theme="united"] .h1 small,
body[data-theme="united"] .h1 .small, body[data-theme="united"] .h2 small,
body[data-theme="united"] .h2 .small, body[data-theme="united"] .h3 small,
body[data-theme="united"] .h3 .small, body[data-theme="united"] .h4 small,
body[data-theme="united"] .h4 .small, body[data-theme="united"] .h5 small,
body[data-theme="united"] .h5 .small, body[data-theme="united"] .h6 small,
body[data-theme="united"] .h6 .small {
  font-weight: 400;
  line-height: 1;
  color: #AEA79F;
}
/* line 24, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body[data-theme="united"] h1, body[data-theme="united"] .h1,
body[data-theme="united"] h2, body[data-theme="united"] .h2,
body[data-theme="united"] h3, body[data-theme="united"] .h3 {
  margin-top: 20px;
  margin-bottom: 10px;
}
/* line 30, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body[data-theme="united"] h1 small,
body[data-theme="united"] h1 .small, body[data-theme="united"] .h1 small,
body[data-theme="united"] .h1 .small,
body[data-theme="united"] h2 small,
body[data-theme="united"] h2 .small, body[data-theme="united"] .h2 small,
body[data-theme="united"] .h2 .small,
body[data-theme="united"] h3 small,
body[data-theme="united"] h3 .small, body[data-theme="united"] .h3 small,
body[data-theme="united"] .h3 .small {
  font-size: 65%;
}
/* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body[data-theme="united"] h4, body[data-theme="united"] .h4,
body[data-theme="united"] h5, body[data-theme="united"] .h5,
body[data-theme="united"] h6, body[data-theme="united"] .h6 {
  margin-top: 10px;
  margin-bottom: 10px;
}
/* line 41, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body[data-theme="united"] h4 small,
body[data-theme="united"] h4 .small, body[data-theme="united"] .h4 small,
body[data-theme="united"] .h4 .small,
body[data-theme="united"] h5 small,
body[data-theme="united"] h5 .small, body[data-theme="united"] .h5 small,
body[data-theme="united"] .h5 .small,
body[data-theme="united"] h6 small,
body[data-theme="united"] h6 .small, body[data-theme="united"] .h6 small,
body[data-theme="united"] .h6 .small {
  font-size: 75%;
}
/* line 47, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body[data-theme="united"] h1, body[data-theme="united"] .h1 {
  font-size: 36px;
}
/* line 48, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body[data-theme="united"] h2, body[data-theme="united"] .h2 {
  font-size: 30px;
}
/* line 49, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body[data-theme="united"] h3, body[data-theme="united"] .h3 {
  font-size: 24px;
}
/* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body[data-theme="united"] h4, body[data-theme="united"] .h4 {
  font-size: 18px;
}
/* line 51, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body[data-theme="united"] h5, body[data-theme="united"] .h5 {
  font-size: 14px;
}
/* line 52, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body[data-theme="united"] h6, body[data-theme="united"] .h6 {
  font-size: 12px;
}
/* line 58, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body[data-theme="united"] p {
  margin: 0 0 10px;
}
/* line 62, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body[data-theme="united"] .lead {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
}
@media (min-width: 768px) {
  /* line 62, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
  body[data-theme="united"] .lead {
    font-size: 21px;
  }
}
/* line 78, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body[data-theme="united"] small,
body[data-theme="united"] .small {
  font-size: 85%;
}
/* line 83, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body[data-theme="united"] mark,
body[data-theme="united"] .mark {
  padding: .2em;
  background-color: #fcf8e3;
}
/* line 90, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body[data-theme="united"] .text-left {
  text-align: left;
}
/* line 91, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body[data-theme="united"] .text-right {
  text-align: right;
}
/* line 92, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body[data-theme="united"] .text-center {
  text-align: center;
}
/* line 93, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body[data-theme="united"] .text-justify {
  text-align: justify;
}
/* line 94, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body[data-theme="united"] .text-nowrap {
  white-space: nowrap;
}
/* line 97, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body[data-theme="united"] .text-lowercase {
  text-transform: lowercase;
}
/* line 98, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body[data-theme="united"] .text-uppercase, body[data-theme="united"] .initialism {
  text-transform: uppercase;
}
/* line 99, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body[data-theme="united"] .text-capitalize {
  text-transform: capitalize;
}
/* line 102, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body[data-theme="united"] .text-muted {
  color: #AEA79F;
}
/* line 5, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
body[data-theme="united"] .text-primary {
  color: #DD4814;
}
/* line 8, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
body[data-theme="united"] a.text-primary:hover,
body[data-theme="united"] a.text-primary:focus {
  color: #ae3910;
}
/* line 5, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
body[data-theme="united"] .text-success {
  color: #468847;
}
/* line 8, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
body[data-theme="united"] a.text-success:hover,
body[data-theme="united"] a.text-success:focus {
  color: #356635;
}
/* line 5, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
body[data-theme="united"] .text-info {
  color: #3a87ad;
}
/* line 8, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
body[data-theme="united"] a.text-info:hover,
body[data-theme="united"] a.text-info:focus {
  color: #2d6987;
}
/* line 5, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
body[data-theme="united"] .text-warning {
  color: #c09853;
}
/* line 8, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
body[data-theme="united"] a.text-warning:hover,
body[data-theme="united"] a.text-warning:focus {
  color: #a47e3c;
}
/* line 5, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
body[data-theme="united"] .text-danger {
  color: #b94a48;
}
/* line 8, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
body[data-theme="united"] a.text-danger:hover,
body[data-theme="united"] a.text-danger:focus {
  color: #953b39;
}
/* line 119, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body[data-theme="united"] .bg-primary {
  color: #fff;
}
/* line 5, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
body[data-theme="united"] .bg-primary {
  background-color: #DD4814;
}
/* line 8, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
body[data-theme="united"] a.bg-primary:hover,
body[data-theme="united"] a.bg-primary:focus {
  background-color: #ae3910;
}
/* line 5, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
body[data-theme="united"] .bg-success {
  background-color: #dff0d8;
}
/* line 8, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
body[data-theme="united"] a.bg-success:hover,
body[data-theme="united"] a.bg-success:focus {
  background-color: #c1e2b3;
}
/* line 5, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
body[data-theme="united"] .bg-info {
  background-color: #d9edf7;
}
/* line 8, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
body[data-theme="united"] a.bg-info:hover,
body[data-theme="united"] a.bg-info:focus {
  background-color: #afd9ee;
}
/* line 5, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
body[data-theme="united"] .bg-warning {
  background-color: #fcf8e3;
}
/* line 8, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
body[data-theme="united"] a.bg-warning:hover,
body[data-theme="united"] a.bg-warning:focus {
  background-color: #f7ecb5;
}
/* line 5, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
body[data-theme="united"] .bg-danger {
  background-color: #f2dede;
}
/* line 8, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
body[data-theme="united"] a.bg-danger:hover,
body[data-theme="united"] a.bg-danger:focus {
  background-color: #e4b9b9;
}
/* line 138, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body[data-theme="united"] .page-header {
  padding-bottom: 9px;
  margin: 40px 0 20px;
  border-bottom: 1px solid #eeeeee;
}
/* line 149, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body[data-theme="united"] ul,
body[data-theme="united"] ol {
  margin-top: 0;
  margin-bottom: 10px;
}
/* line 153, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body[data-theme="united"] ul ul,
body[data-theme="united"] ul ol,
body[data-theme="united"] ol ul,
body[data-theme="united"] ol ol {
  margin-bottom: 0;
}
/* line 167, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body[data-theme="united"] .list-unstyled {
  padding-left: 0;
  list-style: none;
}
/* line 173, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body[data-theme="united"] .list-inline {
  padding-left: 0;
  list-style: none;
  margin-left: -5px;
}
/* line 177, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body[data-theme="united"] .list-inline > li {
  display: inline-block;
  padding-right: 5px;
  padding-left: 5px;
}
/* line 185, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body[data-theme="united"] dl {
  margin-top: 0;
  margin-bottom: 20px;
}
/* line 189, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body[data-theme="united"] dt,
body[data-theme="united"] dd {
  line-height: 1.428571429;
}
/* line 193, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body[data-theme="united"] dt {
  font-weight: 700;
}
/* line 196, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body[data-theme="united"] dd {
  margin-left: 0;
}
/* line 14, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
body[data-theme="united"] .dl-horizontal dd:before, body[data-theme="united"] .dl-horizontal dd:after {
  display: table;
  content: " ";
}
/* line 19, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
body[data-theme="united"] .dl-horizontal dd:after {
  clear: both;
}
@media (min-width: 768px) {
  /* line 211, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
  body[data-theme="united"] .dl-horizontal dt {
    float: left;
    width: 160px;
    clear: left;
    text-align: right;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  /* line 218, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
  body[data-theme="united"] .dl-horizontal dd {
    margin-left: 180px;
  }
}
/* line 230, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body[data-theme="united"] abbr[title],
body[data-theme="united"] abbr[data-original-title] {
  cursor: help;
}
/* line 235, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body[data-theme="united"] .initialism {
  font-size: 90%;
}
/* line 241, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body[data-theme="united"] blockquote {
  padding: 10px 20px;
  margin: 0 0 20px;
  font-size: 17.5px;
  border-left: 5px solid #eeeeee;
}
/* line 250, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body[data-theme="united"] blockquote p:last-child,
body[data-theme="united"] blockquote ul:last-child,
body[data-theme="united"] blockquote ol:last-child {
  margin-bottom: 0;
}
/* line 257, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body[data-theme="united"] blockquote footer,
body[data-theme="united"] blockquote small,
body[data-theme="united"] blockquote .small {
  display: block;
  font-size: 80%;
  line-height: 1.428571429;
  color: #AEA79F;
}
/* line 265, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body[data-theme="united"] blockquote footer:before,
body[data-theme="united"] blockquote small:before,
body[data-theme="united"] blockquote .small:before {
  content: "\2014 \00A0";
}
/* line 274, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body[data-theme="united"] .blockquote-reverse,
body[data-theme="united"] blockquote.pull-right {
  padding-right: 15px;
  padding-left: 0;
  text-align: right;
  border-right: 5px solid #eeeeee;
  border-left: 0;
}
/* line 286, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body[data-theme="united"] .blockquote-reverse footer:before,
body[data-theme="united"] .blockquote-reverse small:before,
body[data-theme="united"] .blockquote-reverse .small:before,
body[data-theme="united"] blockquote.pull-right footer:before,
body[data-theme="united"] blockquote.pull-right small:before,
body[data-theme="united"] blockquote.pull-right .small:before {
  content: "";
}
/* line 287, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body[data-theme="united"] .blockquote-reverse footer:after,
body[data-theme="united"] .blockquote-reverse small:after,
body[data-theme="united"] .blockquote-reverse .small:after,
body[data-theme="united"] blockquote.pull-right footer:after,
body[data-theme="united"] blockquote.pull-right small:after,
body[data-theme="united"] blockquote.pull-right .small:after {
  content: "\00A0 \2014";
}
/* line 294, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body[data-theme="united"] address {
  margin-bottom: 20px;
  font-style: normal;
  line-height: 1.428571429;
}
/* line 7, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_code.scss */
body[data-theme="united"] code,
body[data-theme="united"] kbd,
body[data-theme="united"] pre,
body[data-theme="united"] samp {
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
}
/* line 15, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_code.scss */
body[data-theme="united"] code {
  padding: 2px 4px;
  font-size: 90%;
  color: #c7254e;
  background-color: #f9f2f4;
  border-radius: 4px;
}
/* line 24, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_code.scss */
body[data-theme="united"] 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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_code.scss */
body[data-theme="united"] kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: 700;
  box-shadow: none;
}
/* line 41, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_code.scss */
body[data-theme="united"] pre {
  display: block;
  padding: 9.5px;
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.428571429;
  color: #333;
  word-break: break-all;
  word-wrap: break-word;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  border-radius: 4px;
}
/* line 55, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_code.scss */
body[data-theme="united"] pre code {
  padding: 0;
  font-size: inherit;
  color: inherit;
  white-space: pre-wrap;
  background-color: transparent;
  border-radius: 0;
}
/* line 66, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_code.scss */
body[data-theme="united"] .pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}
/* line 10, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_grid.scss */
body[data-theme="united"] .container {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
/* line 14, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
body[data-theme="united"] .container:before, body[data-theme="united"] .container:after {
  display: table;
  content: " ";
}
/* line 19, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
body[data-theme="united"] .container:after {
  clear: both;
}
@media (min-width: 768px) {
  /* line 10, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_grid.scss */
  body[data-theme="united"] .container {
    width: 750px;
  }
}
@media (min-width: 992px) {
  /* line 10, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_grid.scss */
  body[data-theme="united"] .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  /* line 10, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_grid.scss */
  body[data-theme="united"] .container {
    width: 1170px;
  }
}
/* line 30, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_grid.scss */
body[data-theme="united"] .container-fluid {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
/* line 14, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
body[data-theme="united"] .container-fluid:before, body[data-theme="united"] .container-fluid:after {
  display: table;
  content: " ";
}
/* line 19, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
body[data-theme="united"] .container-fluid:after {
  clear: both;
}
/* line 39, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_grid.scss */
body[data-theme="united"] .row {
  margin-right: -15px;
  margin-left: -15px;
}
/* line 14, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
body[data-theme="united"] .row:before, body[data-theme="united"] .row:after {
  display: table;
  content: " ";
}
/* line 19, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
body[data-theme="united"] .row:after {
  clear: both;
}
/* line 43, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_grid.scss */
body[data-theme="united"] .row-no-gutters {
  margin-right: 0;
  margin-left: 0;
}
/* line 47, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_grid.scss */
body[data-theme="united"] .row-no-gutters [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}
/* line 11, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body[data-theme="united"] .col-xs-1, body[data-theme="united"] .col-sm-1, body[data-theme="united"] .col-md-1, body[data-theme="united"] .col-lg-1, body[data-theme="united"] .col-xs-2, body[data-theme="united"] .col-sm-2, body[data-theme="united"] .col-md-2, body[data-theme="united"] .col-lg-2, body[data-theme="united"] .col-xs-3, body[data-theme="united"] .col-sm-3, body[data-theme="united"] .col-md-3, body[data-theme="united"] .col-lg-3, body[data-theme="united"] .col-xs-4, body[data-theme="united"] .col-sm-4, body[data-theme="united"] .col-md-4, body[data-theme="united"] .col-lg-4, body[data-theme="united"] .col-xs-5, body[data-theme="united"] .col-sm-5, body[data-theme="united"] .col-md-5, body[data-theme="united"] .col-lg-5, body[data-theme="united"] .col-xs-6, body[data-theme="united"] .col-sm-6, body[data-theme="united"] .col-md-6, body[data-theme="united"] .col-lg-6, body[data-theme="united"] .col-xs-7, body[data-theme="united"] .col-sm-7, body[data-theme="united"] .col-md-7, body[data-theme="united"] .col-lg-7, body[data-theme="united"] .col-xs-8, body[data-theme="united"] .col-sm-8, body[data-theme="united"] .col-md-8, body[data-theme="united"] .col-lg-8, body[data-theme="united"] .col-xs-9, body[data-theme="united"] .col-sm-9, body[data-theme="united"] .col-md-9, body[data-theme="united"] .col-lg-9, body[data-theme="united"] .col-xs-10, body[data-theme="united"] .col-sm-10, body[data-theme="united"] .col-md-10, body[data-theme="united"] .col-lg-10, body[data-theme="united"] .col-xs-11, body[data-theme="united"] .col-sm-11, body[data-theme="united"] .col-md-11, body[data-theme="united"] .col-lg-11, body[data-theme="united"] .col-xs-12, body[data-theme="united"] .col-sm-12, body[data-theme="united"] .col-md-12, body[data-theme="united"] .col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}
/* line 27, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body[data-theme="united"] .col-xs-1, body[data-theme="united"] .col-xs-2, body[data-theme="united"] .col-xs-3, body[data-theme="united"] .col-xs-4, body[data-theme="united"] .col-xs-5, body[data-theme="united"] .col-xs-6, body[data-theme="united"] .col-xs-7, body[data-theme="united"] .col-xs-8, body[data-theme="united"] .col-xs-9, body[data-theme="united"] .col-xs-10, body[data-theme="united"] .col-xs-11, body[data-theme="united"] .col-xs-12 {
  float: left;
}
/* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body[data-theme="united"] .col-xs-1 {
  width: 8.3333333333%;
}
/* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body[data-theme="united"] .col-xs-2 {
  width: 16.6666666667%;
}
/* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body[data-theme="united"] .col-xs-3 {
  width: 25%;
}
/* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body[data-theme="united"] .col-xs-4 {
  width: 33.3333333333%;
}
/* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body[data-theme="united"] .col-xs-5 {
  width: 41.6666666667%;
}
/* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body[data-theme="united"] .col-xs-6 {
  width: 50%;
}
/* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body[data-theme="united"] .col-xs-7 {
  width: 58.3333333333%;
}
/* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body[data-theme="united"] .col-xs-8 {
  width: 66.6666666667%;
}
/* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body[data-theme="united"] .col-xs-9 {
  width: 75%;
}
/* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body[data-theme="united"] .col-xs-10 {
  width: 83.3333333333%;
}
/* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body[data-theme="united"] .col-xs-11 {
  width: 91.6666666667%;
}
/* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body[data-theme="united"] .col-xs-12 {
  width: 100%;
}
/* line 55, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body[data-theme="united"] .col-xs-pull-0 {
  right: auto;
}
/* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body[data-theme="united"] .col-xs-pull-1 {
  right: 8.3333333333%;
}
/* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body[data-theme="united"] .col-xs-pull-2 {
  right: 16.6666666667%;
}
/* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body[data-theme="united"] .col-xs-pull-3 {
  right: 25%;
}
/* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body[data-theme="united"] .col-xs-pull-4 {
  right: 33.3333333333%;
}
/* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body[data-theme="united"] .col-xs-pull-5 {
  right: 41.6666666667%;
}
/* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body[data-theme="united"] .col-xs-pull-6 {
  right: 50%;
}
/* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body[data-theme="united"] .col-xs-pull-7 {
  right: 58.3333333333%;
}
/* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body[data-theme="united"] .col-xs-pull-8 {
  right: 66.6666666667%;
}
/* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body[data-theme="united"] .col-xs-pull-9 {
  right: 75%;
}
/* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body[data-theme="united"] .col-xs-pull-10 {
  right: 83.3333333333%;
}
/* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body[data-theme="united"] .col-xs-pull-11 {
  right: 91.6666666667%;
}
/* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body[data-theme="united"] .col-xs-pull-12 {
  right: 100%;
}
/* line 45, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body[data-theme="united"] .col-xs-push-0 {
  left: auto;
}
/* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body[data-theme="united"] .col-xs-push-1 {
  left: 8.3333333333%;
}
/* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body[data-theme="united"] .col-xs-push-2 {
  left: 16.6666666667%;
}
/* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body[data-theme="united"] .col-xs-push-3 {
  left: 25%;
}
/* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body[data-theme="united"] .col-xs-push-4 {
  left: 33.3333333333%;
}
/* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body[data-theme="united"] .col-xs-push-5 {
  left: 41.6666666667%;
}
/* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body[data-theme="united"] .col-xs-push-6 {
  left: 50%;
}
/* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body[data-theme="united"] .col-xs-push-7 {
  left: 58.3333333333%;
}
/* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body[data-theme="united"] .col-xs-push-8 {
  left: 66.6666666667%;
}
/* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body[data-theme="united"] .col-xs-push-9 {
  left: 75%;
}
/* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body[data-theme="united"] .col-xs-push-10 {
  left: 83.3333333333%;
}
/* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body[data-theme="united"] .col-xs-push-11 {
  left: 91.6666666667%;
}
/* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body[data-theme="united"] .col-xs-push-12 {
  left: 100%;
}
/* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body[data-theme="united"] .col-xs-offset-0 {
  margin-left: 0%;
}
/* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body[data-theme="united"] .col-xs-offset-1 {
  margin-left: 8.3333333333%;
}
/* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body[data-theme="united"] .col-xs-offset-2 {
  margin-left: 16.6666666667%;
}
/* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body[data-theme="united"] .col-xs-offset-3 {
  margin-left: 25%;
}
/* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body[data-theme="united"] .col-xs-offset-4 {
  margin-left: 33.3333333333%;
}
/* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body[data-theme="united"] .col-xs-offset-5 {
  margin-left: 41.6666666667%;
}
/* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body[data-theme="united"] .col-xs-offset-6 {
  margin-left: 50%;
}
/* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body[data-theme="united"] .col-xs-offset-7 {
  margin-left: 58.3333333333%;
}
/* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body[data-theme="united"] .col-xs-offset-8 {
  margin-left: 66.6666666667%;
}
/* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body[data-theme="united"] .col-xs-offset-9 {
  margin-left: 75%;
}
/* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body[data-theme="united"] .col-xs-offset-10 {
  margin-left: 83.3333333333%;
}
/* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body[data-theme="united"] .col-xs-offset-11 {
  margin-left: 91.6666666667%;
}
/* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body[data-theme="united"] .col-xs-offset-12 {
  margin-left: 100%;
}
@media (min-width: 768px) {
  /* line 27, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-sm-1, body[data-theme="united"] .col-sm-2, body[data-theme="united"] .col-sm-3, body[data-theme="united"] .col-sm-4, body[data-theme="united"] .col-sm-5, body[data-theme="united"] .col-sm-6, body[data-theme="united"] .col-sm-7, body[data-theme="united"] .col-sm-8, body[data-theme="united"] .col-sm-9, body[data-theme="united"] .col-sm-10, body[data-theme="united"] .col-sm-11, body[data-theme="united"] .col-sm-12 {
    float: left;
  }
  /* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-sm-1 {
    width: 8.3333333333%;
  }
  /* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-sm-2 {
    width: 16.6666666667%;
  }
  /* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-sm-3 {
    width: 25%;
  }
  /* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-sm-4 {
    width: 33.3333333333%;
  }
  /* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-sm-5 {
    width: 41.6666666667%;
  }
  /* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-sm-6 {
    width: 50%;
  }
  /* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-sm-7 {
    width: 58.3333333333%;
  }
  /* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-sm-8 {
    width: 66.6666666667%;
  }
  /* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-sm-9 {
    width: 75%;
  }
  /* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-sm-10 {
    width: 83.3333333333%;
  }
  /* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-sm-11 {
    width: 91.6666666667%;
  }
  /* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-sm-12 {
    width: 100%;
  }
  /* line 55, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-sm-pull-0 {
    right: auto;
  }
  /* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-sm-pull-1 {
    right: 8.3333333333%;
  }
  /* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-sm-pull-2 {
    right: 16.6666666667%;
  }
  /* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-sm-pull-3 {
    right: 25%;
  }
  /* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-sm-pull-4 {
    right: 33.3333333333%;
  }
  /* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-sm-pull-5 {
    right: 41.6666666667%;
  }
  /* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-sm-pull-6 {
    right: 50%;
  }
  /* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-sm-pull-7 {
    right: 58.3333333333%;
  }
  /* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-sm-pull-8 {
    right: 66.6666666667%;
  }
  /* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-sm-pull-9 {
    right: 75%;
  }
  /* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-sm-pull-10 {
    right: 83.3333333333%;
  }
  /* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-sm-pull-11 {
    right: 91.6666666667%;
  }
  /* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-sm-pull-12 {
    right: 100%;
  }
  /* line 45, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-sm-push-0 {
    left: auto;
  }
  /* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-sm-push-1 {
    left: 8.3333333333%;
  }
  /* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-sm-push-2 {
    left: 16.6666666667%;
  }
  /* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-sm-push-3 {
    left: 25%;
  }
  /* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-sm-push-4 {
    left: 33.3333333333%;
  }
  /* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-sm-push-5 {
    left: 41.6666666667%;
  }
  /* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-sm-push-6 {
    left: 50%;
  }
  /* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-sm-push-7 {
    left: 58.3333333333%;
  }
  /* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-sm-push-8 {
    left: 66.6666666667%;
  }
  /* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-sm-push-9 {
    left: 75%;
  }
  /* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-sm-push-10 {
    left: 83.3333333333%;
  }
  /* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-sm-push-11 {
    left: 91.6666666667%;
  }
  /* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-sm-push-12 {
    left: 100%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-sm-offset-0 {
    margin-left: 0%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-sm-offset-1 {
    margin-left: 8.3333333333%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-sm-offset-2 {
    margin-left: 16.6666666667%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-sm-offset-3 {
    margin-left: 25%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-sm-offset-4 {
    margin-left: 33.3333333333%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-sm-offset-5 {
    margin-left: 41.6666666667%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-sm-offset-6 {
    margin-left: 50%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-sm-offset-7 {
    margin-left: 58.3333333333%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-sm-offset-8 {
    margin-left: 66.6666666667%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-sm-offset-9 {
    margin-left: 75%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-sm-offset-10 {
    margin-left: 83.3333333333%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-sm-offset-11 {
    margin-left: 91.6666666667%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-sm-offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 992px) {
  /* line 27, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-md-1, body[data-theme="united"] .col-md-2, body[data-theme="united"] .col-md-3, body[data-theme="united"] .col-md-4, body[data-theme="united"] .col-md-5, body[data-theme="united"] .col-md-6, body[data-theme="united"] .col-md-7, body[data-theme="united"] .col-md-8, body[data-theme="united"] .col-md-9, body[data-theme="united"] .col-md-10, body[data-theme="united"] .col-md-11, body[data-theme="united"] .col-md-12 {
    float: left;
  }
  /* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-md-1 {
    width: 8.3333333333%;
  }
  /* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-md-2 {
    width: 16.6666666667%;
  }
  /* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-md-3 {
    width: 25%;
  }
  /* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-md-4 {
    width: 33.3333333333%;
  }
  /* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-md-5 {
    width: 41.6666666667%;
  }
  /* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-md-6 {
    width: 50%;
  }
  /* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-md-7 {
    width: 58.3333333333%;
  }
  /* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-md-8 {
    width: 66.6666666667%;
  }
  /* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-md-9 {
    width: 75%;
  }
  /* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-md-10 {
    width: 83.3333333333%;
  }
  /* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-md-11 {
    width: 91.6666666667%;
  }
  /* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-md-12 {
    width: 100%;
  }
  /* line 55, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-md-pull-0 {
    right: auto;
  }
  /* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-md-pull-1 {
    right: 8.3333333333%;
  }
  /* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-md-pull-2 {
    right: 16.6666666667%;
  }
  /* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-md-pull-3 {
    right: 25%;
  }
  /* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-md-pull-4 {
    right: 33.3333333333%;
  }
  /* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-md-pull-5 {
    right: 41.6666666667%;
  }
  /* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-md-pull-6 {
    right: 50%;
  }
  /* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-md-pull-7 {
    right: 58.3333333333%;
  }
  /* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-md-pull-8 {
    right: 66.6666666667%;
  }
  /* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-md-pull-9 {
    right: 75%;
  }
  /* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-md-pull-10 {
    right: 83.3333333333%;
  }
  /* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-md-pull-11 {
    right: 91.6666666667%;
  }
  /* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-md-pull-12 {
    right: 100%;
  }
  /* line 45, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-md-push-0 {
    left: auto;
  }
  /* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-md-push-1 {
    left: 8.3333333333%;
  }
  /* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-md-push-2 {
    left: 16.6666666667%;
  }
  /* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-md-push-3 {
    left: 25%;
  }
  /* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-md-push-4 {
    left: 33.3333333333%;
  }
  /* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-md-push-5 {
    left: 41.6666666667%;
  }
  /* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-md-push-6 {
    left: 50%;
  }
  /* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-md-push-7 {
    left: 58.3333333333%;
  }
  /* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-md-push-8 {
    left: 66.6666666667%;
  }
  /* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-md-push-9 {
    left: 75%;
  }
  /* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-md-push-10 {
    left: 83.3333333333%;
  }
  /* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-md-push-11 {
    left: 91.6666666667%;
  }
  /* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-md-push-12 {
    left: 100%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-md-offset-0 {
    margin-left: 0%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-md-offset-1 {
    margin-left: 8.3333333333%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-md-offset-2 {
    margin-left: 16.6666666667%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-md-offset-3 {
    margin-left: 25%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-md-offset-4 {
    margin-left: 33.3333333333%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-md-offset-5 {
    margin-left: 41.6666666667%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-md-offset-6 {
    margin-left: 50%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-md-offset-7 {
    margin-left: 58.3333333333%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-md-offset-8 {
    margin-left: 66.6666666667%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-md-offset-9 {
    margin-left: 75%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-md-offset-10 {
    margin-left: 83.3333333333%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-md-offset-11 {
    margin-left: 91.6666666667%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-md-offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 1200px) {
  /* line 27, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-lg-1, body[data-theme="united"] .col-lg-2, body[data-theme="united"] .col-lg-3, body[data-theme="united"] .col-lg-4, body[data-theme="united"] .col-lg-5, body[data-theme="united"] .col-lg-6, body[data-theme="united"] .col-lg-7, body[data-theme="united"] .col-lg-8, body[data-theme="united"] .col-lg-9, body[data-theme="united"] .col-lg-10, body[data-theme="united"] .col-lg-11, body[data-theme="united"] .col-lg-12 {
    float: left;
  }
  /* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-lg-1 {
    width: 8.3333333333%;
  }
  /* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-lg-2 {
    width: 16.6666666667%;
  }
  /* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-lg-3 {
    width: 25%;
  }
  /* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-lg-4 {
    width: 33.3333333333%;
  }
  /* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-lg-5 {
    width: 41.6666666667%;
  }
  /* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-lg-6 {
    width: 50%;
  }
  /* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-lg-7 {
    width: 58.3333333333%;
  }
  /* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-lg-8 {
    width: 66.6666666667%;
  }
  /* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-lg-9 {
    width: 75%;
  }
  /* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-lg-10 {
    width: 83.3333333333%;
  }
  /* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-lg-11 {
    width: 91.6666666667%;
  }
  /* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-lg-12 {
    width: 100%;
  }
  /* line 55, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-lg-pull-0 {
    right: auto;
  }
  /* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-lg-pull-1 {
    right: 8.3333333333%;
  }
  /* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-lg-pull-2 {
    right: 16.6666666667%;
  }
  /* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-lg-pull-3 {
    right: 25%;
  }
  /* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-lg-pull-4 {
    right: 33.3333333333%;
  }
  /* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-lg-pull-5 {
    right: 41.6666666667%;
  }
  /* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-lg-pull-6 {
    right: 50%;
  }
  /* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-lg-pull-7 {
    right: 58.3333333333%;
  }
  /* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-lg-pull-8 {
    right: 66.6666666667%;
  }
  /* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-lg-pull-9 {
    right: 75%;
  }
  /* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-lg-pull-10 {
    right: 83.3333333333%;
  }
  /* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-lg-pull-11 {
    right: 91.6666666667%;
  }
  /* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-lg-pull-12 {
    right: 100%;
  }
  /* line 45, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-lg-push-0 {
    left: auto;
  }
  /* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-lg-push-1 {
    left: 8.3333333333%;
  }
  /* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-lg-push-2 {
    left: 16.6666666667%;
  }
  /* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-lg-push-3 {
    left: 25%;
  }
  /* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-lg-push-4 {
    left: 33.3333333333%;
  }
  /* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-lg-push-5 {
    left: 41.6666666667%;
  }
  /* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-lg-push-6 {
    left: 50%;
  }
  /* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-lg-push-7 {
    left: 58.3333333333%;
  }
  /* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-lg-push-8 {
    left: 66.6666666667%;
  }
  /* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-lg-push-9 {
    left: 75%;
  }
  /* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-lg-push-10 {
    left: 83.3333333333%;
  }
  /* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-lg-push-11 {
    left: 91.6666666667%;
  }
  /* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-lg-push-12 {
    left: 100%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-lg-offset-0 {
    margin-left: 0%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-lg-offset-1 {
    margin-left: 8.3333333333%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-lg-offset-2 {
    margin-left: 16.6666666667%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-lg-offset-3 {
    margin-left: 25%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-lg-offset-4 {
    margin-left: 33.3333333333%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-lg-offset-5 {
    margin-left: 41.6666666667%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-lg-offset-6 {
    margin-left: 50%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-lg-offset-7 {
    margin-left: 58.3333333333%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-lg-offset-8 {
    margin-left: 66.6666666667%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-lg-offset-9 {
    margin-left: 75%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-lg-offset-10 {
    margin-left: 83.3333333333%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-lg-offset-11 {
    margin-left: 91.6666666667%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="united"] .col-lg-offset-12 {
    margin-left: 100%;
  }
}
/* line 6, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
body[data-theme="united"] table {
  background-color: transparent;
}
/* line 13, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
body[data-theme="united"] table col[class*="col-"] {
  position: static;
  display: table-column;
  float: none;
}
/* line 21, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
body[data-theme="united"] table td[class*="col-"],
body[data-theme="united"] table th[class*="col-"] {
  position: static;
  display: table-cell;
  float: none;
}
/* line 29, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
body[data-theme="united"] caption {
  padding-top: 8px;
  padding-bottom: 8px;
  color: #AEA79F;
  text-align: left;
}
/* line 36, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
body[data-theme="united"] th {
  text-align: left;
}
/* line 43, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
body[data-theme="united"] .table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
}
/* line 52, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
body[data-theme="united"] .table > thead > tr > th,
body[data-theme="united"] .table > thead > tr > td,
body[data-theme="united"] .table > tbody > tr > th,
body[data-theme="united"] .table > tbody > tr > td,
body[data-theme="united"] .table > tfoot > tr > th,
body[data-theme="united"] .table > tfoot > tr > td {
  padding: 8px;
  line-height: 1.428571429;
  vertical-align: top;
  border-top: 1px solid #ddd;
}
/* line 62, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
body[data-theme="united"] .table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 2px solid #ddd;
}
/* line 71, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
body[data-theme="united"] .table > caption + thead > tr:first-child > th,
body[data-theme="united"] .table > caption + thead > tr:first-child > td,
body[data-theme="united"] .table > colgroup + thead > tr:first-child > th,
body[data-theme="united"] .table > colgroup + thead > tr:first-child > td,
body[data-theme="united"] .table > thead:first-child > tr:first-child > th,
body[data-theme="united"] .table > thead:first-child > tr:first-child > td {
  border-top: 0;
}
/* line 78, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
body[data-theme="united"] .table > tbody + tbody {
  border-top: 2px solid #ddd;
}
/* line 83, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
body[data-theme="united"] .table .table {
  background-color: #fffdf7;
}
/* line 96, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
body[data-theme="united"] .table-condensed > thead > tr > th,
body[data-theme="united"] .table-condensed > thead > tr > td,
body[data-theme="united"] .table-condensed > tbody > tr > th,
body[data-theme="united"] .table-condensed > tbody > tr > td,
body[data-theme="united"] .table-condensed > tfoot > tr > th,
body[data-theme="united"] .table-condensed > tfoot > tr > td {
  padding: 5px;
}
/* line 109, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
body[data-theme="united"] .table-bordered {
  border: 1px solid #ddd;
}
/* line 115, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
body[data-theme="united"] .table-bordered > thead > tr > th,
body[data-theme="united"] .table-bordered > thead > tr > td,
body[data-theme="united"] .table-bordered > tbody > tr > th,
body[data-theme="united"] .table-bordered > tbody > tr > td,
body[data-theme="united"] .table-bordered > tfoot > tr > th,
body[data-theme="united"] .table-bordered > tfoot > tr > td {
  border: 1px solid #ddd;
}
/* line 122, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
body[data-theme="united"] .table-bordered > thead > tr > th,
body[data-theme="united"] .table-bordered > thead > tr > td {
  border-bottom-width: 2px;
}
/* line 135, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
body[data-theme="united"] .table-striped > tbody > tr:nth-of-type(odd) {
  background-color: #f9f9f9;
}
/* line 146, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
body[data-theme="united"] .table-hover > tbody > tr:hover {
  background-color: #f5f5f5;
}
/* line 9, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */
body[data-theme="united"] .table > thead > tr > td.active,
body[data-theme="united"] .table > thead > tr > th.active, body[data-theme="united"] .table > thead > tr.active > td, body[data-theme="united"] .table > thead > tr.active > th,
body[data-theme="united"] .table > tbody > tr > td.active,
body[data-theme="united"] .table > tbody > tr > th.active,
body[data-theme="united"] .table > tbody > tr.active > td,
body[data-theme="united"] .table > tbody > tr.active > th,
body[data-theme="united"] .table > tfoot > tr > td.active,
body[data-theme="united"] .table > tfoot > tr > th.active,
body[data-theme="united"] .table > tfoot > tr.active > td,
body[data-theme="united"] .table > tfoot > tr.active > th {
  background-color: #f5f5f5;
}
/* line 20, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */
body[data-theme="united"] .table-hover > tbody > tr > td.active:hover,
body[data-theme="united"] .table-hover > tbody > tr > th.active:hover, body[data-theme="united"] .table-hover > tbody > tr.active:hover > td, body[data-theme="united"] .table-hover > tbody > tr:hover > .active, body[data-theme="united"] .table-hover > tbody > tr.active:hover > th {
  background-color: #e8e8e8;
}
/* line 9, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */
body[data-theme="united"] .table > thead > tr > td.success,
body[data-theme="united"] .table > thead > tr > th.success, body[data-theme="united"] .table > thead > tr.success > td, body[data-theme="united"] .table > thead > tr.success > th,
body[data-theme="united"] .table > tbody > tr > td.success,
body[data-theme="united"] .table > tbody > tr > th.success,
body[data-theme="united"] .table > tbody > tr.success > td,
body[data-theme="united"] .table > tbody > tr.success > th,
body[data-theme="united"] .table > tfoot > tr > td.success,
body[data-theme="united"] .table > tfoot > tr > th.success,
body[data-theme="united"] .table > tfoot > tr.success > td,
body[data-theme="united"] .table > tfoot > tr.success > th {
  background-color: #dff0d8;
}
/* line 20, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */
body[data-theme="united"] .table-hover > tbody > tr > td.success:hover,
body[data-theme="united"] .table-hover > tbody > tr > th.success:hover, body[data-theme="united"] .table-hover > tbody > tr.success:hover > td, body[data-theme="united"] .table-hover > tbody > tr:hover > .success, body[data-theme="united"] .table-hover > tbody > tr.success:hover > th {
  background-color: #d0e9c6;
}
/* line 9, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */
body[data-theme="united"] .table > thead > tr > td.info,
body[data-theme="united"] .table > thead > tr > th.info, body[data-theme="united"] .table > thead > tr.info > td, body[data-theme="united"] .table > thead > tr.info > th,
body[data-theme="united"] .table > tbody > tr > td.info,
body[data-theme="united"] .table > tbody > tr > th.info,
body[data-theme="united"] .table > tbody > tr.info > td,
body[data-theme="united"] .table > tbody > tr.info > th,
body[data-theme="united"] .table > tfoot > tr > td.info,
body[data-theme="united"] .table > tfoot > tr > th.info,
body[data-theme="united"] .table > tfoot > tr.info > td,
body[data-theme="united"] .table > tfoot > tr.info > th {
  background-color: #d9edf7;
}
/* line 20, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */
body[data-theme="united"] .table-hover > tbody > tr > td.info:hover,
body[data-theme="united"] .table-hover > tbody > tr > th.info:hover, body[data-theme="united"] .table-hover > tbody > tr.info:hover > td, body[data-theme="united"] .table-hover > tbody > tr:hover > .info, body[data-theme="united"] .table-hover > tbody > tr.info:hover > th {
  background-color: #c4e3f3;
}
/* line 9, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */
body[data-theme="united"] .table > thead > tr > td.warning,
body[data-theme="united"] .table > thead > tr > th.warning, body[data-theme="united"] .table > thead > tr.warning > td, body[data-theme="united"] .table > thead > tr.warning > th,
body[data-theme="united"] .table > tbody > tr > td.warning,
body[data-theme="united"] .table > tbody > tr > th.warning,
body[data-theme="united"] .table > tbody > tr.warning > td,
body[data-theme="united"] .table > tbody > tr.warning > th,
body[data-theme="united"] .table > tfoot > tr > td.warning,
body[data-theme="united"] .table > tfoot > tr > th.warning,
body[data-theme="united"] .table > tfoot > tr.warning > td,
body[data-theme="united"] .table > tfoot > tr.warning > th {
  background-color: #fcf8e3;
}
/* line 20, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */
body[data-theme="united"] .table-hover > tbody > tr > td.warning:hover,
body[data-theme="united"] .table-hover > tbody > tr > th.warning:hover, body[data-theme="united"] .table-hover > tbody > tr.warning:hover > td, body[data-theme="united"] .table-hover > tbody > tr:hover > .warning, body[data-theme="united"] .table-hover > tbody > tr.warning:hover > th {
  background-color: #faf2cc;
}
/* line 9, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */
body[data-theme="united"] .table > thead > tr > td.danger,
body[data-theme="united"] .table > thead > tr > th.danger, body[data-theme="united"] .table > thead > tr.danger > td, body[data-theme="united"] .table > thead > tr.danger > th,
body[data-theme="united"] .table > tbody > tr > td.danger,
body[data-theme="united"] .table > tbody > tr > th.danger,
body[data-theme="united"] .table > tbody > tr.danger > td,
body[data-theme="united"] .table > tbody > tr.danger > th,
body[data-theme="united"] .table > tfoot > tr > td.danger,
body[data-theme="united"] .table > tfoot > tr > th.danger,
body[data-theme="united"] .table > tfoot > tr.danger > td,
body[data-theme="united"] .table > tfoot > tr.danger > th {
  background-color: #f2dede;
}
/* line 20, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */
body[data-theme="united"] .table-hover > tbody > tr > td.danger:hover,
body[data-theme="united"] .table-hover > tbody > tr > th.danger:hover, body[data-theme="united"] .table-hover > tbody > tr.danger:hover > td, body[data-theme="united"] .table-hover > tbody > tr:hover > .danger, body[data-theme="united"] .table-hover > tbody > tr.danger:hover > th {
  background-color: #ebcccc;
}
/* line 171, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
body[data-theme="united"] .table-responsive {
  min-height: .01%;
  overflow-x: auto;
}
@media screen and (max-width: 767px) {
  /* line 171, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
  body[data-theme="united"] .table-responsive {
    width: 100%;
    margin-bottom: 15px;
    overflow-y: hidden;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    border: 1px solid #ddd;
  }
  /* line 183, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
  body[data-theme="united"] .table-responsive > .table {
    margin-bottom: 0;
  }
  /* line 191, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
  body[data-theme="united"] .table-responsive > .table > thead > tr > th,
  body[data-theme="united"] .table-responsive > .table > thead > tr > td,
  body[data-theme="united"] .table-responsive > .table > tbody > tr > th,
  body[data-theme="united"] .table-responsive > .table > tbody > tr > td,
  body[data-theme="united"] .table-responsive > .table > tfoot > tr > th,
  body[data-theme="united"] .table-responsive > .table > tfoot > tr > td {
    white-space: nowrap;
  }
  /* line 200, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
  body[data-theme="united"] .table-responsive > .table-bordered {
    border: 0;
  }
  /* line 208, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
  body[data-theme="united"] .table-responsive > .table-bordered > thead > tr > th:first-child,
  body[data-theme="united"] .table-responsive > .table-bordered > thead > tr > td:first-child,
  body[data-theme="united"] .table-responsive > .table-bordered > tbody > tr > th:first-child,
  body[data-theme="united"] .table-responsive > .table-bordered > tbody > tr > td:first-child,
  body[data-theme="united"] .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  body[data-theme="united"] .table-responsive > .table-bordered > tfoot > tr > td:first-child {
    border-left: 0;
  }
  /* line 212, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
  body[data-theme="united"] .table-responsive > .table-bordered > thead > tr > th:last-child,
  body[data-theme="united"] .table-responsive > .table-bordered > thead > tr > td:last-child,
  body[data-theme="united"] .table-responsive > .table-bordered > tbody > tr > th:last-child,
  body[data-theme="united"] .table-responsive > .table-bordered > tbody > tr > td:last-child,
  body[data-theme="united"] .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  body[data-theme="united"] .table-responsive > .table-bordered > tfoot > tr > td:last-child {
    border-right: 0;
  }
  /* line 225, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
  body[data-theme="united"] .table-responsive > .table-bordered > tbody > tr:last-child > th,
  body[data-theme="united"] .table-responsive > .table-bordered > tbody > tr:last-child > td,
  body[data-theme="united"] .table-responsive > .table-bordered > tfoot > tr:last-child > th,
  body[data-theme="united"] .table-responsive > .table-bordered > tfoot > tr:last-child > td {
    border-bottom: 0;
  }
}
/* line 10, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body[data-theme="united"] fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}
/* line 20, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body[data-theme="united"] legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 20px;
  font-size: 21px;
  line-height: inherit;
  color: #333;
  border: 0;
  border-bottom: 1px solid #e5e5e5;
}
/* line 32, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body[data-theme="united"] label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: 700;
}
/* line 46, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body[data-theme="united"] input[type="search"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
}
/* line 61, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body[data-theme="united"] input[type="radio"], body[data-theme="united"] input[type="checkbox"] {
  margin: 4px 0 0;
  margin-top: 1px \9;
  line-height: normal;
}
/* line 71, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body[data-theme="united"] input[type="radio"][disabled], body[data-theme="united"] input[type="radio"].disabled, fieldset[disabled] body[data-theme="united"] input[type="radio"],
body[data-theme="united"] input[type="checkbox"][disabled],
body[data-theme="united"] input[type="checkbox"].disabled,
fieldset[disabled] body[data-theme="united"] input[type="checkbox"] {
  cursor: not-allowed;
}
/* line 78, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body[data-theme="united"] input[type="file"] {
  display: block;
}
/* line 83, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body[data-theme="united"] input[type="range"] {
  display: block;
  width: 100%;
}
/* line 89, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body[data-theme="united"] select[multiple],
body[data-theme="united"] select[size] {
  height: auto;
}
/* line 95, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body[data-theme="united"] input[type="file"]:focus,
body[data-theme="united"] input[type="radio"]:focus,
body[data-theme="united"] input[type="checkbox"]:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
/* line 102, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body[data-theme="united"] output {
  display: block;
  padding-top: 9px;
  font-size: 14px;
  line-height: 1.428571429;
  color: #333;
}
/* line 133, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body[data-theme="united"] .form-control {
  display: block;
  width: 100%;
  height: 38px;
  padding: 8px 12px;
  font-size: 14px;
  line-height: 1.428571429;
  color: #333;
  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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
body[data-theme="united"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_vendor-prefixes.scss */
body[data-theme="united"] .form-control::-moz-placeholder {
  color: #AEA79F;
  opacity: 1;
}
/* line 107, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_vendor-prefixes.scss */
body[data-theme="united"] .form-control:-ms-input-placeholder {
  color: #AEA79F;
}
/* line 108, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_vendor-prefixes.scss */
body[data-theme="united"] .form-control::-webkit-input-placeholder {
  color: #AEA79F;
}
/* line 155, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body[data-theme="united"] .form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}
/* line 165, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body[data-theme="united"] .form-control[disabled], body[data-theme="united"] .form-control[readonly], fieldset[disabled] body[data-theme="united"] .form-control {
  background-color: #eeeeee;
  opacity: 1;
}
/* line 172, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body[data-theme="united"] .form-control[disabled], fieldset[disabled] body[data-theme="united"] .form-control {
  cursor: not-allowed;
}
/* line 181, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body[data-theme="united"] textarea.form-control {
  height: auto;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  /* line 200, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  body[data-theme="united"] input[type="date"].form-control,
  body[data-theme="united"] input[type="time"].form-control,
  body[data-theme="united"] input[type="datetime-local"].form-control,
  body[data-theme="united"] input[type="month"].form-control {
    line-height: 38px;
  }
  /* line 204, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  body[data-theme="united"] input[type="date"].input-sm, body[data-theme="united"] body:not([data-theme]) .input-group-sm > input[type="date"].form-control,
  body[data-theme="united"] body:not([data-theme]) .input-group-sm > input[type="date"].input-group-addon, body[data-theme="united"] body[data-theme="light"] .input-group-sm > input[type="date"].form-control,
  body[data-theme="united"] body[data-theme="light"] .input-group-sm > input[type="date"].input-group-addon, body[data-theme="united"] .input-group-sm > input[type="date"].form-control,
  body[data-theme="united"] .input-group-sm > input[type="date"].input-group-addon,
  body[data-theme="united"] .input-group-sm > .input-group-btn > input[type="date"].btn, body[data-theme="united"] body[data-theme="slate"] .input-group-sm > input[type="date"].form-control,
  body[data-theme="united"] body[data-theme="slate"] .input-group-sm > input[type="date"].input-group-addon, .input-group-sm body[data-theme="united"] input[type="date"],
  body[data-theme="united"] input[type="time"].input-sm,
  body[data-theme="united"] body:not([data-theme]) .input-group-sm > input[type="time"].form-control,
  body[data-theme="united"] body:not([data-theme]) .input-group-sm > input[type="time"].input-group-addon,
  body[data-theme="united"] body[data-theme="light"] .input-group-sm > input[type="time"].form-control,
  body[data-theme="united"] body[data-theme="light"] .input-group-sm > input[type="time"].input-group-addon,
  body[data-theme="united"] .input-group-sm > input[type="time"].form-control,
  body[data-theme="united"] .input-group-sm > input[type="time"].input-group-addon,
  body[data-theme="united"] .input-group-sm > .input-group-btn > input[type="time"].btn,
  body[data-theme="united"] body[data-theme="slate"] .input-group-sm > input[type="time"].form-control,
  body[data-theme="united"] body[data-theme="slate"] .input-group-sm > input[type="time"].input-group-addon,
  .input-group-sm body[data-theme="united"] input[type="time"],
  body[data-theme="united"] input[type="datetime-local"].input-sm,
  body[data-theme="united"] body:not([data-theme]) .input-group-sm > input[type="datetime-local"].form-control,
  body[data-theme="united"] body:not([data-theme]) .input-group-sm > input[type="datetime-local"].input-group-addon,
  body[data-theme="united"] body[data-theme="light"] .input-group-sm > input[type="datetime-local"].form-control,
  body[data-theme="united"] body[data-theme="light"] .input-group-sm > input[type="datetime-local"].input-group-addon,
  body[data-theme="united"] .input-group-sm > input[type="datetime-local"].form-control,
  body[data-theme="united"] .input-group-sm > input[type="datetime-local"].input-group-addon,
  body[data-theme="united"] .input-group-sm > .input-group-btn > input[type="datetime-local"].btn,
  body[data-theme="united"] body[data-theme="slate"] .input-group-sm > input[type="datetime-local"].form-control,
  body[data-theme="united"] body[data-theme="slate"] .input-group-sm > input[type="datetime-local"].input-group-addon,
  .input-group-sm body[data-theme="united"] input[type="datetime-local"],
  body[data-theme="united"] input[type="month"].input-sm,
  body[data-theme="united"] body:not([data-theme]) .input-group-sm > input[type="month"].form-control,
  body[data-theme="united"] body:not([data-theme]) .input-group-sm > input[type="month"].input-group-addon,
  body[data-theme="united"] body[data-theme="light"] .input-group-sm > input[type="month"].form-control,
  body[data-theme="united"] body[data-theme="light"] .input-group-sm > input[type="month"].input-group-addon,
  body[data-theme="united"] .input-group-sm > input[type="month"].form-control,
  body[data-theme="united"] .input-group-sm > input[type="month"].input-group-addon,
  body[data-theme="united"] .input-group-sm > .input-group-btn > input[type="month"].btn,
  body[data-theme="united"] body[data-theme="slate"] .input-group-sm > input[type="month"].form-control,
  body[data-theme="united"] body[data-theme="slate"] .input-group-sm > input[type="month"].input-group-addon,
  .input-group-sm body[data-theme="united"] input[type="month"] {
    line-height: 30px;
  }
  /* line 209, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  body[data-theme="united"] input[type="date"].input-lg, body[data-theme="united"] body:not([data-theme]) .input-group-lg > input[type="date"].form-control,
  body[data-theme="united"] body:not([data-theme]) .input-group-lg > input[type="date"].input-group-addon, body[data-theme="united"] body[data-theme="light"] .input-group-lg > input[type="date"].form-control,
  body[data-theme="united"] body[data-theme="light"] .input-group-lg > input[type="date"].input-group-addon, body[data-theme="united"] .input-group-lg > input[type="date"].form-control,
  body[data-theme="united"] .input-group-lg > input[type="date"].input-group-addon,
  body[data-theme="united"] .input-group-lg > .input-group-btn > input[type="date"].btn, body[data-theme="united"] body[data-theme="slate"] .input-group-lg > input[type="date"].form-control,
  body[data-theme="united"] body[data-theme="slate"] .input-group-lg > input[type="date"].input-group-addon, .input-group-lg body[data-theme="united"] input[type="date"], body[data-theme="united"] input[type="time"].input-lg, body[data-theme="united"] body:not([data-theme]) .input-group-lg > input[type="time"].form-control,
  body[data-theme="united"] body:not([data-theme]) .input-group-lg > input[type="time"].input-group-addon, body[data-theme="united"] body[data-theme="light"] .input-group-lg > input[type="time"].form-control,
  body[data-theme="united"] body[data-theme="light"] .input-group-lg > input[type="time"].input-group-addon, body[data-theme="united"] .input-group-lg > input[type="time"].form-control,
  body[data-theme="united"] .input-group-lg > input[type="time"].input-group-addon,
  body[data-theme="united"] .input-group-lg > .input-group-btn > input[type="time"].btn, body[data-theme="united"] body[data-theme="slate"] .input-group-lg > input[type="time"].form-control,
  body[data-theme="united"] body[data-theme="slate"] .input-group-lg > input[type="time"].input-group-addon, .input-group-lg body[data-theme="united"] input[type="time"], body[data-theme="united"] input[type="datetime-local"].input-lg, body[data-theme="united"] body:not([data-theme]) .input-group-lg > input[type="datetime-local"].form-control,
  body[data-theme="united"] body:not([data-theme]) .input-group-lg > input[type="datetime-local"].input-group-addon, body[data-theme="united"] body[data-theme="light"] .input-group-lg > input[type="datetime-local"].form-control,
  body[data-theme="united"] body[data-theme="light"] .input-group-lg > input[type="datetime-local"].input-group-addon, body[data-theme="united"] .input-group-lg > input[type="datetime-local"].form-control,
  body[data-theme="united"] .input-group-lg > input[type="datetime-local"].input-group-addon,
  body[data-theme="united"] .input-group-lg > .input-group-btn > input[type="datetime-local"].btn, body[data-theme="united"] body[data-theme="slate"] .input-group-lg > input[type="datetime-local"].form-control,
  body[data-theme="united"] body[data-theme="slate"] .input-group-lg > input[type="datetime-local"].input-group-addon, .input-group-lg body[data-theme="united"] input[type="datetime-local"], body[data-theme="united"] input[type="month"].input-lg, body[data-theme="united"] body:not([data-theme]) .input-group-lg > input[type="month"].form-control,
  body[data-theme="united"] body:not([data-theme]) .input-group-lg > input[type="month"].input-group-addon, body[data-theme="united"] body[data-theme="light"] .input-group-lg > input[type="month"].form-control,
  body[data-theme="united"] body[data-theme="light"] .input-group-lg > input[type="month"].input-group-addon, body[data-theme="united"] .input-group-lg > input[type="month"].form-control,
  body[data-theme="united"] .input-group-lg > input[type="month"].input-group-addon,
  body[data-theme="united"] .input-group-lg > .input-group-btn > input[type="month"].btn, body[data-theme="united"] body[data-theme="slate"] .input-group-lg > input[type="month"].form-control,
  body[data-theme="united"] body[data-theme="slate"] .input-group-lg > input[type="month"].input-group-addon, .input-group-lg body[data-theme="united"] input[type="month"] {
    line-height: 54px;
  }
}
/* line 222, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body[data-theme="united"] .form-group {
  margin-bottom: 15px;
}
/* line 231, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body[data-theme="united"] .radio, body[data-theme="united"] .checkbox {
  position: relative;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
}
/* line 241, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body[data-theme="united"] .radio.disabled label, fieldset[disabled] body[data-theme="united"] .radio label,
body[data-theme="united"] .checkbox.disabled label,
fieldset[disabled] body[data-theme="united"] .checkbox label {
  cursor: not-allowed;
}
/* line 246, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body[data-theme="united"] .radio label, body[data-theme="united"] .checkbox label {
  min-height: 20px;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: 400;
  cursor: pointer;
}
/* line 254, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body[data-theme="united"] .radio input[type="radio"],
body[data-theme="united"] .radio-inline input[type="radio"],
body[data-theme="united"] .checkbox input[type="checkbox"],
body[data-theme="united"] .checkbox-inline input[type="checkbox"] {
  position: absolute;
  margin-top: 4px \9;
  margin-left: -20px;
}
/* line 263, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body[data-theme="united"] .radio + .radio,
body[data-theme="united"] .checkbox + .checkbox {
  margin-top: -5px;
}
/* line 269, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body[data-theme="united"] .radio-inline, body[data-theme="united"] .checkbox-inline {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: 400;
  vertical-align: middle;
  cursor: pointer;
}
/* line 280, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body[data-theme="united"] .radio-inline.disabled, fieldset[disabled] body[data-theme="united"] .radio-inline,
body[data-theme="united"] .checkbox-inline.disabled,
fieldset[disabled] body[data-theme="united"] .checkbox-inline {
  cursor: not-allowed;
}
/* line 285, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body[data-theme="united"] .radio-inline + .radio-inline,
body[data-theme="united"] .checkbox-inline + .checkbox-inline {
  margin-top: 0;
  margin-left: 10px;
}
/* line 297, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body[data-theme="united"] .form-control-static {
  min-height: 34px;
  padding-top: 9px;
  padding-bottom: 9px;
  margin-bottom: 0;
}
/* line 305, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body[data-theme="united"] .form-control-static.input-lg, body[data-theme="united"] body:not([data-theme]) .input-group-lg > .form-control-static.form-control,
body[data-theme="united"] body:not([data-theme]) .input-group-lg > .form-control-static.input-group-addon, body[data-theme="united"] body[data-theme="light"] .input-group-lg > .form-control-static.form-control,
body[data-theme="united"] body[data-theme="light"] .input-group-lg > .form-control-static.input-group-addon, body[data-theme="united"] .input-group-lg > .form-control-static.form-control,
body[data-theme="united"] .input-group-lg > .form-control-static.input-group-addon,
body[data-theme="united"] .input-group-lg > .input-group-btn > .form-control-static.btn, body[data-theme="united"] body[data-theme="slate"] .input-group-lg > .form-control-static.form-control,
body[data-theme="united"] body[data-theme="slate"] .input-group-lg > .form-control-static.input-group-addon, body[data-theme="united"] .form-control-static.input-sm, body[data-theme="united"] body:not([data-theme]) .input-group-sm > .form-control-static.form-control,
body[data-theme="united"] body:not([data-theme]) .input-group-sm > .form-control-static.input-group-addon, body[data-theme="united"] body[data-theme="light"] .input-group-sm > .form-control-static.form-control,
body[data-theme="united"] body[data-theme="light"] .input-group-sm > .form-control-static.input-group-addon, body[data-theme="united"] .input-group-sm > .form-control-static.form-control,
body[data-theme="united"] .input-group-sm > .form-control-static.input-group-addon,
body[data-theme="united"] .input-group-sm > .input-group-btn > .form-control-static.btn, body[data-theme="united"] body[data-theme="slate"] .input-group-sm > .form-control-static.form-control,
body[data-theme="united"] body[data-theme="slate"] .input-group-sm > .form-control-static.input-group-addon {
  padding-right: 0;
  padding-left: 0;
}
/* line 71, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
body[data-theme="united"] .input-sm, body[data-theme="united"] body:not([data-theme]) .input-group-sm > .form-control,
body[data-theme="united"] body:not([data-theme]) .input-group-sm > .input-group-addon, body[data-theme="united"] body[data-theme="light"] .input-group-sm > .form-control,
body[data-theme="united"] body[data-theme="light"] .input-group-sm > .input-group-addon, body[data-theme="united"] .input-group-sm > .form-control,
body[data-theme="united"] .input-group-sm > .input-group-addon,
body[data-theme="united"] .input-group-sm > .input-group-btn > .btn, body[data-theme="united"] body[data-theme="slate"] .input-group-sm > .form-control,
body[data-theme="united"] body[data-theme="slate"] .input-group-sm > .input-group-addon {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
/* line 79, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
body[data-theme="united"] select.input-sm, body[data-theme="united"] body:not([data-theme]) .input-group-sm > select.form-control,
body[data-theme="united"] body:not([data-theme]) .input-group-sm > select.input-group-addon, body[data-theme="united"] body[data-theme="light"] .input-group-sm > select.form-control,
body[data-theme="united"] body[data-theme="light"] .input-group-sm > select.input-group-addon, body[data-theme="united"] .input-group-sm > select.form-control,
body[data-theme="united"] .input-group-sm > select.input-group-addon,
body[data-theme="united"] .input-group-sm > .input-group-btn > select.btn, body[data-theme="united"] body[data-theme="slate"] .input-group-sm > select.form-control,
body[data-theme="united"] body[data-theme="slate"] .input-group-sm > select.input-group-addon {
  height: 30px;
  line-height: 30px;
}
/* line 84, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
body[data-theme="united"] textarea.input-sm, body[data-theme="united"] body:not([data-theme]) .input-group-sm > textarea.form-control,
body[data-theme="united"] body:not([data-theme]) .input-group-sm > textarea.input-group-addon, body[data-theme="united"] body[data-theme="light"] .input-group-sm > textarea.form-control,
body[data-theme="united"] body[data-theme="light"] .input-group-sm > textarea.input-group-addon, body[data-theme="united"] .input-group-sm > textarea.form-control,
body[data-theme="united"] .input-group-sm > textarea.input-group-addon,
body[data-theme="united"] .input-group-sm > .input-group-btn > textarea.btn, body[data-theme="united"] body[data-theme="slate"] .input-group-sm > textarea.form-control,
body[data-theme="united"] body[data-theme="slate"] .input-group-sm > textarea.input-group-addon,
body[data-theme="united"] select[multiple].input-sm,
body[data-theme="united"] body:not([data-theme]) .input-group-sm > select[multiple].form-control,
body[data-theme="united"] body:not([data-theme]) .input-group-sm > select[multiple].input-group-addon,
body[data-theme="united"] body[data-theme="light"] .input-group-sm > select[multiple].form-control,
body[data-theme="united"] body[data-theme="light"] .input-group-sm > select[multiple].input-group-addon,
body[data-theme="united"] .input-group-sm > select[multiple].form-control,
body[data-theme="united"] .input-group-sm > select[multiple].input-group-addon,
body[data-theme="united"] .input-group-sm > .input-group-btn > select[multiple].btn,
body[data-theme="united"] body[data-theme="slate"] .input-group-sm > select[multiple].form-control,
body[data-theme="united"] body[data-theme="slate"] .input-group-sm > select[multiple].input-group-addon {
  height: auto;
}
/* line 323, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body[data-theme="united"] .form-group-sm .form-control {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
/* line 330, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body[data-theme="united"] .form-group-sm select.form-control {
  height: 30px;
  line-height: 30px;
}
/* line 334, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body[data-theme="united"] .form-group-sm textarea.form-control,
body[data-theme="united"] .form-group-sm select[multiple].form-control {
  height: auto;
}
/* line 338, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body[data-theme="united"] .form-group-sm .form-control-static {
  height: 30px;
  min-height: 32px;
  padding: 6px 10px;
  font-size: 12px;
  line-height: 1.5;
}
/* line 71, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
body[data-theme="united"] .input-lg, body[data-theme="united"] body:not([data-theme]) .input-group-lg > .form-control,
body[data-theme="united"] body:not([data-theme]) .input-group-lg > .input-group-addon, body[data-theme="united"] body[data-theme="light"] .input-group-lg > .form-control,
body[data-theme="united"] body[data-theme="light"] .input-group-lg > .input-group-addon, body[data-theme="united"] .input-group-lg > .form-control,
body[data-theme="united"] .input-group-lg > .input-group-addon,
body[data-theme="united"] .input-group-lg > .input-group-btn > .btn, body[data-theme="united"] body[data-theme="slate"] .input-group-lg > .form-control,
body[data-theme="united"] body[data-theme="slate"] .input-group-lg > .input-group-addon {
  height: 54px;
  padding: 14px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}
/* line 79, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
body[data-theme="united"] select.input-lg, body[data-theme="united"] body:not([data-theme]) .input-group-lg > select.form-control,
body[data-theme="united"] body:not([data-theme]) .input-group-lg > select.input-group-addon, body[data-theme="united"] body[data-theme="light"] .input-group-lg > select.form-control,
body[data-theme="united"] body[data-theme="light"] .input-group-lg > select.input-group-addon, body[data-theme="united"] .input-group-lg > select.form-control,
body[data-theme="united"] .input-group-lg > select.input-group-addon,
body[data-theme="united"] .input-group-lg > .input-group-btn > select.btn, body[data-theme="united"] body[data-theme="slate"] .input-group-lg > select.form-control,
body[data-theme="united"] body[data-theme="slate"] .input-group-lg > select.input-group-addon {
  height: 54px;
  line-height: 54px;
}
/* line 84, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
body[data-theme="united"] textarea.input-lg, body[data-theme="united"] body:not([data-theme]) .input-group-lg > textarea.form-control,
body[data-theme="united"] body:not([data-theme]) .input-group-lg > textarea.input-group-addon, body[data-theme="united"] body[data-theme="light"] .input-group-lg > textarea.form-control,
body[data-theme="united"] body[data-theme="light"] .input-group-lg > textarea.input-group-addon, body[data-theme="united"] .input-group-lg > textarea.form-control,
body[data-theme="united"] .input-group-lg > textarea.input-group-addon,
body[data-theme="united"] .input-group-lg > .input-group-btn > textarea.btn, body[data-theme="united"] body[data-theme="slate"] .input-group-lg > textarea.form-control,
body[data-theme="united"] body[data-theme="slate"] .input-group-lg > textarea.input-group-addon,
body[data-theme="united"] select[multiple].input-lg,
body[data-theme="united"] body:not([data-theme]) .input-group-lg > select[multiple].form-control,
body[data-theme="united"] body:not([data-theme]) .input-group-lg > select[multiple].input-group-addon,
body[data-theme="united"] body[data-theme="light"] .input-group-lg > select[multiple].form-control,
body[data-theme="united"] body[data-theme="light"] .input-group-lg > select[multiple].input-group-addon,
body[data-theme="united"] .input-group-lg > select[multiple].form-control,
body[data-theme="united"] .input-group-lg > select[multiple].input-group-addon,
body[data-theme="united"] .input-group-lg > .input-group-btn > select[multiple].btn,
body[data-theme="united"] body[data-theme="slate"] .input-group-lg > select[multiple].form-control,
body[data-theme="united"] body[data-theme="slate"] .input-group-lg > select[multiple].input-group-addon {
  height: auto;
}
/* line 349, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body[data-theme="united"] .form-group-lg .form-control {
  height: 54px;
  padding: 14px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}
/* line 356, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body[data-theme="united"] .form-group-lg select.form-control {
  height: 54px;
  line-height: 54px;
}
/* line 360, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body[data-theme="united"] .form-group-lg textarea.form-control,
body[data-theme="united"] .form-group-lg select[multiple].form-control {
  height: auto;
}
/* line 364, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body[data-theme="united"] .form-group-lg .form-control-static {
  height: 54px;
  min-height: 38px;
  padding: 15px 16px;
  font-size: 18px;
  line-height: 1.3333333;
}
/* line 378, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body[data-theme="united"] .has-feedback {
  position: relative;
}
/* line 383, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body[data-theme="united"] .has-feedback .form-control {
  padding-right: 47.5px;
}
/* line 388, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body[data-theme="united"] .form-control-feedback {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: block;
  width: 38px;
  height: 38px;
  line-height: 38px;
  text-align: center;
  pointer-events: none;
}
/* line 400, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body[data-theme="united"] .input-lg + .form-control-feedback, body[data-theme="united"] .input-group-lg > .form-control + .form-control-feedback,
body[data-theme="united"] .input-group-lg > .input-group-addon + .form-control-feedback,
body[data-theme="united"] .input-group-lg > .input-group-btn > .btn + .form-control-feedback,
body[data-theme="united"] .input-group-lg + .form-control-feedback,
body[data-theme="united"] .form-group-lg .form-control + .form-control-feedback {
  width: 54px;
  height: 54px;
  line-height: 54px;
}
/* line 407, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body[data-theme="united"] .input-sm + .form-control-feedback, body[data-theme="united"] .input-group-sm > .form-control + .form-control-feedback,
body[data-theme="united"] .input-group-sm > .input-group-addon + .form-control-feedback,
body[data-theme="united"] .input-group-sm > .input-group-btn > .btn + .form-control-feedback,
body[data-theme="united"] .input-group-sm + .form-control-feedback,
body[data-theme="united"] .form-group-sm .form-control + .form-control-feedback {
  width: 30px;
  height: 30px;
  line-height: 30px;
}
/* line 8, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
body[data-theme="united"] .has-success .help-block,
body[data-theme="united"] .has-success .control-label,
body[data-theme="united"] .has-success .radio,
body[data-theme="united"] .has-success .checkbox,
body[data-theme="united"] .has-success .radio-inline,
body[data-theme="united"] .has-success .checkbox-inline, body[data-theme="united"] .has-success.radio label, body[data-theme="united"] .has-success.checkbox label, body[data-theme="united"] .has-success.radio-inline label, body[data-theme="united"] .has-success.checkbox-inline label {
  color: #468847;
}
/* line 21, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
body[data-theme="united"] .has-success .form-control {
  border-color: #468847;
  -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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
body[data-theme="united"] .has-success .form-control:focus {
  border-color: #356635;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b;
}
/* line 31, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
body[data-theme="united"] .has-success .input-group-addon {
  color: #468847;
  background-color: #dff0d8;
  border-color: #468847;
}
/* line 37, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
body[data-theme="united"] .has-success .form-control-feedback {
  color: #468847;
}
/* line 8, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
body[data-theme="united"] .has-warning .help-block,
body[data-theme="united"] .has-warning .control-label,
body[data-theme="united"] .has-warning .radio,
body[data-theme="united"] .has-warning .checkbox,
body[data-theme="united"] .has-warning .radio-inline,
body[data-theme="united"] .has-warning .checkbox-inline, body[data-theme="united"] .has-warning.radio label, body[data-theme="united"] .has-warning.checkbox label, body[data-theme="united"] .has-warning.radio-inline label, body[data-theme="united"] .has-warning.checkbox-inline label {
  color: #c09853;
}
/* line 21, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
body[data-theme="united"] .has-warning .form-control {
  border-color: #c09853;
  -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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
body[data-theme="united"] .has-warning .form-control:focus {
  border-color: #a47e3c;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e;
}
/* line 31, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
body[data-theme="united"] .has-warning .input-group-addon {
  color: #c09853;
  background-color: #fcf8e3;
  border-color: #c09853;
}
/* line 37, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
body[data-theme="united"] .has-warning .form-control-feedback {
  color: #c09853;
}
/* line 8, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
body[data-theme="united"] .has-error .help-block,
body[data-theme="united"] .has-error .control-label,
body[data-theme="united"] .has-error .radio,
body[data-theme="united"] .has-error .checkbox,
body[data-theme="united"] .has-error .radio-inline,
body[data-theme="united"] .has-error .checkbox-inline, body[data-theme="united"] .has-error.radio label, body[data-theme="united"] .has-error.checkbox label, body[data-theme="united"] .has-error.radio-inline label, body[data-theme="united"] .has-error.checkbox-inline label {
  color: #b94a48;
}
/* line 21, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
body[data-theme="united"] .has-error .form-control {
  border-color: #b94a48;
  -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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
body[data-theme="united"] .has-error .form-control:focus {
  border-color: #953b39;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392;
}
/* line 31, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
body[data-theme="united"] .has-error .input-group-addon {
  color: #b94a48;
  background-color: #f2dede;
  border-color: #b94a48;
}
/* line 37, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
body[data-theme="united"] .has-error .form-control-feedback {
  color: #b94a48;
}
/* line 429, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body[data-theme="united"] .has-feedback label ~ .form-control-feedback {
  top: 25px;
}
/* line 432, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body[data-theme="united"] .has-feedback label.sr-only ~ .form-control-feedback {
  top: 0;
}
/* line 443, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body[data-theme="united"] .help-block {
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #737373;
}
@media (min-width: 768px) {
  /* line 468, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  body[data-theme="united"] .form-inline .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  /* line 475, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  body[data-theme="united"] .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  /* line 482, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  body[data-theme="united"] .form-inline .form-control-static {
    display: inline-block;
  }
  /* line 486, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  body[data-theme="united"] .form-inline .input-group {
    display: inline-table;
    vertical-align: middle;
  }
  /* line 490, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  body[data-theme="united"] .form-inline .input-group .input-group-addon,
  body[data-theme="united"] .form-inline .input-group .input-group-btn,
  body[data-theme="united"] .form-inline .input-group .form-control {
    width: auto;
  }
  /* line 498, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  body[data-theme="united"] .form-inline .input-group > .form-control {
    width: 100%;
  }
  /* line 502, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  body[data-theme="united"] .form-inline .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
  /* line 509, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  body[data-theme="united"] .form-inline .radio,
  body[data-theme="united"] .form-inline .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }
  /* line 516, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  body[data-theme="united"] .form-inline .radio label,
  body[data-theme="united"] .form-inline .checkbox label {
    padding-left: 0;
  }
  /* line 520, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  body[data-theme="united"] .form-inline .radio input[type="radio"],
  body[data-theme="united"] .form-inline .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0;
  }
  /* line 527, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  body[data-theme="united"] .form-inline .has-feedback .form-control-feedback {
    top: 0;
  }
}
/* line 549, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body[data-theme="united"] .form-horizontal .radio,
body[data-theme="united"] .form-horizontal .checkbox,
body[data-theme="united"] .form-horizontal .radio-inline,
body[data-theme="united"] .form-horizontal .checkbox-inline {
  padding-top: 9px;
  margin-top: 0;
  margin-bottom: 0;
}
/* line 559, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body[data-theme="united"] .form-horizontal .radio,
body[data-theme="united"] .form-horizontal .checkbox {
  min-height: 29px;
}
/* line 565, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body[data-theme="united"] .form-horizontal .form-group {
  margin-right: -15px;
  margin-left: -15px;
}
/* line 14, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
body[data-theme="united"] .form-horizontal .form-group:before, body[data-theme="united"] .form-horizontal .form-group:after {
  display: table;
  content: " ";
}
/* line 19, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
body[data-theme="united"] .form-horizontal .form-group:after {
  clear: both;
}
@media (min-width: 768px) {
  /* line 572, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  body[data-theme="united"] .form-horizontal .control-label {
    padding-top: 9px;
    margin-bottom: 0;
    text-align: right;
  }
}
/* line 583, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body[data-theme="united"] .form-horizontal .has-feedback .form-control-feedback {
  right: 15px;
}
@media (min-width: 768px) {
  /* line 593, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  body[data-theme="united"] .form-horizontal .form-group-lg .control-label {
    padding-top: 15px;
    font-size: 18px;
  }
}
@media (min-width: 768px) {
  /* line 601, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  body[data-theme="united"] .form-horizontal .form-group-sm .control-label {
    padding-top: 6px;
    font-size: 12px;
  }
}
/* line 9, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
body[data-theme="united"] .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: 8px 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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
body[data-theme="united"] .btn:focus, body[data-theme="united"] .btn.focus, body[data-theme="united"] .btn:active:focus, body[data-theme="united"] .btn:active.focus, body[data-theme="united"] .btn.active:focus, body[data-theme="united"] .btn.active.focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
/* line 32, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
body[data-theme="united"] .btn:hover, body[data-theme="united"] .btn:focus, body[data-theme="united"] .btn.focus {
  color: #fff;
  text-decoration: none;
}
/* line 39, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
body[data-theme="united"] .btn:active, body[data-theme="united"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
body[data-theme="united"] .btn.disabled, body[data-theme="united"] .btn[disabled], fieldset[disabled] body[data-theme="united"] .btn {
  cursor: not-allowed;
  filter: alpha(opacity=65);
  opacity: 0.65;
  -webkit-box-shadow: none;
  box-shadow: none;
}
/* line 58, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
body[data-theme="united"] a.btn.disabled, fieldset[disabled] body[data-theme="united"] a.btn {
  pointer-events: none;
}
/* line 68, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
body[data-theme="united"] .btn-default {
  color: #fff;
  background-color: #AEA79F;
  border-color: #AEA79F;
}
/* line 11, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
body[data-theme="united"] .btn-default:focus, body[data-theme="united"] .btn-default.focus {
  color: #fff;
  background-color: #978e83;
  border-color: #6f675e;
}
/* line 17, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
body[data-theme="united"] .btn-default:hover {
  color: #fff;
  background-color: #978e83;
  border-color: #92897e;
}
/* line 22, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
body[data-theme="united"] .btn-default:active, body[data-theme="united"] .btn-default.active, .open > body[data-theme="united"] .btn-default.dropdown-toggle {
  color: #fff;
  background-color: #978e83;
  background-image: none;
  border-color: #92897e;
}
/* line 30, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
body[data-theme="united"] .btn-default:active:hover, body[data-theme="united"] .btn-default:active:focus, body[data-theme="united"] .btn-default:active.focus, body[data-theme="united"] .btn-default.active:hover, body[data-theme="united"] .btn-default.active:focus, body[data-theme="united"] .btn-default.active.focus, .open > body[data-theme="united"] .btn-default.dropdown-toggle:hover, .open > body[data-theme="united"] .btn-default.dropdown-toggle:focus, .open > body[data-theme="united"] .btn-default.dropdown-toggle.focus {
  color: #fff;
  background-color: #867c71;
  border-color: #6f675e;
}
/* line 41, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
body[data-theme="united"] .btn-default.disabled:hover, body[data-theme="united"] .btn-default.disabled:focus, body[data-theme="united"] .btn-default.disabled.focus, body[data-theme="united"] .btn-default[disabled]:hover, body[data-theme="united"] .btn-default[disabled]:focus, body[data-theme="united"] .btn-default[disabled].focus, fieldset[disabled] body[data-theme="united"] .btn-default:hover, fieldset[disabled] body[data-theme="united"] .btn-default:focus, fieldset[disabled] body[data-theme="united"] .btn-default.focus {
  background-color: #AEA79F;
  border-color: #AEA79F;
}
/* line 49, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
body[data-theme="united"] .btn-default .badge {
  color: #AEA79F;
  background-color: #fff;
}
/* line 71, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
body[data-theme="united"] .btn-primary {
  color: #fff;
  background-color: #DD4814;
  border-color: #DD4814;
}
/* line 11, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
body[data-theme="united"] .btn-primary:focus, body[data-theme="united"] .btn-primary.focus {
  color: #fff;
  background-color: #ae3910;
  border-color: #682209;
}
/* line 17, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
body[data-theme="united"] .btn-primary:hover {
  color: #fff;
  background-color: #ae3910;
  border-color: #a5360f;
}
/* line 22, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
body[data-theme="united"] .btn-primary:active, body[data-theme="united"] .btn-primary.active, .open > body[data-theme="united"] .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #ae3910;
  background-image: none;
  border-color: #a5360f;
}
/* line 30, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
body[data-theme="united"] .btn-primary:active:hover, body[data-theme="united"] .btn-primary:active:focus, body[data-theme="united"] .btn-primary:active.focus, body[data-theme="united"] .btn-primary.active:hover, body[data-theme="united"] .btn-primary.active:focus, body[data-theme="united"] .btn-primary.active.focus, .open > body[data-theme="united"] .btn-primary.dropdown-toggle:hover, .open > body[data-theme="united"] .btn-primary.dropdown-toggle:focus, .open > body[data-theme="united"] .btn-primary.dropdown-toggle.focus {
  color: #fff;
  background-color: #8d2e0d;
  border-color: #682209;
}
/* line 41, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
body[data-theme="united"] .btn-primary.disabled:hover, body[data-theme="united"] .btn-primary.disabled:focus, body[data-theme="united"] .btn-primary.disabled.focus, body[data-theme="united"] .btn-primary[disabled]:hover, body[data-theme="united"] .btn-primary[disabled]:focus, body[data-theme="united"] .btn-primary[disabled].focus, fieldset[disabled] body[data-theme="united"] .btn-primary:hover, fieldset[disabled] body[data-theme="united"] .btn-primary:focus, fieldset[disabled] body[data-theme="united"] .btn-primary.focus {
  background-color: #DD4814;
  border-color: #DD4814;
}
/* line 49, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
body[data-theme="united"] .btn-primary .badge {
  color: #DD4814;
  background-color: #fff;
}
/* line 75, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
body[data-theme="united"] .btn-success {
  color: #fff;
  background-color: #38B44A;
  border-color: #38B44A;
}
/* line 11, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
body[data-theme="united"] .btn-success:focus, body[data-theme="united"] .btn-success.focus {
  color: #fff;
  background-color: #2c8d3a;
  border-color: #1a5322;
}
/* line 17, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
body[data-theme="united"] .btn-success:hover {
  color: #fff;
  background-color: #2c8d3a;
  border-color: #298537;
}
/* line 22, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
body[data-theme="united"] .btn-success:active, body[data-theme="united"] .btn-success.active, .open > body[data-theme="united"] .btn-success.dropdown-toggle {
  color: #fff;
  background-color: #2c8d3a;
  background-image: none;
  border-color: #298537;
}
/* line 30, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
body[data-theme="united"] .btn-success:active:hover, body[data-theme="united"] .btn-success:active:focus, body[data-theme="united"] .btn-success:active.focus, body[data-theme="united"] .btn-success.active:hover, body[data-theme="united"] .btn-success.active:focus, body[data-theme="united"] .btn-success.active.focus, .open > body[data-theme="united"] .btn-success.dropdown-toggle:hover, .open > body[data-theme="united"] .btn-success.dropdown-toggle:focus, .open > body[data-theme="united"] .btn-success.dropdown-toggle.focus {
  color: #fff;
  background-color: #23722f;
  border-color: #1a5322;
}
/* line 41, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
body[data-theme="united"] .btn-success.disabled:hover, body[data-theme="united"] .btn-success.disabled:focus, body[data-theme="united"] .btn-success.disabled.focus, body[data-theme="united"] .btn-success[disabled]:hover, body[data-theme="united"] .btn-success[disabled]:focus, body[data-theme="united"] .btn-success[disabled].focus, fieldset[disabled] body[data-theme="united"] .btn-success:hover, fieldset[disabled] body[data-theme="united"] .btn-success:focus, fieldset[disabled] body[data-theme="united"] .btn-success.focus {
  background-color: #38B44A;
  border-color: #38B44A;
}
/* line 49, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
body[data-theme="united"] .btn-success .badge {
  color: #38B44A;
  background-color: #fff;
}
/* line 79, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
body[data-theme="united"] .btn-info {
  color: #fff;
  background-color: #772953;
  border-color: #772953;
}
/* line 11, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
body[data-theme="united"] .btn-info:focus, body[data-theme="united"] .btn-info.focus {
  color: #fff;
  background-color: #511c39;
  border-color: #180811;
}
/* line 17, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
body[data-theme="united"] .btn-info:hover {
  color: #fff;
  background-color: #511c39;
  border-color: #491933;
}
/* line 22, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
body[data-theme="united"] .btn-info:active, body[data-theme="united"] .btn-info.active, .open > body[data-theme="united"] .btn-info.dropdown-toggle {
  color: #fff;
  background-color: #511c39;
  background-image: none;
  border-color: #491933;
}
/* line 30, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
body[data-theme="united"] .btn-info:active:hover, body[data-theme="united"] .btn-info:active:focus, body[data-theme="united"] .btn-info:active.focus, body[data-theme="united"] .btn-info.active:hover, body[data-theme="united"] .btn-info.active:focus, body[data-theme="united"] .btn-info.active.focus, .open > body[data-theme="united"] .btn-info.dropdown-toggle:hover, .open > body[data-theme="united"] .btn-info.dropdown-toggle:focus, .open > body[data-theme="united"] .btn-info.dropdown-toggle.focus {
  color: #fff;
  background-color: #371326;
  border-color: #180811;
}
/* line 41, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
body[data-theme="united"] .btn-info.disabled:hover, body[data-theme="united"] .btn-info.disabled:focus, body[data-theme="united"] .btn-info.disabled.focus, body[data-theme="united"] .btn-info[disabled]:hover, body[data-theme="united"] .btn-info[disabled]:focus, body[data-theme="united"] .btn-info[disabled].focus, fieldset[disabled] body[data-theme="united"] .btn-info:hover, fieldset[disabled] body[data-theme="united"] .btn-info:focus, fieldset[disabled] body[data-theme="united"] .btn-info.focus {
  background-color: #772953;
  border-color: #772953;
}
/* line 49, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
body[data-theme="united"] .btn-info .badge {
  color: #772953;
  background-color: #fff;
}
/* line 83, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
body[data-theme="united"] .btn-warning {
  color: #fff;
  background-color: #EFB73E;
  border-color: #EFB73E;
}
/* line 11, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
body[data-theme="united"] .btn-warning:focus, body[data-theme="united"] .btn-warning.focus {
  color: #fff;
  background-color: #e7a413;
  border-color: #a0720d;
}
/* line 17, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
body[data-theme="united"] .btn-warning:hover {
  color: #fff;
  background-color: #e7a413;
  border-color: #dd9d12;
}
/* line 22, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
body[data-theme="united"] .btn-warning:active, body[data-theme="united"] .btn-warning.active, .open > body[data-theme="united"] .btn-warning.dropdown-toggle {
  color: #fff;
  background-color: #e7a413;
  background-image: none;
  border-color: #dd9d12;
}
/* line 30, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
body[data-theme="united"] .btn-warning:active:hover, body[data-theme="united"] .btn-warning:active:focus, body[data-theme="united"] .btn-warning:active.focus, body[data-theme="united"] .btn-warning.active:hover, body[data-theme="united"] .btn-warning.active:focus, body[data-theme="united"] .btn-warning.active.focus, .open > body[data-theme="united"] .btn-warning.dropdown-toggle:hover, .open > body[data-theme="united"] .btn-warning.dropdown-toggle:focus, .open > body[data-theme="united"] .btn-warning.dropdown-toggle.focus {
  color: #fff;
  background-color: #c68c10;
  border-color: #a0720d;
}
/* line 41, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
body[data-theme="united"] .btn-warning.disabled:hover, body[data-theme="united"] .btn-warning.disabled:focus, body[data-theme="united"] .btn-warning.disabled.focus, body[data-theme="united"] .btn-warning[disabled]:hover, body[data-theme="united"] .btn-warning[disabled]:focus, body[data-theme="united"] .btn-warning[disabled].focus, fieldset[disabled] body[data-theme="united"] .btn-warning:hover, fieldset[disabled] body[data-theme="united"] .btn-warning:focus, fieldset[disabled] body[data-theme="united"] .btn-warning.focus {
  background-color: #EFB73E;
  border-color: #EFB73E;
}
/* line 49, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
body[data-theme="united"] .btn-warning .badge {
  color: #EFB73E;
  background-color: #fff;
}
/* line 87, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
body[data-theme="united"] .btn-danger {
  color: #fff;
  background-color: #DF382C;
  border-color: #DF382C;
}
/* line 11, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
body[data-theme="united"] .btn-danger:focus, body[data-theme="united"] .btn-danger.focus {
  color: #fff;
  background-color: #bc271c;
  border-color: #791912;
}
/* line 17, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
body[data-theme="united"] .btn-danger:hover {
  color: #fff;
  background-color: #bc271c;
  border-color: #b3251b;
}
/* line 22, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
body[data-theme="united"] .btn-danger:active, body[data-theme="united"] .btn-danger.active, .open > body[data-theme="united"] .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #bc271c;
  background-image: none;
  border-color: #b3251b;
}
/* line 30, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
body[data-theme="united"] .btn-danger:active:hover, body[data-theme="united"] .btn-danger:active:focus, body[data-theme="united"] .btn-danger:active.focus, body[data-theme="united"] .btn-danger.active:hover, body[data-theme="united"] .btn-danger.active:focus, body[data-theme="united"] .btn-danger.active.focus, .open > body[data-theme="united"] .btn-danger.dropdown-toggle:hover, .open > body[data-theme="united"] .btn-danger.dropdown-toggle:focus, .open > body[data-theme="united"] .btn-danger.dropdown-toggle.focus {
  color: #fff;
  background-color: #9d2118;
  border-color: #791912;
}
/* line 41, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
body[data-theme="united"] .btn-danger.disabled:hover, body[data-theme="united"] .btn-danger.disabled:focus, body[data-theme="united"] .btn-danger.disabled.focus, body[data-theme="united"] .btn-danger[disabled]:hover, body[data-theme="united"] .btn-danger[disabled]:focus, body[data-theme="united"] .btn-danger[disabled].focus, fieldset[disabled] body[data-theme="united"] .btn-danger:hover, fieldset[disabled] body[data-theme="united"] .btn-danger:focus, fieldset[disabled] body[data-theme="united"] .btn-danger.focus {
  background-color: #DF382C;
  border-color: #DF382C;
}
/* line 49, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
body[data-theme="united"] .btn-danger .badge {
  color: #DF382C;
  background-color: #fff;
}
/* line 96, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
body[data-theme="united"] .btn-link {
  font-weight: 400;
  color: #DD4814;
  border-radius: 0;
}
/* line 101, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
body[data-theme="united"] .btn-link, body[data-theme="united"] .btn-link:active, body[data-theme="united"] .btn-link.active, body[data-theme="united"] .btn-link[disabled], fieldset[disabled] body[data-theme="united"] .btn-link {
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}
/* line 109, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
body[data-theme="united"] .btn-link, body[data-theme="united"] .btn-link:hover, body[data-theme="united"] .btn-link:focus, body[data-theme="united"] .btn-link:active {
  border-color: transparent;
}
/* line 115, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
body[data-theme="united"] .btn-link:hover, body[data-theme="united"] .btn-link:focus {
  color: #97310e;
  text-decoration: underline;
  background-color: transparent;
}
/* line 123, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
body[data-theme="united"] .btn-link[disabled]:hover, body[data-theme="united"] .btn-link[disabled]:focus, fieldset[disabled] body[data-theme="united"] .btn-link:hover, fieldset[disabled] body[data-theme="united"] .btn-link:focus {
  color: #AEA79F;
  text-decoration: none;
}
/* line 135, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
body[data-theme="united"] .btn-lg, body[data-theme="united"] body:not([data-theme]) .btn-group-lg > .btn, body[data-theme="united"] body[data-theme="light"] .btn-group-lg > .btn, body[data-theme="united"] .btn-group-lg > .btn, body[data-theme="united"] body[data-theme="slate"] .btn-group-lg > .btn {
  padding: 14px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}
/* line 139, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
body[data-theme="united"] .btn-sm, body[data-theme="united"] body:not([data-theme]) .btn-group-sm > .btn, body[data-theme="united"] body[data-theme="light"] .btn-group-sm > .btn, body[data-theme="united"] .btn-group-sm > .btn, body[data-theme="united"] body[data-theme="slate"] .btn-group-sm > .btn {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
/* line 143, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
body[data-theme="united"] .btn-xs, body[data-theme="united"] body:not([data-theme]) .btn-group-xs > .btn, body[data-theme="united"] body[data-theme="light"] .btn-group-xs > .btn, body[data-theme="united"] .btn-group-xs > .btn, body[data-theme="united"] body[data-theme="slate"] .btn-group-xs > .btn {
  padding: 1px 5px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
/* line 151, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
body[data-theme="united"] .btn-block {
  display: block;
  width: 100%;
}
/* line 157, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
body[data-theme="united"] .btn-block + .btn-block {
  margin-top: 5px;
}
/* line 165, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
body[data-theme="united"] input[type="submit"].btn-block,
body[data-theme="united"] input[type="reset"].btn-block,
body[data-theme="united"] input[type="button"].btn-block {
  width: 100%;
}
/* line 10, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_component-animations.scss */
body[data-theme="united"] .fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}
/* line 14, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_component-animations.scss */
body[data-theme="united"] .fade.in {
  opacity: 1;
}
/* line 19, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_component-animations.scss */
body[data-theme="united"] .collapse {
  display: none;
}
/* line 22, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_component-animations.scss */
body[data-theme="united"] .collapse.in {
  display: block;
}
/* line 27, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_component-animations.scss */
body[data-theme="united"] tr.collapse.in {
  display: table-row;
}
/* line 29, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_component-animations.scss */
body[data-theme="united"] tbody.collapse.in {
  display: table-row-group;
}
/* line 31, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_component-animations.scss */
body[data-theme="united"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
body[data-theme="united"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
body[data-theme="united"] .dropup,
body[data-theme="united"] .dropdown {
  position: relative;
}
/* line 26, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
body[data-theme="united"] .dropdown-toggle:focus {
  outline: 0;
}
/* line 31, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
body[data-theme="united"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
body[data-theme="united"] .dropdown-menu.pull-right {
  right: 0;
  left: auto;
}
/* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
body[data-theme="united"] .dropdown-menu .divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}
/* line 65, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
body[data-theme="united"] .dropdown-menu > li > a {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: 400;
  line-height: 1.428571429;
  color: #333;
  white-space: nowrap;
}
/* line 74, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
body[data-theme="united"] .dropdown-menu > li > a:hover, body[data-theme="united"] .dropdown-menu > li > a:focus {
  color: #fff;
  text-decoration: none;
  background-color: #DD4814;
}
/* line 85, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
body[data-theme="united"] .dropdown-menu > .active > a, body[data-theme="united"] .dropdown-menu > .active > a:hover, body[data-theme="united"] .dropdown-menu > .active > a:focus {
  color: #fff;
  text-decoration: none;
  background-color: #DD4814;
  outline: 0;
}
/* line 100, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
body[data-theme="united"] .dropdown-menu > .disabled > a, body[data-theme="united"] .dropdown-menu > .disabled > a:hover, body[data-theme="united"] .dropdown-menu > .disabled > a:focus {
  color: #AEA79F;
}
/* line 107, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
body[data-theme="united"] .dropdown-menu > .disabled > a:hover, body[data-theme="united"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
body[data-theme="united"] .open > .dropdown-menu {
  display: block;
}
/* line 125, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
body[data-theme="united"] .open > a {
  outline: 0;
}
/* line 134, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
body[data-theme="united"] .dropdown-menu-right {
  right: 0;
  left: auto;
}
/* line 144, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
body[data-theme="united"] .dropdown-menu-left {
  right: auto;
  left: 0;
}
/* line 150, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
body[data-theme="united"] .dropdown-header {
  display: block;
  padding: 3px 20px;
  font-size: 12px;
  line-height: 1.428571429;
  color: #AEA79F;
  white-space: nowrap;
}
/* line 160, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
body[data-theme="united"] .dropdown-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 990;
}
/* line 170, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
body[data-theme="united"] .pull-right > .dropdown-menu {
  right: 0;
  left: auto;
}
/* line 183, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
body[data-theme="united"] .dropup .caret,
body[data-theme="united"] .navbar-fixed-bottom .dropdown .caret {
  content: "";
  border-top: 0;
  border-bottom: 4px dashed;
  border-bottom: 4px solid \9 ;
}
/* line 190, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
body[data-theme="united"] .dropup .dropdown-menu,
body[data-theme="united"] .navbar-fixed-bottom .dropdown .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 2px;
}
@media (min-width: 768px) {
  /* line 204, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
  body[data-theme="united"] .navbar-right .dropdown-menu {
    right: 0;
    left: auto;
  }
  /* line 209, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
  body[data-theme="united"] .navbar-right .dropdown-menu-left {
    left: 0;
    right: auto;
  }
}
/* line 6, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
body[data-theme="united"] .btn-group,
body[data-theme="united"] .btn-group-vertical {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
/* line 11, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
body[data-theme="united"] .btn-group > .btn,
body[data-theme="united"] .btn-group-vertical > .btn {
  position: relative;
  float: left;
}
/* line 15, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
body[data-theme="united"] .btn-group > .btn:hover, body[data-theme="united"] .btn-group > .btn:focus, body[data-theme="united"] .btn-group > .btn:active, body[data-theme="united"] .btn-group > .btn.active,
body[data-theme="united"] .btn-group-vertical > .btn:hover,
body[data-theme="united"] .btn-group-vertical > .btn:focus,
body[data-theme="united"] .btn-group-vertical > .btn:active,
body[data-theme="united"] .btn-group-vertical > .btn.active {
  z-index: 2;
}
/* line 26, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
body[data-theme="united"] .btn-group .btn + .btn,
body[data-theme="united"] .btn-group .btn + .btn-group,
body[data-theme="united"] .btn-group .btn-group + .btn,
body[data-theme="united"] .btn-group .btn-group + .btn-group {
  margin-left: -1px;
}
/* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
body[data-theme="united"] .btn-toolbar {
  margin-left: -5px;
}
/* line 14, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
body[data-theme="united"] .btn-toolbar:before, body[data-theme="united"] .btn-toolbar:after {
  display: table;
  content: " ";
}
/* line 19, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
body[data-theme="united"] .btn-toolbar:after {
  clear: both;
}
/* line 39, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
body[data-theme="united"] .btn-toolbar .btn,
body[data-theme="united"] .btn-toolbar .btn-group,
body[data-theme="united"] .btn-toolbar .input-group {
  float: left;
}
/* line 44, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
body[data-theme="united"] .btn-toolbar > .btn,
body[data-theme="united"] .btn-toolbar > .btn-group,
body[data-theme="united"] .btn-toolbar > .input-group {
  margin-left: 5px;
}
/* line 51, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
body[data-theme="united"] .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  border-radius: 0;
}
/* line 56, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
body[data-theme="united"] .btn-group > .btn:first-child {
  margin-left: 0;
}
/* line 58, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
body[data-theme="united"] .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
/* line 63, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
body[data-theme="united"] .btn-group > .btn:last-child:not(:first-child),
body[data-theme="united"] .btn-group > .dropdown-toggle:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
/* line 69, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
body[data-theme="united"] .btn-group > .btn-group {
  float: left;
}
/* line 72, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
body[data-theme="united"] .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}
/* line 76, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
body[data-theme="united"] .btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,
body[data-theme="united"] .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
/* line 81, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
body[data-theme="united"] .btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
/* line 86, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
body[data-theme="united"] .btn-group .dropdown-toggle:active,
body[data-theme="united"] .btn-group.open .dropdown-toggle {
  outline: 0;
}
/* line 105, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
body[data-theme="united"] .btn-group > .btn + .dropdown-toggle {
  padding-right: 8px;
  padding-left: 8px;
}
/* line 109, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
body[data-theme="united"] .btn-group > .btn-lg + .dropdown-toggle, body[data-theme="united"] .btn-group-lg.btn-group > .btn + .dropdown-toggle {
  padding-right: 12px;
  padding-left: 12px;
}
/* line 116, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
body[data-theme="united"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
body[data-theme="united"] .btn-group.open .dropdown-toggle.btn-link {
  -webkit-box-shadow: none;
  box-shadow: none;
}
/* line 127, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
body[data-theme="united"] .btn .caret {
  margin-left: 0;
}
/* line 131, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
body[data-theme="united"] .btn-lg .caret, body[data-theme="united"] .btn-group-lg > .btn .caret {
  border-width: 5px 5px 0;
  border-bottom-width: 0;
}
/* line 136, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
body[data-theme="united"] .dropup .btn-lg .caret, body[data-theme="united"] .dropup .btn-group-lg > .btn .caret {
  border-width: 0 5px 5px;
}
/* line 145, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
body[data-theme="united"] .btn-group-vertical > .btn,
body[data-theme="united"] .btn-group-vertical > .btn-group,
body[data-theme="united"] .btn-group-vertical > .btn-group > .btn {
  display: block;
  float: none;
  width: 100%;
  max-width: 100%;
}
/* line 14, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
body[data-theme="united"] .btn-group-vertical > .btn-group:before, body[data-theme="united"] .btn-group-vertical > .btn-group:after {
  display: table;
  content: " ";
}
/* line 19, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
body[data-theme="united"] .btn-group-vertical > .btn-group:after {
  clear: both;
}
/* line 157, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
body[data-theme="united"] .btn-group-vertical > .btn-group > .btn {
  float: none;
}
/* line 162, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
body[data-theme="united"] .btn-group-vertical > .btn + .btn,
body[data-theme="united"] .btn-group-vertical > .btn + .btn-group,
body[data-theme="united"] .btn-group-vertical > .btn-group + .btn,
body[data-theme="united"] .btn-group-vertical > .btn-group + .btn-group {
  margin-top: -1px;
  margin-left: 0;
}
/* line 172, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
body[data-theme="united"] .btn-group-vertical > .btn:not(:first-child):not(:last-child) {
  border-radius: 0;
}
/* line 175, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
body[data-theme="united"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
body[data-theme="united"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
body[data-theme="united"] .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}
/* line 188, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
body[data-theme="united"] .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
body[data-theme="united"] .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
/* line 193, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
body[data-theme="united"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
body[data-theme="united"] .btn-group-justified {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
}
/* line 206, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
body[data-theme="united"] .btn-group-justified > .btn,
body[data-theme="united"] .btn-group-justified > .btn-group {
  display: table-cell;
  float: none;
  width: 1%;
}
/* line 212, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
body[data-theme="united"] .btn-group-justified > .btn-group .btn {
  width: 100%;
}
/* line 216, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
body[data-theme="united"] .btn-group-justified > .btn-group .dropdown-menu {
  left: auto;
}
/* line 237, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
body[data-theme="united"] [data-toggle="buttons"] > .btn input[type="radio"],
body[data-theme="united"] [data-toggle="buttons"] > .btn input[type="checkbox"],
body[data-theme="united"] [data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
body[data-theme="united"] [data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}
/* line 7, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
body[data-theme="united"] .input-group {
  position: relative;
  display: table;
  border-collapse: separate;
}
/* line 13, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
body[data-theme="united"] .input-group[class*="col-"] {
  float: none;
  padding-right: 0;
  padding-left: 0;
}
/* line 19, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
body[data-theme="united"] .input-group .form-control {
  position: relative;
  z-index: 2;
  float: left;
  width: 100%;
  margin-bottom: 0;
}
/* line 33, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
body[data-theme="united"] .input-group .form-control:focus {
  z-index: 3;
}
/* line 58, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
body[data-theme="united"] .input-group-addon,
body[data-theme="united"] .input-group-btn,
body[data-theme="united"] .input-group .form-control {
  display: table-cell;
}
/* line 63, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
body[data-theme="united"] .input-group-addon:not(:first-child):not(:last-child),
body[data-theme="united"] .input-group-btn:not(:first-child):not(:last-child),
body[data-theme="united"] .input-group .form-control:not(:first-child):not(:last-child) {
  border-radius: 0;
}
/* line 68, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
body[data-theme="united"] .input-group-addon,
body[data-theme="united"] .input-group-btn {
  width: 1%;
  white-space: nowrap;
  vertical-align: middle;
}
/* line 77, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
body[data-theme="united"] .input-group-addon {
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  color: #333;
  text-align: center;
  background-color: #eeeeee;
  border: 1px solid #ccc;
  border-radius: 4px;
}
/* line 89, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
body[data-theme="united"] .input-group-addon.input-sm,
body[data-theme="united"] body:not([data-theme]) .input-group-sm > .input-group-addon,
body[data-theme="united"] body[data-theme="light"] .input-group-sm > .input-group-addon,
body[data-theme="united"] .input-group-sm > .input-group-addon,
body[data-theme="united"] .input-group-sm > .input-group-btn > .input-group-addon.btn,
body[data-theme="united"] body[data-theme="slate"] .input-group-sm > .input-group-addon {
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 3px;
}
/* line 94, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
body[data-theme="united"] .input-group-addon.input-lg,
body[data-theme="united"] body:not([data-theme]) .input-group-lg > .input-group-addon,
body[data-theme="united"] body[data-theme="light"] .input-group-lg > .input-group-addon,
body[data-theme="united"] .input-group-lg > .input-group-addon,
body[data-theme="united"] .input-group-lg > .input-group-btn > .input-group-addon.btn,
body[data-theme="united"] body[data-theme="slate"] .input-group-lg > .input-group-addon {
  padding: 14px 16px;
  font-size: 18px;
  border-radius: 6px;
}
/* line 101, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
body[data-theme="united"] .input-group-addon input[type="radio"],
body[data-theme="united"] .input-group-addon input[type="checkbox"] {
  margin-top: 0;
}
/* line 108, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
body[data-theme="united"] .input-group .form-control:first-child,
body[data-theme="united"] .input-group-addon:first-child,
body[data-theme="united"] .input-group-btn:first-child > .btn,
body[data-theme="united"] .input-group-btn:first-child > .btn-group > .btn,
body[data-theme="united"] .input-group-btn:first-child > .dropdown-toggle,
body[data-theme="united"] .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
body[data-theme="united"] .input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
/* line 117, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
body[data-theme="united"] .input-group-addon:first-child {
  border-right: 0;
}
/* line 120, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
body[data-theme="united"] .input-group .form-control:last-child,
body[data-theme="united"] .input-group-addon:last-child,
body[data-theme="united"] .input-group-btn:last-child > .btn,
body[data-theme="united"] .input-group-btn:last-child > .btn-group > .btn,
body[data-theme="united"] .input-group-btn:last-child > .dropdown-toggle,
body[data-theme="united"] .input-group-btn:first-child > .btn:not(:first-child),
body[data-theme="united"] .input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
/* line 129, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
body[data-theme="united"] .input-group-addon:last-child {
  border-left: 0;
}
/* line 135, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
body[data-theme="united"] .input-group-btn {
  position: relative;
  font-size: 0;
  white-space: nowrap;
}
/* line 144, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
body[data-theme="united"] .input-group-btn > .btn {
  position: relative;
}
/* line 146, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
body[data-theme="united"] .input-group-btn > .btn + .btn {
  margin-left: -1px;
}
/* line 150, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
body[data-theme="united"] .input-group-btn > .btn:hover, body[data-theme="united"] .input-group-btn > .btn:focus, body[data-theme="united"] .input-group-btn > .btn:active {
  z-index: 2;
}
/* line 159, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
body[data-theme="united"] .input-group-btn:first-child > .btn,
body[data-theme="united"] .input-group-btn:first-child > .btn-group {
  margin-right: -1px;
}
/* line 165, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
body[data-theme="united"] .input-group-btn:last-child > .btn,
body[data-theme="united"] .input-group-btn:last-child > .btn-group {
  z-index: 2;
  margin-left: -1px;
}
/* line 9, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
body[data-theme="united"] .nav {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
/* line 14, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
body[data-theme="united"] .nav:before, body[data-theme="united"] .nav:after {
  display: table;
  content: " ";
}
/* line 19, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
body[data-theme="united"] .nav:after {
  clear: both;
}
/* line 15, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
body[data-theme="united"] .nav > li {
  position: relative;
  display: block;
}
/* line 19, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
body[data-theme="united"] .nav > li > a {
  position: relative;
  display: block;
  padding: 10px 15px;
}
/* line 23, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
body[data-theme="united"] .nav > li > a:hover, body[data-theme="united"] .nav > li > a:focus {
  text-decoration: none;
  background-color: #eeeeee;
}
/* line 31, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
body[data-theme="united"] .nav > li.disabled > a {
  color: #AEA79F;
}
/* line 34, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
body[data-theme="united"] .nav > li.disabled > a:hover, body[data-theme="united"] .nav > li.disabled > a:focus {
  color: #AEA79F;
  text-decoration: none;
  cursor: not-allowed;
  background-color: transparent;
}
/* line 46, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
body[data-theme="united"] .nav .open > a, body[data-theme="united"] .nav .open > a:hover, body[data-theme="united"] .nav .open > a:focus {
  background-color: #eeeeee;
  border-color: #DD4814;
}
/* line 59, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
body[data-theme="united"] .nav .nav-divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}
/* line 66, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
body[data-theme="united"] .nav > li > a > img {
  max-width: none;
}
/* line 76, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
body[data-theme="united"] .nav-tabs {
  border-bottom: 1px solid #ddd;
}
/* line 78, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
body[data-theme="united"] .nav-tabs > li {
  float: left;
  margin-bottom: -1px;
}
/* line 84, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
body[data-theme="united"] .nav-tabs > li > a {
  margin-right: 2px;
  line-height: 1.428571429;
  border: 1px solid transparent;
  border-radius: 4px 4px 0 0;
}
/* line 89, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
body[data-theme="united"] .nav-tabs > li > a:hover {
  border-color: #eeeeee #eeeeee #ddd;
}
/* line 96, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
body[data-theme="united"] .nav-tabs > li.active > a, body[data-theme="united"] .nav-tabs > li.active > a:hover, body[data-theme="united"] .nav-tabs > li.active > a:focus {
  color: #777;
  cursor: default;
  background-color: #fff;
  border: 1px solid #ddd;
  border-bottom-color: transparent;
}
/* line 118, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
body[data-theme="united"] .nav-pills > li {
  float: left;
}
/* line 122, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
body[data-theme="united"] .nav-pills > li > a {
  border-radius: 4px;
}
/* line 125, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
body[data-theme="united"] .nav-pills > li + li {
  margin-left: 2px;
}
/* line 131, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
body[data-theme="united"] .nav-pills > li.active > a, body[data-theme="united"] .nav-pills > li.active > a:hover, body[data-theme="united"] .nav-pills > li.active > a:focus {
  color: #fff;
  background-color: #DD4814;
}
/* line 144, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
body[data-theme="united"] .nav-stacked > li {
  float: none;
}
/* line 146, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
body[data-theme="united"] .nav-stacked > li + li {
  margin-top: 2px;
  margin-left: 0;
}
/* line 160, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
body[data-theme="united"] .nav-justified, body[data-theme="united"] .nav-tabs.nav-justified {
  width: 100%;
}
/* line 163, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
body[data-theme="united"] .nav-justified > li, body[data-theme="united"] body:not([data-theme]) .nav-tabs.nav-justified > li, body[data-theme="united"] body[data-theme="light"] .nav-tabs.nav-justified > li, body[data-theme="united"] .nav-tabs.nav-justified > li, body[data-theme="united"] body[data-theme="slate"] .nav-tabs.nav-justified > li {
  float: none;
}
/* line 165, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
body[data-theme="united"] .nav-justified > li > a, body[data-theme="united"] .nav-tabs.nav-justified > li > a {
  margin-bottom: 5px;
  text-align: center;
}
/* line 171, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
body[data-theme="united"] .nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}
@media (min-width: 768px) {
  /* line 177, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
  body[data-theme="united"] .nav-justified > li, body[data-theme="united"] body:not([data-theme]) .nav-tabs.nav-justified > li, body[data-theme="united"] body[data-theme="light"] .nav-tabs.nav-justified > li, body[data-theme="united"] .nav-tabs.nav-justified > li, body[data-theme="united"] body[data-theme="slate"] .nav-tabs.nav-justified > li {
    display: table-cell;
    width: 1%;
  }
  /* line 180, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
  body[data-theme="united"] .nav-justified > li > a, body[data-theme="united"] .nav-tabs.nav-justified > li > a {
    margin-bottom: 0;
  }
}
/* line 190, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
body[data-theme="united"] .nav-tabs-justified, body[data-theme="united"] .nav-tabs.nav-justified {
  border-bottom: 0;
}
/* line 193, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
body[data-theme="united"] .nav-tabs-justified > li > a, body[data-theme="united"] .nav-tabs.nav-justified > li > a {
  margin-right: 0;
  border-radius: 4px;
}
/* line 199, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
body[data-theme="united"] .nav-tabs-justified > .active > a, body[data-theme="united"] .nav-tabs.nav-justified > .active > a,
body[data-theme="united"] .nav-tabs-justified > .active > a:hover,
body[data-theme="united"] .nav-tabs.nav-justified > .active > a:hover,
body[data-theme="united"] .nav-tabs-justified > .active > a:focus,
body[data-theme="united"] .nav-tabs.nav-justified > .active > a:focus {
  border: 1px solid #ddd;
}
@media (min-width: 768px) {
  /* line 206, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
  body[data-theme="united"] .nav-tabs-justified > li > a, body[data-theme="united"] .nav-tabs.nav-justified > li > a {
    border-bottom: 1px solid #ddd;
    border-radius: 4px 4px 0 0;
  }
  /* line 210, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
  body[data-theme="united"] .nav-tabs-justified > .active > a, body[data-theme="united"] .nav-tabs.nav-justified > .active > a,
  body[data-theme="united"] .nav-tabs-justified > .active > a:hover,
  body[data-theme="united"] .nav-tabs.nav-justified > .active > a:hover,
  body[data-theme="united"] .nav-tabs-justified > .active > a:focus,
  body[data-theme="united"] .nav-tabs.nav-justified > .active > a:focus {
    border-bottom-color: #fff;
  }
}
/* line 224, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
body[data-theme="united"] .tab-content > .tab-pane {
  display: none;
}
/* line 227, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
body[data-theme="united"] .tab-content > .active {
  display: block;
}
/* line 237, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
body[data-theme="united"] .nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
/* line 11, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="united"] .navbar {
  position: relative;
  min-height: 50px;
  margin-bottom: 20px;
  border: 1px solid transparent;
}
/* line 14, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
body[data-theme="united"] .navbar:before, body[data-theme="united"] .navbar:after {
  display: table;
  content: " ";
}
/* line 19, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
body[data-theme="united"] .navbar:after {
  clear: both;
}
@media (min-width: 768px) {
  /* line 11, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  body[data-theme="united"] .navbar {
    border-radius: 4px;
  }
}
/* line 14, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
body[data-theme="united"] .navbar-header:before, body[data-theme="united"] .navbar-header:after {
  display: table;
  content: " ";
}
/* line 19, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
body[data-theme="united"] .navbar-header:after {
  clear: both;
}
@media (min-width: 768px) {
  /* line 31, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  body[data-theme="united"] .navbar-header {
    float: left;
  }
}
/* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="united"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
body[data-theme="united"] .navbar-collapse:before, body[data-theme="united"] .navbar-collapse:after {
  display: table;
  content: " ";
}
/* line 19, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
body[data-theme="united"] .navbar-collapse:after {
  clear: both;
}
/* line 59, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="united"] .navbar-collapse.in {
  overflow-y: auto;
}
@media (min-width: 768px) {
  /* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  body[data-theme="united"] .navbar-collapse {
    width: auto;
    border-top: 0;
    box-shadow: none;
  }
  /* line 68, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  body[data-theme="united"] .navbar-collapse.collapse {
    display: block !important;
    height: auto !important;
    padding-bottom: 0;
    overflow: visible !important;
  }
  /* line 75, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  body[data-theme="united"] .navbar-collapse.in {
    overflow-y: visible;
  }
  /* line 81, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-fixed-top body[data-theme="united"] .navbar-collapse, .navbar-static-top body[data-theme="united"] .navbar-collapse, .navbar-fixed-bottom body[data-theme="united"] .navbar-collapse {
    padding-right: 0;
    padding-left: 0;
  }
}
/* line 90, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="united"] .navbar-fixed-top,
body[data-theme="united"] .navbar-fixed-bottom {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1030;
}
/* line 92, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="united"] .navbar-fixed-top .navbar-collapse,
body[data-theme="united"] .navbar-fixed-bottom .navbar-collapse {
  max-height: 340px;
}
@media (max-device-width: 480px) and (orientation: landscape) {
  /* line 92, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  body[data-theme="united"] .navbar-fixed-top .navbar-collapse,
  body[data-theme="united"] .navbar-fixed-bottom .navbar-collapse {
    max-height: 200px;
  }
}
@media (min-width: 768px) {
  /* line 90, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  body[data-theme="united"] .navbar-fixed-top,
  body[data-theme="united"] .navbar-fixed-bottom {
    border-radius: 0;
  }
}
/* line 112, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="united"] .navbar-fixed-top {
  top: 0;
  border-width: 0 0 1px;
}
/* line 116, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="united"] .navbar-fixed-bottom {
  bottom: 0;
  margin-bottom: 0;
  border-width: 1px 0 0;
}
/* line 129, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="united"] .container > .navbar-header,
body[data-theme="united"] .container > .navbar-collapse,
body[data-theme="united"] .container-fluid > .navbar-header,
body[data-theme="united"] .container-fluid > .navbar-collapse {
  margin-right: -15px;
  margin-left: -15px;
}
@media (min-width: 768px) {
  /* line 129, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  body[data-theme="united"] .container > .navbar-header,
  body[data-theme="united"] .container > .navbar-collapse,
  body[data-theme="united"] .container-fluid > .navbar-header,
  body[data-theme="united"] .container-fluid > .navbar-collapse {
    margin-right: 0;
    margin-left: 0;
  }
}
/* line 149, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="united"] .navbar-static-top {
  z-index: 1000;
  border-width: 0 0 1px;
}
@media (min-width: 768px) {
  /* line 149, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  body[data-theme="united"] .navbar-static-top {
    border-radius: 0;
  }
}
/* line 161, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="united"] .navbar-brand {
  float: left;
  height: 50px;
  padding: 15px 15px;
  font-size: 18px;
  line-height: 20px;
}
/* line 168, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="united"] .navbar-brand:hover, body[data-theme="united"] .navbar-brand:focus {
  text-decoration: none;
}
/* line 173, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="united"] .navbar-brand > img {
  display: block;
}
@media (min-width: 768px) {
  /* line 178, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar > .container body[data-theme="united"] .navbar-brand, .navbar > .container-fluid body[data-theme="united"] .navbar-brand {
    margin-left: -15px;
  }
}
/* line 191, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="united"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="united"] .navbar-toggle:focus {
  outline: 0;
}
/* line 209, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="united"] .navbar-toggle .icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px;
}
/* line 215, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="united"] .navbar-toggle .icon-bar + .icon-bar {
  margin-top: 4px;
}
@media (min-width: 768px) {
  /* line 191, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  body[data-theme="united"] .navbar-toggle {
    display: none;
  }
}
/* line 230, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="united"] .navbar-nav {
  margin: 7.5px -15px;
}
/* line 233, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="united"] .navbar-nav > li > a {
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 20px;
}
@media (max-width: 767px) {
  /* line 241, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  body[data-theme="united"] .navbar-nav .open .dropdown-menu {
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    background-color: transparent;
    border: 0;
    box-shadow: none;
  }
  /* line 249, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  body[data-theme="united"] .navbar-nav .open .dropdown-menu > li > a,
  body[data-theme="united"] .navbar-nav .open .dropdown-menu .dropdown-header {
    padding: 5px 15px 5px 25px;
  }
  /* line 253, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  body[data-theme="united"] .navbar-nav .open .dropdown-menu > li > a {
    line-height: 20px;
  }
  /* line 255, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  body[data-theme="united"] .navbar-nav .open .dropdown-menu > li > a:hover, body[data-theme="united"] .navbar-nav .open .dropdown-menu > li > a:focus {
    background-image: none;
  }
}
@media (min-width: 768px) {
  /* line 230, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  body[data-theme="united"] .navbar-nav {
    float: left;
    margin: 0;
  }
  /* line 268, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  body[data-theme="united"] .navbar-nav > li {
    float: left;
  }
  /* line 270, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  body[data-theme="united"] .navbar-nav > li > a {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
/* line 284, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="united"] .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: 6px;
  margin-bottom: 6px;
}
@media (min-width: 768px) {
  /* line 468, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  body[data-theme="united"] .navbar-form .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  /* line 475, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  body[data-theme="united"] .navbar-form .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  /* line 482, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  body[data-theme="united"] .navbar-form .form-control-static {
    display: inline-block;
  }
  /* line 486, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  body[data-theme="united"] .navbar-form .input-group {
    display: inline-table;
    vertical-align: middle;
  }
  /* line 490, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  body[data-theme="united"] .navbar-form .input-group .input-group-addon,
  body[data-theme="united"] .navbar-form .input-group .input-group-btn,
  body[data-theme="united"] .navbar-form .input-group .form-control {
    width: auto;
  }
  /* line 498, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  body[data-theme="united"] .navbar-form .input-group > .form-control {
    width: 100%;
  }
  /* line 502, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  body[data-theme="united"] .navbar-form .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
  /* line 509, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  body[data-theme="united"] .navbar-form .radio,
  body[data-theme="united"] .navbar-form .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }
  /* line 516, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  body[data-theme="united"] .navbar-form .radio label,
  body[data-theme="united"] .navbar-form .checkbox label {
    padding-left: 0;
  }
  /* line 520, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  body[data-theme="united"] .navbar-form .radio input[type="radio"],
  body[data-theme="united"] .navbar-form .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0;
  }
  /* line 527, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  body[data-theme="united"] .navbar-form .has-feedback .form-control-feedback {
    top: 0;
  }
}
@media (max-width: 767px) {
  /* line 296, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  body[data-theme="united"] .navbar-form .form-group {
    margin-bottom: 5px;
  }
  /* line 300, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  body[data-theme="united"] .navbar-form .form-group:last-child {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  /* line 284, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  body[data-theme="united"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="united"] .navbar-nav > li > .dropdown-menu {
  margin-top: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
/* line 330, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="united"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="united"] .navbar-btn {
  margin-top: 6px;
  margin-bottom: 6px;
}
/* line 344, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="united"] .navbar-btn.btn-sm, body[data-theme="united"] body:not([data-theme]) .btn-group-sm > .navbar-btn.btn, body[data-theme="united"] body[data-theme="light"] .btn-group-sm > .navbar-btn.btn, body[data-theme="united"] .btn-group-sm > .navbar-btn.btn, body[data-theme="united"] body[data-theme="slate"] .btn-group-sm > .navbar-btn.btn {
  margin-top: 10px;
  margin-bottom: 10px;
}
/* line 347, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="united"] .navbar-btn.btn-xs, body[data-theme="united"] body:not([data-theme]) .btn-group-xs > .navbar-btn.btn, body[data-theme="united"] body[data-theme="light"] .btn-group-xs > .navbar-btn.btn, body[data-theme="united"] .btn-group-xs > .navbar-btn.btn, body[data-theme="united"] body[data-theme="slate"] .btn-group-xs > .navbar-btn.btn {
  margin-top: 14px;
  margin-bottom: 14px;
}
/* line 357, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="united"] .navbar-text {
  margin-top: 15px;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  /* line 357, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  body[data-theme="united"] .navbar-text {
    float: left;
    margin-right: 15px;
    margin-left: 15px;
  }
}
@media (min-width: 768px) {
  /* line 377, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  body[data-theme="united"] .navbar-left {
    float: left !important;
  }
  /* line 380, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  body[data-theme="united"] .navbar-right {
    float: right !important;
    margin-right: -15px;
  }
  /* line 384, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  body[data-theme="united"] .navbar-right ~ .navbar-right {
    margin-right: 0;
  }
}
/* line 395, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="united"] .navbar-default {
  background-color: #DD4814;
  border-color: #bf3e11;
}
/* line 399, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="united"] .navbar-default .navbar-brand {
  color: #fff;
}
/* line 401, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="united"] .navbar-default .navbar-brand:hover, body[data-theme="united"] .navbar-default .navbar-brand:focus {
  color: #fff;
  background-color: none;
}
/* line 408, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="united"] .navbar-default .navbar-text {
  color: #fff;
}
/* line 413, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="united"] .navbar-default .navbar-nav > li > a {
  color: #fff;
}
/* line 416, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="united"] .navbar-default .navbar-nav > li > a:hover, body[data-theme="united"] .navbar-default .navbar-nav > li > a:focus {
  color: #fff;
  background-color: #97310e;
}
/* line 423, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="united"] .navbar-default .navbar-nav > .active > a, body[data-theme="united"] .navbar-default .navbar-nav > .active > a:hover, body[data-theme="united"] .navbar-default .navbar-nav > .active > a:focus {
  color: #fff;
  background-color: #ae3910;
}
/* line 431, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="united"] .navbar-default .navbar-nav > .disabled > a, body[data-theme="united"] .navbar-default .navbar-nav > .disabled > a:hover, body[data-theme="united"] .navbar-default .navbar-nav > .disabled > a:focus {
  color: #ccc;
  background-color: transparent;
}
/* line 442, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="united"] .navbar-default .navbar-nav > .open > a, body[data-theme="united"] .navbar-default .navbar-nav > .open > a:hover, body[data-theme="united"] .navbar-default .navbar-nav > .open > a:focus {
  color: #fff;
  background-color: #ae3910;
}
@media (max-width: 767px) {
  /* line 453, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  body[data-theme="united"] .navbar-default .navbar-nav .open .dropdown-menu > li > a {
    color: #fff;
  }
  /* line 455, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  body[data-theme="united"] .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, body[data-theme="united"] .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #fff;
    background-color: #97310e;
  }
  /* line 462, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  body[data-theme="united"] .navbar-default .navbar-nav .open .dropdown-menu > .active > a, body[data-theme="united"] .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, body[data-theme="united"] .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #fff;
    background-color: #ae3910;
  }
  /* line 470, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  body[data-theme="united"] .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a, body[data-theme="united"] .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover, body[data-theme="united"] .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #ccc;
    background-color: transparent;
  }
}
/* line 481, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="united"] .navbar-default .navbar-toggle {
  border-color: #97310e;
}
/* line 483, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="united"] .navbar-default .navbar-toggle:hover, body[data-theme="united"] .navbar-default .navbar-toggle:focus {
  background-color: #97310e;
}
/* line 487, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="united"] .navbar-default .navbar-toggle .icon-bar {
  background-color: #fff;
}
/* line 492, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="united"] .navbar-default .navbar-collapse,
body[data-theme="united"] .navbar-default .navbar-form {
  border-color: #bf3e11;
}
/* line 502, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="united"] .navbar-default .navbar-link {
  color: #fff;
}
/* line 504, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="united"] .navbar-default .navbar-link:hover {
  color: #fff;
}
/* line 509, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="united"] .navbar-default .btn-link {
  color: #fff;
}
/* line 511, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="united"] .navbar-default .btn-link:hover, body[data-theme="united"] .navbar-default .btn-link:focus {
  color: #fff;
}
/* line 517, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="united"] .navbar-default .btn-link[disabled]:hover, body[data-theme="united"] .navbar-default .btn-link[disabled]:focus, fieldset[disabled] body[data-theme="united"] .navbar-default .btn-link:hover, fieldset[disabled] body[data-theme="united"] .navbar-default .btn-link:focus {
  color: #ccc;
}
/* line 527, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="united"] .navbar-inverse {
  background-color: #772953;
  border-color: #511c39;
}
/* line 531, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="united"] .navbar-inverse .navbar-brand {
  color: #fff;
}
/* line 533, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="united"] .navbar-inverse .navbar-brand:hover, body[data-theme="united"] .navbar-inverse .navbar-brand:focus {
  color: #fff;
  background-color: none;
}
/* line 540, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="united"] .navbar-inverse .navbar-text {
  color: #fff;
}
/* line 545, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="united"] .navbar-inverse .navbar-nav > li > a {
  color: #fff;
}
/* line 548, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="united"] .navbar-inverse .navbar-nav > li > a:hover, body[data-theme="united"] .navbar-inverse .navbar-nav > li > a:focus {
  color: #fff;
  background-color: #3e152b;
}
/* line 555, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="united"] .navbar-inverse .navbar-nav > .active > a, body[data-theme="united"] .navbar-inverse .navbar-nav > .active > a:hover, body[data-theme="united"] .navbar-inverse .navbar-nav > .active > a:focus {
  color: #fff;
  background-color: #511c39;
}
/* line 563, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="united"] .navbar-inverse .navbar-nav > .disabled > a, body[data-theme="united"] .navbar-inverse .navbar-nav > .disabled > a:hover, body[data-theme="united"] .navbar-inverse .navbar-nav > .disabled > a:focus {
  color: #ccc;
  background-color: transparent;
}
/* line 573, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="united"] .navbar-inverse .navbar-nav > .open > a, body[data-theme="united"] .navbar-inverse .navbar-nav > .open > a:hover, body[data-theme="united"] .navbar-inverse .navbar-nav > .open > a:focus {
  color: #fff;
  background-color: #511c39;
}
@media (max-width: 767px) {
  /* line 584, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  body[data-theme="united"] .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
    border-color: #511c39;
  }
  /* line 587, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  body[data-theme="united"] .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
    background-color: #511c39;
  }
  /* line 590, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  body[data-theme="united"] .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
    color: #fff;
  }
  /* line 592, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  body[data-theme="united"] .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover, body[data-theme="united"] .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #fff;
    background-color: #3e152b;
  }
  /* line 599, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  body[data-theme="united"] .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a, body[data-theme="united"] .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover, body[data-theme="united"] .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #fff;
    background-color: #511c39;
  }
  /* line 607, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  body[data-theme="united"] .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a, body[data-theme="united"] .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover, body[data-theme="united"] .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #ccc;
    background-color: transparent;
  }
}
/* line 619, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="united"] .navbar-inverse .navbar-toggle {
  border-color: #3e152b;
}
/* line 621, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="united"] .navbar-inverse .navbar-toggle:hover, body[data-theme="united"] .navbar-inverse .navbar-toggle:focus {
  background-color: #3e152b;
}
/* line 625, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="united"] .navbar-inverse .navbar-toggle .icon-bar {
  background-color: #fff;
}
/* line 630, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="united"] .navbar-inverse .navbar-collapse,
body[data-theme="united"] .navbar-inverse .navbar-form {
  border-color: #5c2040;
}
/* line 635, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="united"] .navbar-inverse .navbar-link {
  color: #fff;
}
/* line 637, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="united"] .navbar-inverse .navbar-link:hover {
  color: #fff;
}
/* line 642, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="united"] .navbar-inverse .btn-link {
  color: #fff;
}
/* line 644, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="united"] .navbar-inverse .btn-link:hover, body[data-theme="united"] .navbar-inverse .btn-link:focus {
  color: #fff;
}
/* line 650, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="united"] .navbar-inverse .btn-link[disabled]:hover, body[data-theme="united"] .navbar-inverse .btn-link[disabled]:focus, fieldset[disabled] body[data-theme="united"] .navbar-inverse .btn-link:hover, fieldset[disabled] body[data-theme="united"] .navbar-inverse .btn-link:focus {
  color: #ccc;
}
/* line 6, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_breadcrumbs.scss */
body[data-theme="united"] .breadcrumb {
  padding: 8px 15px;
  margin-bottom: 20px;
  list-style: none;
  background-color: #f5f5f5;
  border-radius: 4px;
}
/* line 13, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_breadcrumbs.scss */
body[data-theme="united"] .breadcrumb > li {
  display: inline-block;
}
/* line 16, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_breadcrumbs.scss */
body[data-theme="united"] .breadcrumb > li + li:before {
  padding: 0 5px;
  color: #ccc;
  content: "/ ";
}
/* line 25, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_breadcrumbs.scss */
body[data-theme="united"] .breadcrumb > .active {
  color: #AEA79F;
}
/* line 4, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pagination.scss */
body[data-theme="united"] .pagination {
  display: inline-block;
  padding-left: 0;
  margin: 20px 0;
  border-radius: 4px;
}
/* line 10, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pagination.scss */
body[data-theme="united"] .pagination > li {
  display: inline;
}
/* line 12, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pagination.scss */
body[data-theme="united"] .pagination > li > a,
body[data-theme="united"] .pagination > li > span {
  position: relative;
  float: left;
  padding: 8px 12px;
  margin-left: -1px;
  line-height: 1.428571429;
  color: #DD4814;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #ddd;
}
/* line 24, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pagination.scss */
body[data-theme="united"] .pagination > li > a:hover, body[data-theme="united"] .pagination > li > a:focus,
body[data-theme="united"] .pagination > li > span:hover,
body[data-theme="united"] .pagination > li > span:focus {
  z-index: 2;
  color: #97310e;
  background-color: #eeeeee;
  border-color: #ddd;
}
/* line 33, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pagination.scss */
body[data-theme="united"] .pagination > li:first-child > a,
body[data-theme="united"] .pagination > li:first-child > span {
  margin-left: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
/* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pagination.scss */
body[data-theme="united"] .pagination > li:last-child > a,
body[data-theme="united"] .pagination > li:last-child > span {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
/* line 49, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pagination.scss */
body[data-theme="united"] .pagination > .active > a, body[data-theme="united"] .pagination > .active > a:hover, body[data-theme="united"] .pagination > .active > a:focus,
body[data-theme="united"] .pagination > .active > span,
body[data-theme="united"] .pagination > .active > span:hover,
body[data-theme="united"] .pagination > .active > span:focus {
  z-index: 3;
  color: #AEA79F;
  cursor: default;
  background-color: #f5f5f5;
  border-color: #ddd;
}
/* line 61, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pagination.scss */
body[data-theme="united"] .pagination > .disabled > span,
body[data-theme="united"] .pagination > .disabled > span:hover,
body[data-theme="united"] .pagination > .disabled > span:focus,
body[data-theme="united"] .pagination > .disabled > a,
body[data-theme="united"] .pagination > .disabled > a:hover,
body[data-theme="united"] .pagination > .disabled > a:focus {
  color: #AEA79F;
  cursor: not-allowed;
  background-color: #fff;
  border-color: #ddd;
}
/* line 5, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_pagination.scss */
body[data-theme="united"] .pagination-lg > li > a,
body[data-theme="united"] .pagination-lg > li > span {
  padding: 14px 16px;
  font-size: 18px;
  line-height: 1.3333333;
}
/* line 12, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_pagination.scss */
body[data-theme="united"] .pagination-lg > li:first-child > a,
body[data-theme="united"] .pagination-lg > li:first-child > span {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}
/* line 18, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_pagination.scss */
body[data-theme="united"] .pagination-lg > li:last-child > a,
body[data-theme="united"] .pagination-lg > li:last-child > span {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}
/* line 5, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_pagination.scss */
body[data-theme="united"] .pagination-sm > li > a,
body[data-theme="united"] .pagination-sm > li > span {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
}
/* line 12, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_pagination.scss */
body[data-theme="united"] .pagination-sm > li:first-child > a,
body[data-theme="united"] .pagination-sm > li:first-child > span {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
/* line 18, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_pagination.scss */
body[data-theme="united"] .pagination-sm > li:last-child > a,
body[data-theme="united"] .pagination-sm > li:last-child > span {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}
/* line 6, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pager.scss */
body[data-theme="united"] .pager {
  padding-left: 0;
  margin: 20px 0;
  text-align: center;
  list-style: none;
}
/* line 14, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
body[data-theme="united"] .pager:before, body[data-theme="united"] .pager:after {
  display: table;
  content: " ";
}
/* line 19, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
body[data-theme="united"] .pager:after {
  clear: both;
}
/* line 12, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pager.scss */
body[data-theme="united"] .pager li {
  display: inline;
}
/* line 14, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pager.scss */
body[data-theme="united"] .pager li > a,
body[data-theme="united"] .pager li > span {
  display: inline-block;
  padding: 5px 14px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 15px;
}
/* line 23, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pager.scss */
body[data-theme="united"] .pager li > a:hover,
body[data-theme="united"] .pager li > a:focus {
  text-decoration: none;
  background-color: #eeeeee;
}
/* line 31, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pager.scss */
body[data-theme="united"] .pager .next > a,
body[data-theme="united"] .pager .next > span {
  float: right;
}
/* line 38, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pager.scss */
body[data-theme="united"] .pager .previous > a,
body[data-theme="united"] .pager .previous > span {
  float: left;
}
/* line 45, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pager.scss */
body[data-theme="united"] .pager .disabled > a,
body[data-theme="united"] .pager .disabled > a:hover,
body[data-theme="united"] .pager .disabled > a:focus,
body[data-theme="united"] .pager .disabled > span {
  color: #AEA79F;
  cursor: not-allowed;
  background-color: #fff;
}
/* line 5, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_labels.scss */
body[data-theme="united"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_labels.scss */
body[data-theme="united"] .label:empty {
  display: none;
}
/* line 25, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_labels.scss */
.btn body[data-theme="united"] .label {
  position: relative;
  top: -1px;
}
/* line 33, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_labels.scss */
body[data-theme="united"] a.label:hover, body[data-theme="united"] a.label:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}
/* line 44, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_labels.scss */
body[data-theme="united"] .label-default {
  background-color: #AEA79F;
}
/* line 7, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_labels.scss */
body[data-theme="united"] .label-default[href]:hover, body[data-theme="united"] .label-default[href]:focus {
  background-color: #978e83;
}
/* line 48, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_labels.scss */
body[data-theme="united"] .label-primary {
  background-color: #DD4814;
}
/* line 7, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_labels.scss */
body[data-theme="united"] .label-primary[href]:hover, body[data-theme="united"] .label-primary[href]:focus {
  background-color: #ae3910;
}
/* line 52, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_labels.scss */
body[data-theme="united"] .label-success {
  background-color: #38B44A;
}
/* line 7, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_labels.scss */
body[data-theme="united"] .label-success[href]:hover, body[data-theme="united"] .label-success[href]:focus {
  background-color: #2c8d3a;
}
/* line 56, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_labels.scss */
body[data-theme="united"] .label-info {
  background-color: #772953;
}
/* line 7, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_labels.scss */
body[data-theme="united"] .label-info[href]:hover, body[data-theme="united"] .label-info[href]:focus {
  background-color: #511c39;
}
/* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_labels.scss */
body[data-theme="united"] .label-warning {
  background-color: #EFB73E;
}
/* line 7, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_labels.scss */
body[data-theme="united"] .label-warning[href]:hover, body[data-theme="united"] .label-warning[href]:focus {
  background-color: #e7a413;
}
/* line 64, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_labels.scss */
body[data-theme="united"] .label-danger {
  background-color: #DF382C;
}
/* line 7, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_labels.scss */
body[data-theme="united"] .label-danger[href]:hover, body[data-theme="united"] .label-danger[href]:focus {
  background-color: #bc271c;
}
/* line 7, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_badges.scss */
body[data-theme="united"] .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: #AEA79F;
  border-radius: 10px;
}
/* line 22, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_badges.scss */
body[data-theme="united"] .badge:empty {
  display: none;
}
/* line 27, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_badges.scss */
.btn body[data-theme="united"] .badge {
  position: relative;
  top: -1px;
}
/* line 32, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_badges.scss */
.btn-xs body[data-theme="united"] .badge, body:not([data-theme]) .btn-group-xs > .btn body[data-theme="united"] .badge, body[data-theme="light"] .btn-group-xs > .btn body[data-theme="united"] .badge, body[data-theme="united"] .btn-group-xs > .btn body[data-theme="united"] .badge, body[data-theme="slate"] .btn-group-xs > .btn body[data-theme="united"] .badge, .btn-group-xs > .btn body[data-theme="united"] .badge {
  top: 0;
  padding: 1px 5px;
}
/* line 41, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_badges.scss */
.list-group-item.active > body[data-theme="united"] .badge, .nav-pills > .active > a > body[data-theme="united"] .badge {
  color: #DD4814;
  background-color: #fff;
}
/* line 47, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_badges.scss */
.list-group-item > body[data-theme="united"] .badge {
  float: right;
}
/* line 51, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_badges.scss */
.list-group-item > body[data-theme="united"] .badge + body[data-theme="united"] .badge {
  margin-right: 5px;
}
/* line 55, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_badges.scss */
.nav-pills > li > a > body[data-theme="united"] .badge {
  margin-left: 3px;
}
/* line 62, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_badges.scss */
body[data-theme="united"] a.badge:hover, body[data-theme="united"] a.badge:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}
/* line 6, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_jumbotron.scss */
body[data-theme="united"] .jumbotron {
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 30px;
  color: inherit;
  background-color: #eeeeee;
}
/* line 13, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_jumbotron.scss */
body[data-theme="united"] .jumbotron h1,
body[data-theme="united"] .jumbotron .h1 {
  color: inherit;
}
/* line 18, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_jumbotron.scss */
body[data-theme="united"] .jumbotron p {
  margin-bottom: 15px;
  font-size: 21px;
  font-weight: 200;
}
/* line 24, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_jumbotron.scss */
body[data-theme="united"] .jumbotron > hr {
  border-top-color: #d5d5d5;
}
/* line 28, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_jumbotron.scss */
.container body[data-theme="united"] .jumbotron, .container-fluid body[data-theme="united"] .jumbotron {
  padding-right: 15px;
  padding-left: 15px;
  border-radius: 6px;
}
/* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_jumbotron.scss */
body[data-theme="united"] .jumbotron .container {
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  /* line 6, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_jumbotron.scss */
  body[data-theme="united"] .jumbotron {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  /* line 43, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_jumbotron.scss */
  .container body[data-theme="united"] .jumbotron, .container-fluid body[data-theme="united"] .jumbotron {
    padding-right: 60px;
    padding-left: 60px;
  }
  /* line 49, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_jumbotron.scss */
  body[data-theme="united"] .jumbotron h1,
  body[data-theme="united"] .jumbotron .h1 {
    font-size: 63px;
  }
}
/* line 7, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_thumbnails.scss */
body[data-theme="united"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_thumbnails.scss */
body[data-theme="united"] .thumbnail > img,
body[data-theme="united"] .thumbnail a > img {
  display: block;
  max-width: 100%;
  height: auto;
  margin-right: auto;
  margin-left: auto;
}
/* line 27, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_thumbnails.scss */
body[data-theme="united"] .thumbnail .caption {
  padding: 9px;
  color: #333;
}
/* line 34, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_thumbnails.scss */
body[data-theme="united"] a.thumbnail:hover,
body[data-theme="united"] a.thumbnail:focus,
body[data-theme="united"] a.thumbnail.active {
  border-color: #DD4814;
}
/* line 9, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_alerts.scss */
body[data-theme="united"] .alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
}
/* line 16, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_alerts.scss */
body[data-theme="united"] .alert h4 {
  margin-top: 0;
  color: inherit;
}
/* line 22, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_alerts.scss */
body[data-theme="united"] .alert .alert-link {
  font-weight: bold;
}
/* line 27, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_alerts.scss */
body[data-theme="united"] .alert > p,
body[data-theme="united"] .alert > ul {
  margin-bottom: 0;
}
/* line 32, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_alerts.scss */
body[data-theme="united"] .alert > p + p {
  margin-top: 5px;
}
/* line 42, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_alerts.scss */
body[data-theme="united"] .alert-dismissable,
body[data-theme="united"] .alert-dismissible {
  padding-right: 35px;
}
/* line 47, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_alerts.scss */
body[data-theme="united"] .alert-dismissable .close,
body[data-theme="united"] .alert-dismissible .close {
  position: relative;
  top: -2px;
  right: -21px;
  color: inherit;
}
/* line 59, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_alerts.scss */
body[data-theme="united"] .alert-success {
  color: #468847;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}
/* line 8, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_alerts.scss */
body[data-theme="united"] .alert-success hr {
  border-top-color: #c9e2b3;
}
/* line 12, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_alerts.scss */
body[data-theme="united"] .alert-success .alert-link {
  color: #356635;
}
/* line 63, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_alerts.scss */
body[data-theme="united"] .alert-info {
  color: #3a87ad;
  background-color: #d9edf7;
  border-color: #bce8f1;
}
/* line 8, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_alerts.scss */
body[data-theme="united"] .alert-info hr {
  border-top-color: #a6e1ec;
}
/* line 12, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_alerts.scss */
body[data-theme="united"] .alert-info .alert-link {
  color: #2d6987;
}
/* line 67, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_alerts.scss */
body[data-theme="united"] .alert-warning {
  color: #c09853;
  background-color: #fcf8e3;
  border-color: #fbeed5;
}
/* line 8, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_alerts.scss */
body[data-theme="united"] .alert-warning hr {
  border-top-color: #f8e5be;
}
/* line 12, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_alerts.scss */
body[data-theme="united"] .alert-warning .alert-link {
  color: #a47e3c;
}
/* line 71, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_alerts.scss */
body[data-theme="united"] .alert-danger {
  color: #b94a48;
  background-color: #f2dede;
  border-color: #eed3d7;
}
/* line 8, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_alerts.scss */
body[data-theme="united"] .alert-danger hr {
  border-top-color: #e6c1c7;
}
/* line 12, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_alerts.scss */
body[data-theme="united"] .alert-danger .alert-link {
  color: #953b39;
}
@-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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_progress-bars.scss */
body[data-theme="united"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_progress-bars.scss */
body[data-theme="united"] .progress-bar {
  float: left;
  width: 0%;
  height: 100%;
  font-size: 12px;
  line-height: 20px;
  color: #fff;
  text-align: center;
  background-color: #DD4814;
  -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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_progress-bars.scss */
body[data-theme="united"] .progress-striped .progress-bar,
body[data-theme="united"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_progress-bars.scss */
body[data-theme="united"] .progress.active .progress-bar,
body[data-theme="united"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_progress-bars.scss */
body[data-theme="united"] .progress-bar-success {
  background-color: #38B44A;
}
/* line 7, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_progress-bar.scss */
.progress-striped body[data-theme="united"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_progress-bars.scss */
body[data-theme="united"] .progress-bar-info {
  background-color: #772953;
}
/* line 7, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_progress-bar.scss */
.progress-striped body[data-theme="united"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_progress-bars.scss */
body[data-theme="united"] .progress-bar-warning {
  background-color: #EFB73E;
}
/* line 7, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_progress-bar.scss */
.progress-striped body[data-theme="united"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_progress-bars.scss */
body[data-theme="united"] .progress-bar-danger {
  background-color: #DF382C;
}
/* line 7, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_progress-bar.scss */
.progress-striped body[data-theme="united"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_media.scss */
body[data-theme="united"] .media {
  margin-top: 15px;
}
/* line 5, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_media.scss */
body[data-theme="united"] .media:first-child {
  margin-top: 0;
}
/* line 10, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_media.scss */
body[data-theme="united"] .media,
body[data-theme="united"] .media-body {
  overflow: hidden;
  zoom: 1;
}
/* line 16, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_media.scss */
body[data-theme="united"] .media-body {
  width: 10000px;
}
/* line 20, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_media.scss */
body[data-theme="united"] .media-object {
  display: block;
}
/* line 24, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_media.scss */
body[data-theme="united"] .media-object.img-thumbnail {
  max-width: none;
}
/* line 29, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_media.scss */
body[data-theme="united"] .media-right,
body[data-theme="united"] .media > .pull-right {
  padding-left: 10px;
}
/* line 34, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_media.scss */
body[data-theme="united"] .media-left,
body[data-theme="united"] .media > .pull-left {
  padding-right: 10px;
}
/* line 39, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_media.scss */
body[data-theme="united"] .media-left,
body[data-theme="united"] .media-right,
body[data-theme="united"] .media-body {
  display: table-cell;
  vertical-align: top;
}
/* line 46, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_media.scss */
body[data-theme="united"] .media-middle {
  vertical-align: middle;
}
/* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_media.scss */
body[data-theme="united"] .media-bottom {
  vertical-align: bottom;
}
/* line 55, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_media.scss */
body[data-theme="united"] .media-heading {
  margin-top: 0;
  margin-bottom: 5px;
}
/* line 63, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_media.scss */
body[data-theme="united"] .media-list {
  padding-left: 0;
  list-style: none;
}
/* line 10, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
body[data-theme="united"] .list-group {
  padding-left: 0;
  margin-bottom: 20px;
}
/* line 21, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
body[data-theme="united"] .list-group-item {
  position: relative;
  display: block;
  padding: 10px 15px;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid #ddd;
}
/* line 31, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
body[data-theme="united"] .list-group-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
/* line 34, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
body[data-theme="united"] .list-group-item:last-child {
  margin-bottom: 0;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
/* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
body[data-theme="united"] .list-group-item.disabled, body[data-theme="united"] .list-group-item.disabled:hover, body[data-theme="united"] .list-group-item.disabled:focus {
  color: #AEA79F;
  cursor: not-allowed;
  background-color: #eeeeee;
}
/* line 48, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
body[data-theme="united"] .list-group-item.disabled .list-group-item-heading, body[data-theme="united"] .list-group-item.disabled:hover .list-group-item-heading, body[data-theme="united"] .list-group-item.disabled:focus .list-group-item-heading {
  color: inherit;
}
/* line 51, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
body[data-theme="united"] .list-group-item.disabled .list-group-item-text, body[data-theme="united"] .list-group-item.disabled:hover .list-group-item-text, body[data-theme="united"] .list-group-item.disabled:focus .list-group-item-text {
  color: #AEA79F;
}
/* line 57, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
body[data-theme="united"] .list-group-item.active, body[data-theme="united"] .list-group-item.active:hover, body[data-theme="united"] .list-group-item.active:focus {
  z-index: 2;
  color: #fff;
  background-color: #DD4814;
  border-color: #DD4814;
}
/* line 66, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
body[data-theme="united"] .list-group-item.active .list-group-item-heading,
body[data-theme="united"] .list-group-item.active .list-group-item-heading > small,
body[data-theme="united"] .list-group-item.active .list-group-item-heading > .small, body[data-theme="united"] .list-group-item.active:hover .list-group-item-heading,
body[data-theme="united"] .list-group-item.active:hover .list-group-item-heading > small,
body[data-theme="united"] .list-group-item.active:hover .list-group-item-heading > .small, body[data-theme="united"] .list-group-item.active:focus .list-group-item-heading,
body[data-theme="united"] .list-group-item.active:focus .list-group-item-heading > small,
body[data-theme="united"] .list-group-item.active:focus .list-group-item-heading > .small {
  color: inherit;
}
/* line 71, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
body[data-theme="united"] .list-group-item.active .list-group-item-text, body[data-theme="united"] .list-group-item.active:hover .list-group-item-text, body[data-theme="united"] .list-group-item.active:focus .list-group-item-text {
  color: #fad1c3;
}
/* line 83, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
body[data-theme="united"] a.list-group-item,
body[data-theme="united"] button.list-group-item {
  color: #555;
}
/* line 87, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
body[data-theme="united"] a.list-group-item .list-group-item-heading,
body[data-theme="united"] button.list-group-item .list-group-item-heading {
  color: #333;
}
/* line 92, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
body[data-theme="united"] a.list-group-item:hover, body[data-theme="united"] a.list-group-item:focus,
body[data-theme="united"] button.list-group-item:hover,
body[data-theme="united"] button.list-group-item:focus {
  color: #555;
  text-decoration: none;
  background-color: #f5f5f5;
}
/* line 100, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
body[data-theme="united"] button.list-group-item {
  width: 100%;
  text-align: left;
}
/* line 4, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
body[data-theme="united"] .list-group-item-success {
  color: #468847;
  background-color: #dff0d8;
}
/* line 11, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
body[data-theme="united"] a.list-group-item-success,
body[data-theme="united"] button.list-group-item-success {
  color: #468847;
}
/* line 15, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
body[data-theme="united"] a.list-group-item-success .list-group-item-heading,
body[data-theme="united"] button.list-group-item-success .list-group-item-heading {
  color: inherit;
}
/* line 19, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
body[data-theme="united"] a.list-group-item-success:hover, body[data-theme="united"] a.list-group-item-success:focus,
body[data-theme="united"] button.list-group-item-success:hover,
body[data-theme="united"] button.list-group-item-success:focus {
  color: #468847;
  background-color: #d0e9c6;
}
/* line 24, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
body[data-theme="united"] a.list-group-item-success.active, body[data-theme="united"] a.list-group-item-success.active:hover, body[data-theme="united"] a.list-group-item-success.active:focus,
body[data-theme="united"] button.list-group-item-success.active,
body[data-theme="united"] button.list-group-item-success.active:hover,
body[data-theme="united"] button.list-group-item-success.active:focus {
  color: #fff;
  background-color: #468847;
  border-color: #468847;
}
/* line 4, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
body[data-theme="united"] .list-group-item-info {
  color: #3a87ad;
  background-color: #d9edf7;
}
/* line 11, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
body[data-theme="united"] a.list-group-item-info,
body[data-theme="united"] button.list-group-item-info {
  color: #3a87ad;
}
/* line 15, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
body[data-theme="united"] a.list-group-item-info .list-group-item-heading,
body[data-theme="united"] button.list-group-item-info .list-group-item-heading {
  color: inherit;
}
/* line 19, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
body[data-theme="united"] a.list-group-item-info:hover, body[data-theme="united"] a.list-group-item-info:focus,
body[data-theme="united"] button.list-group-item-info:hover,
body[data-theme="united"] button.list-group-item-info:focus {
  color: #3a87ad;
  background-color: #c4e3f3;
}
/* line 24, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
body[data-theme="united"] a.list-group-item-info.active, body[data-theme="united"] a.list-group-item-info.active:hover, body[data-theme="united"] a.list-group-item-info.active:focus,
body[data-theme="united"] button.list-group-item-info.active,
body[data-theme="united"] button.list-group-item-info.active:hover,
body[data-theme="united"] button.list-group-item-info.active:focus {
  color: #fff;
  background-color: #3a87ad;
  border-color: #3a87ad;
}
/* line 4, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
body[data-theme="united"] .list-group-item-warning {
  color: #c09853;
  background-color: #fcf8e3;
}
/* line 11, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
body[data-theme="united"] a.list-group-item-warning,
body[data-theme="united"] button.list-group-item-warning {
  color: #c09853;
}
/* line 15, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
body[data-theme="united"] a.list-group-item-warning .list-group-item-heading,
body[data-theme="united"] button.list-group-item-warning .list-group-item-heading {
  color: inherit;
}
/* line 19, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
body[data-theme="united"] a.list-group-item-warning:hover, body[data-theme="united"] a.list-group-item-warning:focus,
body[data-theme="united"] button.list-group-item-warning:hover,
body[data-theme="united"] button.list-group-item-warning:focus {
  color: #c09853;
  background-color: #faf2cc;
}
/* line 24, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
body[data-theme="united"] a.list-group-item-warning.active, body[data-theme="united"] a.list-group-item-warning.active:hover, body[data-theme="united"] a.list-group-item-warning.active:focus,
body[data-theme="united"] button.list-group-item-warning.active,
body[data-theme="united"] button.list-group-item-warning.active:hover,
body[data-theme="united"] button.list-group-item-warning.active:focus {
  color: #fff;
  background-color: #c09853;
  border-color: #c09853;
}
/* line 4, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
body[data-theme="united"] .list-group-item-danger {
  color: #b94a48;
  background-color: #f2dede;
}
/* line 11, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
body[data-theme="united"] a.list-group-item-danger,
body[data-theme="united"] button.list-group-item-danger {
  color: #b94a48;
}
/* line 15, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
body[data-theme="united"] a.list-group-item-danger .list-group-item-heading,
body[data-theme="united"] button.list-group-item-danger .list-group-item-heading {
  color: inherit;
}
/* line 19, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
body[data-theme="united"] a.list-group-item-danger:hover, body[data-theme="united"] a.list-group-item-danger:focus,
body[data-theme="united"] button.list-group-item-danger:hover,
body[data-theme="united"] button.list-group-item-danger:focus {
  color: #b94a48;
  background-color: #ebcccc;
}
/* line 24, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
body[data-theme="united"] a.list-group-item-danger.active, body[data-theme="united"] a.list-group-item-danger.active:hover, body[data-theme="united"] a.list-group-item-danger.active:focus,
body[data-theme="united"] button.list-group-item-danger.active,
body[data-theme="united"] button.list-group-item-danger.active:hover,
body[data-theme="united"] button.list-group-item-danger.active:focus {
  color: #fff;
  background-color: #b94a48;
  border-color: #b94a48;
}
/* line 121, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
body[data-theme="united"] .list-group-item-heading {
  margin-top: 0;
  margin-bottom: 5px;
}
/* line 125, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
body[data-theme="united"] .list-group-item-text {
  margin-bottom: 0;
  line-height: 1.3;
}
/* line 7, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body[data-theme="united"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body[data-theme="united"] .panel-body {
  padding: 15px;
}
/* line 14, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
body[data-theme="united"] .panel-body:before, body[data-theme="united"] .panel-body:after {
  display: table;
  content: " ";
}
/* line 19, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
body[data-theme="united"] .panel-body:after {
  clear: both;
}
/* line 22, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body[data-theme="united"] .panel-heading {
  padding: 10px 15px;
  border-bottom: 1px solid transparent;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
/* line 27, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body[data-theme="united"] .panel-heading > .dropdown .dropdown-toggle {
  color: inherit;
}
/* line 33, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body[data-theme="united"] .panel-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  color: inherit;
}
/* line 39, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body[data-theme="united"] .panel-title > a,
body[data-theme="united"] .panel-title > small,
body[data-theme="united"] .panel-title > .small,
body[data-theme="united"] .panel-title > small > a,
body[data-theme="united"] .panel-title > .small > a {
  color: inherit;
}
/* line 49, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body[data-theme="united"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body[data-theme="united"] .panel > .list-group,
body[data-theme="united"] .panel > .panel-collapse > .list-group {
  margin-bottom: 0;
}
/* line 67, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body[data-theme="united"] .panel > .list-group .list-group-item,
body[data-theme="united"] .panel > .panel-collapse > .list-group .list-group-item {
  border-width: 1px 0;
  border-radius: 0;
}
/* line 74, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body[data-theme="united"] .panel > .list-group:first-child .list-group-item:first-child,
body[data-theme="united"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body[data-theme="united"] .panel > .list-group:last-child .list-group-item:last-child,
body[data-theme="united"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body[data-theme="united"] .panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
/* line 96, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body[data-theme="united"] .panel-heading + .list-group .list-group-item:first-child {
  border-top-width: 0;
}
/* line 100, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body[data-theme="united"] .list-group + .panel-footer {
  border-top-width: 0;
}
/* line 110, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body[data-theme="united"] .panel > .table,
body[data-theme="united"] .panel > .table-responsive > .table,
body[data-theme="united"] .panel > .panel-collapse > .table {
  margin-bottom: 0;
}
/* line 115, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body[data-theme="united"] .panel > .table caption,
body[data-theme="united"] .panel > .table-responsive > .table caption,
body[data-theme="united"] .panel > .panel-collapse > .table caption {
  padding-right: 15px;
  padding-left: 15px;
}
/* line 121, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body[data-theme="united"] .panel > .table:first-child,
body[data-theme="united"] .panel > .table-responsive:first-child > .table:first-child {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
/* line 127, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body[data-theme="united"] .panel > .table:first-child > thead:first-child > tr:first-child,
body[data-theme="united"] .panel > .table:first-child > tbody:first-child > tr:first-child,
body[data-theme="united"] .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
body[data-theme="united"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body[data-theme="united"] .panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
body[data-theme="united"] .panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
body[data-theme="united"] .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
body[data-theme="united"] .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
body[data-theme="united"] .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
body[data-theme="united"] .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
body[data-theme="united"] .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
body[data-theme="united"] .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
  border-top-left-radius: 3px;
}
/* line 135, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body[data-theme="united"] .panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
body[data-theme="united"] .panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
body[data-theme="united"] .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
body[data-theme="united"] .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
body[data-theme="united"] .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
body[data-theme="united"] .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
body[data-theme="united"] .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
body[data-theme="united"] .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
  border-top-right-radius: 3px;
}
/* line 143, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body[data-theme="united"] .panel > .table:last-child,
body[data-theme="united"] .panel > .table-responsive:last-child > .table:last-child {
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}
/* line 149, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body[data-theme="united"] .panel > .table:last-child > tbody:last-child > tr:last-child,
body[data-theme="united"] .panel > .table:last-child > tfoot:last-child > tr:last-child,
body[data-theme="united"] .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
body[data-theme="united"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body[data-theme="united"] .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
body[data-theme="united"] .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
body[data-theme="united"] .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
body[data-theme="united"] .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
body[data-theme="united"] .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
body[data-theme="united"] .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
body[data-theme="united"] .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
body[data-theme="united"] .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
  border-bottom-left-radius: 3px;
}
/* line 157, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body[data-theme="united"] .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
body[data-theme="united"] .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
body[data-theme="united"] .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
body[data-theme="united"] .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
body[data-theme="united"] .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
body[data-theme="united"] .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
body[data-theme="united"] .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
body[data-theme="united"] .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
  border-bottom-right-radius: 3px;
}
/* line 164, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body[data-theme="united"] .panel > .panel-body + .table,
body[data-theme="united"] .panel > .panel-body + .table-responsive,
body[data-theme="united"] .panel > .table + .panel-body,
body[data-theme="united"] .panel > .table-responsive + .panel-body {
  border-top: 1px solid #ddd;
}
/* line 170, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body[data-theme="united"] .panel > .table > tbody:first-child > tr:first-child th,
body[data-theme="united"] .panel > .table > tbody:first-child > tr:first-child td {
  border-top: 0;
}
/* line 174, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body[data-theme="united"] .panel > .table-bordered,
body[data-theme="united"] .panel > .table-responsive > .table-bordered {
  border: 0;
}
/* line 181, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body[data-theme="united"] .panel > .table-bordered > thead > tr > th:first-child,
body[data-theme="united"] .panel > .table-bordered > thead > tr > td:first-child,
body[data-theme="united"] .panel > .table-bordered > tbody > tr > th:first-child,
body[data-theme="united"] .panel > .table-bordered > tbody > tr > td:first-child,
body[data-theme="united"] .panel > .table-bordered > tfoot > tr > th:first-child,
body[data-theme="united"] .panel > .table-bordered > tfoot > tr > td:first-child,
body[data-theme="united"] .panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
body[data-theme="united"] .panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
body[data-theme="united"] .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
body[data-theme="united"] .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
body[data-theme="united"] .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
body[data-theme="united"] .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
  border-left: 0;
}
/* line 185, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body[data-theme="united"] .panel > .table-bordered > thead > tr > th:last-child,
body[data-theme="united"] .panel > .table-bordered > thead > tr > td:last-child,
body[data-theme="united"] .panel > .table-bordered > tbody > tr > th:last-child,
body[data-theme="united"] .panel > .table-bordered > tbody > tr > td:last-child,
body[data-theme="united"] .panel > .table-bordered > tfoot > tr > th:last-child,
body[data-theme="united"] .panel > .table-bordered > tfoot > tr > td:last-child,
body[data-theme="united"] .panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
body[data-theme="united"] .panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
body[data-theme="united"] .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
body[data-theme="united"] .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
body[data-theme="united"] .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
body[data-theme="united"] .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
  border-right: 0;
}
/* line 194, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body[data-theme="united"] .panel > .table-bordered > thead > tr:first-child > td,
body[data-theme="united"] .panel > .table-bordered > thead > tr:first-child > th,
body[data-theme="united"] .panel > .table-bordered > tbody > tr:first-child > td,
body[data-theme="united"] .panel > .table-bordered > tbody > tr:first-child > th,
body[data-theme="united"] .panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
body[data-theme="united"] .panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
body[data-theme="united"] .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
body[data-theme="united"] .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
  border-bottom: 0;
}
/* line 203, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body[data-theme="united"] .panel > .table-bordered > tbody > tr:last-child > td,
body[data-theme="united"] .panel > .table-bordered > tbody > tr:last-child > th,
body[data-theme="united"] .panel > .table-bordered > tfoot > tr:last-child > td,
body[data-theme="united"] .panel > .table-bordered > tfoot > tr:last-child > th,
body[data-theme="united"] .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
body[data-theme="united"] .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
body[data-theme="united"] .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
body[data-theme="united"] .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
  border-bottom: 0;
}
/* line 210, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body[data-theme="united"] .panel > .table-responsive {
  margin-bottom: 0;
  border: 0;
}
/* line 222, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body[data-theme="united"] .panel-group {
  margin-bottom: 20px;
}
/* line 226, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body[data-theme="united"] .panel-group .panel {
  margin-bottom: 0;
  border-radius: 4px;
}
/* line 230, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body[data-theme="united"] .panel-group .panel + .panel {
  margin-top: 5px;
}
/* line 235, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body[data-theme="united"] .panel-group .panel-heading {
  border-bottom: 0;
}
/* line 238, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body[data-theme="united"] .panel-group .panel-heading + .panel-collapse > .panel-body,
body[data-theme="united"] .panel-group .panel-heading + .panel-collapse > .list-group {
  border-top: 1px solid #ddd;
}
/* line 244, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body[data-theme="united"] .panel-group .panel-footer {
  border-top: 0;
}
/* line 246, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body[data-theme="united"] .panel-group .panel-footer + .panel-collapse .panel-body {
  border-bottom: 1px solid #ddd;
}
/* line 254, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body[data-theme="united"] .panel-default {
  border-color: #ddd;
}
/* line 6, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
body[data-theme="united"] .panel-default > .panel-heading {
  color: #333;
  background-color: #f5f5f5;
  border-color: #ddd;
}
/* line 11, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
body[data-theme="united"] .panel-default > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #ddd;
}
/* line 14, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
body[data-theme="united"] .panel-default > .panel-heading .badge {
  color: #f5f5f5;
  background-color: #333;
}
/* line 20, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
body[data-theme="united"] .panel-default > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #ddd;
}
/* line 257, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body[data-theme="united"] .panel-primary {
  border-color: #DD4814;
}
/* line 6, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
body[data-theme="united"] .panel-primary > .panel-heading {
  color: #fff;
  background-color: #DD4814;
  border-color: #DD4814;
}
/* line 11, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
body[data-theme="united"] .panel-primary > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #DD4814;
}
/* line 14, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
body[data-theme="united"] .panel-primary > .panel-heading .badge {
  color: #DD4814;
  background-color: #fff;
}
/* line 20, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
body[data-theme="united"] .panel-primary > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #DD4814;
}
/* line 260, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body[data-theme="united"] .panel-success {
  border-color: #d6e9c6;
}
/* line 6, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
body[data-theme="united"] .panel-success > .panel-heading {
  color: #468847;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}
/* line 11, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
body[data-theme="united"] .panel-success > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #d6e9c6;
}
/* line 14, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
body[data-theme="united"] .panel-success > .panel-heading .badge {
  color: #dff0d8;
  background-color: #468847;
}
/* line 20, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
body[data-theme="united"] .panel-success > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #d6e9c6;
}
/* line 263, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body[data-theme="united"] .panel-info {
  border-color: #bce8f1;
}
/* line 6, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
body[data-theme="united"] .panel-info > .panel-heading {
  color: #3a87ad;
  background-color: #d9edf7;
  border-color: #bce8f1;
}
/* line 11, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
body[data-theme="united"] .panel-info > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #bce8f1;
}
/* line 14, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
body[data-theme="united"] .panel-info > .panel-heading .badge {
  color: #d9edf7;
  background-color: #3a87ad;
}
/* line 20, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
body[data-theme="united"] .panel-info > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #bce8f1;
}
/* line 266, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body[data-theme="united"] .panel-warning {
  border-color: #fbeed5;
}
/* line 6, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
body[data-theme="united"] .panel-warning > .panel-heading {
  color: #c09853;
  background-color: #fcf8e3;
  border-color: #fbeed5;
}
/* line 11, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
body[data-theme="united"] .panel-warning > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #fbeed5;
}
/* line 14, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
body[data-theme="united"] .panel-warning > .panel-heading .badge {
  color: #fcf8e3;
  background-color: #c09853;
}
/* line 20, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
body[data-theme="united"] .panel-warning > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #fbeed5;
}
/* line 269, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body[data-theme="united"] .panel-danger {
  border-color: #eed3d7;
}
/* line 6, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
body[data-theme="united"] .panel-danger > .panel-heading {
  color: #b94a48;
  background-color: #f2dede;
  border-color: #eed3d7;
}
/* line 11, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
body[data-theme="united"] .panel-danger > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #eed3d7;
}
/* line 14, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
body[data-theme="united"] .panel-danger > .panel-heading .badge {
  color: #f2dede;
  background-color: #b94a48;
}
/* line 20, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
body[data-theme="united"] .panel-danger > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #eed3d7;
}
/* line 5, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-embed.scss */
body[data-theme="united"] .embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
}
/* line 12, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-embed.scss */
body[data-theme="united"] .embed-responsive .embed-responsive-item,
body[data-theme="united"] .embed-responsive iframe,
body[data-theme="united"] .embed-responsive embed,
body[data-theme="united"] .embed-responsive object,
body[data-theme="united"] .embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
/* line 28, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-embed.scss */
body[data-theme="united"] .embed-responsive-16by9 {
  padding-bottom: 56.25%;
}
/* line 33, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-embed.scss */
body[data-theme="united"] .embed-responsive-4by3 {
  padding-bottom: 75%;
}
/* line 7, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_wells.scss */
body[data-theme="united"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_wells.scss */
body[data-theme="united"] .well blockquote {
  border-color: #ddd;
  border-color: rgba(0, 0, 0, 0.15);
}
/* line 22, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_wells.scss */
body[data-theme="united"] .well-lg {
  padding: 24px;
  border-radius: 6px;
}
/* line 26, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_wells.scss */
body[data-theme="united"] .well-sm {
  padding: 9px;
  border-radius: 3px;
}
/* line 6, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_close.scss */
body[data-theme="united"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_close.scss */
body[data-theme="united"] .close:hover, body[data-theme="united"] .close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
  filter: alpha(opacity=50);
  opacity: 0.5;
}
/* line 30, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_close.scss */
body[data-theme="united"] button.close {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  appearance: none;
}
/* line 11, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
body[data-theme="united"] .modal-open {
  overflow: hidden;
}
/* line 16, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
body[data-theme="united"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
body[data-theme="united"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
body[data-theme="united"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
body[data-theme="united"] .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
/* line 44, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
body[data-theme="united"] .modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}
/* line 51, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
body[data-theme="united"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
body[data-theme="united"] .modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
}
/* line 73, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
body[data-theme="united"] .modal-backdrop.fade {
  filter: alpha(opacity=0);
  opacity: 0;
}
/* line 74, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
body[data-theme="united"] .modal-backdrop.in {
  filter: alpha(opacity=50);
  opacity: 0.5;
}
/* line 79, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
body[data-theme="united"] .modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
}
/* line 14, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
body[data-theme="united"] .modal-header:before, body[data-theme="united"] .modal-header:after {
  display: table;
  content: " ";
}
/* line 19, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
body[data-theme="united"] .modal-header:after {
  clear: both;
}
/* line 85, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
body[data-theme="united"] .modal-header .close {
  margin-top: -2px;
}
/* line 90, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
body[data-theme="united"] .modal-title {
  margin: 0;
  line-height: 1.428571429;
}
/* line 97, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
body[data-theme="united"] .modal-body {
  position: relative;
  padding: 20px;
}
/* line 103, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
body[data-theme="united"] .modal-footer {
  padding: 20px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}
/* line 14, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
body[data-theme="united"] .modal-footer:before, body[data-theme="united"] .modal-footer:after {
  display: table;
  content: " ";
}
/* line 19, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
body[data-theme="united"] .modal-footer:after {
  clear: both;
}
/* line 110, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
body[data-theme="united"] .modal-footer .btn + .btn {
  margin-bottom: 0;
  margin-left: 5px;
}
/* line 115, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
body[data-theme="united"] .modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}
/* line 119, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
body[data-theme="united"] .modal-footer .btn-block + .btn-block {
  margin-left: 0;
}
/* line 125, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
body[data-theme="united"] .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 768px) {
  /* line 136, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
  body[data-theme="united"] .modal-dialog {
    width: 600px;
    margin: 30px auto;
  }
  /* line 140, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
  body[data-theme="united"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
  body[data-theme="united"] .modal-sm {
    width: 300px;
  }
}
@media (min-width: 992px) {
  /* line 149, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
  body[data-theme="united"] .modal-lg {
    width: 900px;
  }
}
/* line 7, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
body[data-theme="united"] .tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  font-family: "Ubuntu", Tahoma, "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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
body[data-theme="united"] .tooltip.in {
  filter: alpha(opacity=90);
  opacity: 0.9;
}
/* line 19, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
body[data-theme="united"] .tooltip.top {
  padding: 5px 0;
  margin-top: -3px;
}
/* line 23, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
body[data-theme="united"] .tooltip.right {
  padding: 0 5px;
  margin-left: 3px;
}
/* line 27, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
body[data-theme="united"] .tooltip.bottom {
  padding: 5px 0;
  margin-top: 3px;
}
/* line 31, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
body[data-theme="united"] .tooltip.left {
  padding: 0 5px;
  margin-left: -3px;
}
/* line 37, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
body[data-theme="united"] .tooltip.top .tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
/* line 44, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
body[data-theme="united"] .tooltip.top-left .tooltip-arrow {
  right: 5px;
  bottom: 0;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
/* line 51, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
body[data-theme="united"] .tooltip.top-right .tooltip-arrow {
  bottom: 0;
  left: 5px;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
/* line 58, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
body[data-theme="united"] .tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: #000;
}
/* line 65, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
body[data-theme="united"] .tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: #000;
}
/* line 72, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
body[data-theme="united"] .tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
/* line 79, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
body[data-theme="united"] .tooltip.bottom-left .tooltip-arrow {
  top: 0;
  right: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
/* line 86, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
body[data-theme="united"] .tooltip.bottom-right .tooltip-arrow {
  top: 0;
  left: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
/* line 96, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
body[data-theme="united"] .tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 4px;
}
/* line 106, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
body[data-theme="united"] .tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
/* line 6, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
body[data-theme="united"] .popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: none;
  max-width: 276px;
  padding: 1px;
  font-family: "Ubuntu", Tahoma, "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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
body[data-theme="united"] .popover.top {
  margin-top: -10px;
}
/* line 27, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
body[data-theme="united"] .popover.right {
  margin-left: 10px;
}
/* line 28, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
body[data-theme="united"] .popover.bottom {
  margin-top: 10px;
}
/* line 29, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
body[data-theme="united"] .popover.left {
  margin-left: -10px;
}
/* line 33, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
body[data-theme="united"] .popover > .arrow {
  border-width: 11px;
}
/* line 36, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
body[data-theme="united"] .popover > .arrow, body[data-theme="united"] .popover > .arrow:after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
/* line 46, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
body[data-theme="united"] .popover > .arrow:after {
  content: "";
  border-width: 10px;
}
/* line 52, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
body[data-theme="united"] .popover.top > .arrow {
  bottom: -11px;
  left: 50%;
  margin-left: -11px;
  border-top-color: #999999;
  border-top-color: fadein(rgba(0, 0, 0, 0.2), 5%);
  border-bottom-width: 0;
}
/* line 59, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
body[data-theme="united"] .popover.top > .arrow:after {
  bottom: 1px;
  margin-left: -10px;
  content: " ";
  border-top-color: #fff;
  border-bottom-width: 0;
}
/* line 67, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
body[data-theme="united"] .popover.right > .arrow {
  top: 50%;
  left: -11px;
  margin-top: -11px;
  border-right-color: #999999;
  border-right-color: fadein(rgba(0, 0, 0, 0.2), 5%);
  border-left-width: 0;
}
/* line 74, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
body[data-theme="united"] .popover.right > .arrow:after {
  bottom: -10px;
  left: 1px;
  content: " ";
  border-right-color: #fff;
  border-left-width: 0;
}
/* line 82, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
body[data-theme="united"] .popover.bottom > .arrow {
  top: -11px;
  left: 50%;
  margin-left: -11px;
  border-top-width: 0;
  border-bottom-color: #999999;
  border-bottom-color: fadein(rgba(0, 0, 0, 0.2), 5%);
}
/* line 89, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
body[data-theme="united"] .popover.bottom > .arrow:after {
  top: 1px;
  margin-left: -10px;
  content: " ";
  border-top-width: 0;
  border-bottom-color: #fff;
}
/* line 98, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
body[data-theme="united"] .popover.left > .arrow {
  top: 50%;
  right: -11px;
  margin-top: -11px;
  border-right-width: 0;
  border-left-color: #999999;
  border-left-color: fadein(rgba(0, 0, 0, 0.2), 5%);
}
/* line 105, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
body[data-theme="united"] .popover.left > .arrow:after {
  right: 1px;
  bottom: -10px;
  content: " ";
  border-right-width: 0;
  border-left-color: #fff;
}
/* line 115, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
body[data-theme="united"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
body[data-theme="united"] .popover-content {
  padding: 9px 14px;
}
/* line 7, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
body[data-theme="united"] .carousel {
  position: relative;
}
/* line 11, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
body[data-theme="united"] .carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}
/* line 16, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
body[data-theme="united"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
body[data-theme="united"] .carousel-inner > .item > img,
body[data-theme="united"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
  body[data-theme="united"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
  body[data-theme="united"] .carousel-inner > .item.next, body[data-theme="united"] .carousel-inner > .item.active.right {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    left: 0;
  }
  /* line 39, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
  body[data-theme="united"] .carousel-inner > .item.prev, body[data-theme="united"] .carousel-inner > .item.active.left {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    left: 0;
  }
  /* line 44, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
  body[data-theme="united"] .carousel-inner > .item.next.left, body[data-theme="united"] .carousel-inner > .item.prev.right, body[data-theme="united"] .carousel-inner > .item.active {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    left: 0;
  }
}
/* line 53, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
body[data-theme="united"] .carousel-inner > .active,
body[data-theme="united"] .carousel-inner > .next,
body[data-theme="united"] .carousel-inner > .prev {
  display: block;
}
/* line 59, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
body[data-theme="united"] .carousel-inner > .active {
  left: 0;
}
/* line 63, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
body[data-theme="united"] .carousel-inner > .next,
body[data-theme="united"] .carousel-inner > .prev {
  position: absolute;
  top: 0;
  width: 100%;
}
/* line 70, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
body[data-theme="united"] .carousel-inner > .next {
  left: 100%;
}
/* line 73, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
body[data-theme="united"] .carousel-inner > .prev {
  left: -100%;
}
/* line 76, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
body[data-theme="united"] .carousel-inner > .next.left,
body[data-theme="united"] .carousel-inner > .prev.right {
  left: 0;
}
/* line 81, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
body[data-theme="united"] .carousel-inner > .active.left {
  left: -100%;
}
/* line 84, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
body[data-theme="united"] .carousel-inner > .active.right {
  left: 100%;
}
/* line 93, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
body[data-theme="united"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
body[data-theme="united"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
body[data-theme="united"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
body[data-theme="united"] .carousel-control:hover, body[data-theme="united"] .carousel-control:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  filter: alpha(opacity=90);
  opacity: 0.9;
}
/* line 128, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
body[data-theme="united"] .carousel-control .icon-prev,
body[data-theme="united"] .carousel-control .icon-next,
body[data-theme="united"] .carousel-control .glyphicon-chevron-left,
body[data-theme="united"] .carousel-control .glyphicon-chevron-right,
body[data-theme="united"] .carousel-control .fa.fa-chevron-right {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: inline-block;
  margin-top: -10px;
}
/* line 138, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
body[data-theme="united"] .carousel-control .icon-prev,
body[data-theme="united"] .carousel-control .glyphicon-chevron-left {
  left: 50%;
  margin-left: -10px;
}
/* line 143, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
body[data-theme="united"] .carousel-control .icon-next,
body[data-theme="united"] .carousel-control .glyphicon-chevron-right,
body[data-theme="united"] .carousel-control .fa.fa-chevron-right {
  right: 50%;
  margin-right: -10px;
}
/* line 148, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
body[data-theme="united"] .carousel-control .icon-prev,
body[data-theme="united"] .carousel-control .icon-next {
  width: 20px;
  height: 20px;
  font-family: serif;
  line-height: 1;
}
/* line 157, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
body[data-theme="united"] .carousel-control .icon-prev:before {
  content: "\2039";
}
/* line 162, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
body[data-theme="united"] .carousel-control .icon-next:before {
  content: "\203a";
}
/* line 173, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
body[data-theme="united"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
body[data-theme="united"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
body[data-theme="united"] .carousel-indicators .active {
  width: 12px;
  height: 12px;
  margin: 0;
  background-color: #fff;
}
/* line 218, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
body[data-theme="united"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
body[data-theme="united"] .carousel-caption .btn {
  text-shadow: none;
}
@media screen and (min-width: 768px) {
  /* line 241, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
  body[data-theme="united"] .carousel-control .glyphicon-chevron-left,
  body[data-theme="united"] .carousel-control .glyphicon-chevron-right,
  body[data-theme="united"] .carousel-control .fa.fa-chevron-right,
  body[data-theme="united"] .carousel-control .icon-prev,
  body[data-theme="united"] .carousel-control .icon-next {
    width: 30px;
    height: 30px;
    margin-top: -10px;
    font-size: 30px;
  }
  /* line 250, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
  body[data-theme="united"] .carousel-control .glyphicon-chevron-left,
  body[data-theme="united"] .carousel-control .icon-prev {
    margin-left: -10px;
  }
  /* line 254, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
  body[data-theme="united"] .carousel-control .glyphicon-chevron-right, body[data-theme="united"] .carousel-control .fa.fa-chevron-right,
  body[data-theme="united"] .carousel-control .icon-next {
    margin-right: -10px;
  }
  /* line 261, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
  body[data-theme="united"] .carousel-caption {
    right: 20%;
    left: 20%;
    padding-bottom: 30px;
  }
  /* line 268, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
  body[data-theme="united"] .carousel-indicators {
    bottom: 20px;
  }
}
/* line 14, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
body[data-theme="united"] .clearfix:before, body[data-theme="united"] .clearfix:after {
  display: table;
  content: " ";
}
/* line 19, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
body[data-theme="united"] .clearfix:after {
  clear: both;
}
/* line 12, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_utilities.scss */
body[data-theme="united"] .center-block {
  display: block;
  margin-right: auto;
  margin-left: auto;
}
/* line 15, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_utilities.scss */
body[data-theme="united"] .pull-right {
  float: right !important;
}
/* line 18, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_utilities.scss */
body[data-theme="united"] .pull-left {
  float: left !important;
}
/* line 27, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_utilities.scss */
body[data-theme="united"] .hide {
  display: none !important;
}
/* line 30, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_utilities.scss */
body[data-theme="united"] .show {
  display: block !important;
}
/* line 33, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_utilities.scss */
body[data-theme="united"] .invisible {
  visibility: hidden;
}
/* line 36, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_utilities.scss */
body[data-theme="united"] .text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
/* line 45, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_utilities.scss */
body[data-theme="united"] .hidden {
  display: none !important;
}
/* line 53, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_utilities.scss */
body[data-theme="united"] .affix {
  position: fixed;
}
@-ms-viewport {
  width: device-width;
}
/* line 14, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
body[data-theme="united"] .visible-xs {
  display: none !important;
}
/* line 14, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
body[data-theme="united"] .visible-sm {
  display: none !important;
}
/* line 14, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
body[data-theme="united"] .visible-md {
  display: none !important;
}
/* line 14, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
body[data-theme="united"] .visible-lg {
  display: none !important;
}
/* line 36, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
body[data-theme="united"] .visible-xs-block,
body[data-theme="united"] .visible-xs-inline,
body[data-theme="united"] .visible-xs-inline-block,
body[data-theme="united"] .visible-sm-block,
body[data-theme="united"] .visible-sm-inline,
body[data-theme="united"] .visible-sm-inline-block,
body[data-theme="united"] .visible-md-block,
body[data-theme="united"] .visible-md-inline,
body[data-theme="united"] .visible-md-inline-block,
body[data-theme="united"] .visible-lg-block,
body[data-theme="united"] .visible-lg-inline,
body[data-theme="united"] .visible-lg-inline-block {
  display: none !important;
}
@media (max-width: 767px) {
  /* line 3, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  body[data-theme="united"] .visible-xs {
    display: block !important;
  }
  /* line 6, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  body[data-theme="united"] table.visible-xs {
    display: table !important;
  }
  /* line 7, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  body[data-theme="united"] tr.visible-xs {
    display: table-row !important;
  }
  /* line 8, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  body[data-theme="united"] th.visible-xs,
  body[data-theme="united"] td.visible-xs {
    display: table-cell !important;
  }
}
@media (max-width: 767px) {
  /* line 54, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  body[data-theme="united"] .visible-xs-block {
    display: block !important;
  }
}
@media (max-width: 767px) {
  /* line 59, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  body[data-theme="united"] .visible-xs-inline {
    display: inline !important;
  }
}
@media (max-width: 767px) {
  /* line 64, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  body[data-theme="united"] .visible-xs-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  /* line 3, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  body[data-theme="united"] .visible-sm {
    display: block !important;
  }
  /* line 6, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  body[data-theme="united"] table.visible-sm {
    display: table !important;
  }
  /* line 7, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  body[data-theme="united"] tr.visible-sm {
    display: table-row !important;
  }
  /* line 8, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  body[data-theme="united"] th.visible-sm,
  body[data-theme="united"] td.visible-sm {
    display: table-cell !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  /* line 73, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  body[data-theme="united"] .visible-sm-block {
    display: block !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  /* line 78, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  body[data-theme="united"] .visible-sm-inline {
    display: inline !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  /* line 83, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  body[data-theme="united"] .visible-sm-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  /* line 3, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  body[data-theme="united"] .visible-md {
    display: block !important;
  }
  /* line 6, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  body[data-theme="united"] table.visible-md {
    display: table !important;
  }
  /* line 7, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  body[data-theme="united"] tr.visible-md {
    display: table-row !important;
  }
  /* line 8, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  body[data-theme="united"] th.visible-md,
  body[data-theme="united"] td.visible-md {
    display: table-cell !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  /* line 92, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  body[data-theme="united"] .visible-md-block {
    display: block !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  /* line 97, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  body[data-theme="united"] .visible-md-inline {
    display: inline !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  /* line 102, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  body[data-theme="united"] .visible-md-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 1200px) {
  /* line 3, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  body[data-theme="united"] .visible-lg {
    display: block !important;
  }
  /* line 6, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  body[data-theme="united"] table.visible-lg {
    display: table !important;
  }
  /* line 7, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  body[data-theme="united"] tr.visible-lg {
    display: table-row !important;
  }
  /* line 8, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  body[data-theme="united"] th.visible-lg,
  body[data-theme="united"] td.visible-lg {
    display: table-cell !important;
  }
}
@media (min-width: 1200px) {
  /* line 111, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  body[data-theme="united"] .visible-lg-block {
    display: block !important;
  }
}
@media (min-width: 1200px) {
  /* line 116, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  body[data-theme="united"] .visible-lg-inline {
    display: inline !important;
  }
}
@media (min-width: 1200px) {
  /* line 121, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  body[data-theme="united"] .visible-lg-inline-block {
    display: inline-block !important;
  }
}
@media (max-width: 767px) {
  /* line 14, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  body[data-theme="united"] .hidden-xs {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  /* line 14, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  body[data-theme="united"] .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  /* line 14, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  body[data-theme="united"] .hidden-md {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  /* line 14, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  body[data-theme="united"] .hidden-lg {
    display: none !important;
  }
}
/* line 14, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
body[data-theme="united"] .visible-print {
  display: none !important;
}
@media print {
  /* line 3, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  body[data-theme="united"] .visible-print {
    display: block !important;
  }
  /* line 6, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  body[data-theme="united"] table.visible-print {
    display: table !important;
  }
  /* line 7, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  body[data-theme="united"] tr.visible-print {
    display: table-row !important;
  }
  /* line 8, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  body[data-theme="united"] th.visible-print,
  body[data-theme="united"] td.visible-print {
    display: table-cell !important;
  }
}
/* line 155, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
body[data-theme="united"] .visible-print-block {
  display: none !important;
}
@media print {
  /* line 155, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  body[data-theme="united"] .visible-print-block {
    display: block !important;
  }
}
/* line 162, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
body[data-theme="united"] .visible-print-inline {
  display: none !important;
}
@media print {
  /* line 162, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  body[data-theme="united"] .visible-print-inline {
    display: inline !important;
  }
}
/* line 169, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
body[data-theme="united"] .visible-print-inline-block {
  display: none !important;
}
@media print {
  /* line 169, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  body[data-theme="united"] .visible-print-inline-block {
    display: inline-block !important;
  }
}
@media print {
  /* line 14, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  body[data-theme="united"] .hidden-print {
    display: none !important;
  }
}
/* line 12, /opt/marast/vendor/assets/stylesheets/selectivity/base.sass */
body[data-theme="united"] .selectivity-clearfix {
  clear: both;
}
/* line 15, /opt/marast/vendor/assets/stylesheets/selectivity/base.sass */
body[data-theme="united"] .selectivity-input {
  display: inline-block;
  width: 250px;
}
/* line 19, /opt/marast/vendor/assets/stylesheets/selectivity/base.sass */
body[data-theme="united"] .selectivity-input select {
  display: none;
}
/* line 22, /opt/marast/vendor/assets/stylesheets/selectivity/base.sass */
body[data-theme="united"] .selectivity-placeholder {
  color: #999;
}
/* line 5, /opt/marast/vendor/assets/stylesheets/selectivity/backdrop.sass */
body[data-theme="united"] .selectivity-backdrop {
  background: transparent;
  position: fixed;
  z-index: 1045;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
/* line 5, /opt/marast/vendor/assets/stylesheets/selectivity/dropdown.sass */
body[data-theme="united"] .selectivity-dropdown {
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 1px 5px 1px rgba(0, 0, 0, 0.15), 0 10px 16px 0 rgba(0, 0, 0, 0.2);
  position: absolute;
  z-index: 1046;
}
/* line 12, /opt/marast/vendor/assets/stylesheets/selectivity/dropdown.sass */
body[data-theme="united"] .selectivity-search-input-container {
  border-bottom: 1px solid #eee;
}
/* line 15, /opt/marast/vendor/assets/stylesheets/selectivity/dropdown.sass */
body[data-theme="united"] .selectivity-search-input {
  background: transparent;
  border: 0;
  outline: 0;
  width: 100%;
}
/* line 21, /opt/marast/vendor/assets/stylesheets/selectivity/dropdown.sass */
body[data-theme="united"] .selectivity-results-container {
  max-height: 28em;
  overflow: auto;
  position: relative;
}
/* line 26, /opt/marast/vendor/assets/stylesheets/selectivity/dropdown.sass */
body[data-theme="united"] .selectivity-load-more,
body[data-theme="united"] .selectivity-result-item {
  cursor: pointer;
  padding: 7px;
}
/* line 32, /opt/marast/vendor/assets/stylesheets/selectivity/dropdown.sass */
body[data-theme="united"] .selectivity-result-children {
  padding-left: 17px;
}
/* line 35, /opt/marast/vendor/assets/stylesheets/selectivity/dropdown.sass */
body[data-theme="united"] .selectivity-load-more.highlight,
body[data-theme="united"] .selectivity-result-item.highlight {
  background: #4484c7;
  color: #fff;
}
/* line 40, /opt/marast/vendor/assets/stylesheets/selectivity/dropdown.sass */
body[data-theme="united"] .selectivity-result-item:first-child {
  border-radius: 4px 4px 0 0;
}
/* line 43, /opt/marast/vendor/assets/stylesheets/selectivity/dropdown.sass */
body[data-theme="united"] .selectivity-dropdown.has-search-input .selectivity-result-item:first-child {
  border-radius: 0;
}
/* line 46, /opt/marast/vendor/assets/stylesheets/selectivity/dropdown.sass */
body[data-theme="united"] .selectivity-result-label {
  font-weight: bold;
}
/* line 49, /opt/marast/vendor/assets/stylesheets/selectivity/dropdown.sass */
body[data-theme="united"] .selectivity-load-more,
body[data-theme="united"] .selectivity-result-item:last-child,
body[data-theme="united"] .selectivity-result-children:last-child .selectivity-result-item:last-child {
  border-radius: 0 0 4px 4px;
}
/* line 54, /opt/marast/vendor/assets/stylesheets/selectivity/dropdown.sass */
body[data-theme="united"] .selectivity-result-children .selectivity-result-item:last-child {
  border-radius: 0;
}
/* line 57, /opt/marast/vendor/assets/stylesheets/selectivity/dropdown.sass */
body[data-theme="united"] .selectivity-error,
body[data-theme="united"] .selectivity-loading,
body[data-theme="united"] .selectivity-search-input-container,
body[data-theme="united"] .selectivity-result-label {
  padding: 7px;
}
/* line 5, /opt/marast/vendor/assets/stylesheets/selectivity/multiple.sass */
body[data-theme="united"] .selectivity-multiple-input-container {
  background: #eee;
  border-radius: 2px;
  cursor: text;
  max-height: 10em;
  min-height: calc(2em + 4px);
  overflow: auto;
  padding: 5px;
}
/* line 14, /opt/marast/vendor/assets/stylesheets/selectivity/multiple.sass */
body[data-theme="united"] .selectivity-multiple-input-container .selectivity-placeholder {
  height: calc(2em + 4px);
  line-height: calc(2em + 4px);
}
/* line 18, /opt/marast/vendor/assets/stylesheets/selectivity/multiple.sass */
body[data-theme="united"] .selectivity-multiple-input,
body[data-theme="united"] input[type='text'].selectivity-multiple-input {
  background-color: transparent;
  border: none;
  float: left;
  height: calc(2em + 4px);
  max-width: 100%;
  outline: 0;
  padding: 0;
}
/* line 28, /opt/marast/vendor/assets/stylesheets/selectivity/multiple.sass */
body[data-theme="united"] .selectivity-multiple-input:focus,
body[data-theme="united"] input[type='text'].selectivity-multiple-input:focus {
  background-color: transparent;
  box-shadow: none;
  outline: none;
}
/* line 33, /opt/marast/vendor/assets/stylesheets/selectivity/multiple.sass */
body[data-theme="united"] .selectivity-multiple-input::-ms-clear {
  display: none;
}
/* line 36, /opt/marast/vendor/assets/stylesheets/selectivity/multiple.sass */
body[data-theme="united"] .selectivity-multiple-input.selectivity-width-detector {
  position: absolute;
  top: -10000px;
  left: 0;
  white-space: pre;
}
/* line 42, /opt/marast/vendor/assets/stylesheets/selectivity/multiple.sass */
body[data-theme="united"] .selectivity-multiple-selected-item {
  background: #4484c7;
  border-radius: 3px;
  color: #fff;
  cursor: default;
  float: left;
  line-height: 2em;
  margin: 2px;
  padding-right: 5px;
  position: relative;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  white-space: nowrap;
}
/* line 58, /opt/marast/vendor/assets/stylesheets/selectivity/multiple.sass */
body[data-theme="united"] .selectivity-multiple-selected-item.highlighted {
  background-color: #ccc;
}
/* line 61, /opt/marast/vendor/assets/stylesheets/selectivity/multiple.sass */
body[data-theme="united"] .selectivity-multiple-selected-item-remove {
  color: #fff;
  cursor: pointer;
  padding: 5px;
}
/* line 5, /opt/marast/vendor/assets/stylesheets/selectivity/single.sass */
body[data-theme="united"] .selectivity-single-select {
  background: #eee;
  border-radius: 2px;
  cursor: pointer;
  min-height: 2em;
  padding: 5px;
  position: relative;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
/* line 16, /opt/marast/vendor/assets/stylesheets/selectivity/single.sass */
body[data-theme="united"] .selectivity-single-select-input {
  opacity: 0;
}
/* line 19, /opt/marast/vendor/assets/stylesheets/selectivity/single.sass */
body[data-theme="united"] .selectivity-single-result-container {
  position: absolute;
  top: 0.8em;
  right: 15px;
  left: 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* line 28, /opt/marast/vendor/assets/stylesheets/selectivity/single.sass */
body[data-theme="united"] .selectivity-single-selected-item {
  color: #000;
}
/* line 31, /opt/marast/vendor/assets/stylesheets/selectivity/single.sass */
body[data-theme="united"] .selectivity-single-selected-item-remove {
  color: #000;
  float: right;
  padding: 0 5px;
}
/* line 36, /opt/marast/vendor/assets/stylesheets/selectivity/single.sass */
body[data-theme="united"] .selectivity-caret {
  position: absolute;
  right: 5px;
  top: 0.7em;
}
@media only screen and (max-device-width: 480px) {
  /* line 42, /opt/marast/vendor/assets/stylesheets/selectivity/single.sass */
  body[data-theme="united"] .selectivity-single-select {
    background: #eee;
    border-radius: 2px;
  }
  /* line 46, /opt/marast/vendor/assets/stylesheets/selectivity/single.sass */
  body[data-theme="united"] .selectivity-single-result-container {
    right: 5px;
  }
  /* line 49, /opt/marast/vendor/assets/stylesheets/selectivity/single.sass */
  body[data-theme="united"] .selectivity-caret {
    display: none;
  }
}
/* line 5, /opt/marast/vendor/assets/stylesheets/selectivity/submenu.sass */
body[data-theme="united"] .selectivity-submenu-icon {
  position: absolute;
  right: 4px;
}
/* line 8, /opt/marast/vendor/assets/stylesheets/selectivity_bootstrap.sass */
body[data-theme="united"] .form-control.selectivity-input {
  width: 100%;
  height: auto;
  display: block;
  padding: inherit;
  border-color: #ccc;
  border-radius: 4px;
  color: #333;
  background: #fff;
}
/* line 18, /opt/marast/vendor/assets/stylesheets/selectivity_bootstrap.sass */
body[data-theme="united"] .form-control.selectivity-input .selectivity-multiple-input-container,
body[data-theme="united"] .form-control.selectivity-input .selectivity-single-select {
  color: #333;
  background: #fff;
}
/* line 23, /opt/marast/vendor/assets/stylesheets/selectivity_bootstrap.sass */
body[data-theme="united"] .form-control.selectivity-input .selectivity-multiple-input-container {
  padding: 0;
}
/* line 26, /opt/marast/vendor/assets/stylesheets/selectivity_bootstrap.sass */
body[data-theme="united"] .form-control.selectivity-input .selectivity-single-select {
  padding: 2px;
}
/* line 29, /opt/marast/vendor/assets/stylesheets/selectivity_bootstrap.sass */
body[data-theme="united"] .form-control.selectivity-input .selectivity-single-result-container,
body[data-theme="united"] .form-control.selectivity-input .selectivity-caret {
  top: 0.5em;
}
/* line 35, /opt/marast/vendor/assets/stylesheets/selectivity_bootstrap.sass */
body[data-theme="united"] .form-horizontal .form-control.selectivity-input {
  padding-left: 0;
  padding-right: 0;
}
/* line 39, /opt/marast/vendor/assets/stylesheets/selectivity_bootstrap.sass */
body[data-theme="united"] .form-horizontal .form-control.selectivity-input .selectivity-single-result-container {
  padding-left: 6px;
}
/* line 43, /opt/marast/vendor/assets/stylesheets/selectivity_bootstrap.sass */
body[data-theme="united"] .selectivity-dropdown {
  margin-top: 2px;
}
/* line 11, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootswatch-rails-3.3.5/vendor/assets/stylesheets/bootswatch/united/_bootswatch.scss */
body[data-theme="united"] .navbar-default .badge {
  background-color: #fff;
  color: #DD4814;
}
/* line 19, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootswatch-rails-3.3.5/vendor/assets/stylesheets/bootswatch/united/_bootswatch.scss */
body[data-theme="united"] .navbar-inverse .badge {
  background-color: #fff;
  color: #772953;
}
@media (max-width: 767px) {
  /* line 31, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootswatch-rails-3.3.5/vendor/assets/stylesheets/bootswatch/united/_bootswatch.scss */
  body[data-theme="united"] .navbar .dropdown-menu a {
    color: #fff;
  }
}
/* line 3, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="united"] .CodeMirror {
  /* Set height, width, borders, and global font properties here */
  font-family: monospace;
  height: 300px;
  color: black;
}
/* line 12, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="united"] .CodeMirror-lines {
  padding: 4px 0;
  /* Vertical padding around content */
}
/* line 15, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="united"] .CodeMirror pre {
  padding: 0 4px;
  /* Horizontal padding of content */
}
/* line 19, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="united"] .CodeMirror-scrollbar-filler, body[data-theme="united"] .CodeMirror-gutter-filler {
  background-color: white;
  /* The little square between H and V scrollbars */
}
/* line 25, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="united"] .CodeMirror-gutters {
  border-right: 1px solid #ddd;
  background-color: #f7f7f7;
  white-space: nowrap;
}
/* line 31, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="united"] .CodeMirror-linenumber {
  padding: 0 3px 0 5px;
  min-width: 20px;
  text-align: right;
  color: #999;
  white-space: nowrap;
}
/* line 39, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="united"] .CodeMirror-guttermarker {
  color: black;
}
/* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="united"] .CodeMirror-guttermarker-subtle {
  color: #999;
}
/* line 44, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="united"] .CodeMirror-cursor {
  border-left: 1px solid black;
  border-right: none;
  width: 0;
}
/* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="united"] .CodeMirror div.CodeMirror-secondarycursor {
  border-left: 1px solid silver;
}
/* line 53, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="united"] .cm-fat-cursor .CodeMirror-cursor {
  width: auto;
  border: 0 !important;
  background: #7e7;
}
/* line 58, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="united"] .cm-fat-cursor div.CodeMirror-cursors {
  z-index: 1;
}
/* line 62, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="united"] .cm-animate-fat-cursor {
  width: auto;
  border: 0;
  -webkit-animation: blink 1.06s steps(1) infinite;
  -moz-animation: blink 1.06s steps(1) infinite;
  animation: blink 1.06s steps(1) infinite;
  background-color: #7e7;
}
@-moz-keyframes blink {
  50% {
    background-color: transparent;
  }
}
@-webkit-keyframes blink {
  50% {
    background-color: transparent;
  }
}
@keyframes blink {
  50% {
    background-color: transparent;
  }
}
/* line 89, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="united"] .cm-tab {
  display: inline-block;
  text-decoration: inherit;
}
/* line 91, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="united"] .CodeMirror-rulers {
  position: absolute;
  left: 0;
  right: 0;
  top: -50px;
  bottom: -20px;
  overflow: hidden;
}
/* line 96, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="united"] .CodeMirror-ruler {
  border-left: 1px solid #ccc;
  top: 0;
  bottom: 0;
  position: absolute;
}
/* line 104, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="united"] .cm-s-default .cm-header {
  color: blue;
}
/* line 105, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="united"] .cm-s-default .cm-quote {
  color: #090;
}
/* line 106, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="united"] .cm-negative {
  color: #d44;
}
/* line 107, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="united"] .cm-positive {
  color: #292;
}
/* line 108, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="united"] .cm-header, body[data-theme="united"] .cm-strong {
  font-weight: bold;
}
/* line 109, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="united"] .cm-em {
  font-style: italic;
}
/* line 110, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="united"] .cm-link {
  text-decoration: underline;
}
/* line 111, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="united"] .cm-strikethrough {
  text-decoration: line-through;
}
/* line 113, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="united"] .cm-s-default .cm-keyword {
  color: #708;
}
/* line 114, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="united"] .cm-s-default .cm-atom {
  color: #219;
}
/* line 115, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="united"] .cm-s-default .cm-number {
  color: #164;
}
/* line 116, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="united"] .cm-s-default .cm-def {
  color: #00f;
}
/* line 121, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="united"] .cm-s-default .cm-variable-2 {
  color: #05a;
}
/* line 122, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="united"] .cm-s-default .cm-variable-3 {
  color: #085;
}
/* line 123, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="united"] .cm-s-default .cm-comment {
  color: #a50;
}
/* line 124, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="united"] .cm-s-default .cm-string {
  color: #a11;
}
/* line 125, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="united"] .cm-s-default .cm-string-2 {
  color: #f50;
}
/* line 126, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="united"] .cm-s-default .cm-meta {
  color: #555;
}
/* line 127, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="united"] .cm-s-default .cm-qualifier {
  color: #555;
}
/* line 128, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="united"] .cm-s-default .cm-builtin {
  color: #30a;
}
/* line 129, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="united"] .cm-s-default .cm-bracket {
  color: #997;
}
/* line 130, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="united"] .cm-s-default .cm-tag {
  color: #170;
}
/* line 131, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="united"] .cm-s-default .cm-attribute {
  color: #00c;
}
/* line 132, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="united"] .cm-s-default .cm-hr {
  color: #999;
}
/* line 133, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="united"] .cm-s-default .cm-link {
  color: #00c;
}
/* line 135, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="united"] .cm-s-default .cm-error {
  color: #f00;
}
/* line 136, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="united"] .cm-invalidchar {
  color: #f00;
}
/* line 138, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="united"] .CodeMirror-composing {
  border-bottom: 2px solid;
}
/* line 142, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="united"] div.CodeMirror span.CodeMirror-matchingbracket {
  color: #0f0;
}
/* line 143, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="united"] div.CodeMirror span.CodeMirror-nonmatchingbracket {
  color: #f22;
}
/* line 144, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="united"] .CodeMirror-matchingtag {
  background: rgba(255, 150, 0, 0.3);
}
/* line 145, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="united"] .CodeMirror-activeline-background {
  background: #e8f2ff;
}
/* line 152, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="united"] .CodeMirror {
  position: relative;
  overflow: hidden;
  background: white;
}
/* line 158, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="united"] .CodeMirror-scroll {
  overflow: scroll !important;
  /* Things will break if this is overridden */
  /* 30px is the magic margin used to hide the element's real scrollbars */
  /* See overflow: hidden in .CodeMirror */
  margin-bottom: -30px;
  margin-right: -30px;
  padding-bottom: 30px;
  height: 100%;
  outline: none;
  /* Prevent dragging from highlighting the element */
  position: relative;
}
/* line 168, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="united"] .CodeMirror-sizer {
  position: relative;
  border-right: 30px solid transparent;
}
/* line 176, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="united"] .CodeMirror-vscrollbar, body[data-theme="united"] .CodeMirror-hscrollbar, body[data-theme="united"] .CodeMirror-scrollbar-filler, body[data-theme="united"] .CodeMirror-gutter-filler {
  position: absolute;
  z-index: 6;
  display: none;
}
/* line 181, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="united"] .CodeMirror-vscrollbar {
  right: 0;
  top: 0;
  overflow-x: hidden;
  overflow-y: scroll;
}
/* line 186, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="united"] .CodeMirror-hscrollbar {
  bottom: 0;
  left: 0;
  overflow-y: hidden;
  overflow-x: scroll;
}
/* line 191, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="united"] .CodeMirror-scrollbar-filler {
  right: 0;
  bottom: 0;
}
/* line 194, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="united"] .CodeMirror-gutter-filler {
  left: 0;
  bottom: 0;
}
/* line 198, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="united"] .CodeMirror-gutters {
  position: absolute;
  left: 0;
  top: 0;
  min-height: 100%;
  z-index: 3;
}
/* line 203, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="united"] .CodeMirror-gutter {
  white-space: normal;
  height: 100%;
  display: inline-block;
  vertical-align: top;
  margin-bottom: -30px;
  /* Hack to make IE7 behave */
  *zoom: 1;
  *display: inline;
}
/* line 213, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="united"] .CodeMirror-gutter-wrapper {
  position: absolute;
  z-index: 4;
  background: none !important;
  border: none !important;
}
/* line 219, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="united"] .CodeMirror-gutter-background {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 4;
}
/* line 224, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="united"] .CodeMirror-gutter-elt {
  position: absolute;
  cursor: default;
  z-index: 4;
}
/* line 229, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="united"] .CodeMirror-gutter-wrapper {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
/* line 235, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="united"] .CodeMirror-lines {
  cursor: text;
  min-height: 1px;
  /* prevents collapsing before first draw */
}
/* line 239, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="united"] .CodeMirror pre {
  /* Reset some styles that the rest of the page might have set */
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  border-width: 0;
  background: transparent;
  font-family: inherit;
  font-size: inherit;
  margin: 0;
  white-space: pre;
  word-wrap: normal;
  line-height: inherit;
  color: inherit;
  z-index: 2;
  position: relative;
  overflow: visible;
  -webkit-tap-highlight-color: transparent;
  -webkit-font-variant-ligatures: none;
  font-variant-ligatures: none;
}
/* line 258, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="united"] .CodeMirror-wrap pre {
  word-wrap: break-word;
  white-space: pre-wrap;
  word-break: normal;
}
/* line 264, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="united"] .CodeMirror-linebackground {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 0;
}
/* line 270, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="united"] .CodeMirror-linewidget {
  position: relative;
  z-index: 2;
  overflow: auto;
}
/* line 278, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="united"] .CodeMirror-code {
  outline: none;
}
/* line 283, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="united"] .CodeMirror-scroll,
body[data-theme="united"] .CodeMirror-sizer,
body[data-theme="united"] .CodeMirror-gutter,
body[data-theme="united"] .CodeMirror-gutters,
body[data-theme="united"] .CodeMirror-linenumber {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
/* line 292, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="united"] .CodeMirror-measure {
  position: absolute;
  width: 100%;
  height: 0;
  overflow: hidden;
  visibility: hidden;
}
/* line 300, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="united"] .CodeMirror-cursor {
  position: absolute;
  pointer-events: none;
}
/* line 304, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="united"] .CodeMirror-measure pre {
  position: static;
}
/* line 306, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="united"] div.CodeMirror-cursors {
  visibility: hidden;
  position: relative;
  z-index: 3;
}
/* line 311, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="united"] div.CodeMirror-dragcursors {
  visibility: visible;
}
/* line 315, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="united"] .CodeMirror-focused div.CodeMirror-cursors {
  visibility: visible;
}
/* line 319, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="united"] .CodeMirror-selected {
  background: #d9d9d9;
}
/* line 320, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="united"] .CodeMirror-focused .CodeMirror-selected {
  background: #d7d4f0;
}
/* line 321, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="united"] .CodeMirror-crosshair {
  cursor: crosshair;
}
/* line 322, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="united"] .CodeMirror-line::selection, body[data-theme="united"] .CodeMirror-line > span::selection, body[data-theme="united"] .CodeMirror-line > span > span::selection {
  background: #d7d4f0;
}
/* line 323, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="united"] .CodeMirror-line::-moz-selection, body[data-theme="united"] .CodeMirror-line > span::-moz-selection, body[data-theme="united"] .CodeMirror-line > span > span::-moz-selection {
  background: #d7d4f0;
}
/* line 325, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="united"] .cm-searching {
  background: #ffa;
  background: rgba(255, 255, 0, 0.4);
}
/* line 331, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="united"] .CodeMirror span {
  *vertical-align: text-bottom;
}
/* line 334, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="united"] .cm-force-border {
  padding-right: .1px;
}
@media print {
  /* line 31, /opt/marast/app/assets/stylesheets/themes/base.scss */
  body[data-theme="united"] {
    /* Hide the cursor when printing */
  }
  /* line 338, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
  body[data-theme="united"] .CodeMirror div.CodeMirror-cursors {
    visibility: hidden;
  }
}
/* line 344, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="united"] .cm-tab-wrap-hack:after {
  content: '';
}
/* line 347, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="united"] span.CodeMirror-selectedtext {
  background: none;
}
/* line 44, /opt/marast/app/assets/stylesheets/themes/base.scss */
body[data-theme="slate"] {
  /*!
   * 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 */
  /*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
  /**
   * All CSS that comes with Selectivity.js can be used as is, or tweaked to your heart's content :)
   *
   * Please realize though there is no "API contract" regarding styling of CSS classes, meaning that
   * any customized CSS made may need to be updated without warning if you want to upgrade the
   * Selectivity version you use. You can mitigate this problem by using your own templates instead of
   * those defined in selectivity-templates.js, since templates will at the very least continue
   * working across patch versions and any changes necessary to templates will be documented in the
   * changelog.
   */
  /**
   * Backdrop
   */
  /**
   * Dropdown
   */
  /** MODIFIED BY slavikry */
  /**
   * Multi-selection input
   */
  /**
   * Single-selection input
   */
  /**
   * Submenu
   */
  /* BASICS */
  /* PADDING */
  /* GUTTER */
  /* CURSOR */
  /* Shown when moving in bi-directional text */
  /* Can style cursor different in overwrite (non-insert) mode */
  /* DEFAULT THEME */
  /* Default styles for common addons */
  /* STOP */
  /* The rest of this file contains styles related to the mechanics of
     the editor. You probably shouldn't touch them. */
  /* The fake, visible scrollbars. Used to force redraw during scrolling
     before actual scrolling happens, thus preventing shaking and
     flickering artifacts. */
  /* Force content-box sizing for the elements where we expect it */
  /* IE7 hack to prevent it from returning funny offsetTops on the spans */
  /* Used to force a border model for a node */
  /* See issue #2901 */
  /* Help users use markselection to safely style text background */
  color: #C8C8C8;
  background-color: #272B30;
}
/* line 39, /opt/marast/app/assets/stylesheets/themes/dark.scss */
body[data-theme="slate"] .selectivity-dropdown {
  background: #383838 !important;
}
/* line 43, /opt/marast/app/assets/stylesheets/themes/dark.scss */
body[data-theme="slate"] .selectivity-single-selected-item {
  color: #7A8288 !important;
}
/* line 47, /opt/marast/app/assets/stylesheets/themes/dark.scss */
body[data-theme="slate"] .selectivity-single-select {
  color: #7A8288 !important;
}
/* line 51, /opt/marast/app/assets/stylesheets/themes/dark.scss */
body[data-theme="slate"] .selectivity-single-selected-item-remove {
  color: #999 !important;
}
/* line 55, /opt/marast/app/assets/stylesheets/themes/dark.scss */
body[data-theme="slate"] footer a {
  color: #666 !important;
}
/* line 57, /opt/marast/app/assets/stylesheets/themes/dark.scss */
body[data-theme="slate"] footer a:hover {
  color: #999 !important;
}
/* line 62, /opt/marast/app/assets/stylesheets/themes/dark.scss */
body[data-theme="slate"] label.btn.btn-default.active {
  background-color: #2390b0 !important;
}
/* line 65, /opt/marast/app/assets/stylesheets/themes/dark.scss */
body[data-theme="slate"] label.btn.btn-default.active:hover, body[data-theme="slate"] label.btn.btn-default.active:focus {
  background-color: #0e3946 !important;
  background-image: none !important;
}
/* line 71, /opt/marast/app/assets/stylesheets/themes/dark.scss */
body[data-theme="slate"] .img-ajax-loader {
  filter: invert(1);
}
/* line 9, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body[data-theme="slate"] html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
/* line 19, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body[data-theme="slate"] body {
  margin: 0;
}
/* line 33, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body[data-theme="slate"] article,
body[data-theme="slate"] aside,
body[data-theme="slate"] details,
body[data-theme="slate"] figcaption,
body[data-theme="slate"] figure,
body[data-theme="slate"] footer,
body[data-theme="slate"] header,
body[data-theme="slate"] hgroup,
body[data-theme="slate"] main,
body[data-theme="slate"] menu,
body[data-theme="slate"] nav,
body[data-theme="slate"] section,
body[data-theme="slate"] summary {
  display: block;
}
/* line 54, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body[data-theme="slate"] audio,
body[data-theme="slate"] canvas,
body[data-theme="slate"] progress,
body[data-theme="slate"] video {
  display: inline-block;
  vertical-align: baseline;
}
/* line 67, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body[data-theme="slate"] audio:not([controls]) {
  display: none;
  height: 0;
}
/* line 77, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body[data-theme="slate"] [hidden],
body[data-theme="slate"] template {
  display: none;
}
/* line 89, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body[data-theme="slate"] a {
  background-color: transparent;
}
/* line 98, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body[data-theme="slate"] a:active,
body[data-theme="slate"] a:hover {
  outline: 0;
}
/* line 111, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body[data-theme="slate"] abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}
/* line 121, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body[data-theme="slate"] b,
body[data-theme="slate"] strong {
  font-weight: bold;
}
/* line 130, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body[data-theme="slate"] dfn {
  font-style: italic;
}
/* line 139, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body[data-theme="slate"] h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
/* line 148, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body[data-theme="slate"] mark {
  background: #ff0;
  color: #000;
}
/* line 157, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body[data-theme="slate"] small {
  font-size: 80%;
}
/* line 165, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body[data-theme="slate"] sub,
body[data-theme="slate"] sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
/* line 173, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body[data-theme="slate"] sup {
  top: -0.5em;
}
/* line 177, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body[data-theme="slate"] sub {
  bottom: -0.25em;
}
/* line 188, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body[data-theme="slate"] img {
  border: 0;
}
/* line 196, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body[data-theme="slate"] svg:not(:root) {
  overflow: hidden;
}
/* line 207, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body[data-theme="slate"] figure {
  margin: 1em 40px;
}
/* line 215, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body[data-theme="slate"] hr {
  box-sizing: content-box;
  height: 0;
}
/* line 224, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body[data-theme="slate"] pre {
  overflow: auto;
}
/* line 232, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body[data-theme="slate"] code,
body[data-theme="slate"] kbd,
body[data-theme="slate"] pre,
body[data-theme="slate"] samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
/* line 255, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body[data-theme="slate"] button,
body[data-theme="slate"] input,
body[data-theme="slate"] optgroup,
body[data-theme="slate"] select,
body[data-theme="slate"] textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}
/* line 269, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body[data-theme="slate"] button {
  overflow: visible;
}
/* line 280, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body[data-theme="slate"] button,
body[data-theme="slate"] select {
  text-transform: none;
}
/* line 293, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body[data-theme="slate"] button,
body[data-theme="slate"] html input[type="button"],
body[data-theme="slate"] input[type="reset"],
body[data-theme="slate"] input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
/* line 305, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body[data-theme="slate"] button[disabled],
body[data-theme="slate"] html input[disabled] {
  cursor: default;
}
/* line 314, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body[data-theme="slate"] button::-moz-focus-inner,
body[data-theme="slate"] input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
/* line 325, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body[data-theme="slate"] input {
  line-height: normal;
}
/* line 337, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body[data-theme="slate"] input[type="checkbox"],
body[data-theme="slate"] input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
/* line 349, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body[data-theme="slate"] input[type="number"]::-webkit-inner-spin-button,
body[data-theme="slate"] input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
/* line 359, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body[data-theme="slate"] input[type="search"] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
}
/* line 370, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body[data-theme="slate"] input[type="search"]::-webkit-search-cancel-button,
body[data-theme="slate"] input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
/* line 379, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body[data-theme="slate"] fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
/* line 390, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body[data-theme="slate"] legend {
  border: 0;
  padding: 0;
}
/* line 399, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body[data-theme="slate"] textarea {
  overflow: auto;
}
/* line 408, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body[data-theme="slate"] optgroup {
  font-weight: bold;
}
/* line 419, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body[data-theme="slate"] table {
  border-collapse: collapse;
  border-spacing: 0;
}
/* line 424, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
body[data-theme="slate"] td,
body[data-theme="slate"] th {
  padding: 0;
}
@media print {
  /* line 9, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_print.scss */
  body[data-theme="slate"] *,
  body[data-theme="slate"] *:before,
  body[data-theme="slate"] *:after {
    color: #000 !important;
    text-shadow: none !important;
    background: transparent !important;
    box-shadow: none !important;
  }
  /* line 18, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_print.scss */
  body[data-theme="slate"] a,
  body[data-theme="slate"] a:visited {
    text-decoration: underline;
  }
  /* line 23, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_print.scss */
  body[data-theme="slate"] a[href]:after {
    content: " (" attr(href) ")";
  }
  /* line 27, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_print.scss */
  body[data-theme="slate"] abbr[title]:after {
    content: " (" attr(title) ")";
  }
  /* line 33, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_print.scss */
  body[data-theme="slate"] a[href^="#"]:after,
  body[data-theme="slate"] a[href^="javascript:"]:after {
    content: "";
  }
  /* line 38, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_print.scss */
  body[data-theme="slate"] pre,
  body[data-theme="slate"] blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  /* line 44, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_print.scss */
  body[data-theme="slate"] thead {
    display: table-header-group;
  }
  /* line 48, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_print.scss */
  body[data-theme="slate"] tr,
  body[data-theme="slate"] img {
    page-break-inside: avoid;
  }
  /* line 53, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_print.scss */
  body[data-theme="slate"] img {
    max-width: 100% !important;
  }
  /* line 57, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_print.scss */
  body[data-theme="slate"] p,
  body[data-theme="slate"] h2,
  body[data-theme="slate"] h3 {
    orphans: 3;
    widows: 3;
  }
  /* line 64, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_print.scss */
  body[data-theme="slate"] h2,
  body[data-theme="slate"] h3 {
    page-break-after: avoid;
  }
  /* line 72, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_print.scss */
  body[data-theme="slate"] .navbar {
    display: none;
  }
  /* line 77, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_print.scss */
  body[data-theme="slate"] .btn > .caret,
  body[data-theme="slate"] .dropup > .btn > .caret {
    border-top-color: #000 !important;
  }
  /* line 81, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_print.scss */
  body[data-theme="slate"] .label {
    border: 1px solid #000;
  }
  /* line 85, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_print.scss */
  body[data-theme="slate"] .table {
    border-collapse: collapse !important;
  }
  /* line 88, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_print.scss */
  body[data-theme="slate"] .table td,
  body[data-theme="slate"] .table th {
    background-color: #fff !important;
  }
  /* line 94, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_print.scss */
  body[data-theme="slate"] .table-bordered th,
  body[data-theme="slate"] .table-bordered td {
    border: 1px solid #ddd !important;
  }
}
@font-face {
  font-family: "Glyphicons Halflings";
  src: url("/assets/bootstrap/glyphicons-halflings-regular-13634da87d9e23f8c3ed9108ce1724d183a39ad072e73e1b3d8cbf646d2d0407.eot");
  src: url("/assets/bootstrap/glyphicons-halflings-regular-13634da87d9e23f8c3ed9108ce1724d183a39ad072e73e1b3d8cbf646d2d0407.eot?#iefix") format("embedded-opentype"), url("/assets/bootstrap/glyphicons-halflings-regular-fe185d11a49676890d47bb783312a0cda5a44c4039214094e7957b4c040ef11c.woff2") format("woff2"), url("/assets/bootstrap/glyphicons-halflings-regular-a26394f7ede100ca118eff2eda08596275a9839b959c226e15439557a5a80742.woff") format("woff"), url("/assets/bootstrap/glyphicons-halflings-regular-e395044093757d82afcb138957d06a1ea9361bdcf0b442d06a18a8051af57456.ttf") format("truetype"), url("/assets/bootstrap/glyphicons-halflings-regular-42f60659d265c1a3c30f9fa42abcbb56bd4a53af4d83d316d6dd7a36903c43e5.svg#glyphicons_halflingsregular") format("svg");
}
/* line 24, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon, body[data-theme="slate"] .fa.fa-remove, body[data-theme="slate"] .fa.fa-chevron-right, body[data-theme="slate"] .fa.fa-sort-desc {
  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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-asterisk:before {
  content: "\002a";
}
/* line 38, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-plus:before {
  content: "\002b";
}
/* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-euro:before,
body[data-theme="slate"] .glyphicon-eur:before {
  content: "\20ac";
}
/* line 41, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-minus:before {
  content: "\2212";
}
/* line 42, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-cloud:before {
  content: "\2601";
}
/* line 43, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-envelope:before {
  content: "\2709";
}
/* line 44, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-pencil:before {
  content: "\270f";
}
/* line 45, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-glass:before {
  content: "\e001";
}
/* line 46, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-music:before {
  content: "\e002";
}
/* line 47, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-search:before {
  content: "\e003";
}
/* line 48, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-heart:before {
  content: "\e005";
}
/* line 49, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-star:before {
  content: "\e006";
}
/* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-star-empty:before {
  content: "\e007";
}
/* line 51, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-user:before {
  content: "\e008";
}
/* line 52, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-film:before {
  content: "\e009";
}
/* line 53, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-th-large:before {
  content: "\e010";
}
/* line 54, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-th:before {
  content: "\e011";
}
/* line 55, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-th-list:before {
  content: "\e012";
}
/* line 56, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-ok:before {
  content: "\e013";
}
/* line 57, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-remove:before, body[data-theme="slate"] .fa.fa-remove:before {
  content: "\e014";
}
/* line 58, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-zoom-in:before {
  content: "\e015";
}
/* line 59, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-zoom-out:before {
  content: "\e016";
}
/* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-off:before {
  content: "\e017";
}
/* line 61, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-signal:before {
  content: "\e018";
}
/* line 62, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-cog:before {
  content: "\e019";
}
/* line 63, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-trash:before {
  content: "\e020";
}
/* line 64, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-home:before {
  content: "\e021";
}
/* line 65, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-file:before {
  content: "\e022";
}
/* line 66, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-time:before {
  content: "\e023";
}
/* line 67, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-road:before {
  content: "\e024";
}
/* line 68, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-download-alt:before {
  content: "\e025";
}
/* line 69, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-download:before {
  content: "\e026";
}
/* line 70, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-upload:before {
  content: "\e027";
}
/* line 71, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-inbox:before {
  content: "\e028";
}
/* line 72, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-play-circle:before {
  content: "\e029";
}
/* line 73, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-repeat:before {
  content: "\e030";
}
/* line 74, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-refresh:before {
  content: "\e031";
}
/* line 75, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-list-alt:before {
  content: "\e032";
}
/* line 76, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-lock:before {
  content: "\e033";
}
/* line 77, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-flag:before {
  content: "\e034";
}
/* line 78, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-headphones:before {
  content: "\e035";
}
/* line 79, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-volume-off:before {
  content: "\e036";
}
/* line 80, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-volume-down:before {
  content: "\e037";
}
/* line 81, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-volume-up:before {
  content: "\e038";
}
/* line 82, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-qrcode:before {
  content: "\e039";
}
/* line 83, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-barcode:before {
  content: "\e040";
}
/* line 84, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-tag:before {
  content: "\e041";
}
/* line 85, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-tags:before {
  content: "\e042";
}
/* line 86, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-book:before {
  content: "\e043";
}
/* line 87, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-bookmark:before {
  content: "\e044";
}
/* line 88, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-print:before {
  content: "\e045";
}
/* line 89, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-camera:before {
  content: "\e046";
}
/* line 90, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-font:before {
  content: "\e047";
}
/* line 91, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-bold:before {
  content: "\e048";
}
/* line 92, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-italic:before {
  content: "\e049";
}
/* line 93, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-text-height:before {
  content: "\e050";
}
/* line 94, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-text-width:before {
  content: "\e051";
}
/* line 95, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-align-left:before {
  content: "\e052";
}
/* line 96, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-align-center:before {
  content: "\e053";
}
/* line 97, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-align-right:before {
  content: "\e054";
}
/* line 98, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-align-justify:before {
  content: "\e055";
}
/* line 99, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-list:before {
  content: "\e056";
}
/* line 100, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-indent-left:before {
  content: "\e057";
}
/* line 101, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-indent-right:before {
  content: "\e058";
}
/* line 102, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-facetime-video:before {
  content: "\e059";
}
/* line 103, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-picture:before {
  content: "\e060";
}
/* line 104, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-map-marker:before {
  content: "\e062";
}
/* line 105, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-adjust:before {
  content: "\e063";
}
/* line 106, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-tint:before {
  content: "\e064";
}
/* line 107, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-edit:before {
  content: "\e065";
}
/* line 108, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-share:before {
  content: "\e066";
}
/* line 109, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-check:before {
  content: "\e067";
}
/* line 110, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-move:before {
  content: "\e068";
}
/* line 111, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-step-backward:before {
  content: "\e069";
}
/* line 112, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-fast-backward:before {
  content: "\e070";
}
/* line 113, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-backward:before {
  content: "\e071";
}
/* line 114, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-play:before {
  content: "\e072";
}
/* line 115, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-pause:before {
  content: "\e073";
}
/* line 116, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-stop:before {
  content: "\e074";
}
/* line 117, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-forward:before {
  content: "\e075";
}
/* line 118, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-fast-forward:before {
  content: "\e076";
}
/* line 119, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-step-forward:before {
  content: "\e077";
}
/* line 120, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-eject:before {
  content: "\e078";
}
/* line 121, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-chevron-left:before {
  content: "\e079";
}
/* line 122, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-chevron-right:before, body[data-theme="slate"] .fa.fa-chevron-right:before {
  content: "\e080";
}
/* line 123, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-plus-sign:before {
  content: "\e081";
}
/* line 124, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-minus-sign:before {
  content: "\e082";
}
/* line 125, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-remove-sign:before {
  content: "\e083";
}
/* line 126, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-ok-sign:before {
  content: "\e084";
}
/* line 127, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-question-sign:before {
  content: "\e085";
}
/* line 128, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-info-sign:before {
  content: "\e086";
}
/* line 129, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-screenshot:before {
  content: "\e087";
}
/* line 130, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-remove-circle:before {
  content: "\e088";
}
/* line 131, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-ok-circle:before {
  content: "\e089";
}
/* line 132, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-ban-circle:before {
  content: "\e090";
}
/* line 133, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-arrow-left:before {
  content: "\e091";
}
/* line 134, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-arrow-right:before {
  content: "\e092";
}
/* line 135, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-arrow-up:before {
  content: "\e093";
}
/* line 136, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-arrow-down:before {
  content: "\e094";
}
/* line 137, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-share-alt:before {
  content: "\e095";
}
/* line 138, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-resize-full:before {
  content: "\e096";
}
/* line 139, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-resize-small:before {
  content: "\e097";
}
/* line 140, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-exclamation-sign:before {
  content: "\e101";
}
/* line 141, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-gift:before {
  content: "\e102";
}
/* line 142, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-leaf:before {
  content: "\e103";
}
/* line 143, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-fire:before {
  content: "\e104";
}
/* line 144, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-eye-open:before {
  content: "\e105";
}
/* line 145, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-eye-close:before {
  content: "\e106";
}
/* line 146, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-warning-sign:before {
  content: "\e107";
}
/* line 147, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-plane:before {
  content: "\e108";
}
/* line 148, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-calendar:before {
  content: "\e109";
}
/* line 149, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-random:before {
  content: "\e110";
}
/* line 150, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-comment:before {
  content: "\e111";
}
/* line 151, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-magnet:before {
  content: "\e112";
}
/* line 152, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-chevron-up:before {
  content: "\e113";
}
/* line 153, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-chevron-down:before, body[data-theme="slate"] .fa.fa-sort-desc:before {
  content: "\e114";
}
/* line 154, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-retweet:before {
  content: "\e115";
}
/* line 155, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-shopping-cart:before {
  content: "\e116";
}
/* line 156, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-folder-close:before {
  content: "\e117";
}
/* line 157, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-folder-open:before {
  content: "\e118";
}
/* line 158, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-resize-vertical:before {
  content: "\e119";
}
/* line 159, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-resize-horizontal:before {
  content: "\e120";
}
/* line 160, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-hdd:before {
  content: "\e121";
}
/* line 161, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-bullhorn:before {
  content: "\e122";
}
/* line 162, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-bell:before {
  content: "\e123";
}
/* line 163, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-certificate:before {
  content: "\e124";
}
/* line 164, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-thumbs-up:before {
  content: "\e125";
}
/* line 165, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-thumbs-down:before {
  content: "\e126";
}
/* line 166, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-hand-right:before {
  content: "\e127";
}
/* line 167, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-hand-left:before {
  content: "\e128";
}
/* line 168, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-hand-up:before {
  content: "\e129";
}
/* line 169, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-hand-down:before {
  content: "\e130";
}
/* line 170, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-circle-arrow-right:before {
  content: "\e131";
}
/* line 171, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-circle-arrow-left:before {
  content: "\e132";
}
/* line 172, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-circle-arrow-up:before {
  content: "\e133";
}
/* line 173, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-circle-arrow-down:before {
  content: "\e134";
}
/* line 174, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-globe:before {
  content: "\e135";
}
/* line 175, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-wrench:before {
  content: "\e136";
}
/* line 176, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-tasks:before {
  content: "\e137";
}
/* line 177, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-filter:before {
  content: "\e138";
}
/* line 178, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-briefcase:before {
  content: "\e139";
}
/* line 179, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-fullscreen:before {
  content: "\e140";
}
/* line 180, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-dashboard:before {
  content: "\e141";
}
/* line 181, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-paperclip:before {
  content: "\e142";
}
/* line 182, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-heart-empty:before {
  content: "\e143";
}
/* line 183, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-link:before {
  content: "\e144";
}
/* line 184, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-phone:before {
  content: "\e145";
}
/* line 185, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-pushpin:before {
  content: "\e146";
}
/* line 186, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-usd:before {
  content: "\e148";
}
/* line 187, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-gbp:before {
  content: "\e149";
}
/* line 188, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-sort:before {
  content: "\e150";
}
/* line 189, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-sort-by-alphabet:before {
  content: "\e151";
}
/* line 190, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-sort-by-alphabet-alt:before {
  content: "\e152";
}
/* line 191, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-sort-by-order:before {
  content: "\e153";
}
/* line 192, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-sort-by-order-alt:before {
  content: "\e154";
}
/* line 193, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-sort-by-attributes:before {
  content: "\e155";
}
/* line 194, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-sort-by-attributes-alt:before {
  content: "\e156";
}
/* line 195, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-unchecked:before {
  content: "\e157";
}
/* line 196, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-expand:before {
  content: "\e158";
}
/* line 197, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-collapse-down:before {
  content: "\e159";
}
/* line 198, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-collapse-up:before {
  content: "\e160";
}
/* line 199, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-log-in:before {
  content: "\e161";
}
/* line 200, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-flash:before {
  content: "\e162";
}
/* line 201, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-log-out:before {
  content: "\e163";
}
/* line 202, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-new-window:before {
  content: "\e164";
}
/* line 203, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-record:before {
  content: "\e165";
}
/* line 204, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-save:before {
  content: "\e166";
}
/* line 205, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-open:before {
  content: "\e167";
}
/* line 206, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-saved:before {
  content: "\e168";
}
/* line 207, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-import:before {
  content: "\e169";
}
/* line 208, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-export:before {
  content: "\e170";
}
/* line 209, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-send:before {
  content: "\e171";
}
/* line 210, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-floppy-disk:before {
  content: "\e172";
}
/* line 211, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-floppy-saved:before {
  content: "\e173";
}
/* line 212, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-floppy-remove:before {
  content: "\e174";
}
/* line 213, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-floppy-save:before {
  content: "\e175";
}
/* line 214, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-floppy-open:before {
  content: "\e176";
}
/* line 215, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-credit-card:before {
  content: "\e177";
}
/* line 216, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-transfer:before {
  content: "\e178";
}
/* line 217, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-cutlery:before {
  content: "\e179";
}
/* line 218, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-header:before {
  content: "\e180";
}
/* line 219, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-compressed:before {
  content: "\e181";
}
/* line 220, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-earphone:before {
  content: "\e182";
}
/* line 221, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-phone-alt:before {
  content: "\e183";
}
/* line 222, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-tower:before {
  content: "\e184";
}
/* line 223, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-stats:before {
  content: "\e185";
}
/* line 224, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-sd-video:before {
  content: "\e186";
}
/* line 225, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-hd-video:before {
  content: "\e187";
}
/* line 226, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-subtitles:before {
  content: "\e188";
}
/* line 227, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-sound-stereo:before {
  content: "\e189";
}
/* line 228, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-sound-dolby:before {
  content: "\e190";
}
/* line 229, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-sound-5-1:before {
  content: "\e191";
}
/* line 230, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-sound-6-1:before {
  content: "\e192";
}
/* line 231, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-sound-7-1:before {
  content: "\e193";
}
/* line 232, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-copyright-mark:before {
  content: "\e194";
}
/* line 233, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-registration-mark:before {
  content: "\e195";
}
/* line 234, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-cloud-download:before {
  content: "\e197";
}
/* line 235, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-cloud-upload:before {
  content: "\e198";
}
/* line 236, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-tree-conifer:before {
  content: "\e199";
}
/* line 237, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-tree-deciduous:before {
  content: "\e200";
}
/* line 238, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-cd:before {
  content: "\e201";
}
/* line 239, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-save-file:before {
  content: "\e202";
}
/* line 240, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-open-file:before {
  content: "\e203";
}
/* line 241, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-level-up:before {
  content: "\e204";
}
/* line 242, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-copy:before {
  content: "\e205";
}
/* line 243, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-paste:before {
  content: "\e206";
}
/* line 252, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-alert:before {
  content: "\e209";
}
/* line 253, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-equalizer:before {
  content: "\e210";
}
/* line 254, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-king:before {
  content: "\e211";
}
/* line 255, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-queen:before {
  content: "\e212";
}
/* line 256, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-pawn:before {
  content: "\e213";
}
/* line 257, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-bishop:before {
  content: "\e214";
}
/* line 258, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-knight:before {
  content: "\e215";
}
/* line 259, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-baby-formula:before {
  content: "\e216";
}
/* line 260, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-tent:before {
  content: "\26fa";
}
/* line 261, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-blackboard:before {
  content: "\e218";
}
/* line 262, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-bed:before {
  content: "\e219";
}
/* line 263, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-apple:before {
  content: "\f8ff";
}
/* line 264, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-erase:before {
  content: "\e221";
}
/* line 265, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-hourglass:before {
  content: "\231b";
}
/* line 266, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-lamp:before {
  content: "\e223";
}
/* line 267, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-duplicate:before {
  content: "\e224";
}
/* line 268, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-piggy-bank:before {
  content: "\e225";
}
/* line 269, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-scissors:before {
  content: "\e226";
}
/* line 270, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-bitcoin:before {
  content: "\e227";
}
/* line 271, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-btc:before {
  content: "\e227";
}
/* line 272, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-xbt:before {
  content: "\e227";
}
/* line 273, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-yen:before {
  content: "\00a5";
}
/* line 274, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-jpy:before {
  content: "\00a5";
}
/* line 275, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-ruble:before {
  content: "\20bd";
}
/* line 276, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-rub:before {
  content: "\20bd";
}
/* line 277, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-scale:before {
  content: "\e230";
}
/* line 278, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-ice-lolly:before {
  content: "\e231";
}
/* line 279, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-ice-lolly-tasted:before {
  content: "\e232";
}
/* line 280, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-education:before {
  content: "\e233";
}
/* line 281, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-option-horizontal:before {
  content: "\e234";
}
/* line 282, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-option-vertical:before {
  content: "\e235";
}
/* line 283, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-menu-hamburger:before {
  content: "\e236";
}
/* line 284, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-modal-window:before {
  content: "\e237";
}
/* line 285, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-oil:before {
  content: "\e238";
}
/* line 286, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-grain:before {
  content: "\e239";
}
/* line 287, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-sunglasses:before {
  content: "\e240";
}
/* line 288, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-text-size:before {
  content: "\e241";
}
/* line 289, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-text-color:before {
  content: "\e242";
}
/* line 290, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-text-background:before {
  content: "\e243";
}
/* line 291, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-object-align-top:before {
  content: "\e244";
}
/* line 292, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-object-align-bottom:before {
  content: "\e245";
}
/* line 293, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-object-align-horizontal:before {
  content: "\e246";
}
/* line 294, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-object-align-left:before {
  content: "\e247";
}
/* line 295, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-object-align-vertical:before {
  content: "\e248";
}
/* line 296, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-object-align-right:before {
  content: "\e249";
}
/* line 297, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-triangle-right:before {
  content: "\e250";
}
/* line 298, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-triangle-left:before {
  content: "\e251";
}
/* line 299, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-triangle-bottom:before {
  content: "\e252";
}
/* line 300, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-triangle-top:before {
  content: "\e253";
}
/* line 301, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-console:before {
  content: "\e254";
}
/* line 302, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-superscript:before {
  content: "\e255";
}
/* line 303, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-subscript:before {
  content: "\e256";
}
/* line 304, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-menu-left:before {
  content: "\e257";
}
/* line 305, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-menu-right:before {
  content: "\e258";
}
/* line 306, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-menu-down:before {
  content: "\e259";
}
/* line 307, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
body[data-theme="slate"] .glyphicon-menu-up:before {
  content: "\e260";
}
/* line 11, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_scaffolding.scss */
body[data-theme="slate"] * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
/* line 14, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_scaffolding.scss */
body[data-theme="slate"] *:before,
body[data-theme="slate"] *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
/* line 22, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_scaffolding.scss */
body[data-theme="slate"] html {
  font-size: 10px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
/* line 27, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_scaffolding.scss */
body[data-theme="slate"] body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.428571429;
  color: #C8C8C8;
  background-color: #272B30;
}
/* line 36, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_scaffolding.scss */
body[data-theme="slate"] input,
body[data-theme="slate"] button,
body[data-theme="slate"] select,
body[data-theme="slate"] textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
/* line 48, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_scaffolding.scss */
body[data-theme="slate"] a {
  color: #fff;
  text-decoration: none;
}
/* line 52, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_scaffolding.scss */
body[data-theme="slate"] a:hover, body[data-theme="slate"] a:focus {
  color: #fff;
  text-decoration: underline;
}
/* line 58, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_scaffolding.scss */
body[data-theme="slate"] a:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
/* line 69, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_scaffolding.scss */
body[data-theme="slate"] figure {
  margin: 0;
}
/* line 76, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_scaffolding.scss */
body[data-theme="slate"] img {
  vertical-align: middle;
}
/* line 81, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_scaffolding.scss */
body[data-theme="slate"] .img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}
/* line 86, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_scaffolding.scss */
body[data-theme="slate"] .img-rounded {
  border-radius: 6px;
}
/* line 93, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_scaffolding.scss */
body[data-theme="slate"] .img-thumbnail {
  padding: 4px;
  line-height: 1.428571429;
  background-color: #1c1e22;
  border: 1px solid #0c0d0e;
  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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_scaffolding.scss */
body[data-theme="slate"] .img-circle {
  border-radius: 50%;
}
/* line 113, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_scaffolding.scss */
body[data-theme="slate"] hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #1c1e22;
}
/* line 125, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_scaffolding.scss */
body[data-theme="slate"] .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
/* line 141, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_scaffolding.scss */
body[data-theme="slate"] .sr-only-focusable:active, body[data-theme="slate"] .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}
/* line 159, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_scaffolding.scss */
body[data-theme="slate"] [role="button"] {
  cursor: pointer;
}
/* line 9, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body[data-theme="slate"] h1, body[data-theme="slate"] h2, body[data-theme="slate"] h3, body[data-theme="slate"] h4, body[data-theme="slate"] h5, body[data-theme="slate"] h6,
body[data-theme="slate"] .h1, body[data-theme="slate"] .h2, body[data-theme="slate"] .h3, body[data-theme="slate"] .h4, body[data-theme="slate"] .h5, body[data-theme="slate"] .h6 {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 500;
  line-height: 1.1;
  color: inherit;
}
/* line 16, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body[data-theme="slate"] h1 small,
body[data-theme="slate"] h1 .small, body[data-theme="slate"] h2 small,
body[data-theme="slate"] h2 .small, body[data-theme="slate"] h3 small,
body[data-theme="slate"] h3 .small, body[data-theme="slate"] h4 small,
body[data-theme="slate"] h4 .small, body[data-theme="slate"] h5 small,
body[data-theme="slate"] h5 .small, body[data-theme="slate"] h6 small,
body[data-theme="slate"] h6 .small,
body[data-theme="slate"] .h1 small,
body[data-theme="slate"] .h1 .small, body[data-theme="slate"] .h2 small,
body[data-theme="slate"] .h2 .small, body[data-theme="slate"] .h3 small,
body[data-theme="slate"] .h3 .small, body[data-theme="slate"] .h4 small,
body[data-theme="slate"] .h4 .small, body[data-theme="slate"] .h5 small,
body[data-theme="slate"] .h5 .small, body[data-theme="slate"] .h6 small,
body[data-theme="slate"] .h6 .small {
  font-weight: 400;
  line-height: 1;
  color: #7A8288;
}
/* line 24, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body[data-theme="slate"] h1, body[data-theme="slate"] .h1,
body[data-theme="slate"] h2, body[data-theme="slate"] .h2,
body[data-theme="slate"] h3, body[data-theme="slate"] .h3 {
  margin-top: 20px;
  margin-bottom: 10px;
}
/* line 30, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body[data-theme="slate"] h1 small,
body[data-theme="slate"] h1 .small, body[data-theme="slate"] .h1 small,
body[data-theme="slate"] .h1 .small,
body[data-theme="slate"] h2 small,
body[data-theme="slate"] h2 .small, body[data-theme="slate"] .h2 small,
body[data-theme="slate"] .h2 .small,
body[data-theme="slate"] h3 small,
body[data-theme="slate"] h3 .small, body[data-theme="slate"] .h3 small,
body[data-theme="slate"] .h3 .small {
  font-size: 65%;
}
/* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body[data-theme="slate"] h4, body[data-theme="slate"] .h4,
body[data-theme="slate"] h5, body[data-theme="slate"] .h5,
body[data-theme="slate"] h6, body[data-theme="slate"] .h6 {
  margin-top: 10px;
  margin-bottom: 10px;
}
/* line 41, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body[data-theme="slate"] h4 small,
body[data-theme="slate"] h4 .small, body[data-theme="slate"] .h4 small,
body[data-theme="slate"] .h4 .small,
body[data-theme="slate"] h5 small,
body[data-theme="slate"] h5 .small, body[data-theme="slate"] .h5 small,
body[data-theme="slate"] .h5 .small,
body[data-theme="slate"] h6 small,
body[data-theme="slate"] h6 .small, body[data-theme="slate"] .h6 small,
body[data-theme="slate"] .h6 .small {
  font-size: 75%;
}
/* line 47, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body[data-theme="slate"] h1, body[data-theme="slate"] .h1 {
  font-size: 36px;
}
/* line 48, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body[data-theme="slate"] h2, body[data-theme="slate"] .h2 {
  font-size: 30px;
}
/* line 49, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body[data-theme="slate"] h3, body[data-theme="slate"] .h3 {
  font-size: 24px;
}
/* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body[data-theme="slate"] h4, body[data-theme="slate"] .h4 {
  font-size: 18px;
}
/* line 51, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body[data-theme="slate"] h5, body[data-theme="slate"] .h5 {
  font-size: 14px;
}
/* line 52, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body[data-theme="slate"] h6, body[data-theme="slate"] .h6 {
  font-size: 12px;
}
/* line 58, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body[data-theme="slate"] p {
  margin: 0 0 10px;
}
/* line 62, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body[data-theme="slate"] .lead {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
}
@media (min-width: 768px) {
  /* line 62, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
  body[data-theme="slate"] .lead {
    font-size: 21px;
  }
}
/* line 78, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body[data-theme="slate"] small,
body[data-theme="slate"] .small {
  font-size: 85%;
}
/* line 83, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body[data-theme="slate"] mark,
body[data-theme="slate"] .mark {
  padding: .2em;
  background-color: #f89406;
}
/* line 90, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body[data-theme="slate"] .text-left {
  text-align: left;
}
/* line 91, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body[data-theme="slate"] .text-right {
  text-align: right;
}
/* line 92, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body[data-theme="slate"] .text-center {
  text-align: center;
}
/* line 93, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body[data-theme="slate"] .text-justify {
  text-align: justify;
}
/* line 94, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body[data-theme="slate"] .text-nowrap {
  white-space: nowrap;
}
/* line 97, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body[data-theme="slate"] .text-lowercase {
  text-transform: lowercase;
}
/* line 98, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body[data-theme="slate"] .text-uppercase, body[data-theme="slate"] .initialism {
  text-transform: uppercase;
}
/* line 99, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body[data-theme="slate"] .text-capitalize {
  text-transform: capitalize;
}
/* line 102, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body[data-theme="slate"] .text-muted {
  color: #7A8288;
}
/* line 5, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
body[data-theme="slate"] .text-primary {
  color: #7A8288;
}
/* line 8, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
body[data-theme="slate"] a.text-primary:hover,
body[data-theme="slate"] a.text-primary:focus {
  color: #62686d;
}
/* line 5, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
body[data-theme="slate"] .text-success {
  color: #fff;
}
/* line 8, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
body[data-theme="slate"] a.text-success:hover,
body[data-theme="slate"] a.text-success:focus {
  color: #e6e6e6;
}
/* line 5, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
body[data-theme="slate"] .text-info {
  color: #fff;
}
/* line 8, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
body[data-theme="slate"] a.text-info:hover,
body[data-theme="slate"] a.text-info:focus {
  color: #e6e6e6;
}
/* line 5, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
body[data-theme="slate"] .text-warning {
  color: #fff;
}
/* line 8, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
body[data-theme="slate"] a.text-warning:hover,
body[data-theme="slate"] a.text-warning:focus {
  color: #e6e6e6;
}
/* line 5, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
body[data-theme="slate"] .text-danger {
  color: #fff;
}
/* line 8, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
body[data-theme="slate"] a.text-danger:hover,
body[data-theme="slate"] a.text-danger:focus {
  color: #e6e6e6;
}
/* line 119, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body[data-theme="slate"] .bg-primary {
  color: #fff;
}
/* line 5, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
body[data-theme="slate"] .bg-primary {
  background-color: #7A8288;
}
/* line 8, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
body[data-theme="slate"] a.bg-primary:hover,
body[data-theme="slate"] a.bg-primary:focus {
  background-color: #62686d;
}
/* line 5, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
body[data-theme="slate"] .bg-success {
  background-color: #62c462;
}
/* line 8, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
body[data-theme="slate"] a.bg-success:hover,
body[data-theme="slate"] a.bg-success:focus {
  background-color: #42b142;
}
/* line 5, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
body[data-theme="slate"] .bg-info {
  background-color: #5bc0de;
}
/* line 8, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
body[data-theme="slate"] a.bg-info:hover,
body[data-theme="slate"] a.bg-info:focus {
  background-color: #31b0d5;
}
/* line 5, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
body[data-theme="slate"] .bg-warning {
  background-color: #f89406;
}
/* line 8, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
body[data-theme="slate"] a.bg-warning:hover,
body[data-theme="slate"] a.bg-warning:focus {
  background-color: #c67605;
}
/* line 5, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
body[data-theme="slate"] .bg-danger {
  background-color: #ee5f5b;
}
/* line 8, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
body[data-theme="slate"] a.bg-danger:hover,
body[data-theme="slate"] a.bg-danger:focus {
  background-color: #e9322d;
}
/* line 138, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body[data-theme="slate"] .page-header {
  padding-bottom: 9px;
  margin: 40px 0 20px;
  border-bottom: 1px solid #1c1e22;
}
/* line 149, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body[data-theme="slate"] ul,
body[data-theme="slate"] ol {
  margin-top: 0;
  margin-bottom: 10px;
}
/* line 153, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body[data-theme="slate"] ul ul,
body[data-theme="slate"] ul ol,
body[data-theme="slate"] ol ul,
body[data-theme="slate"] ol ol {
  margin-bottom: 0;
}
/* line 167, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body[data-theme="slate"] .list-unstyled {
  padding-left: 0;
  list-style: none;
}
/* line 173, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body[data-theme="slate"] .list-inline {
  padding-left: 0;
  list-style: none;
  margin-left: -5px;
}
/* line 177, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body[data-theme="slate"] .list-inline > li {
  display: inline-block;
  padding-right: 5px;
  padding-left: 5px;
}
/* line 185, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body[data-theme="slate"] dl {
  margin-top: 0;
  margin-bottom: 20px;
}
/* line 189, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body[data-theme="slate"] dt,
body[data-theme="slate"] dd {
  line-height: 1.428571429;
}
/* line 193, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body[data-theme="slate"] dt {
  font-weight: 700;
}
/* line 196, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body[data-theme="slate"] dd {
  margin-left: 0;
}
/* line 14, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
body[data-theme="slate"] .dl-horizontal dd:before, body[data-theme="slate"] .dl-horizontal dd:after {
  display: table;
  content: " ";
}
/* line 19, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
body[data-theme="slate"] .dl-horizontal dd:after {
  clear: both;
}
@media (min-width: 768px) {
  /* line 211, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
  body[data-theme="slate"] .dl-horizontal dt {
    float: left;
    width: 160px;
    clear: left;
    text-align: right;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  /* line 218, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
  body[data-theme="slate"] .dl-horizontal dd {
    margin-left: 180px;
  }
}
/* line 230, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body[data-theme="slate"] abbr[title],
body[data-theme="slate"] abbr[data-original-title] {
  cursor: help;
}
/* line 235, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body[data-theme="slate"] .initialism {
  font-size: 90%;
}
/* line 241, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body[data-theme="slate"] blockquote {
  padding: 10px 20px;
  margin: 0 0 20px;
  font-size: 17.5px;
  border-left: 5px solid #7A8288;
}
/* line 250, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body[data-theme="slate"] blockquote p:last-child,
body[data-theme="slate"] blockquote ul:last-child,
body[data-theme="slate"] blockquote ol:last-child {
  margin-bottom: 0;
}
/* line 257, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body[data-theme="slate"] blockquote footer,
body[data-theme="slate"] blockquote small,
body[data-theme="slate"] blockquote .small {
  display: block;
  font-size: 80%;
  line-height: 1.428571429;
  color: #7A8288;
}
/* line 265, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body[data-theme="slate"] blockquote footer:before,
body[data-theme="slate"] blockquote small:before,
body[data-theme="slate"] blockquote .small:before {
  content: "\2014 \00A0";
}
/* line 274, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body[data-theme="slate"] .blockquote-reverse,
body[data-theme="slate"] blockquote.pull-right {
  padding-right: 15px;
  padding-left: 0;
  text-align: right;
  border-right: 5px solid #7A8288;
  border-left: 0;
}
/* line 286, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body[data-theme="slate"] .blockquote-reverse footer:before,
body[data-theme="slate"] .blockquote-reverse small:before,
body[data-theme="slate"] .blockquote-reverse .small:before,
body[data-theme="slate"] blockquote.pull-right footer:before,
body[data-theme="slate"] blockquote.pull-right small:before,
body[data-theme="slate"] blockquote.pull-right .small:before {
  content: "";
}
/* line 287, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body[data-theme="slate"] .blockquote-reverse footer:after,
body[data-theme="slate"] .blockquote-reverse small:after,
body[data-theme="slate"] .blockquote-reverse .small:after,
body[data-theme="slate"] blockquote.pull-right footer:after,
body[data-theme="slate"] blockquote.pull-right small:after,
body[data-theme="slate"] blockquote.pull-right .small:after {
  content: "\00A0 \2014";
}
/* line 294, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
body[data-theme="slate"] address {
  margin-bottom: 20px;
  font-style: normal;
  line-height: 1.428571429;
}
/* line 7, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_code.scss */
body[data-theme="slate"] code,
body[data-theme="slate"] kbd,
body[data-theme="slate"] pre,
body[data-theme="slate"] samp {
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
}
/* line 15, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_code.scss */
body[data-theme="slate"] code {
  padding: 2px 4px;
  font-size: 90%;
  color: #c7254e;
  background-color: #22262a;
  border-radius: 4px;
}
/* line 24, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_code.scss */
body[data-theme="slate"] kbd {
  padding: 2px 4px;
  font-size: 90%;
  color: #fff;
  background-color: #22262a;
  border-radius: 3px;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
}
/* line 32, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_code.scss */
body[data-theme="slate"] kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: 700;
  box-shadow: none;
}
/* line 41, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_code.scss */
body[data-theme="slate"] pre {
  display: block;
  padding: 9.5px;
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.428571429;
  color: #ddd;
  word-break: break-all;
  word-wrap: break-word;
  background-color: #22262a;
  border: 1px solid #17191c;
  border-radius: 4px;
}
/* line 55, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_code.scss */
body[data-theme="slate"] pre code {
  padding: 0;
  font-size: inherit;
  color: inherit;
  white-space: pre-wrap;
  background-color: transparent;
  border-radius: 0;
}
/* line 66, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_code.scss */
body[data-theme="slate"] .pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}
/* line 10, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_grid.scss */
body[data-theme="slate"] .container {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
/* line 14, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
body[data-theme="slate"] .container:before, body[data-theme="slate"] .container:after {
  display: table;
  content: " ";
}
/* line 19, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
body[data-theme="slate"] .container:after {
  clear: both;
}
@media (min-width: 768px) {
  /* line 10, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_grid.scss */
  body[data-theme="slate"] .container {
    width: 750px;
  }
}
@media (min-width: 992px) {
  /* line 10, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_grid.scss */
  body[data-theme="slate"] .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  /* line 10, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_grid.scss */
  body[data-theme="slate"] .container {
    width: 1170px;
  }
}
/* line 30, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_grid.scss */
body[data-theme="slate"] .container-fluid {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
/* line 14, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
body[data-theme="slate"] .container-fluid:before, body[data-theme="slate"] .container-fluid:after {
  display: table;
  content: " ";
}
/* line 19, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
body[data-theme="slate"] .container-fluid:after {
  clear: both;
}
/* line 39, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_grid.scss */
body[data-theme="slate"] .row {
  margin-right: -15px;
  margin-left: -15px;
}
/* line 14, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
body[data-theme="slate"] .row:before, body[data-theme="slate"] .row:after {
  display: table;
  content: " ";
}
/* line 19, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
body[data-theme="slate"] .row:after {
  clear: both;
}
/* line 43, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_grid.scss */
body[data-theme="slate"] .row-no-gutters {
  margin-right: 0;
  margin-left: 0;
}
/* line 47, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_grid.scss */
body[data-theme="slate"] .row-no-gutters [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}
/* line 11, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body[data-theme="slate"] .col-xs-1, body[data-theme="slate"] .col-sm-1, body[data-theme="slate"] .col-md-1, body[data-theme="slate"] .col-lg-1, body[data-theme="slate"] .col-xs-2, body[data-theme="slate"] .col-sm-2, body[data-theme="slate"] .col-md-2, body[data-theme="slate"] .col-lg-2, body[data-theme="slate"] .col-xs-3, body[data-theme="slate"] .col-sm-3, body[data-theme="slate"] .col-md-3, body[data-theme="slate"] .col-lg-3, body[data-theme="slate"] .col-xs-4, body[data-theme="slate"] .col-sm-4, body[data-theme="slate"] .col-md-4, body[data-theme="slate"] .col-lg-4, body[data-theme="slate"] .col-xs-5, body[data-theme="slate"] .col-sm-5, body[data-theme="slate"] .col-md-5, body[data-theme="slate"] .col-lg-5, body[data-theme="slate"] .col-xs-6, body[data-theme="slate"] .col-sm-6, body[data-theme="slate"] .col-md-6, body[data-theme="slate"] .col-lg-6, body[data-theme="slate"] .col-xs-7, body[data-theme="slate"] .col-sm-7, body[data-theme="slate"] .col-md-7, body[data-theme="slate"] .col-lg-7, body[data-theme="slate"] .col-xs-8, body[data-theme="slate"] .col-sm-8, body[data-theme="slate"] .col-md-8, body[data-theme="slate"] .col-lg-8, body[data-theme="slate"] .col-xs-9, body[data-theme="slate"] .col-sm-9, body[data-theme="slate"] .col-md-9, body[data-theme="slate"] .col-lg-9, body[data-theme="slate"] .col-xs-10, body[data-theme="slate"] .col-sm-10, body[data-theme="slate"] .col-md-10, body[data-theme="slate"] .col-lg-10, body[data-theme="slate"] .col-xs-11, body[data-theme="slate"] .col-sm-11, body[data-theme="slate"] .col-md-11, body[data-theme="slate"] .col-lg-11, body[data-theme="slate"] .col-xs-12, body[data-theme="slate"] .col-sm-12, body[data-theme="slate"] .col-md-12, body[data-theme="slate"] .col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}
/* line 27, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body[data-theme="slate"] .col-xs-1, body[data-theme="slate"] .col-xs-2, body[data-theme="slate"] .col-xs-3, body[data-theme="slate"] .col-xs-4, body[data-theme="slate"] .col-xs-5, body[data-theme="slate"] .col-xs-6, body[data-theme="slate"] .col-xs-7, body[data-theme="slate"] .col-xs-8, body[data-theme="slate"] .col-xs-9, body[data-theme="slate"] .col-xs-10, body[data-theme="slate"] .col-xs-11, body[data-theme="slate"] .col-xs-12 {
  float: left;
}
/* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body[data-theme="slate"] .col-xs-1 {
  width: 8.3333333333%;
}
/* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body[data-theme="slate"] .col-xs-2 {
  width: 16.6666666667%;
}
/* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body[data-theme="slate"] .col-xs-3 {
  width: 25%;
}
/* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body[data-theme="slate"] .col-xs-4 {
  width: 33.3333333333%;
}
/* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body[data-theme="slate"] .col-xs-5 {
  width: 41.6666666667%;
}
/* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body[data-theme="slate"] .col-xs-6 {
  width: 50%;
}
/* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body[data-theme="slate"] .col-xs-7 {
  width: 58.3333333333%;
}
/* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body[data-theme="slate"] .col-xs-8 {
  width: 66.6666666667%;
}
/* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body[data-theme="slate"] .col-xs-9 {
  width: 75%;
}
/* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body[data-theme="slate"] .col-xs-10 {
  width: 83.3333333333%;
}
/* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body[data-theme="slate"] .col-xs-11 {
  width: 91.6666666667%;
}
/* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body[data-theme="slate"] .col-xs-12 {
  width: 100%;
}
/* line 55, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body[data-theme="slate"] .col-xs-pull-0 {
  right: auto;
}
/* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body[data-theme="slate"] .col-xs-pull-1 {
  right: 8.3333333333%;
}
/* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body[data-theme="slate"] .col-xs-pull-2 {
  right: 16.6666666667%;
}
/* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body[data-theme="slate"] .col-xs-pull-3 {
  right: 25%;
}
/* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body[data-theme="slate"] .col-xs-pull-4 {
  right: 33.3333333333%;
}
/* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body[data-theme="slate"] .col-xs-pull-5 {
  right: 41.6666666667%;
}
/* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body[data-theme="slate"] .col-xs-pull-6 {
  right: 50%;
}
/* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body[data-theme="slate"] .col-xs-pull-7 {
  right: 58.3333333333%;
}
/* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body[data-theme="slate"] .col-xs-pull-8 {
  right: 66.6666666667%;
}
/* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body[data-theme="slate"] .col-xs-pull-9 {
  right: 75%;
}
/* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body[data-theme="slate"] .col-xs-pull-10 {
  right: 83.3333333333%;
}
/* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body[data-theme="slate"] .col-xs-pull-11 {
  right: 91.6666666667%;
}
/* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body[data-theme="slate"] .col-xs-pull-12 {
  right: 100%;
}
/* line 45, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body[data-theme="slate"] .col-xs-push-0 {
  left: auto;
}
/* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body[data-theme="slate"] .col-xs-push-1 {
  left: 8.3333333333%;
}
/* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body[data-theme="slate"] .col-xs-push-2 {
  left: 16.6666666667%;
}
/* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body[data-theme="slate"] .col-xs-push-3 {
  left: 25%;
}
/* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body[data-theme="slate"] .col-xs-push-4 {
  left: 33.3333333333%;
}
/* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body[data-theme="slate"] .col-xs-push-5 {
  left: 41.6666666667%;
}
/* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body[data-theme="slate"] .col-xs-push-6 {
  left: 50%;
}
/* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body[data-theme="slate"] .col-xs-push-7 {
  left: 58.3333333333%;
}
/* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body[data-theme="slate"] .col-xs-push-8 {
  left: 66.6666666667%;
}
/* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body[data-theme="slate"] .col-xs-push-9 {
  left: 75%;
}
/* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body[data-theme="slate"] .col-xs-push-10 {
  left: 83.3333333333%;
}
/* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body[data-theme="slate"] .col-xs-push-11 {
  left: 91.6666666667%;
}
/* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body[data-theme="slate"] .col-xs-push-12 {
  left: 100%;
}
/* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body[data-theme="slate"] .col-xs-offset-0 {
  margin-left: 0%;
}
/* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body[data-theme="slate"] .col-xs-offset-1 {
  margin-left: 8.3333333333%;
}
/* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body[data-theme="slate"] .col-xs-offset-2 {
  margin-left: 16.6666666667%;
}
/* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body[data-theme="slate"] .col-xs-offset-3 {
  margin-left: 25%;
}
/* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body[data-theme="slate"] .col-xs-offset-4 {
  margin-left: 33.3333333333%;
}
/* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body[data-theme="slate"] .col-xs-offset-5 {
  margin-left: 41.6666666667%;
}
/* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body[data-theme="slate"] .col-xs-offset-6 {
  margin-left: 50%;
}
/* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body[data-theme="slate"] .col-xs-offset-7 {
  margin-left: 58.3333333333%;
}
/* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body[data-theme="slate"] .col-xs-offset-8 {
  margin-left: 66.6666666667%;
}
/* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body[data-theme="slate"] .col-xs-offset-9 {
  margin-left: 75%;
}
/* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body[data-theme="slate"] .col-xs-offset-10 {
  margin-left: 83.3333333333%;
}
/* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body[data-theme="slate"] .col-xs-offset-11 {
  margin-left: 91.6666666667%;
}
/* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
body[data-theme="slate"] .col-xs-offset-12 {
  margin-left: 100%;
}
@media (min-width: 768px) {
  /* line 27, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-sm-1, body[data-theme="slate"] .col-sm-2, body[data-theme="slate"] .col-sm-3, body[data-theme="slate"] .col-sm-4, body[data-theme="slate"] .col-sm-5, body[data-theme="slate"] .col-sm-6, body[data-theme="slate"] .col-sm-7, body[data-theme="slate"] .col-sm-8, body[data-theme="slate"] .col-sm-9, body[data-theme="slate"] .col-sm-10, body[data-theme="slate"] .col-sm-11, body[data-theme="slate"] .col-sm-12 {
    float: left;
  }
  /* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-sm-1 {
    width: 8.3333333333%;
  }
  /* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-sm-2 {
    width: 16.6666666667%;
  }
  /* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-sm-3 {
    width: 25%;
  }
  /* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-sm-4 {
    width: 33.3333333333%;
  }
  /* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-sm-5 {
    width: 41.6666666667%;
  }
  /* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-sm-6 {
    width: 50%;
  }
  /* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-sm-7 {
    width: 58.3333333333%;
  }
  /* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-sm-8 {
    width: 66.6666666667%;
  }
  /* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-sm-9 {
    width: 75%;
  }
  /* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-sm-10 {
    width: 83.3333333333%;
  }
  /* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-sm-11 {
    width: 91.6666666667%;
  }
  /* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-sm-12 {
    width: 100%;
  }
  /* line 55, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-sm-pull-0 {
    right: auto;
  }
  /* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-sm-pull-1 {
    right: 8.3333333333%;
  }
  /* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-sm-pull-2 {
    right: 16.6666666667%;
  }
  /* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-sm-pull-3 {
    right: 25%;
  }
  /* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-sm-pull-4 {
    right: 33.3333333333%;
  }
  /* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-sm-pull-5 {
    right: 41.6666666667%;
  }
  /* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-sm-pull-6 {
    right: 50%;
  }
  /* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-sm-pull-7 {
    right: 58.3333333333%;
  }
  /* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-sm-pull-8 {
    right: 66.6666666667%;
  }
  /* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-sm-pull-9 {
    right: 75%;
  }
  /* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-sm-pull-10 {
    right: 83.3333333333%;
  }
  /* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-sm-pull-11 {
    right: 91.6666666667%;
  }
  /* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-sm-pull-12 {
    right: 100%;
  }
  /* line 45, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-sm-push-0 {
    left: auto;
  }
  /* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-sm-push-1 {
    left: 8.3333333333%;
  }
  /* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-sm-push-2 {
    left: 16.6666666667%;
  }
  /* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-sm-push-3 {
    left: 25%;
  }
  /* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-sm-push-4 {
    left: 33.3333333333%;
  }
  /* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-sm-push-5 {
    left: 41.6666666667%;
  }
  /* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-sm-push-6 {
    left: 50%;
  }
  /* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-sm-push-7 {
    left: 58.3333333333%;
  }
  /* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-sm-push-8 {
    left: 66.6666666667%;
  }
  /* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-sm-push-9 {
    left: 75%;
  }
  /* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-sm-push-10 {
    left: 83.3333333333%;
  }
  /* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-sm-push-11 {
    left: 91.6666666667%;
  }
  /* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-sm-push-12 {
    left: 100%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-sm-offset-0 {
    margin-left: 0%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-sm-offset-1 {
    margin-left: 8.3333333333%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-sm-offset-2 {
    margin-left: 16.6666666667%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-sm-offset-3 {
    margin-left: 25%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-sm-offset-4 {
    margin-left: 33.3333333333%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-sm-offset-5 {
    margin-left: 41.6666666667%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-sm-offset-6 {
    margin-left: 50%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-sm-offset-7 {
    margin-left: 58.3333333333%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-sm-offset-8 {
    margin-left: 66.6666666667%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-sm-offset-9 {
    margin-left: 75%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-sm-offset-10 {
    margin-left: 83.3333333333%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-sm-offset-11 {
    margin-left: 91.6666666667%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-sm-offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 992px) {
  /* line 27, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-md-1, body[data-theme="slate"] .col-md-2, body[data-theme="slate"] .col-md-3, body[data-theme="slate"] .col-md-4, body[data-theme="slate"] .col-md-5, body[data-theme="slate"] .col-md-6, body[data-theme="slate"] .col-md-7, body[data-theme="slate"] .col-md-8, body[data-theme="slate"] .col-md-9, body[data-theme="slate"] .col-md-10, body[data-theme="slate"] .col-md-11, body[data-theme="slate"] .col-md-12 {
    float: left;
  }
  /* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-md-1 {
    width: 8.3333333333%;
  }
  /* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-md-2 {
    width: 16.6666666667%;
  }
  /* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-md-3 {
    width: 25%;
  }
  /* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-md-4 {
    width: 33.3333333333%;
  }
  /* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-md-5 {
    width: 41.6666666667%;
  }
  /* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-md-6 {
    width: 50%;
  }
  /* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-md-7 {
    width: 58.3333333333%;
  }
  /* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-md-8 {
    width: 66.6666666667%;
  }
  /* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-md-9 {
    width: 75%;
  }
  /* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-md-10 {
    width: 83.3333333333%;
  }
  /* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-md-11 {
    width: 91.6666666667%;
  }
  /* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-md-12 {
    width: 100%;
  }
  /* line 55, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-md-pull-0 {
    right: auto;
  }
  /* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-md-pull-1 {
    right: 8.3333333333%;
  }
  /* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-md-pull-2 {
    right: 16.6666666667%;
  }
  /* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-md-pull-3 {
    right: 25%;
  }
  /* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-md-pull-4 {
    right: 33.3333333333%;
  }
  /* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-md-pull-5 {
    right: 41.6666666667%;
  }
  /* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-md-pull-6 {
    right: 50%;
  }
  /* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-md-pull-7 {
    right: 58.3333333333%;
  }
  /* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-md-pull-8 {
    right: 66.6666666667%;
  }
  /* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-md-pull-9 {
    right: 75%;
  }
  /* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-md-pull-10 {
    right: 83.3333333333%;
  }
  /* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-md-pull-11 {
    right: 91.6666666667%;
  }
  /* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-md-pull-12 {
    right: 100%;
  }
  /* line 45, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-md-push-0 {
    left: auto;
  }
  /* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-md-push-1 {
    left: 8.3333333333%;
  }
  /* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-md-push-2 {
    left: 16.6666666667%;
  }
  /* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-md-push-3 {
    left: 25%;
  }
  /* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-md-push-4 {
    left: 33.3333333333%;
  }
  /* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-md-push-5 {
    left: 41.6666666667%;
  }
  /* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-md-push-6 {
    left: 50%;
  }
  /* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-md-push-7 {
    left: 58.3333333333%;
  }
  /* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-md-push-8 {
    left: 66.6666666667%;
  }
  /* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-md-push-9 {
    left: 75%;
  }
  /* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-md-push-10 {
    left: 83.3333333333%;
  }
  /* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-md-push-11 {
    left: 91.6666666667%;
  }
  /* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-md-push-12 {
    left: 100%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-md-offset-0 {
    margin-left: 0%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-md-offset-1 {
    margin-left: 8.3333333333%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-md-offset-2 {
    margin-left: 16.6666666667%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-md-offset-3 {
    margin-left: 25%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-md-offset-4 {
    margin-left: 33.3333333333%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-md-offset-5 {
    margin-left: 41.6666666667%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-md-offset-6 {
    margin-left: 50%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-md-offset-7 {
    margin-left: 58.3333333333%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-md-offset-8 {
    margin-left: 66.6666666667%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-md-offset-9 {
    margin-left: 75%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-md-offset-10 {
    margin-left: 83.3333333333%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-md-offset-11 {
    margin-left: 91.6666666667%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-md-offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 1200px) {
  /* line 27, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-lg-1, body[data-theme="slate"] .col-lg-2, body[data-theme="slate"] .col-lg-3, body[data-theme="slate"] .col-lg-4, body[data-theme="slate"] .col-lg-5, body[data-theme="slate"] .col-lg-6, body[data-theme="slate"] .col-lg-7, body[data-theme="slate"] .col-lg-8, body[data-theme="slate"] .col-lg-9, body[data-theme="slate"] .col-lg-10, body[data-theme="slate"] .col-lg-11, body[data-theme="slate"] .col-lg-12 {
    float: left;
  }
  /* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-lg-1 {
    width: 8.3333333333%;
  }
  /* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-lg-2 {
    width: 16.6666666667%;
  }
  /* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-lg-3 {
    width: 25%;
  }
  /* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-lg-4 {
    width: 33.3333333333%;
  }
  /* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-lg-5 {
    width: 41.6666666667%;
  }
  /* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-lg-6 {
    width: 50%;
  }
  /* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-lg-7 {
    width: 58.3333333333%;
  }
  /* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-lg-8 {
    width: 66.6666666667%;
  }
  /* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-lg-9 {
    width: 75%;
  }
  /* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-lg-10 {
    width: 83.3333333333%;
  }
  /* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-lg-11 {
    width: 91.6666666667%;
  }
  /* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-lg-12 {
    width: 100%;
  }
  /* line 55, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-lg-pull-0 {
    right: auto;
  }
  /* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-lg-pull-1 {
    right: 8.3333333333%;
  }
  /* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-lg-pull-2 {
    right: 16.6666666667%;
  }
  /* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-lg-pull-3 {
    right: 25%;
  }
  /* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-lg-pull-4 {
    right: 33.3333333333%;
  }
  /* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-lg-pull-5 {
    right: 41.6666666667%;
  }
  /* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-lg-pull-6 {
    right: 50%;
  }
  /* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-lg-pull-7 {
    right: 58.3333333333%;
  }
  /* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-lg-pull-8 {
    right: 66.6666666667%;
  }
  /* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-lg-pull-9 {
    right: 75%;
  }
  /* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-lg-pull-10 {
    right: 83.3333333333%;
  }
  /* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-lg-pull-11 {
    right: 91.6666666667%;
  }
  /* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-lg-pull-12 {
    right: 100%;
  }
  /* line 45, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-lg-push-0 {
    left: auto;
  }
  /* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-lg-push-1 {
    left: 8.3333333333%;
  }
  /* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-lg-push-2 {
    left: 16.6666666667%;
  }
  /* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-lg-push-3 {
    left: 25%;
  }
  /* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-lg-push-4 {
    left: 33.3333333333%;
  }
  /* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-lg-push-5 {
    left: 41.6666666667%;
  }
  /* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-lg-push-6 {
    left: 50%;
  }
  /* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-lg-push-7 {
    left: 58.3333333333%;
  }
  /* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-lg-push-8 {
    left: 66.6666666667%;
  }
  /* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-lg-push-9 {
    left: 75%;
  }
  /* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-lg-push-10 {
    left: 83.3333333333%;
  }
  /* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-lg-push-11 {
    left: 91.6666666667%;
  }
  /* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-lg-push-12 {
    left: 100%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-lg-offset-0 {
    margin-left: 0%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-lg-offset-1 {
    margin-left: 8.3333333333%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-lg-offset-2 {
    margin-left: 16.6666666667%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-lg-offset-3 {
    margin-left: 25%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-lg-offset-4 {
    margin-left: 33.3333333333%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-lg-offset-5 {
    margin-left: 41.6666666667%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-lg-offset-6 {
    margin-left: 50%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-lg-offset-7 {
    margin-left: 58.3333333333%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-lg-offset-8 {
    margin-left: 66.6666666667%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-lg-offset-9 {
    margin-left: 75%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-lg-offset-10 {
    margin-left: 83.3333333333%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-lg-offset-11 {
    margin-left: 91.6666666667%;
  }
  /* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  body[data-theme="slate"] .col-lg-offset-12 {
    margin-left: 100%;
  }
}
/* line 6, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
body[data-theme="slate"] table {
  background-color: #2e3338;
}
/* line 13, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
body[data-theme="slate"] table col[class*="col-"] {
  position: static;
  display: table-column;
  float: none;
}
/* line 21, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
body[data-theme="slate"] table td[class*="col-"],
body[data-theme="slate"] table th[class*="col-"] {
  position: static;
  display: table-cell;
  float: none;
}
/* line 29, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
body[data-theme="slate"] caption {
  padding-top: 8px;
  padding-bottom: 8px;
  color: #7A8288;
  text-align: left;
}
/* line 36, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
body[data-theme="slate"] th {
  text-align: left;
}
/* line 43, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
body[data-theme="slate"] .table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
}
/* line 52, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
body[data-theme="slate"] .table > thead > tr > th,
body[data-theme="slate"] .table > thead > tr > td,
body[data-theme="slate"] .table > tbody > tr > th,
body[data-theme="slate"] .table > tbody > tr > td,
body[data-theme="slate"] .table > tfoot > tr > th,
body[data-theme="slate"] .table > tfoot > tr > td {
  padding: 8px;
  line-height: 1.428571429;
  vertical-align: top;
  border-top: 1px solid #1c1e22;
}
/* line 62, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
body[data-theme="slate"] .table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 2px solid #1c1e22;
}
/* line 71, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
body[data-theme="slate"] .table > caption + thead > tr:first-child > th,
body[data-theme="slate"] .table > caption + thead > tr:first-child > td,
body[data-theme="slate"] .table > colgroup + thead > tr:first-child > th,
body[data-theme="slate"] .table > colgroup + thead > tr:first-child > td,
body[data-theme="slate"] .table > thead:first-child > tr:first-child > th,
body[data-theme="slate"] .table > thead:first-child > tr:first-child > td {
  border-top: 0;
}
/* line 78, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
body[data-theme="slate"] .table > tbody + tbody {
  border-top: 2px solid #1c1e22;
}
/* line 83, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
body[data-theme="slate"] .table .table {
  background-color: #272B30;
}
/* line 96, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
body[data-theme="slate"] .table-condensed > thead > tr > th,
body[data-theme="slate"] .table-condensed > thead > tr > td,
body[data-theme="slate"] .table-condensed > tbody > tr > th,
body[data-theme="slate"] .table-condensed > tbody > tr > td,
body[data-theme="slate"] .table-condensed > tfoot > tr > th,
body[data-theme="slate"] .table-condensed > tfoot > tr > td {
  padding: 5px;
}
/* line 109, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
body[data-theme="slate"] .table-bordered {
  border: 1px solid #1c1e22;
}
/* line 115, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
body[data-theme="slate"] .table-bordered > thead > tr > th,
body[data-theme="slate"] .table-bordered > thead > tr > td,
body[data-theme="slate"] .table-bordered > tbody > tr > th,
body[data-theme="slate"] .table-bordered > tbody > tr > td,
body[data-theme="slate"] .table-bordered > tfoot > tr > th,
body[data-theme="slate"] .table-bordered > tfoot > tr > td {
  border: 1px solid #1c1e22;
}
/* line 122, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
body[data-theme="slate"] .table-bordered > thead > tr > th,
body[data-theme="slate"] .table-bordered > thead > tr > td {
  border-bottom-width: 2px;
}
/* line 135, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
body[data-theme="slate"] .table-striped > tbody > tr:nth-of-type(odd) {
  background-color: #353a41;
}
/* line 146, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
body[data-theme="slate"] .table-hover > tbody > tr:hover {
  background-color: #49515a;
}
/* line 9, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */
body[data-theme="slate"] .table > thead > tr > td.active,
body[data-theme="slate"] .table > thead > tr > th.active, body[data-theme="slate"] .table > thead > tr.active > td, body[data-theme="slate"] .table > thead > tr.active > th,
body[data-theme="slate"] .table > tbody > tr > td.active,
body[data-theme="slate"] .table > tbody > tr > th.active,
body[data-theme="slate"] .table > tbody > tr.active > td,
body[data-theme="slate"] .table > tbody > tr.active > th,
body[data-theme="slate"] .table > tfoot > tr > td.active,
body[data-theme="slate"] .table > tfoot > tr > th.active,
body[data-theme="slate"] .table > tfoot > tr.active > td,
body[data-theme="slate"] .table > tfoot > tr.active > th {
  background-color: #49515a;
}
/* line 20, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */
body[data-theme="slate"] .table-hover > tbody > tr > td.active:hover,
body[data-theme="slate"] .table-hover > tbody > tr > th.active:hover, body[data-theme="slate"] .table-hover > tbody > tr.active:hover > td, body[data-theme="slate"] .table-hover > tbody > tr:hover > .active, body[data-theme="slate"] .table-hover > tbody > tr.active:hover > th {
  background-color: #3e444c;
}
/* line 9, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */
body[data-theme="slate"] .table > thead > tr > td.success,
body[data-theme="slate"] .table > thead > tr > th.success, body[data-theme="slate"] .table > thead > tr.success > td, body[data-theme="slate"] .table > thead > tr.success > th,
body[data-theme="slate"] .table > tbody > tr > td.success,
body[data-theme="slate"] .table > tbody > tr > th.success,
body[data-theme="slate"] .table > tbody > tr.success > td,
body[data-theme="slate"] .table > tbody > tr.success > th,
body[data-theme="slate"] .table > tfoot > tr > td.success,
body[data-theme="slate"] .table > tfoot > tr > th.success,
body[data-theme="slate"] .table > tfoot > tr.success > td,
body[data-theme="slate"] .table > tfoot > tr.success > th {
  background-color: #62c462;
}
/* line 20, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */
body[data-theme="slate"] .table-hover > tbody > tr > td.success:hover,
body[data-theme="slate"] .table-hover > tbody > tr > th.success:hover, body[data-theme="slate"] .table-hover > tbody > tr.success:hover > td, body[data-theme="slate"] .table-hover > tbody > tr:hover > .success, body[data-theme="slate"] .table-hover > tbody > tr.success:hover > th {
  background-color: #4fbd4f;
}
/* line 9, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */
body[data-theme="slate"] .table > thead > tr > td.info,
body[data-theme="slate"] .table > thead > tr > th.info, body[data-theme="slate"] .table > thead > tr.info > td, body[data-theme="slate"] .table > thead > tr.info > th,
body[data-theme="slate"] .table > tbody > tr > td.info,
body[data-theme="slate"] .table > tbody > tr > th.info,
body[data-theme="slate"] .table > tbody > tr.info > td,
body[data-theme="slate"] .table > tbody > tr.info > th,
body[data-theme="slate"] .table > tfoot > tr > td.info,
body[data-theme="slate"] .table > tfoot > tr > th.info,
body[data-theme="slate"] .table > tfoot > tr.info > td,
body[data-theme="slate"] .table > tfoot > tr.info > th {
  background-color: #5bc0de;
}
/* line 20, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */
body[data-theme="slate"] .table-hover > tbody > tr > td.info:hover,
body[data-theme="slate"] .table-hover > tbody > tr > th.info:hover, body[data-theme="slate"] .table-hover > tbody > tr.info:hover > td, body[data-theme="slate"] .table-hover > tbody > tr:hover > .info, body[data-theme="slate"] .table-hover > tbody > tr.info:hover > th {
  background-color: #46b8da;
}
/* line 9, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */
body[data-theme="slate"] .table > thead > tr > td.warning,
body[data-theme="slate"] .table > thead > tr > th.warning, body[data-theme="slate"] .table > thead > tr.warning > td, body[data-theme="slate"] .table > thead > tr.warning > th,
body[data-theme="slate"] .table > tbody > tr > td.warning,
body[data-theme="slate"] .table > tbody > tr > th.warning,
body[data-theme="slate"] .table > tbody > tr.warning > td,
body[data-theme="slate"] .table > tbody > tr.warning > th,
body[data-theme="slate"] .table > tfoot > tr > td.warning,
body[data-theme="slate"] .table > tfoot > tr > th.warning,
body[data-theme="slate"] .table > tfoot > tr.warning > td,
body[data-theme="slate"] .table > tfoot > tr.warning > th {
  background-color: #f89406;
}
/* line 20, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */
body[data-theme="slate"] .table-hover > tbody > tr > td.warning:hover,
body[data-theme="slate"] .table-hover > tbody > tr > th.warning:hover, body[data-theme="slate"] .table-hover > tbody > tr.warning:hover > td, body[data-theme="slate"] .table-hover > tbody > tr:hover > .warning, body[data-theme="slate"] .table-hover > tbody > tr.warning:hover > th {
  background-color: #df8505;
}
/* line 9, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */
body[data-theme="slate"] .table > thead > tr > td.danger,
body[data-theme="slate"] .table > thead > tr > th.danger, body[data-theme="slate"] .table > thead > tr.danger > td, body[data-theme="slate"] .table > thead > tr.danger > th,
body[data-theme="slate"] .table > tbody > tr > td.danger,
body[data-theme="slate"] .table > tbody > tr > th.danger,
body[data-theme="slate"] .table > tbody > tr.danger > td,
body[data-theme="slate"] .table > tbody > tr.danger > th,
body[data-theme="slate"] .table > tfoot > tr > td.danger,
body[data-theme="slate"] .table > tfoot > tr > th.danger,
body[data-theme="slate"] .table > tfoot > tr.danger > td,
body[data-theme="slate"] .table > tfoot > tr.danger > th {
  background-color: #ee5f5b;
}
/* line 20, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */
body[data-theme="slate"] .table-hover > tbody > tr > td.danger:hover,
body[data-theme="slate"] .table-hover > tbody > tr > th.danger:hover, body[data-theme="slate"] .table-hover > tbody > tr.danger:hover > td, body[data-theme="slate"] .table-hover > tbody > tr:hover > .danger, body[data-theme="slate"] .table-hover > tbody > tr.danger:hover > th {
  background-color: #ec4844;
}
/* line 171, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
body[data-theme="slate"] .table-responsive {
  min-height: .01%;
  overflow-x: auto;
}
@media screen and (max-width: 767px) {
  /* line 171, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
  body[data-theme="slate"] .table-responsive {
    width: 100%;
    margin-bottom: 15px;
    overflow-y: hidden;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    border: 1px solid #1c1e22;
  }
  /* line 183, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
  body[data-theme="slate"] .table-responsive > .table {
    margin-bottom: 0;
  }
  /* line 191, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
  body[data-theme="slate"] .table-responsive > .table > thead > tr > th,
  body[data-theme="slate"] .table-responsive > .table > thead > tr > td,
  body[data-theme="slate"] .table-responsive > .table > tbody > tr > th,
  body[data-theme="slate"] .table-responsive > .table > tbody > tr > td,
  body[data-theme="slate"] .table-responsive > .table > tfoot > tr > th,
  body[data-theme="slate"] .table-responsive > .table > tfoot > tr > td {
    white-space: nowrap;
  }
  /* line 200, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
  body[data-theme="slate"] .table-responsive > .table-bordered {
    border: 0;
  }
  /* line 208, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
  body[data-theme="slate"] .table-responsive > .table-bordered > thead > tr > th:first-child,
  body[data-theme="slate"] .table-responsive > .table-bordered > thead > tr > td:first-child,
  body[data-theme="slate"] .table-responsive > .table-bordered > tbody > tr > th:first-child,
  body[data-theme="slate"] .table-responsive > .table-bordered > tbody > tr > td:first-child,
  body[data-theme="slate"] .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  body[data-theme="slate"] .table-responsive > .table-bordered > tfoot > tr > td:first-child {
    border-left: 0;
  }
  /* line 212, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
  body[data-theme="slate"] .table-responsive > .table-bordered > thead > tr > th:last-child,
  body[data-theme="slate"] .table-responsive > .table-bordered > thead > tr > td:last-child,
  body[data-theme="slate"] .table-responsive > .table-bordered > tbody > tr > th:last-child,
  body[data-theme="slate"] .table-responsive > .table-bordered > tbody > tr > td:last-child,
  body[data-theme="slate"] .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  body[data-theme="slate"] .table-responsive > .table-bordered > tfoot > tr > td:last-child {
    border-right: 0;
  }
  /* line 225, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
  body[data-theme="slate"] .table-responsive > .table-bordered > tbody > tr:last-child > th,
  body[data-theme="slate"] .table-responsive > .table-bordered > tbody > tr:last-child > td,
  body[data-theme="slate"] .table-responsive > .table-bordered > tfoot > tr:last-child > th,
  body[data-theme="slate"] .table-responsive > .table-bordered > tfoot > tr:last-child > td {
    border-bottom: 0;
  }
}
/* line 10, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body[data-theme="slate"] fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}
/* line 20, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body[data-theme="slate"] legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 20px;
  font-size: 21px;
  line-height: inherit;
  color: #C8C8C8;
  border: 0;
  border-bottom: 1px solid #e5e5e5;
}
/* line 32, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body[data-theme="slate"] label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: 700;
}
/* line 46, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body[data-theme="slate"] input[type="search"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
}
/* line 61, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body[data-theme="slate"] input[type="radio"], body[data-theme="slate"] input[type="checkbox"] {
  margin: 4px 0 0;
  margin-top: 1px \9;
  line-height: normal;
}
/* line 71, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body[data-theme="slate"] input[type="radio"][disabled], body[data-theme="slate"] input[type="radio"].disabled, fieldset[disabled] body[data-theme="slate"] input[type="radio"],
body[data-theme="slate"] input[type="checkbox"][disabled],
body[data-theme="slate"] input[type="checkbox"].disabled,
fieldset[disabled] body[data-theme="slate"] input[type="checkbox"] {
  cursor: not-allowed;
}
/* line 78, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body[data-theme="slate"] input[type="file"] {
  display: block;
}
/* line 83, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body[data-theme="slate"] input[type="range"] {
  display: block;
  width: 100%;
}
/* line 89, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body[data-theme="slate"] select[multiple],
body[data-theme="slate"] select[size] {
  height: auto;
}
/* line 95, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body[data-theme="slate"] input[type="file"]:focus,
body[data-theme="slate"] input[type="radio"]:focus,
body[data-theme="slate"] input[type="checkbox"]:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
/* line 102, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body[data-theme="slate"] output {
  display: block;
  padding-top: 9px;
  font-size: 14px;
  line-height: 1.428571429;
  color: #C8C8C8;
}
/* line 133, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body[data-theme="slate"] .form-control {
  display: block;
  width: 100%;
  height: 38px;
  padding: 8px 12px;
  font-size: 14px;
  line-height: 1.428571429;
  color: #C8C8C8;
  background-color: #272B30;
  background-image: none;
  border: 1px solid #3A3F44;
  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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
body[data-theme="slate"] .form-control:focus {
  border-color: #3e4245;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(62, 66, 69, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(62, 66, 69, 0.6);
}
/* line 103, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_vendor-prefixes.scss */
body[data-theme="slate"] .form-control::-moz-placeholder {
  color: #999;
  opacity: 1;
}
/* line 107, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_vendor-prefixes.scss */
body[data-theme="slate"] .form-control:-ms-input-placeholder {
  color: #999;
}
/* line 108, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_vendor-prefixes.scss */
body[data-theme="slate"] .form-control::-webkit-input-placeholder {
  color: #999;
}
/* line 155, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body[data-theme="slate"] .form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}
/* line 165, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body[data-theme="slate"] .form-control[disabled], body[data-theme="slate"] .form-control[readonly], fieldset[disabled] body[data-theme="slate"] .form-control {
  background-color: #999;
  opacity: 1;
}
/* line 172, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body[data-theme="slate"] .form-control[disabled], fieldset[disabled] body[data-theme="slate"] .form-control {
  cursor: not-allowed;
}
/* line 181, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body[data-theme="slate"] textarea.form-control {
  height: auto;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  /* line 200, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  body[data-theme="slate"] input[type="date"].form-control,
  body[data-theme="slate"] input[type="time"].form-control,
  body[data-theme="slate"] input[type="datetime-local"].form-control,
  body[data-theme="slate"] input[type="month"].form-control {
    line-height: 38px;
  }
  /* line 204, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  body[data-theme="slate"] input[type="date"].input-sm, body[data-theme="slate"] body:not([data-theme]) .input-group-sm > input[type="date"].form-control,
  body[data-theme="slate"] body:not([data-theme]) .input-group-sm > input[type="date"].input-group-addon, body[data-theme="slate"] body[data-theme="light"] .input-group-sm > input[type="date"].form-control,
  body[data-theme="slate"] body[data-theme="light"] .input-group-sm > input[type="date"].input-group-addon, body[data-theme="slate"] body[data-theme="united"] .input-group-sm > input[type="date"].form-control,
  body[data-theme="slate"] body[data-theme="united"] .input-group-sm > input[type="date"].input-group-addon, body[data-theme="slate"] .input-group-sm > input[type="date"].form-control,
  body[data-theme="slate"] .input-group-sm > input[type="date"].input-group-addon,
  body[data-theme="slate"] .input-group-sm > .input-group-btn > input[type="date"].btn, .input-group-sm body[data-theme="slate"] input[type="date"],
  body[data-theme="slate"] input[type="time"].input-sm,
  body[data-theme="slate"] body:not([data-theme]) .input-group-sm > input[type="time"].form-control,
  body[data-theme="slate"] body:not([data-theme]) .input-group-sm > input[type="time"].input-group-addon,
  body[data-theme="slate"] body[data-theme="light"] .input-group-sm > input[type="time"].form-control,
  body[data-theme="slate"] body[data-theme="light"] .input-group-sm > input[type="time"].input-group-addon,
  body[data-theme="slate"] body[data-theme="united"] .input-group-sm > input[type="time"].form-control,
  body[data-theme="slate"] body[data-theme="united"] .input-group-sm > input[type="time"].input-group-addon,
  body[data-theme="slate"] .input-group-sm > input[type="time"].form-control,
  body[data-theme="slate"] .input-group-sm > input[type="time"].input-group-addon,
  body[data-theme="slate"] .input-group-sm > .input-group-btn > input[type="time"].btn,
  .input-group-sm body[data-theme="slate"] input[type="time"],
  body[data-theme="slate"] input[type="datetime-local"].input-sm,
  body[data-theme="slate"] body:not([data-theme]) .input-group-sm > input[type="datetime-local"].form-control,
  body[data-theme="slate"] body:not([data-theme]) .input-group-sm > input[type="datetime-local"].input-group-addon,
  body[data-theme="slate"] body[data-theme="light"] .input-group-sm > input[type="datetime-local"].form-control,
  body[data-theme="slate"] body[data-theme="light"] .input-group-sm > input[type="datetime-local"].input-group-addon,
  body[data-theme="slate"] body[data-theme="united"] .input-group-sm > input[type="datetime-local"].form-control,
  body[data-theme="slate"] body[data-theme="united"] .input-group-sm > input[type="datetime-local"].input-group-addon,
  body[data-theme="slate"] .input-group-sm > input[type="datetime-local"].form-control,
  body[data-theme="slate"] .input-group-sm > input[type="datetime-local"].input-group-addon,
  body[data-theme="slate"] .input-group-sm > .input-group-btn > input[type="datetime-local"].btn,
  .input-group-sm body[data-theme="slate"] input[type="datetime-local"],
  body[data-theme="slate"] input[type="month"].input-sm,
  body[data-theme="slate"] body:not([data-theme]) .input-group-sm > input[type="month"].form-control,
  body[data-theme="slate"] body:not([data-theme]) .input-group-sm > input[type="month"].input-group-addon,
  body[data-theme="slate"] body[data-theme="light"] .input-group-sm > input[type="month"].form-control,
  body[data-theme="slate"] body[data-theme="light"] .input-group-sm > input[type="month"].input-group-addon,
  body[data-theme="slate"] body[data-theme="united"] .input-group-sm > input[type="month"].form-control,
  body[data-theme="slate"] body[data-theme="united"] .input-group-sm > input[type="month"].input-group-addon,
  body[data-theme="slate"] .input-group-sm > input[type="month"].form-control,
  body[data-theme="slate"] .input-group-sm > input[type="month"].input-group-addon,
  body[data-theme="slate"] .input-group-sm > .input-group-btn > input[type="month"].btn,
  .input-group-sm body[data-theme="slate"] input[type="month"] {
    line-height: 30px;
  }
  /* line 209, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  body[data-theme="slate"] input[type="date"].input-lg, body[data-theme="slate"] body:not([data-theme]) .input-group-lg > input[type="date"].form-control,
  body[data-theme="slate"] body:not([data-theme]) .input-group-lg > input[type="date"].input-group-addon, body[data-theme="slate"] body[data-theme="light"] .input-group-lg > input[type="date"].form-control,
  body[data-theme="slate"] body[data-theme="light"] .input-group-lg > input[type="date"].input-group-addon, body[data-theme="slate"] body[data-theme="united"] .input-group-lg > input[type="date"].form-control,
  body[data-theme="slate"] body[data-theme="united"] .input-group-lg > input[type="date"].input-group-addon, body[data-theme="slate"] .input-group-lg > input[type="date"].form-control,
  body[data-theme="slate"] .input-group-lg > input[type="date"].input-group-addon,
  body[data-theme="slate"] .input-group-lg > .input-group-btn > input[type="date"].btn, .input-group-lg body[data-theme="slate"] input[type="date"], body[data-theme="slate"] input[type="time"].input-lg, body[data-theme="slate"] body:not([data-theme]) .input-group-lg > input[type="time"].form-control,
  body[data-theme="slate"] body:not([data-theme]) .input-group-lg > input[type="time"].input-group-addon, body[data-theme="slate"] body[data-theme="light"] .input-group-lg > input[type="time"].form-control,
  body[data-theme="slate"] body[data-theme="light"] .input-group-lg > input[type="time"].input-group-addon, body[data-theme="slate"] body[data-theme="united"] .input-group-lg > input[type="time"].form-control,
  body[data-theme="slate"] body[data-theme="united"] .input-group-lg > input[type="time"].input-group-addon, body[data-theme="slate"] .input-group-lg > input[type="time"].form-control,
  body[data-theme="slate"] .input-group-lg > input[type="time"].input-group-addon,
  body[data-theme="slate"] .input-group-lg > .input-group-btn > input[type="time"].btn, .input-group-lg body[data-theme="slate"] input[type="time"], body[data-theme="slate"] input[type="datetime-local"].input-lg, body[data-theme="slate"] body:not([data-theme]) .input-group-lg > input[type="datetime-local"].form-control,
  body[data-theme="slate"] body:not([data-theme]) .input-group-lg > input[type="datetime-local"].input-group-addon, body[data-theme="slate"] body[data-theme="light"] .input-group-lg > input[type="datetime-local"].form-control,
  body[data-theme="slate"] body[data-theme="light"] .input-group-lg > input[type="datetime-local"].input-group-addon, body[data-theme="slate"] body[data-theme="united"] .input-group-lg > input[type="datetime-local"].form-control,
  body[data-theme="slate"] body[data-theme="united"] .input-group-lg > input[type="datetime-local"].input-group-addon, body[data-theme="slate"] .input-group-lg > input[type="datetime-local"].form-control,
  body[data-theme="slate"] .input-group-lg > input[type="datetime-local"].input-group-addon,
  body[data-theme="slate"] .input-group-lg > .input-group-btn > input[type="datetime-local"].btn, .input-group-lg body[data-theme="slate"] input[type="datetime-local"], body[data-theme="slate"] input[type="month"].input-lg, body[data-theme="slate"] body:not([data-theme]) .input-group-lg > input[type="month"].form-control,
  body[data-theme="slate"] body:not([data-theme]) .input-group-lg > input[type="month"].input-group-addon, body[data-theme="slate"] body[data-theme="light"] .input-group-lg > input[type="month"].form-control,
  body[data-theme="slate"] body[data-theme="light"] .input-group-lg > input[type="month"].input-group-addon, body[data-theme="slate"] body[data-theme="united"] .input-group-lg > input[type="month"].form-control,
  body[data-theme="slate"] body[data-theme="united"] .input-group-lg > input[type="month"].input-group-addon, body[data-theme="slate"] .input-group-lg > input[type="month"].form-control,
  body[data-theme="slate"] .input-group-lg > input[type="month"].input-group-addon,
  body[data-theme="slate"] .input-group-lg > .input-group-btn > input[type="month"].btn, .input-group-lg body[data-theme="slate"] input[type="month"] {
    line-height: 54px;
  }
}
/* line 222, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body[data-theme="slate"] .form-group {
  margin-bottom: 15px;
}
/* line 231, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body[data-theme="slate"] .radio, body[data-theme="slate"] .checkbox {
  position: relative;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
}
/* line 241, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body[data-theme="slate"] .radio.disabled label, fieldset[disabled] body[data-theme="slate"] .radio label,
body[data-theme="slate"] .checkbox.disabled label,
fieldset[disabled] body[data-theme="slate"] .checkbox label {
  cursor: not-allowed;
}
/* line 246, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body[data-theme="slate"] .radio label, body[data-theme="slate"] .checkbox label {
  min-height: 20px;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: 400;
  cursor: pointer;
}
/* line 254, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body[data-theme="slate"] .radio input[type="radio"],
body[data-theme="slate"] .radio-inline input[type="radio"],
body[data-theme="slate"] .checkbox input[type="checkbox"],
body[data-theme="slate"] .checkbox-inline input[type="checkbox"] {
  position: absolute;
  margin-top: 4px \9;
  margin-left: -20px;
}
/* line 263, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body[data-theme="slate"] .radio + .radio,
body[data-theme="slate"] .checkbox + .checkbox {
  margin-top: -5px;
}
/* line 269, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body[data-theme="slate"] .radio-inline, body[data-theme="slate"] .checkbox-inline {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: 400;
  vertical-align: middle;
  cursor: pointer;
}
/* line 280, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body[data-theme="slate"] .radio-inline.disabled, fieldset[disabled] body[data-theme="slate"] .radio-inline,
body[data-theme="slate"] .checkbox-inline.disabled,
fieldset[disabled] body[data-theme="slate"] .checkbox-inline {
  cursor: not-allowed;
}
/* line 285, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body[data-theme="slate"] .radio-inline + .radio-inline,
body[data-theme="slate"] .checkbox-inline + .checkbox-inline {
  margin-top: 0;
  margin-left: 10px;
}
/* line 297, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body[data-theme="slate"] .form-control-static {
  min-height: 34px;
  padding-top: 9px;
  padding-bottom: 9px;
  margin-bottom: 0;
}
/* line 305, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body[data-theme="slate"] .form-control-static.input-lg, body[data-theme="slate"] body:not([data-theme]) .input-group-lg > .form-control-static.form-control,
body[data-theme="slate"] body:not([data-theme]) .input-group-lg > .form-control-static.input-group-addon, body[data-theme="slate"] body[data-theme="light"] .input-group-lg > .form-control-static.form-control,
body[data-theme="slate"] body[data-theme="light"] .input-group-lg > .form-control-static.input-group-addon, body[data-theme="slate"] body[data-theme="united"] .input-group-lg > .form-control-static.form-control,
body[data-theme="slate"] body[data-theme="united"] .input-group-lg > .form-control-static.input-group-addon, body[data-theme="slate"] .input-group-lg > .form-control-static.form-control,
body[data-theme="slate"] .input-group-lg > .form-control-static.input-group-addon,
body[data-theme="slate"] .input-group-lg > .input-group-btn > .form-control-static.btn, body[data-theme="slate"] .form-control-static.input-sm, body[data-theme="slate"] body:not([data-theme]) .input-group-sm > .form-control-static.form-control,
body[data-theme="slate"] body:not([data-theme]) .input-group-sm > .form-control-static.input-group-addon, body[data-theme="slate"] body[data-theme="light"] .input-group-sm > .form-control-static.form-control,
body[data-theme="slate"] body[data-theme="light"] .input-group-sm > .form-control-static.input-group-addon, body[data-theme="slate"] body[data-theme="united"] .input-group-sm > .form-control-static.form-control,
body[data-theme="slate"] body[data-theme="united"] .input-group-sm > .form-control-static.input-group-addon, body[data-theme="slate"] .input-group-sm > .form-control-static.form-control,
body[data-theme="slate"] .input-group-sm > .form-control-static.input-group-addon,
body[data-theme="slate"] .input-group-sm > .input-group-btn > .form-control-static.btn {
  padding-right: 0;
  padding-left: 0;
}
/* line 71, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
body[data-theme="slate"] .input-sm, body[data-theme="slate"] body:not([data-theme]) .input-group-sm > .form-control,
body[data-theme="slate"] body:not([data-theme]) .input-group-sm > .input-group-addon, body[data-theme="slate"] body[data-theme="light"] .input-group-sm > .form-control,
body[data-theme="slate"] body[data-theme="light"] .input-group-sm > .input-group-addon, body[data-theme="slate"] body[data-theme="united"] .input-group-sm > .form-control,
body[data-theme="slate"] body[data-theme="united"] .input-group-sm > .input-group-addon, body[data-theme="slate"] .input-group-sm > .form-control,
body[data-theme="slate"] .input-group-sm > .input-group-addon,
body[data-theme="slate"] .input-group-sm > .input-group-btn > .btn {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
/* line 79, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
body[data-theme="slate"] select.input-sm, body[data-theme="slate"] body:not([data-theme]) .input-group-sm > select.form-control,
body[data-theme="slate"] body:not([data-theme]) .input-group-sm > select.input-group-addon, body[data-theme="slate"] body[data-theme="light"] .input-group-sm > select.form-control,
body[data-theme="slate"] body[data-theme="light"] .input-group-sm > select.input-group-addon, body[data-theme="slate"] body[data-theme="united"] .input-group-sm > select.form-control,
body[data-theme="slate"] body[data-theme="united"] .input-group-sm > select.input-group-addon, body[data-theme="slate"] .input-group-sm > select.form-control,
body[data-theme="slate"] .input-group-sm > select.input-group-addon,
body[data-theme="slate"] .input-group-sm > .input-group-btn > select.btn {
  height: 30px;
  line-height: 30px;
}
/* line 84, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
body[data-theme="slate"] textarea.input-sm, body[data-theme="slate"] body:not([data-theme]) .input-group-sm > textarea.form-control,
body[data-theme="slate"] body:not([data-theme]) .input-group-sm > textarea.input-group-addon, body[data-theme="slate"] body[data-theme="light"] .input-group-sm > textarea.form-control,
body[data-theme="slate"] body[data-theme="light"] .input-group-sm > textarea.input-group-addon, body[data-theme="slate"] body[data-theme="united"] .input-group-sm > textarea.form-control,
body[data-theme="slate"] body[data-theme="united"] .input-group-sm > textarea.input-group-addon, body[data-theme="slate"] .input-group-sm > textarea.form-control,
body[data-theme="slate"] .input-group-sm > textarea.input-group-addon,
body[data-theme="slate"] .input-group-sm > .input-group-btn > textarea.btn,
body[data-theme="slate"] select[multiple].input-sm,
body[data-theme="slate"] body:not([data-theme]) .input-group-sm > select[multiple].form-control,
body[data-theme="slate"] body:not([data-theme]) .input-group-sm > select[multiple].input-group-addon,
body[data-theme="slate"] body[data-theme="light"] .input-group-sm > select[multiple].form-control,
body[data-theme="slate"] body[data-theme="light"] .input-group-sm > select[multiple].input-group-addon,
body[data-theme="slate"] body[data-theme="united"] .input-group-sm > select[multiple].form-control,
body[data-theme="slate"] body[data-theme="united"] .input-group-sm > select[multiple].input-group-addon,
body[data-theme="slate"] .input-group-sm > select[multiple].form-control,
body[data-theme="slate"] .input-group-sm > select[multiple].input-group-addon,
body[data-theme="slate"] .input-group-sm > .input-group-btn > select[multiple].btn {
  height: auto;
}
/* line 323, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body[data-theme="slate"] .form-group-sm .form-control {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
/* line 330, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body[data-theme="slate"] .form-group-sm select.form-control {
  height: 30px;
  line-height: 30px;
}
/* line 334, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body[data-theme="slate"] .form-group-sm textarea.form-control,
body[data-theme="slate"] .form-group-sm select[multiple].form-control {
  height: auto;
}
/* line 338, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body[data-theme="slate"] .form-group-sm .form-control-static {
  height: 30px;
  min-height: 32px;
  padding: 6px 10px;
  font-size: 12px;
  line-height: 1.5;
}
/* line 71, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
body[data-theme="slate"] .input-lg, body[data-theme="slate"] body:not([data-theme]) .input-group-lg > .form-control,
body[data-theme="slate"] body:not([data-theme]) .input-group-lg > .input-group-addon, body[data-theme="slate"] body[data-theme="light"] .input-group-lg > .form-control,
body[data-theme="slate"] body[data-theme="light"] .input-group-lg > .input-group-addon, body[data-theme="slate"] body[data-theme="united"] .input-group-lg > .form-control,
body[data-theme="slate"] body[data-theme="united"] .input-group-lg > .input-group-addon, body[data-theme="slate"] .input-group-lg > .form-control,
body[data-theme="slate"] .input-group-lg > .input-group-addon,
body[data-theme="slate"] .input-group-lg > .input-group-btn > .btn {
  height: 54px;
  padding: 14px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}
/* line 79, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
body[data-theme="slate"] select.input-lg, body[data-theme="slate"] body:not([data-theme]) .input-group-lg > select.form-control,
body[data-theme="slate"] body:not([data-theme]) .input-group-lg > select.input-group-addon, body[data-theme="slate"] body[data-theme="light"] .input-group-lg > select.form-control,
body[data-theme="slate"] body[data-theme="light"] .input-group-lg > select.input-group-addon, body[data-theme="slate"] body[data-theme="united"] .input-group-lg > select.form-control,
body[data-theme="slate"] body[data-theme="united"] .input-group-lg > select.input-group-addon, body[data-theme="slate"] .input-group-lg > select.form-control,
body[data-theme="slate"] .input-group-lg > select.input-group-addon,
body[data-theme="slate"] .input-group-lg > .input-group-btn > select.btn {
  height: 54px;
  line-height: 54px;
}
/* line 84, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
body[data-theme="slate"] textarea.input-lg, body[data-theme="slate"] body:not([data-theme]) .input-group-lg > textarea.form-control,
body[data-theme="slate"] body:not([data-theme]) .input-group-lg > textarea.input-group-addon, body[data-theme="slate"] body[data-theme="light"] .input-group-lg > textarea.form-control,
body[data-theme="slate"] body[data-theme="light"] .input-group-lg > textarea.input-group-addon, body[data-theme="slate"] body[data-theme="united"] .input-group-lg > textarea.form-control,
body[data-theme="slate"] body[data-theme="united"] .input-group-lg > textarea.input-group-addon, body[data-theme="slate"] .input-group-lg > textarea.form-control,
body[data-theme="slate"] .input-group-lg > textarea.input-group-addon,
body[data-theme="slate"] .input-group-lg > .input-group-btn > textarea.btn,
body[data-theme="slate"] select[multiple].input-lg,
body[data-theme="slate"] body:not([data-theme]) .input-group-lg > select[multiple].form-control,
body[data-theme="slate"] body:not([data-theme]) .input-group-lg > select[multiple].input-group-addon,
body[data-theme="slate"] body[data-theme="light"] .input-group-lg > select[multiple].form-control,
body[data-theme="slate"] body[data-theme="light"] .input-group-lg > select[multiple].input-group-addon,
body[data-theme="slate"] body[data-theme="united"] .input-group-lg > select[multiple].form-control,
body[data-theme="slate"] body[data-theme="united"] .input-group-lg > select[multiple].input-group-addon,
body[data-theme="slate"] .input-group-lg > select[multiple].form-control,
body[data-theme="slate"] .input-group-lg > select[multiple].input-group-addon,
body[data-theme="slate"] .input-group-lg > .input-group-btn > select[multiple].btn {
  height: auto;
}
/* line 349, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body[data-theme="slate"] .form-group-lg .form-control {
  height: 54px;
  padding: 14px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}
/* line 356, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body[data-theme="slate"] .form-group-lg select.form-control {
  height: 54px;
  line-height: 54px;
}
/* line 360, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body[data-theme="slate"] .form-group-lg textarea.form-control,
body[data-theme="slate"] .form-group-lg select[multiple].form-control {
  height: auto;
}
/* line 364, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body[data-theme="slate"] .form-group-lg .form-control-static {
  height: 54px;
  min-height: 38px;
  padding: 15px 16px;
  font-size: 18px;
  line-height: 1.3333333;
}
/* line 378, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body[data-theme="slate"] .has-feedback {
  position: relative;
}
/* line 383, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body[data-theme="slate"] .has-feedback .form-control {
  padding-right: 47.5px;
}
/* line 388, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body[data-theme="slate"] .form-control-feedback {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: block;
  width: 38px;
  height: 38px;
  line-height: 38px;
  text-align: center;
  pointer-events: none;
}
/* line 400, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body[data-theme="slate"] .input-lg + .form-control-feedback, body[data-theme="slate"] .input-group-lg > .form-control + .form-control-feedback,
body[data-theme="slate"] .input-group-lg > .input-group-addon + .form-control-feedback,
body[data-theme="slate"] .input-group-lg > .input-group-btn > .btn + .form-control-feedback,
body[data-theme="slate"] .input-group-lg + .form-control-feedback,
body[data-theme="slate"] .form-group-lg .form-control + .form-control-feedback {
  width: 54px;
  height: 54px;
  line-height: 54px;
}
/* line 407, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body[data-theme="slate"] .input-sm + .form-control-feedback, body[data-theme="slate"] .input-group-sm > .form-control + .form-control-feedback,
body[data-theme="slate"] .input-group-sm > .input-group-addon + .form-control-feedback,
body[data-theme="slate"] .input-group-sm > .input-group-btn > .btn + .form-control-feedback,
body[data-theme="slate"] .input-group-sm + .form-control-feedback,
body[data-theme="slate"] .form-group-sm .form-control + .form-control-feedback {
  width: 30px;
  height: 30px;
  line-height: 30px;
}
/* line 8, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
body[data-theme="slate"] .has-success .help-block,
body[data-theme="slate"] .has-success .control-label,
body[data-theme="slate"] .has-success .radio,
body[data-theme="slate"] .has-success .checkbox,
body[data-theme="slate"] .has-success .radio-inline,
body[data-theme="slate"] .has-success .checkbox-inline, body[data-theme="slate"] .has-success.radio label, body[data-theme="slate"] .has-success.checkbox label, body[data-theme="slate"] .has-success.radio-inline label, body[data-theme="slate"] .has-success.checkbox-inline label {
  color: #fff;
}
/* line 21, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
body[data-theme="slate"] .has-success .form-control {
  border-color: #fff;
  -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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
body[data-theme="slate"] .has-success .form-control:focus {
  border-color: #e6e6e6;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px white;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px white;
}
/* line 31, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
body[data-theme="slate"] .has-success .input-group-addon {
  color: #fff;
  background-color: #62c462;
  border-color: #fff;
}
/* line 37, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
body[data-theme="slate"] .has-success .form-control-feedback {
  color: #fff;
}
/* line 8, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
body[data-theme="slate"] .has-warning .help-block,
body[data-theme="slate"] .has-warning .control-label,
body[data-theme="slate"] .has-warning .radio,
body[data-theme="slate"] .has-warning .checkbox,
body[data-theme="slate"] .has-warning .radio-inline,
body[data-theme="slate"] .has-warning .checkbox-inline, body[data-theme="slate"] .has-warning.radio label, body[data-theme="slate"] .has-warning.checkbox label, body[data-theme="slate"] .has-warning.radio-inline label, body[data-theme="slate"] .has-warning.checkbox-inline label {
  color: #fff;
}
/* line 21, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
body[data-theme="slate"] .has-warning .form-control {
  border-color: #fff;
  -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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
body[data-theme="slate"] .has-warning .form-control:focus {
  border-color: #e6e6e6;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px white;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px white;
}
/* line 31, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
body[data-theme="slate"] .has-warning .input-group-addon {
  color: #fff;
  background-color: #f89406;
  border-color: #fff;
}
/* line 37, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
body[data-theme="slate"] .has-warning .form-control-feedback {
  color: #fff;
}
/* line 8, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
body[data-theme="slate"] .has-error .help-block,
body[data-theme="slate"] .has-error .control-label,
body[data-theme="slate"] .has-error .radio,
body[data-theme="slate"] .has-error .checkbox,
body[data-theme="slate"] .has-error .radio-inline,
body[data-theme="slate"] .has-error .checkbox-inline, body[data-theme="slate"] .has-error.radio label, body[data-theme="slate"] .has-error.checkbox label, body[data-theme="slate"] .has-error.radio-inline label, body[data-theme="slate"] .has-error.checkbox-inline label {
  color: #fff;
}
/* line 21, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
body[data-theme="slate"] .has-error .form-control {
  border-color: #fff;
  -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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
body[data-theme="slate"] .has-error .form-control:focus {
  border-color: #e6e6e6;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px white;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px white;
}
/* line 31, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
body[data-theme="slate"] .has-error .input-group-addon {
  color: #fff;
  background-color: #ee5f5b;
  border-color: #fff;
}
/* line 37, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
body[data-theme="slate"] .has-error .form-control-feedback {
  color: #fff;
}
/* line 429, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body[data-theme="slate"] .has-feedback label ~ .form-control-feedback {
  top: 25px;
}
/* line 432, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body[data-theme="slate"] .has-feedback label.sr-only ~ .form-control-feedback {
  top: 0;
}
/* line 443, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body[data-theme="slate"] .help-block {
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
  color: white;
}
@media (min-width: 768px) {
  /* line 468, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  body[data-theme="slate"] .form-inline .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  /* line 475, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  body[data-theme="slate"] .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  /* line 482, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  body[data-theme="slate"] .form-inline .form-control-static {
    display: inline-block;
  }
  /* line 486, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  body[data-theme="slate"] .form-inline .input-group {
    display: inline-table;
    vertical-align: middle;
  }
  /* line 490, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  body[data-theme="slate"] .form-inline .input-group .input-group-addon,
  body[data-theme="slate"] .form-inline .input-group .input-group-btn,
  body[data-theme="slate"] .form-inline .input-group .form-control {
    width: auto;
  }
  /* line 498, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  body[data-theme="slate"] .form-inline .input-group > .form-control {
    width: 100%;
  }
  /* line 502, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  body[data-theme="slate"] .form-inline .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
  /* line 509, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  body[data-theme="slate"] .form-inline .radio,
  body[data-theme="slate"] .form-inline .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }
  /* line 516, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  body[data-theme="slate"] .form-inline .radio label,
  body[data-theme="slate"] .form-inline .checkbox label {
    padding-left: 0;
  }
  /* line 520, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  body[data-theme="slate"] .form-inline .radio input[type="radio"],
  body[data-theme="slate"] .form-inline .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0;
  }
  /* line 527, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  body[data-theme="slate"] .form-inline .has-feedback .form-control-feedback {
    top: 0;
  }
}
/* line 549, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body[data-theme="slate"] .form-horizontal .radio,
body[data-theme="slate"] .form-horizontal .checkbox,
body[data-theme="slate"] .form-horizontal .radio-inline,
body[data-theme="slate"] .form-horizontal .checkbox-inline {
  padding-top: 9px;
  margin-top: 0;
  margin-bottom: 0;
}
/* line 559, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body[data-theme="slate"] .form-horizontal .radio,
body[data-theme="slate"] .form-horizontal .checkbox {
  min-height: 29px;
}
/* line 565, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body[data-theme="slate"] .form-horizontal .form-group {
  margin-right: -15px;
  margin-left: -15px;
}
/* line 14, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
body[data-theme="slate"] .form-horizontal .form-group:before, body[data-theme="slate"] .form-horizontal .form-group:after {
  display: table;
  content: " ";
}
/* line 19, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
body[data-theme="slate"] .form-horizontal .form-group:after {
  clear: both;
}
@media (min-width: 768px) {
  /* line 572, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  body[data-theme="slate"] .form-horizontal .control-label {
    padding-top: 9px;
    margin-bottom: 0;
    text-align: right;
  }
}
/* line 583, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
body[data-theme="slate"] .form-horizontal .has-feedback .form-control-feedback {
  right: 15px;
}
@media (min-width: 768px) {
  /* line 593, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  body[data-theme="slate"] .form-horizontal .form-group-lg .control-label {
    padding-top: 15px;
    font-size: 18px;
  }
}
@media (min-width: 768px) {
  /* line 601, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  body[data-theme="slate"] .form-horizontal .form-group-sm .control-label {
    padding-top: 6px;
    font-size: 12px;
  }
}
/* line 9, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
body[data-theme="slate"] .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: 8px 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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
body[data-theme="slate"] .btn:focus, body[data-theme="slate"] .btn.focus, body[data-theme="slate"] .btn:active:focus, body[data-theme="slate"] .btn:active.focus, body[data-theme="slate"] .btn.active:focus, body[data-theme="slate"] .btn.active.focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
/* line 32, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
body[data-theme="slate"] .btn:hover, body[data-theme="slate"] .btn:focus, body[data-theme="slate"] .btn.focus {
  color: #fff;
  text-decoration: none;
}
/* line 39, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
body[data-theme="slate"] .btn:active, body[data-theme="slate"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
body[data-theme="slate"] .btn.disabled, body[data-theme="slate"] .btn[disabled], fieldset[disabled] body[data-theme="slate"] .btn {
  cursor: not-allowed;
  filter: alpha(opacity=65);
  opacity: 0.65;
  -webkit-box-shadow: none;
  box-shadow: none;
}
/* line 58, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
body[data-theme="slate"] a.btn.disabled, fieldset[disabled] body[data-theme="slate"] a.btn {
  pointer-events: none;
}
/* line 68, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
body[data-theme="slate"] .btn-default {
  color: #fff;
  background-color: #3A3F44;
  border-color: #3A3F44;
}
/* line 11, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
body[data-theme="slate"] .btn-default:focus, body[data-theme="slate"] .btn-default.focus {
  color: #fff;
  background-color: #232628;
  border-color: black;
}
/* line 17, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
body[data-theme="slate"] .btn-default:hover {
  color: #fff;
  background-color: #232628;
  border-color: #1e2023;
}
/* line 22, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
body[data-theme="slate"] .btn-default:active, body[data-theme="slate"] .btn-default.active, .open > body[data-theme="slate"] .btn-default.dropdown-toggle {
  color: #fff;
  background-color: #232628;
  background-image: none;
  border-color: #1e2023;
}
/* line 30, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
body[data-theme="slate"] .btn-default:active:hover, body[data-theme="slate"] .btn-default:active:focus, body[data-theme="slate"] .btn-default:active.focus, body[data-theme="slate"] .btn-default.active:hover, body[data-theme="slate"] .btn-default.active:focus, body[data-theme="slate"] .btn-default.active.focus, .open > body[data-theme="slate"] .btn-default.dropdown-toggle:hover, .open > body[data-theme="slate"] .btn-default.dropdown-toggle:focus, .open > body[data-theme="slate"] .btn-default.dropdown-toggle.focus {
  color: #fff;
  background-color: #121415;
  border-color: black;
}
/* line 41, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
body[data-theme="slate"] .btn-default.disabled:hover, body[data-theme="slate"] .btn-default.disabled:focus, body[data-theme="slate"] .btn-default.disabled.focus, body[data-theme="slate"] .btn-default[disabled]:hover, body[data-theme="slate"] .btn-default[disabled]:focus, body[data-theme="slate"] .btn-default[disabled].focus, fieldset[disabled] body[data-theme="slate"] .btn-default:hover, fieldset[disabled] body[data-theme="slate"] .btn-default:focus, fieldset[disabled] body[data-theme="slate"] .btn-default.focus {
  background-color: #3A3F44;
  border-color: #3A3F44;
}
/* line 49, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
body[data-theme="slate"] .btn-default .badge {
  color: #3A3F44;
  background-color: #fff;
}
/* line 71, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
body[data-theme="slate"] .btn-primary {
  color: #fff;
  background-color: #565b60;
  border-color: #7A8288;
}
/* line 11, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
body[data-theme="slate"] .btn-primary:focus, body[data-theme="slate"] .btn-primary.focus {
  color: #fff;
  background-color: #3e4245;
  border-color: #3e4245;
}
/* line 17, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
body[data-theme="slate"] .btn-primary:hover {
  color: #fff;
  background-color: #3e4245;
  border-color: #5d6368;
}
/* line 22, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
body[data-theme="slate"] .btn-primary:active, body[data-theme="slate"] .btn-primary.active, .open > body[data-theme="slate"] .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #3e4245;
  background-image: none;
  border-color: #5d6368;
}
/* line 30, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
body[data-theme="slate"] .btn-primary:active:hover, body[data-theme="slate"] .btn-primary:active:focus, body[data-theme="slate"] .btn-primary:active.focus, body[data-theme="slate"] .btn-primary.active:hover, body[data-theme="slate"] .btn-primary.active:focus, body[data-theme="slate"] .btn-primary.active.focus, .open > body[data-theme="slate"] .btn-primary.dropdown-toggle:hover, .open > body[data-theme="slate"] .btn-primary.dropdown-toggle:focus, .open > body[data-theme="slate"] .btn-primary.dropdown-toggle.focus {
  color: #fff;
  background-color: #2d3032;
  border-color: #3e4245;
}
/* line 41, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
body[data-theme="slate"] .btn-primary.disabled:hover, body[data-theme="slate"] .btn-primary.disabled:focus, body[data-theme="slate"] .btn-primary.disabled.focus, body[data-theme="slate"] .btn-primary[disabled]:hover, body[data-theme="slate"] .btn-primary[disabled]:focus, body[data-theme="slate"] .btn-primary[disabled].focus, fieldset[disabled] body[data-theme="slate"] .btn-primary:hover, fieldset[disabled] body[data-theme="slate"] .btn-primary:focus, fieldset[disabled] body[data-theme="slate"] .btn-primary.focus {
  background-color: #565b60;
  border-color: #7A8288;
}
/* line 49, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
body[data-theme="slate"] .btn-primary .badge {
  color: #565b60;
  background-color: #fff;
}
/* line 75, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
body[data-theme="slate"] .btn-success {
  color: #fff;
  background-color: #62c462;
  border-color: #62c462;
}
/* line 11, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
body[data-theme="slate"] .btn-success:focus, body[data-theme="slate"] .btn-success.focus {
  color: #fff;
  background-color: #42b142;
  border-color: #2d792d;
}
/* line 17, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
body[data-theme="slate"] .btn-success:hover {
  color: #fff;
  background-color: #42b142;
  border-color: #40a940;
}
/* line 22, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
body[data-theme="slate"] .btn-success:active, body[data-theme="slate"] .btn-success.active, .open > body[data-theme="slate"] .btn-success.dropdown-toggle {
  color: #fff;
  background-color: #42b142;
  background-image: none;
  border-color: #40a940;
}
/* line 30, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
body[data-theme="slate"] .btn-success:active:hover, body[data-theme="slate"] .btn-success:active:focus, body[data-theme="slate"] .btn-success:active.focus, body[data-theme="slate"] .btn-success.active:hover, body[data-theme="slate"] .btn-success.active:focus, body[data-theme="slate"] .btn-success.active.focus, .open > body[data-theme="slate"] .btn-success.dropdown-toggle:hover, .open > body[data-theme="slate"] .btn-success.dropdown-toggle:focus, .open > body[data-theme="slate"] .btn-success.dropdown-toggle.focus {
  color: #fff;
  background-color: #399739;
  border-color: #2d792d;
}
/* line 41, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
body[data-theme="slate"] .btn-success.disabled:hover, body[data-theme="slate"] .btn-success.disabled:focus, body[data-theme="slate"] .btn-success.disabled.focus, body[data-theme="slate"] .btn-success[disabled]:hover, body[data-theme="slate"] .btn-success[disabled]:focus, body[data-theme="slate"] .btn-success[disabled].focus, fieldset[disabled] body[data-theme="slate"] .btn-success:hover, fieldset[disabled] body[data-theme="slate"] .btn-success:focus, fieldset[disabled] body[data-theme="slate"] .btn-success.focus {
  background-color: #62c462;
  border-color: #62c462;
}
/* line 49, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
body[data-theme="slate"] .btn-success .badge {
  color: #62c462;
  background-color: #fff;
}
/* line 79, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
body[data-theme="slate"] .btn-info {
  color: #fff;
  background-color: #5bc0de;
  border-color: #5bc0de;
}
/* line 11, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
body[data-theme="slate"] .btn-info:focus, body[data-theme="slate"] .btn-info.focus {
  color: #fff;
  background-color: #31b0d5;
  border-color: #1f7e9a;
}
/* line 17, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
body[data-theme="slate"] .btn-info:hover {
  color: #fff;
  background-color: #31b0d5;
  border-color: #2aabd2;
}
/* line 22, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
body[data-theme="slate"] .btn-info:active, body[data-theme="slate"] .btn-info.active, .open > body[data-theme="slate"] .btn-info.dropdown-toggle {
  color: #fff;
  background-color: #31b0d5;
  background-image: none;
  border-color: #2aabd2;
}
/* line 30, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
body[data-theme="slate"] .btn-info:active:hover, body[data-theme="slate"] .btn-info:active:focus, body[data-theme="slate"] .btn-info:active.focus, body[data-theme="slate"] .btn-info.active:hover, body[data-theme="slate"] .btn-info.active:focus, body[data-theme="slate"] .btn-info.active.focus, .open > body[data-theme="slate"] .btn-info.dropdown-toggle:hover, .open > body[data-theme="slate"] .btn-info.dropdown-toggle:focus, .open > body[data-theme="slate"] .btn-info.dropdown-toggle.focus {
  color: #fff;
  background-color: #269abc;
  border-color: #1f7e9a;
}
/* line 41, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
body[data-theme="slate"] .btn-info.disabled:hover, body[data-theme="slate"] .btn-info.disabled:focus, body[data-theme="slate"] .btn-info.disabled.focus, body[data-theme="slate"] .btn-info[disabled]:hover, body[data-theme="slate"] .btn-info[disabled]:focus, body[data-theme="slate"] .btn-info[disabled].focus, fieldset[disabled] body[data-theme="slate"] .btn-info:hover, fieldset[disabled] body[data-theme="slate"] .btn-info:focus, fieldset[disabled] body[data-theme="slate"] .btn-info.focus {
  background-color: #5bc0de;
  border-color: #5bc0de;
}
/* line 49, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
body[data-theme="slate"] .btn-info .badge {
  color: #5bc0de;
  background-color: #fff;
}
/* line 83, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
body[data-theme="slate"] .btn-warning {
  color: #fff;
  background-color: #f89406;
  border-color: #f89406;
}
/* line 11, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
body[data-theme="slate"] .btn-warning:focus, body[data-theme="slate"] .btn-warning.focus {
  color: #fff;
  background-color: #c67605;
  border-color: #7c4a03;
}
/* line 17, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
body[data-theme="slate"] .btn-warning:hover {
  color: #fff;
  background-color: #c67605;
  border-color: #bc7005;
}
/* line 22, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
body[data-theme="slate"] .btn-warning:active, body[data-theme="slate"] .btn-warning.active, .open > body[data-theme="slate"] .btn-warning.dropdown-toggle {
  color: #fff;
  background-color: #c67605;
  background-image: none;
  border-color: #bc7005;
}
/* line 30, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
body[data-theme="slate"] .btn-warning:active:hover, body[data-theme="slate"] .btn-warning:active:focus, body[data-theme="slate"] .btn-warning:active.focus, body[data-theme="slate"] .btn-warning.active:hover, body[data-theme="slate"] .btn-warning.active:focus, body[data-theme="slate"] .btn-warning.active.focus, .open > body[data-theme="slate"] .btn-warning.dropdown-toggle:hover, .open > body[data-theme="slate"] .btn-warning.dropdown-toggle:focus, .open > body[data-theme="slate"] .btn-warning.dropdown-toggle.focus {
  color: #fff;
  background-color: #a36104;
  border-color: #7c4a03;
}
/* line 41, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
body[data-theme="slate"] .btn-warning.disabled:hover, body[data-theme="slate"] .btn-warning.disabled:focus, body[data-theme="slate"] .btn-warning.disabled.focus, body[data-theme="slate"] .btn-warning[disabled]:hover, body[data-theme="slate"] .btn-warning[disabled]:focus, body[data-theme="slate"] .btn-warning[disabled].focus, fieldset[disabled] body[data-theme="slate"] .btn-warning:hover, fieldset[disabled] body[data-theme="slate"] .btn-warning:focus, fieldset[disabled] body[data-theme="slate"] .btn-warning.focus {
  background-color: #f89406;
  border-color: #f89406;
}
/* line 49, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
body[data-theme="slate"] .btn-warning .badge {
  color: #f89406;
  background-color: #fff;
}
/* line 87, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
body[data-theme="slate"] .btn-danger {
  color: #fff;
  background-color: #ee5f5b;
  border-color: #ee5f5b;
}
/* line 11, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
body[data-theme="slate"] .btn-danger:focus, body[data-theme="slate"] .btn-danger.focus {
  color: #fff;
  background-color: #e9322d;
  border-color: #b71713;
}
/* line 17, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
body[data-theme="slate"] .btn-danger:hover {
  color: #fff;
  background-color: #e9322d;
  border-color: #e82924;
}
/* line 22, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
body[data-theme="slate"] .btn-danger:active, body[data-theme="slate"] .btn-danger.active, .open > body[data-theme="slate"] .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #e9322d;
  background-image: none;
  border-color: #e82924;
}
/* line 30, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
body[data-theme="slate"] .btn-danger:active:hover, body[data-theme="slate"] .btn-danger:active:focus, body[data-theme="slate"] .btn-danger:active.focus, body[data-theme="slate"] .btn-danger.active:hover, body[data-theme="slate"] .btn-danger.active:focus, body[data-theme="slate"] .btn-danger.active.focus, .open > body[data-theme="slate"] .btn-danger.dropdown-toggle:hover, .open > body[data-theme="slate"] .btn-danger.dropdown-toggle:focus, .open > body[data-theme="slate"] .btn-danger.dropdown-toggle.focus {
  color: #fff;
  background-color: #dc1c17;
  border-color: #b71713;
}
/* line 41, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
body[data-theme="slate"] .btn-danger.disabled:hover, body[data-theme="slate"] .btn-danger.disabled:focus, body[data-theme="slate"] .btn-danger.disabled.focus, body[data-theme="slate"] .btn-danger[disabled]:hover, body[data-theme="slate"] .btn-danger[disabled]:focus, body[data-theme="slate"] .btn-danger[disabled].focus, fieldset[disabled] body[data-theme="slate"] .btn-danger:hover, fieldset[disabled] body[data-theme="slate"] .btn-danger:focus, fieldset[disabled] body[data-theme="slate"] .btn-danger.focus {
  background-color: #ee5f5b;
  border-color: #ee5f5b;
}
/* line 49, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
body[data-theme="slate"] .btn-danger .badge {
  color: #ee5f5b;
  background-color: #fff;
}
/* line 96, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
body[data-theme="slate"] .btn-link {
  font-weight: 400;
  color: #fff;
  border-radius: 0;
}
/* line 101, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
body[data-theme="slate"] .btn-link, body[data-theme="slate"] .btn-link:active, body[data-theme="slate"] .btn-link.active, body[data-theme="slate"] .btn-link[disabled], fieldset[disabled] body[data-theme="slate"] .btn-link {
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}
/* line 109, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
body[data-theme="slate"] .btn-link, body[data-theme="slate"] .btn-link:hover, body[data-theme="slate"] .btn-link:focus, body[data-theme="slate"] .btn-link:active {
  border-color: transparent;
}
/* line 115, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
body[data-theme="slate"] .btn-link:hover, body[data-theme="slate"] .btn-link:focus {
  color: #fff;
  text-decoration: underline;
  background-color: transparent;
}
/* line 123, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
body[data-theme="slate"] .btn-link[disabled]:hover, body[data-theme="slate"] .btn-link[disabled]:focus, fieldset[disabled] body[data-theme="slate"] .btn-link:hover, fieldset[disabled] body[data-theme="slate"] .btn-link:focus {
  color: #7A8288;
  text-decoration: none;
}
/* line 135, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
body[data-theme="slate"] .btn-lg, body[data-theme="slate"] body:not([data-theme]) .btn-group-lg > .btn, body[data-theme="slate"] body[data-theme="light"] .btn-group-lg > .btn, body[data-theme="slate"] body[data-theme="united"] .btn-group-lg > .btn, body[data-theme="slate"] .btn-group-lg > .btn {
  padding: 14px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}
/* line 139, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
body[data-theme="slate"] .btn-sm, body[data-theme="slate"] body:not([data-theme]) .btn-group-sm > .btn, body[data-theme="slate"] body[data-theme="light"] .btn-group-sm > .btn, body[data-theme="slate"] body[data-theme="united"] .btn-group-sm > .btn, body[data-theme="slate"] .btn-group-sm > .btn {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
/* line 143, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
body[data-theme="slate"] .btn-xs, body[data-theme="slate"] body:not([data-theme]) .btn-group-xs > .btn, body[data-theme="slate"] body[data-theme="light"] .btn-group-xs > .btn, body[data-theme="slate"] body[data-theme="united"] .btn-group-xs > .btn, body[data-theme="slate"] .btn-group-xs > .btn {
  padding: 1px 5px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
/* line 151, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
body[data-theme="slate"] .btn-block {
  display: block;
  width: 100%;
}
/* line 157, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
body[data-theme="slate"] .btn-block + .btn-block {
  margin-top: 5px;
}
/* line 165, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
body[data-theme="slate"] input[type="submit"].btn-block,
body[data-theme="slate"] input[type="reset"].btn-block,
body[data-theme="slate"] input[type="button"].btn-block {
  width: 100%;
}
/* line 10, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_component-animations.scss */
body[data-theme="slate"] .fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}
/* line 14, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_component-animations.scss */
body[data-theme="slate"] .fade.in {
  opacity: 1;
}
/* line 19, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_component-animations.scss */
body[data-theme="slate"] .collapse {
  display: none;
}
/* line 22, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_component-animations.scss */
body[data-theme="slate"] .collapse.in {
  display: block;
}
/* line 27, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_component-animations.scss */
body[data-theme="slate"] tr.collapse.in {
  display: table-row;
}
/* line 29, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_component-animations.scss */
body[data-theme="slate"] tbody.collapse.in {
  display: table-row-group;
}
/* line 31, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_component-animations.scss */
body[data-theme="slate"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
body[data-theme="slate"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
body[data-theme="slate"] .dropup,
body[data-theme="slate"] .dropdown {
  position: relative;
}
/* line 26, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
body[data-theme="slate"] .dropdown-toggle:focus {
  outline: 0;
}
/* line 31, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
body[data-theme="slate"] .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: #3A3F44;
  background-clip: padding-box;
  border: 1px solid #272B30;
  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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
body[data-theme="slate"] .dropdown-menu.pull-right {
  right: 0;
  left: auto;
}
/* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
body[data-theme="slate"] .dropdown-menu .divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #272B30;
}
/* line 65, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
body[data-theme="slate"] .dropdown-menu > li > a {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: 400;
  line-height: 1.428571429;
  color: #C8C8C8;
  white-space: nowrap;
}
/* line 74, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
body[data-theme="slate"] .dropdown-menu > li > a:hover, body[data-theme="slate"] .dropdown-menu > li > a:focus {
  color: #fff;
  text-decoration: none;
  background-color: #272B30;
}
/* line 85, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
body[data-theme="slate"] .dropdown-menu > .active > a, body[data-theme="slate"] .dropdown-menu > .active > a:hover, body[data-theme="slate"] .dropdown-menu > .active > a:focus {
  color: #fff;
  text-decoration: none;
  background-color: #272B30;
  outline: 0;
}
/* line 100, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
body[data-theme="slate"] .dropdown-menu > .disabled > a, body[data-theme="slate"] .dropdown-menu > .disabled > a:hover, body[data-theme="slate"] .dropdown-menu > .disabled > a:focus {
  color: #7A8288;
}
/* line 107, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
body[data-theme="slate"] .dropdown-menu > .disabled > a:hover, body[data-theme="slate"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
body[data-theme="slate"] .open > .dropdown-menu {
  display: block;
}
/* line 125, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
body[data-theme="slate"] .open > a {
  outline: 0;
}
/* line 134, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
body[data-theme="slate"] .dropdown-menu-right {
  right: 0;
  left: auto;
}
/* line 144, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
body[data-theme="slate"] .dropdown-menu-left {
  right: auto;
  left: 0;
}
/* line 150, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
body[data-theme="slate"] .dropdown-header {
  display: block;
  padding: 3px 20px;
  font-size: 12px;
  line-height: 1.428571429;
  color: #7A8288;
  white-space: nowrap;
}
/* line 160, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
body[data-theme="slate"] .dropdown-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 990;
}
/* line 170, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
body[data-theme="slate"] .pull-right > .dropdown-menu {
  right: 0;
  left: auto;
}
/* line 183, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
body[data-theme="slate"] .dropup .caret,
body[data-theme="slate"] .navbar-fixed-bottom .dropdown .caret {
  content: "";
  border-top: 0;
  border-bottom: 4px dashed;
  border-bottom: 4px solid \9 ;
}
/* line 190, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
body[data-theme="slate"] .dropup .dropdown-menu,
body[data-theme="slate"] .navbar-fixed-bottom .dropdown .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 2px;
}
@media (min-width: 768px) {
  /* line 204, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
  body[data-theme="slate"] .navbar-right .dropdown-menu {
    right: 0;
    left: auto;
  }
  /* line 209, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
  body[data-theme="slate"] .navbar-right .dropdown-menu-left {
    left: 0;
    right: auto;
  }
}
/* line 6, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
body[data-theme="slate"] .btn-group,
body[data-theme="slate"] .btn-group-vertical {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
/* line 11, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
body[data-theme="slate"] .btn-group > .btn,
body[data-theme="slate"] .btn-group-vertical > .btn {
  position: relative;
  float: left;
}
/* line 15, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
body[data-theme="slate"] .btn-group > .btn:hover, body[data-theme="slate"] .btn-group > .btn:focus, body[data-theme="slate"] .btn-group > .btn:active, body[data-theme="slate"] .btn-group > .btn.active,
body[data-theme="slate"] .btn-group-vertical > .btn:hover,
body[data-theme="slate"] .btn-group-vertical > .btn:focus,
body[data-theme="slate"] .btn-group-vertical > .btn:active,
body[data-theme="slate"] .btn-group-vertical > .btn.active {
  z-index: 2;
}
/* line 26, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
body[data-theme="slate"] .btn-group .btn + .btn,
body[data-theme="slate"] .btn-group .btn + .btn-group,
body[data-theme="slate"] .btn-group .btn-group + .btn,
body[data-theme="slate"] .btn-group .btn-group + .btn-group {
  margin-left: -1px;
}
/* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
body[data-theme="slate"] .btn-toolbar {
  margin-left: -5px;
}
/* line 14, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
body[data-theme="slate"] .btn-toolbar:before, body[data-theme="slate"] .btn-toolbar:after {
  display: table;
  content: " ";
}
/* line 19, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
body[data-theme="slate"] .btn-toolbar:after {
  clear: both;
}
/* line 39, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
body[data-theme="slate"] .btn-toolbar .btn,
body[data-theme="slate"] .btn-toolbar .btn-group,
body[data-theme="slate"] .btn-toolbar .input-group {
  float: left;
}
/* line 44, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
body[data-theme="slate"] .btn-toolbar > .btn,
body[data-theme="slate"] .btn-toolbar > .btn-group,
body[data-theme="slate"] .btn-toolbar > .input-group {
  margin-left: 5px;
}
/* line 51, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
body[data-theme="slate"] .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  border-radius: 0;
}
/* line 56, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
body[data-theme="slate"] .btn-group > .btn:first-child {
  margin-left: 0;
}
/* line 58, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
body[data-theme="slate"] .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
/* line 63, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
body[data-theme="slate"] .btn-group > .btn:last-child:not(:first-child),
body[data-theme="slate"] .btn-group > .dropdown-toggle:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
/* line 69, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
body[data-theme="slate"] .btn-group > .btn-group {
  float: left;
}
/* line 72, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
body[data-theme="slate"] .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}
/* line 76, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
body[data-theme="slate"] .btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,
body[data-theme="slate"] .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
/* line 81, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
body[data-theme="slate"] .btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
/* line 86, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
body[data-theme="slate"] .btn-group .dropdown-toggle:active,
body[data-theme="slate"] .btn-group.open .dropdown-toggle {
  outline: 0;
}
/* line 105, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
body[data-theme="slate"] .btn-group > .btn + .dropdown-toggle {
  padding-right: 8px;
  padding-left: 8px;
}
/* line 109, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
body[data-theme="slate"] .btn-group > .btn-lg + .dropdown-toggle, body[data-theme="slate"] .btn-group-lg.btn-group > .btn + .dropdown-toggle {
  padding-right: 12px;
  padding-left: 12px;
}
/* line 116, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
body[data-theme="slate"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
body[data-theme="slate"] .btn-group.open .dropdown-toggle.btn-link {
  -webkit-box-shadow: none;
  box-shadow: none;
}
/* line 127, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
body[data-theme="slate"] .btn .caret {
  margin-left: 0;
}
/* line 131, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
body[data-theme="slate"] .btn-lg .caret, body[data-theme="slate"] .btn-group-lg > .btn .caret {
  border-width: 5px 5px 0;
  border-bottom-width: 0;
}
/* line 136, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
body[data-theme="slate"] .dropup .btn-lg .caret, body[data-theme="slate"] .dropup .btn-group-lg > .btn .caret {
  border-width: 0 5px 5px;
}
/* line 145, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
body[data-theme="slate"] .btn-group-vertical > .btn,
body[data-theme="slate"] .btn-group-vertical > .btn-group,
body[data-theme="slate"] .btn-group-vertical > .btn-group > .btn {
  display: block;
  float: none;
  width: 100%;
  max-width: 100%;
}
/* line 14, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
body[data-theme="slate"] .btn-group-vertical > .btn-group:before, body[data-theme="slate"] .btn-group-vertical > .btn-group:after {
  display: table;
  content: " ";
}
/* line 19, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
body[data-theme="slate"] .btn-group-vertical > .btn-group:after {
  clear: both;
}
/* line 157, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
body[data-theme="slate"] .btn-group-vertical > .btn-group > .btn {
  float: none;
}
/* line 162, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
body[data-theme="slate"] .btn-group-vertical > .btn + .btn,
body[data-theme="slate"] .btn-group-vertical > .btn + .btn-group,
body[data-theme="slate"] .btn-group-vertical > .btn-group + .btn,
body[data-theme="slate"] .btn-group-vertical > .btn-group + .btn-group {
  margin-top: -1px;
  margin-left: 0;
}
/* line 172, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
body[data-theme="slate"] .btn-group-vertical > .btn:not(:first-child):not(:last-child) {
  border-radius: 0;
}
/* line 175, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
body[data-theme="slate"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
body[data-theme="slate"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
body[data-theme="slate"] .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}
/* line 188, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
body[data-theme="slate"] .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
body[data-theme="slate"] .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
/* line 193, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
body[data-theme="slate"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
body[data-theme="slate"] .btn-group-justified {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
}
/* line 206, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
body[data-theme="slate"] .btn-group-justified > .btn,
body[data-theme="slate"] .btn-group-justified > .btn-group {
  display: table-cell;
  float: none;
  width: 1%;
}
/* line 212, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
body[data-theme="slate"] .btn-group-justified > .btn-group .btn {
  width: 100%;
}
/* line 216, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
body[data-theme="slate"] .btn-group-justified > .btn-group .dropdown-menu {
  left: auto;
}
/* line 237, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
body[data-theme="slate"] [data-toggle="buttons"] > .btn input[type="radio"],
body[data-theme="slate"] [data-toggle="buttons"] > .btn input[type="checkbox"],
body[data-theme="slate"] [data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
body[data-theme="slate"] [data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}
/* line 7, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
body[data-theme="slate"] .input-group {
  position: relative;
  display: table;
  border-collapse: separate;
}
/* line 13, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
body[data-theme="slate"] .input-group[class*="col-"] {
  float: none;
  padding-right: 0;
  padding-left: 0;
}
/* line 19, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
body[data-theme="slate"] .input-group .form-control {
  position: relative;
  z-index: 2;
  float: left;
  width: 100%;
  margin-bottom: 0;
}
/* line 33, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
body[data-theme="slate"] .input-group .form-control:focus {
  z-index: 3;
}
/* line 58, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
body[data-theme="slate"] .input-group-addon,
body[data-theme="slate"] .input-group-btn,
body[data-theme="slate"] .input-group .form-control {
  display: table-cell;
}
/* line 63, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
body[data-theme="slate"] .input-group-addon:not(:first-child):not(:last-child),
body[data-theme="slate"] .input-group-btn:not(:first-child):not(:last-child),
body[data-theme="slate"] .input-group .form-control:not(:first-child):not(:last-child) {
  border-radius: 0;
}
/* line 68, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
body[data-theme="slate"] .input-group-addon,
body[data-theme="slate"] .input-group-btn {
  width: 1%;
  white-space: nowrap;
  vertical-align: middle;
}
/* line 77, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
body[data-theme="slate"] .input-group-addon {
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  color: #C8C8C8;
  text-align: center;
  background-color: #999;
  border: 1px solid #ccc;
  border-radius: 4px;
}
/* line 89, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
body[data-theme="slate"] .input-group-addon.input-sm,
body[data-theme="slate"] body:not([data-theme]) .input-group-sm > .input-group-addon,
body[data-theme="slate"] body[data-theme="light"] .input-group-sm > .input-group-addon,
body[data-theme="slate"] body[data-theme="united"] .input-group-sm > .input-group-addon,
body[data-theme="slate"] .input-group-sm > .input-group-addon,
body[data-theme="slate"] .input-group-sm > .input-group-btn > .input-group-addon.btn {
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 3px;
}
/* line 94, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
body[data-theme="slate"] .input-group-addon.input-lg,
body[data-theme="slate"] body:not([data-theme]) .input-group-lg > .input-group-addon,
body[data-theme="slate"] body[data-theme="light"] .input-group-lg > .input-group-addon,
body[data-theme="slate"] body[data-theme="united"] .input-group-lg > .input-group-addon,
body[data-theme="slate"] .input-group-lg > .input-group-addon,
body[data-theme="slate"] .input-group-lg > .input-group-btn > .input-group-addon.btn {
  padding: 14px 16px;
  font-size: 18px;
  border-radius: 6px;
}
/* line 101, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
body[data-theme="slate"] .input-group-addon input[type="radio"],
body[data-theme="slate"] .input-group-addon input[type="checkbox"] {
  margin-top: 0;
}
/* line 108, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
body[data-theme="slate"] .input-group .form-control:first-child,
body[data-theme="slate"] .input-group-addon:first-child,
body[data-theme="slate"] .input-group-btn:first-child > .btn,
body[data-theme="slate"] .input-group-btn:first-child > .btn-group > .btn,
body[data-theme="slate"] .input-group-btn:first-child > .dropdown-toggle,
body[data-theme="slate"] .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
body[data-theme="slate"] .input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
/* line 117, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
body[data-theme="slate"] .input-group-addon:first-child {
  border-right: 0;
}
/* line 120, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
body[data-theme="slate"] .input-group .form-control:last-child,
body[data-theme="slate"] .input-group-addon:last-child,
body[data-theme="slate"] .input-group-btn:last-child > .btn,
body[data-theme="slate"] .input-group-btn:last-child > .btn-group > .btn,
body[data-theme="slate"] .input-group-btn:last-child > .dropdown-toggle,
body[data-theme="slate"] .input-group-btn:first-child > .btn:not(:first-child),
body[data-theme="slate"] .input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
/* line 129, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
body[data-theme="slate"] .input-group-addon:last-child {
  border-left: 0;
}
/* line 135, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
body[data-theme="slate"] .input-group-btn {
  position: relative;
  font-size: 0;
  white-space: nowrap;
}
/* line 144, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
body[data-theme="slate"] .input-group-btn > .btn {
  position: relative;
}
/* line 146, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
body[data-theme="slate"] .input-group-btn > .btn + .btn {
  margin-left: -1px;
}
/* line 150, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
body[data-theme="slate"] .input-group-btn > .btn:hover, body[data-theme="slate"] .input-group-btn > .btn:focus, body[data-theme="slate"] .input-group-btn > .btn:active {
  z-index: 2;
}
/* line 159, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
body[data-theme="slate"] .input-group-btn:first-child > .btn,
body[data-theme="slate"] .input-group-btn:first-child > .btn-group {
  margin-right: -1px;
}
/* line 165, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
body[data-theme="slate"] .input-group-btn:last-child > .btn,
body[data-theme="slate"] .input-group-btn:last-child > .btn-group {
  z-index: 2;
  margin-left: -1px;
}
/* line 9, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
body[data-theme="slate"] .nav {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
/* line 14, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
body[data-theme="slate"] .nav:before, body[data-theme="slate"] .nav:after {
  display: table;
  content: " ";
}
/* line 19, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
body[data-theme="slate"] .nav:after {
  clear: both;
}
/* line 15, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
body[data-theme="slate"] .nav > li {
  position: relative;
  display: block;
}
/* line 19, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
body[data-theme="slate"] .nav > li > a {
  position: relative;
  display: block;
  padding: 10px 15px;
}
/* line 23, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
body[data-theme="slate"] .nav > li > a:hover, body[data-theme="slate"] .nav > li > a:focus {
  text-decoration: none;
  background-color: #3e444c;
}
/* line 31, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
body[data-theme="slate"] .nav > li.disabled > a {
  color: #7A8288;
}
/* line 34, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
body[data-theme="slate"] .nav > li.disabled > a:hover, body[data-theme="slate"] .nav > li.disabled > a:focus {
  color: #7A8288;
  text-decoration: none;
  cursor: not-allowed;
  background-color: transparent;
}
/* line 46, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
body[data-theme="slate"] .nav .open > a, body[data-theme="slate"] .nav .open > a:hover, body[data-theme="slate"] .nav .open > a:focus {
  background-color: #3e444c;
  border-color: #fff;
}
/* line 59, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
body[data-theme="slate"] .nav .nav-divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}
/* line 66, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
body[data-theme="slate"] .nav > li > a > img {
  max-width: none;
}
/* line 76, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
body[data-theme="slate"] .nav-tabs {
  border-bottom: 1px solid #1c1e22;
}
/* line 78, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
body[data-theme="slate"] .nav-tabs > li {
  float: left;
  margin-bottom: -1px;
}
/* line 84, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
body[data-theme="slate"] .nav-tabs > li > a {
  margin-right: 2px;
  line-height: 1.428571429;
  border: 1px solid transparent;
  border-radius: 4px 4px 0 0;
}
/* line 89, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
body[data-theme="slate"] .nav-tabs > li > a:hover {
  border-color: #1c1e22 #1c1e22 #1c1e22;
}
/* line 96, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
body[data-theme="slate"] .nav-tabs > li.active > a, body[data-theme="slate"] .nav-tabs > li.active > a:hover, body[data-theme="slate"] .nav-tabs > li.active > a:focus {
  color: #fff;
  cursor: default;
  background-color: #3e444c;
  border: 1px solid #1c1e22;
  border-bottom-color: transparent;
}
/* line 118, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
body[data-theme="slate"] .nav-pills > li {
  float: left;
}
/* line 122, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
body[data-theme="slate"] .nav-pills > li > a {
  border-radius: 4px;
}
/* line 125, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
body[data-theme="slate"] .nav-pills > li + li {
  margin-left: 2px;
}
/* line 131, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
body[data-theme="slate"] .nav-pills > li.active > a, body[data-theme="slate"] .nav-pills > li.active > a:hover, body[data-theme="slate"] .nav-pills > li.active > a:focus {
  color: #fff;
  background-color: transparent;
}
/* line 144, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
body[data-theme="slate"] .nav-stacked > li {
  float: none;
}
/* line 146, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
body[data-theme="slate"] .nav-stacked > li + li {
  margin-top: 2px;
  margin-left: 0;
}
/* line 160, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
body[data-theme="slate"] .nav-justified, body[data-theme="slate"] .nav-tabs.nav-justified {
  width: 100%;
}
/* line 163, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
body[data-theme="slate"] .nav-justified > li, body[data-theme="slate"] body:not([data-theme]) .nav-tabs.nav-justified > li, body[data-theme="slate"] body[data-theme="light"] .nav-tabs.nav-justified > li, body[data-theme="slate"] body[data-theme="united"] .nav-tabs.nav-justified > li, body[data-theme="slate"] .nav-tabs.nav-justified > li {
  float: none;
}
/* line 165, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
body[data-theme="slate"] .nav-justified > li > a, body[data-theme="slate"] .nav-tabs.nav-justified > li > a {
  margin-bottom: 5px;
  text-align: center;
}
/* line 171, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
body[data-theme="slate"] .nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}
@media (min-width: 768px) {
  /* line 177, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
  body[data-theme="slate"] .nav-justified > li, body[data-theme="slate"] body:not([data-theme]) .nav-tabs.nav-justified > li, body[data-theme="slate"] body[data-theme="light"] .nav-tabs.nav-justified > li, body[data-theme="slate"] body[data-theme="united"] .nav-tabs.nav-justified > li, body[data-theme="slate"] .nav-tabs.nav-justified > li {
    display: table-cell;
    width: 1%;
  }
  /* line 180, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
  body[data-theme="slate"] .nav-justified > li > a, body[data-theme="slate"] .nav-tabs.nav-justified > li > a {
    margin-bottom: 0;
  }
}
/* line 190, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
body[data-theme="slate"] .nav-tabs-justified, body[data-theme="slate"] .nav-tabs.nav-justified {
  border-bottom: 0;
}
/* line 193, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
body[data-theme="slate"] .nav-tabs-justified > li > a, body[data-theme="slate"] .nav-tabs.nav-justified > li > a {
  margin-right: 0;
  border-radius: 4px;
}
/* line 199, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
body[data-theme="slate"] .nav-tabs-justified > .active > a, body[data-theme="slate"] .nav-tabs.nav-justified > .active > a,
body[data-theme="slate"] .nav-tabs-justified > .active > a:hover,
body[data-theme="slate"] .nav-tabs.nav-justified > .active > a:hover,
body[data-theme="slate"] .nav-tabs-justified > .active > a:focus,
body[data-theme="slate"] .nav-tabs.nav-justified > .active > a:focus {
  border: 1px solid #1c1e22;
}
@media (min-width: 768px) {
  /* line 206, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
  body[data-theme="slate"] .nav-tabs-justified > li > a, body[data-theme="slate"] .nav-tabs.nav-justified > li > a {
    border-bottom: 1px solid #1c1e22;
    border-radius: 4px 4px 0 0;
  }
  /* line 210, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
  body[data-theme="slate"] .nav-tabs-justified > .active > a, body[data-theme="slate"] .nav-tabs.nav-justified > .active > a,
  body[data-theme="slate"] .nav-tabs-justified > .active > a:hover,
  body[data-theme="slate"] .nav-tabs.nav-justified > .active > a:hover,
  body[data-theme="slate"] .nav-tabs-justified > .active > a:focus,
  body[data-theme="slate"] .nav-tabs.nav-justified > .active > a:focus {
    border-bottom-color: #272B30;
  }
}
/* line 224, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
body[data-theme="slate"] .tab-content > .tab-pane {
  display: none;
}
/* line 227, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
body[data-theme="slate"] .tab-content > .active {
  display: block;
}
/* line 237, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
body[data-theme="slate"] .nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
/* line 11, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="slate"] .navbar {
  position: relative;
  min-height: 50px;
  margin-bottom: 20px;
  border: 1px solid transparent;
}
/* line 14, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
body[data-theme="slate"] .navbar:before, body[data-theme="slate"] .navbar:after {
  display: table;
  content: " ";
}
/* line 19, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
body[data-theme="slate"] .navbar:after {
  clear: both;
}
@media (min-width: 768px) {
  /* line 11, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  body[data-theme="slate"] .navbar {
    border-radius: 4px;
  }
}
/* line 14, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
body[data-theme="slate"] .navbar-header:before, body[data-theme="slate"] .navbar-header:after {
  display: table;
  content: " ";
}
/* line 19, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
body[data-theme="slate"] .navbar-header:after {
  clear: both;
}
@media (min-width: 768px) {
  /* line 31, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  body[data-theme="slate"] .navbar-header {
    float: left;
  }
}
/* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="slate"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
body[data-theme="slate"] .navbar-collapse:before, body[data-theme="slate"] .navbar-collapse:after {
  display: table;
  content: " ";
}
/* line 19, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
body[data-theme="slate"] .navbar-collapse:after {
  clear: both;
}
/* line 59, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="slate"] .navbar-collapse.in {
  overflow-y: auto;
}
@media (min-width: 768px) {
  /* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  body[data-theme="slate"] .navbar-collapse {
    width: auto;
    border-top: 0;
    box-shadow: none;
  }
  /* line 68, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  body[data-theme="slate"] .navbar-collapse.collapse {
    display: block !important;
    height: auto !important;
    padding-bottom: 0;
    overflow: visible !important;
  }
  /* line 75, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  body[data-theme="slate"] .navbar-collapse.in {
    overflow-y: visible;
  }
  /* line 81, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-fixed-top body[data-theme="slate"] .navbar-collapse, .navbar-static-top body[data-theme="slate"] .navbar-collapse, .navbar-fixed-bottom body[data-theme="slate"] .navbar-collapse {
    padding-right: 0;
    padding-left: 0;
  }
}
/* line 90, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="slate"] .navbar-fixed-top,
body[data-theme="slate"] .navbar-fixed-bottom {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1030;
}
/* line 92, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="slate"] .navbar-fixed-top .navbar-collapse,
body[data-theme="slate"] .navbar-fixed-bottom .navbar-collapse {
  max-height: 340px;
}
@media (max-device-width: 480px) and (orientation: landscape) {
  /* line 92, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  body[data-theme="slate"] .navbar-fixed-top .navbar-collapse,
  body[data-theme="slate"] .navbar-fixed-bottom .navbar-collapse {
    max-height: 200px;
  }
}
@media (min-width: 768px) {
  /* line 90, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  body[data-theme="slate"] .navbar-fixed-top,
  body[data-theme="slate"] .navbar-fixed-bottom {
    border-radius: 0;
  }
}
/* line 112, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="slate"] .navbar-fixed-top {
  top: 0;
  border-width: 0 0 1px;
}
/* line 116, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="slate"] .navbar-fixed-bottom {
  bottom: 0;
  margin-bottom: 0;
  border-width: 1px 0 0;
}
/* line 129, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="slate"] .container > .navbar-header,
body[data-theme="slate"] .container > .navbar-collapse,
body[data-theme="slate"] .container-fluid > .navbar-header,
body[data-theme="slate"] .container-fluid > .navbar-collapse {
  margin-right: -15px;
  margin-left: -15px;
}
@media (min-width: 768px) {
  /* line 129, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  body[data-theme="slate"] .container > .navbar-header,
  body[data-theme="slate"] .container > .navbar-collapse,
  body[data-theme="slate"] .container-fluid > .navbar-header,
  body[data-theme="slate"] .container-fluid > .navbar-collapse {
    margin-right: 0;
    margin-left: 0;
  }
}
/* line 149, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="slate"] .navbar-static-top {
  z-index: 1000;
  border-width: 0 0 1px;
}
@media (min-width: 768px) {
  /* line 149, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  body[data-theme="slate"] .navbar-static-top {
    border-radius: 0;
  }
}
/* line 161, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="slate"] .navbar-brand {
  float: left;
  height: 50px;
  padding: 15px 15px;
  font-size: 18px;
  line-height: 20px;
}
/* line 168, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="slate"] .navbar-brand:hover, body[data-theme="slate"] .navbar-brand:focus {
  text-decoration: none;
}
/* line 173, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="slate"] .navbar-brand > img {
  display: block;
}
@media (min-width: 768px) {
  /* line 178, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar > .container body[data-theme="slate"] .navbar-brand, .navbar > .container-fluid body[data-theme="slate"] .navbar-brand {
    margin-left: -15px;
  }
}
/* line 191, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="slate"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="slate"] .navbar-toggle:focus {
  outline: 0;
}
/* line 209, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="slate"] .navbar-toggle .icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px;
}
/* line 215, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="slate"] .navbar-toggle .icon-bar + .icon-bar {
  margin-top: 4px;
}
@media (min-width: 768px) {
  /* line 191, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  body[data-theme="slate"] .navbar-toggle {
    display: none;
  }
}
/* line 230, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="slate"] .navbar-nav {
  margin: 7.5px -15px;
}
/* line 233, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="slate"] .navbar-nav > li > a {
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 20px;
}
@media (max-width: 767px) {
  /* line 241, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  body[data-theme="slate"] .navbar-nav .open .dropdown-menu {
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    background-color: transparent;
    border: 0;
    box-shadow: none;
  }
  /* line 249, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  body[data-theme="slate"] .navbar-nav .open .dropdown-menu > li > a,
  body[data-theme="slate"] .navbar-nav .open .dropdown-menu .dropdown-header {
    padding: 5px 15px 5px 25px;
  }
  /* line 253, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  body[data-theme="slate"] .navbar-nav .open .dropdown-menu > li > a {
    line-height: 20px;
  }
  /* line 255, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  body[data-theme="slate"] .navbar-nav .open .dropdown-menu > li > a:hover, body[data-theme="slate"] .navbar-nav .open .dropdown-menu > li > a:focus {
    background-image: none;
  }
}
@media (min-width: 768px) {
  /* line 230, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  body[data-theme="slate"] .navbar-nav {
    float: left;
    margin: 0;
  }
  /* line 268, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  body[data-theme="slate"] .navbar-nav > li {
    float: left;
  }
  /* line 270, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  body[data-theme="slate"] .navbar-nav > li > a {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
/* line 284, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="slate"] .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: 6px;
  margin-bottom: 6px;
}
@media (min-width: 768px) {
  /* line 468, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  body[data-theme="slate"] .navbar-form .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  /* line 475, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  body[data-theme="slate"] .navbar-form .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  /* line 482, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  body[data-theme="slate"] .navbar-form .form-control-static {
    display: inline-block;
  }
  /* line 486, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  body[data-theme="slate"] .navbar-form .input-group {
    display: inline-table;
    vertical-align: middle;
  }
  /* line 490, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  body[data-theme="slate"] .navbar-form .input-group .input-group-addon,
  body[data-theme="slate"] .navbar-form .input-group .input-group-btn,
  body[data-theme="slate"] .navbar-form .input-group .form-control {
    width: auto;
  }
  /* line 498, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  body[data-theme="slate"] .navbar-form .input-group > .form-control {
    width: 100%;
  }
  /* line 502, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  body[data-theme="slate"] .navbar-form .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
  /* line 509, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  body[data-theme="slate"] .navbar-form .radio,
  body[data-theme="slate"] .navbar-form .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }
  /* line 516, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  body[data-theme="slate"] .navbar-form .radio label,
  body[data-theme="slate"] .navbar-form .checkbox label {
    padding-left: 0;
  }
  /* line 520, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  body[data-theme="slate"] .navbar-form .radio input[type="radio"],
  body[data-theme="slate"] .navbar-form .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0;
  }
  /* line 527, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  body[data-theme="slate"] .navbar-form .has-feedback .form-control-feedback {
    top: 0;
  }
}
@media (max-width: 767px) {
  /* line 296, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  body[data-theme="slate"] .navbar-form .form-group {
    margin-bottom: 5px;
  }
  /* line 300, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  body[data-theme="slate"] .navbar-form .form-group:last-child {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  /* line 284, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  body[data-theme="slate"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="slate"] .navbar-nav > li > .dropdown-menu {
  margin-top: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
/* line 330, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="slate"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="slate"] .navbar-btn {
  margin-top: 6px;
  margin-bottom: 6px;
}
/* line 344, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="slate"] .navbar-btn.btn-sm, body[data-theme="slate"] body:not([data-theme]) .btn-group-sm > .navbar-btn.btn, body[data-theme="slate"] body[data-theme="light"] .btn-group-sm > .navbar-btn.btn, body[data-theme="slate"] body[data-theme="united"] .btn-group-sm > .navbar-btn.btn, body[data-theme="slate"] .btn-group-sm > .navbar-btn.btn {
  margin-top: 10px;
  margin-bottom: 10px;
}
/* line 347, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="slate"] .navbar-btn.btn-xs, body[data-theme="slate"] body:not([data-theme]) .btn-group-xs > .navbar-btn.btn, body[data-theme="slate"] body[data-theme="light"] .btn-group-xs > .navbar-btn.btn, body[data-theme="slate"] body[data-theme="united"] .btn-group-xs > .navbar-btn.btn, body[data-theme="slate"] .btn-group-xs > .navbar-btn.btn {
  margin-top: 14px;
  margin-bottom: 14px;
}
/* line 357, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="slate"] .navbar-text {
  margin-top: 15px;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  /* line 357, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  body[data-theme="slate"] .navbar-text {
    float: left;
    margin-right: 15px;
    margin-left: 15px;
  }
}
@media (min-width: 768px) {
  /* line 377, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  body[data-theme="slate"] .navbar-left {
    float: left !important;
  }
  /* line 380, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  body[data-theme="slate"] .navbar-right {
    float: right !important;
    margin-right: -15px;
  }
  /* line 384, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  body[data-theme="slate"] .navbar-right ~ .navbar-right {
    margin-right: 0;
  }
}
/* line 395, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="slate"] .navbar-default {
  background-color: #3A3F44;
  border-color: #2b2e32;
}
/* line 399, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="slate"] .navbar-default .navbar-brand {
  color: #C8C8C8;
}
/* line 401, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="slate"] .navbar-default .navbar-brand:hover, body[data-theme="slate"] .navbar-default .navbar-brand:focus {
  color: #fff;
  background-color: none;
}
/* line 408, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="slate"] .navbar-default .navbar-text {
  color: #C8C8C8;
}
/* line 413, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="slate"] .navbar-default .navbar-nav > li > a {
  color: #C8C8C8;
}
/* line 416, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="slate"] .navbar-default .navbar-nav > li > a:hover, body[data-theme="slate"] .navbar-default .navbar-nav > li > a:focus {
  color: #fff;
  background-color: #272b2e;
}
/* line 423, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="slate"] .navbar-default .navbar-nav > .active > a, body[data-theme="slate"] .navbar-default .navbar-nav > .active > a:hover, body[data-theme="slate"] .navbar-default .navbar-nav > .active > a:focus {
  color: #fff;
  background-color: #272b2e;
}
/* line 431, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="slate"] .navbar-default .navbar-nav > .disabled > a, body[data-theme="slate"] .navbar-default .navbar-nav > .disabled > a:hover, body[data-theme="slate"] .navbar-default .navbar-nav > .disabled > a:focus {
  color: #ccc;
  background-color: transparent;
}
/* line 442, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="slate"] .navbar-default .navbar-nav > .open > a, body[data-theme="slate"] .navbar-default .navbar-nav > .open > a:hover, body[data-theme="slate"] .navbar-default .navbar-nav > .open > a:focus {
  color: #fff;
  background-color: #272b2e;
}
@media (max-width: 767px) {
  /* line 453, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  body[data-theme="slate"] .navbar-default .navbar-nav .open .dropdown-menu > li > a {
    color: #C8C8C8;
  }
  /* line 455, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  body[data-theme="slate"] .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, body[data-theme="slate"] .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #fff;
    background-color: #272b2e;
  }
  /* line 462, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  body[data-theme="slate"] .navbar-default .navbar-nav .open .dropdown-menu > .active > a, body[data-theme="slate"] .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, body[data-theme="slate"] .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #fff;
    background-color: #272b2e;
  }
  /* line 470, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  body[data-theme="slate"] .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a, body[data-theme="slate"] .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover, body[data-theme="slate"] .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #ccc;
    background-color: transparent;
  }
}
/* line 481, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="slate"] .navbar-default .navbar-toggle {
  border-color: #272b2e;
}
/* line 483, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="slate"] .navbar-default .navbar-toggle:hover, body[data-theme="slate"] .navbar-default .navbar-toggle:focus {
  background-color: #272b2e;
}
/* line 487, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="slate"] .navbar-default .navbar-toggle .icon-bar {
  background-color: #C8C8C8;
}
/* line 492, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="slate"] .navbar-default .navbar-collapse,
body[data-theme="slate"] .navbar-default .navbar-form {
  border-color: #2b2e32;
}
/* line 502, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="slate"] .navbar-default .navbar-link {
  color: #C8C8C8;
}
/* line 504, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="slate"] .navbar-default .navbar-link:hover {
  color: #fff;
}
/* line 509, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="slate"] .navbar-default .btn-link {
  color: #C8C8C8;
}
/* line 511, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="slate"] .navbar-default .btn-link:hover, body[data-theme="slate"] .navbar-default .btn-link:focus {
  color: #fff;
}
/* line 517, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="slate"] .navbar-default .btn-link[disabled]:hover, body[data-theme="slate"] .navbar-default .btn-link[disabled]:focus, fieldset[disabled] body[data-theme="slate"] .navbar-default .btn-link:hover, fieldset[disabled] body[data-theme="slate"] .navbar-default .btn-link:focus {
  color: #ccc;
}
/* line 527, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="slate"] .navbar-inverse {
  background-color: #3A3F44;
  border-color: #2b2e32;
}
/* line 531, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="slate"] .navbar-inverse .navbar-brand {
  color: #C8C8C8;
}
/* line 533, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="slate"] .navbar-inverse .navbar-brand:hover, body[data-theme="slate"] .navbar-inverse .navbar-brand:focus {
  color: #fff;
  background-color: none;
}
/* line 540, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="slate"] .navbar-inverse .navbar-text {
  color: #C8C8C8;
}
/* line 545, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="slate"] .navbar-inverse .navbar-nav > li > a {
  color: #C8C8C8;
}
/* line 548, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="slate"] .navbar-inverse .navbar-nav > li > a:hover, body[data-theme="slate"] .navbar-inverse .navbar-nav > li > a:focus {
  color: #fff;
  background-color: #272b2e;
}
/* line 555, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="slate"] .navbar-inverse .navbar-nav > .active > a, body[data-theme="slate"] .navbar-inverse .navbar-nav > .active > a:hover, body[data-theme="slate"] .navbar-inverse .navbar-nav > .active > a:focus {
  color: #fff;
  background-color: #272b2e;
}
/* line 563, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="slate"] .navbar-inverse .navbar-nav > .disabled > a, body[data-theme="slate"] .navbar-inverse .navbar-nav > .disabled > a:hover, body[data-theme="slate"] .navbar-inverse .navbar-nav > .disabled > a:focus {
  color: #ccc;
  background-color: transparent;
}
/* line 573, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="slate"] .navbar-inverse .navbar-nav > .open > a, body[data-theme="slate"] .navbar-inverse .navbar-nav > .open > a:hover, body[data-theme="slate"] .navbar-inverse .navbar-nav > .open > a:focus {
  color: #fff;
  background-color: #272b2e;
}
@media (max-width: 767px) {
  /* line 584, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  body[data-theme="slate"] .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
    border-color: #2b2e32;
  }
  /* line 587, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  body[data-theme="slate"] .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
    background-color: #2b2e32;
  }
  /* line 590, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  body[data-theme="slate"] .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
    color: #C8C8C8;
  }
  /* line 592, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  body[data-theme="slate"] .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover, body[data-theme="slate"] .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #fff;
    background-color: #272b2e;
  }
  /* line 599, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  body[data-theme="slate"] .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a, body[data-theme="slate"] .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover, body[data-theme="slate"] .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #fff;
    background-color: #272b2e;
  }
  /* line 607, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  body[data-theme="slate"] .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a, body[data-theme="slate"] .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover, body[data-theme="slate"] .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #ccc;
    background-color: transparent;
  }
}
/* line 619, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="slate"] .navbar-inverse .navbar-toggle {
  border-color: #272b2e;
}
/* line 621, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="slate"] .navbar-inverse .navbar-toggle:hover, body[data-theme="slate"] .navbar-inverse .navbar-toggle:focus {
  background-color: #272b2e;
}
/* line 625, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="slate"] .navbar-inverse .navbar-toggle .icon-bar {
  background-color: #C8C8C8;
}
/* line 630, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="slate"] .navbar-inverse .navbar-collapse,
body[data-theme="slate"] .navbar-inverse .navbar-form {
  border-color: #2a2d31;
}
/* line 635, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="slate"] .navbar-inverse .navbar-link {
  color: #C8C8C8;
}
/* line 637, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="slate"] .navbar-inverse .navbar-link:hover {
  color: #fff;
}
/* line 642, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="slate"] .navbar-inverse .btn-link {
  color: #C8C8C8;
}
/* line 644, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="slate"] .navbar-inverse .btn-link:hover, body[data-theme="slate"] .navbar-inverse .btn-link:focus {
  color: #fff;
}
/* line 650, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
body[data-theme="slate"] .navbar-inverse .btn-link[disabled]:hover, body[data-theme="slate"] .navbar-inverse .btn-link[disabled]:focus, fieldset[disabled] body[data-theme="slate"] .navbar-inverse .btn-link:hover, fieldset[disabled] body[data-theme="slate"] .navbar-inverse .btn-link:focus {
  color: #ccc;
}
/* line 6, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_breadcrumbs.scss */
body[data-theme="slate"] .breadcrumb {
  padding: 8px 15px;
  margin-bottom: 20px;
  list-style: none;
  background-color: transparent;
  border-radius: 4px;
}
/* line 13, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_breadcrumbs.scss */
body[data-theme="slate"] .breadcrumb > li {
  display: inline-block;
}
/* line 16, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_breadcrumbs.scss */
body[data-theme="slate"] .breadcrumb > li + li:before {
  padding: 0 5px;
  color: #ccc;
  content: "/ ";
}
/* line 25, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_breadcrumbs.scss */
body[data-theme="slate"] .breadcrumb > .active {
  color: #7A8288;
}
/* line 4, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pagination.scss */
body[data-theme="slate"] .pagination {
  display: inline-block;
  padding-left: 0;
  margin: 20px 0;
  border-radius: 4px;
}
/* line 10, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pagination.scss */
body[data-theme="slate"] .pagination > li {
  display: inline;
}
/* line 12, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pagination.scss */
body[data-theme="slate"] .pagination > li > a,
body[data-theme="slate"] .pagination > li > span {
  position: relative;
  float: left;
  padding: 8px 12px;
  margin-left: -1px;
  line-height: 1.428571429;
  color: #fff;
  text-decoration: none;
  background-color: #3A3F44;
  border: 1px solid rgba(0, 0, 0, 0.6);
}
/* line 24, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pagination.scss */
body[data-theme="slate"] .pagination > li > a:hover, body[data-theme="slate"] .pagination > li > a:focus,
body[data-theme="slate"] .pagination > li > span:hover,
body[data-theme="slate"] .pagination > li > span:focus {
  z-index: 2;
  color: #fff;
  background-color: transparent;
  border-color: rgba(0, 0, 0, 0.6);
}
/* line 33, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pagination.scss */
body[data-theme="slate"] .pagination > li:first-child > a,
body[data-theme="slate"] .pagination > li:first-child > span {
  margin-left: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
/* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pagination.scss */
body[data-theme="slate"] .pagination > li:last-child > a,
body[data-theme="slate"] .pagination > li:last-child > span {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
/* line 49, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pagination.scss */
body[data-theme="slate"] .pagination > .active > a, body[data-theme="slate"] .pagination > .active > a:hover, body[data-theme="slate"] .pagination > .active > a:focus,
body[data-theme="slate"] .pagination > .active > span,
body[data-theme="slate"] .pagination > .active > span:hover,
body[data-theme="slate"] .pagination > .active > span:focus {
  z-index: 3;
  color: #fff;
  cursor: default;
  background-color: #232628;
  border-color: rgba(0, 0, 0, 0.6);
}
/* line 61, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pagination.scss */
body[data-theme="slate"] .pagination > .disabled > span,
body[data-theme="slate"] .pagination > .disabled > span:hover,
body[data-theme="slate"] .pagination > .disabled > span:focus,
body[data-theme="slate"] .pagination > .disabled > a,
body[data-theme="slate"] .pagination > .disabled > a:hover,
body[data-theme="slate"] .pagination > .disabled > a:focus {
  color: #7A8288;
  cursor: not-allowed;
  background-color: #fff;
  border-color: rgba(0, 0, 0, 0.6);
}
/* line 5, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_pagination.scss */
body[data-theme="slate"] .pagination-lg > li > a,
body[data-theme="slate"] .pagination-lg > li > span {
  padding: 14px 16px;
  font-size: 18px;
  line-height: 1.3333333;
}
/* line 12, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_pagination.scss */
body[data-theme="slate"] .pagination-lg > li:first-child > a,
body[data-theme="slate"] .pagination-lg > li:first-child > span {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}
/* line 18, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_pagination.scss */
body[data-theme="slate"] .pagination-lg > li:last-child > a,
body[data-theme="slate"] .pagination-lg > li:last-child > span {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}
/* line 5, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_pagination.scss */
body[data-theme="slate"] .pagination-sm > li > a,
body[data-theme="slate"] .pagination-sm > li > span {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
}
/* line 12, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_pagination.scss */
body[data-theme="slate"] .pagination-sm > li:first-child > a,
body[data-theme="slate"] .pagination-sm > li:first-child > span {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
/* line 18, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_pagination.scss */
body[data-theme="slate"] .pagination-sm > li:last-child > a,
body[data-theme="slate"] .pagination-sm > li:last-child > span {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}
/* line 6, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pager.scss */
body[data-theme="slate"] .pager {
  padding-left: 0;
  margin: 20px 0;
  text-align: center;
  list-style: none;
}
/* line 14, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
body[data-theme="slate"] .pager:before, body[data-theme="slate"] .pager:after {
  display: table;
  content: " ";
}
/* line 19, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
body[data-theme="slate"] .pager:after {
  clear: both;
}
/* line 12, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pager.scss */
body[data-theme="slate"] .pager li {
  display: inline;
}
/* line 14, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pager.scss */
body[data-theme="slate"] .pager li > a,
body[data-theme="slate"] .pager li > span {
  display: inline-block;
  padding: 5px 14px;
  background-color: #3A3F44;
  border: 1px solid rgba(0, 0, 0, 0.6);
  border-radius: 15px;
}
/* line 23, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pager.scss */
body[data-theme="slate"] .pager li > a:hover,
body[data-theme="slate"] .pager li > a:focus {
  text-decoration: none;
  background-color: transparent;
}
/* line 31, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pager.scss */
body[data-theme="slate"] .pager .next > a,
body[data-theme="slate"] .pager .next > span {
  float: right;
}
/* line 38, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pager.scss */
body[data-theme="slate"] .pager .previous > a,
body[data-theme="slate"] .pager .previous > span {
  float: left;
}
/* line 45, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pager.scss */
body[data-theme="slate"] .pager .disabled > a,
body[data-theme="slate"] .pager .disabled > a:hover,
body[data-theme="slate"] .pager .disabled > a:focus,
body[data-theme="slate"] .pager .disabled > span {
  color: #7A8288;
  cursor: not-allowed;
  background-color: #3A3F44;
}
/* line 5, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_labels.scss */
body[data-theme="slate"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_labels.scss */
body[data-theme="slate"] .label:empty {
  display: none;
}
/* line 25, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_labels.scss */
.btn body[data-theme="slate"] .label {
  position: relative;
  top: -1px;
}
/* line 33, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_labels.scss */
body[data-theme="slate"] a.label:hover, body[data-theme="slate"] a.label:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}
/* line 44, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_labels.scss */
body[data-theme="slate"] .label-default {
  background-color: #3A3F44;
}
/* line 7, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_labels.scss */
body[data-theme="slate"] .label-default[href]:hover, body[data-theme="slate"] .label-default[href]:focus {
  background-color: #232628;
}
/* line 48, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_labels.scss */
body[data-theme="slate"] .label-primary {
  background-color: #7A8288;
}
/* line 7, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_labels.scss */
body[data-theme="slate"] .label-primary[href]:hover, body[data-theme="slate"] .label-primary[href]:focus {
  background-color: #62686d;
}
/* line 52, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_labels.scss */
body[data-theme="slate"] .label-success {
  background-color: #62c462;
}
/* line 7, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_labels.scss */
body[data-theme="slate"] .label-success[href]:hover, body[data-theme="slate"] .label-success[href]:focus {
  background-color: #42b142;
}
/* line 56, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_labels.scss */
body[data-theme="slate"] .label-info {
  background-color: #5bc0de;
}
/* line 7, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_labels.scss */
body[data-theme="slate"] .label-info[href]:hover, body[data-theme="slate"] .label-info[href]:focus {
  background-color: #31b0d5;
}
/* line 60, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_labels.scss */
body[data-theme="slate"] .label-warning {
  background-color: #f89406;
}
/* line 7, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_labels.scss */
body[data-theme="slate"] .label-warning[href]:hover, body[data-theme="slate"] .label-warning[href]:focus {
  background-color: #c67605;
}
/* line 64, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_labels.scss */
body[data-theme="slate"] .label-danger {
  background-color: #ee5f5b;
}
/* line 7, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_labels.scss */
body[data-theme="slate"] .label-danger[href]:hover, body[data-theme="slate"] .label-danger[href]:focus {
  background-color: #e9322d;
}
/* line 7, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_badges.scss */
body[data-theme="slate"] .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: #7A8288;
  border-radius: 10px;
}
/* line 22, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_badges.scss */
body[data-theme="slate"] .badge:empty {
  display: none;
}
/* line 27, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_badges.scss */
.btn body[data-theme="slate"] .badge {
  position: relative;
  top: -1px;
}
/* line 32, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_badges.scss */
.btn-xs body[data-theme="slate"] .badge, body:not([data-theme]) .btn-group-xs > .btn body[data-theme="slate"] .badge, body[data-theme="light"] .btn-group-xs > .btn body[data-theme="slate"] .badge, body[data-theme="united"] .btn-group-xs > .btn body[data-theme="slate"] .badge, body[data-theme="slate"] .btn-group-xs > .btn body[data-theme="slate"] .badge, .btn-group-xs > .btn body[data-theme="slate"] .badge {
  top: 0;
  padding: 1px 5px;
}
/* line 41, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_badges.scss */
.list-group-item.active > body[data-theme="slate"] .badge, .nav-pills > .active > a > body[data-theme="slate"] .badge {
  color: #fff;
  background-color: #7A8288;
}
/* line 47, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_badges.scss */
.list-group-item > body[data-theme="slate"] .badge {
  float: right;
}
/* line 51, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_badges.scss */
.list-group-item > body[data-theme="slate"] .badge + body[data-theme="slate"] .badge {
  margin-right: 5px;
}
/* line 55, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_badges.scss */
.nav-pills > li > a > body[data-theme="slate"] .badge {
  margin-left: 3px;
}
/* line 62, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_badges.scss */
body[data-theme="slate"] a.badge:hover, body[data-theme="slate"] a.badge:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}
/* line 6, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_jumbotron.scss */
body[data-theme="slate"] .jumbotron {
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 30px;
  color: inherit;
  background-color: #1c1e22;
}
/* line 13, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_jumbotron.scss */
body[data-theme="slate"] .jumbotron h1,
body[data-theme="slate"] .jumbotron .h1 {
  color: inherit;
}
/* line 18, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_jumbotron.scss */
body[data-theme="slate"] .jumbotron p {
  margin-bottom: 15px;
  font-size: 21px;
  font-weight: 200;
}
/* line 24, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_jumbotron.scss */
body[data-theme="slate"] .jumbotron > hr {
  border-top-color: #050506;
}
/* line 28, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_jumbotron.scss */
.container body[data-theme="slate"] .jumbotron, .container-fluid body[data-theme="slate"] .jumbotron {
  padding-right: 15px;
  padding-left: 15px;
  border-radius: 6px;
}
/* line 35, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_jumbotron.scss */
body[data-theme="slate"] .jumbotron .container {
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  /* line 6, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_jumbotron.scss */
  body[data-theme="slate"] .jumbotron {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  /* line 43, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_jumbotron.scss */
  .container body[data-theme="slate"] .jumbotron, .container-fluid body[data-theme="slate"] .jumbotron {
    padding-right: 60px;
    padding-left: 60px;
  }
  /* line 49, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_jumbotron.scss */
  body[data-theme="slate"] .jumbotron h1,
  body[data-theme="slate"] .jumbotron .h1 {
    font-size: 63px;
  }
}
/* line 7, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_thumbnails.scss */
body[data-theme="slate"] .thumbnail {
  display: block;
  padding: 4px;
  margin-bottom: 20px;
  line-height: 1.428571429;
  background-color: #1c1e22;
  border: 1px solid #0c0d0e;
  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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_thumbnails.scss */
body[data-theme="slate"] .thumbnail > img,
body[data-theme="slate"] .thumbnail a > img {
  display: block;
  max-width: 100%;
  height: auto;
  margin-right: auto;
  margin-left: auto;
}
/* line 27, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_thumbnails.scss */
body[data-theme="slate"] .thumbnail .caption {
  padding: 9px;
  color: #C8C8C8;
}
/* line 34, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_thumbnails.scss */
body[data-theme="slate"] a.thumbnail:hover,
body[data-theme="slate"] a.thumbnail:focus,
body[data-theme="slate"] a.thumbnail.active {
  border-color: #fff;
}
/* line 9, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_alerts.scss */
body[data-theme="slate"] .alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
}
/* line 16, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_alerts.scss */
body[data-theme="slate"] .alert h4 {
  margin-top: 0;
  color: inherit;
}
/* line 22, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_alerts.scss */
body[data-theme="slate"] .alert .alert-link {
  font-weight: bold;
}
/* line 27, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_alerts.scss */
body[data-theme="slate"] .alert > p,
body[data-theme="slate"] .alert > ul {
  margin-bottom: 0;
}
/* line 32, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_alerts.scss */
body[data-theme="slate"] .alert > p + p {
  margin-top: 5px;
}
/* line 42, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_alerts.scss */
body[data-theme="slate"] .alert-dismissable,
body[data-theme="slate"] .alert-dismissible {
  padding-right: 35px;
}
/* line 47, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_alerts.scss */
body[data-theme="slate"] .alert-dismissable .close,
body[data-theme="slate"] .alert-dismissible .close {
  position: relative;
  top: -2px;
  right: -21px;
  color: inherit;
}
/* line 59, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_alerts.scss */
body[data-theme="slate"] .alert-success {
  color: #fff;
  background-color: #62c462;
  border-color: #62bd4f;
}
/* line 8, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_alerts.scss */
body[data-theme="slate"] .alert-success hr {
  border-top-color: #55b142;
}
/* line 12, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_alerts.scss */
body[data-theme="slate"] .alert-success .alert-link {
  color: #e6e6e6;
}
/* line 63, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_alerts.scss */
body[data-theme="slate"] .alert-info {
  color: #fff;
  background-color: #5bc0de;
  border-color: #3dced8;
}
/* line 8, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_alerts.scss */
body[data-theme="slate"] .alert-info hr {
  border-top-color: #2ac7d2;
}
/* line 12, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_alerts.scss */
body[data-theme="slate"] .alert-info .alert-link {
  color: #e6e6e6;
}
/* line 67, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_alerts.scss */
body[data-theme="slate"] .alert-warning {
  color: #fff;
  background-color: #f89406;
  border-color: #e96506;
}
/* line 8, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_alerts.scss */
body[data-theme="slate"] .alert-warning hr {
  border-top-color: #d05a05;
}
/* line 12, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_alerts.scss */
body[data-theme="slate"] .alert-warning .alert-link {
  color: #e6e6e6;
}
/* line 71, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_alerts.scss */
body[data-theme="slate"] .alert-danger {
  color: #fff;
  background-color: #ee5f5b;
  border-color: #ed4d63;
}
/* line 8, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_alerts.scss */
body[data-theme="slate"] .alert-danger hr {
  border-top-color: #ea364f;
}
/* line 12, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_alerts.scss */
body[data-theme="slate"] .alert-danger .alert-link {
  color: #e6e6e6;
}
@-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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_progress-bars.scss */
body[data-theme="slate"] .progress {
  height: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  background-color: #1c1e22;
  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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_progress-bars.scss */
body[data-theme="slate"] .progress-bar {
  float: left;
  width: 0%;
  height: 100%;
  font-size: 12px;
  line-height: 20px;
  color: #fff;
  text-align: center;
  background-color: #7A8288;
  -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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_progress-bars.scss */
body[data-theme="slate"] .progress-striped .progress-bar,
body[data-theme="slate"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_progress-bars.scss */
body[data-theme="slate"] .progress.active .progress-bar,
body[data-theme="slate"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_progress-bars.scss */
body[data-theme="slate"] .progress-bar-success {
  background-color: #62c462;
}
/* line 7, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_progress-bar.scss */
.progress-striped body[data-theme="slate"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_progress-bars.scss */
body[data-theme="slate"] .progress-bar-info {
  background-color: #5bc0de;
}
/* line 7, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_progress-bar.scss */
.progress-striped body[data-theme="slate"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_progress-bars.scss */
body[data-theme="slate"] .progress-bar-warning {
  background-color: #f89406;
}
/* line 7, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_progress-bar.scss */
.progress-striped body[data-theme="slate"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_progress-bars.scss */
body[data-theme="slate"] .progress-bar-danger {
  background-color: #ee5f5b;
}
/* line 7, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_progress-bar.scss */
.progress-striped body[data-theme="slate"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_media.scss */
body[data-theme="slate"] .media {
  margin-top: 15px;
}
/* line 5, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_media.scss */
body[data-theme="slate"] .media:first-child {
  margin-top: 0;
}
/* line 10, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_media.scss */
body[data-theme="slate"] .media,
body[data-theme="slate"] .media-body {
  overflow: hidden;
  zoom: 1;
}
/* line 16, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_media.scss */
body[data-theme="slate"] .media-body {
  width: 10000px;
}
/* line 20, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_media.scss */
body[data-theme="slate"] .media-object {
  display: block;
}
/* line 24, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_media.scss */
body[data-theme="slate"] .media-object.img-thumbnail {
  max-width: none;
}
/* line 29, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_media.scss */
body[data-theme="slate"] .media-right,
body[data-theme="slate"] .media > .pull-right {
  padding-left: 10px;
}
/* line 34, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_media.scss */
body[data-theme="slate"] .media-left,
body[data-theme="slate"] .media > .pull-left {
  padding-right: 10px;
}
/* line 39, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_media.scss */
body[data-theme="slate"] .media-left,
body[data-theme="slate"] .media-right,
body[data-theme="slate"] .media-body {
  display: table-cell;
  vertical-align: top;
}
/* line 46, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_media.scss */
body[data-theme="slate"] .media-middle {
  vertical-align: middle;
}
/* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_media.scss */
body[data-theme="slate"] .media-bottom {
  vertical-align: bottom;
}
/* line 55, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_media.scss */
body[data-theme="slate"] .media-heading {
  margin-top: 0;
  margin-bottom: 5px;
}
/* line 63, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_media.scss */
body[data-theme="slate"] .media-list {
  padding-left: 0;
  list-style: none;
}
/* line 10, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
body[data-theme="slate"] .list-group {
  padding-left: 0;
  margin-bottom: 20px;
}
/* line 21, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
body[data-theme="slate"] .list-group-item {
  position: relative;
  display: block;
  padding: 10px 15px;
  margin-bottom: -1px;
  background-color: #32383e;
  border: 1px solid rgba(0, 0, 0, 0.6);
}
/* line 31, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
body[data-theme="slate"] .list-group-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
/* line 34, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
body[data-theme="slate"] .list-group-item:last-child {
  margin-bottom: 0;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
/* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
body[data-theme="slate"] .list-group-item.disabled, body[data-theme="slate"] .list-group-item.disabled:hover, body[data-theme="slate"] .list-group-item.disabled:focus {
  color: #7A8288;
  cursor: not-allowed;
  background-color: #999;
}
/* line 48, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
body[data-theme="slate"] .list-group-item.disabled .list-group-item-heading, body[data-theme="slate"] .list-group-item.disabled:hover .list-group-item-heading, body[data-theme="slate"] .list-group-item.disabled:focus .list-group-item-heading {
  color: inherit;
}
/* line 51, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
body[data-theme="slate"] .list-group-item.disabled .list-group-item-text, body[data-theme="slate"] .list-group-item.disabled:hover .list-group-item-text, body[data-theme="slate"] .list-group-item.disabled:focus .list-group-item-text {
  color: #7A8288;
}
/* line 57, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
body[data-theme="slate"] .list-group-item.active, body[data-theme="slate"] .list-group-item.active:hover, body[data-theme="slate"] .list-group-item.active:focus {
  z-index: 2;
  color: #fff;
  background-color: #3e444c;
  border-color: rgba(0, 0, 0, 0.6);
}
/* line 66, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
body[data-theme="slate"] .list-group-item.active .list-group-item-heading,
body[data-theme="slate"] .list-group-item.active .list-group-item-heading > small,
body[data-theme="slate"] .list-group-item.active .list-group-item-heading > .small, body[data-theme="slate"] .list-group-item.active:hover .list-group-item-heading,
body[data-theme="slate"] .list-group-item.active:hover .list-group-item-heading > small,
body[data-theme="slate"] .list-group-item.active:hover .list-group-item-heading > .small, body[data-theme="slate"] .list-group-item.active:focus .list-group-item-heading,
body[data-theme="slate"] .list-group-item.active:focus .list-group-item-heading > small,
body[data-theme="slate"] .list-group-item.active:focus .list-group-item-heading > .small {
  color: inherit;
}
/* line 71, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
body[data-theme="slate"] .list-group-item.active .list-group-item-text, body[data-theme="slate"] .list-group-item.active:hover .list-group-item-text, body[data-theme="slate"] .list-group-item.active:focus .list-group-item-text {
  color: #a2aab4;
}
/* line 83, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
body[data-theme="slate"] a.list-group-item,
body[data-theme="slate"] button.list-group-item {
  color: #C8C8C8;
}
/* line 87, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
body[data-theme="slate"] a.list-group-item .list-group-item-heading,
body[data-theme="slate"] button.list-group-item .list-group-item-heading {
  color: #fff;
}
/* line 92, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
body[data-theme="slate"] a.list-group-item:hover, body[data-theme="slate"] a.list-group-item:focus,
body[data-theme="slate"] button.list-group-item:hover,
body[data-theme="slate"] button.list-group-item:focus {
  color: #C8C8C8;
  text-decoration: none;
  background-color: #3e444c;
}
/* line 100, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
body[data-theme="slate"] button.list-group-item {
  width: 100%;
  text-align: left;
}
/* line 4, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
body[data-theme="slate"] .list-group-item-success {
  color: #fff;
  background-color: #62c462;
}
/* line 11, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
body[data-theme="slate"] a.list-group-item-success,
body[data-theme="slate"] button.list-group-item-success {
  color: #fff;
}
/* line 15, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
body[data-theme="slate"] a.list-group-item-success .list-group-item-heading,
body[data-theme="slate"] button.list-group-item-success .list-group-item-heading {
  color: inherit;
}
/* line 19, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
body[data-theme="slate"] a.list-group-item-success:hover, body[data-theme="slate"] a.list-group-item-success:focus,
body[data-theme="slate"] button.list-group-item-success:hover,
body[data-theme="slate"] button.list-group-item-success:focus {
  color: #fff;
  background-color: #4fbd4f;
}
/* line 24, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
body[data-theme="slate"] a.list-group-item-success.active, body[data-theme="slate"] a.list-group-item-success.active:hover, body[data-theme="slate"] a.list-group-item-success.active:focus,
body[data-theme="slate"] button.list-group-item-success.active,
body[data-theme="slate"] button.list-group-item-success.active:hover,
body[data-theme="slate"] button.list-group-item-success.active:focus {
  color: #fff;
  background-color: #fff;
  border-color: #fff;
}
/* line 4, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
body[data-theme="slate"] .list-group-item-info {
  color: #fff;
  background-color: #5bc0de;
}
/* line 11, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
body[data-theme="slate"] a.list-group-item-info,
body[data-theme="slate"] button.list-group-item-info {
  color: #fff;
}
/* line 15, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
body[data-theme="slate"] a.list-group-item-info .list-group-item-heading,
body[data-theme="slate"] button.list-group-item-info .list-group-item-heading {
  color: inherit;
}
/* line 19, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
body[data-theme="slate"] a.list-group-item-info:hover, body[data-theme="slate"] a.list-group-item-info:focus,
body[data-theme="slate"] button.list-group-item-info:hover,
body[data-theme="slate"] button.list-group-item-info:focus {
  color: #fff;
  background-color: #46b8da;
}
/* line 24, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
body[data-theme="slate"] a.list-group-item-info.active, body[data-theme="slate"] a.list-group-item-info.active:hover, body[data-theme="slate"] a.list-group-item-info.active:focus,
body[data-theme="slate"] button.list-group-item-info.active,
body[data-theme="slate"] button.list-group-item-info.active:hover,
body[data-theme="slate"] button.list-group-item-info.active:focus {
  color: #fff;
  background-color: #fff;
  border-color: #fff;
}
/* line 4, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
body[data-theme="slate"] .list-group-item-warning {
  color: #fff;
  background-color: #f89406;
}
/* line 11, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
body[data-theme="slate"] a.list-group-item-warning,
body[data-theme="slate"] button.list-group-item-warning {
  color: #fff;
}
/* line 15, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
body[data-theme="slate"] a.list-group-item-warning .list-group-item-heading,
body[data-theme="slate"] button.list-group-item-warning .list-group-item-heading {
  color: inherit;
}
/* line 19, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
body[data-theme="slate"] a.list-group-item-warning:hover, body[data-theme="slate"] a.list-group-item-warning:focus,
body[data-theme="slate"] button.list-group-item-warning:hover,
body[data-theme="slate"] button.list-group-item-warning:focus {
  color: #fff;
  background-color: #df8505;
}
/* line 24, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
body[data-theme="slate"] a.list-group-item-warning.active, body[data-theme="slate"] a.list-group-item-warning.active:hover, body[data-theme="slate"] a.list-group-item-warning.active:focus,
body[data-theme="slate"] button.list-group-item-warning.active,
body[data-theme="slate"] button.list-group-item-warning.active:hover,
body[data-theme="slate"] button.list-group-item-warning.active:focus {
  color: #fff;
  background-color: #fff;
  border-color: #fff;
}
/* line 4, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
body[data-theme="slate"] .list-group-item-danger {
  color: #fff;
  background-color: #ee5f5b;
}
/* line 11, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
body[data-theme="slate"] a.list-group-item-danger,
body[data-theme="slate"] button.list-group-item-danger {
  color: #fff;
}
/* line 15, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
body[data-theme="slate"] a.list-group-item-danger .list-group-item-heading,
body[data-theme="slate"] button.list-group-item-danger .list-group-item-heading {
  color: inherit;
}
/* line 19, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
body[data-theme="slate"] a.list-group-item-danger:hover, body[data-theme="slate"] a.list-group-item-danger:focus,
body[data-theme="slate"] button.list-group-item-danger:hover,
body[data-theme="slate"] button.list-group-item-danger:focus {
  color: #fff;
  background-color: #ec4844;
}
/* line 24, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
body[data-theme="slate"] a.list-group-item-danger.active, body[data-theme="slate"] a.list-group-item-danger.active:hover, body[data-theme="slate"] a.list-group-item-danger.active:focus,
body[data-theme="slate"] button.list-group-item-danger.active,
body[data-theme="slate"] button.list-group-item-danger.active:hover,
body[data-theme="slate"] button.list-group-item-danger.active:focus {
  color: #fff;
  background-color: #fff;
  border-color: #fff;
}
/* line 121, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
body[data-theme="slate"] .list-group-item-heading {
  margin-top: 0;
  margin-bottom: 5px;
}
/* line 125, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
body[data-theme="slate"] .list-group-item-text {
  margin-bottom: 0;
  line-height: 1.3;
}
/* line 7, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body[data-theme="slate"] .panel {
  margin-bottom: 20px;
  background-color: #2e3338;
  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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body[data-theme="slate"] .panel-body {
  padding: 15px;
}
/* line 14, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
body[data-theme="slate"] .panel-body:before, body[data-theme="slate"] .panel-body:after {
  display: table;
  content: " ";
}
/* line 19, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
body[data-theme="slate"] .panel-body:after {
  clear: both;
}
/* line 22, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body[data-theme="slate"] .panel-heading {
  padding: 10px 15px;
  border-bottom: 1px solid transparent;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
/* line 27, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body[data-theme="slate"] .panel-heading > .dropdown .dropdown-toggle {
  color: inherit;
}
/* line 33, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body[data-theme="slate"] .panel-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  color: inherit;
}
/* line 39, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body[data-theme="slate"] .panel-title > a,
body[data-theme="slate"] .panel-title > small,
body[data-theme="slate"] .panel-title > .small,
body[data-theme="slate"] .panel-title > small > a,
body[data-theme="slate"] .panel-title > .small > a {
  color: inherit;
}
/* line 49, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body[data-theme="slate"] .panel-footer {
  padding: 10px 15px;
  background-color: #3e444c;
  border-top: 1px solid rgba(0, 0, 0, 0.6);
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}
/* line 63, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body[data-theme="slate"] .panel > .list-group,
body[data-theme="slate"] .panel > .panel-collapse > .list-group {
  margin-bottom: 0;
}
/* line 67, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body[data-theme="slate"] .panel > .list-group .list-group-item,
body[data-theme="slate"] .panel > .panel-collapse > .list-group .list-group-item {
  border-width: 1px 0;
  border-radius: 0;
}
/* line 74, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body[data-theme="slate"] .panel > .list-group:first-child .list-group-item:first-child,
body[data-theme="slate"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body[data-theme="slate"] .panel > .list-group:last-child .list-group-item:last-child,
body[data-theme="slate"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body[data-theme="slate"] .panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
/* line 96, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body[data-theme="slate"] .panel-heading + .list-group .list-group-item:first-child {
  border-top-width: 0;
}
/* line 100, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body[data-theme="slate"] .list-group + .panel-footer {
  border-top-width: 0;
}
/* line 110, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body[data-theme="slate"] .panel > .table,
body[data-theme="slate"] .panel > .table-responsive > .table,
body[data-theme="slate"] .panel > .panel-collapse > .table {
  margin-bottom: 0;
}
/* line 115, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body[data-theme="slate"] .panel > .table caption,
body[data-theme="slate"] .panel > .table-responsive > .table caption,
body[data-theme="slate"] .panel > .panel-collapse > .table caption {
  padding-right: 15px;
  padding-left: 15px;
}
/* line 121, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body[data-theme="slate"] .panel > .table:first-child,
body[data-theme="slate"] .panel > .table-responsive:first-child > .table:first-child {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
/* line 127, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body[data-theme="slate"] .panel > .table:first-child > thead:first-child > tr:first-child,
body[data-theme="slate"] .panel > .table:first-child > tbody:first-child > tr:first-child,
body[data-theme="slate"] .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
body[data-theme="slate"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body[data-theme="slate"] .panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
body[data-theme="slate"] .panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
body[data-theme="slate"] .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
body[data-theme="slate"] .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
body[data-theme="slate"] .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
body[data-theme="slate"] .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
body[data-theme="slate"] .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
body[data-theme="slate"] .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
  border-top-left-radius: 3px;
}
/* line 135, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body[data-theme="slate"] .panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
body[data-theme="slate"] .panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
body[data-theme="slate"] .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
body[data-theme="slate"] .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
body[data-theme="slate"] .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
body[data-theme="slate"] .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
body[data-theme="slate"] .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
body[data-theme="slate"] .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
  border-top-right-radius: 3px;
}
/* line 143, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body[data-theme="slate"] .panel > .table:last-child,
body[data-theme="slate"] .panel > .table-responsive:last-child > .table:last-child {
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}
/* line 149, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body[data-theme="slate"] .panel > .table:last-child > tbody:last-child > tr:last-child,
body[data-theme="slate"] .panel > .table:last-child > tfoot:last-child > tr:last-child,
body[data-theme="slate"] .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
body[data-theme="slate"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body[data-theme="slate"] .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
body[data-theme="slate"] .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
body[data-theme="slate"] .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
body[data-theme="slate"] .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
body[data-theme="slate"] .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
body[data-theme="slate"] .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
body[data-theme="slate"] .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
body[data-theme="slate"] .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
  border-bottom-left-radius: 3px;
}
/* line 157, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body[data-theme="slate"] .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
body[data-theme="slate"] .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
body[data-theme="slate"] .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
body[data-theme="slate"] .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
body[data-theme="slate"] .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
body[data-theme="slate"] .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
body[data-theme="slate"] .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
body[data-theme="slate"] .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
  border-bottom-right-radius: 3px;
}
/* line 164, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body[data-theme="slate"] .panel > .panel-body + .table,
body[data-theme="slate"] .panel > .panel-body + .table-responsive,
body[data-theme="slate"] .panel > .table + .panel-body,
body[data-theme="slate"] .panel > .table-responsive + .panel-body {
  border-top: 1px solid #1c1e22;
}
/* line 170, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body[data-theme="slate"] .panel > .table > tbody:first-child > tr:first-child th,
body[data-theme="slate"] .panel > .table > tbody:first-child > tr:first-child td {
  border-top: 0;
}
/* line 174, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body[data-theme="slate"] .panel > .table-bordered,
body[data-theme="slate"] .panel > .table-responsive > .table-bordered {
  border: 0;
}
/* line 181, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body[data-theme="slate"] .panel > .table-bordered > thead > tr > th:first-child,
body[data-theme="slate"] .panel > .table-bordered > thead > tr > td:first-child,
body[data-theme="slate"] .panel > .table-bordered > tbody > tr > th:first-child,
body[data-theme="slate"] .panel > .table-bordered > tbody > tr > td:first-child,
body[data-theme="slate"] .panel > .table-bordered > tfoot > tr > th:first-child,
body[data-theme="slate"] .panel > .table-bordered > tfoot > tr > td:first-child,
body[data-theme="slate"] .panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
body[data-theme="slate"] .panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
body[data-theme="slate"] .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
body[data-theme="slate"] .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
body[data-theme="slate"] .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
body[data-theme="slate"] .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
  border-left: 0;
}
/* line 185, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body[data-theme="slate"] .panel > .table-bordered > thead > tr > th:last-child,
body[data-theme="slate"] .panel > .table-bordered > thead > tr > td:last-child,
body[data-theme="slate"] .panel > .table-bordered > tbody > tr > th:last-child,
body[data-theme="slate"] .panel > .table-bordered > tbody > tr > td:last-child,
body[data-theme="slate"] .panel > .table-bordered > tfoot > tr > th:last-child,
body[data-theme="slate"] .panel > .table-bordered > tfoot > tr > td:last-child,
body[data-theme="slate"] .panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
body[data-theme="slate"] .panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
body[data-theme="slate"] .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
body[data-theme="slate"] .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
body[data-theme="slate"] .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
body[data-theme="slate"] .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
  border-right: 0;
}
/* line 194, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body[data-theme="slate"] .panel > .table-bordered > thead > tr:first-child > td,
body[data-theme="slate"] .panel > .table-bordered > thead > tr:first-child > th,
body[data-theme="slate"] .panel > .table-bordered > tbody > tr:first-child > td,
body[data-theme="slate"] .panel > .table-bordered > tbody > tr:first-child > th,
body[data-theme="slate"] .panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
body[data-theme="slate"] .panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
body[data-theme="slate"] .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
body[data-theme="slate"] .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
  border-bottom: 0;
}
/* line 203, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body[data-theme="slate"] .panel > .table-bordered > tbody > tr:last-child > td,
body[data-theme="slate"] .panel > .table-bordered > tbody > tr:last-child > th,
body[data-theme="slate"] .panel > .table-bordered > tfoot > tr:last-child > td,
body[data-theme="slate"] .panel > .table-bordered > tfoot > tr:last-child > th,
body[data-theme="slate"] .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
body[data-theme="slate"] .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
body[data-theme="slate"] .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
body[data-theme="slate"] .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
  border-bottom: 0;
}
/* line 210, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body[data-theme="slate"] .panel > .table-responsive {
  margin-bottom: 0;
  border: 0;
}
/* line 222, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body[data-theme="slate"] .panel-group {
  margin-bottom: 20px;
}
/* line 226, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body[data-theme="slate"] .panel-group .panel {
  margin-bottom: 0;
  border-radius: 4px;
}
/* line 230, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body[data-theme="slate"] .panel-group .panel + .panel {
  margin-top: 5px;
}
/* line 235, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body[data-theme="slate"] .panel-group .panel-heading {
  border-bottom: 0;
}
/* line 238, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body[data-theme="slate"] .panel-group .panel-heading + .panel-collapse > .panel-body,
body[data-theme="slate"] .panel-group .panel-heading + .panel-collapse > .list-group {
  border-top: 1px solid rgba(0, 0, 0, 0.6);
}
/* line 244, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body[data-theme="slate"] .panel-group .panel-footer {
  border-top: 0;
}
/* line 246, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body[data-theme="slate"] .panel-group .panel-footer + .panel-collapse .panel-body {
  border-bottom: 1px solid rgba(0, 0, 0, 0.6);
}
/* line 254, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body[data-theme="slate"] .panel-default {
  border-color: rgba(0, 0, 0, 0.6);
}
/* line 6, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
body[data-theme="slate"] .panel-default > .panel-heading {
  color: #C8C8C8;
  background-color: #3e444c;
  border-color: rgba(0, 0, 0, 0.6);
}
/* line 11, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
body[data-theme="slate"] .panel-default > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: rgba(0, 0, 0, 0.6);
}
/* line 14, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
body[data-theme="slate"] .panel-default > .panel-heading .badge {
  color: #3e444c;
  background-color: #C8C8C8;
}
/* line 20, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
body[data-theme="slate"] .panel-default > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: rgba(0, 0, 0, 0.6);
}
/* line 257, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body[data-theme="slate"] .panel-primary {
  border-color: rgba(0, 0, 0, 0.6);
}
/* line 6, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
body[data-theme="slate"] .panel-primary > .panel-heading {
  color: #fff;
  background-color: #7A8288;
  border-color: rgba(0, 0, 0, 0.6);
}
/* line 11, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
body[data-theme="slate"] .panel-primary > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: rgba(0, 0, 0, 0.6);
}
/* line 14, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
body[data-theme="slate"] .panel-primary > .panel-heading .badge {
  color: #7A8288;
  background-color: #fff;
}
/* line 20, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
body[data-theme="slate"] .panel-primary > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: rgba(0, 0, 0, 0.6);
}
/* line 260, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body[data-theme="slate"] .panel-success {
  border-color: rgba(0, 0, 0, 0.6);
}
/* line 6, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
body[data-theme="slate"] .panel-success > .panel-heading {
  color: #fff;
  background-color: #62c462;
  border-color: rgba(0, 0, 0, 0.6);
}
/* line 11, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
body[data-theme="slate"] .panel-success > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: rgba(0, 0, 0, 0.6);
}
/* line 14, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
body[data-theme="slate"] .panel-success > .panel-heading .badge {
  color: #62c462;
  background-color: #fff;
}
/* line 20, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
body[data-theme="slate"] .panel-success > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: rgba(0, 0, 0, 0.6);
}
/* line 263, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body[data-theme="slate"] .panel-info {
  border-color: rgba(0, 0, 0, 0.6);
}
/* line 6, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
body[data-theme="slate"] .panel-info > .panel-heading {
  color: #fff;
  background-color: #5bc0de;
  border-color: rgba(0, 0, 0, 0.6);
}
/* line 11, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
body[data-theme="slate"] .panel-info > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: rgba(0, 0, 0, 0.6);
}
/* line 14, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
body[data-theme="slate"] .panel-info > .panel-heading .badge {
  color: #5bc0de;
  background-color: #fff;
}
/* line 20, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
body[data-theme="slate"] .panel-info > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: rgba(0, 0, 0, 0.6);
}
/* line 266, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body[data-theme="slate"] .panel-warning {
  border-color: rgba(0, 0, 0, 0.6);
}
/* line 6, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
body[data-theme="slate"] .panel-warning > .panel-heading {
  color: #fff;
  background-color: #f89406;
  border-color: rgba(0, 0, 0, 0.6);
}
/* line 11, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
body[data-theme="slate"] .panel-warning > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: rgba(0, 0, 0, 0.6);
}
/* line 14, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
body[data-theme="slate"] .panel-warning > .panel-heading .badge {
  color: #f89406;
  background-color: #fff;
}
/* line 20, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
body[data-theme="slate"] .panel-warning > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: rgba(0, 0, 0, 0.6);
}
/* line 269, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
body[data-theme="slate"] .panel-danger {
  border-color: rgba(0, 0, 0, 0.6);
}
/* line 6, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
body[data-theme="slate"] .panel-danger > .panel-heading {
  color: #fff;
  background-color: #ee5f5b;
  border-color: rgba(0, 0, 0, 0.6);
}
/* line 11, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
body[data-theme="slate"] .panel-danger > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: rgba(0, 0, 0, 0.6);
}
/* line 14, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
body[data-theme="slate"] .panel-danger > .panel-heading .badge {
  color: #ee5f5b;
  background-color: #fff;
}
/* line 20, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
body[data-theme="slate"] .panel-danger > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: rgba(0, 0, 0, 0.6);
}
/* line 5, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-embed.scss */
body[data-theme="slate"] .embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
}
/* line 12, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-embed.scss */
body[data-theme="slate"] .embed-responsive .embed-responsive-item,
body[data-theme="slate"] .embed-responsive iframe,
body[data-theme="slate"] .embed-responsive embed,
body[data-theme="slate"] .embed-responsive object,
body[data-theme="slate"] .embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
/* line 28, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-embed.scss */
body[data-theme="slate"] .embed-responsive-16by9 {
  padding-bottom: 56.25%;
}
/* line 33, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-embed.scss */
body[data-theme="slate"] .embed-responsive-4by3 {
  padding-bottom: 75%;
}
/* line 7, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_wells.scss */
body[data-theme="slate"] .well {
  min-height: 20px;
  padding: 19px;
  margin-bottom: 20px;
  background-color: #1c1e22;
  border: 1px solid #0c0d0e;
  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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_wells.scss */
body[data-theme="slate"] .well blockquote {
  border-color: #ddd;
  border-color: rgba(0, 0, 0, 0.15);
}
/* line 22, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_wells.scss */
body[data-theme="slate"] .well-lg {
  padding: 24px;
  border-radius: 6px;
}
/* line 26, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_wells.scss */
body[data-theme="slate"] .well-sm {
  padding: 9px;
  border-radius: 3px;
}
/* line 6, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_close.scss */
body[data-theme="slate"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_close.scss */
body[data-theme="slate"] .close:hover, body[data-theme="slate"] .close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
  filter: alpha(opacity=50);
  opacity: 0.5;
}
/* line 30, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_close.scss */
body[data-theme="slate"] button.close {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  appearance: none;
}
/* line 11, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
body[data-theme="slate"] .modal-open {
  overflow: hidden;
}
/* line 16, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
body[data-theme="slate"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
body[data-theme="slate"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
body[data-theme="slate"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
body[data-theme="slate"] .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
/* line 44, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
body[data-theme="slate"] .modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}
/* line 51, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
body[data-theme="slate"] .modal-content {
  position: relative;
  background-color: #2e3338;
  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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
body[data-theme="slate"] .modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
}
/* line 73, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
body[data-theme="slate"] .modal-backdrop.fade {
  filter: alpha(opacity=0);
  opacity: 0;
}
/* line 74, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
body[data-theme="slate"] .modal-backdrop.in {
  filter: alpha(opacity=50);
  opacity: 0.5;
}
/* line 79, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
body[data-theme="slate"] .modal-header {
  padding: 15px;
  border-bottom: 1px solid #1c1e22;
}
/* line 14, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
body[data-theme="slate"] .modal-header:before, body[data-theme="slate"] .modal-header:after {
  display: table;
  content: " ";
}
/* line 19, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
body[data-theme="slate"] .modal-header:after {
  clear: both;
}
/* line 85, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
body[data-theme="slate"] .modal-header .close {
  margin-top: -2px;
}
/* line 90, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
body[data-theme="slate"] .modal-title {
  margin: 0;
  line-height: 1.428571429;
}
/* line 97, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
body[data-theme="slate"] .modal-body {
  position: relative;
  padding: 20px;
}
/* line 103, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
body[data-theme="slate"] .modal-footer {
  padding: 20px;
  text-align: right;
  border-top: 1px solid #1c1e22;
}
/* line 14, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
body[data-theme="slate"] .modal-footer:before, body[data-theme="slate"] .modal-footer:after {
  display: table;
  content: " ";
}
/* line 19, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
body[data-theme="slate"] .modal-footer:after {
  clear: both;
}
/* line 110, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
body[data-theme="slate"] .modal-footer .btn + .btn {
  margin-bottom: 0;
  margin-left: 5px;
}
/* line 115, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
body[data-theme="slate"] .modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}
/* line 119, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
body[data-theme="slate"] .modal-footer .btn-block + .btn-block {
  margin-left: 0;
}
/* line 125, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
body[data-theme="slate"] .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 768px) {
  /* line 136, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
  body[data-theme="slate"] .modal-dialog {
    width: 600px;
    margin: 30px auto;
  }
  /* line 140, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
  body[data-theme="slate"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
  body[data-theme="slate"] .modal-sm {
    width: 300px;
  }
}
@media (min-width: 992px) {
  /* line 149, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
  body[data-theme="slate"] .modal-lg {
    width: 900px;
  }
}
/* line 7, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
body[data-theme="slate"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
body[data-theme="slate"] .tooltip.in {
  filter: alpha(opacity=90);
  opacity: 0.9;
}
/* line 19, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
body[data-theme="slate"] .tooltip.top {
  padding: 5px 0;
  margin-top: -3px;
}
/* line 23, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
body[data-theme="slate"] .tooltip.right {
  padding: 0 5px;
  margin-left: 3px;
}
/* line 27, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
body[data-theme="slate"] .tooltip.bottom {
  padding: 5px 0;
  margin-top: 3px;
}
/* line 31, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
body[data-theme="slate"] .tooltip.left {
  padding: 0 5px;
  margin-left: -3px;
}
/* line 37, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
body[data-theme="slate"] .tooltip.top .tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
/* line 44, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
body[data-theme="slate"] .tooltip.top-left .tooltip-arrow {
  right: 5px;
  bottom: 0;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
/* line 51, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
body[data-theme="slate"] .tooltip.top-right .tooltip-arrow {
  bottom: 0;
  left: 5px;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
/* line 58, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
body[data-theme="slate"] .tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: #000;
}
/* line 65, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
body[data-theme="slate"] .tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: #000;
}
/* line 72, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
body[data-theme="slate"] .tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
/* line 79, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
body[data-theme="slate"] .tooltip.bottom-left .tooltip-arrow {
  top: 0;
  right: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
/* line 86, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
body[data-theme="slate"] .tooltip.bottom-right .tooltip-arrow {
  top: 0;
  left: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
/* line 96, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
body[data-theme="slate"] .tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 4px;
}
/* line 106, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
body[data-theme="slate"] .tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
/* line 6, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
body[data-theme="slate"] .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: #2e3338;
  background-clip: padding-box;
  border: 1px solid #999;
  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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
body[data-theme="slate"] .popover.top {
  margin-top: -10px;
}
/* line 27, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
body[data-theme="slate"] .popover.right {
  margin-left: 10px;
}
/* line 28, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
body[data-theme="slate"] .popover.bottom {
  margin-top: 10px;
}
/* line 29, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
body[data-theme="slate"] .popover.left {
  margin-left: -10px;
}
/* line 33, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
body[data-theme="slate"] .popover > .arrow {
  border-width: 11px;
}
/* line 36, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
body[data-theme="slate"] .popover > .arrow, body[data-theme="slate"] .popover > .arrow:after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
/* line 46, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
body[data-theme="slate"] .popover > .arrow:after {
  content: "";
  border-width: 10px;
}
/* line 52, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
body[data-theme="slate"] .popover.top > .arrow {
  bottom: -11px;
  left: 50%;
  margin-left: -11px;
  border-top-color: #666666;
  border-top-color: fadein(rgba(0, 0, 0, 0.2), 5%);
  border-bottom-width: 0;
}
/* line 59, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
body[data-theme="slate"] .popover.top > .arrow:after {
  bottom: 1px;
  margin-left: -10px;
  content: " ";
  border-top-color: #2e3338;
  border-bottom-width: 0;
}
/* line 67, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
body[data-theme="slate"] .popover.right > .arrow {
  top: 50%;
  left: -11px;
  margin-top: -11px;
  border-right-color: #666666;
  border-right-color: fadein(rgba(0, 0, 0, 0.2), 5%);
  border-left-width: 0;
}
/* line 74, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
body[data-theme="slate"] .popover.right > .arrow:after {
  bottom: -10px;
  left: 1px;
  content: " ";
  border-right-color: #2e3338;
  border-left-width: 0;
}
/* line 82, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
body[data-theme="slate"] .popover.bottom > .arrow {
  top: -11px;
  left: 50%;
  margin-left: -11px;
  border-top-width: 0;
  border-bottom-color: #666666;
  border-bottom-color: fadein(rgba(0, 0, 0, 0.2), 5%);
}
/* line 89, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
body[data-theme="slate"] .popover.bottom > .arrow:after {
  top: 1px;
  margin-left: -10px;
  content: " ";
  border-top-width: 0;
  border-bottom-color: #2e3338;
}
/* line 98, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
body[data-theme="slate"] .popover.left > .arrow {
  top: 50%;
  right: -11px;
  margin-top: -11px;
  border-right-width: 0;
  border-left-color: #666666;
  border-left-color: fadein(rgba(0, 0, 0, 0.2), 5%);
}
/* line 105, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
body[data-theme="slate"] .popover.left > .arrow:after {
  right: 1px;
  bottom: -10px;
  content: " ";
  border-right-width: 0;
  border-left-color: #2e3338;
}
/* line 115, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
body[data-theme="slate"] .popover-title {
  padding: 8px 14px;
  margin: 0;
  font-size: 14px;
  background-color: #2e3338;
  border-bottom: 1px solid #22262a;
  border-radius: 5px 5px 0 0;
}
/* line 124, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
body[data-theme="slate"] .popover-content {
  padding: 9px 14px;
}
/* line 7, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
body[data-theme="slate"] .carousel {
  position: relative;
}
/* line 11, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
body[data-theme="slate"] .carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}
/* line 16, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
body[data-theme="slate"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
body[data-theme="slate"] .carousel-inner > .item > img,
body[data-theme="slate"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
  body[data-theme="slate"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
  body[data-theme="slate"] .carousel-inner > .item.next, body[data-theme="slate"] .carousel-inner > .item.active.right {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    left: 0;
  }
  /* line 39, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
  body[data-theme="slate"] .carousel-inner > .item.prev, body[data-theme="slate"] .carousel-inner > .item.active.left {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    left: 0;
  }
  /* line 44, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
  body[data-theme="slate"] .carousel-inner > .item.next.left, body[data-theme="slate"] .carousel-inner > .item.prev.right, body[data-theme="slate"] .carousel-inner > .item.active {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    left: 0;
  }
}
/* line 53, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
body[data-theme="slate"] .carousel-inner > .active,
body[data-theme="slate"] .carousel-inner > .next,
body[data-theme="slate"] .carousel-inner > .prev {
  display: block;
}
/* line 59, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
body[data-theme="slate"] .carousel-inner > .active {
  left: 0;
}
/* line 63, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
body[data-theme="slate"] .carousel-inner > .next,
body[data-theme="slate"] .carousel-inner > .prev {
  position: absolute;
  top: 0;
  width: 100%;
}
/* line 70, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
body[data-theme="slate"] .carousel-inner > .next {
  left: 100%;
}
/* line 73, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
body[data-theme="slate"] .carousel-inner > .prev {
  left: -100%;
}
/* line 76, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
body[data-theme="slate"] .carousel-inner > .next.left,
body[data-theme="slate"] .carousel-inner > .prev.right {
  left: 0;
}
/* line 81, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
body[data-theme="slate"] .carousel-inner > .active.left {
  left: -100%;
}
/* line 84, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
body[data-theme="slate"] .carousel-inner > .active.right {
  left: 100%;
}
/* line 93, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
body[data-theme="slate"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
body[data-theme="slate"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
body[data-theme="slate"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
body[data-theme="slate"] .carousel-control:hover, body[data-theme="slate"] .carousel-control:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  filter: alpha(opacity=90);
  opacity: 0.9;
}
/* line 128, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
body[data-theme="slate"] .carousel-control .icon-prev,
body[data-theme="slate"] .carousel-control .icon-next,
body[data-theme="slate"] .carousel-control .glyphicon-chevron-left,
body[data-theme="slate"] .carousel-control .glyphicon-chevron-right,
body[data-theme="slate"] .carousel-control .fa.fa-chevron-right {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: inline-block;
  margin-top: -10px;
}
/* line 138, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
body[data-theme="slate"] .carousel-control .icon-prev,
body[data-theme="slate"] .carousel-control .glyphicon-chevron-left {
  left: 50%;
  margin-left: -10px;
}
/* line 143, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
body[data-theme="slate"] .carousel-control .icon-next,
body[data-theme="slate"] .carousel-control .glyphicon-chevron-right,
body[data-theme="slate"] .carousel-control .fa.fa-chevron-right {
  right: 50%;
  margin-right: -10px;
}
/* line 148, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
body[data-theme="slate"] .carousel-control .icon-prev,
body[data-theme="slate"] .carousel-control .icon-next {
  width: 20px;
  height: 20px;
  font-family: serif;
  line-height: 1;
}
/* line 157, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
body[data-theme="slate"] .carousel-control .icon-prev:before {
  content: "\2039";
}
/* line 162, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
body[data-theme="slate"] .carousel-control .icon-next:before {
  content: "\203a";
}
/* line 173, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
body[data-theme="slate"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
body[data-theme="slate"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
body[data-theme="slate"] .carousel-indicators .active {
  width: 12px;
  height: 12px;
  margin: 0;
  background-color: #fff;
}
/* line 218, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
body[data-theme="slate"] .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, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
body[data-theme="slate"] .carousel-caption .btn {
  text-shadow: none;
}
@media screen and (min-width: 768px) {
  /* line 241, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
  body[data-theme="slate"] .carousel-control .glyphicon-chevron-left,
  body[data-theme="slate"] .carousel-control .glyphicon-chevron-right,
  body[data-theme="slate"] .carousel-control .fa.fa-chevron-right,
  body[data-theme="slate"] .carousel-control .icon-prev,
  body[data-theme="slate"] .carousel-control .icon-next {
    width: 30px;
    height: 30px;
    margin-top: -10px;
    font-size: 30px;
  }
  /* line 250, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
  body[data-theme="slate"] .carousel-control .glyphicon-chevron-left,
  body[data-theme="slate"] .carousel-control .icon-prev {
    margin-left: -10px;
  }
  /* line 254, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
  body[data-theme="slate"] .carousel-control .glyphicon-chevron-right, body[data-theme="slate"] .carousel-control .fa.fa-chevron-right,
  body[data-theme="slate"] .carousel-control .icon-next {
    margin-right: -10px;
  }
  /* line 261, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
  body[data-theme="slate"] .carousel-caption {
    right: 20%;
    left: 20%;
    padding-bottom: 30px;
  }
  /* line 268, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
  body[data-theme="slate"] .carousel-indicators {
    bottom: 20px;
  }
}
/* line 14, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
body[data-theme="slate"] .clearfix:before, body[data-theme="slate"] .clearfix:after {
  display: table;
  content: " ";
}
/* line 19, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
body[data-theme="slate"] .clearfix:after {
  clear: both;
}
/* line 12, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_utilities.scss */
body[data-theme="slate"] .center-block {
  display: block;
  margin-right: auto;
  margin-left: auto;
}
/* line 15, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_utilities.scss */
body[data-theme="slate"] .pull-right {
  float: right !important;
}
/* line 18, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_utilities.scss */
body[data-theme="slate"] .pull-left {
  float: left !important;
}
/* line 27, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_utilities.scss */
body[data-theme="slate"] .hide {
  display: none !important;
}
/* line 30, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_utilities.scss */
body[data-theme="slate"] .show {
  display: block !important;
}
/* line 33, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_utilities.scss */
body[data-theme="slate"] .invisible {
  visibility: hidden;
}
/* line 36, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_utilities.scss */
body[data-theme="slate"] .text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
/* line 45, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_utilities.scss */
body[data-theme="slate"] .hidden {
  display: none !important;
}
/* line 53, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_utilities.scss */
body[data-theme="slate"] .affix {
  position: fixed;
}
@-ms-viewport {
  width: device-width;
}
/* line 14, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
body[data-theme="slate"] .visible-xs {
  display: none !important;
}
/* line 14, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
body[data-theme="slate"] .visible-sm {
  display: none !important;
}
/* line 14, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
body[data-theme="slate"] .visible-md {
  display: none !important;
}
/* line 14, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
body[data-theme="slate"] .visible-lg {
  display: none !important;
}
/* line 36, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
body[data-theme="slate"] .visible-xs-block,
body[data-theme="slate"] .visible-xs-inline,
body[data-theme="slate"] .visible-xs-inline-block,
body[data-theme="slate"] .visible-sm-block,
body[data-theme="slate"] .visible-sm-inline,
body[data-theme="slate"] .visible-sm-inline-block,
body[data-theme="slate"] .visible-md-block,
body[data-theme="slate"] .visible-md-inline,
body[data-theme="slate"] .visible-md-inline-block,
body[data-theme="slate"] .visible-lg-block,
body[data-theme="slate"] .visible-lg-inline,
body[data-theme="slate"] .visible-lg-inline-block {
  display: none !important;
}
@media (max-width: 767px) {
  /* line 3, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  body[data-theme="slate"] .visible-xs {
    display: block !important;
  }
  /* line 6, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  body[data-theme="slate"] table.visible-xs {
    display: table !important;
  }
  /* line 7, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  body[data-theme="slate"] tr.visible-xs {
    display: table-row !important;
  }
  /* line 8, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  body[data-theme="slate"] th.visible-xs,
  body[data-theme="slate"] td.visible-xs {
    display: table-cell !important;
  }
}
@media (max-width: 767px) {
  /* line 54, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  body[data-theme="slate"] .visible-xs-block {
    display: block !important;
  }
}
@media (max-width: 767px) {
  /* line 59, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  body[data-theme="slate"] .visible-xs-inline {
    display: inline !important;
  }
}
@media (max-width: 767px) {
  /* line 64, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  body[data-theme="slate"] .visible-xs-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  /* line 3, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  body[data-theme="slate"] .visible-sm {
    display: block !important;
  }
  /* line 6, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  body[data-theme="slate"] table.visible-sm {
    display: table !important;
  }
  /* line 7, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  body[data-theme="slate"] tr.visible-sm {
    display: table-row !important;
  }
  /* line 8, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  body[data-theme="slate"] th.visible-sm,
  body[data-theme="slate"] td.visible-sm {
    display: table-cell !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  /* line 73, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  body[data-theme="slate"] .visible-sm-block {
    display: block !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  /* line 78, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  body[data-theme="slate"] .visible-sm-inline {
    display: inline !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  /* line 83, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  body[data-theme="slate"] .visible-sm-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  /* line 3, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  body[data-theme="slate"] .visible-md {
    display: block !important;
  }
  /* line 6, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  body[data-theme="slate"] table.visible-md {
    display: table !important;
  }
  /* line 7, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  body[data-theme="slate"] tr.visible-md {
    display: table-row !important;
  }
  /* line 8, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  body[data-theme="slate"] th.visible-md,
  body[data-theme="slate"] td.visible-md {
    display: table-cell !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  /* line 92, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  body[data-theme="slate"] .visible-md-block {
    display: block !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  /* line 97, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  body[data-theme="slate"] .visible-md-inline {
    display: inline !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  /* line 102, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  body[data-theme="slate"] .visible-md-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 1200px) {
  /* line 3, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  body[data-theme="slate"] .visible-lg {
    display: block !important;
  }
  /* line 6, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  body[data-theme="slate"] table.visible-lg {
    display: table !important;
  }
  /* line 7, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  body[data-theme="slate"] tr.visible-lg {
    display: table-row !important;
  }
  /* line 8, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  body[data-theme="slate"] th.visible-lg,
  body[data-theme="slate"] td.visible-lg {
    display: table-cell !important;
  }
}
@media (min-width: 1200px) {
  /* line 111, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  body[data-theme="slate"] .visible-lg-block {
    display: block !important;
  }
}
@media (min-width: 1200px) {
  /* line 116, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  body[data-theme="slate"] .visible-lg-inline {
    display: inline !important;
  }
}
@media (min-width: 1200px) {
  /* line 121, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  body[data-theme="slate"] .visible-lg-inline-block {
    display: inline-block !important;
  }
}
@media (max-width: 767px) {
  /* line 14, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  body[data-theme="slate"] .hidden-xs {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  /* line 14, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  body[data-theme="slate"] .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  /* line 14, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  body[data-theme="slate"] .hidden-md {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  /* line 14, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  body[data-theme="slate"] .hidden-lg {
    display: none !important;
  }
}
/* line 14, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
body[data-theme="slate"] .visible-print {
  display: none !important;
}
@media print {
  /* line 3, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  body[data-theme="slate"] .visible-print {
    display: block !important;
  }
  /* line 6, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  body[data-theme="slate"] table.visible-print {
    display: table !important;
  }
  /* line 7, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  body[data-theme="slate"] tr.visible-print {
    display: table-row !important;
  }
  /* line 8, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  body[data-theme="slate"] th.visible-print,
  body[data-theme="slate"] td.visible-print {
    display: table-cell !important;
  }
}
/* line 155, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
body[data-theme="slate"] .visible-print-block {
  display: none !important;
}
@media print {
  /* line 155, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  body[data-theme="slate"] .visible-print-block {
    display: block !important;
  }
}
/* line 162, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
body[data-theme="slate"] .visible-print-inline {
  display: none !important;
}
@media print {
  /* line 162, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  body[data-theme="slate"] .visible-print-inline {
    display: inline !important;
  }
}
/* line 169, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
body[data-theme="slate"] .visible-print-inline-block {
  display: none !important;
}
@media print {
  /* line 169, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  body[data-theme="slate"] .visible-print-inline-block {
    display: inline-block !important;
  }
}
@media print {
  /* line 14, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  body[data-theme="slate"] .hidden-print {
    display: none !important;
  }
}
/* line 12, /opt/marast/vendor/assets/stylesheets/selectivity/base.sass */
body[data-theme="slate"] .selectivity-clearfix {
  clear: both;
}
/* line 15, /opt/marast/vendor/assets/stylesheets/selectivity/base.sass */
body[data-theme="slate"] .selectivity-input {
  display: inline-block;
  width: 250px;
}
/* line 19, /opt/marast/vendor/assets/stylesheets/selectivity/base.sass */
body[data-theme="slate"] .selectivity-input select {
  display: none;
}
/* line 22, /opt/marast/vendor/assets/stylesheets/selectivity/base.sass */
body[data-theme="slate"] .selectivity-placeholder {
  color: #999;
}
/* line 5, /opt/marast/vendor/assets/stylesheets/selectivity/backdrop.sass */
body[data-theme="slate"] .selectivity-backdrop {
  background: transparent;
  position: fixed;
  z-index: 1045;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
/* line 5, /opt/marast/vendor/assets/stylesheets/selectivity/dropdown.sass */
body[data-theme="slate"] .selectivity-dropdown {
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 1px 5px 1px rgba(0, 0, 0, 0.15), 0 10px 16px 0 rgba(0, 0, 0, 0.2);
  position: absolute;
  z-index: 1046;
}
/* line 12, /opt/marast/vendor/assets/stylesheets/selectivity/dropdown.sass */
body[data-theme="slate"] .selectivity-search-input-container {
  border-bottom: 1px solid #eee;
}
/* line 15, /opt/marast/vendor/assets/stylesheets/selectivity/dropdown.sass */
body[data-theme="slate"] .selectivity-search-input {
  background: transparent;
  border: 0;
  outline: 0;
  width: 100%;
}
/* line 21, /opt/marast/vendor/assets/stylesheets/selectivity/dropdown.sass */
body[data-theme="slate"] .selectivity-results-container {
  max-height: 28em;
  overflow: auto;
  position: relative;
}
/* line 26, /opt/marast/vendor/assets/stylesheets/selectivity/dropdown.sass */
body[data-theme="slate"] .selectivity-load-more,
body[data-theme="slate"] .selectivity-result-item {
  cursor: pointer;
  padding: 7px;
}
/* line 32, /opt/marast/vendor/assets/stylesheets/selectivity/dropdown.sass */
body[data-theme="slate"] .selectivity-result-children {
  padding-left: 17px;
}
/* line 35, /opt/marast/vendor/assets/stylesheets/selectivity/dropdown.sass */
body[data-theme="slate"] .selectivity-load-more.highlight,
body[data-theme="slate"] .selectivity-result-item.highlight {
  background: #4484c7;
  color: #fff;
}
/* line 40, /opt/marast/vendor/assets/stylesheets/selectivity/dropdown.sass */
body[data-theme="slate"] .selectivity-result-item:first-child {
  border-radius: 4px 4px 0 0;
}
/* line 43, /opt/marast/vendor/assets/stylesheets/selectivity/dropdown.sass */
body[data-theme="slate"] .selectivity-dropdown.has-search-input .selectivity-result-item:first-child {
  border-radius: 0;
}
/* line 46, /opt/marast/vendor/assets/stylesheets/selectivity/dropdown.sass */
body[data-theme="slate"] .selectivity-result-label {
  font-weight: bold;
}
/* line 49, /opt/marast/vendor/assets/stylesheets/selectivity/dropdown.sass */
body[data-theme="slate"] .selectivity-load-more,
body[data-theme="slate"] .selectivity-result-item:last-child,
body[data-theme="slate"] .selectivity-result-children:last-child .selectivity-result-item:last-child {
  border-radius: 0 0 4px 4px;
}
/* line 54, /opt/marast/vendor/assets/stylesheets/selectivity/dropdown.sass */
body[data-theme="slate"] .selectivity-result-children .selectivity-result-item:last-child {
  border-radius: 0;
}
/* line 57, /opt/marast/vendor/assets/stylesheets/selectivity/dropdown.sass */
body[data-theme="slate"] .selectivity-error,
body[data-theme="slate"] .selectivity-loading,
body[data-theme="slate"] .selectivity-search-input-container,
body[data-theme="slate"] .selectivity-result-label {
  padding: 7px;
}
/* line 5, /opt/marast/vendor/assets/stylesheets/selectivity/multiple.sass */
body[data-theme="slate"] .selectivity-multiple-input-container {
  background: #eee;
  border-radius: 2px;
  cursor: text;
  max-height: 10em;
  min-height: calc(2em + 4px);
  overflow: auto;
  padding: 5px;
}
/* line 14, /opt/marast/vendor/assets/stylesheets/selectivity/multiple.sass */
body[data-theme="slate"] .selectivity-multiple-input-container .selectivity-placeholder {
  height: calc(2em + 4px);
  line-height: calc(2em + 4px);
}
/* line 18, /opt/marast/vendor/assets/stylesheets/selectivity/multiple.sass */
body[data-theme="slate"] .selectivity-multiple-input,
body[data-theme="slate"] input[type='text'].selectivity-multiple-input {
  background-color: transparent;
  border: none;
  float: left;
  height: calc(2em + 4px);
  max-width: 100%;
  outline: 0;
  padding: 0;
}
/* line 28, /opt/marast/vendor/assets/stylesheets/selectivity/multiple.sass */
body[data-theme="slate"] .selectivity-multiple-input:focus,
body[data-theme="slate"] input[type='text'].selectivity-multiple-input:focus {
  background-color: transparent;
  box-shadow: none;
  outline: none;
}
/* line 33, /opt/marast/vendor/assets/stylesheets/selectivity/multiple.sass */
body[data-theme="slate"] .selectivity-multiple-input::-ms-clear {
  display: none;
}
/* line 36, /opt/marast/vendor/assets/stylesheets/selectivity/multiple.sass */
body[data-theme="slate"] .selectivity-multiple-input.selectivity-width-detector {
  position: absolute;
  top: -10000px;
  left: 0;
  white-space: pre;
}
/* line 42, /opt/marast/vendor/assets/stylesheets/selectivity/multiple.sass */
body[data-theme="slate"] .selectivity-multiple-selected-item {
  background: #4484c7;
  border-radius: 3px;
  color: #fff;
  cursor: default;
  float: left;
  line-height: 2em;
  margin: 2px;
  padding-right: 5px;
  position: relative;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  white-space: nowrap;
}
/* line 58, /opt/marast/vendor/assets/stylesheets/selectivity/multiple.sass */
body[data-theme="slate"] .selectivity-multiple-selected-item.highlighted {
  background-color: #ccc;
}
/* line 61, /opt/marast/vendor/assets/stylesheets/selectivity/multiple.sass */
body[data-theme="slate"] .selectivity-multiple-selected-item-remove {
  color: #fff;
  cursor: pointer;
  padding: 5px;
}
/* line 5, /opt/marast/vendor/assets/stylesheets/selectivity/single.sass */
body[data-theme="slate"] .selectivity-single-select {
  background: #eee;
  border-radius: 2px;
  cursor: pointer;
  min-height: 2em;
  padding: 5px;
  position: relative;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
/* line 16, /opt/marast/vendor/assets/stylesheets/selectivity/single.sass */
body[data-theme="slate"] .selectivity-single-select-input {
  opacity: 0;
}
/* line 19, /opt/marast/vendor/assets/stylesheets/selectivity/single.sass */
body[data-theme="slate"] .selectivity-single-result-container {
  position: absolute;
  top: 0.8em;
  right: 15px;
  left: 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* line 28, /opt/marast/vendor/assets/stylesheets/selectivity/single.sass */
body[data-theme="slate"] .selectivity-single-selected-item {
  color: #000;
}
/* line 31, /opt/marast/vendor/assets/stylesheets/selectivity/single.sass */
body[data-theme="slate"] .selectivity-single-selected-item-remove {
  color: #000;
  float: right;
  padding: 0 5px;
}
/* line 36, /opt/marast/vendor/assets/stylesheets/selectivity/single.sass */
body[data-theme="slate"] .selectivity-caret {
  position: absolute;
  right: 5px;
  top: 0.7em;
}
@media only screen and (max-device-width: 480px) {
  /* line 42, /opt/marast/vendor/assets/stylesheets/selectivity/single.sass */
  body[data-theme="slate"] .selectivity-single-select {
    background: #eee;
    border-radius: 2px;
  }
  /* line 46, /opt/marast/vendor/assets/stylesheets/selectivity/single.sass */
  body[data-theme="slate"] .selectivity-single-result-container {
    right: 5px;
  }
  /* line 49, /opt/marast/vendor/assets/stylesheets/selectivity/single.sass */
  body[data-theme="slate"] .selectivity-caret {
    display: none;
  }
}
/* line 5, /opt/marast/vendor/assets/stylesheets/selectivity/submenu.sass */
body[data-theme="slate"] .selectivity-submenu-icon {
  position: absolute;
  right: 4px;
}
/* line 8, /opt/marast/vendor/assets/stylesheets/selectivity_bootstrap.sass */
body[data-theme="slate"] .form-control.selectivity-input {
  width: 100%;
  height: auto;
  display: block;
  padding: inherit;
  border-color: #3A3F44;
  border-radius: 4px;
  color: #C8C8C8;
  background: #272B30;
}
/* line 18, /opt/marast/vendor/assets/stylesheets/selectivity_bootstrap.sass */
body[data-theme="slate"] .form-control.selectivity-input .selectivity-multiple-input-container,
body[data-theme="slate"] .form-control.selectivity-input .selectivity-single-select {
  color: #C8C8C8;
  background: #272B30;
}
/* line 23, /opt/marast/vendor/assets/stylesheets/selectivity_bootstrap.sass */
body[data-theme="slate"] .form-control.selectivity-input .selectivity-multiple-input-container {
  padding: 0;
}
/* line 26, /opt/marast/vendor/assets/stylesheets/selectivity_bootstrap.sass */
body[data-theme="slate"] .form-control.selectivity-input .selectivity-single-select {
  padding: 2px;
}
/* line 29, /opt/marast/vendor/assets/stylesheets/selectivity_bootstrap.sass */
body[data-theme="slate"] .form-control.selectivity-input .selectivity-single-result-container,
body[data-theme="slate"] .form-control.selectivity-input .selectivity-caret {
  top: 0.5em;
}
/* line 35, /opt/marast/vendor/assets/stylesheets/selectivity_bootstrap.sass */
body[data-theme="slate"] .form-horizontal .form-control.selectivity-input {
  padding-left: 0;
  padding-right: 0;
}
/* line 39, /opt/marast/vendor/assets/stylesheets/selectivity_bootstrap.sass */
body[data-theme="slate"] .form-horizontal .form-control.selectivity-input .selectivity-single-result-container {
  padding-left: 6px;
}
/* line 43, /opt/marast/vendor/assets/stylesheets/selectivity_bootstrap.sass */
body[data-theme="slate"] .selectivity-dropdown {
  margin-top: 2px;
}
/* line 17, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootswatch-rails-3.3.5/vendor/assets/stylesheets/bootswatch/slate/_bootswatch.scss */
body[data-theme="slate"] .navbar {
  background-image: -webkit-linear-gradient(#484e55, #3A3F44 60%, #313539);
  background-image: -o-linear-gradient(#484e55, #3A3F44 60%, #313539);
  background-image: linear-gradient(#484e55, #3A3F44 60%, #313539);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF484E55', endColorstr='#FF313539', GradientType=0);
  background-repeat: no-repeat;
  filter: none;
  border: 1px solid rgba(0, 0, 0, 0.6);
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
}
/* line 23, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootswatch-rails-3.3.5/vendor/assets/stylesheets/bootswatch/slate/_bootswatch.scss */
body[data-theme="slate"] .navbar .nav .open > a {
  border-color: transparent;
}
/* line 28, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootswatch-rails-3.3.5/vendor/assets/stylesheets/bootswatch/slate/_bootswatch.scss */
body[data-theme="slate"] .navbar-inverse {
  background-image: -webkit-linear-gradient(#484e55, #3A3F44 60%, #313539);
  background-image: -o-linear-gradient(#484e55, #3A3F44 60%, #313539);
  background-image: linear-gradient(#484e55, #3A3F44 60%, #313539);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF484E55', endColorstr='#FF313539', GradientType=0);
  background-repeat: no-repeat;
  filter: none;
}
/* line 31, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootswatch-rails-3.3.5/vendor/assets/stylesheets/bootswatch/slate/_bootswatch.scss */
body[data-theme="slate"] .navbar-inverse .badge {
  background-color: #272b2e;
}
/* line 36, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootswatch-rails-3.3.5/vendor/assets/stylesheets/bootswatch/slate/_bootswatch.scss */
body[data-theme="slate"] .navbar-nav > li > a {
  border-right: 1px solid rgba(0, 0, 0, 0.2);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}
/* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootswatch-rails-3.3.5/vendor/assets/stylesheets/bootswatch/slate/_bootswatch.scss */
body[data-theme="slate"] .navbar-nav > li > a:hover {
  background-image: -webkit-linear-gradient(#020202, #101112 40%, #191b1d);
  background-image: -o-linear-gradient(#020202, #101112 40%, #191b1d);
  background-image: linear-gradient(#020202, #101112 40%, #191b1d);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF020202', endColorstr='#FF191B1D', GradientType=0);
  background-repeat: no-repeat;
  filter: none;
  border-left-color: transparent;
}
/* line 46, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootswatch-rails-3.3.5/vendor/assets/stylesheets/bootswatch/slate/_bootswatch.scss */
body[data-theme="slate"] .navbar-nav > li.active > a {
  border-left-color: transparent;
}
/* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootswatch-rails-3.3.5/vendor/assets/stylesheets/bootswatch/slate/_bootswatch.scss */
body[data-theme="slate"] .navbar-form {
  margin-left: 5px;
  margin-right: 5px;
}
/* line 57, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootswatch-rails-3.3.5/vendor/assets/stylesheets/bootswatch/slate/_bootswatch.scss */
body[data-theme="slate"] .btn,
body[data-theme="slate"] .btn:hover {
  border-color: rgba(0, 0, 0, 0.6);
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
}
/* line 63, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootswatch-rails-3.3.5/vendor/assets/stylesheets/bootswatch/slate/_bootswatch.scss */
body[data-theme="slate"] .btn-default {
  background-image: -webkit-linear-gradient(#484e55, #3A3F44 60%, #313539);
  background-image: -o-linear-gradient(#484e55, #3A3F44 60%, #313539);
  background-image: linear-gradient(#484e55, #3A3F44 60%, #313539);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF484E55', endColorstr='#FF313539', GradientType=0);
  background-repeat: no-repeat;
  filter: none;
}
/* line 66, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootswatch-rails-3.3.5/vendor/assets/stylesheets/bootswatch/slate/_bootswatch.scss */
body[data-theme="slate"] .btn-default:hover {
  background-image: -webkit-linear-gradient(#020202, #101112 40%, #191b1d);
  background-image: -o-linear-gradient(#020202, #101112 40%, #191b1d);
  background-image: linear-gradient(#020202, #101112 40%, #191b1d);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF020202', endColorstr='#FF191B1D', GradientType=0);
  background-repeat: no-repeat;
  filter: none;
}
/* line 71, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootswatch-rails-3.3.5/vendor/assets/stylesheets/bootswatch/slate/_bootswatch.scss */
body[data-theme="slate"] .btn-primary {
  background-image: -webkit-linear-gradient(#646b70, #565b60 60%, #4c5155);
  background-image: -o-linear-gradient(#646b70, #565b60 60%, #4c5155);
  background-image: linear-gradient(#646b70, #565b60 60%, #4c5155);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF646B70', endColorstr='#FF4C5155', GradientType=0);
  background-repeat: no-repeat;
  filter: none;
}
/* line 74, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootswatch-rails-3.3.5/vendor/assets/stylesheets/bootswatch/slate/_bootswatch.scss */
body[data-theme="slate"] .btn-primary:hover {
  background-image: -webkit-linear-gradient(#1c1e1f, #2a2d2f 40%, #34373a);
  background-image: -o-linear-gradient(#1c1e1f, #2a2d2f 40%, #34373a);
  background-image: linear-gradient(#1c1e1f, #2a2d2f 40%, #34373a);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF1C1E1F', endColorstr='#FF34373A', GradientType=0);
  background-repeat: no-repeat;
  filter: none;
}
/* line 79, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootswatch-rails-3.3.5/vendor/assets/stylesheets/bootswatch/slate/_bootswatch.scss */
body[data-theme="slate"] .btn-success {
  background-image: -webkit-linear-gradient(#78cc78, #62c462 60%, #53be53);
  background-image: -o-linear-gradient(#78cc78, #62c462 60%, #53be53);
  background-image: linear-gradient(#78cc78, #62c462 60%, #53be53);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF78CC78', endColorstr='#FF53BE53', GradientType=0);
  background-repeat: no-repeat;
  filter: none;
}
/* line 82, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootswatch-rails-3.3.5/vendor/assets/stylesheets/bootswatch/slate/_bootswatch.scss */
body[data-theme="slate"] .btn-success:hover {
  background-image: -webkit-linear-gradient(#2f7d2f, #379337 40%, #3da23d);
  background-image: -o-linear-gradient(#2f7d2f, #379337 40%, #3da23d);
  background-image: linear-gradient(#2f7d2f, #379337 40%, #3da23d);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF2F7D2F', endColorstr='#FF3DA23D', GradientType=0);
  background-repeat: no-repeat;
  filter: none;
}
/* line 87, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootswatch-rails-3.3.5/vendor/assets/stylesheets/bootswatch/slate/_bootswatch.scss */
body[data-theme="slate"] .btn-info {
  background-image: -webkit-linear-gradient(#74cae3, #5bc0de 60%, #4ab9db);
  background-image: -o-linear-gradient(#74cae3, #5bc0de 60%, #4ab9db);
  background-image: linear-gradient(#74cae3, #5bc0de 60%, #4ab9db);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF74CAE3', endColorstr='#FF4AB9DB', GradientType=0);
  background-repeat: no-repeat;
  filter: none;
}
/* line 90, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootswatch-rails-3.3.5/vendor/assets/stylesheets/bootswatch/slate/_bootswatch.scss */
body[data-theme="slate"] .btn-info:hover {
  background-image: -webkit-linear-gradient(#20829f, #2596b8 40%, #28a4c9);
  background-image: -o-linear-gradient(#20829f, #2596b8 40%, #28a4c9);
  background-image: linear-gradient(#20829f, #2596b8 40%, #28a4c9);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF20829F', endColorstr='#FF28A4C9', GradientType=0);
  background-repeat: no-repeat;
  filter: none;
}
/* line 95, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootswatch-rails-3.3.5/vendor/assets/stylesheets/bootswatch/slate/_bootswatch.scss */
body[data-theme="slate"] .btn-warning {
  background-image: -webkit-linear-gradient(#faa123, #f89406 60%, #e48806);
  background-image: -o-linear-gradient(#faa123, #f89406 60%, #e48806);
  background-image: linear-gradient(#faa123, #f89406 60%, #e48806);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFAA123', endColorstr='#FFE48806', GradientType=0);
  background-repeat: no-repeat;
  filter: none;
}
/* line 98, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootswatch-rails-3.3.5/vendor/assets/stylesheets/bootswatch/slate/_bootswatch.scss */
body[data-theme="slate"] .btn-warning:hover {
  background-image: -webkit-linear-gradient(#804d03, #9e5f04 40%, #b26a04);
  background-image: -o-linear-gradient(#804d03, #9e5f04 40%, #b26a04);
  background-image: linear-gradient(#804d03, #9e5f04 40%, #b26a04);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF804D03', endColorstr='#FFB26A04', GradientType=0);
  background-repeat: no-repeat;
  filter: none;
}
/* line 103, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootswatch-rails-3.3.5/vendor/assets/stylesheets/bootswatch/slate/_bootswatch.scss */
body[data-theme="slate"] .btn-danger {
  background-image: -webkit-linear-gradient(#f17a77, #ee5f5b 60%, #ec4d49);
  background-image: -o-linear-gradient(#f17a77, #ee5f5b 60%, #ec4d49);
  background-image: linear-gradient(#f17a77, #ee5f5b 60%, #ec4d49);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFF17A77', endColorstr='#FFEC4D49', GradientType=0);
  background-repeat: no-repeat;
  filter: none;
}
/* line 106, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootswatch-rails-3.3.5/vendor/assets/stylesheets/bootswatch/slate/_bootswatch.scss */
body[data-theme="slate"] .btn-danger:hover {
  background-image: -webkit-linear-gradient(#bb1813, #d71c16 40%, #e7201a);
  background-image: -o-linear-gradient(#bb1813, #d71c16 40%, #e7201a);
  background-image: linear-gradient(#bb1813, #d71c16 40%, #e7201a);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFBB1813', endColorstr='#FFE7201A', GradientType=0);
  background-repeat: no-repeat;
  filter: none;
}
/* line 111, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootswatch-rails-3.3.5/vendor/assets/stylesheets/bootswatch/slate/_bootswatch.scss */
body[data-theme="slate"] .btn-link,
body[data-theme="slate"] .btn-link:hover {
  border-color: transparent;
}
/* line 118, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootswatch-rails-3.3.5/vendor/assets/stylesheets/bootswatch/slate/_bootswatch.scss */
body[data-theme="slate"] h1, body[data-theme="slate"] h2, body[data-theme="slate"] h3, body[data-theme="slate"] h4, body[data-theme="slate"] h5, body[data-theme="slate"] h6 {
  text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.3);
}
/* line 122, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootswatch-rails-3.3.5/vendor/assets/stylesheets/bootswatch/slate/_bootswatch.scss */
body[data-theme="slate"] .text-primary,
body[data-theme="slate"] .text-primary:hover {
  color: #7A8288;
}
/* line 127, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootswatch-rails-3.3.5/vendor/assets/stylesheets/bootswatch/slate/_bootswatch.scss */
body[data-theme="slate"] .text-success,
body[data-theme="slate"] .text-success:hover {
  color: #62c462;
}
/* line 132, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootswatch-rails-3.3.5/vendor/assets/stylesheets/bootswatch/slate/_bootswatch.scss */
body[data-theme="slate"] .text-danger,
body[data-theme="slate"] .text-danger:hover {
  color: #ee5f5b;
}
/* line 137, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootswatch-rails-3.3.5/vendor/assets/stylesheets/bootswatch/slate/_bootswatch.scss */
body[data-theme="slate"] .text-warning,
body[data-theme="slate"] .text-warning:hover {
  color: #f89406;
}
/* line 142, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootswatch-rails-3.3.5/vendor/assets/stylesheets/bootswatch/slate/_bootswatch.scss */
body[data-theme="slate"] .text-info,
body[data-theme="slate"] .text-info:hover {
  color: #2390b0;
}
/* line 151, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootswatch-rails-3.3.5/vendor/assets/stylesheets/bootswatch/slate/_bootswatch.scss */
body[data-theme="slate"] .table .success,
body[data-theme="slate"] .table .warning,
body[data-theme="slate"] .table .danger,
body[data-theme="slate"] .table .info {
  color: #fff;
}
/* line 165, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootswatch-rails-3.3.5/vendor/assets/stylesheets/bootswatch/slate/_bootswatch.scss */
body[data-theme="slate"] .table-bordered tbody tr.success td, body[data-theme="slate"] .table-bordered tbody tr.success:hover td,
body[data-theme="slate"] .table-bordered tbody tr.warning td,
body[data-theme="slate"] .table-bordered tbody tr.warning:hover td,
body[data-theme="slate"] .table-bordered tbody tr.danger td,
body[data-theme="slate"] .table-bordered tbody tr.danger:hover td {
  border-color: #1c1e22;
}
/* line 172, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootswatch-rails-3.3.5/vendor/assets/stylesheets/bootswatch/slate/_bootswatch.scss */
body[data-theme="slate"] .table-responsive > .table {
  background-color: #2e3338;
}
/* line 178, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootswatch-rails-3.3.5/vendor/assets/stylesheets/bootswatch/slate/_bootswatch.scss */
body[data-theme="slate"] input,
body[data-theme="slate"] textarea {
  color: #C8C8C8;
}
/* line 184, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootswatch-rails-3.3.5/vendor/assets/stylesheets/bootswatch/slate/_bootswatch.scss */
body[data-theme="slate"] .has-warning .help-block,
body[data-theme="slate"] .has-warning .control-label,
body[data-theme="slate"] .has-warning .radio,
body[data-theme="slate"] .has-warning .checkbox,
body[data-theme="slate"] .has-warning .radio-inline,
body[data-theme="slate"] .has-warning .checkbox-inline, body[data-theme="slate"] .has-warning.radio label, body[data-theme="slate"] .has-warning.checkbox label, body[data-theme="slate"] .has-warning.radio-inline label, body[data-theme="slate"] .has-warning.checkbox-inline label,
body[data-theme="slate"] .has-warning .form-control-feedback {
  color: #f89406;
}
/* line 198, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootswatch-rails-3.3.5/vendor/assets/stylesheets/bootswatch/slate/_bootswatch.scss */
body[data-theme="slate"] .has-warning .form-control,
body[data-theme="slate"] .has-warning .form-control:focus {
  border-color: #f89406;
}
/* line 203, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootswatch-rails-3.3.5/vendor/assets/stylesheets/bootswatch/slate/_bootswatch.scss */
body[data-theme="slate"] .has-warning .input-group-addon {
  background-color: #272B30;
  border: none;
}
/* line 210, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootswatch-rails-3.3.5/vendor/assets/stylesheets/bootswatch/slate/_bootswatch.scss */
body[data-theme="slate"] .has-error .help-block,
body[data-theme="slate"] .has-error .control-label,
body[data-theme="slate"] .has-error .radio,
body[data-theme="slate"] .has-error .checkbox,
body[data-theme="slate"] .has-error .radio-inline,
body[data-theme="slate"] .has-error .checkbox-inline, body[data-theme="slate"] .has-error.radio label, body[data-theme="slate"] .has-error.checkbox label, body[data-theme="slate"] .has-error.radio-inline label, body[data-theme="slate"] .has-error.checkbox-inline label,
body[data-theme="slate"] .has-error .form-control-feedback {
  color: #ee5f5b;
}
/* line 224, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootswatch-rails-3.3.5/vendor/assets/stylesheets/bootswatch/slate/_bootswatch.scss */
body[data-theme="slate"] .has-error .form-control,
body[data-theme="slate"] .has-error .form-control:focus {
  border-color: #ee5f5b;
}
/* line 229, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootswatch-rails-3.3.5/vendor/assets/stylesheets/bootswatch/slate/_bootswatch.scss */
body[data-theme="slate"] .has-error .input-group-addon {
  background-color: #272B30;
  border: none;
}
/* line 236, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootswatch-rails-3.3.5/vendor/assets/stylesheets/bootswatch/slate/_bootswatch.scss */
body[data-theme="slate"] .has-success .help-block,
body[data-theme="slate"] .has-success .control-label,
body[data-theme="slate"] .has-success .radio,
body[data-theme="slate"] .has-success .checkbox,
body[data-theme="slate"] .has-success .radio-inline,
body[data-theme="slate"] .has-success .checkbox-inline, body[data-theme="slate"] .has-success.radio label, body[data-theme="slate"] .has-success.checkbox label, body[data-theme="slate"] .has-success.radio-inline label, body[data-theme="slate"] .has-success.checkbox-inline label,
body[data-theme="slate"] .has-success .form-control-feedback {
  color: #62c462;
}
/* line 250, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootswatch-rails-3.3.5/vendor/assets/stylesheets/bootswatch/slate/_bootswatch.scss */
body[data-theme="slate"] .has-success .form-control,
body[data-theme="slate"] .has-success .form-control:focus {
  border-color: #62c462;
}
/* line 255, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootswatch-rails-3.3.5/vendor/assets/stylesheets/bootswatch/slate/_bootswatch.scss */
body[data-theme="slate"] .has-success .input-group-addon {
  background-color: #272B30;
  border: none;
}
/* line 261, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootswatch-rails-3.3.5/vendor/assets/stylesheets/bootswatch/slate/_bootswatch.scss */
body[data-theme="slate"] legend {
  color: #fff;
}
/* line 265, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootswatch-rails-3.3.5/vendor/assets/stylesheets/bootswatch/slate/_bootswatch.scss */
body[data-theme="slate"] .input-group-addon {
  border-color: rgba(0, 0, 0, 0.6);
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
  background-image: -webkit-linear-gradient(#484e55, #3A3F44 60%, #313539);
  background-image: -o-linear-gradient(#484e55, #3A3F44 60%, #313539);
  background-image: linear-gradient(#484e55, #3A3F44 60%, #313539);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF484E55', endColorstr='#FF313539', GradientType=0);
  background-repeat: no-repeat;
  filter: none;
  color: #fff;
}
/* line 276, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootswatch-rails-3.3.5/vendor/assets/stylesheets/bootswatch/slate/_bootswatch.scss */
body[data-theme="slate"] .nav .open > a,
body[data-theme="slate"] .nav .open > a:hover,
body[data-theme="slate"] .nav .open > a:focus {
  border-color: rgba(0, 0, 0, 0.6);
}
/* line 286, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootswatch-rails-3.3.5/vendor/assets/stylesheets/bootswatch/slate/_bootswatch.scss */
body[data-theme="slate"] .nav-pills > li > a {
  background-image: -webkit-linear-gradient(#484e55, #3A3F44 60%, #313539);
  background-image: -o-linear-gradient(#484e55, #3A3F44 60%, #313539);
  background-image: linear-gradient(#484e55, #3A3F44 60%, #313539);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF484E55', endColorstr='#FF313539', GradientType=0);
  background-repeat: no-repeat;
  filter: none;
  border: 1px solid rgba(0, 0, 0, 0.6);
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
}
/* line 291, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootswatch-rails-3.3.5/vendor/assets/stylesheets/bootswatch/slate/_bootswatch.scss */
body[data-theme="slate"] .nav-pills > li > a:hover {
  background-image: -webkit-linear-gradient(#020202, #101112 40%, #191b1d);
  background-image: -o-linear-gradient(#020202, #101112 40%, #191b1d);
  background-image: linear-gradient(#020202, #101112 40%, #191b1d);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF020202', endColorstr='#FF191B1D', GradientType=0);
  background-repeat: no-repeat;
  filter: none;
  border: 1px solid rgba(0, 0, 0, 0.6);
}
/* line 297, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootswatch-rails-3.3.5/vendor/assets/stylesheets/bootswatch/slate/_bootswatch.scss */
body[data-theme="slate"] .nav-pills > li.active > a, body[data-theme="slate"] .nav-pills > li.active > a:hover {
  background-color: none;
  background-image: -webkit-linear-gradient(#020202, #101112 40%, #191b1d);
  background-image: -o-linear-gradient(#020202, #101112 40%, #191b1d);
  background-image: linear-gradient(#020202, #101112 40%, #191b1d);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF020202', endColorstr='#FF191B1D', GradientType=0);
  background-repeat: no-repeat;
  filter: none;
  border: 1px solid rgba(0, 0, 0, 0.6);
}
/* line 304, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootswatch-rails-3.3.5/vendor/assets/stylesheets/bootswatch/slate/_bootswatch.scss */
body[data-theme="slate"] .nav-pills > li.disabled > a, body[data-theme="slate"] .nav-pills > li.disabled > a:hover {
  background-image: -webkit-linear-gradient(#484e55, #3A3F44 60%, #313539);
  background-image: -o-linear-gradient(#484e55, #3A3F44 60%, #313539);
  background-image: linear-gradient(#484e55, #3A3F44 60%, #313539);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF484E55', endColorstr='#FF313539', GradientType=0);
  background-repeat: no-repeat;
  filter: none;
}
/* line 312, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootswatch-rails-3.3.5/vendor/assets/stylesheets/bootswatch/slate/_bootswatch.scss */
body[data-theme="slate"] .pagination > li > a, body[data-theme="slate"] .pagination > li > span {
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
  background-image: -webkit-linear-gradient(#484e55, #3A3F44 60%, #313539);
  background-image: -o-linear-gradient(#484e55, #3A3F44 60%, #313539);
  background-image: linear-gradient(#484e55, #3A3F44 60%, #313539);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF484E55', endColorstr='#FF313539', GradientType=0);
  background-repeat: no-repeat;
  filter: none;
}
/* line 317, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootswatch-rails-3.3.5/vendor/assets/stylesheets/bootswatch/slate/_bootswatch.scss */
body[data-theme="slate"] .pagination > li > a:hover, body[data-theme="slate"] .pagination > li > span:hover {
  background-image: -webkit-linear-gradient(#020202, #101112 40%, #191b1d);
  background-image: -o-linear-gradient(#020202, #101112 40%, #191b1d);
  background-image: linear-gradient(#020202, #101112 40%, #191b1d);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF020202', endColorstr='#FF191B1D', GradientType=0);
  background-repeat: no-repeat;
  filter: none;
}
/* line 322, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootswatch-rails-3.3.5/vendor/assets/stylesheets/bootswatch/slate/_bootswatch.scss */
body[data-theme="slate"] .pagination > li.active > a, body[data-theme="slate"] .pagination > li.active > span {
  background-image: -webkit-linear-gradient(#020202, #101112 40%, #191b1d);
  background-image: -o-linear-gradient(#020202, #101112 40%, #191b1d);
  background-image: linear-gradient(#020202, #101112 40%, #191b1d);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF020202', endColorstr='#FF191B1D', GradientType=0);
  background-repeat: no-repeat;
  filter: none;
}
/* line 327, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootswatch-rails-3.3.5/vendor/assets/stylesheets/bootswatch/slate/_bootswatch.scss */
body[data-theme="slate"] .pagination > li.disabled > a, body[data-theme="slate"] .pagination > li.disabled > a:hover, body[data-theme="slate"] .pagination > li.disabled > span, body[data-theme="slate"] .pagination > li.disabled > span:hover {
  background-color: transparent;
  background-image: -webkit-linear-gradient(#484e55, #3A3F44 60%, #313539);
  background-image: -o-linear-gradient(#484e55, #3A3F44 60%, #313539);
  background-image: linear-gradient(#484e55, #3A3F44 60%, #313539);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF484E55', endColorstr='#FF313539', GradientType=0);
  background-repeat: no-repeat;
  filter: none;
}
/* line 338, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootswatch-rails-3.3.5/vendor/assets/stylesheets/bootswatch/slate/_bootswatch.scss */
body[data-theme="slate"] .pager > li > a {
  background-image: -webkit-linear-gradient(#484e55, #3A3F44 60%, #313539);
  background-image: -o-linear-gradient(#484e55, #3A3F44 60%, #313539);
  background-image: linear-gradient(#484e55, #3A3F44 60%, #313539);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF484E55', endColorstr='#FF313539', GradientType=0);
  background-repeat: no-repeat;
  filter: none;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
}
/* line 342, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootswatch-rails-3.3.5/vendor/assets/stylesheets/bootswatch/slate/_bootswatch.scss */
body[data-theme="slate"] .pager > li > a:hover {
  background-image: -webkit-linear-gradient(#020202, #101112 40%, #191b1d);
  background-image: -o-linear-gradient(#020202, #101112 40%, #191b1d);
  background-image: linear-gradient(#020202, #101112 40%, #191b1d);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF020202', endColorstr='#FF191B1D', GradientType=0);
  background-repeat: no-repeat;
  filter: none;
}
/* line 347, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootswatch-rails-3.3.5/vendor/assets/stylesheets/bootswatch/slate/_bootswatch.scss */
body[data-theme="slate"] .pager > li.disabled > a, body[data-theme="slate"] .pager > li.disabled > a:hover {
  background-color: transparent;
  background-image: -webkit-linear-gradient(#484e55, #3A3F44 60%, #313539);
  background-image: -o-linear-gradient(#484e55, #3A3F44 60%, #313539);
  background-image: linear-gradient(#484e55, #3A3F44 60%, #313539);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF484E55', endColorstr='#FF313539', GradientType=0);
  background-repeat: no-repeat;
  filter: none;
}
/* line 354, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootswatch-rails-3.3.5/vendor/assets/stylesheets/bootswatch/slate/_bootswatch.scss */
body[data-theme="slate"] .breadcrumb {
  border: 1px solid rgba(0, 0, 0, 0.6);
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
  background-image: -webkit-linear-gradient(#484e55, #3A3F44 60%, #313539);
  background-image: -o-linear-gradient(#484e55, #3A3F44 60%, #313539);
  background-image: linear-gradient(#484e55, #3A3F44 60%, #313539);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF484E55', endColorstr='#FF313539', GradientType=0);
  background-repeat: no-repeat;
  filter: none;
}
/* line 364, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootswatch-rails-3.3.5/vendor/assets/stylesheets/bootswatch/slate/_bootswatch.scss */
body[data-theme="slate"] .alert .alert-link,
body[data-theme="slate"] .alert a {
  color: #fff;
  text-decoration: underline;
}
/* line 370, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootswatch-rails-3.3.5/vendor/assets/stylesheets/bootswatch/slate/_bootswatch.scss */
body[data-theme="slate"] .alert .close {
  color: #000;
  text-decoration: none;
}
/* line 380, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootswatch-rails-3.3.5/vendor/assets/stylesheets/bootswatch/slate/_bootswatch.scss */
body[data-theme="slate"] a.thumbnail:hover,
body[data-theme="slate"] a.thumbnail:focus,
body[data-theme="slate"] a.thumbnail.active {
  border-color: #0c0d0e;
}
/* line 388, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootswatch-rails-3.3.5/vendor/assets/stylesheets/bootswatch/slate/_bootswatch.scss */
body[data-theme="slate"] a.list-group-item.active, body[data-theme="slate"] a.list-group-item.active:hover, body[data-theme="slate"] a.list-group-item.active:focus {
  border-color: rgba(0, 0, 0, 0.6);
}
/* line 396, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootswatch-rails-3.3.5/vendor/assets/stylesheets/bootswatch/slate/_bootswatch.scss */
body[data-theme="slate"] a.list-group-item-success.active {
  background-color: #62c462;
}
/* line 400, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootswatch-rails-3.3.5/vendor/assets/stylesheets/bootswatch/slate/_bootswatch.scss */
body[data-theme="slate"] a.list-group-item-success.active:hover, body[data-theme="slate"] a.list-group-item-success.active:focus {
  background-color: #4fbd4f;
}
/* line 407, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootswatch-rails-3.3.5/vendor/assets/stylesheets/bootswatch/slate/_bootswatch.scss */
body[data-theme="slate"] a.list-group-item-warning.active {
  background-color: #f89406;
}
/* line 411, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootswatch-rails-3.3.5/vendor/assets/stylesheets/bootswatch/slate/_bootswatch.scss */
body[data-theme="slate"] a.list-group-item-warning.active:hover, body[data-theme="slate"] a.list-group-item-warning.active:focus {
  background-color: #df8505;
}
/* line 418, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootswatch-rails-3.3.5/vendor/assets/stylesheets/bootswatch/slate/_bootswatch.scss */
body[data-theme="slate"] a.list-group-item-danger.active {
  background-color: #ee5f5b;
}
/* line 422, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootswatch-rails-3.3.5/vendor/assets/stylesheets/bootswatch/slate/_bootswatch.scss */
body[data-theme="slate"] a.list-group-item-danger.active:hover, body[data-theme="slate"] a.list-group-item-danger.active:focus {
  background-color: #ec4844;
}
/* line 428, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootswatch-rails-3.3.5/vendor/assets/stylesheets/bootswatch/slate/_bootswatch.scss */
body[data-theme="slate"] .jumbotron {
  border: 1px solid rgba(0, 0, 0, 0.6);
}
/* line 438, /opt/marast/vendor/bundle/ruby/2.6.0/gems/bootswatch-rails-3.3.5/vendor/assets/stylesheets/bootswatch/slate/_bootswatch.scss */
body[data-theme="slate"] .panel-primary .panel-heading,
body[data-theme="slate"] .panel-success .panel-heading,
body[data-theme="slate"] .panel-danger .panel-heading,
body[data-theme="slate"] .panel-warning .panel-heading,
body[data-theme="slate"] .panel-info .panel-heading {
  border-color: #000;
}
/* line 3, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="slate"] .CodeMirror {
  /* Set height, width, borders, and global font properties here */
  font-family: monospace;
  height: 300px;
  color: black;
}
/* line 12, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="slate"] .CodeMirror-lines {
  padding: 4px 0;
  /* Vertical padding around content */
}
/* line 15, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="slate"] .CodeMirror pre {
  padding: 0 4px;
  /* Horizontal padding of content */
}
/* line 19, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="slate"] .CodeMirror-scrollbar-filler, body[data-theme="slate"] .CodeMirror-gutter-filler {
  background-color: white;
  /* The little square between H and V scrollbars */
}
/* line 25, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="slate"] .CodeMirror-gutters {
  border-right: 1px solid #ddd;
  background-color: #f7f7f7;
  white-space: nowrap;
}
/* line 31, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="slate"] .CodeMirror-linenumber {
  padding: 0 3px 0 5px;
  min-width: 20px;
  text-align: right;
  color: #999;
  white-space: nowrap;
}
/* line 39, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="slate"] .CodeMirror-guttermarker {
  color: black;
}
/* line 40, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="slate"] .CodeMirror-guttermarker-subtle {
  color: #999;
}
/* line 44, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="slate"] .CodeMirror-cursor {
  border-left: 1px solid black;
  border-right: none;
  width: 0;
}
/* line 50, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="slate"] .CodeMirror div.CodeMirror-secondarycursor {
  border-left: 1px solid silver;
}
/* line 53, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="slate"] .cm-fat-cursor .CodeMirror-cursor {
  width: auto;
  border: 0 !important;
  background: #7e7;
}
/* line 58, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="slate"] .cm-fat-cursor div.CodeMirror-cursors {
  z-index: 1;
}
/* line 62, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="slate"] .cm-animate-fat-cursor {
  width: auto;
  border: 0;
  -webkit-animation: blink 1.06s steps(1) infinite;
  -moz-animation: blink 1.06s steps(1) infinite;
  animation: blink 1.06s steps(1) infinite;
  background-color: #7e7;
}
@-moz-keyframes blink {
  50% {
    background-color: transparent;
  }
}
@-webkit-keyframes blink {
  50% {
    background-color: transparent;
  }
}
@keyframes blink {
  50% {
    background-color: transparent;
  }
}
/* line 89, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="slate"] .cm-tab {
  display: inline-block;
  text-decoration: inherit;
}
/* line 91, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="slate"] .CodeMirror-rulers {
  position: absolute;
  left: 0;
  right: 0;
  top: -50px;
  bottom: -20px;
  overflow: hidden;
}
/* line 96, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="slate"] .CodeMirror-ruler {
  border-left: 1px solid #ccc;
  top: 0;
  bottom: 0;
  position: absolute;
}
/* line 104, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="slate"] .cm-s-default .cm-header {
  color: blue;
}
/* line 105, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="slate"] .cm-s-default .cm-quote {
  color: #090;
}
/* line 106, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="slate"] .cm-negative {
  color: #d44;
}
/* line 107, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="slate"] .cm-positive {
  color: #292;
}
/* line 108, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="slate"] .cm-header, body[data-theme="slate"] .cm-strong {
  font-weight: bold;
}
/* line 109, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="slate"] .cm-em {
  font-style: italic;
}
/* line 110, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="slate"] .cm-link {
  text-decoration: underline;
}
/* line 111, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="slate"] .cm-strikethrough {
  text-decoration: line-through;
}
/* line 113, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="slate"] .cm-s-default .cm-keyword {
  color: #708;
}
/* line 114, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="slate"] .cm-s-default .cm-atom {
  color: #219;
}
/* line 115, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="slate"] .cm-s-default .cm-number {
  color: #164;
}
/* line 116, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="slate"] .cm-s-default .cm-def {
  color: #00f;
}
/* line 121, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="slate"] .cm-s-default .cm-variable-2 {
  color: #05a;
}
/* line 122, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="slate"] .cm-s-default .cm-variable-3 {
  color: #085;
}
/* line 123, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="slate"] .cm-s-default .cm-comment {
  color: #a50;
}
/* line 124, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="slate"] .cm-s-default .cm-string {
  color: #a11;
}
/* line 125, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="slate"] .cm-s-default .cm-string-2 {
  color: #f50;
}
/* line 126, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="slate"] .cm-s-default .cm-meta {
  color: #555;
}
/* line 127, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="slate"] .cm-s-default .cm-qualifier {
  color: #555;
}
/* line 128, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="slate"] .cm-s-default .cm-builtin {
  color: #30a;
}
/* line 129, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="slate"] .cm-s-default .cm-bracket {
  color: #997;
}
/* line 130, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="slate"] .cm-s-default .cm-tag {
  color: #170;
}
/* line 131, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="slate"] .cm-s-default .cm-attribute {
  color: #00c;
}
/* line 132, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="slate"] .cm-s-default .cm-hr {
  color: #999;
}
/* line 133, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="slate"] .cm-s-default .cm-link {
  color: #00c;
}
/* line 135, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="slate"] .cm-s-default .cm-error {
  color: #f00;
}
/* line 136, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="slate"] .cm-invalidchar {
  color: #f00;
}
/* line 138, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="slate"] .CodeMirror-composing {
  border-bottom: 2px solid;
}
/* line 142, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="slate"] div.CodeMirror span.CodeMirror-matchingbracket {
  color: #0f0;
}
/* line 143, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="slate"] div.CodeMirror span.CodeMirror-nonmatchingbracket {
  color: #f22;
}
/* line 144, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="slate"] .CodeMirror-matchingtag {
  background: rgba(255, 150, 0, 0.3);
}
/* line 145, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="slate"] .CodeMirror-activeline-background {
  background: #e8f2ff;
}
/* line 152, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="slate"] .CodeMirror {
  position: relative;
  overflow: hidden;
  background: white;
}
/* line 158, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="slate"] .CodeMirror-scroll {
  overflow: scroll !important;
  /* Things will break if this is overridden */
  /* 30px is the magic margin used to hide the element's real scrollbars */
  /* See overflow: hidden in .CodeMirror */
  margin-bottom: -30px;
  margin-right: -30px;
  padding-bottom: 30px;
  height: 100%;
  outline: none;
  /* Prevent dragging from highlighting the element */
  position: relative;
}
/* line 168, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="slate"] .CodeMirror-sizer {
  position: relative;
  border-right: 30px solid transparent;
}
/* line 176, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="slate"] .CodeMirror-vscrollbar, body[data-theme="slate"] .CodeMirror-hscrollbar, body[data-theme="slate"] .CodeMirror-scrollbar-filler, body[data-theme="slate"] .CodeMirror-gutter-filler {
  position: absolute;
  z-index: 6;
  display: none;
}
/* line 181, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="slate"] .CodeMirror-vscrollbar {
  right: 0;
  top: 0;
  overflow-x: hidden;
  overflow-y: scroll;
}
/* line 186, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="slate"] .CodeMirror-hscrollbar {
  bottom: 0;
  left: 0;
  overflow-y: hidden;
  overflow-x: scroll;
}
/* line 191, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="slate"] .CodeMirror-scrollbar-filler {
  right: 0;
  bottom: 0;
}
/* line 194, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="slate"] .CodeMirror-gutter-filler {
  left: 0;
  bottom: 0;
}
/* line 198, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="slate"] .CodeMirror-gutters {
  position: absolute;
  left: 0;
  top: 0;
  min-height: 100%;
  z-index: 3;
}
/* line 203, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="slate"] .CodeMirror-gutter {
  white-space: normal;
  height: 100%;
  display: inline-block;
  vertical-align: top;
  margin-bottom: -30px;
  /* Hack to make IE7 behave */
  *zoom: 1;
  *display: inline;
}
/* line 213, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="slate"] .CodeMirror-gutter-wrapper {
  position: absolute;
  z-index: 4;
  background: none !important;
  border: none !important;
}
/* line 219, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="slate"] .CodeMirror-gutter-background {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 4;
}
/* line 224, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="slate"] .CodeMirror-gutter-elt {
  position: absolute;
  cursor: default;
  z-index: 4;
}
/* line 229, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="slate"] .CodeMirror-gutter-wrapper {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
/* line 235, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="slate"] .CodeMirror-lines {
  cursor: text;
  min-height: 1px;
  /* prevents collapsing before first draw */
}
/* line 239, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="slate"] .CodeMirror pre {
  /* Reset some styles that the rest of the page might have set */
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  border-width: 0;
  background: transparent;
  font-family: inherit;
  font-size: inherit;
  margin: 0;
  white-space: pre;
  word-wrap: normal;
  line-height: inherit;
  color: inherit;
  z-index: 2;
  position: relative;
  overflow: visible;
  -webkit-tap-highlight-color: transparent;
  -webkit-font-variant-ligatures: none;
  font-variant-ligatures: none;
}
/* line 258, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="slate"] .CodeMirror-wrap pre {
  word-wrap: break-word;
  white-space: pre-wrap;
  word-break: normal;
}
/* line 264, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="slate"] .CodeMirror-linebackground {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 0;
}
/* line 270, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="slate"] .CodeMirror-linewidget {
  position: relative;
  z-index: 2;
  overflow: auto;
}
/* line 278, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="slate"] .CodeMirror-code {
  outline: none;
}
/* line 283, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="slate"] .CodeMirror-scroll,
body[data-theme="slate"] .CodeMirror-sizer,
body[data-theme="slate"] .CodeMirror-gutter,
body[data-theme="slate"] .CodeMirror-gutters,
body[data-theme="slate"] .CodeMirror-linenumber {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
/* line 292, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="slate"] .CodeMirror-measure {
  position: absolute;
  width: 100%;
  height: 0;
  overflow: hidden;
  visibility: hidden;
}
/* line 300, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="slate"] .CodeMirror-cursor {
  position: absolute;
  pointer-events: none;
}
/* line 304, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="slate"] .CodeMirror-measure pre {
  position: static;
}
/* line 306, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="slate"] div.CodeMirror-cursors {
  visibility: hidden;
  position: relative;
  z-index: 3;
}
/* line 311, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="slate"] div.CodeMirror-dragcursors {
  visibility: visible;
}
/* line 315, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="slate"] .CodeMirror-focused div.CodeMirror-cursors {
  visibility: visible;
}
/* line 319, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="slate"] .CodeMirror-selected {
  background: #d9d9d9;
}
/* line 320, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="slate"] .CodeMirror-focused .CodeMirror-selected {
  background: #d7d4f0;
}
/* line 321, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="slate"] .CodeMirror-crosshair {
  cursor: crosshair;
}
/* line 322, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="slate"] .CodeMirror-line::selection, body[data-theme="slate"] .CodeMirror-line > span::selection, body[data-theme="slate"] .CodeMirror-line > span > span::selection {
  background: #d7d4f0;
}
/* line 323, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="slate"] .CodeMirror-line::-moz-selection, body[data-theme="slate"] .CodeMirror-line > span::-moz-selection, body[data-theme="slate"] .CodeMirror-line > span > span::-moz-selection {
  background: #d7d4f0;
}
/* line 325, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="slate"] .cm-searching {
  background: #ffa;
  background: rgba(255, 255, 0, 0.4);
}
/* line 331, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="slate"] .CodeMirror span {
  *vertical-align: text-bottom;
}
/* line 334, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="slate"] .cm-force-border {
  padding-right: .1px;
}
@media print {
  /* line 44, /opt/marast/app/assets/stylesheets/themes/base.scss */
  body[data-theme="slate"] {
    /* Hide the cursor when printing */
  }
  /* line 338, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
  body[data-theme="slate"] .CodeMirror div.CodeMirror-cursors {
    visibility: hidden;
  }
}
/* line 344, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="slate"] .cm-tab-wrap-hack:after {
  content: '';
}
/* line 347, /opt/marast/vendor/bundle/ruby/2.6.0/gems/codemirror-rails-5.16.0/vendor/assets/stylesheets/codemirror.css */
body[data-theme="slate"] span.CodeMirror-selectedtext {
  background: none;
}
/* line 57, /opt/marast/app/assets/stylesheets/themes/base.scss */
body.smooth-theme-change {
  transition: all linear 0.2s;
}

/* body */
/* line 5, /opt/marast/app/assets/stylesheets/custom.scss */
body {
  padding-top: 65px;
}

/* firefox responsive tables fix */
@-moz-document url-prefix() {
  /* line 12, /opt/marast/app/assets/stylesheets/custom.scss */
  fieldset {
    display: table-cell;
  }
}
/* mixins, variables, etc. */
/* dashboard */
/* line 27, /opt/marast/app/assets/stylesheets/custom.scss */
div.boxed {
  min-height: 415px;
  margin-bottom: 15px;
  position: relative;
}

/* line 33, /opt/marast/app/assets/stylesheets/custom.scss */
div.boxed .panel-footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  margin-bottom: 1px;
}

/* line 40, /opt/marast/app/assets/stylesheets/custom.scss */
.boxed-small {
  min-height: 250px;
}

/* footer */
/* line 46, /opt/marast/app/assets/stylesheets/custom.scss */
footer {
  margin-top: 45px;
  padding-top: 5px;
  border-top: 1px solid #eaeaea;
  color: #777;
}

/* line 53, /opt/marast/app/assets/stylesheets/custom.scss */
footer a {
  color: #555;
}

/* line 57, /opt/marast/app/assets/stylesheets/custom.scss */
footer a:hover {
  color: #222;
}

/* line 61, /opt/marast/app/assets/stylesheets/custom.scss */
footer small {
  float: left;
}

/* line 65, /opt/marast/app/assets/stylesheets/custom.scss */
footer ul {
  float: right;
  list-style: none;
}

/* line 70, /opt/marast/app/assets/stylesheets/custom.scss */
footer ul li {
  float: left;
  margin-left: 15px;
}

/* debug */
/* line 77, /opt/marast/app/assets/stylesheets/custom.scss */
.debug_dump {
  clear: both;
  float: left;
  width: 100%;
  margin-top: 45px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* question list */
/* line 87, /opt/marast/app/assets/stylesheets/custom.scss */
div.quiz {
  font-size: 130%;
}

/* line 91, /opt/marast/app/assets/stylesheets/custom.scss */
.bottom-buffer {
  margin-bottom: 20px;
}

/* line 95, /opt/marast/app/assets/stylesheets/custom.scss */
.form-buttons {
  text-align: right;
}

/* line 99, /opt/marast/app/assets/stylesheets/custom.scss */
.fat-container {
  min-height: 55px;
}

/* line 103, /opt/marast/app/assets/stylesheets/custom.scss */
.my-message div {
  padding: 5px;
  font-size: 80%;
}

/* line 108, /opt/marast/app/assets/stylesheets/custom.scss */
label.btn.disabled {
  pointer-events: none;
  cursor: not-allowed;
}

/* line 113, /opt/marast/app/assets/stylesheets/custom.scss */
label.btn.btn-default.active {
  background-color: #fcf8e3;
}

/* exercises */
/* line 119, /opt/marast/app/assets/stylesheets/custom.scss */
#question-container {
  font-size: 130%;
}

/* line 123, /opt/marast/app/assets/stylesheets/custom.scss */
.question-preview-container {
  font-size: 80%;
}

/* line 127, /opt/marast/app/assets/stylesheets/custom.scss */
.exercise-question {
  padding: 20px;
}

/* line 131, /opt/marast/app/assets/stylesheets/custom.scss */
.exercise-question {
  margin-bottom: 15px;
}

/* line 135, /opt/marast/app/assets/stylesheets/custom.scss */
#question-properties {
  text-align: right;
}

/* line 139, /opt/marast/app/assets/stylesheets/custom.scss */
#collapse-filter {
  margin-top: 15px;
}

/* line 143, /opt/marast/app/assets/stylesheets/custom.scss */
.popover {
  max-width: 700px !important;
}

/* codemirror */
/* line 149, /opt/marast/app/assets/stylesheets/custom.scss */
div.CodeMirror {
  border: 1px solid #eee;
  height: auto !important;
  margin-bottom: 10px;
}

/* form in header */
/* line 157, /opt/marast/app/assets/stylesheets/custom.scss */
div.form-in-header {
  /*bottom: 20px;*/
  position: relative;
  top: 25px;
}

/* quiz table */
/* line 165, /opt/marast/app/assets/stylesheets/custom.scss */
tr.fat-row {
  height: 50px;
}

/* line 169, /opt/marast/app/assets/stylesheets/custom.scss */
span.evaluation {
  padding-left: 12px;
  padding-right: 12px;
  font-size: 95%;
}

/* affix */
@media (max-width: 1199px) {
  /* line 178, /opt/marast/app/assets/stylesheets/custom.scss */
  .affix {
    position: static;
  }
}
/* line 183, /opt/marast/app/assets/stylesheets/custom.scss */
.affix {
  top: 60px;
}

/* countdown */
/* line 189, /opt/marast/app/assets/stylesheets/custom.scss */
div.is-countdown {
  border: 0px;
  background-color: transparent;
}

/* discussion */
/* line 196, /opt/marast/app/assets/stylesheets/custom.scss */
div.discussion-container {
  margin-bottom: 10px;
  padding: 5px;
  border: 1px solid transparent;
  border-radius: 4px;
  border-color: #DDD;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
}

/* line 205, /opt/marast/app/assets/stylesheets/custom.scss */
div.comment-container {
  margin-bottom: 10px;
  border-radius: 4px;
}

/* line 210, /opt/marast/app/assets/stylesheets/custom.scss */
div.comment-plain {
  background-color: #eeeeee;
}

/* line 214, /opt/marast/app/assets/stylesheets/custom.scss */
div.comment-question {
  background-color: #b0e1ef;
}

/* line 218, /opt/marast/app/assets/stylesheets/custom.scss */
div.comment-answer {
  background-color: #f8d9ac;
}

/* line 222, /opt/marast/app/assets/stylesheets/custom.scss */
div.comment-avatar {
  float: left;
  padding: 4px;
}

/* line 227, /opt/marast/app/assets/stylesheets/custom.scss */
div.comment-body {
  padding: 4px;
  margin-left: 5px;
  float: left;
}

/* line 233, /opt/marast/app/assets/stylesheets/custom.scss */
div.comment-text {
  margin-top: 3px;
  margin-bottom: 3px;
}

/* line 238, /opt/marast/app/assets/stylesheets/custom.scss */
span.comment-author {
  font-weight: bold;
}

/* line 242, /opt/marast/app/assets/stylesheets/custom.scss */
div.comment-footer {
  font-size: 100%;
}
/* line 244, /opt/marast/app/assets/stylesheets/custom.scss */
div.comment-footer .small-print {
  font-size: 80%;
}

/* line 249, /opt/marast/app/assets/stylesheets/custom.scss */
span.comment-header {
  font-size: 80%;
  color: #555555;
}

/* line 254, /opt/marast/app/assets/stylesheets/custom.scss */
div.discussion-reply {
  /*padding: 4px;*/
}

/* line 258, /opt/marast/app/assets/stylesheets/custom.scss */
span.vote {
  /* nothing there yet */
}

/* line 262, /opt/marast/app/assets/stylesheets/custom.scss */
span.my-vote {
  background: #f4c37d;
  border-radius: 4px;
}

/* line 267, /opt/marast/app/assets/stylesheets/custom.scss */
div.comment-text-container {
  margin-top: 10px;
}

/* line 271, /opt/marast/app/assets/stylesheets/custom.scss */
div.comment-preview-container {
  margin-top: 10px;
  border-bottom: solid 1px #eeeeee;
  margin-bottom: 10px;
}

/* Selectivity: we do not use Font Awesome CSS */
/* line 292, /opt/marast/app/assets/stylesheets/custom.scss */
.selectivity-multiple-selected-item {
  /*background: $brand-info !important;*/
}

/* twitter */
/* line 298, /opt/marast/app/assets/stylesheets/custom.scss */
blockquote.twitter-tweet {
  display: inline-block;
  font-family: "Helvetica Neue", Roboto, "Segoe UI", Calibri, sans-serif;
  font-size: 12px;
  font-weight: bold;
  line-height: 16px;
  border-color: #eee #ddd #bbb;
  border-radius: 5px;
  border-style: solid;
  border-width: 1px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  margin: 10px 5px;
  padding: 0 16px 16px 16px;
  max-width: 468px;
}

/* line 314, /opt/marast/app/assets/stylesheets/custom.scss */
blockquote.twitter-tweet p {
  font-size: 16px;
  font-weight: normal;
  line-height: 20px;
}

/* line 320, /opt/marast/app/assets/stylesheets/custom.scss */
blockquote.twitter-tweet a {
  color: inherit;
  font-weight: normal;
  text-decoration: none;
  outline: 0 none;
}

/* line 327, /opt/marast/app/assets/stylesheets/custom.scss */
blockquote.twitter-tweet a:hover,
blockquote.twitter-tweet a:focus {
  text-decoration: underline;
}

/* Blogpost */
/* line 334, /opt/marast/app/assets/stylesheets/custom.scss */
h1.blog-header {
  font-family: "Noto Serif", serif;
}

/* line 338, /opt/marast/app/assets/stylesheets/custom.scss */
p.blog-info {
  font-family: "Noto Serif", serif;
  font-size: 120%;
}

/* line 343, /opt/marast/app/assets/stylesheets/custom.scss */
p.perex {
  font-family: "Noto Serif", serif;
  margin-top: 20px;
}

/* line 348, /opt/marast/app/assets/stylesheets/custom.scss */
div.blog-post-container {
  font-family: "Noto Serif", serif;
  font-size: 120%;
  text-align: justify;
  text-justify: inter-word;
}

/* line 355, /opt/marast/app/assets/stylesheets/custom.scss */
div.blog-post-perex-only {
  margin-bottom: 50px;
}

/* line 359, /opt/marast/app/assets/stylesheets/custom.scss */
ul.blog-tag-cloud > li {
  padding-bottom: 10px;
  font-family: "Noto Serif", serif;
  font-size: 120%;
}

/* Lecture */
/* line 367, /opt/marast/app/assets/stylesheets/custom.scss */
h1.lecture-header {
  font-family: "Noto Serif", serif;
}

/* line 371, /opt/marast/app/assets/stylesheets/custom.scss */
p.lecture-lead {
  font-family: "Noto Serif", serif;
  margin-top: 20px;
}

/* line 376, /opt/marast/app/assets/stylesheets/custom.scss */
div.lecture-body {
  font-family: "Noto Serif", serif;
  font-size: 120%;
  text-align: justify;
  text-justify: inter-word;
}

/* písemky */
/* line 385, /opt/marast/app/assets/stylesheets/custom.scss */
.btn-group-dynamic {
  width: auto;
}

/* line 389, /opt/marast/app/assets/stylesheets/custom.scss */
.form-control[type="checkbox"] {
  width: 34px;
}

/* line 393, /opt/marast/app/assets/stylesheets/custom.scss */
.tex sub, .latex sub, .latex sup {
  text-transform: uppercase;
}

/* line 397, /opt/marast/app/assets/stylesheets/custom.scss */
.tex sub, .latex sub {
  vertical-align: -0.5ex;
  margin-left: -0.1667em;
  margin-right: -0.125em;
  top: 0;
}

/* line 404, /opt/marast/app/assets/stylesheets/custom.scss */
.tex, .latex, .tex sub, .latex sub {
  font-size: 1em;
}

/* line 408, /opt/marast/app/assets/stylesheets/custom.scss */
.latex sup {
  font-size: 0.85em;
  vertical-align: 0.15em;
  margin-left: -0.36em;
  margin-right: -0.15em;
  top: 0;
}

/* line 416, /opt/marast/app/assets/stylesheets/custom.scss */
.my-carousel-left, .my-carousel-right {
  width: 30px;
  opacity: 0.5;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}

/* line 423, /opt/marast/app/assets/stylesheets/custom.scss */
.my-carousel-left {
  float: left;
}

/* line 424, /opt/marast/app/assets/stylesheets/custom.scss */
.my-carousel-right {
  float: right;
}

/* line 426, /opt/marast/app/assets/stylesheets/custom.scss */
.my-carousel-left span, .my-carousel-right span {
  font-size: 27px;
}

/* line 430, /opt/marast/app/assets/stylesheets/custom.scss */
.tasks-navbar .nav > li > a,
.tests-navbar .nav > li > a {
  padding: 10px 12px;
}

/* line 435, /opt/marast/app/assets/stylesheets/custom.scss */
.bottom-navigation-buttons {
  border-top: solid 1px #265a88;
  padding-top: 10px;
}

/* line 440, /opt/marast/app/assets/stylesheets/custom.scss */
#alt-page {
  height: 30px;
  text-align: center;
  margin-bottom: 15px;
  line-height: 30px;
}

/* line 447, /opt/marast/app/assets/stylesheets/custom.scss */
.problem-properties,
.topic-properties,
.tag-properties,
.test-properties,
.problem-properties {
  padding-top: 15px;
  padding-bottom: 5px;
  border-top: 1px solid #ccc;
}

/* line 457, /opt/marast/app/assets/stylesheets/custom.scss */
.problem-properties h2,
.topic-properties h2,
.tag-properties h2,
.test-properties h2,
.problem-properties h2 {
  margin-top: 0;
}

/* line 465, /opt/marast/app/assets/stylesheets/custom.scss */
.problem-properties:first-of-type,
.topic-properties:first-of-type,
.tag-properties:first-of-type,
.test-properties:first-of-type,
.problem-properties:first-of-type {
  border-top: none;
}

/* password */
/* line 475, /opt/marast/app/assets/stylesheets/custom.scss */
div.has-password {
  font-size: 18px;
}

/* vertical text */
/* line 481, /opt/marast/app/assets/stylesheets/custom.scss */
th.vertical-header {
  text-align: center;
  vertical-align: bottom;
  height: 150px;
}

/* line 487, /opt/marast/app/assets/stylesheets/custom.scss */
th.vertical-header > div {
  transform: rotate(290deg);
  transform-origin: left bottom 0;
  width: 13px;
  white-space: nowrap;
}

/* line 494, /opt/marast/app/assets/stylesheets/custom.scss */
th.vertical-header > div > span {
  /*padding-top: 5px;*/
  /*padding: 5px 10px;*/
}

/* Star checkbox */
/* line 501, /opt/marast/app/assets/stylesheets/custom.scss */
input[type='checkbox'].icon-checkbox {
  display: none;
}

/* line 503, /opt/marast/app/assets/stylesheets/custom.scss */
input[type='checkbox'].icon-checkbox + span .unchecked {
  display: inline;
}

/* line 504, /opt/marast/app/assets/stylesheets/custom.scss */
input[type='checkbox'].icon-checkbox + span .checked {
  display: none;
}

/* line 506, /opt/marast/app/assets/stylesheets/custom.scss */
input[type='checkbox']:checked.icon-checkbox + span .unchecked {
  display: none;
}

/* line 507, /opt/marast/app/assets/stylesheets/custom.scss */
input[type='checkbox']:checked.icon-checkbox + span .checked {
  display: inline;
}

/* line 509, /opt/marast/app/assets/stylesheets/custom.scss */
span.glyphicon.icon-checkbox, span.icon-checkbox.fa.fa-remove, span.icon-checkbox.fa.fa-chevron-right, span.icon-checkbox.fa.fa-sort-desc {
  font-size: 200%;
}

/* Scroll to the top button */
/* line 513, /opt/marast/app/assets/stylesheets/custom.scss */
#btn-scroll-to-top {
  display: none;
  position: fixed;
  bottom: 4%;
  right: 3%;
  z-index: 999;
  border: none;
  outline: none;
  background-color: rgba(100, 100, 100, 0.5);
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 10px;
  font-size: 120%;
}

/* line 529, /opt/marast/app/assets/stylesheets/custom.scss */
#btn-scroll-to-top:hover {
  background-color: rgba(251, 171, 24, 0.5);
}

/* Spoilers */
/* https://stackoverflow.com/questions/34259171/how-can-i-implement-a-spoiler-quote-with-just-css */
/* line 536, /opt/marast/app/assets/stylesheets/custom.scss */
.spoiler, .spoiler > * {
  transition: color 0.5s, opacity 0.5s;
}

/* line 537, /opt/marast/app/assets/stylesheets/custom.scss */
.spoiler:not(:hover) {
  color: transparent;
  background: gray;
}

/* line 538, /opt/marast/app/assets/stylesheets/custom.scss */
.spoiler:not(:hover) > * {
  opacity: 0;
}

/* line 5, /opt/marast/app/assets/stylesheets/lectures.scss */
ol.lectures-toc-0 {
  padding-left: 1.8em;
  list-style-type: decimal;
}

/* line 10, /opt/marast/app/assets/stylesheets/lectures.scss */
ol.lectures-toc-1 {
  padding-left: 1.8em;
  list-style-type: decimal;
}

/* line 5, /opt/marast/app/assets/stylesheets/quizzes.scss */
.quiz-filter .form-group {
  margin-left: inherit !important;
  margin-right: inherit !important;
}

/* line 10, /opt/marast/app/assets/stylesheets/quizzes.scss */
.quiz-filtered-problems {
  max-height: 500px;
  overflow-y: scroll;
}

/* line 14, /opt/marast/app/assets/stylesheets/quizzes.scss */
.row-prepared-quiz {
  margin-bottom: 20px;
}

/* line 21, /opt/marast/app/assets/stylesheets/quizzes.scss */
.question-code-mirror .CodeMirror {
  font-family: inherit;
  display: block;
  width: 100%;
  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 39, /opt/marast/app/assets/stylesheets/quizzes.scss */
.question-code-mirror .CodeMirror-focused {
  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 45, /opt/marast/app/assets/stylesheets/quizzes.scss */
.question-code-mirror .CodeMirror-line, .question-code-mirror .CodeMirror-lines {
  padding: 0px;
}
/* line 48, /opt/marast/app/assets/stylesheets/quizzes.scss */
.question-code-mirror .cm-atom, .question-code-mirror .cm-bracket {
  color: inherit;
}
/* line 51, /opt/marast/app/assets/stylesheets/quizzes.scss */
.question-code-mirror span.CodeMirror-matchingbracket {
  color: #31be49 !important;
}

/* The toggle for the tests in summary */
/* line 7, /opt/marast/app/assets/stylesheets/problems.scss */
.symbolic.panel-heading .accordion-toggle {
  font-size: 80%;
}

/* line 12, /opt/marast/app/assets/stylesheets/problems.scss */
.symbolic.panel-heading .accordion-toggle:hover {
  text-decoration: none !important;
}

/* line 17, /opt/marast/app/assets/stylesheets/problems.scss */
.symbolic.panel-heading .accordion-toggle:after {
  font-family: 'Glyphicons Halflings';
  content: "\2212";
  float: right;
  color: grey;
}

/* line 24, /opt/marast/app/assets/stylesheets/problems.scss */
.symbolic.panel-heading .accordion-toggle.collapsed:after {
  content: "\2b";
}

/*==========================================================*/
/* Dragging and dropping the tests in editation */
/* line 34, /opt/marast/app/assets/stylesheets/problems.scss */
ul#symbolic-tests {
  counter-reset: num-symbolic-tests;
}
/* line 37, /opt/marast/app/assets/stylesheets/problems.scss */
ul#symbolic-tests li:not(.dragged) {
  counter-increment: num-symbolic-tests;
}
/* line 41, /opt/marast/app/assets/stylesheets/problems.scss */
ul#symbolic-tests li.dragged {
  position: absolute;
  opacity: 0.5;
  z-index: 2000;
}

/* line 50, /opt/marast/app/assets/stylesheets/problems.scss */
ul#symbolic-tests li.dragged .panel-heading {
  padding-top: 15px;
  padding-bottom: 15px;
}
/* line 53, /opt/marast/app/assets/stylesheets/problems.scss */
ul#symbolic-tests li.dragged .panel-heading:before {
  content: '';
}

/* line 58, /opt/marast/app/assets/stylesheets/problems.scss */
ul#symbolic-tests li.placeholder {
  position: relative;
  margin: 0;
  padding: 0;
  border: none;
  height: 93px;
}
/* line 64, /opt/marast/app/assets/stylesheets/problems.scss */
ul#symbolic-tests li.placeholder:before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  margin-top: -5px;
  left: -5px;
  top: -4px;
  border: 5px solid transparent;
  border-left-color: black;
  border-right: none;
}

/* line 78, /opt/marast/app/assets/stylesheets/problems.scss */
ul#symbolic-tests .panel-heading {
  cursor: move;
}
/* line 81, /opt/marast/app/assets/stylesheets/problems.scss */
ul#symbolic-tests .panel-heading:before {
  content: counter(num-symbolic-tests) ". ";
}
/* line 84, /opt/marast/app/assets/stylesheets/problems.scss */
ul#symbolic-tests .panel-heading .pull-right {
  margin-top: -5px;
}

/* line 1, /opt/marast/app/assets/stylesheets/calculator.scss */
.btn-calc {
  padding: 6px;
  line-height: 0;
  position: relative;
  top: -5px;
}
/* line 7, /opt/marast/app/assets/stylesheets/calculator.scss */
.btn-calc svg {
  width: 21px;
  height: 24px;
}

/* line 13, /opt/marast/app/assets/stylesheets/calculator.scss */
.calc {
  -moz-user-select: none;
  -webkit-user-select: none;
  padding: 7px;
  box-shadow: 0px 3px 6px -4px #4e4e4e;
  display: none;
}
/* line 20, /opt/marast/app/assets/stylesheets/calculator.scss */
.calc #calc-ui {
  display: none;
}
/* line 24, /opt/marast/app/assets/stylesheets/calculator.scss */
.calc .c-row {
  display: flex;
}
/* line 27, /opt/marast/app/assets/stylesheets/calculator.scss */
.calc .c-row .btn {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
  margin: 1px;
  font-weight: bold;
}
/* line 35, /opt/marast/app/assets/stylesheets/calculator.scss */
.calc .c-row h3 {
  margin: 0;
}
/* line 40, /opt/marast/app/assets/stylesheets/calculator.scss */
.calc #calc-result,
.calc #calc-query {
  font-family: monospace;
  line-break: anywhere;
}
/* line 46, /opt/marast/app/assets/stylesheets/calculator.scss */
.calc .w-20 {
  width: 20%;
}
/* line 50, /opt/marast/app/assets/stylesheets/calculator.scss */
.calc .w-25 {
  width: 25%;
}
/* line 54, /opt/marast/app/assets/stylesheets/calculator.scss */
.calc .w-40 {
  width: 40%;
}
/* line 58, /opt/marast/app/assets/stylesheets/calculator.scss */
.calc .w-100 {
  width: 100%;
}
