/* Dashboard Moderno - Estilos Avanzados */

/* Variables CSS para consistencia de colores */
:root {
  --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --success-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  --warning-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --info-gradient: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
  --dark-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --purple-gradient: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
  --orange-gradient: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
  
  --shadow-light: 0 5px 15px rgba(0,0,0,0.1);
  --shadow-medium: 0 8px 25px rgba(0,0,0,0.15);
  --shadow-heavy: 0 15px 35px rgba(0,0,0,0.2);
  
  --border-radius: 15px;
  --border-radius-small: 8px;
  --transition: all 0.3s ease;
}

/* Dashboard Cards con gradientes y efectos modernos */
.dashboard-card {
  background: var(--primary-gradient);
  border: none;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-medium);
  transition: var(--transition);
  color: white;
  overflow: hidden;
  position: relative;
}

.dashboard-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, transparent 50%);
  opacity: 0;
  transition: var(--transition);
}

.dashboard-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-heavy);
}

.dashboard-card:hover::before {
  opacity: 1;
}

.dashboard-card.warning {
  background: var(--warning-gradient);
}

.dashboard-card.success {
  background: var(--success-gradient);
}

.dashboard-card.info {
  background: var(--info-gradient);
}

.dashboard-card.dark {
  background: var(--dark-gradient);
}

.dashboard-card.purple {
  background: var(--purple-gradient);
  color: #333;
}

/* Métricas con animaciones */
.metric-value {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 0;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  background: linear-gradient(45deg, currentColor, rgba(255,255,255,0.8));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { opacity: 1; }
  50% { opacity: 0.8; }
  100% { opacity: 1; }
}

.metric-label {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 0;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.metric-icon {
  font-size: 3rem;
  opacity: 0.8;
  margin-right: 15px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Contenedores de gráficas mejorados */
.chart-container {
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  padding: 20px;
  margin-bottom: 20px;
  border: 2px solid #f8f9fa;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.chart-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.5s;
}

.chart-container:hover {
  box-shadow: var(--shadow-medium);
  transform: translateY(-2px);
}

.chart-container:hover::before {
  left: 100%;
}

.chart-title {
  color: #2c3e50;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
  font-size: 1.1rem;
  position: relative;
  padding-bottom: 10px;
}

.chart-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #667eea, #764ba2);
  border-radius: 2px;
}

.chart-title i {
  margin-right: 8px;
  color: #667eea;
}

/* Loading spinner mejorado */
.loading-spinner {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 300px;
  flex-direction: column;
}

.spinner {
  border: 4px solid #f3f3f3;
  border-top: 4px solid #667eea;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
  position: relative;
}

.spinner::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border: 4px solid transparent;
  border-top: 4px solid #764ba2;
  border-radius: 50%;
  animation: spin 2s linear infinite reverse;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Métricas de productividad */
.productivity-metric {
  text-align: center;
  padding: 15px;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border-radius: var(--border-radius-small);
  transition: var(--transition);
}

.productivity-metric:hover {
  background: linear-gradient(135deg, #e9ecef, #dee2e6);
  transform: scale(1.02);
}

.productivity-value {
  font-size: 1.8rem;
  font-weight: bold;
  color: #2980b9;
  margin-bottom: 5px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.productivity-label {
  font-size: 0.85rem;
  color: #7f8c8d;
  margin-top: 5px;
  font-weight: 500;
}

/* Barras de progreso personalizadas */
.progress-bar-custom {
  height: 8px;
  border-radius: 4px;
  background: #ecf0f1;
  margin-top: 10px;
  overflow: hidden;
  position: relative;
}

.progress-bar-custom::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: progressShimmer 2s infinite;
}

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

.progress-fill {
  height: 100%;
  border-radius: 4px;
  transition: width 0.3s ease;
  position: relative;
}

/* Alertas y métricas especiales */
.alert-metric {
  background: linear-gradient(135deg, #ff6b6b, #ff8e88);
  color: white;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 10px;
  text-align: center;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
}

.alert-metric:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-medium);
}

.alert-metric i {
  margin-right: 8px;
  animation: blink 2s infinite;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0.5; }
}

/* Notificaciones del dashboard */
.dashboard-notification {
  background: linear-gradient(135deg, #fff3cd, #ffeaa7);
  border: 1px solid #ffeaa7;
  border-radius: var(--border-radius-small);
  padding: 10px 15px;
  margin-bottom: 15px;
  color: #856404;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.dashboard-notification::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #667eea, #764ba2);
}

.dashboard-notification:hover {
  background: linear-gradient(135deg, #ffeaa7, #fdcb6e);
  transform: translateX(5px);
}

.dashboard-notification i {
  margin-right: 8px;
  color: #667eea;
}

/* Efectos para gráficas de Chart.js */
.chart-container canvas {
  transition: var(--transition);
}

.chart-container:hover canvas {
  filter: brightness(1.05);
}

/* Responsive design */
@media (max-width: 768px) {
  .metric-value {
    font-size: 1.8rem;
  }
  
  .metric-icon {
    font-size: 2rem;
    margin-right: 10px;
  }
  
  .chart-container {
    padding: 15px;
  }
  
  .productivity-metric {
    padding: 10px;
  }
}

@media (max-width: 576px) {
  .dashboard-card .panel-body {
    padding: 15px !important;
  }
  
  .metric-value {
    font-size: 1.5rem;
  }
  
  .metric-label {
    font-size: 0.8rem;
  }
  
  .chart-title {
    font-size: 1rem;
  }
}

/* Animaciones de entrada para elementos */
.fadeInUp {
  animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fadeInLeft {
  animation: fadeInLeft 0.6s ease-out;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Tema oscuro (opcional) */
@media (prefers-color-scheme: dark) {
  .chart-container {
    background: #2c3e50;
    color: #ecf0f1;
    border-color: #34495e;
  }
  
  .chart-title {
    color: #ecf0f1;
  }
  
  .productivity-metric {
    background: linear-gradient(135deg, #34495e, #2c3e50);
    color: #ecf0f1;
  }
  
  .dashboard-notification {
    background: linear-gradient(135deg, #34495e, #2c3e50);
    color: #ecf0f1;
    border-color: #34495e;
  }
}

/* Mejoras de accesibilidad */
.dashboard-card:focus,
.chart-container:focus {
  outline: 3px solid #667eea;
  outline-offset: 2px;
}

.metric-value:focus,
.productivity-value:focus {
  outline: 2px solid #667eea;
  outline-offset: 1px;
}

/* Efectos adicionales para interactividad */
.chart-container {
  cursor: pointer;
}

.dashboard-card {
  cursor: pointer;
}

.dashboard-card:active {
  transform: translateY(-3px) scale(0.98);
}

.chart-container:active {
  transform: translateY(0) scale(0.98);
}
/* Asegurar que los dropdowns tengan el estilo correcto */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  background-color: #ffffff;
  border: 1px solid #cccccc;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
}

.dropdown.open .dropdown-menu,
.dropdown-menu.open {
  display: block !important;
}

.dropdown-toggle {
  cursor: pointer;
}

.dropdown-menu > li > a {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: normal;
  line-height: 1.428571429;
  color: #333333;
  white-space: nowrap;
  text-decoration: none;
}

.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
  color: #262626;
  text-decoration: none;
  background-color: #f5f5f5;
}

/* Forzar visibilidad cuando tiene la clase open */
.dropdown.open > .dropdown-menu {
  display: block !important;
}
/* line 1, app/assets/stylesheets/scaffolds.scss */
body {
  background-color: #fff;
  color: #333;
  margin: 33px;
}

/* line 6, app/assets/stylesheets/scaffolds.scss */
body, p, ol, ul, td {
  font-family: verdana, arial, helvetica, sans-serif;
  font-size: 13px;
  line-height: 18px;
}

/* line 11, app/assets/stylesheets/scaffolds.scss */
pre {
  background-color: #eee;
  padding: 10px;
  font-size: 11px;
}

/* line 16, app/assets/stylesheets/scaffolds.scss */
a {
  color: #337ab7;
}

/* line 19, app/assets/stylesheets/scaffolds.scss */
a:visited {
  color: #666;
}

/* line 22, app/assets/stylesheets/scaffolds.scss */
a:hover {
  color: #8b0000;
  background-color: #ffcccc;
  text-decoration: underline;
}

/* line 27, app/assets/stylesheets/scaffolds.scss */
th {
  padding-bottom: 5px;
}

/* line 30, app/assets/stylesheets/scaffolds.scss */
td {
  padding: 0 5px 7px;
}

/* line 33, app/assets/stylesheets/scaffolds.scss */
div.field,
div.actions {
  margin-bottom: 10px;
}

/* line 37, app/assets/stylesheets/scaffolds.scss */
#notice {
  color: green;
}

/* line 40, app/assets/stylesheets/scaffolds.scss */
.field_with_errors {
  padding: 2px;
  background-color: red;
  display: table;
}

/* line 45, app/assets/stylesheets/scaffolds.scss */
#error_explanation {
  width: 450px;
  border: 2px solid red;
  padding: 7px 7px 0;
  margin-bottom: 20px;
  background-color: #f0f0f0;
}

/* line 52, app/assets/stylesheets/scaffolds.scss */
#error_explanation h2 {
  text-align: left;
  font-weight: bold;
  padding: 5px 5px 5px 15px;
  font-size: 12px;
  margin: -7px -7px 0;
  background-color: #c00;
  color: #fff;
}

/* line 61, app/assets/stylesheets/scaffolds.scss */
#error_explanation ul li {
  font-size: 12px;
  list-style: square;
}

/* line 65, app/assets/stylesheets/scaffolds.scss */
label {
  display: block;
}
@charset "UTF-8";
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
 * or vendor/assets/stylesheets of plugins, if any, can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the 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.
 *




 */
/*!
 * Bootstrap v3.4.1 (https://getbootstrap.com/)
 * Copyright 2011-2019 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
/* line 9, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@font-face {
  font-family: "Glyphicons Halflings";
  src: url(/assets/bootstrap/glyphicons-halflings-regular-0805fb1fe24235f70a639f67514990e4bfb6d2cfb00ca563ad4b553c240ddc33.eot);
  src: url(/assets/bootstrap/glyphicons-halflings-regular-0805fb1fe24235f70a639f67514990e4bfb6d2cfb00ca563ad4b553c240ddc33.eot?#iefix) format("embedded-opentype"), url(/assets/bootstrap/glyphicons-halflings-regular-403acfcf0cbaebd1c28b404eec442cea53642644b3a73f91c5a4ab46859af772.woff2) format("woff2"), url(/assets/bootstrap/glyphicons-halflings-regular-0703369a358a012c0011843ae337a8a20270c336948a8668df5cb89a8827299b.woff) format("woff"), url(/assets/bootstrap/glyphicons-halflings-regular-7c9caa5f4e16169b0129fdf93c84e85ad14d6c107eb1b0ad60b542daf01ee1f0.ttf) format("truetype"), url(/assets/bootstrap/glyphicons-halflings-regular-22d0c88a49d7d0ebe45627143a601061a32a46a9b9afd2dc7f457436f5f15f6e.svg#glyphicons_halflingsregular) format("svg");
}

/* line 24, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_glyphicons.scss */
.glyphicon {
  position: relative;
  top: 1px;
  display: inline-block;
  font-family: "Glyphicons Halflings";
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* line 93, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_scaffolding.scss */
.img-thumbnail {
  padding: 4px;
  line-height: 1.428571429;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  max-width: 100%;
  height: auto;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* line 11, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

/* line 27, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  float: left;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* line 17, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */
.table-hover > tbody > tr > td.active:hover,
.table-hover > tbody > tr > th.active:hover, .table-hover > tbody > tr.active:hover > td, .table-hover > tbody > tr:hover > .active, .table-hover > tbody > tr.active:hover > th {
  background-color: #e8e8e8;
}

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

/* line 17, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */
.table-hover > tbody > tr > td.success:hover,
.table-hover > tbody > tr > th.success:hover, .table-hover > tbody > tr.success:hover > td, .table-hover > tbody > tr:hover > .success, .table-hover > tbody > tr.success:hover > th {
  background-color: #d0e9c6;
}

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

/* line 17, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */
.table-hover > tbody > tr > td.info:hover,
.table-hover > tbody > tr > th.info:hover, .table-hover > tbody > tr.info:hover > td, .table-hover > tbody > tr:hover > .info, .table-hover > tbody > tr.info:hover > th {
  background-color: #c4e3f3;
}

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

/* line 17, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */
.table-hover > tbody > tr > td.warning:hover,
.table-hover > tbody > tr > th.warning:hover, .table-hover > tbody > tr.warning:hover > td, .table-hover > tbody > tr:hover > .warning, .table-hover > tbody > tr.warning:hover > th {
  background-color: #faf2cc;
}

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

/* line 17, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */
.table-hover > tbody > tr > td.danger:hover,
.table-hover > tbody > tr > th.danger:hover, .table-hover > tbody > tr.danger:hover > td, .table-hover > tbody > tr:hover > .danger, .table-hover > tbody > tr.danger:hover > th {
  background-color: #ebcccc;
}

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

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

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

/* line 20, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 20px;
  font-size: 21px;
  line-height: inherit;
  color: #333333;
  border: 0;
  border-bottom: 1px solid #e5e5e5;
}

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

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

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

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

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

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

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

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

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

/* line 133, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
.form-control {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.428571429;
  color: #555555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

/* line 254, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
.radio input[type="radio"],
.radio-inline input[type="radio"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
  position: absolute;
  margin-top: 4px \9;
  margin-left: -20px;
}

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

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

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

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

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

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

/* line 71, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
.input-sm, .input-group-sm > .form-control,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .btn {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}

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

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

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

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

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

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

/* line 71, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
.input-lg, .input-group-lg > .form-control,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .btn {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}

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

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

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

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

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

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

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

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

/* line 388, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
.form-control-feedback {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: block;
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  pointer-events: none;
}

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

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

/* line 8, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
.has-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline, .has-success.radio label, .has-success.checkbox label, .has-success.radio-inline label, .has-success.checkbox-inline label {
  color: #3c763d;
}

/* line 21, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
.has-success .form-control {
  border-color: #3c763d;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

/* line 24, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
.has-success .form-control:focus {
  border-color: #2b542c;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
}

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

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

/* line 8, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
.has-warning .help-block,
.has-warning .control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline, .has-warning.radio label, .has-warning.checkbox label, .has-warning.radio-inline label, .has-warning.checkbox-inline label {
  color: #8a6d3b;
}

/* line 21, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
.has-warning .form-control {
  border-color: #8a6d3b;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

/* line 24, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
.has-warning .form-control:focus {
  border-color: #66512c;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
}

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

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

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

/* line 21, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
.has-error .form-control {
  border-color: #a94442;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

/* line 24, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
.has-error .form-control:focus {
  border-color: #843534;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* line 39, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
.btn:active, .btn.active {
  background-image: none;
  outline: 0;
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* line 101, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
.btn-link, .btn-link:active, .btn-link.active, .btn-link[disabled], fieldset[disabled] .btn-link {
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* line 7, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
.caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px dashed;
  border-top: 4px solid \9;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}

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

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

/* line 31, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  font-size: 14px;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
}

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

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

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

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

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

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

/* line 107, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus {
  text-decoration: none;
  cursor: not-allowed;
  background-color: transparent;
  background-image: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* line 116, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group.open .dropdown-toggle {
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

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

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

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

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

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

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

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

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

/* line 162, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group-vertical > .btn + .btn,
.btn-group-vertical > .btn + .btn-group,
.btn-group-vertical > .btn-group + .btn,
.btn-group-vertical > .btn-group + .btn-group {
  margin-top: -1px;
  margin-left: 0;
}

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

/* line 175, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group-vertical > .btn:first-child:not(:last-child) {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

/* line 179, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group-vertical > .btn:last-child:not(:first-child) {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}

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

/* line 188, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

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

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

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

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

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

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

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

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

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

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

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

/* line 63, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group-addon:not(:first-child):not(:last-child),
.input-group-btn:not(:first-child):not(:last-child),
.input-group .form-control:not(:first-child):not(:last-child) {
  border-radius: 0;
}

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

/* line 77, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group-addon {
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  color: #555555;
  text-align: center;
  background-color: #eeeeee;
  border: 1px solid #ccc;
  border-radius: 4px;
}

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

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

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

/* line 108, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group .form-control:first-child,
.input-group-addon:first-child,
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group > .btn,
.input-group-btn:first-child > .dropdown-toggle,
.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

/* line 117, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group-addon:first-child {
  border-right: 0;
}

/* line 120, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group .form-control:last-child,
.input-group-addon:last-child,
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group > .btn,
.input-group-btn:last-child > .dropdown-toggle,
.input-group-btn:first-child > .btn:not(:first-child),
.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

/* line 129, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group-addon:last-child {
  border-left: 0;
}

/* line 135, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group-btn {
  position: relative;
  font-size: 0;
  white-space: nowrap;
}

/* line 144, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group-btn > .btn {
  position: relative;
}

/* line 146, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group-btn > .btn + .btn {
  margin-left: -1px;
}

/* line 150, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group-btn > .btn:hover, .input-group-btn > .btn:focus, .input-group-btn > .btn:active {
  z-index: 2;
}

/* line 159, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group {
  margin-right: -1px;
}

/* line 165, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group {
  z-index: 2;
  margin-left: -1px;
}

/* line 9, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

/* line 14, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.nav:before, .nav:after {
  display: table;
  content: " ";
}

/* line 19, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.nav:after {
  clear: both;
}

/* line 15, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav > li {
  position: relative;
  display: block;
}

/* line 19, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav > li > a {
  position: relative;
  display: block;
  padding: 10px 15px;
}

/* line 23, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav > li > a:hover, .nav > li > a:focus {
  text-decoration: none;
  background-color: #eeeeee;
}

/* line 31, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav > li.disabled > a {
  color: #777777;
}

/* line 34, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav > li.disabled > a:hover, .nav > li.disabled > a:focus {
  color: #777777;
  text-decoration: none;
  cursor: not-allowed;
  background-color: transparent;
}

/* line 46, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav .open > a, .nav .open > a:hover, .nav .open > a:focus {
  background-color: #eeeeee;
  border-color: #337ab7;
}

/* line 59, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav .nav-divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}

/* line 66, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav > li > a > img {
  max-width: none;
}

/* line 76, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav-tabs {
  border-bottom: 1px solid #ddd;
}

/* line 78, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav-tabs > li {
  float: left;
  margin-bottom: -1px;
}

/* line 84, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav-tabs > li > a {
  margin-right: 2px;
  line-height: 1.428571429;
  border: 1px solid transparent;
  border-radius: 4px 4px 0 0;
}

/* line 89, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav-tabs > li > a:hover {
  border-color: #eeeeee #eeeeee #ddd;
}

/* line 96, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
  color: #555555;
  cursor: default;
  background-color: #fff;
  border: 1px solid #ddd;
  border-bottom-color: transparent;
}

/* line 118, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav-pills > li {
  float: left;
}

/* line 122, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav-pills > li > a {
  border-radius: 4px;
}

/* line 125, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav-pills > li + li {
  margin-left: 2px;
}

/* line 131, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus {
  color: #fff;
  background-color: #337ab7;
}

/* line 144, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav-stacked > li {
  float: none;
}

/* line 146, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav-stacked > li + li {
  margin-top: 2px;
  margin-left: 0;
}

/* line 160, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav-justified, .nav-tabs.nav-justified {
  width: 100%;
}

/* line 163, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav-justified > li, .nav-tabs.nav-justified > li {
  float: none;
}

/* line 165, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav-justified > li > a, .nav-tabs.nav-justified > li > a {
  margin-bottom: 5px;
  text-align: center;
}

/* line 171, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}

@media (min-width: 768px) {
  /* line 177, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
  .nav-justified > li, .nav-tabs.nav-justified > li {
    display: table-cell;
    width: 1%;
  }
  /* line 180, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
  .nav-justified > li > a, .nav-tabs.nav-justified > li > a {
    margin-bottom: 0;
  }
}

/* line 190, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav-tabs-justified, .nav-tabs.nav-justified {
  border-bottom: 0;
}

/* line 193, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a {
  margin-right: 0;
  border-radius: 4px;
}

/* line 199, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a,
.nav-tabs-justified > .active > a:hover,
.nav-tabs-justified > .active > a:focus {
  border: 1px solid #ddd;
}

@media (min-width: 768px) {
  /* line 206, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
  .nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a {
    border-bottom: 1px solid #ddd;
    border-radius: 4px 4px 0 0;
  }
  /* line 210, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
  .nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a,
.nav-tabs-justified > .active > a:hover,
.nav-tabs-justified > .active > a:focus {
    border-bottom-color: #fff;
  }
}

/* line 224, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.tab-content > .tab-pane {
  display: none;
}

/* line 227, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.tab-content > .active {
  display: block;
}

/* line 237, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

/* line 11, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar {
  position: relative;
  min-height: 50px;
  margin-bottom: 20px;
  border: 1px solid transparent;
}

/* line 14, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.navbar:before, .navbar:after {
  display: table;
  content: " ";
}

/* line 19, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.navbar:after {
  clear: both;
}

@media (min-width: 768px) {
  /* line 11, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar {
    border-radius: 4px;
  }
}

/* line 14, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.navbar-header:before, .navbar-header:after {
  display: table;
  content: " ";
}

/* line 19, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.navbar-header:after {
  clear: both;
}

@media (min-width: 768px) {
  /* line 31, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-header {
    float: left;
  }
}

/* line 50, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-collapse {
  padding-right: 15px;
  padding-left: 15px;
  overflow-x: visible;
  border-top: 1px solid transparent;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  -webkit-overflow-scrolling: touch;
}

/* line 14, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.navbar-collapse:before, .navbar-collapse:after {
  display: table;
  content: " ";
}

/* line 19, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.navbar-collapse:after {
  clear: both;
}

/* line 59, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-collapse.in {
  overflow-y: auto;
}

@media (min-width: 768px) {
  /* line 50, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-collapse {
    width: auto;
    border-top: 0;
    box-shadow: none;
  }
  /* line 68, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-collapse.collapse {
    display: block !important;
    height: auto !important;
    padding-bottom: 0;
    overflow: visible !important;
  }
  /* line 75, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-collapse.in {
    overflow-y: visible;
  }
  /* line 81, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-fixed-top .navbar-collapse, .navbar-static-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse {
    padding-right: 0;
    padding-left: 0;
  }
}

/* line 90, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-fixed-top,
.navbar-fixed-bottom {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1030;
}

/* line 92, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-fixed-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
  max-height: 340px;
}

@media (max-device-width: 480px) and (orientation: landscape) {
  /* line 92, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-fixed-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
    max-height: 200px;
  }
}

@media (min-width: 768px) {
  /* line 90, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-fixed-top,
.navbar-fixed-bottom {
    border-radius: 0;
  }
}

/* line 112, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-fixed-top {
  top: 0;
  border-width: 0 0 1px;
}

/* line 116, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-fixed-bottom {
  bottom: 0;
  margin-bottom: 0;
  border-width: 1px 0 0;
}

/* line 129, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.container > .navbar-header,
.container > .navbar-collapse,
.container-fluid > .navbar-header,
.container-fluid > .navbar-collapse {
  margin-right: -15px;
  margin-left: -15px;
}

@media (min-width: 768px) {
  /* line 129, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .container > .navbar-header,
.container > .navbar-collapse,
.container-fluid > .navbar-header,
.container-fluid > .navbar-collapse {
    margin-right: 0;
    margin-left: 0;
  }
}

/* line 149, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-static-top {
  z-index: 1000;
  border-width: 0 0 1px;
}

@media (min-width: 768px) {
  /* line 149, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-static-top {
    border-radius: 0;
  }
}

/* line 161, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-brand {
  float: left;
  height: 50px;
  padding: 15px 15px;
  font-size: 18px;
  line-height: 20px;
}

/* line 168, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-brand:hover, .navbar-brand:focus {
  text-decoration: none;
}

/* line 173, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-brand > img {
  display: block;
}

@media (min-width: 768px) {
  /* line 178, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar > .container .navbar-brand, .navbar > .container-fluid .navbar-brand {
    margin-left: -15px;
  }
}

/* line 191, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-toggle {
  position: relative;
  float: right;
  padding: 9px 10px;
  margin-right: 15px;
  margin-top: 8px;
  margin-bottom: 8px;
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}

/* line 204, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-toggle:focus {
  outline: 0;
}

/* line 209, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-toggle .icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px;
}

/* line 215, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-toggle .icon-bar + .icon-bar {
  margin-top: 4px;
}

@media (min-width: 768px) {
  /* line 191, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-toggle {
    display: none;
  }
}

/* line 230, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-nav {
  margin: 7.5px -15px;
}

/* line 233, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-nav > li > a {
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 20px;
}

@media (max-width: 767px) {
  /* line 241, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-nav .open .dropdown-menu {
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    background-color: transparent;
    border: 0;
    box-shadow: none;
  }
  /* line 249, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-nav .open .dropdown-menu > li > a,
.navbar-nav .open .dropdown-menu .dropdown-header {
    padding: 5px 15px 5px 25px;
  }
  /* line 253, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-nav .open .dropdown-menu > li > a {
    line-height: 20px;
  }
  /* line 255, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-nav .open .dropdown-menu > li > a:focus {
    background-image: none;
  }
}

@media (min-width: 768px) {
  /* line 230, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-nav {
    float: left;
    margin: 0;
  }
  /* line 268, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-nav > li {
    float: left;
  }
  /* line 270, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-nav > li > a {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}

/* line 284, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-form {
  padding: 10px 15px;
  margin-right: -15px;
  margin-left: -15px;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  margin-top: 8px;
  margin-bottom: 8px;
}

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

@media (max-width: 767px) {
  /* line 296, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-form .form-group {
    margin-bottom: 5px;
  }
  /* line 300, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-form .form-group:last-child {
    margin-bottom: 0;
  }
}

@media (min-width: 768px) {
  /* line 284, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-form {
    width: auto;
    padding-top: 0;
    padding-bottom: 0;
    margin-right: 0;
    margin-left: 0;
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
}

/* line 325, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-nav > li > .dropdown-menu {
  margin-top: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

/* line 330, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
  margin-bottom: 0;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

/* line 341, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-btn {
  margin-top: 8px;
  margin-bottom: 8px;
}

/* line 344, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-btn.btn-sm, .btn-group-sm > .navbar-btn.btn {
  margin-top: 10px;
  margin-bottom: 10px;
}

/* line 347, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-btn.btn-xs, .btn-group-xs > .navbar-btn.btn {
  margin-top: 14px;
  margin-bottom: 14px;
}

/* line 357, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-text {
  margin-top: 15px;
  margin-bottom: 15px;
}

@media (min-width: 768px) {
  /* line 357, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-text {
    float: left;
    margin-right: 15px;
    margin-left: 15px;
  }
}

@media (min-width: 768px) {
  /* line 377, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-left {
    float: left !important;
  }
  /* line 380, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-right {
    float: right !important;
    margin-right: -15px;
  }
  /* line 384, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-right ~ .navbar-right {
    margin-right: 0;
  }
}

/* line 395, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default {
  background-color: #f8f8f8;
  border-color: #e7e7e7;
}

/* line 399, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-brand {
  color: #777;
}

/* line 401, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus {
  color: #5e5e5e;
  background-color: transparent;
}

/* line 408, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-text {
  color: #777;
}

/* line 413, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-nav > li > a {
  color: #777;
}

/* line 416, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus {
  color: #333;
  background-color: transparent;
}

/* line 423, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus {
  color: #555;
  background-color: #e7e7e7;
}

/* line 431, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-nav > .disabled > a, .navbar-default .navbar-nav > .disabled > a:hover, .navbar-default .navbar-nav > .disabled > a:focus {
  color: #ccc;
  background-color: transparent;
}

/* line 442, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus {
  color: #555;
  background-color: #e7e7e7;
}

@media (max-width: 767px) {
  /* line 453, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-default .navbar-nav .open .dropdown-menu > li > a {
    color: #777;
  }
  /* line 455, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #333;
    background-color: transparent;
  }
  /* line 462, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #555;
    background-color: #e7e7e7;
  }
  /* line 470, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #ccc;
    background-color: transparent;
  }
}

/* line 481, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-toggle {
  border-color: #ddd;
}

/* line 483, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
  background-color: #ddd;
}

/* line 487, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-toggle .icon-bar {
  background-color: #888;
}

/* line 492, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
  border-color: #e7e7e7;
}

/* line 502, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-link {
  color: #777;
}

/* line 504, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-link:hover {
  color: #333;
}

/* line 509, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .btn-link {
  color: #777;
}

/* line 511, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .btn-link:hover, .navbar-default .btn-link:focus {
  color: #333;
}

/* line 517, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .btn-link[disabled]:hover, .navbar-default .btn-link[disabled]:focus, fieldset[disabled] .navbar-default .btn-link:hover, fieldset[disabled] .navbar-default .btn-link:focus {
  color: #ccc;
}

/* line 527, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse {
  background-color: #222;
  border-color: #090909;
}

/* line 531, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-brand {
  color: #9d9d9d;
}

/* line 533, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-brand:hover, .navbar-inverse .navbar-brand:focus {
  color: #fff;
  background-color: transparent;
}

/* line 540, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-text {
  color: #9d9d9d;
}

/* line 545, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-nav > li > a {
  color: #9d9d9d;
}

/* line 548, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-nav > li > a:hover, .navbar-inverse .navbar-nav > li > a:focus {
  color: #fff;
  background-color: transparent;
}

/* line 555, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse .navbar-nav > .active > a:focus {
  color: #fff;
  background-color: #090909;
}

/* line 563, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-nav > .disabled > a, .navbar-inverse .navbar-nav > .disabled > a:hover, .navbar-inverse .navbar-nav > .disabled > a:focus {
  color: #444;
  background-color: transparent;
}

/* line 573, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:hover, .navbar-inverse .navbar-nav > .open > a:focus {
  color: #fff;
  background-color: #090909;
}

@media (max-width: 767px) {
  /* line 584, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
    border-color: #090909;
  }
  /* line 587, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
    background-color: #090909;
  }
  /* line 590, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
    color: #9d9d9d;
  }
  /* line 592, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #fff;
    background-color: transparent;
  }
  /* line 599, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #fff;
    background-color: #090909;
  }
  /* line 607, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #444;
    background-color: transparent;
  }
}

/* line 619, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-toggle {
  border-color: #333;
}

/* line 621, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-toggle:hover, .navbar-inverse .navbar-toggle:focus {
  background-color: #333;
}

/* line 625, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-toggle .icon-bar {
  background-color: #fff;
}

/* line 630, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-collapse,
.navbar-inverse .navbar-form {
  border-color: #101010;
}

/* line 635, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-link {
  color: #9d9d9d;
}

/* line 637, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-link:hover {
  color: #fff;
}

/* line 642, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .btn-link {
  color: #9d9d9d;
}

/* line 644, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .btn-link:hover, .navbar-inverse .btn-link:focus {
  color: #fff;
}

/* line 650, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .btn-link[disabled]:hover, .navbar-inverse .btn-link[disabled]:focus, fieldset[disabled] .navbar-inverse .btn-link:hover, fieldset[disabled] .navbar-inverse .btn-link:focus {
  color: #444;
}

/* line 6, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_breadcrumbs.scss */
.breadcrumb {
  padding: 8px 15px;
  margin-bottom: 20px;
  list-style: none;
  background-color: #f5f5f5;
  border-radius: 4px;
}

/* line 13, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_breadcrumbs.scss */
.breadcrumb > li {
  display: inline-block;
}

/* line 16, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_breadcrumbs.scss */
.breadcrumb > li + li:before {
  padding: 0 5px;
  color: #ccc;
  content: "/ ";
}

/* line 25, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_breadcrumbs.scss */
.breadcrumb > .active {
  color: #777777;
}

/* line 4, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pagination.scss */
.pagination {
  display: inline-block;
  padding-left: 0;
  margin: 20px 0;
  border-radius: 4px;
}

/* line 10, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pagination.scss */
.pagination > li {
  display: inline;
}

/* line 12, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pagination.scss */
.pagination > li > a,
.pagination > li > span {
  position: relative;
  float: left;
  padding: 6px 12px;
  margin-left: -1px;
  line-height: 1.428571429;
  color: #337ab7;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #ddd;
}

/* line 24, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pagination.scss */
.pagination > li > a:hover, .pagination > li > a:focus,
.pagination > li > span:hover,
.pagination > li > span:focus {
  z-index: 2;
  color: #23527c;
  background-color: #eeeeee;
  border-color: #ddd;
}

/* line 33, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pagination.scss */
.pagination > li:first-child > a,
.pagination > li:first-child > span {
  margin-left: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

/* line 40, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pagination.scss */
.pagination > li:last-child > a,
.pagination > li:last-child > span {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

/* line 49, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pagination.scss */
.pagination > .active > a, .pagination > .active > a:hover, .pagination > .active > a:focus,
.pagination > .active > span,
.pagination > .active > span:hover,
.pagination > .active > span:focus {
  z-index: 3;
  color: #fff;
  cursor: default;
  background-color: #337ab7;
  border-color: #337ab7;
}

/* line 61, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pagination.scss */
.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
  color: #777777;
  cursor: not-allowed;
  background-color: #fff;
  border-color: #ddd;
}

/* line 5, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_pagination.scss */
.pagination-lg > li > a,
.pagination-lg > li > span {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
}

/* line 12, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_pagination.scss */
.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}

/* line 18, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_pagination.scss */
.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}

/* line 5, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_pagination.scss */
.pagination-sm > li > a,
.pagination-sm > li > span {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
}

/* line 12, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_pagination.scss */
.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}

/* line 18, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_pagination.scss */
.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}

/* line 6, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pager.scss */
.pager {
  padding-left: 0;
  margin: 20px 0;
  text-align: center;
  list-style: none;
}

/* line 14, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.pager:before, .pager:after {
  display: table;
  content: " ";
}

/* line 19, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.pager:after {
  clear: both;
}

/* line 12, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pager.scss */
.pager li {
  display: inline;
}

/* line 14, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pager.scss */
.pager li > a,
.pager li > span {
  display: inline-block;
  padding: 5px 14px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 15px;
}

/* line 23, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pager.scss */
.pager li > a:hover,
.pager li > a:focus {
  text-decoration: none;
  background-color: #eeeeee;
}

/* line 31, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pager.scss */
.pager .next > a,
.pager .next > span {
  float: right;
}

/* line 38, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pager.scss */
.pager .previous > a,
.pager .previous > span {
  float: left;
}

/* line 45, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pager.scss */
.pager .disabled > a,
.pager .disabled > a:hover,
.pager .disabled > a:focus,
.pager .disabled > span {
  color: #777777;
  cursor: not-allowed;
  background-color: #fff;
}

/* line 5, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_labels.scss */
.label {
  display: inline;
  padding: .2em .6em .3em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: .25em;
}

/* line 20, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_labels.scss */
.label:empty {
  display: none;
}

/* line 25, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_labels.scss */
.btn .label {
  position: relative;
  top: -1px;
}

/* line 33, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_labels.scss */
a.label:hover, a.label:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

/* line 44, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_labels.scss */
.label-default {
  background-color: #777777;
}

/* line 7, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_labels.scss */
.label-default[href]:hover, .label-default[href]:focus {
  background-color: #5e5e5e;
}

/* line 48, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_labels.scss */
.label-primary {
  background-color: #337ab7;
}

/* line 7, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_labels.scss */
.label-primary[href]:hover, .label-primary[href]:focus {
  background-color: #286090;
}

/* line 52, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_labels.scss */
.label-success {
  background-color: #5cb85c;
}

/* line 7, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_labels.scss */
.label-success[href]:hover, .label-success[href]:focus {
  background-color: #449d44;
}

/* line 56, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_labels.scss */
.label-info {
  background-color: #5bc0de;
}

/* line 7, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_labels.scss */
.label-info[href]:hover, .label-info[href]:focus {
  background-color: #31b0d5;
}

/* line 60, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_labels.scss */
.label-warning {
  background-color: #f0ad4e;
}

/* line 7, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_labels.scss */
.label-warning[href]:hover, .label-warning[href]:focus {
  background-color: #ec971f;
}

/* line 64, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_labels.scss */
.label-danger {
  background-color: #d9534f;
}

/* line 7, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_labels.scss */
.label-danger[href]:hover, .label-danger[href]:focus {
  background-color: #c9302c;
}

/* line 7, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_badges.scss */
.badge {
  display: inline-block;
  min-width: 10px;
  padding: 3px 7px;
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  background-color: #777777;
  border-radius: 10px;
}

/* line 22, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_badges.scss */
.badge:empty {
  display: none;
}

/* line 27, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_badges.scss */
.btn .badge {
  position: relative;
  top: -1px;
}

/* line 32, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_badges.scss */
.btn-xs .badge, .btn-group-xs > .btn .badge {
  top: 0;
  padding: 1px 5px;
}

/* line 41, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_badges.scss */
.list-group-item.active > .badge, .nav-pills > .active > a > .badge {
  color: #337ab7;
  background-color: #fff;
}

/* line 47, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_badges.scss */
.list-group-item > .badge {
  float: right;
}

/* line 51, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_badges.scss */
.list-group-item > .badge + .badge {
  margin-right: 5px;
}

/* line 55, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_badges.scss */
.nav-pills > li > a > .badge {
  margin-left: 3px;
}

/* line 62, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_badges.scss */
a.badge:hover, a.badge:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

/* line 6, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_jumbotron.scss */
.jumbotron {
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 30px;
  color: inherit;
  background-color: #eeeeee;
}

/* line 13, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_jumbotron.scss */
.jumbotron h1,
.jumbotron .h1 {
  color: inherit;
}

/* line 18, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_jumbotron.scss */
.jumbotron p {
  margin-bottom: 15px;
  font-size: 21px;
  font-weight: 200;
}

/* line 24, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_jumbotron.scss */
.jumbotron > hr {
  border-top-color: #d5d5d5;
}

/* line 28, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_jumbotron.scss */
.container .jumbotron, .container-fluid .jumbotron {
  padding-right: 15px;
  padding-left: 15px;
  border-radius: 6px;
}

/* line 35, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_jumbotron.scss */
.jumbotron .container {
  max-width: 100%;
}

@media screen and (min-width: 768px) {
  /* line 6, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_jumbotron.scss */
  .jumbotron {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  /* line 43, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_jumbotron.scss */
  .container .jumbotron, .container-fluid .jumbotron {
    padding-right: 60px;
    padding-left: 60px;
  }
  /* line 49, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_jumbotron.scss */
  .jumbotron h1,
.jumbotron .h1 {
    font-size: 63px;
  }
}

/* line 7, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_thumbnails.scss */
.thumbnail {
  display: block;
  padding: 4px;
  margin-bottom: 20px;
  line-height: 1.428571429;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  -webkit-transition: border 0.2s ease-in-out;
  -o-transition: border 0.2s ease-in-out;
  transition: border 0.2s ease-in-out;
}

/* line 17, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_thumbnails.scss */
.thumbnail > img,
.thumbnail a > img {
  display: block;
  max-width: 100%;
  height: auto;
  margin-right: auto;
  margin-left: auto;
}

/* line 27, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_thumbnails.scss */
.thumbnail .caption {
  padding: 9px;
  color: #333333;
}

/* line 34, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_thumbnails.scss */
a.thumbnail:hover,
a.thumbnail:focus,
a.thumbnail.active {
  border-color: #337ab7;
}

/* line 9, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_alerts.scss */
.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
}

/* line 16, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_alerts.scss */
.alert h4 {
  margin-top: 0;
  color: inherit;
}

/* line 22, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_alerts.scss */
.alert .alert-link {
  font-weight: bold;
}

/* line 27, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_alerts.scss */
.alert > p,
.alert > ul {
  margin-bottom: 0;
}

/* line 32, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_alerts.scss */
.alert > p + p {
  margin-top: 5px;
}

/* line 42, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_alerts.scss */
.alert-dismissable,
.alert-dismissible {
  padding-right: 35px;
}

/* line 47, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_alerts.scss */
.alert-dismissable .close,
.alert-dismissible .close {
  position: relative;
  top: -2px;
  right: -21px;
  color: inherit;
}

/* line 59, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_alerts.scss */
.alert-success {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}

/* line 8, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_alerts.scss */
.alert-success hr {
  border-top-color: #c9e2b3;
}

/* line 12, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_alerts.scss */
.alert-success .alert-link {
  color: #2b542c;
}

/* line 63, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_alerts.scss */
.alert-info {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1;
}

/* line 8, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_alerts.scss */
.alert-info hr {
  border-top-color: #a6e1ec;
}

/* line 12, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_alerts.scss */
.alert-info .alert-link {
  color: #245269;
}

/* line 67, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_alerts.scss */
.alert-warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
}

/* line 8, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_alerts.scss */
.alert-warning hr {
  border-top-color: #f7e1b5;
}

/* line 12, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_alerts.scss */
.alert-warning .alert-link {
  color: #66512c;
}

/* line 71, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_alerts.scss */
.alert-danger {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}

/* line 8, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_alerts.scss */
.alert-danger hr {
  border-top-color: #e4b9c0;
}

/* line 12, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_alerts.scss */
.alert-danger .alert-link {
  color: #843534;
}

@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}

@keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}

/* line 26, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_progress-bars.scss */
.progress {
  height: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  background-color: #f5f5f5;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* line 36, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_progress-bars.scss */
.progress-bar {
  float: left;
  width: 0%;
  height: 100%;
  font-size: 12px;
  line-height: 20px;
  color: #fff;
  text-align: center;
  background-color: #337ab7;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  -webkit-transition: width 0.6s ease;
  -o-transition: width 0.6s ease;
  transition: width 0.6s ease;
}

/* line 54, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_progress-bars.scss */
.progress-striped .progress-bar,
.progress-bar-striped {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 40px 40px;
}

/* line 64, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_progress-bars.scss */
.progress.active .progress-bar,
.progress-bar.active {
  -webkit-animation: progress-bar-stripes 2s linear infinite;
  -o-animation: progress-bar-stripes 2s linear infinite;
  animation: progress-bar-stripes 2s linear infinite;
}

/* line 73, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_progress-bars.scss */
.progress-bar-success {
  background-color: #5cb85c;
}

/* line 7, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_progress-bar.scss */
.progress-striped .progress-bar-success {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}

/* line 77, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_progress-bars.scss */
.progress-bar-info {
  background-color: #5bc0de;
}

/* line 7, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_progress-bar.scss */
.progress-striped .progress-bar-info {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}

/* line 81, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_progress-bars.scss */
.progress-bar-warning {
  background-color: #f0ad4e;
}

/* line 7, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_progress-bar.scss */
.progress-striped .progress-bar-warning {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}

/* line 85, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_progress-bars.scss */
.progress-bar-danger {
  background-color: #d9534f;
}

/* line 7, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_progress-bar.scss */
.progress-striped .progress-bar-danger {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}

/* line 1, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_media.scss */
.media {
  margin-top: 15px;
}

/* line 5, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_media.scss */
.media:first-child {
  margin-top: 0;
}

/* line 10, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_media.scss */
.media,
.media-body {
  overflow: hidden;
  zoom: 1;
}

/* line 16, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_media.scss */
.media-body {
  width: 10000px;
}

/* line 20, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_media.scss */
.media-object {
  display: block;
}

/* line 24, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_media.scss */
.media-object.img-thumbnail {
  max-width: none;
}

/* line 29, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_media.scss */
.media-right,
.media > .pull-right {
  padding-left: 10px;
}

/* line 34, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_media.scss */
.media-left,
.media > .pull-left {
  padding-right: 10px;
}

/* line 39, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_media.scss */
.media-left,
.media-right,
.media-body {
  display: table-cell;
  vertical-align: top;
}

/* line 46, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_media.scss */
.media-middle {
  vertical-align: middle;
}

/* line 50, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_media.scss */
.media-bottom {
  vertical-align: bottom;
}

/* line 55, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_media.scss */
.media-heading {
  margin-top: 0;
  margin-bottom: 5px;
}

/* line 63, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_media.scss */
.media-list {
  padding-left: 0;
  list-style: none;
}

/* line 10, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
.list-group {
  padding-left: 0;
  margin-bottom: 20px;
}

/* line 21, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item {
  position: relative;
  display: block;
  padding: 10px 15px;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid #ddd;
}

/* line 31, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

/* line 34, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item:last-child {
  margin-bottom: 0;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}

/* line 40, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item.disabled, .list-group-item.disabled:hover, .list-group-item.disabled:focus {
  color: #777777;
  cursor: not-allowed;
  background-color: #eeeeee;
}

/* line 48, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item.disabled .list-group-item-heading, .list-group-item.disabled:hover .list-group-item-heading, .list-group-item.disabled:focus .list-group-item-heading {
  color: inherit;
}

/* line 51, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item.disabled .list-group-item-text, .list-group-item.disabled:hover .list-group-item-text, .list-group-item.disabled:focus .list-group-item-text {
  color: #777777;
}

/* line 57, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item.active, .list-group-item.active:hover, .list-group-item.active:focus {
  z-index: 2;
  color: #fff;
  background-color: #337ab7;
  border-color: #337ab7;
}

/* line 66, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item.active .list-group-item-heading,
.list-group-item.active .list-group-item-heading > small,
.list-group-item.active .list-group-item-heading > .small, .list-group-item.active:hover .list-group-item-heading,
.list-group-item.active:hover .list-group-item-heading > small,
.list-group-item.active:hover .list-group-item-heading > .small, .list-group-item.active:focus .list-group-item-heading,
.list-group-item.active:focus .list-group-item-heading > small,
.list-group-item.active:focus .list-group-item-heading > .small {
  color: inherit;
}

/* line 71, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item.active .list-group-item-text, .list-group-item.active:hover .list-group-item-text, .list-group-item.active:focus .list-group-item-text {
  color: #c7ddef;
}

/* line 83, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
a.list-group-item,
button.list-group-item {
  color: #555;
}

/* line 87, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
a.list-group-item .list-group-item-heading,
button.list-group-item .list-group-item-heading {
  color: #333;
}

/* line 92, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
a.list-group-item:hover, a.list-group-item:focus,
button.list-group-item:hover,
button.list-group-item:focus {
  color: #555;
  text-decoration: none;
  background-color: #f5f5f5;
}

/* line 100, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
button.list-group-item {
  width: 100%;
  text-align: left;
}

/* line 4, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
.list-group-item-success {
  color: #3c763d;
  background-color: #dff0d8;
}

/* line 11, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-success,
button.list-group-item-success {
  color: #3c763d;
}

/* line 14, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-success .list-group-item-heading,
button.list-group-item-success .list-group-item-heading {
  color: inherit;
}

/* line 18, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-success:hover, a.list-group-item-success:focus,
button.list-group-item-success:hover,
button.list-group-item-success:focus {
  color: #3c763d;
  background-color: #d0e9c6;
}

/* line 23, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-success.active, a.list-group-item-success.active:hover, a.list-group-item-success.active:focus,
button.list-group-item-success.active,
button.list-group-item-success.active:hover,
button.list-group-item-success.active:focus {
  color: #fff;
  background-color: #3c763d;
  border-color: #3c763d;
}

/* line 4, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
.list-group-item-info {
  color: #31708f;
  background-color: #d9edf7;
}

/* line 11, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-info,
button.list-group-item-info {
  color: #31708f;
}

/* line 14, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-info .list-group-item-heading,
button.list-group-item-info .list-group-item-heading {
  color: inherit;
}

/* line 18, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-info:hover, a.list-group-item-info:focus,
button.list-group-item-info:hover,
button.list-group-item-info:focus {
  color: #31708f;
  background-color: #c4e3f3;
}

/* line 23, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-info.active, a.list-group-item-info.active:hover, a.list-group-item-info.active:focus,
button.list-group-item-info.active,
button.list-group-item-info.active:hover,
button.list-group-item-info.active:focus {
  color: #fff;
  background-color: #31708f;
  border-color: #31708f;
}

/* line 4, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
.list-group-item-warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
}

/* line 11, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-warning,
button.list-group-item-warning {
  color: #8a6d3b;
}

/* line 14, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-warning .list-group-item-heading,
button.list-group-item-warning .list-group-item-heading {
  color: inherit;
}

/* line 18, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-warning:hover, a.list-group-item-warning:focus,
button.list-group-item-warning:hover,
button.list-group-item-warning:focus {
  color: #8a6d3b;
  background-color: #faf2cc;
}

/* line 23, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-warning.active, a.list-group-item-warning.active:hover, a.list-group-item-warning.active:focus,
button.list-group-item-warning.active,
button.list-group-item-warning.active:hover,
button.list-group-item-warning.active:focus {
  color: #fff;
  background-color: #8a6d3b;
  border-color: #8a6d3b;
}

/* line 4, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
.list-group-item-danger {
  color: #a94442;
  background-color: #f2dede;
}

/* line 11, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-danger,
button.list-group-item-danger {
  color: #a94442;
}

/* line 14, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-danger .list-group-item-heading,
button.list-group-item-danger .list-group-item-heading {
  color: inherit;
}

/* line 18, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-danger:hover, a.list-group-item-danger:focus,
button.list-group-item-danger:hover,
button.list-group-item-danger:focus {
  color: #a94442;
  background-color: #ebcccc;
}

/* line 23, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-danger.active, a.list-group-item-danger.active:hover, a.list-group-item-danger.active:focus,
button.list-group-item-danger.active,
button.list-group-item-danger.active:hover,
button.list-group-item-danger.active:focus {
  color: #fff;
  background-color: #a94442;
  border-color: #a94442;
}

/* line 121, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item-heading {
  margin-top: 0;
  margin-bottom: 5px;
}

/* line 125, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item-text {
  margin-bottom: 0;
  line-height: 1.3;
}

/* line 7, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel {
  margin-bottom: 20px;
  background-color: #fff;
  border: 1px solid transparent;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}

/* line 16, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel-body {
  padding: 15px;
}

/* line 14, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.panel-body:before, .panel-body:after {
  display: table;
  content: " ";
}

/* line 19, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.panel-body:after {
  clear: both;
}

/* line 22, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel-heading {
  padding: 10px 15px;
  border-bottom: 1px solid transparent;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}

/* line 27, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel-heading > .dropdown .dropdown-toggle {
  color: inherit;
}

/* line 33, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  color: inherit;
}

/* line 39, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel-title > a,
.panel-title > small,
.panel-title > .small,
.panel-title > small > a,
.panel-title > .small > a {
  color: inherit;
}

/* line 49, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel-footer {
  padding: 10px 15px;
  background-color: #f5f5f5;
  border-top: 1px solid #ddd;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

/* line 63, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel > .list-group,
.panel > .panel-collapse > .list-group {
  margin-bottom: 0;
}

/* line 67, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel > .list-group .list-group-item,
.panel > .panel-collapse > .list-group .list-group-item {
  border-width: 1px 0;
  border-radius: 0;
}

/* line 74, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel > .list-group:first-child .list-group-item:first-child,
.panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
  border-top: 0;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}

/* line 82, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel > .list-group:last-child .list-group-item:last-child,
.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
  border-bottom: 0;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

/* line 89, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

/* line 96, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel-heading + .list-group .list-group-item:first-child {
  border-top-width: 0;
}

/* line 100, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.list-group + .panel-footer {
  border-top-width: 0;
}

/* line 110, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table,
.panel > .table-responsive > .table,
.panel > .panel-collapse > .table {
  margin-bottom: 0;
}

/* line 115, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table caption,
.panel > .table-responsive > .table caption,
.panel > .panel-collapse > .table caption {
  padding-right: 15px;
  padding-left: 15px;
}

/* line 121, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table:first-child,
.panel > .table-responsive:first-child > .table:first-child {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}

/* line 127, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table:first-child > thead:first-child > tr:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}

/* line 131, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
  border-top-left-radius: 3px;
}

/* line 135, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
  border-top-right-radius: 3px;
}

/* line 143, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table:last-child,
.panel > .table-responsive:last-child > .table:last-child {
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

/* line 149, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

/* line 153, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
  border-bottom-left-radius: 3px;
}

/* line 157, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
  border-bottom-right-radius: 3px;
}

/* line 164, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel > .panel-body + .table,
.panel > .panel-body + .table-responsive,
.panel > .table + .panel-body,
.panel > .table-responsive + .panel-body {
  border-top: 1px solid #ddd;
}

/* line 170, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table > tbody:first-child > tr:first-child th,
.panel > .table > tbody:first-child > tr:first-child td {
  border-top: 0;
}

/* line 174, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table-bordered,
.panel > .table-responsive > .table-bordered {
  border: 0;
}

/* line 181, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table-bordered > thead > tr > th:first-child,
.panel > .table-bordered > thead > tr > td:first-child,
.panel > .table-bordered > tbody > tr > th:first-child,
.panel > .table-bordered > tbody > tr > td:first-child,
.panel > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-bordered > tfoot > tr > td:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
  border-left: 0;
}

/* line 185, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table-bordered > thead > tr > th:last-child,
.panel > .table-bordered > thead > tr > td:last-child,
.panel > .table-bordered > tbody > tr > th:last-child,
.panel > .table-bordered > tbody > tr > td:last-child,
.panel > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-bordered > tfoot > tr > td:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
  border-right: 0;
}

/* line 194, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table-bordered > thead > tr:first-child > td,
.panel > .table-bordered > thead > tr:first-child > th,
.panel > .table-bordered > tbody > tr:first-child > td,
.panel > .table-bordered > tbody > tr:first-child > th,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
  border-bottom: 0;
}

/* line 203, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table-bordered > tbody > tr:last-child > td,
.panel > .table-bordered > tbody > tr:last-child > th,
.panel > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-bordered > tfoot > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
  border-bottom: 0;
}

/* line 210, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table-responsive {
  margin-bottom: 0;
  border: 0;
}

/* line 222, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel-group {
  margin-bottom: 20px;
}

/* line 226, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel-group .panel {
  margin-bottom: 0;
  border-radius: 4px;
}

/* line 230, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel-group .panel + .panel {
  margin-top: 5px;
}

/* line 235, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel-group .panel-heading {
  border-bottom: 0;
}

/* line 238, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel-group .panel-heading + .panel-collapse > .panel-body,
.panel-group .panel-heading + .panel-collapse > .list-group {
  border-top: 1px solid #ddd;
}

/* line 244, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel-group .panel-footer {
  border-top: 0;
}

/* line 246, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel-group .panel-footer + .panel-collapse .panel-body {
  border-bottom: 1px solid #ddd;
}

/* line 254, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel-default {
  border-color: #ddd;
}

/* line 6, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-default > .panel-heading {
  color: #333333;
  background-color: #f5f5f5;
  border-color: #ddd;
}

/* line 11, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-default > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #ddd;
}

/* line 14, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-default > .panel-heading .badge {
  color: #f5f5f5;
  background-color: #333333;
}

/* line 20, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-default > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #ddd;
}

/* line 257, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel-primary {
  border-color: #337ab7;
}

/* line 6, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-primary > .panel-heading {
  color: #fff;
  background-color: #337ab7;
  border-color: #337ab7;
}

/* line 11, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-primary > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #337ab7;
}

/* line 14, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-primary > .panel-heading .badge {
  color: #337ab7;
  background-color: #fff;
}

/* line 20, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-primary > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #337ab7;
}

/* line 260, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel-success {
  border-color: #d6e9c6;
}

/* line 6, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-success > .panel-heading {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}

/* line 11, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-success > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #d6e9c6;
}

/* line 14, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-success > .panel-heading .badge {
  color: #dff0d8;
  background-color: #3c763d;
}

/* line 20, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-success > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #d6e9c6;
}

/* line 263, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel-info {
  border-color: #bce8f1;
}

/* line 6, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-info > .panel-heading {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1;
}

/* line 11, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-info > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #bce8f1;
}

/* line 14, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-info > .panel-heading .badge {
  color: #d9edf7;
  background-color: #31708f;
}

/* line 20, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-info > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #bce8f1;
}

/* line 266, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel-warning {
  border-color: #faebcc;
}

/* line 6, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-warning > .panel-heading {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
}

/* line 11, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-warning > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #faebcc;
}

/* line 14, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-warning > .panel-heading .badge {
  color: #fcf8e3;
  background-color: #8a6d3b;
}

/* line 20, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-warning > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #faebcc;
}

/* line 269, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel-danger {
  border-color: #ebccd1;
}

/* line 6, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-danger > .panel-heading {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}

/* line 11, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-danger > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #ebccd1;
}

/* line 14, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-danger > .panel-heading .badge {
  color: #f2dede;
  background-color: #a94442;
}

/* line 20, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-danger > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #ebccd1;
}

/* line 5, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-embed.scss */
.embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
}

/* line 12, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-embed.scss */
.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* line 28, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-embed.scss */
.embed-responsive-16by9 {
  padding-bottom: 56.25%;
}

/* line 33, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-embed.scss */
.embed-responsive-4by3 {
  padding-bottom: 75%;
}

/* line 7, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_wells.scss */
.well {
  min-height: 20px;
  padding: 19px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
}

/* line 15, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_wells.scss */
.well blockquote {
  border-color: #ddd;
  border-color: rgba(0, 0, 0, 0.15);
}

/* line 22, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_wells.scss */
.well-lg {
  padding: 24px;
  border-radius: 6px;
}

/* line 26, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_wells.scss */
.well-sm {
  padding: 9px;
  border-radius: 3px;
}

/* line 6, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_close.scss */
.close {
  float: right;
  font-size: 21px;
  font-weight: bold;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  filter: alpha(opacity=20);
  opacity: 0.2;
}

/* line 15, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_close.scss */
.close:hover, .close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
  filter: alpha(opacity=50);
  opacity: 0.5;
}

/* line 30, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_close.scss */
button.close {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  appearance: none;
}

/* line 11, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
.modal-open {
  overflow: hidden;
}

/* line 16, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}

/* line 32, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
.modal.fade .modal-dialog {
  -webkit-transform: translate(0, -25%);
  -ms-transform: translate(0, -25%);
  -o-transform: translate(0, -25%);
  transform: translate(0, -25%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -moz-transition: -moz-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
}

/* line 36, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
.modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}

/* line 38, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

/* line 44, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}

/* line 51, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
.modal-content {
  position: relative;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  outline: 0;
}

/* line 64, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
}

/* line 73, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
.modal-backdrop.fade {
  filter: alpha(opacity=0);
  opacity: 0;
}

/* line 74, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
.modal-backdrop.in {
  filter: alpha(opacity=50);
  opacity: 0.5;
}

/* line 79, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
}

/* line 14, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.modal-header:before, .modal-header:after {
  display: table;
  content: " ";
}

/* line 19, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.modal-header:after {
  clear: both;
}

/* line 85, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
.modal-header .close {
  margin-top: -2px;
}

/* line 90, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
.modal-title {
  margin: 0;
  line-height: 1.428571429;
}

/* line 97, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
.modal-body {
  position: relative;
  padding: 15px;
}

/* line 103, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}

/* line 14, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.modal-footer:before, .modal-footer:after {
  display: table;
  content: " ";
}

/* line 19, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.modal-footer:after {
  clear: both;
}

/* line 110, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
.modal-footer .btn + .btn {
  margin-bottom: 0;
  margin-left: 5px;
}

/* line 115, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}

/* line 119, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}

/* line 125, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 768px) {
  /* line 136, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
  .modal-dialog {
    width: 600px;
    margin: 30px auto;
  }
  /* line 140, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
  .modal-content {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  }
  /* line 145, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
  .modal-sm {
    width: 300px;
  }
}

@media (min-width: 992px) {
  /* line 149, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
  .modal-lg {
    width: 900px;
  }
}

/* line 7, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.428571429;
  line-break: auto;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  white-space: normal;
  font-size: 12px;
  filter: alpha(opacity=0);
  opacity: 0;
}

/* line 18, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.in {
  filter: alpha(opacity=90);
  opacity: 0.9;
}

/* line 19, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.top {
  padding: 5px 0;
  margin-top: -3px;
}

/* line 23, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.right {
  padding: 0 5px;
  margin-left: 3px;
}

/* line 27, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.bottom {
  padding: 5px 0;
  margin-top: 3px;
}

/* line 31, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.left {
  padding: 0 5px;
  margin-left: -3px;
}

/* line 37, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.top .tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}

/* line 44, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.top-left .tooltip-arrow {
  right: 5px;
  bottom: 0;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}

/* line 51, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.top-right .tooltip-arrow {
  bottom: 0;
  left: 5px;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}

/* line 58, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: #000;
}

/* line 65, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: #000;
}

/* line 72, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}

/* line 79, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.bottom-left .tooltip-arrow {
  top: 0;
  right: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}

/* line 86, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.bottom-right .tooltip-arrow {
  top: 0;
  left: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}

/* line 96, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 4px;
}

/* line 106, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}

/* line 6, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: none;
  max-width: 276px;
  padding: 1px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.428571429;
  line-break: auto;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  white-space: normal;
  font-size: 14px;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

/* line 26, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
.popover.top {
  margin-top: -10px;
}

/* line 27, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
.popover.right {
  margin-left: 10px;
}

/* line 28, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
.popover.bottom {
  margin-top: 10px;
}

/* line 29, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
.popover.left {
  margin-left: -10px;
}

/* line 33, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
.popover > .arrow {
  border-width: 11px;
}

/* line 36, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
.popover > .arrow, .popover > .arrow:after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}

/* line 46, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
.popover > .arrow:after {
  content: "";
  border-width: 10px;
}

/* line 52, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
.popover.top > .arrow {
  bottom: -11px;
  left: 50%;
  margin-left: -11px;
  border-top-color: #999999;
  border-top-color: rgba(0, 0, 0, 0.25);
  border-bottom-width: 0;
}

/* line 59, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
.popover.top > .arrow:after {
  bottom: 1px;
  margin-left: -10px;
  content: " ";
  border-top-color: #fff;
  border-bottom-width: 0;
}

/* line 67, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
.popover.right > .arrow {
  top: 50%;
  left: -11px;
  margin-top: -11px;
  border-right-color: #999999;
  border-right-color: rgba(0, 0, 0, 0.25);
  border-left-width: 0;
}

/* line 74, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
.popover.right > .arrow:after {
  bottom: -10px;
  left: 1px;
  content: " ";
  border-right-color: #fff;
  border-left-width: 0;
}

/* line 82, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
.popover.bottom > .arrow {
  top: -11px;
  left: 50%;
  margin-left: -11px;
  border-top-width: 0;
  border-bottom-color: #999999;
  border-bottom-color: rgba(0, 0, 0, 0.25);
}

/* line 89, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
.popover.bottom > .arrow:after {
  top: 1px;
  margin-left: -10px;
  content: " ";
  border-top-width: 0;
  border-bottom-color: #fff;
}

/* line 98, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
.popover.left > .arrow {
  top: 50%;
  right: -11px;
  margin-top: -11px;
  border-right-width: 0;
  border-left-color: #999999;
  border-left-color: rgba(0, 0, 0, 0.25);
}

/* line 105, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
.popover.left > .arrow:after {
  right: 1px;
  bottom: -10px;
  content: " ";
  border-right-width: 0;
  border-left-color: #fff;
}

/* line 115, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
.popover-title {
  padding: 8px 14px;
  margin: 0;
  font-size: 14px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-radius: 5px 5px 0 0;
}

/* line 124, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
.popover-content {
  padding: 9px 14px;
}

/* line 7, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
.carousel {
  position: relative;
}

/* line 11, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* line 16, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-inner > .item {
  position: relative;
  display: none;
  -webkit-transition: 0.6s ease-in-out left;
  -o-transition: 0.6s ease-in-out left;
  transition: 0.6s ease-in-out left;
}

/* line 22, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  display: block;
  max-width: 100%;
  height: auto;
  line-height: 1;
}

@media all and (transform-3d), (-webkit-transform-3d) {
  /* line 16, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
  .carousel-inner > .item {
    -webkit-transition: -webkit-transform 0.6s ease-in-out;
    -moz-transition: -moz-transform 0.6s ease-in-out;
    -o-transition: -o-transform 0.6s ease-in-out;
    transition: transform 0.6s ease-in-out;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000px;
    -moz-perspective: 1000px;
    perspective: 1000px;
  }
  /* line 34, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
  .carousel-inner > .item.next, .carousel-inner > .item.active.right {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    left: 0;
  }
  /* line 39, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
  .carousel-inner > .item.prev, .carousel-inner > .item.active.left {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    left: 0;
  }
  /* line 44, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
  .carousel-inner > .item.next.left, .carousel-inner > .item.prev.right, .carousel-inner > .item.active {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    left: 0;
  }
}

/* line 53, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-inner > .active,
.carousel-inner > .next,
.carousel-inner > .prev {
  display: block;
}

/* line 59, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-inner > .active {
  left: 0;
}

/* line 63, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-inner > .next,
.carousel-inner > .prev {
  position: absolute;
  top: 0;
  width: 100%;
}

/* line 70, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-inner > .next {
  left: 100%;
}

/* line 73, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-inner > .prev {
  left: -100%;
}

/* line 76, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-inner > .next.left,
.carousel-inner > .prev.right {
  left: 0;
}

/* line 81, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-inner > .active.left {
  left: -100%;
}

/* line 84, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-inner > .active.right {
  left: 100%;
}

/* line 93, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-control {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 15%;
  font-size: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  background-color: rgba(0, 0, 0, 0);
  filter: alpha(opacity=50);
  opacity: 0.5;
}

/* line 109, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-control.left {
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
  background-repeat: repeat-x;
}

/* line 112, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-control.right {
  right: 0;
  left: auto;
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
  background-repeat: repeat-x;
}

/* line 119, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-control:hover, .carousel-control:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  filter: alpha(opacity=90);
  opacity: 0.9;
}

/* line 128, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-control .icon-prev,
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: inline-block;
  margin-top: -10px;
}

/* line 138, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-control .icon-prev,
.carousel-control .glyphicon-chevron-left {
  left: 50%;
  margin-left: -10px;
}

/* line 143, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-right {
  right: 50%;
  margin-right: -10px;
}

/* line 148, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-control .icon-prev,
.carousel-control .icon-next {
  width: 20px;
  height: 20px;
  font-family: serif;
  line-height: 1;
}

/* line 157, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-control .icon-prev:before {
  content: "\2039";
}

/* line 162, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-control .icon-next:before {
  content: "\203a";
}

/* line 173, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  z-index: 15;
  width: 60%;
  padding-left: 0;
  margin-left: -30%;
  text-align: center;
  list-style: none;
}

/* line 184, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-indicators li {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 1px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #000 \9;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #fff;
  border-radius: 10px;
}

/* line 207, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-indicators .active {
  width: 12px;
  height: 12px;
  margin: 0;
  background-color: #fff;
}

/* line 218, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}

/* line 230, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-caption .btn {
  text-shadow: none;
}

@media screen and (min-width: 768px) {
  /* line 241, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
  .carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right,
.carousel-control .icon-prev,
.carousel-control .icon-next {
    width: 30px;
    height: 30px;
    margin-top: -10px;
    font-size: 30px;
  }
  /* line 250, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
  .carousel-control .glyphicon-chevron-left,
.carousel-control .icon-prev {
    margin-left: -10px;
  }
  /* line 254, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
  .carousel-control .glyphicon-chevron-right,
.carousel-control .icon-next {
    margin-right: -10px;
  }
  /* line 261, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
  .carousel-caption {
    right: 20%;
    left: 20%;
    padding-bottom: 30px;
  }
  /* line 268, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
  .carousel-indicators {
    bottom: 20px;
  }
}

/* line 14, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.clearfix:before, .clearfix:after {
  display: table;
  content: " ";
}

/* line 19, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.clearfix:after {
  clear: both;
}

/* line 12, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_utilities.scss */
.center-block {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

/* line 15, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_utilities.scss */
.pull-right {
  float: right !important;
}

/* line 18, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_utilities.scss */
.pull-left {
  float: left !important;
}

/* line 27, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_utilities.scss */
.hide {
  display: none !important;
}

/* line 30, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_utilities.scss */
.show {
  display: block !important;
}

/* line 33, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_utilities.scss */
.invisible {
  visibility: hidden;
}

/* line 36, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_utilities.scss */
.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

/* line 45, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_utilities.scss */
.hidden {
  display: none !important;
}

/* line 53, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_utilities.scss */
.affix {
  position: fixed;
}

@-ms-viewport {
  width: device-width;
}

/* line 13, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
.visible-xs {
  display: none !important;
}

/* line 13, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
.visible-sm {
  display: none !important;
}

/* line 13, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
.visible-md {
  display: none !important;
}

/* line 13, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
.visible-lg {
  display: none !important;
}

/* line 36, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important;
}

@media (max-width: 767px) {
  /* line 3, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  .visible-xs {
    display: block !important;
  }
  /* line 6, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  table.visible-xs {
    display: table !important;
  }
  /* line 7, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  tr.visible-xs {
    display: table-row !important;
  }
  /* line 8, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  th.visible-xs,
td.visible-xs {
    display: table-cell !important;
  }
}

@media (max-width: 767px) {
  /* line 54, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-xs-block {
    display: block !important;
  }
}

@media (max-width: 767px) {
  /* line 59, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-xs-inline {
    display: inline !important;
  }
}

@media (max-width: 767px) {
  /* line 64, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-xs-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  /* line 3, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  .visible-sm {
    display: block !important;
  }
  /* line 6, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  table.visible-sm {
    display: table !important;
  }
  /* line 7, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  tr.visible-sm {
    display: table-row !important;
  }
  /* line 8, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  th.visible-sm,
td.visible-sm {
    display: table-cell !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  /* line 73, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-sm-block {
    display: block !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  /* line 78, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-sm-inline {
    display: inline !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  /* line 83, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-sm-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  /* line 3, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  .visible-md {
    display: block !important;
  }
  /* line 6, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  table.visible-md {
    display: table !important;
  }
  /* line 7, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  tr.visible-md {
    display: table-row !important;
  }
  /* line 8, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  th.visible-md,
td.visible-md {
    display: table-cell !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  /* line 92, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-md-block {
    display: block !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  /* line 97, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-md-inline {
    display: inline !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  /* line 102, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-md-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 1200px) {
  /* line 3, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  .visible-lg {
    display: block !important;
  }
  /* line 6, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  table.visible-lg {
    display: table !important;
  }
  /* line 7, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  tr.visible-lg {
    display: table-row !important;
  }
  /* line 8, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  th.visible-lg,
td.visible-lg {
    display: table-cell !important;
  }
}

@media (min-width: 1200px) {
  /* line 111, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-lg-block {
    display: block !important;
  }
}

@media (min-width: 1200px) {
  /* line 116, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-lg-inline {
    display: inline !important;
  }
}

@media (min-width: 1200px) {
  /* line 121, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-lg-inline-block {
    display: inline-block !important;
  }
}

@media (max-width: 767px) {
  /* line 13, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  .hidden-xs {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  /* line 13, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  .hidden-sm {
    display: none !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  /* line 13, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  .hidden-md {
    display: none !important;
  }
}

@media (min-width: 1200px) {
  /* line 13, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  .hidden-lg {
    display: none !important;
  }
}

/* line 13, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
.visible-print {
  display: none !important;
}

@media print {
  /* line 3, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  .visible-print {
    display: block !important;
  }
  /* line 6, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  table.visible-print {
    display: table !important;
  }
  /* line 7, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  tr.visible-print {
    display: table-row !important;
  }
  /* line 8, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  th.visible-print,
td.visible-print {
    display: table-cell !important;
  }
}

/* line 155, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
.visible-print-block {
  display: none !important;
}

@media print {
  /* line 155, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-print-block {
    display: block !important;
  }
}

/* line 162, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
.visible-print-inline {
  display: none !important;
}

@media print {
  /* line 162, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-print-inline {
    display: inline !important;
  }
}

/* line 169, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
.visible-print-inline-block {
  display: none !important;
}

@media print {
  /* line 169, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-print-inline-block {
    display: inline-block !important;
  }
}

@media print {
  /* line 13, ../../../.rvm/gems/ruby-2.6.6/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  .hidden-print {
    display: none !important;
  }
}

/* Headings */
/* line 26, app/assets/stylesheets/application.css.sass */
h1, h2, h3, h4, h5, h6 {
  color: #0e0e0e;
  font-weight: 200;
  letter-spacing: -1px;
  margin: 0;
}

/* line 32, app/assets/stylesheets/application.css.sass */
h1 {
  font-size: 3.2em;
  line-height: 44px;
  margin: 0 0 44px 0;
}

/* line 37, app/assets/stylesheets/application.css.sass */
h2 {
  font-size: 2.6em;
  font-weight: 300;
  line-height: 42px;
  margin: 0 0 32px 0;
}

/* line 43, app/assets/stylesheets/application.css.sass */
h3 {
  color: #CCC;
  font-size: 1.8em;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 24px;
  margin-bottom: 33px;
  text-transform: uppercase;
}

/* line 52, app/assets/stylesheets/application.css.sass */
h4 {
  color: #CCC;
  font-size: 1.4em;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 27px;
  margin: 0 0 14px 0;
}

/* line 60, app/assets/stylesheets/application.css.sass */
h5 {
  color: #CCC;
  font-size: 1em;
  font-weight: 600;
  letter-spacing: normal;
  line-height: 18px;
  margin: 0 0 14px 0;
  text-transform: uppercase;
}

/* line 69, app/assets/stylesheets/application.css.sass */
h6 {
  color: #333;
  font-size: 1em;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 18px;
  margin: 0 0 14px 0;
}

/* line 78, app/assets/stylesheets/application.css.sass */
h1.big {
  font-size: 4.2em;
  line-height: 54px;
}

/* line 81, app/assets/stylesheets/application.css.sass */
h1.short {
  margin-bottom: 15px;
}

/* line 84, app/assets/stylesheets/application.css.sass */
h2.short {
  margin-bottom: 15px;
}

/* line 87, app/assets/stylesheets/application.css.sass */
h3.short, h4.short, h5.short, h6.short {
  margin-bottom: 9px;
}

/* line 90, app/assets/stylesheets/application.css.sass */
h1.shorter, h2.shorter, h3.shorter, h4.shorter, h5.shorter, h6.shorter {
  margin-bottom: 0;
}

/* line 93, app/assets/stylesheets/application.css.sass */
h1.tall, h2.tall, h3.tall, h4.tall, h5.tall, h6.tall {
  margin-bottom: 33px;
}

/* line 96, app/assets/stylesheets/application.css.sass */
h1.taller, h2.taller, h3.taller, h4.taller, h5.taller, h6.taller {
  margin-bottom: 44px;
}

/* line 99, app/assets/stylesheets/application.css.sass */
h1.spaced, h2.spaced, h3.spaced, h4.spaced, h5.spaced, h6.spaced {
  margin-top: 22px;
}

/* line 102, app/assets/stylesheets/application.css.sass */
h1.more-spaced, h2.more-spaced, h3.more-spaced, h4.more-spaced, h5.more-spaced, h6.more-spaced {
  margin-top: 44px;
}

/* line 105, app/assets/stylesheets/application.css.sass */
h1.dark, h2.dark, h3.dark, h4.dark, h5.dark {
  color: #0e0e0e;
}

/* line 108, app/assets/stylesheets/application.css.sass */
h1.white, h2.white, h3.white, h4.white, h5.white, h6.white {
  color: #FFF;
}

/* line 111, app/assets/stylesheets/application.css.sass */
h1.text-shadow, h2.text-shadow, h3.text-shadow, h4.text-shadow, h5.text-shadow, h6.text-shadow {
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2);
}

/* line 114, app/assets/stylesheets/application.css.sass */
h2 .inverted {
  min-height: 60px;
}

/* Modal Titles */
/* line 119, app/assets/stylesheets/application.css.sass */
.modal-header h3 {
  color: #333;
  text-transform: none;
}

/* Responsive */
@media (max-width: 479px) {
  /* line 125, app/assets/stylesheets/application.css.sass */
  h2 {
    line-height: 40px;
  }
}

@media (max-width: 767px) {
  /* line 129, app/assets/stylesheets/application.css.sass */
  h1.big {
    font-size: 3.2em;
    line-height: 42px;
  }
}

/* Blockquote */
/* line 135, app/assets/stylesheets/application.css.sass */
blockquote {
  font-size: 1em;
}

/* Paragraphs */
/* line 140, app/assets/stylesheets/application.css.sass */
p {
  color: #777777;
  line-height: 24px;
  margin: 0 0 20px;
}

/* line 144, app/assets/stylesheets/application.css.sass */
p.featured {
  font-size: 1.6em;
  line-height: 1.5em;
}

/* line 147, app/assets/stylesheets/application.css.sass */
p.short {
  margin-bottom: 0;
}

/* line 149, app/assets/stylesheets/application.css.sass */
p.tall {
  margin-bottom: 20px;
}

/* line 151, app/assets/stylesheets/application.css.sass */
p.taller {
  margin-bottom: 40px;
}

/* line 153, app/assets/stylesheets/application.css.sass */
p .alternative-font {
  display: inline-block;
  margin-top: -15px;
  position: relative;
  top: 3px;
  margin-bottom: -6px;
}

/* Labels */
/* line 163, app/assets/stylesheets/application.css.sass */
.label-primary {
  background-color: #CCC;
}

/* line 166, app/assets/stylesheets/application.css.sass */
.label-dark {
  background: #111;
  text-decoration: none;
  font-weight: normal;
}

/* line 170, app/assets/stylesheets/application.css.sass */
.label-dark:hover {
  background: #111;
  text-decoration: none;
  font-weight: normal;
}

/* Drop Caps */
/* line 178, app/assets/stylesheets/application.css.sass */
p.drop-caps:first-child:first-letter {
  float: left;
  font-size: 75px;
  line-height: 60px;
  padding: 4px;
  margin-right: 5px;
  margin-top: 5px;
  font-family: Georgia;
}

/* line 186, app/assets/stylesheets/application.css.sass */
p.drop-caps.secundary:first-child:first-letter {
  background-color: #CCC;
  color: #FFF;
  padding: 6px;
  margin-right: 5px;
  border-radius: 4px;
}

/* Alternative Font Style */
/* line 195, app/assets/stylesheets/application.css.sass */
.alternative-font {
  color: #CCC;
  font-family: "Shadows Into Light", cursive;
  font-size: 1.6em;
}

/* Navs */
/* line 203, app/assets/stylesheets/application.css.sass */
ul.nav-list.primary > li {
  margin: 0;
  padding: 0;
}

/* line 206, app/assets/stylesheets/application.css.sass */
ul.nav-list.primary > li a {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  background-image: url(/../img/list-primary.png);
  background-position: 9px 16px;
  background-repeat: no-repeat;
  border-bottom: 1px solid #EDEDDE;
  padding: 8px 20px;
}

/* line 215, app/assets/stylesheets/application.css.sass */
ul.nav-pills > li.active > a {
  background-color: #CCC;
}

/* line 217, app/assets/stylesheets/application.css.sass */
ul.nav-pills > li.active > a:hover, ul.nav-pills > li.active > a:focus {
  background-color: #CCC;
}

/* Buttons */
/* line 222, app/assets/stylesheets/application.css.sass */
.btn-primary {
  background-color: #CCC;
  border-color: #CCC;
}

/* line 225, app/assets/stylesheets/application.css.sass */
.btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active {
  background-color: #CCC;
  border-color: #CCC;
}

/* line 228, app/assets/stylesheets/application.css.sass */
.btn-primary[disabled] {
  border-color: #CCC !important;
  background-color: #CCC;
  background-image: none;
}

/* line 233, app/assets/stylesheets/application.css.sass */
.btn-icon i {
  margin-right: 10px;
}

/* line 236, app/assets/stylesheets/application.css.sass */
.btn-icon-right i {
  margin-right: 0;
  margin-left: 10px;
}

/* Forms */
/* line 242, app/assets/stylesheets/application.css.sass */
form label {
  font-weight: normal;
}

/* line 245, app/assets/stylesheets/application.css.sass */
textarea {
  resize: vertical;
}

/* line 248, app/assets/stylesheets/application.css.sass */
select {
  border: 1px solid #E5E7E9;
  border-radius: 6px;
  outline: none;
}

/* line 253, app/assets/stylesheets/application.css.sass */
.label {
  font-weight: normal;
}

/* line 256, app/assets/stylesheets/application.css.sass */
.form-group:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

/* line 264, app/assets/stylesheets/application.css.sass */
.form-control:focus {
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
  border-color: #CCC;
}

/* Forms Validations */
/* line 271, app/assets/stylesheets/application.css.sass */
label.valid {
  display: inline-block;
  text-indent: -9999px;
}

/* line 274, app/assets/stylesheets/application.css.sass */
label.error {
  color: #C10000;
  font-size: 0.9em;
  margin-top: -5px;
  padding: 0;
}

/* line 279, app/assets/stylesheets/application.css.sass */
label#captcha-error.error {
  margin-top: 15px;
}

/* Captcha */
/* line 284, app/assets/stylesheets/application.css.sass */
.captcha-control {
  clear: both;
  overflow: hidden;
  background: #F2F2F2;
  text-align: center;
  margin-bottom: 20px;
  max-width: 160px;
  height: 78px;
}

/* line 292, app/assets/stylesheets/application.css.sass */
.captcha-control input {
  border: 0;
}

/* line 295, app/assets/stylesheets/application.css.sass */
.captcha-input {
  position: relative;
  top: 15px;
  font-size: 14px;
}

/* line 300, app/assets/stylesheets/application.css.sass */
.captcha-image {
  float: left;
  position: relative;
  top: -5px;
  left: -13px;
}

/* Icons */
/* line 308, app/assets/stylesheets/application.css.sass */
.featured-icon {
  background: #CCC;
  border-radius: 35px;
  color: #FFF;
  display: inline-block;
  height: 35px;
  line-height: 35px;
  margin-right: 10px;
  position: relative;
  text-align: center;
  top: 5px;
  width: 35px;
}

/* line 320, app/assets/stylesheets/application.css.sass */
.featured-icon i {
  color: #FFF;
  font-size: 0.9em;
  font-weight: normal;
}

/* Icons List */
/* line 327, app/assets/stylesheets/application.css.sass */
ul.icons {
  list-style: none;
}

/* line 329, app/assets/stylesheets/application.css.sass */
ul.icons [class^="fa-"] {
  margin-right: 5px;
}

/* Font Awesome List */
/* line 335, app/assets/stylesheets/application.css.sass */
.fontawesome-icon-list [class*="col-md-"] {
  margin-bottom: 9px;
}

/* line 337, app/assets/stylesheets/application.css.sass */
.fontawesome-icon-list > section {
  margin-top: 25px;
}

/* Thumbnails */
/* line 342, app/assets/stylesheets/application.css.sass */
.img-thumbnail {
  border-radius: 8px;
  position: relative;
}

/* line 345, app/assets/stylesheets/application.css.sass */
.img-thumbnail .zoom {
  background: #CCC;
  border-radius: 100%;
  bottom: 8px;
  color: #FFF;
  display: block;
  height: 30px;
  padding: 6px;
  position: absolute;
  right: 8px;
  text-align: center;
  width: 30px;
}

/* line 357, app/assets/stylesheets/application.css.sass */
.img-thumbnail .zoom i {
  font-size: 14px;
  left: -1px;
  position: relative;
  top: -3px;
}

/* Thumbnail Gallery */
/* line 366, app/assets/stylesheets/application.css.sass */
ul.thumbnail-gallery {
  list-style: none;
  margin: 10px 0;
  padding: 0;
}

/* line 370, app/assets/stylesheets/application.css.sass */
ul.thumbnail-gallery li {
  display: inline-block;
  margin: 10px 10px 0 0;
  padding: 0;
}

/* line 375, app/assets/stylesheets/application.css.sass */
ul.list li {
  margin-bottom: 13px;
}

/* line 377, app/assets/stylesheets/application.css.sass */
ul.list.icons li i {
  color: #CCC;
  margin-right: 5px;
}

/* line 380, app/assets/stylesheets/application.css.sass */
ul.list.pull-left li {
  text-align: left;
}

/* line 383, app/assets/stylesheets/application.css.sass */
ul.sitemap > li > a {
  font-weight: bold;
}

/* line 386, app/assets/stylesheets/application.css.sass */
ul.sitemap.list li {
  margin: 0 0 3px 0;
}

/* line 388, app/assets/stylesheets/application.css.sass */
ul.sitemap.list ul {
  margin-bottom: 5px;
  margin-top: 5px;
}

/* Responsive */
@media (max-width: 991px) {
  /* line 394, app/assets/stylesheets/application.css.sass */
  .thumbnail {
    border: 0;
    text-align: center;
  }
}

/* List */
/* Sitemap */
/* Accordion */
/* line 405, app/assets/stylesheets/application.css.sass */
.panel-group .panel-heading {
  padding: 0;
  border-radius: 3px;
}

/* line 408, app/assets/stylesheets/application.css.sass */
.panel-group .panel-heading a {
  display: block;
  padding: 10px 15px;
}

/* line 411, app/assets/stylesheets/application.css.sass */
.panel-group .panel-heading a:hover, .panel-group .panel-heading a:focus {
  text-decoration: none;
}

/* line 413, app/assets/stylesheets/application.css.sass */
.panel-group .panel-heading a [class^="icon-"] {
  margin-right: 4px;
  position: relative;
  top: 1px;
}

/* line 417, app/assets/stylesheets/application.css.sass */
.panel-group.secundary .panel-heading a {
  color: #FFF;
}

/* Tabs */
/* line 422, app/assets/stylesheets/application.css.sass */
.tabs {
  border-radius: 4px;
  margin-bottom: 35px;
}

/* line 426, app/assets/stylesheets/application.css.sass */
.nav-tabs {
  margin: 0;
  font-size: 0;
  border-bottom-color: #EEE;
}

/* line 430, app/assets/stylesheets/application.css.sass */
.nav-tabs li {
  display: inline-block;
  float: none;
}

/* line 433, app/assets/stylesheets/application.css.sass */
.nav-tabs li:last-child a {
  margin-right: 0;
}

/* line 435, app/assets/stylesheets/application.css.sass */
.nav-tabs li a {
  border-radius: 5px 5px 0 0;
  font-size: 14px;
  margin-right: 1px;
  background: #F4F4F4;
  border-bottom: none;
  border-left: 1px solid #EEE;
  border-right: 1px solid #EEE;
  border-top: 3px solid #EEE;
  color: #CCC;
}

/* line 445, app/assets/stylesheets/application.css.sass */
.nav-tabs li a:hover {
  background: #F4F4F4;
  border-bottom: none;
  border-left: 1px solid #EEE;
  border-right: 1px solid #EEE;
  border-top: 3px solid #EEE;
  color: #CCC;
  border-bottom-color: transparent;
  border-top: 3px solid #CCC;
  box-shadow: none;
}

/* line 455, app/assets/stylesheets/application.css.sass */
.nav-tabs li a:active, .nav-tabs li a:focus {
  border-bottom: 0;
}

/* line 457, app/assets/stylesheets/application.css.sass */
.nav-tabs li.active a {
  background: #FFF;
  border-left-color: #EEE;
  border-right-color: #EEE;
  border-top: 3px solid #CCC;
  color: #CCC;
}

/* line 463, app/assets/stylesheets/application.css.sass */
.nav-tabs li.active a:hover, .nav-tabs li.active a:focus {
  background: #FFF;
  border-left-color: #EEE;
  border-right-color: #EEE;
  border-top: 3px solid #CCC;
  color: #CCC;
}

/* line 470, app/assets/stylesheets/application.css.sass */
.tab-content {
  border-radius: 0 0 4px 4px;
  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.04);
  background-color: #FFF;
  border: 1px solid #EEE;
  border-top: 0;
  padding: 15px;
}

/* Right Aligned */
/* line 480, app/assets/stylesheets/application.css.sass */
.nav-tabs.nav-right {
  text-align: right;
}

/* Bottom Tabs */
/* line 486, app/assets/stylesheets/application.css.sass */
.tabs.tabs-bottom .tab-content {
  border-radius: 4px 4px 0 0;
  border-bottom: 0;
  border-top: 1px solid #EEE;
}

/* line 490, app/assets/stylesheets/application.css.sass */
.tabs.tabs-bottom .nav-tabs {
  border-bottom: none;
  border-top: 1px solid #EEE;
}

/* line 493, app/assets/stylesheets/application.css.sass */
.tabs.tabs-bottom .nav-tabs li {
  margin-bottom: 0;
  margin-top: -1px;
}

/* line 496, app/assets/stylesheets/application.css.sass */
.tabs.tabs-bottom .nav-tabs li:last-child a {
  margin-right: 0;
}

/* line 498, app/assets/stylesheets/application.css.sass */
.tabs.tabs-bottom .nav-tabs li a {
  border-radius: 0 0 5px 5px;
  font-size: 14px;
  margin-right: 1px;
  border-bottom: 3px solid #EEE;
  border-top: 1px solid #EEE;
}

/* line 504, app/assets/stylesheets/application.css.sass */
.tabs.tabs-bottom .nav-tabs li a:hover {
  border-bottom: 3px solid #EEE;
  border-top: 1px solid #EEE;
  border-bottom: 3px solid #CCC;
  border-top: 1px solid #EEE;
}

/* line 509, app/assets/stylesheets/application.css.sass */
.tabs.tabs-bottom .nav-tabs li.active a {
  border-bottom: 3px solid #CCC;
  border-top-color: transparent;
}

/* line 512, app/assets/stylesheets/application.css.sass */
.tabs.tabs-bottom .nav-tabs li.active a:hover, .tabs.tabs-bottom .nav-tabs li.active a:focus {
  border-bottom: 3px solid #CCC;
  border-top-color: transparent;
}

/* Vertical */
/* line 518, app/assets/stylesheets/application.css.sass */
.tabs-vertical {
  display: table;
  width: 100%;
  border-top: 1px solid #EEE;
}

/* line 522, app/assets/stylesheets/application.css.sass */
.tabs-vertical .tab-content {
  display: table-cell;
  vertical-align: top;
}

/* line 525, app/assets/stylesheets/application.css.sass */
.tabs-vertical .nav-tabs {
  border-bottom: none;
  display: table-cell;
  height: 100%;
  float: none;
  padding: 0;
  vertical-align: top;
}

/* line 532, app/assets/stylesheets/application.css.sass */
.tabs-vertical .nav-tabs > li {
  display: block;
}

/* line 534, app/assets/stylesheets/application.css.sass */
.tabs-vertical .nav-tabs > li a {
  border-radius: 0;
  display: block;
  padding-top: 10px;
  border-bottom: none;
  border-top: none;
}

/* line 540, app/assets/stylesheets/application.css.sass */
.tabs-vertical .nav-tabs > li a:hover, .tabs-vertical .nav-tabs > li a:focus {
  border-bottom: none;
  border-top: none;
}

/* line 544, app/assets/stylesheets/application.css.sass */
.tabs-vertical .nav-tabs > li.active a {
  border-top: none;
}

/* line 546, app/assets/stylesheets/application.css.sass */
.tabs-vertical .nav-tabs > li.active a:hover {
  border-top: none;
}

/* line 548, app/assets/stylesheets/application.css.sass */
.tabs-vertical .nav-tabs > li.active:focus {
  border-top: none;
}

/* Vertical - Left Side */
/* line 554, app/assets/stylesheets/application.css.sass */
.tabs-left .tab-content {
  border-radius: 0 5px 5px 5px;
  border-left: none;
}

/* line 557, app/assets/stylesheets/application.css.sass */
.tabs-left .nav-tabs > li {
  margin-right: -1px;
}

/* line 559, app/assets/stylesheets/application.css.sass */
.tabs-left .nav-tabs > li:first-child a {
  border-radius: 5px 0 0 0;
}

/* line 561, app/assets/stylesheets/application.css.sass */
.tabs-left .nav-tabs > li:last-child a {
  border-radius: 0 0 0 5px;
  border-bottom: 1px solid #eee;
}

/* line 564, app/assets/stylesheets/application.css.sass */
.tabs-left .nav-tabs > li a {
  border-right: 1px solid #EEE;
  border-left: 3px solid #EEE;
  margin-right: 1px;
  margin-left: -3px;
}

/* line 569, app/assets/stylesheets/application.css.sass */
.tabs-left .nav-tabs > li a:hover {
  border-left-color: #CCC;
}

/* line 571, app/assets/stylesheets/application.css.sass */
.tabs-left .nav-tabs > li.active a {
  border-left: 3px solid #CCC;
  border-right-color: #FFF;
}

/* line 574, app/assets/stylesheets/application.css.sass */
.tabs-left .nav-tabs > li.active a:hover, .tabs-left .nav-tabs > li.active a:focus {
  border-left: 3px solid #CCC;
  border-right-color: #FFF;
}

/* Vertical - Right Side */
/* line 581, app/assets/stylesheets/application.css.sass */
.tabs-right .tab-content {
  border-radius: 5px 0 5px 5px;
  border-right: none;
}

/* line 584, app/assets/stylesheets/application.css.sass */
.tabs-right .nav-tabs > li {
  margin-left: -1px;
}

/* line 586, app/assets/stylesheets/application.css.sass */
.tabs-right .nav-tabs > li:first-child a {
  border-radius: 0 5px 0 0;
}

/* line 588, app/assets/stylesheets/application.css.sass */
.tabs-right .nav-tabs > li:last-child a {
  border-radius: 0 0 5px 0;
  border-bottom: 1px solid #eee;
}

/* line 591, app/assets/stylesheets/application.css.sass */
.tabs-right .nav-tabs > li a {
  border-right: 3px solid #EEE;
  border-left: 1px solid #EEE;
  margin-right: 1px;
  margin-left: 1px;
}

/* line 596, app/assets/stylesheets/application.css.sass */
.tabs-right .nav-tabs > li a:hover {
  border-right-color: #CCC;
}

/* line 598, app/assets/stylesheets/application.css.sass */
.tabs-right .nav-tabs > li.active a {
  border-right: 3px solid #CCC;
  border-left: 1px solid #FFF;
}

/* line 601, app/assets/stylesheets/application.css.sass */
.tabs-right .nav-tabs > li.active a:hover, .tabs-right .nav-tabs > li.active a:focus {
  border-right: 3px solid #CCC;
  border-left: 1px solid #FFF;
}

/* Justified */
/* line 607, app/assets/stylesheets/application.css.sass */
.nav-tabs.nav-justified {
  margin-bottom: -1px;
}

/* line 609, app/assets/stylesheets/application.css.sass */
.nav-tabs.nav-justified li {
  margin-bottom: 0;
}

/* line 611, app/assets/stylesheets/application.css.sass */
.nav-tabs.nav-justified li:first-child a {
  border-radius: 5px 0 0 0;
}

/* line 613, app/assets/stylesheets/application.css.sass */
.nav-tabs.nav-justified li:first-child a:hover {
  border-radius: 5px 0 0 0;
}

/* line 615, app/assets/stylesheets/application.css.sass */
.nav-tabs.nav-justified li:last-child a {
  border-radius: 0 5px 0 0;
}

/* line 617, app/assets/stylesheets/application.css.sass */
.nav-tabs.nav-justified li:last-child a:hover {
  border-radius: 0 5px 0 0;
}

/* line 619, app/assets/stylesheets/application.css.sass */
.nav-tabs.nav-justified li a {
  border-bottom: 1px solid #DDD;
  border-radius: 0;
  margin-right: 0;
}

/* line 623, app/assets/stylesheets/application.css.sass */
.nav-tabs.nav-justified li a:hover, .nav-tabs.nav-justified li a:focus {
  border-bottom: 1px solid #DDD;
}

/* line 625, app/assets/stylesheets/application.css.sass */
.nav-tabs.nav-justified li.active a {
  background: #FFF;
  border-left-color: #EEE;
  border-right-color: #EEE;
  border-top-width: 3px;
  border-bottom: 1px solid #FFF;
  border-top-width: 3px;
}

/* line 630, app/assets/stylesheets/application.css.sass */
.nav-tabs.nav-justified li.active a:hover, .nav-tabs.nav-justified li.active a:focus {
  background: #FFF;
  border-left-color: #EEE;
  border-right-color: #EEE;
  border-top-width: 3px;
}

/* line 637, app/assets/stylesheets/application.css.sass */
.nav-tabs.nav-justified li.active a:hover, .nav-tabs.nav-justified li.active a:focus {
  border-top-width: 3px;
}

/* line 639, app/assets/stylesheets/application.css.sass */
.nav-tabs.nav-justified li.active a:hover {
  border-bottom: 1px solid #FFF;
}

/* Bottom Tabs with Justified Nav */
/* line 644, app/assets/stylesheets/application.css.sass */
.tabs.tabs-bottom .nav.nav-tabs.nav-justified, .tabs.tabs-bottom .nav-tabs.nav-justified {
  border-top: none;
}

/* line 647, app/assets/stylesheets/application.css.sass */
.tabs.tabs-bottom .nav.nav-tabs.nav-justified li a, .tabs.tabs-bottom .nav-tabs.nav-justified li a {
  margin-right: 0;
  border-top-color: transparent;
}

/* line 650, app/assets/stylesheets/application.css.sass */
.tabs.tabs-bottom .nav.nav-tabs.nav-justified li:first-child a, .tabs.tabs-bottom .nav-tabs.nav-justified li:first-child a {
  border-radius: 0 0 0 5px;
}

/* line 652, app/assets/stylesheets/application.css.sass */
.tabs.tabs-bottom .nav.nav-tabs.nav-justified li:last-child a, .tabs.tabs-bottom .nav-tabs.nav-justified li:last-child a {
  margin-right: 0;
  border-radius: 0 0 5px 0;
}

/* line 655, app/assets/stylesheets/application.css.sass */
.tabs.tabs-bottom .nav.nav-tabs.nav-justified li.active a, .tabs.tabs-bottom .nav-tabs.nav-justified li.active a {
  border-top-color: transparent;
}

/* line 657, app/assets/stylesheets/application.css.sass */
.tabs.tabs-bottom .nav.nav-tabs.nav-justified li.active a:hover, .tabs.tabs-bottom .nav-tabs.nav-justified li.active a:hover, .tabs.tabs-bottom .nav.nav-tabs.nav-justified li.active a:focus, .tabs.tabs-bottom .nav-tabs.nav-justified li.active a:focus {
  border-top-color: transparent;
}

/* Responsive */
@media (max-width: 479px) {
  /* line 663, app/assets/stylesheets/application.css.sass */
  .tabs .nav.nav-tabs.nav-justified li, .tabs .nav-tabs.nav-justified li {
    display: block;
    margin-bottom: -5px;
  }
  /* line 666, app/assets/stylesheets/application.css.sass */
  .tabs .nav.nav-tabs.nav-justified li a, .tabs .nav-tabs.nav-justified li a {
    border-top-width: 3px !important;
    border-bottom-width: 0 !important;
  }
  /* line 669, app/assets/stylesheets/application.css.sass */
  .tabs .nav.nav-tabs.nav-justified li:first-child a, .tabs .nav-tabs.nav-justified li:first-child a {
    border-radius: 5px 5px 0 0;
  }
  /* line 671, app/assets/stylesheets/application.css.sass */
  .tabs .nav.nav-tabs.nav-justified li:first-child a:hover, .tabs .nav-tabs.nav-justified li:first-child a:hover {
    border-radius: 5px 5px 0 0;
  }
  /* line 673, app/assets/stylesheets/application.css.sass */
  .tabs .nav.nav-tabs.nav-justified li:last-child a, .tabs .nav-tabs.nav-justified li:last-child a {
    border-radius: 0;
  }
  /* line 675, app/assets/stylesheets/application.css.sass */
  .tabs .nav.nav-tabs.nav-justified li:last-child a:hover, .tabs .nav-tabs.nav-justified li:last-child a:hover {
    border-radius: 0;
  }
  /* line 677, app/assets/stylesheets/application.css.sass */
  .tabs.tabs-bottom .nav.nav-tabs.nav-justified li, .tabs.tabs-bottom .nav-tabs.nav-justified li {
    margin-bottom: 0;
    margin-top: -5px;
  }
  /* line 680, app/assets/stylesheets/application.css.sass */
  .tabs.tabs-bottom .nav.nav-tabs.nav-justified li a, .tabs.tabs-bottom .nav-tabs.nav-justified li a {
    border-bottom-width: 3px !important;
    border-top-width: 0 !important;
  }
  /* line 683, app/assets/stylesheets/application.css.sass */
  .tabs.tabs-bottom .nav.nav-tabs.nav-justified li:first-child a, .tabs.tabs-bottom .nav-tabs.nav-justified li:first-child a {
    border-radius: 0;
  }
  /* line 685, app/assets/stylesheets/application.css.sass */
  .tabs.tabs-bottom .nav.nav-tabs.nav-justified li:first-child a:hover, .tabs.tabs-bottom .nav-tabs.nav-justified li:first-child a:hover {
    border-radius: 0;
  }
  /* line 687, app/assets/stylesheets/application.css.sass */
  .tabs.tabs-bottom .nav.nav-tabs.nav-justified li:last-child a, .tabs.tabs-bottom .nav-tabs.nav-justified li:last-child a {
    border-radius: 0 0 5px 5px;
  }
  /* line 689, app/assets/stylesheets/application.css.sass */
  .tabs.tabs-bottom .nav.nav-tabs.nav-justified li:last-child a:hover, .tabs.tabs-bottom .nav-tabs.nav-justified li:last-child a:hover {
    border-radius: 0 0 5px 5px;
  }
}

/* Toggles */
/* line 694, app/assets/stylesheets/application.css.sass */
.toggle {
  margin: 10px 0 0;
  position: relative;
  clear: both;
}

/* line 699, app/assets/stylesheets/application.css.sass */
.toggle > input {
  cursor: pointer;
  filter: alpha(opacity=0);
  height: 45px;
  margin: 0;
  opacity: 0;
  position: absolute;
  width: 100%;
  z-index: 2;
}

/* line 708, app/assets/stylesheets/application.css.sass */
.toggle > label {
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
  background: #F4F4F4;
  border-left: 3px solid #CCC;
  border-radius: 5px;
  color: #CCC;
  display: block;
  font-size: 1.1em;
  min-height: 20px;
  padding: 12px 20px 12px 10px;
  position: relative;
  cursor: pointer;
  font-weight: 400;
}

/* line 723, app/assets/stylesheets/application.css.sass */
.toggle > label:-moz-selection {
  background: none;
}

/* line 726, app/assets/stylesheets/application.css.sass */
.toggle > label i.fa-minus {
  display: none;
}

/* line 728, app/assets/stylesheets/application.css.sass */
.toggle > label i.fa-plus {
  display: inline;
}

/* line 730, app/assets/stylesheets/application.css.sass */
.toggle > label:selection {
  background: none;
}

/* line 732, app/assets/stylesheets/application.css.sass */
.toggle > label:before {
  border: 6px solid transparent;
  border-left-color: inherit;
  content: '';
  margin-top: -6px;
  position: absolute;
  right: 4px;
  top: 50%;
}

/* line 740, app/assets/stylesheets/application.css.sass */
.toggle > label:hover {
  background: #f5f5f5;
}

/* line 742, app/assets/stylesheets/application.css.sass */
.toggle > label + p {
  color: #999;
  display: block;
  overflow: hidden;
  padding-left: 30px;
  text-overflow: ellipsis;
  white-space: nowrap;
  height: 25px;
}

/* line 750, app/assets/stylesheets/application.css.sass */
.toggle > label i {
  font-size: 0.7em;
  margin-right: 8px;
  position: relative;
  top: -1px;
}

/* line 755, app/assets/stylesheets/application.css.sass */
.toggle > .toggle-content {
  display: none;
}

/* line 757, app/assets/stylesheets/application.css.sass */
.toggle > .toggle-content > p {
  margin-bottom: 0;
  padding: 10px 0;
}

/* line 762, app/assets/stylesheets/application.css.sass */
.toggle.active i.fa-minus {
  display: inline;
}

/* line 764, app/assets/stylesheets/application.css.sass */
.toggle.active i.fa-plus {
  display: none;
}

/* line 767, app/assets/stylesheets/application.css.sass */
.toggle.active > label {
  background: #F4F4F4;
  border-color: #CCC;
}

/* line 770, app/assets/stylesheets/application.css.sass */
.toggle.active > label:before {
  border: 6px solid transparent;
  border-top-color: #FFF;
  margin-top: -3px;
  right: 10px;
}

/* line 775, app/assets/stylesheets/application.css.sass */
.toggle.active > p {
  white-space: normal;
}

/* line 777, app/assets/stylesheets/application.css.sass */
.toggle > p.preview-active {
  height: auto;
  white-space: normal;
}

/* Owl Carousel */
/* line 783, app/assets/stylesheets/application.css.sass */
.owl-carousel {
  position: relative;
  z-index: 1;
}

/* line 786, app/assets/stylesheets/application.css.sass */
.owl-carousel .owl-wrapper-outer {
  border-radius: 4px;
}

/* line 788, app/assets/stylesheets/application.css.sass */
.owl-carousel .thumbnail {
  max-width: 99%;
}

/* line 790, app/assets/stylesheets/application.css.sass */
.owl-carousel .img-responsive {
  display: inline-block;
}

/* line 793, app/assets/stylesheets/application.css.sass */
.owl-carousel-spaced {
  margin-left: -5px;
}

/* line 795, app/assets/stylesheets/application.css.sass */
.owl-carousel-spaced .owl-item > div {
  margin: 5px;
}

/* line 798, app/assets/stylesheets/application.css.sass */
.owl-theme .owl-controls {
  margin-top: 20px;
}

/* line 800, app/assets/stylesheets/application.css.sass */
.owl-theme .owl-controls .owl-buttons div {
  border-radius: 4px;
  border-bottom: 2px solid transparent;
  filter: alpha(opacity=100);
  opacity: 1;
  padding: 1px 9px;
  margin: 2px;
}

/* Owl Carousel - Highlight */
/* line 810, app/assets/stylesheets/application.css.sass */
.highlight_section .owl-theme .owl-controls .owl-page span {
  background-color: #FFF;
}

/* Responsive */
@media (max-width: 479px) {
  /* line 815, app/assets/stylesheets/application.css.sass */
  .owl-carousel-spaced {
    margin-left: 0;
  }
}

/* Video */
/* line 820, app/assets/stylesheets/application.css.sass */
.video_section {
  -webkit-transform: translate3d(0, 0, 0);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  margin: 70px 0;
  padding: 50px 0;
  position: relative;
  overflow: hidden;
  width: 100%;
}

/* line 829, app/assets/stylesheets/application.css.sass */
.video_section blockquote {
  border: 0;
  padding: 0 10%;
}

/* line 832, app/assets/stylesheets/application.css.sass */
.video_section blockquote i.fa-quote-left {
  font-size: 34px;
  position: relative;
  left: -5px;
}

/* line 836, app/assets/stylesheets/application.css.sass */
.video_section blockquote p {
  font-size: 24px;
  line-height: 30px;
}

/* line 839, app/assets/stylesheets/application.css.sass */
.video_section blockquote span {
  font-size: 16px;
  line-height: 20px;
  color: #999;
  position: relative;
  left: -5px;
}

/* line 845, app/assets/stylesheets/application.css.sass */
.video_section .container {
  position: relative;
  z-index: 3;
}

/* line 848, app/assets/stylesheets/application.css.sass */
.video_section .video-overlay {
  background: transparent url(/../img/video-overlay.png) repeat 0 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

/* line 859, app/assets/stylesheets/application.css.sass */
html.boxed .video_section > div:first-child {
  z-index: 0 !important;
}

/* line 861, app/assets/stylesheets/application.css.sass */
html.boxed .video_section > div:first-child video {
  z-index: 0 !important;
}

/* Popup */
/* line 866, app/assets/stylesheets/application.css.sass */
.popup-inline-content {
  background: none repeat scroll 0 0 #FFF;
  margin: 40px auto;
  max-width: 1170px;
  padding: 20px 30px;
  position: relative;
  text-align: left;
  display: none;
}

/* Magnific Popup */
/* line 877, app/assets/stylesheets/application.css.sass */
.mfp-wrap .popup-inline-content {
  display: block;
}

/* Miscellaneous */
/* line 882, app/assets/stylesheets/application.css.sass */
body a {
  outline: none !important;
}

/* line 885, app/assets/stylesheets/application.css.sass */
li {
  line-height: 24px;
}

/* line 888, app/assets/stylesheets/application.css.sass */
.center {
  text-align: center;
}

/* line 891, app/assets/stylesheets/application.css.sass */
.push-bottom {
  margin-bottom: 35px;
}

/* line 894, app/assets/stylesheets/application.css.sass */
.push-top {
  margin-top: 35px;
}

/* line 897, app/assets/stylesheets/application.css.sass */
.bold {
  font-weight: bold;
}

/* line 900, app/assets/stylesheets/application.css.sass */
.inverted {
  color: #FFF;
  display: inline-block;
  padding-left: 10px;
  padding-right: 10px;
}

/* Clearfix */
/* line 908, app/assets/stylesheets/application.css.sass */
.clearfix {
  display: inline-block;
}

/* line 910, app/assets/stylesheets/application.css.sass */
.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

/* line 918, app/assets/stylesheets/application.css.sass */
html[xmlns] .clearfix {
  display: block;
}

/* line 921, app/assets/stylesheets/application.css.sass */
* html .clearfix {
  height: 1%;
}

/* Pagination */
/* line 928, app/assets/stylesheets/application.css.sass */
.pagination > li > a, .pagination > li > span, .pagination > li > a:hover, .pagination > li > span:hover, .pagination > li > a:focus, .pagination > li > span:focus {
  color: #CCC;
}

/* line 931, app/assets/stylesheets/application.css.sass */
.pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus {
  background-color: #CCC;
  border-color: #CCC;
}

/* Divider Line */
/* line 937, app/assets/stylesheets/application.css.sass */
hr {
  background-image: -webkit-linear-gradient(left, transparent, rgba(0, 0, 0, 0.2), transparent);
  background-image: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.2), transparent);
  border: 0;
  height: 1px;
  margin: 22px 0 22px 0;
}

/* line 943, app/assets/stylesheets/application.css.sass */
hr.short {
  margin: 11px 0 11px 0;
}

/* line 945, app/assets/stylesheets/application.css.sass */
hr.tall {
  margin: 44px 0 44px 0;
}

/* line 947, app/assets/stylesheets/application.css.sass */
hr.taller {
  margin: 66px 0 66px 0;
}

/* line 949, app/assets/stylesheets/application.css.sass */
hr.light {
  background-image: -webkit-linear-gradient(left, transparent, rgba(255, 255, 255, 0.2), transparent);
  background-image: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
}

/* line 952, app/assets/stylesheets/application.css.sass */
hr.invisible {
  background: none;
}

/* Read More */
/* line 957, app/assets/stylesheets/application.css.sass */
.read-more, .learn-more {
  display: inline-block;
  white-space: nowrap;
}

/* Offset Anchor */
/* line 963, app/assets/stylesheets/application.css.sass */
.offset-anchor {
  display: block;
  position: relative;
  visibility: hidden;
  top: -100px;
}

/* Responsive */
@media (max-width: 991px) {
  /* line 971, app/assets/stylesheets/application.css.sass */
  .offset-anchor {
    top: 0;
  }
}

/* Show Grid */
/* line 976, app/assets/stylesheets/application.css.sass */
.show-grid [class*="col-md-"] .show-grid-block {
  background-color: #EEE;
  line-height: 40px;
  min-height: 40px;
  text-align: center;
  border: 1px solid #FFF;
  display: block;
}

/* Font Awesome */
/* line 987, app/assets/stylesheets/application.css.sass */
.fontawesome-icon-list [class*="col-md-"] {
  margin-bottom: 9px;
}

/* line 989, app/assets/stylesheets/application.css.sass */
.fontawesome-icon-list i {
  font-size: 1.3em;
  margin-right: 5px;
  display: inline-block;
  width: 30px;
  text-align: center;
  position: relative;
  top: 2px;
}

/* Alert Admin */
/* line 1000, app/assets/stylesheets/application.css.sass */
.alert-admin {
  margin: 25px 0;
}

/* line 1002, app/assets/stylesheets/application.css.sass */
.alert-admin img {
  margin: -50px 0 0;
}

/* line 1004, app/assets/stylesheets/application.css.sass */
.alert-admin .btn {
  margin: 0 0 -15px;
}

/* line 1006, app/assets/stylesheets/application.css.sass */
.alert-admin p {
  color: #444;
}

/* line 1008, app/assets/stylesheets/application.css.sass */
.alert-admin h4 {
  color: #111;
  font-size: 1.2em;
  font-weight: 600;
  text-transform: uppercase;
}

/* line 1013, app/assets/stylesheets/application.css.sass */
.alert-admin .warning {
  color: #B20000;
}

/* Sort Source Wrapper */
/* line 1018, app/assets/stylesheets/application.css.sass */
.sort-source-wrapper {
  padding: 8px 0;
  position: relative;
}

/* line 1021, app/assets/stylesheets/application.css.sass */
.sort-source-wrapper .nav {
  margin: -100px 0 5px;
}

/* line 1024, app/assets/stylesheets/application.css.sass */
.sort-source-wrapper .nav > li > a {
  color: #FFF;
  background: transparent;
}

/* line 1027, app/assets/stylesheets/application.css.sass */
.sort-source-wrapper .nav > li > a:hover, .sort-source-wrapper .nav > li > a:focus {
  background: transparent;
}

/* line 1029, app/assets/stylesheets/application.css.sass */
.sort-source-wrapper .nav > li.active > a {
  background: transparent;
}

/* line 1031, app/assets/stylesheets/application.css.sass */
.sort-source-wrapper .nav > li.active > a:hover, .sort-source-wrapper .nav > li.active > a:focus {
  background: transparent;
}

/* Sort Source */
/* line 1036, app/assets/stylesheets/application.css.sass */
.sort-source {
  clear: both;
}

/* Sort Destination */
/* line 1041, app/assets/stylesheets/application.css.sass */
.sort-destination.full-width {
  position: relative;
}

/* line 1043, app/assets/stylesheets/application.css.sass */
.sort-destination.full-width .isotope-item {
  width: 20%;
  float: left;
}

/* line 1046, app/assets/stylesheets/application.css.sass */
.sort-destination.full-width .isotope-item.w2 {
  width: 40%;
}

/* line 1048, app/assets/stylesheets/application.css.sass */
.sort-destination.full-width .isotope-item .img-thumbnail {
  border: 0;
  padding: 0;
  margin: 0;
  border-radius: 0;
  float: left;
}

/* line 1054, app/assets/stylesheets/application.css.sass */
.sort-destination.full-width .isotope-item a, .sort-destination.full-width .isotope-item .thumb-info img {
  border-radius: 0;
  float: left;
}

/* line 1058, app/assets/stylesheets/application.css.sass */
.sort-source-wrapper + .sort-destination.full-width {
  margin: 0 0 -81px;
  top: -51px;
}

/* Responsive */
@media (max-width: 991px) {
  /* line 1064, app/assets/stylesheets/application.css.sass */
  ul.sort-destination.isotope {
    overflow: visible !important;
    height: auto !important;
  }
  /* line 1067, app/assets/stylesheets/application.css.sass */
  ul.sort-destination.isotope.full-width {
    overflow: hidden !important;
  }
  /* line 1069, app/assets/stylesheets/application.css.sass */
  .isotope-hidden {
    display: none !important;
  }
}

@media (max-width: 767px) {
  /* line 1073, app/assets/stylesheets/application.css.sass */
  .sort-source-wrapper {
    background: #171717;
    clear: both;
    margin-top: -35px;
  }
  /* line 1077, app/assets/stylesheets/application.css.sass */
  .sort-source-wrapper .nav {
    margin: 0;
  }
  /* line 1079, app/assets/stylesheets/application.css.sass */
  .sort-destination, .isotope-item {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  /* line 1082, app/assets/stylesheets/application.css.sass */
  .sort-destination.full-width {
    max-width: none;
    top: 0;
    margin-bottom: -30px;
  }
  /* line 1086, app/assets/stylesheets/application.css.sass */
  .sort-destination.full-width .isotope-item {
    max-width: none;
  }
  /* line 1088, app/assets/stylesheets/application.css.sass */
  .isotope-item {
    position: static !important;
    text-align: center;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    -moz-transform: none !important;
    -ms-transform: none !important;
    -o-transform: none !important;
    -webkit-transform: none !important;
    transform: none !important;
  }
  /* line 1099, app/assets/stylesheets/application.css.sass */
  .isotope-item.product {
    position: relative !important;
  }
}

@media (max-width: 479px) {
  /* line 1103, app/assets/stylesheets/application.css.sass */
  .sort-destination, .isotope-item {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  /* line 1106, app/assets/stylesheets/application.css.sass */
  .sort-destination.full-width .isotope-item {
    position: static !important;
    clear: both;
    float: none;
    width: auto;
  }
}

/* Pricing Tables */
/* line 1114, app/assets/stylesheets/application.css.sass */
.pricing-table {
  margin: 10px 0;
  padding: 0 15px;
  text-align: center;
}

/* line 1118, app/assets/stylesheets/application.css.sass */
.pricing-table ul {
  list-style: none;
  margin: 20px 0 0 0;
  padding: 0;
}

/* line 1122, app/assets/stylesheets/application.css.sass */
.pricing-table li {
  border-top: 1px solid #ddd;
  padding: 10px 0;
}

/* line 1125, app/assets/stylesheets/application.css.sass */
.pricing-table h3 {
  background-color: #eee;
  border-radius: 2px 2px 0 0;
  font-size: 20px;
  font-weight: normal;
  margin: -20px -20px 50px -20px;
  padding: 20px;
}

/* line 1132, app/assets/stylesheets/application.css.sass */
.pricing-table h3 span {
  background: #FFF;
  border: 5px solid #FFF;
  border-radius: 100px;
  box-shadow: 0 5px 20px #ddd inset, 0 3px 0 #999 inset;
  color: #777777;
  display: block;
  font: bold 25px / 100px Georgia, Serif;
  height: 100px;
  margin: 20px auto -65px;
  width: 100px;
}

/* line 1143, app/assets/stylesheets/application.css.sass */
.pricing-table .most-popular {
  border: 3px solid #CCC;
  box-shadow: 11px 0 10px -10px rgba(0, 0, 0, 0.1), -11px 0 10px -10px rgba(0, 0, 0, 0.1);
  padding: 30px 20px;
  top: -10px;
  z-index: 2;
}

/* line 1149, app/assets/stylesheets/application.css.sass */
.pricing-table .most-popular h3 {
  background-color: #666;
  color: #FFF;
  padding-top: 30px;
  text-shadow: 0 1px #555;
}

/* line 1154, app/assets/stylesheets/application.css.sass */
.pricing-table .plan-ribbon-wrapper {
  height: 88px;
  overflow: hidden;
  position: absolute;
  right: -5px;
  top: -5px;
  width: 85px;
}

/* line 1161, app/assets/stylesheets/application.css.sass */
.pricing-table .plan-ribbon {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  background-image: -webkit-linear-gradient(top, #bfdc7a, #8ebf45);
  background-image: linear-gradient(to bottom, #bfdc7a, #8ebf45);
  background-color: #bfdc7a;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.3);
  color: #333;
  font-size: 14px;
  left: -5px;
  padding: 7px 0;
  position: relative;
  text-align: center;
  text-shadow: rgba(255, 255, 255, 0.5) 0px 1px 0px;
  top: 15px;
  width: 120px;
}

/* line 1180, app/assets/stylesheets/application.css.sass */
.pricing-table .plan-ribbon:before {
  left: 0;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  bottom: -3px;
  content: "";
  position: absolute;
}

/* line 1187, app/assets/stylesheets/application.css.sass */
.pricing-table .plan-ribbon:after {
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  bottom: -3px;
  content: "";
  position: absolute;
  right: 0;
}

/* line 1194, app/assets/stylesheets/application.css.sass */
.pricing-table [class*="col-md-"] {
  padding-left: 0;
  padding-right: 0;
}

/* line 1197, app/assets/stylesheets/application.css.sass */
.pricing-table .plan {
  background: #FFF;
  border: 1px solid #ddd;
  border-radius: 5px;
  color: #333;
  margin-bottom: 35px;
  margin-right: 0;
  padding: 20px;
  position: relative;
  text-shadow: 0 1px rgba(255, 255, 255, 0.8);
}

/* line 1207, app/assets/stylesheets/application.css.sass */
.pricing-table .btn {
  margin-top: 5px;
}

/* Pricing Tables Boxed */
/* line 1213, app/assets/stylesheets/application.css.sass */
html.boxed .pricing-table .plan, html.boxed .pricing-table h3 {
  border-radius: 0;
}

/* Responsive */
@media (max-width: 767px) {
  /* Pricing Tables */
  /* line 1219, app/assets/stylesheets/application.css.sass */
  .pricing-table {
    margin-left: 0px;
  }
  /* line 1221, app/assets/stylesheets/application.css.sass */
  .pricing-table .plan {
    margin-right: 0;
  }
  /* line 1223, app/assets/stylesheets/application.css.sass */
  html.boxed .pricing-table {
    margin-left: 0;
  }
}

/* Featured Box */
/* line 1228, app/assets/stylesheets/application.css.sass */
.featured-box {
  background: #F5F5F5;
  background-color: transparent;
  background: -webkit-linear-gradient(top, white 1%, #f9f9f9 98%) repeat scroll 0 0 transparent;
  background: linear-gradient(to bottom, white 1%, #f9f9f9 98%) repeat scroll 0 0 transparent;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border-bottom: 1px solid #DFDFDF;
  border-left: 1px solid #ECECEC;
  border-radius: 8px;
  border-right: 1px solid #ECECEC;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.04);
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
  min-height: 100px;
  position: relative;
  text-align: center;
  z-index: 1;
}

/* line 1249, app/assets/stylesheets/application.css.sass */
.featured-box h4 {
  font-size: 1.3em;
  font-weight: 400;
  letter-spacing: -0.7px;
  margin-top: 5px;
  text-transform: uppercase;
}

/* line 1255, app/assets/stylesheets/application.css.sass */
.featured-box .box-content {
  border-radius: 8px;
  border-top: 3px solid #33B8FF;
  border-top-width: 4px;
  padding: 30px 30px 10px 30px;
}

/* line 1260, app/assets/stylesheets/application.css.sass */
.featured-box .learn-more {
  display: block;
  margin-top: 10px;
}

/* Featured Boxes */
/* line 1266, app/assets/stylesheets/application.css.sass */
.featured-boxes .featured-box {
  margin-bottom: 30px;
  margin-top: 45px;
}

/* line 1269, app/assets/stylesheets/application.css.sass */
.featured-boxes .featured-box.info-content {
  text-align: left;
}

/* Primary */
/* line 1275, app/assets/stylesheets/application.css.sass */
.featured-box-primary i.icon-featured {
  background-color: #E36159;
}

/* line 1277, app/assets/stylesheets/application.css.sass */
.featured-box-primary h4 {
  color: #E36159;
}

/* line 1279, app/assets/stylesheets/application.css.sass */
.featured-box-primary .box-content {
  border-top-color: #E36159;
}

/* Secundary */
/* line 1285, app/assets/stylesheets/application.css.sass */
.featured-box-secundary i.icon-featured {
  background-color: #CCC;
}

/* line 1287, app/assets/stylesheets/application.css.sass */
.featured-box-secundary h4 {
  color: #CCC;
}

/* line 1289, app/assets/stylesheets/application.css.sass */
.featured-box-secundary .box-content {
  border-top-color: #CCC;
}

/* Tertiary */
/* line 1295, app/assets/stylesheets/application.css.sass */
.featured-box-tertiary i.icon-featured {
  background-color: #2BAAB1;
}

/* line 1297, app/assets/stylesheets/application.css.sass */
.featured-box-tertiary h4 {
  color: #2BAAB1;
}

/* line 1299, app/assets/stylesheets/application.css.sass */
.featured-box-tertiary .box-content {
  border-top-color: #2BAAB1;
}

/* Quartenary */
/* line 1305, app/assets/stylesheets/application.css.sass */
.featured-box-quartenary i.icon-featured {
  background-color: #734BA9;
}

/* line 1307, app/assets/stylesheets/application.css.sass */
.featured-box-quartenary h4 {
  color: #734BA9;
}

/* line 1309, app/assets/stylesheets/application.css.sass */
.featured-box-quartenary .box-content {
  border-top-color: #734BA9;
}

/* Featured Boxes - Login */
/* line 1315, app/assets/stylesheets/application.css.sass */
.featured-boxes.login {
  margin-top: -30px;
}

/* line 1317, app/assets/stylesheets/application.css.sass */
.featured-boxes.login .featured-box {
  text-align: left;
}

/* line 1319, app/assets/stylesheets/application.css.sass */
.featured-boxes.cart .featured-box {
  text-align: left;
}

/* line 1321, app/assets/stylesheets/application.css.sass */
.featured-boxes .featured-box-cart {
  margin-top: 0;
}

/* Feature Box */
/* line 1326, app/assets/stylesheets/application.css.sass */
.feature-box {
  clear: both;
}

/* line 1328, app/assets/stylesheets/application.css.sass */
.feature-box .feature-box-icon {
  background: #CCC;
  border-radius: 35px;
  color: #FFF;
  display: inline-block;
  float: left;
  height: 35px;
  line-height: 35px;
  margin-right: 10px;
  position: relative;
  text-align: center;
  top: 5px;
  width: 35px;
}

/* line 1341, app/assets/stylesheets/application.css.sass */
.feature-box .feature-box-info {
  padding-left: 50px;
}

/* line 1344, app/assets/stylesheets/application.css.sass */
.feature-box.secundary h4 {
  color: #0e0e0e;
}

/* line 1346, app/assets/stylesheets/application.css.sass */
.feature-box.secundary .feature-box-icon {
  background: transparent;
  width: 50px;
  height: 50px;
}

/* line 1350, app/assets/stylesheets/application.css.sass */
.feature-box.secundary .feature-box-icon i.fa {
  font-size: 28px;
}

/* line 1352, app/assets/stylesheets/application.css.sass */
.feature-box.secundary .feature-box-info {
  padding-left: 60px;
}

/* Secundary */
/* Icon Featured */
/* line 1359, app/assets/stylesheets/application.css.sass */
.icon-featured {
  border-radius: 100%;
  color: #FFF;
  font-size: 40px;
  line-height: 110px;
  margin: 25px 0;
  padding: 25px;
  display: inline-block;
  padding: 0;
  width: 110px;
  height: 110px;
}

/* Thumb Info */
/* line 1373, app/assets/stylesheets/application.css.sass */
.thumb-info {
  display: block;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  max-width: 100%;
}

/* line 1380, app/assets/stylesheets/application.css.sass */
.thumb-info:hover .thumb-info-action-icon {
  right: 0;
  top: 0;
}

/* line 1383, app/assets/stylesheets/application.css.sass */
.thumb-info:hover .thumb-info-action {
  filter: alpha(opacity=100);
  opacity: 1;
}

/* line 1386, app/assets/stylesheets/application.css.sass */
.thumb-info:hover .thumb-info-title {
  background: #000;
}

/* line 1388, app/assets/stylesheets/application.css.sass */
.thumb-info .thumb-info-action-icon {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  background: #CCC;
  border-radius: 0 0 0 25px;
  display: inline-block;
  font-size: 25px;
  height: 50px;
  line-height: 50px;
  position: absolute;
  right: -100px;
  text-align: center;
  top: -100px;
  width: 50px;
}

/* line 1403, app/assets/stylesheets/application.css.sass */
.thumb-info .thumb-info-action-icon i {
  font-size: 24px;
  left: 3px;
  position: relative;
  top: -4px;
}

/* line 1408, app/assets/stylesheets/application.css.sass */
.thumb-info .thumb-info-action {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  background: rgba(36, 27, 28, 0.9);
  bottom: 0;
  color: #FFF;
  filter: alpha(opacity=0);
  height: 100%;
  left: 0;
  opacity: 0.0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}

/* line 1423, app/assets/stylesheets/application.css.sass */
.thumb-info .thumb-info-inner {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  display: block;
  white-space: nowrap;
}

/* line 1429, app/assets/stylesheets/application.css.sass */
.thumb-info .thumb-info-title {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  background: rgba(36, 27, 28, 0.9);
  bottom: 10%;
  color: #FFF;
  font-size: 18px;
  font-weight: 700;
  left: 0;
  letter-spacing: -1px;
  padding: 9px 11px 9px;
  position: absolute;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
  z-index: 1;
}

/* line 1445, app/assets/stylesheets/application.css.sass */
.thumb-info .thumb-info-type {
  background-color: #CCC;
  border-radius: 2px;
  display: inline-block;
  float: left;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
  margin: 8px -2px -15px -2px;
  padding: 2px 9px;
  text-transform: none;
}

/* line 1456, app/assets/stylesheets/application.css.sass */
.thumb-info img {
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  transition: all 0.2s linear;
  border-radius: 3px;
  position: relative;
}

/* line 1462, app/assets/stylesheets/application.css.sass */
.thumb-info:hover img {
  -webkit-transform: scale(1.1, 1.1);
  -moz-transform: scale(1.1, 1.1);
  -ms-transform: scale(1.1, 1.1);
  -o-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}

/* Thumb Info Caption */
/* line 1471, app/assets/stylesheets/application.css.sass */
.thumb-info-caption {
  padding: 10px 0;
}

/* line 1473, app/assets/stylesheets/application.css.sass */
.thumb-info-caption p {
  font-size: 0.9em;
  line-height: 20px;
  margin: 0 0 8px;
  padding: 10px;
}

/* Thumb Info Social Icons */
/* line 1481, app/assets/stylesheets/application.css.sass */
.thumb-info-social-icons {
  border-top: 1px dotted #DDD;
  margin: 0;
  padding: 15px 0;
  display: block;
}

/* line 1486, app/assets/stylesheets/application.css.sass */
.thumb-info-social-icons a {
  background: #CCC;
  border-radius: 25px;
  display: inline-block;
  height: 30px;
  line-height: 30px;
  text-align: center;
  width: 30px;
}

/* line 1494, app/assets/stylesheets/application.css.sass */
.thumb-info-social-icons a:hover {
  text-decoration: none;
}

/* line 1496, app/assets/stylesheets/application.css.sass */
.thumb-info-social-icons a span {
  display: none;
}

/* line 1498, app/assets/stylesheets/application.css.sass */
.thumb-info-social-icons a i {
  color: #FFF;
  font-size: 0.9em;
  font-weight: normal;
}

/* Thumb Info Secundary */
/* line 1506, app/assets/stylesheets/application.css.sass */
.thumb-info.secundary .thumb-info-title {
  background: transparent;
  bottom: auto;
  left: 0;
  right: 0;
  top: 35%;
  text-align: center;
  opacity: 0;
}

/* line 1514, app/assets/stylesheets/application.css.sass */
.thumb-info.secundary .thumb-info-type {
  float: none;
}

/* line 1516, app/assets/stylesheets/application.css.sass */
.thumb-info.secundary:hover .thumb-info-title {
  top: 42%;
  opacity: 1;
}

/* Responsive */
@media (max-width: 991px) {
  /* line 1523, app/assets/stylesheets/application.css.sass */
  .thumb-info .thumb-info-title {
    font-size: 14px;
  }
  /* line 1525, app/assets/stylesheets/application.css.sass */
  .thumb-info .thumb-info-more {
    font-size: 11px;
  }
}

/* Timeline */
/* line 1530, app/assets/stylesheets/application.css.sass */
section.timeline {
  width: 75%;
  margin: 50px 13% 0;
  position: relative;
  float: left;
  padding-bottom: 120px;
}

/* line 1536, app/assets/stylesheets/application.css.sass */
section.timeline:after {
  background: #505050;
  background: -moz-linear-gradient(top, rgba(80, 80, 80, 0) 0%, #505050 8%, #505050 92%, rgba(80, 80, 80, 0) 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #1e5799), color-stop(100%, #7db9e8));
  background: -webkit-linear-gradient(top, rgba(80, 80, 80, 0) 0%, #505050 8%, #505050 92%, rgba(80, 80, 80, 0) 100%);
  background: -o-linear-gradient(top, rgba(80, 80, 80, 0) 0%, #505050 8%, #505050 92%, rgba(80, 80, 80, 0) 100%);
  background: -ms-linear-gradient(top, rgba(80, 80, 80, 0) 0%, #505050 8%, #505050 92%, rgba(80, 80, 80, 0) 100%);
  background: linear, to bottom, rgba(80, 80, 80, 0) 0%, #505050 8%, #505050 92%, rgba(80, 80, 80, 0) 100%;
  content: "";
  display: block;
  height: 100%;
  left: 50%;
  margin-left: -2px;
  position: absolute;
  top: -60px;
  width: 3px;
  z-index: 0;
  filter: alpha(opacity=35);
  opacity: 0.35;
}

/* line 1555, app/assets/stylesheets/application.css.sass */
section.timeline .timeline-date {
  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.04);
  position: relative;
  display: block;
  clear: both;
  width: 200px;
  height: 45px;
  padding: 5px;
  border: 1px solid #E5E5E5;
  margin: 0 auto 10px;
  text-shadow: 0 1px 1px #fff;
  border-radius: 4px;
  background: #FFF;
  z-index: 1;
}

/* line 1569, app/assets/stylesheets/application.css.sass */
section.timeline .timeline-date h3 {
  display: block;
  text-align: center;
  color: #757575;
  font-size: 0.9em;
  line-height: 32px;
}

/* line 1575, app/assets/stylesheets/application.css.sass */
section.timeline .timeline-title {
  background: #F4F4F4;
  padding: 12px;
}

/* line 1578, app/assets/stylesheets/application.css.sass */
section.timeline .timeline-title h4 {
  padding: 0;
  margin: 0;
  color: #171717;
  font-size: 1.4em;
}

/* line 1583, app/assets/stylesheets/application.css.sass */
section.timeline .timeline-title a {
  color: #171717;
}

/* line 1585, app/assets/stylesheets/application.css.sass */
section.timeline .timeline-title .timeline-title-tags {
  color: #B1B1B1;
  font-size: 0.9em;
}

/* line 1588, app/assets/stylesheets/application.css.sass */
section.timeline .timeline-title .timeline-title-tags a {
  color: #B1B1B1;
  font-size: 0.9em;
}

/* line 1591, app/assets/stylesheets/application.css.sass */
section.timeline .timeline-box {
  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.04);
  border: 1px solid #E5E5E5;
  border-radius: 4px;
  margin: 20px 10px 10px 10px;
  padding: 10px;
  position: relative;
  width: 45.7%;
  float: left;
  z-index: 1;
  margin-bottom: 30px;
  background: #FFF;
}

/* line 1603, app/assets/stylesheets/application.css.sass */
section.timeline .timeline-box.left {
  clear: both;
}

/* line 1605, app/assets/stylesheets/application.css.sass */
section.timeline .timeline-box.left:before {
  background: none repeat scroll 0 0 #E5E5E5;
  border-radius: 50%;
  box-shadow: 0 0 0 3px #FFF, 0 0 0 6px #E5E5E5;
  content: "";
  display: block;
  height: 7px;
  margin-right: -5px;
  position: absolute;
  right: -6.8%;
  top: 22px;
  width: 8px;
}

/* line 1617, app/assets/stylesheets/application.css.sass */
section.timeline .timeline-box.left:after {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  background: #FFF;
  border-right: 1px solid #E5E5E5;
  border-top: 1px solid #E5E5E5;
  content: "";
  display: block;
  height: 14px;
  position: absolute;
  right: -8px;
  top: 20px;
  width: 14px;
  z-index: 0;
}

/* line 1634, app/assets/stylesheets/application.css.sass */
section.timeline .timeline-box.right {
  clear: right;
  float: right;
  right: -1px;
  margin-top: 40px;
}

/* line 1639, app/assets/stylesheets/application.css.sass */
section.timeline .timeline-box.right:before {
  background: none repeat scroll 0 0 #E5E5E5;
  border-radius: 50%;
  box-shadow: 0 0 0 3px #FFF, 0 0 0 6px #E5E5E5;
  content: "";
  display: block;
  height: 7px;
  margin-left: -5px;
  position: absolute;
  left: -7.2%;
  top: 32px;
  width: 8px;
}

/* line 1651, app/assets/stylesheets/application.css.sass */
section.timeline .timeline-box.right:after {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  background: #FFF;
  border-left: 1px solid #E5E5E5;
  border-bottom: 1px solid #E5E5E5;
  content: "";
  display: block;
  height: 14px;
  position: absolute;
  left: -8px;
  top: 30px;
  width: 14px;
  z-index: 0;
}

/* line 1668, app/assets/stylesheets/application.css.sass */
section.timeline .timeline-box .img-thumbnail {
  border-radius: 0;
  padding: 0;
  border: 0;
}

/* line 1672, app/assets/stylesheets/application.css.sass */
section.timeline .timeline-box .img-thumbnail img {
  border-radius: 0;
  padding: 0;
  border: 0;
}

/* line 1676, app/assets/stylesheets/application.css.sass */
section.timeline .timeline-box .thumb-info {
  float: left;
  margin-bottom: -5px;
}

/* line 1679, app/assets/stylesheets/application.css.sass */
section.timeline .timeline-box .owl-carousel {
  border-radius: 0;
  padding: 0;
  border: 0;
  box-shadow: none;
}

/* Responsive */
@media (max-width: 991px) {
  /* line 1687, app/assets/stylesheets/application.css.sass */
  section.timeline .timeline-box {
    float: none;
    clear: both;
    right: auto;
    left: auto;
    margin: 25px auto;
    max-width: 70%;
    width: auto;
  }
  /* line 1695, app/assets/stylesheets/application.css.sass */
  section.timeline .timeline-box.right {
    float: none;
    clear: both;
    right: auto;
    left: auto;
    margin: 25px auto;
    max-width: 70%;
    width: auto;
  }
  /* line 1703, app/assets/stylesheets/application.css.sass */
  section.timeline .timeline-box.left:after, section.timeline .timeline-box.right:after, section.timeline .timeline-box.left:before, section.timeline .timeline-box.right:before {
    display: none;
  }
}

@media (max-width: 479px) {
  /* line 1707, app/assets/stylesheets/application.css.sass */
  section.timeline {
    width: auto;
    float: none;
    margin-left: 0;
    margin-right: 0;
  }
  /* line 1712, app/assets/stylesheets/application.css.sass */
  section.timeline .timeline-box {
    margin: 15px auto;
    max-width: 90%;
  }
  /* line 1715, app/assets/stylesheets/application.css.sass */
  section.timeline .timeline-box.right {
    margin: 15px auto;
    max-width: 90%;
  }
  /* line 1718, app/assets/stylesheets/application.css.sass */
  article.post-large {
    margin-left: 0;
  }
  /* line 1720, app/assets/stylesheets/application.css.sass */
  article.post-large .post-image, article.post-large .post-date {
    margin-left: 0;
  }
}

/* Testimonials */
/* line 1725, app/assets/stylesheets/application.css.sass */
blockquote.testimonial {
  background: #CCC;
  border-radius: 10px;
  border: 0;
  color: #666;
  font-family: Georgia, serif;
  font-style: italic;
  margin: 0;
  padding: 10px 50px;
  position: relative;
}

/* line 1735, app/assets/stylesheets/application.css.sass */
blockquote.testimonial:before {
  left: 10px;
  top: 0;
  color: #FFF;
  content: "\201C";
  font-size: 80px;
  font-style: normal;
  line-height: 1;
  position: absolute;
}

/* line 1744, app/assets/stylesheets/application.css.sass */
blockquote.testimonial:after {
  color: #FFF;
  content: "\201C";
  font-size: 80px;
  font-style: normal;
  line-height: 1;
  position: absolute;
  bottom: -0.5em;
  content: "\201D";
  right: 10px;
}

/* line 1754, app/assets/stylesheets/application.css.sass */
blockquote.testimonial p {
  color: #FFF;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 1.2em;
  line-height: 1.3;
}

/* Testimonials Arrow */
/* line 1763, app/assets/stylesheets/application.css.sass */
.testimonial-arrow-down {
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid #CCC;
  height: 0;
  margin: 0 0 0 25px;
  width: 0;
}

/* Testimonials Author */
/* line 1773, app/assets/stylesheets/application.css.sass */
.testimonial-author {
  margin: 8px 0 0 8px;
}

/* line 1775, app/assets/stylesheets/application.css.sass */
.testimonial-author .img-thumbnail {
  float: left;
  margin-right: 10px;
  width: auto;
}

/* line 1779, app/assets/stylesheets/application.css.sass */
.testimonial-author .img-thumbnail img {
  max-width: 60px;
}

/* line 1781, app/assets/stylesheets/application.css.sass */
.testimonial-author strong {
  color: #111;
  display: block;
  padding-top: 7px;
}

/* line 1785, app/assets/stylesheets/application.css.sass */
.testimonial-author span {
  color: #666;
  display: block;
  font-size: 12px;
}

/* line 1789, app/assets/stylesheets/application.css.sass */
.testimonial-author p {
  color: #999;
  margin: 0 0 0 25px;
  text-align: left;
}

/* Social Icons */
/* line 1796, app/assets/stylesheets/application.css.sass */
ul.social-icons {
  margin: 0;
  padding: 0;
  width: auto;
}

/* line 1800, app/assets/stylesheets/application.css.sass */
ul.social-icons li {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAeeCAYAAADgJ4T0AAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAKJgAACiYBUampMwAAABx0RVh0U29mdHdhcmUAQWRvYmUgRmlyZXdvcmtzIENTNui8sowAAAAWdEVYdENyZWF0aW9uIFRpbWUAMDkvMDgvMTK55NoxAAAgAElEQVR4nOyde3xU5Z3%2F37nOTDIhFyYkA5JkAgRDUCBRCoOKiDZcjEpwrUAp1Vq2oqWssWsr4o9fse66hd39UaCrZaHUJtJ2E2wpYKyYxjVDvBBACYFAZkiQTEImN2aSM5Pb%2FP4Y5yRDLnNmGKTI%2BbxeeWXmnDPnfZ7reZ7zPd%2FvE%2BR0Op1cBwVfD6gMlsEy%2BKsDl5SUsHTpUt544w0MBgNLly5ly5Yt1x48lFpbWwMCDpVykNVqZcaMGfzsZz9DpVIFHmw2m8WsNJvN4vaoqCiMRiO7d%2B9m8eLFCILA1q1bAbDZbKjVagDWrl3LmTNnKC4uFvdptVqsVisbN25Eq9WK5xyU1SaTCZPJxNy5c9HpdOL29vZ2TCYTZ8%2Bepb29HYvFgs1mY%2B7cudhsNiwWi7jdYrEQFRVFZmYmJpMJi8UyKMVDlrFSqWT16tUsWrRoxOzS6XSsXr2azMzMQftyc3PJy8tDqVQO%2Bdtr3pzcxXClhq1clZWVnD9%2FfsST2u12DAaDR31w6%2BTJk4CrnCWD7XY7L7%2F8ssc2h8MBuGq4WyaTadh2XVxcLFayoRR05QhkqKuPiYkBoK2tjZiYGI8mJQgCO3bswGAw8OyzzzJv3jyPfU899RR2u51t27Z51OpBKR6480q5gWazGZPJBEB0dLTHxRqNRhoaGoiOjqa9vX3Yc0nqQK7U6dOn2bZt26DtCoWC9957b8QsdmtQVkuRIAi0tbUN2j6wSK7UlTnpFzgQ%2Bvu8LcpgGXxDgkPv%2F2XF9QHXtzuuC%2FjmK2MZLIMRuvoQuvoGfb5mYKGrj8UZGj59fgZ5D9%2FCXRNi%2BPT5Gfz70kkBgQ8LbrJ1EakIYfSoCMaFqohWhjJ6VATJCYqrhsIQg72Bqelw9AIwOqSXA5UW2u09GC3CoOPcUoUHD5sbqnDPNIpgoauPCfEqdj6WCkCUKpzRoyIAaO4N4a4JMfxg3lj%2BXNFMqkbFvyxOxip0kahU0WAXiFKF89MDtdyeFsGDt0QTpQqnJ1yF8OUQ96k%2FGKlpEsQLGJTVKQkxpCTE8IHJRkVNvbg9WhlKZmI008apxWxPSYhh57kG8SKjlaGMC1WRkhBDbWc3hjNN4vmu1LBlvHJPJf%2F18fADcoAPTpr5Sb6RyrrBx%2F1XST0r91TSfLlzyN9es3YcrRx5rjDs3uV3JnJ7WsSIP06KV7H8zkSS4gc%2FntCnRtNu7xHriWTwG8vShwW223sAV314Y9ng8gNYMm0MS6aNGfYcQembDB4zibHRQ7fT%2BnaHuG%2Fg4EHo6mPPY6ncM1XLxoNG9pSbxZo7NlrB71fdyuhREdz%2FywqPWj0oxTVNwpBgVXiwuG9CvIoZt0SJKVdr%2BrNz4D537R9Kg8BXNvQr99W12Fk1S8vGRamD9nc4ennmnltGzGK3BmW1VA1VJAOLY6h9A%2BXX%2FBiGLpKBxTHUvoCAhyuSkYpqoP5%2BBwIyWAb7q6%2FkqY%2FRaCQ11bOnkx83yWAZHDD5fFs0m82cPn0as9mMUqlk8uTJZGRk%2BAz2qR2%2F8cYbFBcXo9FoyMrKoq6ujqamJqKiolizZs2gTmJEOSWos7PTuX79emdeXp4zPz%2FfuXr1amd9fb247%2FXXX3fm5uY6T548KeV0TqfT6ZRUxvv27aOpqYlNmzaxfPlysrKyROuL%2B2m8Tqdj69atQxpThpJXsNlsprS0lBdeeEE0huTk5Ih2yC1btqBWq9m0aRPx8fGUlJRIAnutXCaTCZvNxvHjxykvLxdTpNVqqaioYPPmzaK9YdGiRRQVFbF8%2BfKrBzc0NKBWq7Hb7SiVSjIzM0lOTkYQBF599VX2798vHltXV%2BcVKBkMEB8f75GKgoICKioqUKvVHD16lMcffxyFQoHVapVcxl7BkydPpri4GEFwjZc3bNiAUqkkLy%2BPlpYWdu%2FezaxZs1CpVF5tkT6BMzIyiI%2BP580338RqtaLVasnLywP67UxmsxmVSsWBAwd48cUXJYEldSBGo5Ef%2F%2FjHKJVK8vPzPfa98cYbAFRXV5OWlsbq1asDBwaXWXfr1q3Ex8czf%2F58xoxxTcx2796NyWQiOzublStXSn6HwKcu02w2s3%2F%2Ffqqrq7FarURFRaHValmwYIHP%2FbXftkW3%2FH1LQh7syWAZfOODQy%2F%2F02%2BvD7jv0siPhq%2BVbr4ylsFfmfx6lunssHt8D4oc%2BvW4gIGdHXbC7phAqCoG0qIB6DlRS0%2FVRZwddp8uQBLYfVLV9%2B5DmZNFX7OFntMW%2BkaFEaFPxtnei1BQRvenNZLhkso4KFKJ8ieLCMu4Bfv%2BowB07vgrwoYiLq99i15zK%2BqXcgm7Y8KgYrgqsPJxPeFjo7Fu%2BAPCf79Pz2kLUZse80hdr7GRiKfvCVyKQ9PHEa5PpvNXH4ip6So5RfC4aJQ%2FWUTUpsfoa%2BnAuuEPONt7UT6ulwQesYydHXZCVTEEqdWETksmdFoywXGR9I0Ko%2B9iO4q0cXT84iDdn9YA0L2vkrAlGUjJbK%2BVq2uygvAB71b2ldfTI7TRA4T%2BcDHh86YQPm%2BKa9%2BoMIKiQyRgJdbqrvp2hP9%2BH%2Fiyoj2uJyzjFoJ6rHCrhq7ffAZA8KyxOCN7rx4cFKkk%2BHgj4bMnY%2F%2By0kRteozuDhvWDX8gNH0cquVzsFdU4uywo0qLpm9U2NWDAVfn0N5LxJoHAOg1t2Lf8VecHXZ6qi4SFB1CaPo4eqouovhmBh2%2FOCgJ7LVWOzvsCAVlhM%2B5lbA7Uuj8Eure13PaQvi8Ka6c%2BPQ8PVUXJYGDWpdv9TqFcXeVEU%2Ffg7O9l%2B59lfQIrqc9quVzCElNoKvsNJ07%2FioJKhnshrsrVrg%2BWdzec9pCV8kpySn1GTwQLnX7SPLpfjzcyf25Ld58IxAZLIOvmeSnPjJYBstgv%2BXX%2FNhsNlNQUCBaXPLy8kb0GgoYuKSkBIPBIH4f%2BOD8moLdKdXr9SxZssQ3K%2BqX8rmMB6ZOq9X6BQU%2FbhLPP%2F88ZrNZNPmp1WpeeOEFny%2FA56y2Wq3Y7a6ZhPu%2FPwYRn1NsNpvZvn07VVVVPtuaBsrnMtZqtcTGxgKg0Wj8Nv9cVQfizuqvHHw1ksGSpNVq0Wg0PvfPAyWPMmWwDL7xwUGPrs2%2FLu04tP7S5evBvQnLWAZ%2F%2FcF%2BO2h0dfcbPcLDpFlergrc1d1LZKqSVx79JomJUagUYTz%2F%2BnvUftbo0wX4leInvpnJvJn9U5YoZbjP5%2FALnDTKZcIt%2BdjI9ncqMFdZfM5unyuXYly%2F41Td5XZqP2v09RT%2BgX%2Bd96CYzQ%2FOnMw7u55Am67xqGzXBDwmJlL8PJzb2DUBL33lLT446XoiUGQ4xcMbfv%2FVlHGH0U5vp%2BupgLXTgePi0J6YAQf701kEBBwoyWBJqrvczvnGNpqt%2FlUsgCD947%2FyeZR5tXcm8LOvDkTNvrHKWAbLYCmSn%2FrIYBksg2Xw3z9Y8tCnpKSEAwcOAC5jZm5uLuCyNb755pvU1dURGxsr2fdJErioqMjDpcwdOXLhwoXs2LFDDFFqNBrZtWsXy5Yt8wqXlNVDRYMsLi7m2LFjREVFialPTU3lySef5J133vF6Tkng4cKLXo0kgRcvXjxomzs8rdVqpbKyEnCV9759%2B5g9e7bXc0oaCLgrUGlpKXa73cOKajQa2bdvn3hsZmamR3jSqwIPvAAYbC8WBEF0mpRqBJOHPjJYBstgGSxZoS3zC64PuPei1ftR10A3XxnLYBksg298sOTZYtT3JxG2xDUR695XifXXZwEIGRdFxLrJLrfClg56TtQi%2FK4pMOCo709CmXef%2BD0kLwEA66%2FPErFuMlS30%2F7rTwkZF4X6Z5nAKa9wSVkd%2Ft3bh9ym%2Bna8eAEAvRet2F6uIHRa8qDj%2FQJ3hUZJOaz%2FpHGR3o%2BRdKYPTg6%2BGIOrLIPjIsWUA0Ssm0xfef2g469U0KXJ%2FyVp7hT1iztQfNNVuRzvVmL98adAf%2BUSVd0uZn1AwG4IuMrSl31DySe700gn9XUkc%2FP1XDJYBsvgGx8sP2CTwTL4JgYLguCX995Vg8vLyz1sEV8Z%2BMCBA5SWlvqdar%2FARqNRXFXw2LFjXx24vLxc%2FHzkyJGvBiwIAqWlpeL3iooKjEbjtQeXl5d7LNxot9s5fvz4tQcfPnwYcMW51Wg0ABgMBp8rmU9gd6UCeOKJJ1i7di06nQ6TyeRzJfMJ%2FN5772G321m6dClxcXHExcWRmZmJTqfj4EFp0W18BguCwNGjrkhVp06dErcrlUqUSiUmk8mnSiZ5tjiwUlVVVdHS0gLgYUkvLy%2BX7JUrOcXuSjVQly5d8vheUVEhuZJJHuxdeUK3KXe47QEDB1o33v1YBsvgv1tw0Px%2Fyro%2BfovWTjkmqgyWwf3q6u6%2BPuDxCd6tLQEFd3V3k31nDt97%2BDG%2FU%2B0XODwsjAULv41%2B8qOEh4X5BfcZ3NXdzfSJd6Ifm0l8TALZd%2Bb4DPULDLDo7jni53mpOX6l2idwV3c34xOS0U9%2BVNw2O1NPQtxYn6A%2BgwGmT8giPiZB%2FK6MVvC9hx%2B7tuDwsDAenr4CAEN9BdWtrilLetpCwsOkhST1GeyuVJlTXWa%2BPQWb2fLfL2E0GkmLTSX7zhyfytmnFC%2B6ew5BCiV%2F%2Bmg75paLmFsu8nnTIYxGo5gTAQVfWanix3u%2BW9ugbCNzagYz0%2FWSUy15tjiwUunHZqKNGwfAw994Rjxm0d1z%2BLjKMOTvr5TXFHd1d3tUqoFKiE30%2BO6uZFJSHTTzHydKGuwNbKuNLfVDbr9y30iSnNUXGms9vrubz3DbAwYe7oS%2Btl%2B3bswRiAyWwSNJfuojg2XwjQ%2F26bUqo9FIbW2tuNZibGwsycnJ4sPxkpIScc02b5Kc4qKiIsrLyxkzZgxms1l8Mq%2FVahEEgcrKSvbu3cuxY8ckPSyXBK6srKSwsJB58%2BaRkZHBmjVr0Gg0HD58GJVKRXl5OVu3bsVisbB9%2B3YOHTrk9ZySsvrEiRNA%2F0p0KpWKrKws0ag5a9YsFAoFe%2Fbs4fHHH%2BfWW2%2F1ek5JKU5JScFut3vYFK1WK3PnzkWlUqFSqdDr9cydO5dZs2ZJ8vKSlGK9Xs%2FJkyfZuXMnCoUCh8O1QvfKlSs9jpOyzqIoyYtgOp3Ompoacf3MmpoaX346SD61Y61Wy6RJkwDXOptXY6qX7D7oNstrtVrMZjOFhYWkp6ezfv16%2F%2BKiesuSzs5OZ15envP11193dnZ2itvLysqcubm5zrKysmuT1eXl5ZhMJnJycjxSptfrSU9PFyuar%2FIKdq%2BruH%2F%2Ffo8yraysJDY2VlKbHUqSyrikpIS9e%2FcSHx%2FPlClTUCqV2O125s2b53d4Up9si%2B5VYWNiYvwOtOszONC6%2BQYCMlgGXzMFmXIfvD62xS57y%2FXg3oRlLIO%2FMvk0aesTBkfJCFapPfYP%2FB4w8KjMewlJ0hKqcfk39Via6Dldg%2FX0xwSr1MQ%2BsgyhtAx7a53XC5Cc1aNXPEnErDn01pmJnjiW0cu%2FR0hoJB21pwhWqVGn30H8iqdQzZ2DMjbJ6%2Fm8gvsEG4rpDxCb%2FTAtf3mL%2BqJ3%2BeK1HfQ1W4icPYc%2BwUZ0dg6JP91A8GgNY%2F5xHVFLHxmyWAZKUlarM8a7rtLagzolHHtrHZc%2FMTDqTj3BKjXtxfuxN9oZ%2F9yzNOXvRCgtC0xW2yovEDxag2puv01RHRfG5U9cho8%2BwYbj%2BF9pLf6TWMbe5DXFwSo1juN%2Fpe2dTOJXPAVASGgktpZu2n79a%2FEYgOb8XR7fR1LQmUV6yXenyOQpRD6UQ8yCh7i45vtibfZHkrK6T7DRJ9joqD1Fj9Fl%2FIj7%2FtOEJ6V6rUTDyWuK%2BwQbytgkYpa5JuGOeiOKsanEPPoYwrEKLrz0Q7%2FAXss4PCmVxLzN2C9WcumXr4kX46g3krD2J0Rn59D69ls%2BZ%2FmIWd0n2IjM%2FAbK2ybQ8ef9XK7qHzS0vv0WwrEKn2AD5TXFvXWuGLeRD%2BUwqvaU2B%2Br0%2B%2FA0fgFHRUf%2BQWWVKujs3OI%2F4d%2FwNHQjqPmHL1dLufI9nf%2FQled0a%2BaLQnsrmB9Uf0Z1NN0yae70ZWS1GUGq9R02Vu4ciVWf6FwM45AZLAMvmYa8alPr21k9%2B0QtW9u%2FpLB11I3XxnL4K8%2FWHLYSrefkzfpdDoxmuRVg00mk8cyh4GQJLD7KXx6ejqZmZlDHlNRUUFVVZXkJ%2FaSwEqlaynp%2BfPnM2%2FevGE9fqqqqsRjAwJ2r71nNpsRBIF169ZhsVg8IO7l8RITE4c8h19ghUIBuCKFqlQqVq1aRUNDg3hB4HIZlVoBJYOjo12Lk1RXV1NZWYlOp2PGjBm0tbWJhpGKigpMJpN4bEDAcXFxKJVKzGYzJ06coLS0VPRv0%2Bv15OXlieb7uLi4wIHdUqvVLF%2B%2BHK1Wy969ewHEWm61%2BhZ6RRI4JiYGrVaLyWSisrKSefPmiRY2rVZLZWUlFosFnU4nWtUDAh6oV199FZ1OJ6bUXba%2BShJYpVKRmZkprh5aVVVFVVWVxzFKpZLMzMxr48Xnfg%2Fk7NmzotdmVlYWkyZN8ngfJODggRouFO01B1%2Btbr6BgAyWwddMQbYfzro%2BtkVnp7zeogz%2BmoEljUCc1lafThoUFev1GEng8H94ntD0b%2BDsGLnpBUWOoqfqI7rf%2Be%2FAgEOS0gnJmOP9QMDZcRkpjkeSwL11VYTOXEhvZRk9VUObAkLTv0FIxhx666qG3O8X2K2eqo%2Fo%2BuNmgq9wDXX3flJzRRLYaW2Fy83i9%2BCEZFQ%2F%2FR3B2gk4Hf2P7IMUX84cLzfjtLZ6rWA%2BpTgkKZ3uzst0H9oFo0a7LmjUaADC5jxMsHaC5HNJK2PLFwAEj08jOO0Oes4OsDd1tNHXWEtIUjrB2gnisQEBO1svubI1PJqQ1GkeqeutLEP4j9UERY7C6bDjbL3k5Ww%2BgAGcNht0tdP1x81wuZmwh%2F8JQKzlQXGJrmMkyis4KCoWOtqgq51g7QRCsh6g2%2FC2mN3OpjqC0%2B4gWDuBPnMNdLQFrucaKNWPXqfv3FExpaHp3yB4Ypavp5FYxp2XuVx2lOiccQQplIRkzBnUZp0OO5fLjhIqcUQTZP3eFEljrqCIUQTdkkaI5hZCpt5F8Pg0APouVNN78kN6LV%2Fg%2FKIaqUMpyWDov0sFRcUSFDHKta3zssd2qfKpjAeeeGDKfAG6dfONQGSwDL5mkp%2F6yGAZLIOvH9hfLy%2B%2FFl4Gl9vRO%2B%2B8g9lsRqvVMnv2bPR6veTf%2B9VlGgwGtm%2FfLpr13FqxYoUkE65PYKPRSHl5OUqlkuLiYo8ooW4plUo2b94cOL9Fs9nMa6%2B9NiRsoOx2OyaTSRJYUuU6cuSIV6hb58%2Bfl3Sc16x%2B4403hlzocSQNXJ1wOI2Y4qKiIp%2Bh4Fp90lv44RHBFRX%2Bv%2FDp7bfXrOfyZrIfETzciwhSNH%2F%2B%2FBH3j9ic3J2Bu916S4Xdbkej0ZCdne11eUvJTrG%2BSIq9UR5lymAZfOODg%2FLy8q5TTFQfX5UJlG6%2BMpbBMvjvD3zl2ua%2BrnXu92wxMzOTe%2B%2B9l9jYWFpbWzl69Kj4jtc1AdtsNubOncv3V32n36yH64UyXyYAksFpaWnodDoA7r5vjgfUrUXzF1NRUUFTU6DWW4yK4jvf%2B7ZHSNKhpIxWkJSUJAksqXLp9XqvULfcwWi8yWuKH3%2F8cUlrz7s1b948Ro0axRtvvDHicSOmWMqMYChlZWWRnZ3tP3j69Ok%2BQ6X%2B9u%2Bv57LZbH4tu%2BJWeXn5iL3ZsJVLrVaLncHd980hPibB452AoRSkUNLU1sj%2Fvl9GaWkpavXwXn5Bq1evlramZpQ0FyOpYzjJPVegB4V%2Ff5VLBsvgGxYsP%2FWRwTJYBvstSQMBg8HAwYMHMZlMqNVqsrOzWbhwocdzabPZTEFBARUVFSxevJglS5aM%2BNxasvlHo9GQlpZGa2srVVVVaDQaNm7cKAZjXbduHeCaYxkMBpYuXTpy4M6RIjwWFhY6c3Nznfn5%2BR6RI2tqapzLly93rl69WowkuXz5cmd9fb2431sgz2HBnZ2dzuXLlztff%2F31IffX1NQ4c3Nzne%2B%2F%2F74IHnhx3jRs5SovL8dut5OTM%2FSaIKmpqaSnp7N37150Oh1qtZoNGzZIXolwWPDZs2e9OsctW7YMi8WCIAhs3LgRpVLJli1bWLduHSUlJf6B1Wq11yFtamoqGo2G9957D61WyyuvvMIvfvEL0tLS2LZt24jwYcHTpk3DYrGMuKKgSqVi7ty5HquJpqamkpeXh16v58CBA76DMzIy0Ol0bN26dcgyKyoqoqioiCVLlgAMGVZ4JAPZiD3XmjVrsNlsrFu3DoPBgNlsxmg0smXLFvLz87FYLGKq8%2FPzxWOKioowGAwjmvm8diBGo5Fdu3Z5%2BCkqlUqWLl0qmgAFQWDHjh0eXtnZ2dmsXr3af7BbZrNZXNwxLi5uSHO80WhEEARUKpVXH0Z5sCeDZbAM9ltBlbHZ18e22Nsq2xZlsAz%2BCsFdOAZ9H2pbwMDuk8V%2F%2B0Em%2FXkrk9reZ0pNEWPzvkvEOK24vwsHo25LJ3n%2Fv5Fh%2BRNjd%2BQROm7kuCAhTzN%2B47A7CWXsjjy0rz5NT5dA12fVBF3qJPaHjxD1wDdwfFiJ%2FZIR1bgkJhZvIzw%2Bju69Jxm1dhGqTiWXSv5GyDAz4WHnxz20kpi3htFP52J%2Bfhtte4vpvGgmHAXK21KZUPIfjM%2FfyNnbv0PkvCy6R8dw4e6nsH1%2BFPUel%2BNVOIphUzxkVnfhQDluAok%2Ff4rmXxXRsGWHCAWwfX6U2pWvorxtAtHffoDe5suE91jpaWkT91%2F%2BfGSPzWHLOHKe66pbfrVv0NWHEkvLoQ%2B4%2FJcyxvzzSuyfncXZ3ovu0H8y%2BtuPoRzn3X9xeLD%2BdhzVF%2BlpaaOPiCGPad5RiPK2CShvn0T1PU%2FRVdtA0psbSftgJ2PzvusfGCAscuQgjbZDH9FrbGRUzl3YL9ZQm%2FPPnL19JR2nzqHd%2FCzR335g2GY2LPjy%2Fg8JSU1AefskgukctD8cBT20IhSUEffkIkJxeXld%2FryKmpzvc%2FkvZST%2B4PFhK9iQ4HAU2A59RFfZaZK2vYBy3AR6aBU7ji4caPKWkZi3hgv%2FtRsATd4yemgd8iKH0rDtuAsH9k%2BqUD%2FzGAn%2FuJCe%2Bg5CnSEoEuJJ%2Bu8NaJ59lK6aL2jeW0j42PGMWb%2BK7pomQpxK4lYuQfPso1xcvw3rZ1VDtuWgzxg%2BQqi7R0p49QdEPZAlmuf7mi00%2FsteLFveAiB0XBzj%2FusnjHqw35ex%2BVdF1K%2FZMmyKRwS74e5OI%2FQWV9xq%2B2dnPdq1%2Bxj1wm8A0PNFE%2FbPh3%2BSIAk88ALc5ddHxJCVpod%2B73t3ZRtO0pc9RAEjdIFSYAP1930%2FlsEy%2BIYCy4%2BbZLAMvvHBXu%2FHRqOR9957T%2FK7PlK9%2BbyCy8vLfXK2am1tlQSWnNXp6emsWLFCcujRgIEXLVpEbm7uVflADZTkMVdRURFHjhwZ5DLmXrPtmoHT0tKYOnUq1dXVLF68mGnTpnHp0iVuvfVWWlpa2L17t0%2FhKyVn9dSpU11vpMbHM23aNDIyMkhOTqalpYWMjAyeeOIJyVDwIcXuxf7sdjvt7e0AvPbaa9hsNnbu3Ck5Fqpbf78diFvu2LdDyZ%2BYmZLBDQ0NmM2uRS0cDof4GfotbL7I69CnoKCAwsJCwLPpXPkZXOWfnp7OK6%2B84hXstYxTUlLQaDTiya%2F8rNFoxGOVSiVTpkzxCoVr4Ld4TaLABlI330BABsvga6bQKW98cH3A7Y6e6wK%2B%2BcpYBn9lkjT0abdLifnZr2hl2NWDMzRqnp6SIhm6v72B4hPeY4eMCG63d%2FNQWgJLpo2RDE5uUEgCSy7jioZ2th2tpfmyF2NHR4ek80kGb6uu5Sfvn6ayrl3qT0aU5HH1y5OTyIlO5J6pntneaHeSoAy6duBjDV3sb29gRmM4f%2FminYqOdpJsagztFm4Zp%2BTlyUmkJEhbWQF8yOr97Q384SMzLc4gKjra%2BcNHZhH6h4%2FM%2FOxMnevAyEhJ55Oc4tHNg8fLb9yXhio6muITFr646Nvk3G9vXIAoVTij%2FShf8CGrm0cPPZtotLvmA30W39Ig%2BejMyGjqlK5BQ5JNzSyly%2BqWoAwiQ6PmlnHXCPxsVjLPZrliGmcu8lyC5d1lM32CSgJXdLR7760GyHCxTdJxQWO3HpYnbTJYBstgvyQ%2F9ZHBMvjGB1%2FVKNMtg8GAw%2BFg1qxZgX1sbDabMZlMzJgxA6PRyFtvvUVSUhIrV65k37594hN8nU7Hpk2bJMElpbigoACDwcCKFSswGAyYTCbRd3Gg5c1kMlFeXi4phoikMs7MzCQ9PZ3JkyeL7kZKpXLIJQ7HjJE2l5aU4uTkZDIzM8nIyCAjIwOtVita26Kjo9m92%2FXCoF6vJyMjIzBgs9nMhg0bPOKdnjp1CkC8kMWLF9Pa2srChQslQSWBTSaTaOYZ6DpWVVWFzWajrq5OdDszGAysWbNG0gp1V9WOi4uLPXzdTCaT15CkbnlNcXR0tBjByL0I4Eiqrq6WBPbJ7vTmm296fV9Ao9Hw%2BuuvewVLXvYQYM6c%2Fhc%2B1Wq132stSga75a7Fbtlstq8GfKXUarWHbREgPj5e0m%2FlwZ4MlsEy2G8Fxc77zfXxW2y97JuDVKB085WxDL7BwI5u158PkjYCufKkirD%2B7YowFs1PZczYbg6%2B18Yls7V%2F%2FwiSlOIx2igWzU8VIaW%2FyWHbxjmgCGNT3kwO%2FOdCdv%2FzQxz61f2M0UZJSn0IY3M2jniEo5sdr9zLv635BkJoLz98LI1Zt45lZtoYhNBelt%2BbRHy0y9akjYvilLmW459dhtCQq09xydEqPjhp5uRnzZw87zJaNl%2Fu5ORnzTRd9nyr4lK992wGiWV8qT6MAx9f4OCHrr9z6y5z9NNLHDz8pU%2FTU6BWOfl96Rcc%2FPCCpDIeGezo5o7J8NufzWX0qIf9fmUAACAASURBVAgykmOpu9TBnAmjCA8JES9kzNhuxmgS%2Bc3e02KFu%2BoUj7klldGjXH6L35nfH%2B903kyIjQpjyhgV82a6ZoffvV%2FHUy8UYjjpHX5V7fiZBzNEKEB6Ujx5P7xH0m8llXFFTT0AyfExYuqHU%2BaEsQHIakUYBz%2B8wKenXHFsn%2F%2FH6fx46e1SrvUqwV%2Fqktn1%2Fvzf%2FvciEYoQOh29ADx4p5b0JGlzJb%2FA7qw7eNjY34SAiH%2B5dxA4ShUeQPAVF%2BBWq7Wb841tCF92kSpFGKbaFkmnCiLrdXm2KINlsAz2S%2FLjJhksg298sOQRSGVlJbt37x7kxRcbG0tmZqbPEfolg8vKyoD%2B1cgUCgUOh4PW1lb27t3L2bNnR4wkOEhSI3quX7%2FeWVZWJn6vr68XI4LW19c7V69e7bHf7wihA2U2m2lqahJtiUVFRTz%2F%2FPP8%2FOc%2FRxAEtFotaWlpbNmyZcQwlwMlCdzS0kJUVJRo0KyoqMBut3vYoFpbW9FoNIEzeAGcOHECrVYrmoEWLVpEZmYms2fPRqVSUVRUhN1uZ%2B3ataKBMyDgU6dOebiGup1e3UF2Dxw4wObNmzl9%2BrRk31WvYEEQsNvtTJ48GXAZLvfs2SMG342NjWXz5s3ExMSwd%2B9eHn%2F88cCA3d56bgvpkSNHyMrKIicnR4yNefr0afbu3UtaWprk9uwVfPz4caxWK21tbZjNZqqrq1m7di379%2B%2Bnrq5OrGDZ2dmSVxCVBAbXkg4bN24kKiqKrCxXaKXq6mrWrFkj1nRfnSa9Nqfc3Fw2bdoEuN4VyMnJoaysDKVSSWpqKiqV6tp6akZFRVFRUUFFRQVWq1VyJRpOPg32Bvov%2BpNKv8GB1M03EJDBMviaKWjO2l3Xx7Zo99F7K1C6%2BcpYBn9lkjwQEIIcdNi7htwXqQxH5Rw5MJxfYCHIwczUZH649I5B%2B2xCEJ%2BeNVLwTmXgwQA5d01EFRbGoaOuV%2BMaW8NIiO2mty%2BKf7grg5SEWDb89rDklEsCxyrUpCTEcOhoNVv%2FVM4t0XEkjo6i7ISVL9pbOPBRDIUvLeOR2beSX%2FIZGoX3hca8zySCHKSMjiNOHYHhc9fgftkDM%2Fne3RM5ZWlm7dZimi7b%2BOx0Az9f9QD1jQIfG2u9plxSrU4Z67KWNjRb0SiimJ0eizJagSrMZaNQORVEj1ZyvrGN79w7VVJ2S8rq21ISMdW20OqwoUJB4YeVHKlqpaSiii%2FaW%2FjxowsA2Lb%2FCN%2F75h0olWF4uwd4BaucCnSJiXx%2BvoUOexcqhYLSii%2BAL0gcHcXPVj7E4jvH8Y%2F%2FeRD9bVqE7m6vUElgdXQI8aNCMTW4HCKXL8hg1fwZVNa1o1Y5aW%2B2s%2FSVt%2BhxBLNq%2FiL2HD6GEOTwmt1ewTpNPCpFGOWfNxCpDGfGOC2lJ8%2Bz9e0j6DTxWO1dzMlI4rklc%2FjsdAMF71Si8hJl0itYCHJw26TRrgMVfcwcl4wuOY7f7vmAtY%2FMJiUhBlVYGCpFGLv%2Beo7fv1vuFSgJDNDbF4Xg6KbwpWVYhS7Rspp%2BSzz%2FtvcIJksTPY5gseJJ1YjNSeVU8Pt3y3l625%2BxCl18cLKJgvdOkXPXRJou9%2FB5TQO29l7s9u7A99VCkAM1EbTYOrlzUgx3TprLmJhI9hw%2B5hPoSgVlrZZmW1Re4Sl%2FtWM1yTeJQA8Kb74RiAz%2B%2BoNDr2yfX5Xkpz4yWAbf%2BGCffWEEQWDfvn2ie1lSUhL333%2B%2FJK8uv8Bms5nt27eTlJTEpEmTRF%2FFqqoqrFYrs2fPJjExUfIFSDbxbdy4kaqqKoqLizl79ix5eXmi509UVBQnT57ktdde84ixeNXggoICLJb%2BWD2lpaXMmDGDjRs3otFosFqtqNVqLBYLBQUFgQFXVlZ6eO8NdAPVarW88MILos8buAxilZXenw54BZ85c0b8rNfr2bRpk0c5pqamDrI3DfzNcPJaudxZnJ2dzcqVKyUZQQYWy3DymmK1Ws3SpUu9mmgHrtI%2B0sLpksHuZQ3z8%2FNHXAJ%2B6tSpZGdno9frmTZtmlew94m5SiW6%2BqrVagwGAydPnhx0nDuVbufZqwYDPPHEE7z88svYbDZOnjw5otPk1KlTpZxS%2BtCnpKSE1tZWTCaTR%2FNyS6PRsGrVKkmRnH0CD7yAAwcOiD2UVqsV3wMZag3GgIEDpZvvfiyDZfDXDxy64%2Ft%2FvD5ge8fQlpVrrZuvjGXwVya%2FAhj0XOGlFyrBzchvcI%2BjWwQsWHMXYZOiCb7YgaOzh%2FqSS5wymjyOCQi4x9HN6PEx3PWt6Tg6e7h4upGF8yfCl54%2FiohQnBVO6s820XyhTRLcaxm7oY%2F87JtMnp3C7fMnMu7WBA5tLxMjDjo6exh3awIr%2Fu9CRo%2BPGVQUfoFDFWHc9a3pHi5laXeMp6rsPG%2B%2F%2FC7NlztRRIRibelAGa3grm9Nv%2FoU9zi6mZKqY%2FLsFHHb%2BcY28v%2FPIXoc3TRfaOPtl9%2FF8kU7UXEu%2B%2BPk2SlMSdV5TbXXFEdN6w81eubIeYr%2B6YBYjqGKMNovdVC299iwvxlOXiuXOyWfHT7HJ%2FtPSqq57t%2BMJEkdSNkfT2Bt6eDOnKlDQgPejkMVYXyy%2FyR35kzl9vkT%2BezwuWHL7uLpRhQRrtPVl1y6OjBA%2B6UOtFn9pvfb7ptEauY4HJ1Dxza3fNHOKaPJay54Bfc4uvk0%2FxwLn0kAYNytCR61%2FEoZt5dJqgdewaGKMD5%2F%2FywAo8ao0dwSPeRxzZc7%2BfjNY3z%2B%2FllJZS6py3TDQxVhpM9JQZEaQ6LS9SykwS5w8YNaTpeZJHeXksFuOEBV2Xmqys4P2u%2FLDQICeD%2F2tUndfCMQGfz1B4cqI6V5SAda8uMmGSyDb2Kwr6uUXSmf5sfuRR%2BPHj0qGkbcvm1Sn8y7JbnnKioqIj8%2Ff9j9er2eNWvWSHbOkZTikpISEZqdnc2cOXNEQENDA3v27MFgMBAVFSXZW9NrGZvNZnbu3AnAihUrWLlyJSdOnGDXrl2899576HQ60bhZXFwsya4oCXzkyBHsdjt6vZ7c3Fw2bNgg2qGKi4t5%2FvnniYmJYdWqVQC88847ksCSYqKCa3XQyspKMQfa2tp49tlnsdvtGI1G0aIqNUKoT83p0qVLqNVqVCoVLS39AUcGVqiRzIA%2BgaOiXBO2kydPMmvWLPG72y1YqVSi1WrFnJFqe%2FKa1VOnTqW4uJji4mKsVqt4YvdigM888wwqlYqDBw8CrrU3pchrimfMmCGWn8FgQKfTIQgC06dPZ%2BfOneh0Ot544w0xDO39998vCSypAzEajWK031%2F84hc0NDSwfft2dDqdR0DeZ599VrKLqKTKlZqayosvvohOp0OlUolNrKqqCrvdjlKp9AkKfgz2BEHgzTffpK6ujtjYWHQ6HbNnz%2FbJoOkXOFC68e7HMlgG%2F92Cgz7R3Sq3Yxksg29ssE%2BTtt6OTkIiIwgaYGVxtnTQ2%2BGyuIVEjhxn0S9wb0cnCXfdTsyylURlziV4XDROmw3bkTPY%2FvYH6oveFS9MiiT1XL0dnaSsf5qEtT8RtzkddoIU%2FdFO2t75MzUv%2FYyeC02S4N4drTo6SXzqCRHa9j9%2FoOUvb2E751p3UTPrNhJ%2FuoGYBQ8xwWbn3D%2F%2FH69QkFC5VJMmMP65ZwFo3Pqv1PzrvzFq5n1M%2BuVmktb9AFvVp5x8%2BDH6mi3EPPoY2gV3iWXuN7i3o5OEx75J8GgNl%2F9SxoX%2F3MOUX7%2BB%2Bu5FAMQ8%2BhgTf%2Fsnuu2XMW%2F4KQCRD%2BUEJqsVaa51yW1%2F%2BwPaBXehSEriWPYCwpSjuP3D9wkerSFx5gyaP6thHDDqTmmPJCS3Y2dnJz2x43C299JzoYnRt08Q93Wd9%2B4E6zvY5pqeRN73AJbiv9DVfpGQyAgi73sAgL5mCy2XPhAvpKte2mKfXrO6s7yMmEcfI%2BbRx5igVuJo%2FILejk4c9Ub6mi00%2FMsmei40EffrpwHo%2BPxvktrziCkOiYzA%2FLcy7J%2FXABCz4CEc1acIHR%2BPUFrGyYcfw1L%2BOZO3%2FwLVjEycDjvN%2BbsCk%2BKeC02YX9hO8psvEjxaQ3vxfjTZD5L08k%2BwnzqFIimJ4NGuV9rrfvavtH76RWBqdUhkBJeOFuLMM6H90Qbs7QrG3J1JkEKJaoYrnlNfs4UL%2F76Nhp27A9tlgucNIuW5pwkbdSt9oc04qk%2FR%2BId3Ec7W%2BHST8GuUeWXP5AvQLb%2Fe9fEHdKVuvhGIDP7KFBok4fWYayH5qY8MlsE3OVgQBIxGI4IgYDAYKCgokOzF53cHYjQa2bVrF0lJSdTV1ZGUlMTUqVM5cuSIJFOf3ynet28fixYtYvXq1WIszcTERFpbWyX93mewIAhUVlaKhi1BEMjNzRV93pYtWybJsDliVhuNRsrLyz1ioUK%2FLQoQTUIpKSk0NDQASDIVDAt2%2B6JmZmZSWFiITqdj0aJFzJgxwyNFgiBw7NgxioqKAJc512QyeS3nYQd7Ay3iixcvZvny5ZjNZsxms4fDpNlsZsaMGcyYMYM333wTcEWEbWtrGznLRwqK%2B%2FrrrztXr14tBtbNy8tzLl%2B%2B3CPQbm5urvP111%2F3CLxbWFjoNeDuiMPbOXPmUFdXJ155bm4uDodD%2FB4TE8OKFSvEQK3uwLuzZ88e6bSAl3F1XFwcdrsds9mMVqtlxowZtLX1LwmvUqk8KpLRaKS1tZWYmJirA2u1WvR6Pdu3b2f9%2BvW0tbWxf%2F9%2B1Go1SqVS9EFdvXo1ZrOZXbt2MX%2F%2B%2FKtvTm4VFBRQUVHB4sWLSU5ORhAE2tvbiY6ORqVScfz4cQwGA4sXL5Zs5pPcZVZWVlJWVobVaiUqKgq1Wo3NZhPb8axZs3zyM%2FfLtnil%2FImPKo8yZbAMvvHBoa%2B8dfy6gG%2B%2BrJbBMtirunp7xf%2Fuv2sK7urtRREeTEKMEkV4MNNTVTwyW0tCjFIS3K%2Bnt129vUzUjuKeqfG02DqJU7sCAJ5vbOO%2B28fwl0%2FMOLr6RjyHzyl2p%2BbOSTFU1NTz%2B9IvqGtyDYfMLU5UEn1iRgRfWX4AUaowJmpHMSbG9URQE63kg88bsQlBLL5zHB%2BcbMIqXEWgTnd2Tk2J5HyjaxCffovLJVTo7qa2qY2UhBjSbwlD6O7mfKNrXpySoMYqdNHYZic8ZPhVJocEd%2FX2khCj5J6p8dQ1CeTqp3C%2BsY0PTjbR2CZ4pChKFcYEbShzp6YAUFnXLpazVegeFj5sigcubffBSTPvHa8nShVGhCLE44QJMSpqzAKnaqtZNHMMEIRK0X%2FccBq2jOsuddBi6yQjKZqPzrhWH3zygYk882AGUaowunp7iY0K4zvzJzF%2Fugar0MWRqlYykqKpaxL8y%2BrwkBCsQhcnz3cQp44Qm0bpyfPEhirF752OXko%2BNnLB2osiPIRWazdWoYvPz3tfj2%2FYrFaEu%2BDgWsKy7lIXNeYeIhSCeHGOrj5OXRLodPTi6OplYvIo8YJGSu2I4PCQEBrb7NQ1CSy%2Bcxx%2F%2FLCOCEUIs9NjsQlBgGvlUICDH19CE%2B2qjBU19SNWKreCNhUc8zqFuee2BJLiVZhqWzh1SSBKFY5a1Y1NCMMqdHFbSpy4v6S61StUEtjdcbjbtCrM1W7dcn8%2FUtXqtUINlNe%2B2n2ic%2BbL1F3qQBE%2BuCG4m41UqCTwlRcwVOfvC9CtG3cgIINl8HAKVYb73hQCIfmpjwyWwTc%2B2Ov9uLKykkuXLjFmzBji4uJ8dj3xG1xWViaGMFQqlcydO5c5c%2BZIipc4krz2XCUlJezduxebzeax2mB2djY5OTl%2B54CkLtP9VP7YsWMcOXJEjKWo0WhYu3atX6n3CnZDBz7%2Bd6%2BvaTKZUCqVvPjiiz7DvYILCgooLS0lLS2NzMxMZs2ahUqlQhAEfv7zn1NVVYVSqWTz5s0%2BZbvX5mSz2bBYLBgMBrZt28aGDRswGo2oVCrWr1%2BPTqfDbrezfft2yVCAkI0bN24c6YCxY8eSnp7OqFGjuHjxIhaLhWPHjpGRkcGYMWOYOHEi%2F%2Fu%2F%2F0tDQwPjx49n%2FPjxgQFHRUUxfvx4srKymDFjBufOnaO%2Bvp5z585x9913M2bMGJqbm6mpqaGtrY377rtPEthrVguCQFFREUVFRaSmprJp0yY0Gg0mk4lDhw4BLpdBpVJJVVVV4FYR3bdvH%2Fn5%2BeTn51NUVIRKpRJXHiwuLkYQBFJTU8WKVVtbGxjwQLk7kFtvvRVwBdYdGKIUkPw6htcuc8mSJdhsNtRqtRgDNyYmBr1eT3V1tdjOdTqdZE9ckAd7MlgGy%2BCrUJBzPXIHIoNl8I0N9v70NiMH4iZCyzmw1kPd0a8G3DPhaUJnLgRczjZ9NZ8QWvMrqNx%2FVWDvoUlb%2F0qfuYa%2BZgvBozWui1j2Z3oeOghJWX6DpXWZqliIT4WosZ45YK4h%2BG%2F%2F5FfqvYNVsa7%2FwoB3ajNy6Lv3PwjWTnDlxLtP%2Bgz3Dl787%2FSlPETfhWpCW%2F8Kn%2F7GdRGqWHof2U9IxhwXvHCBTxVPUnMK1k5wZW%2F2v9P7yH5X2QqthLydQ29lGcGjNfTO%2BX%2BSodLAn%2BfDWw%2FBkf%2FA6bC7Urj0nX542Y%2FE7WTkBBBcd9RVfgeeI2jPXWIK%2B3J%2B7yr%2FuqMEVfwKgN7bX%2BivE1cNVsXC3f%2Fk%2Bqs7SkjZj1y1WTsB7viu65jP8%2FtTHS%2FtFUnv4Ps2QPa%2Fu%2F6%2BhAd%2F5pr9993%2BjJjqvnNfVqzkewIEHqhRX872az%2FA6bC7Uv1lCp0dlz2P8SLvffXnA2Jyvb%2FJ9b%2FJSO%2BJEoLHp4lX7urh0iSnRB7syWAZfOODQ6V26oGW%2FLhJBsvgGx8s%2BV0ft3%2BbUqlk%2BvTpqFQqYmJi%2FHJHAYkdSElJCTt37vQw8SmVStRqNWlpaSxYsCDwBi%2Bj0ciPf%2Fxjj23uiJFWq1X0eVq6dCnLly%2BXDPaa1eXlnmuTL126VLS2xcTEcOjQIfLz8yksLESr1QY2lqJb6enpLF%2B%2BnOPHj%2FP888%2Bzb98%2BcnNzxdCzBw4ckBwP1yt42rRpKJVKj22TJ08mMzOTAwcO8NJLL4lGEJPJFDi7U1xcnPi5qqqKLVu2EBcXR15eHjt37iQzM9MjHGl7e4BivgyURqPBbDbz7LPPkp6eTmZmJrm5ucTGxrJt2zZfTuU9xVqtVowQmpWVxebNm9Hr9VRVVVFYWIggCIwZM0Y8fqglEYeSpBQvWrSIqqoqSktLmTp1KmvWrGHBggXExcXR1tbG7t27xWPr6uoCB9br9eI6i1u2bEGv16PVarHZbJSWlnp0LElJSZLAPg19ioqKKC4uHnaxTo1Gw8aNGyVZzn0ec5nNZkwmEw6HA4DDhw%2FT1NREWloaS5Yskey7KA%2F2ZLAMlsF%2BK3TsO5evC%2Fjmy2oZ%2FPUHSx5lCn1D37ZVwUHXDiz0Obk7LpRsrQtSbHZi6XJdyPnOPvGifLmIIO2h9pFfj%2Bxz8vTkMF6dMDjSXKPdyZHGDt619fFWrW%2FwEVPsTumV0Ea7k3OdfUyMCOaRZDWPABnqTn5e1YPQ55QE95rV7ux1a5fZwc6z%2FW5H944L5tUJETyTHMHFnk5%2Bdca7zyL4WKvLWnrJO2ZnRXIw%2B2ZGsiI5mF%2Bd6ebtWtfc6UfjVKiCg4atiD6Bi82eJ1EFB1Fp6%2BFIYwePJqj4yyw1sxNcXpsJyiDuiJHmd%2BEV7K69AHPiQvjjzEiONwezpqqPJR93cKDVQYKyvzhuiZLmBiypOTXanSQog2i0uy7CcI%2BaspZeDrQ6%2BM3ZHqBzyFo%2FkkZMsSo4iPOdfZzrdHl1HWjt4sFyG2%2FX2pgTF8KPxqlIiQimzd6%2FBOIdcQpJYK8pFvqc5Js7mBM3iie1Cj5tcbCmqo9d5g6xGFZo%2B2P1TVaEBqY5Abx9Ae6Ic%2FCkVsGOjFF8U23jIkGMw8nshEiPMj7jkNaWvYLdzeOlEw7Odfbyo3EqHklWD3lso93p0cZHktcu0y1320xXhzB9dB8xStc1L45VMDEimCONHfxbLVTZeiVltWTwlRfglhvi643CZ%2Bf24U7s6%2B3x5huByOCvPzg0Osy%2FUeLVSn7cJINl8I0P9ul%2BLAgC5eXlVFRU0Nra%2BtUspWUwGCgqKhIXghuo9PR0XnnlFZ%2FAkrK6srKSLVu2DAkdeExBQUHgwIIgsHXr1hGPiY11vUtSWFgoedlDSUZNt%2FFDr9eTmZkpRno1GAyYTCZaW1tFO3JZWZkkk67XFLsDsGZnZ7NkyRIRmpiYyJo1a9BoNB7HHz0q7W1Uryl2gyZNmgTgYf753e9%2BR1pamoc7WcCWPXSX386dO6mtrWXjxo08%2B%2ByzKJVK2traBgXYVauHnmX4DM7MzBTNuNu2baOgoIB58%2BaJqxAmJSV5tGGpyx56zep58%2BZ5GC1VKpXYnvft2yc62O3btw%2BABQsWSAJLXvbwtddeE78PNPG5K5fFYvHpPQHJPZfbAXo4u6KvLyf4NOYym82cPn2aiooKzGYzSqWSKVOm%2BBwP1WdwIHXz3Y9lsAz%2B%2BoGDUnbOkTsQGSyDAyKfH6J2dA9e7i4y7BouLNXR3cnMxOnMTJxG5pipxCljabG3UnHpJB83nKCyWXrUBMngju5O5o3Xs0n%2FHGmxnkOcB1PnY6ivYMWhtT6BvZaxG%2Fr7xdsGQQdqZuJ0Ns5eFzjwzMTpbJuzQdLJVk15lJmJ04esB1dqxKx2les04mMSAPiL8TAVl%2FrfQnx8co6YC27YyvQlfNzgPSa29ynMmKkA7Dn1P%2FzXZ%2Fke%2B54rfYWmtkaPbd%2BIm%2BoVChIqV5zSNWmrvXyRyLAInr71cTEHHnz7ST5qOUlarE48XqOKlgT2muIWu2s2%2BMyU75MxehJP%2FO2n%2FKz8%2F9F8udPjwtyyCNJegfU%2BMb90EqfD9d7ly7N%2BxA9uX8Huyj9yxnYagLNtRqpb%2B5%2BNfNQSgDdRI8Mi2F35Ryqbz3psfyLjH9CPzeQHt68Qy%2F0Ht68A4M2qfXR0d3rtzbyWcUd3Jx3dnfz73JfEbe6a%2FGDqfLEyxccksOfU%2F1BywSCpC%2FWa1ZFhEVQ2V7P3zH5igyIHdSLxMQkidOOR%2F5Tcb0sec13ZV6fF6rAIbZxtM%2FLH6oN83HDcp5tFQAZ7Usr0SgXkfuzPbfHmG4HI4K8%2FODRa4ftKvoGQ%2FLhJBsvgmxRcWVnJ888%2FLy6D95WBy8rKMJlMwz6tvyZgg8FAaWkpIN3UM5R89nfKz%2B%2BfP7n92kDaUocD5dOjCHcQVreqqqqoqqoCXC6F1wys1%2BvFuJjgMv24DVwD3QylyOe700BfVV9NPgPlc%2BXy1%2B33qsFSfU8DDg6U%2FFqCx63S0lJSUlJEjz6pLsDg5%2BqD69atG9Rr6XQ6Nm%2FefO3A4KrZ%2B%2FbtE91%2F4%2BPjmT9%2F%2FrVNcaB0Y90WZbAMlsFDKWj20h%2FKHYgMlsEBkV9DH8HehaOrG0V4GCpluPcfDCHfR5n2LjImpVC48195dOE9CPauaw92p%2FSBxdmkJ8Vzy%2BR0HF3SvH2uCgyw4uH5fOvOKQA0WzvFC%2FJVIeOnfGOjlAPbLnfwxOrv8sJ3FhP6pctRgqKHiPGTyE6PwWLro%2F5SM2GhAVoubaAemeY5G0xNTeW51FRgDqdOvYS0l1%2F9AL99wswjXwIBzje2UVFTT2yokvMdakD6EwKf7k7uGv27%2F%2FgJ4Jqob9r1rl9NyqfKNVQNdnR1%2B1W5fAIrwodeIfSap3g4%2BZPiq5otZs65jxXm%2Fgg3%2F3PoA8mp9xlsvFBPVV0T6UnxpCTEsP4Z16MIo9FI%2Fp8OSwZL7kAAwkJDEOxdnK42ERs3llFRCjqEFhrrL%2FHWoXKqTV9I7kD8Guy5y3Rg6gR7l0%2BVzK8yHgrga82%2B%2BUYgMvjrDw6NivTdzB4IyY%2BbZLAMlsHXD%2Bz2Z%2FTVSCItro8gcOzYMWbMmOFh%2FjEYDGzZsgVwuaD58oRecooPHjzIunXrPMx8A82427Zt88msKynFKpWKpKQkMULoyZMnxWXxBqqwsJDp06ej1Wq9GsZ88vC6MvbtUNJoNMydO9er6U9yVt96662S7MU2m21Q8Nah5NNtsbKykldffXXYVCuVSjZt2iTJzWzEFF%2FZRDIyMkRD9VBavHixZN%2B2EStXW1sbb775JhqNhunTp1NbWzvs6oI6nU70YZQir1ldWVnJ1q1bR3wRIT09nWeeecYni7nkdVPLy8s5e%2FasGOU1NjaWqKgopk6dKoYY9kXymEsGy2AZfOOBQ4Peb74u4Jsvq2WwDJbBg5QToeSnySpi7L49gZZ0tLYrjEfGu2IqmsP7TUBPJ4SxI8MdwLGTf6ntGfoEQ0hSioU%2BJyu0kRy7N4qnE%2FpNQAOjRr46IYKfJkt%2Fg1FSituUPZxx9DAnzhU98o44V0DHOXGe9ocfjVPxt4t9nO%2Fs88iZoSS5jD9tcYifn9QqhowImqAMYt%2FMSL47yXt6JIPfvoAYmjQQkgw2h3fz%2FeOdI8Ib7U6WfNzBv9R6fx4yIvjKJrK%2F086B1uHNef%2FTKHCkxzHs%2FoEasTBUwUFsSVdzrrOXv13sY%2FroPiYrhv5JWUsvL1V2g%2Fc5OQBBHLaMWHA5EUp%2BPT3CI%2B7plXq71saaKu812Scw9Hcgd8QpiOvqJj5KRZNVoCU8jE9bHPyq0fc3IySBr4Vu3JuEDJbBMtit0NhQOSaqDJbBMtg%2F%2BTTTMhqNNDQ0oNPpPJ7GG41Gdu3ahd1u54knnpAUL1NyB1JUVERhYSF2ux29Xk9eXp4Ife2110TTgdSVyyRldUFBAfn5%2BaLZxx1ZEGDXrl0e9gqLxUJJSYnXc3oFl5SUUFhYOGi72zS0aNGiQVFCh7PU%2BAROTk4mLy%2BPFStWDLlfr9ezatUqj21SrDFeK1dqaiqpqakIgiCGJbXb7SPai2fNmuUVLLk5qVQqj%2Bifly5dEj8fOXJE%2FKzX66%2FexHel3MsfQv8yliUlJaJNWalUSra2%2BdSOJ0%2BeLH42mUxs2LDBoyItXbpUsm3RpxSnpqZ6kdUF5wAAIABJREFU1GCTySQ2sezsbHJzcyWfyyfwleXsVnp6OitXrvTlVL731VdGedXr9axfv95nn1W%2FxlxFRUUYDAYWL17s05sQVw0OhG6%2B%2B7EMlsFfP3AQuT%2BVOxAZLIMDIt%2FMYz1fPpcODRt6u3jWod2T%2FAP3dJOVOInbJiTysbGWU01mcfuclCk8961voBkVy5bC9%2FlzxXGvcMngF3O%2FyXNL5jB6VARFhlMs3fI7Efq7F5eQkhADQFL8Ys79n5b%2BCxtGksp4y7cX8%2FNVDzB6lMvINXdqClPiXfOjTSvmilCAlIQYvpedCbaOqwD3dJO38G6eWzLHY3OkM4SJWleMl%2B3vVHC%2Bsc1jf0qCZwxN38FA%2BecNPPx%2F81m%2F56%2Fito6g%2FhUGC8v%2Bl%2F%2B75wOP35xv9FzqYSiNXMahYZSdPwWnuzhhSuL7C%2B4kJSFGzHIAlOFYr%2FBpK%2FpbNXhxQ%2FJexqFhoI6k1tpMRU29uHnSuDiwd0FoGMvvn9IPNZyi7IuzXmu19A6kp5ujZy%2BKXx%2BaNZ1kbRJ5C%2B8mV98PfnXPh4Pb9VDpkQwGTp7vnxPfM1VL0YZlTNGMFret3%2FNXjjZ4Ty34kuLQME6YGqiqaxI3ZU4YizLatbDjbw%2Bf5dU%2Fl0iC%2BgYGaq3NfHK2bdD2IsMpVu3Y7cupfLxJ9HRT%2BOHHHpt%2Be%2Fgsz71xSFK5DlQI6XdvlHx0cAhnGpvotvcRFhrBL%2F%2F8If%2F81p9o77wsOYvd8m%2Bw19PtArn%2F%2ByH%2F7sdumJ9Q%2F8EBkAyWwddMoakJvkWLC5Tkx00yWAbf%2BGCf4whUVlZy5swZLBYLarWalJSUQd59AQWbzWYKCgoGBesEl3VmzZo1Pi0gJtlvcfv27VRVVaFUKlGr1dhsNvG%2F1Wr1OcWSylilUvHkk0%2Bi1%2BtRq9WsWrWKnTt3snbtWtRqNfHx8T4vbekVbDQaMRqNpKamYjabsVgsHDx4EJVKhUqlwmKxYDKZqKysxGw2S17o0Sv4%2BPHj4jp7bk%2Buqqoq8WJ0Oh12u52ysjIEQaCsrCwwYHDZiwVBYPbs2aJPYkNDA4CHV195ebnoenbV4NjYWOx2O%2BXl5Wi1WrRaLUqlUgzOOW3aNMAVfPfUqVPi%2BoxXDU5OTgb6l7jU6%2FXodDoOHz6MwWAgIyOD9PR0wFUEI%2Fk1%2BgROTU0lOzsbg8GA2Wxm4cKFZGZmYjKZRPPtsmXLMJvNaDQaSbZjSWCAlStXotFoKCkpQaVSidnvLnt3jV%2B1apXk9iy5HW%2FcuBGlUokgCBw%2BfBhALHuAJ554wif%2FRb%2BCsR46dEjsq6dNmybpvY%2BrBgdKN9%2F9WAbL4K8fOOi%2B%2B%2B6TOxAZLINvbLDPs8UZM2Z4rPRdUVFBVVUVbW2Dn9yPJMkdSGJiIk899dSQr1EZjUZ27NjBsWPHJIMlpTgmJobnnnuOzKkZ2NsdmNovoxnVB7jW3ouKi8RqtUqGAoTodLqN3g6y2%2B2YTCbU0THEJEbx619u5Tf%2FvYeas0ZunzmNupov%2BP3vf%2B8T2GvlmjhxIhMnTuTcuXMkJycTH5PAkiVLqK2txW63Ex%2BTQObUDGbMmEFiYiKzZ88ODDgrK4vVq1fT3t7Oe%2B%2B9J2679957OXbsGEajkSCFEr1ej1arDcwUpr29HbVaTcbEqSQnJ1NaWiquRKhUKmlvbxcH9OCaObrnWlcFjo6Odi2UHq1Ar9dz5swZTBfrab7cSWxsLNHR0eJkzm63M3nyZC5fvnz1YEBcQeHee%2B8lOjqa8vJyzp%2Bt4t5772X27NkcO3aMo0ePAq4iOHv27Einkw4%2Bd%2B4cJSUlZGVlkZiYSGFhIWfOnCFj4lTmz59Pe3s7%2B%2FbtQ6vV0tTWSHFxcWDA4AoI1dTWyNKlS6mtrXVFK4pWcHvWN5g8eTJVVVUkJyfz%2Fzb%2FktraWklgye34eMUJYmJisFgsfOtb32Ls2LFEKMJobm6mpqaGc%2BfO8cknn0gKnwQ%2B9NXnzp3j3LlzxMTEcPToUTFl1dXVtLW1%2BdRdgjzYk8Ey%2BOsADk1MTLwuYPlxkwyWwTLYbw079HFHEwRQKBQe%2BxwOB8nJyT7ZEiWD29ra2LlzJ8CgMJVKpVKMFGk2mxEEQbRFDHSyG%2BnCRuwy3ScxGo28%2FPLLgKcnpiAI7Nixg%2Brqamw2m%2Fg7d0DPkTw2QzZu3LhxOHBYWBhhYWGMGTOG9vZ2ampq6Ox0TV%2FS09MJCwtDp9NhtVo5c%2BYMoaGhPPPMMyxYsICsrCy0Wi1hYUO%2F8yW5cuXk5Ihj5sLCQtGJThAESktLUSqVvPjii6L7YEZGxoimIMlgrVbL0qVLAVeZ79%2B%2FH6PRyIYNG7Db7TzzzDM%2BWWN8vi0%2B%2F%2FzzYthZjUaDxWJhxYoVPnnwgR%2Ft%2BIknnhA%2FWywWn90G%2FQYP9F1UKpXcf%2F%2F9PkP9AgdKkidtRqOR8vJybDab2Gbtdrs4N%2FbV1Ce5cgmCIDahK5uJIAiS4hn7BQ60br7bogyWwV8%2FcOj%2FPHX4uoBvvqyWwTL4mmnEoY%2FDNvIyaAq1f4s8egWnLB3ruoBqzwtQpIXjqO6ixSTN4iIZ7LB1MXpiNHP%2BYdqQP3I67Hz%2B4Re0mC6jTlQRrgqjS3C5HYWr%2BudKI11Y0B%2B%2F957XMVecbhT3rb8TAHu7g7%2F94ii2BtdM8rbvTSB5ihaF0kmQQom9vT9s5cDjrlTIY5nf2egN3PaFFcW4MDTjYwhVhtLpdFBf3kRoeAiXjrWiGB%2BGJkWDvd2BYdtnXPi4kQsfN9L%2BxfDempJrtelAvZia2%2B66hdETo3HYuojTjSJ5imsObNj2GebPLbSYLnstf0lghTqc5nPtVH96AYAghRLd4rGMnhiN%2FtnbUUYreP%2Fnn2D%2B3CK5pkueSSjU4VS%2FVcvU6TEEj9YweXYKyVO0%2FP%2F2zj0sqvPe9x8QZtYgAwwO4qARBqOAxIiYnnhJNhptiSFJA6Rt1Ce1Wnf22dHTdsed46479rhrku4%2BPeZ2jHvHJvqkJ1p3T7wkVhNSFe0TvCQBNZGLUQfwAqJch4FZM1zm%2FLGylozAzFoDtrFZ3%2BfxkVmz5v2s9%2F6u9%2Fe%2Bv1eINfL5wfOaoKCxAfG4vBz%2BzxsnowixRs4eq%2BHL39dqrtOaW67maqdfyb1y6HrQhmZYwMMl1Xkcb4%2FBOsOCMSoCo3Cj6o99IAHrDAuNx1s0tWSqwXKgXncX1fvq%2FL4zmCI1N5%2BaFqAMHri2k47gm9gf62AdfMsUET1G2%2BaZ4ZI%2B3aSDdfCwSXV%2FfPToUWJjYwFpSV0o53aFBPZ4PHz44YeAtDbP4XBgMpmw2WzKPHZcXJzqOWvV4BkzZrBv3z4EQcBoNLJp0yZlVWJ9fT0ul0vTCWaqwXLsbDYbHo9HWQapxg3pQNJUuMxms2Jtk2MJKJsmbxnYarVisVhIT0%2BnpUXyZDN16lTa29tpaWlBy2KWoJ1EXyOILJPJRHNzMwDx8fE0Nzf7FSo1hpGAeVxfX8%2BGDRuor6%2F3O2tR3pc60N8yeNWqVQG3jQZM6qqqKqqrq7HZbCxZskRxMyuKIo2NjUyfPh2QTH2yd1h5ZXJVVVXoMZYlJ7XH48FsNpOQkIAoitx1111MnDiRHTt2MGnSJMxms%2BoFoarAoihSU1ODy%2BVS6m5LSwsej4fRo0fzxBNPKIt9S0tLAx6RqAkMkgFTzkO5RLe0tCil2e12c%2FbsWbXBhdZJZGVlYbFYsFgsZGVl4fF4aGtr0xRGwBj3XYZRVFSEy%2BVCFEVaWlq4fl1yLDRp0iTKysqUzbJyMt%2B8hONmBa3Hu3btorGxkfb2dsxmM0C%2FVspsNivXzGYzVqs1qDFbH2XqYB18%2B4PDPhfQ67EO%2FtsCqx6BeG86T9ug8pCwIYG9IliWPEb39WsYhHh6zRG0vL1nSA%2BgfsxlHU%2FUwwshWqDj%2Fb2MnHs3rhov1FfhsaUD0NPRSZRTnT8Q1eBL%2F3cPdy9egqfhMl0NV0nesBVPw2U6DxzEkHonYXFRtH30R1revqgqFVSBDQJw7SKeC%2Bfx1DmITBxDxzHJxYoh9U56ujuIoP%2BhgIGkqVR3X2tAbJBKWVhcFGFxEizCmsCI%2BASMUdZAP9cOlku013GeiJYr1H%2F4MZExUr4279vBiPgEANqrPhksiH4K2El4RegePZ7YTMm9bLhJejlzVjZjnXYnXrEZZ2UzMRmSH7detzTgbytvJeJa4LweNI%2B9Ivjs6Ux9748YkmK%2FutiGzx1NWOwI8H41gDfESn8bYm%2F8tq6NM999GG911aDwgElte%2FA%2BhCkT8Fy8yMWnllLz838mzOQifJSVcNsEmnfvlwKxTZCuffVPmDIB24P3BQpaXakWJk%2Bm1xyBYB2P52obkZc%2BoCsyEecnh%2FA6zjNm1U9wlpTS421n1KIfqwlSHTjMKDAy%2B14irAl4Lpyn%2BdCfCIuKQrCOx1X5GfXr%2F52O2gp63S5GTpmDMGVC0DBVVyexQcTX2ik9SNSNOmvM%2BjZdDZJXI9PM%2FBvlYbjAkZ4bboPrdn2Er7MTX2cn7mO7iUwcg0GIl%2B7xqntrDJjUckwAxqz6CRhiCR9l5c5oAWGstNx15JVyYud%2BB7Gigq4rbsJtE%2Fr9diAFHeyNWvETjNl3%2B10bYTDT4233%2B3uEQXqT7PG24yn7nKbXXxsa%2BOZ%2BWK2CdRRBS%2FVQO%2FzB9M0bc%2Bngv32wPuujg3Xw7Q%2FW7OWmtLSUoqIiP58QCQkJ5OfnK8YRNdK0CWf37t24XC7GjRtHeno6JpMJt9vN1atXOXPmDCC5P1Rj2FQFdrvdvPzyy1itVsaNG8fcuXP9Aq%2Bvr6e6upqamhoqKipUHZ%2BmCrx9%2B3YA8vPz%2Bf73v09MTEw%2Fh6wA27ZtU2b0n3rqqYBhBi1cpaWl1NTUsGjRIioqKgBwOp3U1dX5%2Fe90OnE4HBQUFNDY2Digm1pN4KKiIrKyspSHCCR5L%2BucOXPYv3%2F%2F0MC1tbWkp0vvwsEMWTU1NYDkgFe20gymoNXJ5XJRVVVFS0tLv7Mzb5bVasXhcFBVVeW3VzUkcHR0NImJiSQlJSmOVo8cOdLPjc7UqVN55JFHiIuLUyxxgaTKGWtDQwM2m43jx48zbtw4nnnmGWJiYgCIiYnh5z%2F%2FOc8%2F%2F7xiN%2FZ4PH6nUYYEfuKJJzh16hRut5v8%2FHwOHTrE5s2bFajT6exnVTt8%2BDAPPfTQ0MCpqamkpKSwe%2FduTCYT69evZ8mSJX5JLfvABanOW63WoKsjVHUS%2Bfn5VFRUsHnzZkwmE2PGjCEtLQ273e53zub27dupqKhQddqk5ra6pqaGrKwspcDV1dXR0NDAqVOnsFqtw9tW95XD4eDAgQOKTyeQFijk5ubemt5puPXNG4Ho4L99cNhTTz2lVycd%2FLcF1vzuBPQbyPVd3XZLwPJ6rpycHGW1oiiKVFRUSP40NTyAJnBeXp4y4pCHPjExMaSlpVFbW6usgFLzAKrAZrOZp59%2BmtraWnbv3u13mrcgCNjtdubNm8fq1avZsmWLqtirarlWr17NgQMHsFqtZGVlcfz4cT%2FXhVlZWYoTz%2Fnz57Np06agC0QDxtjlcimOG4uKilizZo1ydv3Nmj59OuvWrWPixIk88MADbNu2LWCsAxu8bDaysrLYt28fGRkZjJ8wbtB7x08YR1paGjt27CA9PR273R7wNWZQsMvlUlYj1tfXY7FYSIhLHDSghLhEbDYbLpeL2traoL5RA8ZYzsfo6Ghl2Vwgmc1mJXmDua8M2nJZLBamT59Oe3t7wPdjh8NBe3s7kyZNIjk5uZ%2FbpZsVsHDJKxKPHDlCdnY2paWllJaWMn%2F%2BfKWAXW9t4NOjpRw6dEhZsarGBe2gMY6OjqasrAyLxaIsV58%2Ff36%2Fd%2BSLFy6zbds2ZWGwzWYjOTlZ8Q6rGQzSbM6pU6fIy8ujurqa3bt3k5ycjCfCTJOz0%2B8h5UmYvLw8ZbFwyNUpOjqaoqIikpOTKSws5OjRo7z00ksYu9uVk0TlKiZDk5OTOXTo0PC0XH2bzIMHDyp5KBegiooKZs2aRXp6%2BvA2mbJyc3NJTk7G6XQqvrtMJhPJycmcOnVKUyehCdx3mXNcXJyykPuWd4vR0dG0t7ezb9%2B%2Bfte1DgZCGoGEMuK4Wd%2B8wZ4O%2FotJn3zRwTpYB%2Bvgrz9YkxPHvhvkEhMTlRn5zZs3%2B506%2BPzzzwcNT3UnsX%2F%2FfsXuAJK5LysrK6iZZzBpGnNZrVbFPLt%2F%2F34uX74M3LCid3Z2MmvWLFUPownc2NioGLsuXrzIsmXLcDgc7N69m%2Fz8fCwWCzt27PDLhmEBA4wbd2NW4MCBA4prUvkVNpjhMySw1WpVTLognbcpa%2Fr06VgsFg4cOKDqlElN4IsXL7JlyxYAoqKiyM3NJTU1lfz8fCWPx48fryosfeijg3WwDtbBqhUxbZe604mGW9%2B8pNbBOlgHD5vU%2B%2FXp9SF23xgXChFhGMPDbh3Y0%2BvDGB7GnIx4RhskkMXbxKfXBcoaRYzhYZws8D%2F4T00zHJa1sybg8NbT6yPbKvDOnDFc6hBxdUm5kxFn4PXaTjYcawCkFJBTJNYQPAc1Deh%2F%2Fmkr7zok8%2Bzh%2FPE8ag1nVWc3j6eaedwuTZ6%2FW%2B1SUiKQNBWulVMt7JhnY8c8G3aTgV%2FVeMmIM%2FCrb8XRbIjE6W1jw4xEjOFheHoDvycMqVSn0czMNAt3jBSI93YRY4glUQhjZtowvzttPN2iJPWGeWMpSBnDW3WSh99TXimGV2o7cV7vHDSMkMD%2FmhWv5OXMRBPHGjp474tmfpwUSZZBztPe4cvj8mYPr9d2crbthtPVdxvc%2FFtpE55eHz%2F%2FtJUrXwX1bnXgxb6yglYnWW3e3n7X5GrTt3FR27CoTupAddMYHobRoK0V%2B%2BZ1EjpYB%2BvgYZM%2BwaaD%2B8ntdlNeXo7D4RgSWFW3KO%2BROHLkiN%2FWo507d95a8KZNm4Lu2NIqVUk92E6eoSS3KnBBQQEZGRn9rvc9afCWgAFWrFih%2BvzqYQX3PYtvMG3fvl0xDwWTpnF1QUEBZWVlVFZWAvj5T9y1a5dfKR%2FyvsWb1TfJ5V17DoeDbdu2KfcUFRUNfd%2Fi9u3bKS4uVgqSzWZj%2BfLl2O12pk6ditvt5te%2F%2FnW%2F3wXbtxiwdyovL1eOtBQEgZycHL81mfKD9U1iq9XKpEmTmDlzZsDtZarzWBRFioqKKCoqorCwkEWLFgHStjOAlJQU7HZ7QAesIYEHk8lkUh5Ci1SDZ82aRXZ2Nunp6cTFxVFeXk5mZiYOh4Nnn33W754ZM2YMfRuww%2BHwy1O3283atWuprq5m8eLFLFiwgOXLl%2Fdb5Ns3OwaSqn2LffXCCy8oZ2qKoojJZBqwYQnmbFlTPd68ebPSePTVzW25IAhKoRsyuLi4OKAz3RUrVih%2FL1%2B%2BPOi5uaoLV3p6OhkZGQPGGKSG5Te%2F%2BY3i5zqYQtowefz4cSoqKlixYoXqejtk8HDp9hll6uDbDhzWUPCAXqp1sJ98ohufGPobhCxVnYQMiki6gwj7BMToGEZ8cZKe5uDe14cEFmbPwbDgcYTJkwkzCsQCrR%2B%2BT89vX7114BHxVmLXvNj%2FYQwGtJ9VdkNB87inuRHx0If9rvsso4eAVQH2iW46fr%2BV3voLfteNY9S5LgwZHCaY6HKco33rW%2Fg8N0aS3kHKldoSr6o6hcdZEEsO01b8kXKtr7NGn%2Bim234X1o2bMS79mSq46nocJpjw%2FvZVJcnDvtoP4xPdRCTdwZhVPyHcNoG4x7%2BPMHtOUHhAsE9009vaogTiE920b31LAhsF5YGinl6tOG8EMP%2FDM0Qk3REQPmh18olupf52Vp6E4o%2ForruE%2B%2BCHdMXZiBidKMV28Y8xTfPftRc%2BykqEfQJdjnOECQO%2FygQAi%2FgmZWGalo1pWja%2BwsV4Sg7jOf5nPAf34BHdUmwzpgHQ29SIt64N8Uo5YWXH8ZSeIDxucBtjwP44ZsWzCA882O96w2v%2Fju%2B9PxAeZ2FEvBS77uoLdDnOSYEKwqAxVRHj%2Fvnj84h4Sg4T8cVJugb4TXicRXV1CrwNuOochoyJeCvP0XbmFGFH%2FkRvawumeQ%2Fim3Yf3Tu3Yvj7nxL74KP4PCJiRQUdx0rwnPmcyIbAk2%2Bqhj59YzEibyHWp%2F8HAA15sxBmzyFm1S%2BUUi6rb3YMJFX1WM4vYfYcBerziIQJJsSSw3hKDvf7jeByEhZgQk4V2Ce66cn4FjGrfjHg9x2%2F30pv0402tGn7W4glhwMWMNUtV%2FxDC%2FolJ0ip0V13ifY3XqK3qVHqp3duD71U3xx407s7GQUYZ8%2Fp9wBhgglP6Qm6%2F2WF6lGJpnG13C5H2KXm0VN6ot%2F3wWIqS9N0U5hgoqe5ke66S8rnm79Xq5DmubQABtPtM66%2B7cH6HIgO1sF%2BcjgcIZ%2FFp6nJHMyqCtLs%2FIMPPkhmZqaqsFTX4%2BLiYt58802io6PJzc3186939uxZioqKaGxsDDozr8inQocOHfIVFBT43njjDV9nZ%2Beg973xxhu%2BgoIC36FDh4KGqcom8eyzz5Kbm6uY7dxuN8ePH%2FfL3xkzZpCamspzzz1HdXW1n%2BVtIAXN4y1btiAIguKm0OFwsHbt2n7Gj4qKCp5%2F%2FnnmzZvHxo0bOXr0aECDV8BS7Xa7qaysJC8vD5PJRH19vQItLCzknXfeUQwhkydPBmD0aGmmQLY7DqaAMZZ9nKakpACwd%2B9eRFEkNzdXKUCyg1atM%2FVBPaAAyrGlR44cAWD27NnKPbLvUzmmsmlXftiQwDdLzlc58KNHjyr1Wa6%2FZ86cQRAEpk2bFjCsgEktP%2FW1a9fIzMzEbrdTXV3N22%2B%2FzZkzZygqKlKuFRcXU1ZWxtGjRyksLAxq4gsYY%2FmpDx48CMDTTz%2BtHPR35MgRVq5cydKlSxEEgY0bN1JWVsbixYuHpwHZtm2b6kZBi4LmcX5%2BPna7nY0bN7Jr164hLcHoK9XenOXVL4IgkJ2drVQf2d%2FLihUrNB3Uq2mw19fKJmv8%2BPFMnDhRlc04ZPBw6vYcgehgHfy1BEdMP9r0VwF%2F85JaB3%2B9wU1dvTR19Q76WY00vS02dfUyPSaCRxIMjI82kGaUfn6q3UO5q5sTbQPN2w8D%2BBeTYsizGEgUwqhs9dLm6wZgRbLk7K%2BkuYdffylypTf4MViqwMZuIy9NiWSGxciWeg97aru50ivS1NXLqMhwwMWysSZWJEfx6%2FRIVlcRFB6WXdIYdATyekY0MyxGni53sr9RcnY%2FKjKcFNONIlLq7OYhq5FNmTGUNPfwk6rWgGEGjHFTVy%2FPpoxkhsXImgud7G%2F0MCoynGVjTTxqDeeOkdK8dYPo41hDBz%2BrcVPS3MPs%2BBGkmMKpcQ9e4AKW6qQwE48nmrjUIVLU4GZUZDhrxxpZkRzFHSMF9tS6uNQhkiiEkWCWBnr7WqQUmRIdEbCkDwpu6uola1QviUIYf3KG0dTVyyMJBh5LjuZSh0jhyRaWlvdQ2igVsFPtErBVlD4nGEYEilPgGMtbQj9rlgL9QYJ0isJbdV2UOrtJjetmTEwkAOWubr%2FfXvf2hA6Wn7rB28OoyHCiI6Wku%2Bb10dZhIMUUjt1kUO4B%2BE50uHJPyGD5qdNi%2FM%2BL%2BE50OA%2FYenk2JYpEQUqVLo%2BB6TERPJYczfEWDyfaur6qaiGA5afOsxhp6urlT04J8lhyNDunSRa0PbXSdsHfZkWxc5qFSx0iv6kZwobJUZHhnGjrorLVy%2Bx4KTa%2F%2FNLJRZdAliGMK4Sz5Yr0AneFcLLMRt5t8CjXgiloA3JvbCSbMmO41CGy4osePvfciI2clHK1CZS0msEAjyQYWDdR8vS7p9bFJ93hnHXeqK9ZhjA%2BcvUOfyex97qXL1wtPJMcw8zEkTwmhMFXR9I2iD6axS4%2Bcmk7H1FVjGU1dfVytzGKceYe4oQIWsVuGrw9AZvGwaSpWxwVGc6VXpErbdDUp7MIRSGvKA8VKOv2GnPp4NsKrM%2F66GAdPGwK2knIM7ZaJAgCCxYsCDibGxDc186kVcEOAgyY1M3NzaqhhYWF%2FPKXv1QMYIH2zQQFa9HUqVPJzMxUvdtr2MCyLUqtzSKkEYjVauWJJ55g9OjRnD59mp07d7JhwwY2bNigOgzNYKvVyiuvvKKU2MzMTGw2Gxs3btQUjqqkLiwsVApNTk5Ov2oyd%2B5cxTOo2s3QX%2F%2BWS7YzHjlypF8BKi4uprGxUbU%2FVE3gWbNmYbVaaWxs5Gc%2F%2BxnFxcWUl5ezfft2JX9zcnJUgzUVrtWrV7N27VoaGxv7Faa%2BxuxhB6empvLmm2%2FywQcfKGeCWCyWoBtgQwaXlZUxdepU5XNaWprfOhCQdu6CZGseMjg%2BPh6A6upqZTuwWgVLgaCjzPLyckpKSvy8NQfT5MmTyc%2FPD9gt6sNbHayDh01hk%2F%2FhNb066WAdPCwKOhBYcM%2BdzJqcHOw2P7V3etj6URnXnYPP1AcE32mL5%2FnvPYAQawx024AyRxlZ%2B7uD2sEdopeJY%2BNVQ1%2FaXcIX55pISjTxwpJvk5IYh8UYTYtnYBeHw5bHRz6vobjiHHuOVQW%2FmWFwRCLrrhRpeeTEsfG3Dlz8iYNXPjhGU7OXnOxxPJM%2FmxeWfFtTGKqSuqahlbILdQBUXrzOyi37OF%2FfTIvHxbbiz%2FnVH6SFomKbhz%2BfUbfQWxX4yBfV7PxYGjd%2FUPolHeKNDcAjBQMffHaemoZWOsJ62LDz0PCB%2B2qUOWrA6%2BavbIyRYepqgSqwOcrImRrpDeHh%2F5bGPanJdIhe5d%2F%2FfPw%2BRsVEUX6xjUZXW5DQJKkqXJYIgdPVV9l1tIKCWZN59xeP8%2FaBkzS1d3LPxFT%2B7i5pqeTW%2FZ8GbK00g2XJLVHBrMksmX9jUW%2BTs5OXdpdQXHGOlNFxwwdu6ZbmujpEL89s%2FoC9H59nysRRCrSk%2FCI116TFCMMa45y7UnjpqQXK5%2FZOj%2FL3KHMU0yeOVT5bItQ5DxsUPFIw8NmXdZRdqCN7QhIFsyarClDW4c%2BrB22nQcWelDIfAAAKgklEQVQoMyEmitmZ45WjLNXoi3NNfOII7Eo6aFJfd3ayrfhz1VBZIwXD0MBqAglF37wxlw7%2Bi0mffNHBOvivDy4vLx%2FSvhjNbxJ9PQsKgsD69euDurYbSJpi3BcK0o6vtWvXhuQNVnXL5XA42LRpkwLtK0EQWLNmDSaTiS1btrBs2bKgqaAKPNheRVm5ubnMnz9fuUcQBN58883Q7cd9oTabjYKCAq5eveq3C7OwsBCbzeb3YMuXLx%2Fanra%2B0FWrVrFr1y4sFgsrV64EYOXKlYpdUYauXLmSuXPnBotPYPCWLVsQRZGlS5fy%2BuuvU11dzcaNG6mvr1dsiH3tT%2FIDBfOPGxQsH%2BhXUlLCsmXLFLezO3fu5LnnnlOggiAo0I0bN6oy9QXMY3kjrGx2X79%2BvZKXshdJuS4fOHCAoqIirFYrq1evDgpWVao3b95MUVERGRkZLFy4kNdee43GxsZ%2BULvdzvr161XtbVNdj2W43W5n1apVbN%2B%2Bnfz8%2FJCgmsB94VarlZycHCoqKqisrNQM1QwGyVbctyTn5uby5JNPaoKGBAZpF%2B7%2B%2FfvJzs6moKBA689DBw%2BHbr%2BBgA7WwV9bcMSyP2ufWBkOffOSWgfr4AHV2d1DZ3eP8nco0vy22NndQ3qcmR%2BkSkPfj67UcayhhaiIwFvJhgSWof84eYKywSojLgVAgcspEOxBVCf1QFBZP81M4aE7RtPZ3cPMRAszEy1Bs0BVjOUAf5qZEvC%2Bm%2B8JlAVBY9wXeqlDVLaS9dXvzl0BCPpgqsF9oZWtXt46e5laVyOvltf0g%2F6wj0FkXdn5oAVu0KSW81SO6X85Liv5%2B7tzV1hXdh6AVLPJD%2FpqeQ2pZhMWY0ToSW0xDvxcP5w4lqxRY%2FygDaKPdWXnSY628sOJY7EYIgMFPTg4KmIEp5uclF1t446RAo8mJfAfFRe41CG9gD%2BWHK1AL3WI%2FEfFBbJGjVG2kB6uD%2ByfIGgeb%2Fyylj21LrLHxPJoUgJvnb2swGXoW2cvK9Cyq238r9Iv6ezuCS2P5Vh3dvew48I5YCKPJUsejd46e5kfp41T%2Fpahla1eNn5ZGxQaFCzDAd6vdQCpPJYci0kw8dbZi1iMEfwgdTwZcQYqW7385vMqVVCAsKVHTqt%2Bd%2Brs7uGhO0b7lWKAsqttqmMqS1NbHRUxgv2XJAO2DN9T6%2BL9Wm1QzeC%2BcEe7G4sxgtNNTuW6FoW0HCMqYgRVre0hAYcEHgpQ1u019NHBtxVYn%2FXRwTr49gdr7p3q6%2BspLi5mxowZfq4qZU%2BTau2MmhuQXbt2sXXrVpKSkjCbzQiCgCiK1NfXk5mZyZo1a1SFoznGVVXSStO6urp%2B382ZM0d1OJpj7Ha7OXnyJEajkYaGBrZt24bT6WThwoWaNlppLlwmk4lZs2Yxffp0Tp06hdPpZObMmZrP4wu5VG%2FevJljx46RlpbGP%2F3TP2n%2BfUjgXbt2sXfvXpKSkli1apVmCwygztNvX5WUlPgefvhh36JFi3wXLlzQ%2BnNFmsCfffaZ7%2BGHH%2FY99dRTQ4L6fCo8hMqqr69XjibNyckJ%2BUQ6Waqr0%2BLFi3E6ncrnpKQkcnNzb73B68UXXyQlJQWXy0VpaanSgEydOpWHHnqIadOm0drayrFjx1Q9TEhjLrfbTXFxsdJ4gJQCLpc0IxTMk3PIYFkOh4MtW7Zw%2BvRpBb569Wp1HcWQiuZXeuGFFzSXdH14q4N18LApYsuh5%2F4q4G9eUuvgry%2FY2%2BXG2%2FUXOmGyr%2BJGJgDQ2nHd77ohUtsQVzP43kl5RBtGc7mlwu963Egrn1f%2FmfpWh6qH0OZ1bqQN%2B%2BgpACTEJfp95%2FOInOjapzosbUtgu9o5WV3M9dYGqq99wfXWBuW7I%2Bffp7Xjuuok12ZN9bo48eUfORl5kChDNPPuWgrAyepiqi6f0JTPIVUnb5ebeyflkRCXSPW1LzhZPfge1GEF3zvpYeyjp3C9tYETX%2B7D2%2BXWXKo1gb1dbtLH3cs0%2B1yanJ0cPfuupnwNCeztcmOLSyXnzkcB%2BLhyq%2BqqEzLY2%2BUmbmQC92UsJcwo8N6J14cEVQWW8y878%2FvK9rLxoydji0tVvu9777CBQWo4JllSlXNTp9nn8t17VzDNPo%2B4kQlK%2By03p2oU9tbBf1X1JjFqpPQ%2BHBudQHJChtKCXW9t4HJLBW2d18kcm8PRs%2B%2BqygbVDUh9q0P5v%2BryCdLH3cuMcd8lIS5RaT6bnJ24u9pVhacafHMMqi6f4GqLg3sn5Sl1%2BuCZraqrV8iWNkOkidaO6xSf%2BS9qEyu52uK4dW31QHCQYt%2F38y0H3%2FwAWnT7jLl08G0H1idfdLAO1sG3H3jA%2FvjmczJlw4d8epnsztBms7F06VK%2F4yybnJ2EfeXUwuPx%2BP0%2BKHjv3r3KgX8AeXl5LFq0CJPJpAQiiiLV1dWUlJQo4Pr6etatW6f8zuVykZ2dzapVq%2FoxBkzqJ598ErvdjiiKiKLIzp07lW2gDz74INHR0QP9jK1bt9LY2Kj8s9vtLF26dMB7BwSbTCYWLlzod23Tpk3Kd30lP0RxcTGlpaXKdavVyooVKxR%2FjDdrxLq%2BadNHo0ePpqenR9mt19raSltbG729vZSUlNDdLZ2YYbFYMBqNvP7668o1eSefvP1wIAXsFt1uNy%2B88IICV6vFixcHtT0FrE4mk4lnnnlGk69TkPY59k12zWCQfGauW7cOu90%2B4PdWq5XCwkK%2Fh2tsbOTFF1%2BkuLh40HAHzeO%2BMpvN3H%2F%2F%2FZhMJlwuF6IoKvl5%2F%2F3386Mf%2FYh77rmH6upqv6NrP%2FnkE3p6epgyZUq%2FMENaI%2BBwOKitrUUURbKyshTLmtvt5uWXX6a2tlZ54Ozs7AHN%2BPqYSwfrYB18%2B4F1n6g6WAfr4NsPPOBL2502%2F9eO8%2FXNAFiiBdYtfoDZ6UkA1Da5%2BN87P%2BZY5WXl3oSYKKIE%2F21ltdf6e5QcELzk29NYMO3GOPqdw%2BW88t4xxHYf1VdbuC9jAoIA6eNMPPStNAV8py2eV%2F97Hhaz5CnFGC7wceUFfvrG%2Fn6MAZP6tT3HqKxrwWQyYTKZ%2BPsF93DPxCTcYR7%2B38dnaHUPbHf458L7SEmMIzZKIDZKoOJKHS%2FtLhnw3gHB152dvLrnmN%2B1f%2Fne32HyGen0dCH2OdLQ5ZZevhfmTOH%2Bu254BL7a0s6%2FvVM8YDIDjEi4Z8G6gb6oa24nWjCQlSq9iCfEjsQ6yoTP5yP3nokIkVIuXW%2FrROzqYs0TOcq1qy3trN7yEWdqBz93IGC3aIkWeO0f88iekDRoAAPp%2F7x%2FnP%2Fc%2F2nAewJWpxaXyHNvH6CmIfCJoDfre%2FdnMufulID3DJrUsto6PJy8UMfdqWOwxozs9%2F3VlnZ%2Bf%2FgLRsVEERctleZok5G8b6VxtaWdykuN%2FX6jCgzQ6Oyk%2BJSDdreX2JFGog0jifiqIn508gK%2F%2BsOf%2BeTsZdLusGKLNyu%2Fe2BqKmaTgZKKi%2F3C1Dz0sUQLpN9hZfJ4yZfxacdVPjsnrUpNiIli%2FQ%2FnM3l8Al09PbS0i3xcXssr7x3rF44%2B5tLBOlgH335gfZ5LB%2BtgHayDdbAO1sE6WAfrYB2sg3Vwf%2F1%2FL2I8qtC6zOIAAAAASUVORK5CYII%3D);
  background-repeat: no-repeat;
  background-position: 0 100px;
  display: inline-block;
  margin: -1px 1px 5px 0;
  padding: 0;
  border-radius: 100%;
  overflow: visible;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.3);
}

/* line 1813, app/assets/stylesheets/application.css.sass */
ul.social-icons li a {
  display: block;
  height: 30px;
  width: 30px;
  text-align: center;
}

/* line 1818, app/assets/stylesheets/application.css.sass */
ul.social-icons li a:hover {
  text-decoration: none;
}

/* line 1820, app/assets/stylesheets/application.css.sass */
ul.social-icons li a i[class^="icon-"] {
  color: #444;
  font-style: 16px;
  position: relative;
  top: 3px;
}

/* line 1825, app/assets/stylesheets/application.css.sass */
ul.social-icons li a:active {
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3), inset 0 0 10px rgba(0, 0, 0, 0.3);
}

/* line 1827, app/assets/stylesheets/application.css.sass */
ul.social-icons li[class] a {
  text-indent: -9999px;
}

/* line 1829, app/assets/stylesheets/application.css.sass */
ul.social-icons li:active, ul.social-icons li a:active {
  border-radius: 100%;
}

/* line 1831, app/assets/stylesheets/application.css.sass */
ul.social-icons li.digg {
  background-position: 0 0;
}

/* line 1833, app/assets/stylesheets/application.css.sass */
ul.social-icons li.digg:hover {
  background-position: 0 -30px;
}

/* line 1835, app/assets/stylesheets/application.css.sass */
ul.social-icons li.dribbble {
  background-position: 0 -60px;
}

/* line 1837, app/assets/stylesheets/application.css.sass */
ul.social-icons li.dribbble:hover {
  background-position: 0 -90px;
}

/* line 1839, app/assets/stylesheets/application.css.sass */
ul.social-icons li.facebook {
  background-position: 0 -120px;
}

/* line 1841, app/assets/stylesheets/application.css.sass */
ul.social-icons li.facebook:hover {
  background-position: 0 -150px;
}

/* line 1843, app/assets/stylesheets/application.css.sass */
ul.social-icons li.flickr {
  background-position: 0 -180px;
}

/* line 1845, app/assets/stylesheets/application.css.sass */
ul.social-icons li.flickr:hover {
  background-position: 0 -210px;
}

/* line 1847, app/assets/stylesheets/application.css.sass */
ul.social-icons li.forrst {
  background-position: 0 -240px;
}

/* line 1849, app/assets/stylesheets/application.css.sass */
ul.social-icons li.forrst:hover {
  background-position: 0 -270px;
}

/* line 1851, app/assets/stylesheets/application.css.sass */
ul.social-icons li.googleplus {
  background-position: 0 -300px;
}

/* line 1853, app/assets/stylesheets/application.css.sass */
ul.social-icons li.googleplus:hover {
  background-position: 0 -330px;
}

/* line 1855, app/assets/stylesheets/application.css.sass */
ul.social-icons li.html5 {
  background-position: 0 -360px;
}

/* line 1857, app/assets/stylesheets/application.css.sass */
ul.social-icons li.html5:hover {
  background-position: 0 -390px;
}

/* line 1859, app/assets/stylesheets/application.css.sass */
ul.social-icons li.icloud {
  background-position: 0 -420px;
}

/* line 1861, app/assets/stylesheets/application.css.sass */
ul.social-icons li.icloud:hover {
  background-position: 0 -450px;
}

/* line 1863, app/assets/stylesheets/application.css.sass */
ul.social-icons li.lastfm {
  background-position: 0 -480px;
}

/* line 1865, app/assets/stylesheets/application.css.sass */
ul.social-icons li.lastfm:hover {
  background-position: 0 -510px;
}

/* line 1867, app/assets/stylesheets/application.css.sass */
ul.social-icons li.linkedin {
  background-position: 0 -540px;
}

/* line 1869, app/assets/stylesheets/application.css.sass */
ul.social-icons li.linkedin:hover {
  background-position: 0 -570px;
}

/* line 1871, app/assets/stylesheets/application.css.sass */
ul.social-icons li.myspace {
  background-position: 0 -600px;
}

/* line 1873, app/assets/stylesheets/application.css.sass */
ul.social-icons li.myspace:hover {
  background-position: 0 -630px;
}

/* line 1875, app/assets/stylesheets/application.css.sass */
ul.social-icons li.paypal {
  background-position: 0 -660px;
}

/* line 1877, app/assets/stylesheets/application.css.sass */
ul.social-icons li.paypal:hover {
  background-position: 0 -690px;
}

/* line 1879, app/assets/stylesheets/application.css.sass */
ul.social-icons li.picasa {
  background-position: 0 -720px;
}

/* line 1881, app/assets/stylesheets/application.css.sass */
ul.social-icons li.picasa:hover {
  background-position: 0 -750px;
}

/* line 1883, app/assets/stylesheets/application.css.sass */
ul.social-icons li.pinterest {
  background-position: 0 -780px;
}

/* line 1885, app/assets/stylesheets/application.css.sass */
ul.social-icons li.pinterest:hover {
  background-position: 0 -810px;
}

/* line 1887, app/assets/stylesheets/application.css.sass */
ul.social-icons li.reddit {
  background-position: 0 -840px;
}

/* line 1889, app/assets/stylesheets/application.css.sass */
ul.social-icons li.reddit:hover {
  background-position: 0 -870px;
}

/* line 1891, app/assets/stylesheets/application.css.sass */
ul.social-icons li.rss {
  background-position: 0 -900px;
}

/* line 1893, app/assets/stylesheets/application.css.sass */
ul.social-icons li.rss:hover {
  background-position: 0 -930px;
}

/* line 1895, app/assets/stylesheets/application.css.sass */
ul.social-icons li.skype {
  background-position: 0 -960px;
}

/* line 1897, app/assets/stylesheets/application.css.sass */
ul.social-icons li.skype:hover {
  background-position: 0 -990px;
}

/* line 1899, app/assets/stylesheets/application.css.sass */
ul.social-icons li.stumbleupon {
  background-position: 0 -1020px;
}

/* line 1901, app/assets/stylesheets/application.css.sass */
ul.social-icons li.stumbleupon:hover {
  background-position: 0 -1050px;
}

/* line 1903, app/assets/stylesheets/application.css.sass */
ul.social-icons li.tumblr {
  background-position: 0 -1080px;
}

/* line 1905, app/assets/stylesheets/application.css.sass */
ul.social-icons li.tumblr:hover {
  background-position: 0 -1110px;
}

/* line 1907, app/assets/stylesheets/application.css.sass */
ul.social-icons li.twitter {
  background-position: 0 -1140px;
}

/* line 1909, app/assets/stylesheets/application.css.sass */
ul.social-icons li.twitter:hover {
  background-position: 0 -1170px;
}

/* line 1911, app/assets/stylesheets/application.css.sass */
ul.social-icons li.vimeo {
  background-position: 0 -1200px;
}

/* line 1913, app/assets/stylesheets/application.css.sass */
ul.social-icons li.vimeo:hover {
  background-position: 0 -1230px;
}

/* line 1915, app/assets/stylesheets/application.css.sass */
ul.social-icons li.wordpress {
  background-position: 0 -1260px;
}

/* line 1917, app/assets/stylesheets/application.css.sass */
ul.social-icons li.wordpress:hover {
  background-position: 0 -1290px;
}

/* line 1919, app/assets/stylesheets/application.css.sass */
ul.social-icons li.yahoo {
  background-position: 0 -1320px;
}

/* line 1921, app/assets/stylesheets/application.css.sass */
ul.social-icons li.yahoo:hover {
  background-position: 0 -1350px;
}

/* line 1923, app/assets/stylesheets/application.css.sass */
ul.social-icons li.youtube {
  background-position: 0 -1380px;
}

/* line 1925, app/assets/stylesheets/application.css.sass */
ul.social-icons li.youtube:hover {
  background-position: 0 -1410px;
}

/* line 1927, app/assets/stylesheets/application.css.sass */
ul.social-icons li.github {
  background-position: 0 -1440px;
}

/* line 1929, app/assets/stylesheets/application.css.sass */
ul.social-icons li.github:hover {
  background-position: 0 -1470px;
}

/* line 1931, app/assets/stylesheets/application.css.sass */
ul.social-icons li.behance {
  background-position: 0 -1500px;
}

/* line 1933, app/assets/stylesheets/application.css.sass */
ul.social-icons li.behance:hover {
  background-position: 0 -1530px;
}

/* line 1935, app/assets/stylesheets/application.css.sass */
ul.social-icons li.yelp {
  background-position: 0 -1560px;
}

/* line 1937, app/assets/stylesheets/application.css.sass */
ul.social-icons li.yelp:hover {
  background-position: 0 -1590px;
}

/* line 1939, app/assets/stylesheets/application.css.sass */
ul.social-icons li.mail {
  background-position: 0 -1620px;
}

/* line 1941, app/assets/stylesheets/application.css.sass */
ul.social-icons li.mail:hover {
  background-position: 0 -1650px;
}

/* line 1943, app/assets/stylesheets/application.css.sass */
ul.social-icons li.instagram {
  background-position: 0 -1680px;
}

/* line 1945, app/assets/stylesheets/application.css.sass */
ul.social-icons li.instagram:hover {
  background-position: 0 -1710px;
}

/* line 1947, app/assets/stylesheets/application.css.sass */
ul.social-icons li.foursquare {
  background-position: 0 -1740px;
}

/* line 1949, app/assets/stylesheets/application.css.sass */
ul.social-icons li.foursquare:hover {
  background-position: 0 -1770px;
}

/* line 1951, app/assets/stylesheets/application.css.sass */
ul.social-icons li.zerply {
  background-position: 0 -1800px;
}

/* line 1953, app/assets/stylesheets/application.css.sass */
ul.social-icons li.zerply:hover {
  background-position: 0 -1830px;
}

/* line 1955, app/assets/stylesheets/application.css.sass */
ul.social-icons li.vk {
  background-position: 0 -1860px;
}

/* line 1957, app/assets/stylesheets/application.css.sass */
ul.social-icons li.vk:hover {
  background-position: 0 -1890px;
}

/* Arrows */
/* line 1962, app/assets/stylesheets/application.css.sass */
.arrow {
  background: transparent url(/../img/arrows.png) no-repeat 0 0;
  width: 47px;
  height: 120px;
  display: inline-block;
  position: relative;
}

/* line 1968, app/assets/stylesheets/application.css.sass */
.arrow.vtl {
  background-position: 0 0;
  width: 47px;
  height: 96px;
}

/* line 1972, app/assets/stylesheets/application.css.sass */
.arrow.vtr {
  background-position: -101px 0;
  width: 47px;
  height: 96px;
}

/* line 1976, app/assets/stylesheets/application.css.sass */
.arrow.vbl {
  background-position: 0 -144px;
  width: 47px;
  height: 96px;
}

/* line 1980, app/assets/stylesheets/application.css.sass */
.arrow.vbr {
  background-position: -101px -144px;
  width: 47px;
  height: 96px;
}

/* line 1984, app/assets/stylesheets/application.css.sass */
.arrow.hlt {
  background-position: -209px 0;
  width: 120px;
  height: 47px;
}

/* line 1988, app/assets/stylesheets/application.css.sass */
.arrow.hlb {
  background-position: -209px -101px;
  width: 120px;
  height: 47px;
}

/* line 1992, app/assets/stylesheets/application.css.sass */
.arrow.hrt {
  background-position: -353px 0;
  width: 120px;
  height: 47px;
}

/* line 1996, app/assets/stylesheets/application.css.sass */
.arrow.hrb {
  background-position: -353px -101px;
  width: 120px;
  height: 47px;
}

/* Responsive */
@media (max-width: 479px) {
  /* line 2003, app/assets/stylesheets/application.css.sass */
  .arrow {
    display: none;
  }
}

/* Circular Bars */
/* line 2008, app/assets/stylesheets/application.css.sass */
.circular-bar {
  margin-bottom: 25px;
}

/* line 2010, app/assets/stylesheets/application.css.sass */
.circular-bar .circular-bar-chart {
  position: relative;
}

/* line 2012, app/assets/stylesheets/application.css.sass */
.circular-bar strong {
  display: block;
  font-weight: 600;
  font-size: 18px;
  line-height: 30px;
  position: absolute;
  top: 35%;
  width: 80%;
  left: 10%;
  text-align: center;
}

/* line 2022, app/assets/stylesheets/application.css.sass */
.circular-bar label {
  display: block;
  font-weight: 100;
  font-size: 17px;
  line-height: 20px;
  position: absolute;
  top: 50%;
  width: 80%;
  left: 10%;
  text-align: center;
}

/* Progress */
/* line 2035, app/assets/stylesheets/application.css.sass */
.progress {
  border-radius: 25px;
  height: 20px;
  background: #FAFAFA;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) inset;
  overflow: visible;
}

/* line 2042, app/assets/stylesheets/application.css.sass */
.progress-bar {
  background-color: #5bc0de;
  box-shadow: none;
  position: relative;
  border-radius: 25px;
}

/* line 2048, app/assets/stylesheets/application.css.sass */
.progress-bar-tooltip {
  position: absolute;
  padding: 4px 8px;
  background-color: #333;
  color: #FFF;
  line-height: 15px;
  font-size: 11px;
  display: block;
  position: absolute;
  top: -28px;
  right: 5px;
  border-radius: 3px;
  filter: alpha(opacity=0);
  opacity: 0;
}

/* line 2062, app/assets/stylesheets/application.css.sass */
.progress-bar-tooltip:after {
  border-color: #333 transparent;
  border-style: solid;
  border-width: 5px 5px 0;
  bottom: -5px;
  content: "";
  display: block;
  left: 13px;
  position: absolute;
  width: 0;
}

/* Counters */
/* line 2076, app/assets/stylesheets/application.css.sass */
.counters strong {
  display: block;
  font-weight: 600;
  font-size: 60px;
  line-height: 60px;
}

/* line 2081, app/assets/stylesheets/application.css.sass */
.counters label {
  display: block;
  font-weight: 100;
  font-size: 20px;
  line-height: 20px;
}

/* Word Rotate */
/* line 2089, app/assets/stylesheets/application.css.sass */
.word-rotate {
  visibility: hidden;
  width: 100px;
  height: 0px;
  margin-bottom: -7px;
  display: inline-block;
  overflow: hidden;
  text-align: center;
  position: relative;
}

/* line 2098, app/assets/stylesheets/application.css.sass */
.word-rotate.active {
  visibility: visible;
  width: auto;
}

/* line 2101, app/assets/stylesheets/application.css.sass */
.word-rotate .word-rotate-items {
  position: relative;
  top: 0;
  width: 100%;
}

/* line 2105, app/assets/stylesheets/application.css.sass */
.word-rotate .word-rotate-items span {
  display: block;
  white-space: nowrap;
}

/* Word Rotate - Titles */
/* line 2111, app/assets/stylesheets/application.css.sass */
h1 .word-rotate {
  margin-bottom: -12px;
}

/* line 2115, app/assets/stylesheets/application.css.sass */
h2 .word-rotate {
  margin-bottom: -12px;
}

/* line 2117, app/assets/stylesheets/application.css.sass */
h2.word-rotator-title {
  line-height: 54px;
}

/* Scroll to Top */
/* line 2123, app/assets/stylesheets/application.css.sass */
html .scroll-to-top {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  background: #404040;
  border-radius: 7px 7px 0 0;
  bottom: 0px;
  color: #FFF;
  display: block;
  height: 9px;
  opacity: 0;
  padding: 13px 10px 35px;
  position: fixed;
  right: 10px;
  text-align: center;
  text-decoration: none;
  min-width: 49px;
  z-index: 1040;
}

/* line 2141, app/assets/stylesheets/application.css.sass */
html .scroll-to-top:hover {
  filter: alpha(opacity=100);
  opacity: 1;
}

/* line 2144, app/assets/stylesheets/application.css.sass */
html .scroll-to-top.visible {
  filter: alpha(opacity=75);
  opacity: 0.75;
}

/* line 2147, app/assets/stylesheets/application.css.sass */
html .scroll-to-top span {
  display: inline-block;
  padding: 0 5px;
}

/* line 2150, app/assets/stylesheets/application.css.sass */
html.ie11 .scroll-to-top {
  right: 25px;
}

/* Responsive */
@media (max-width: 991px) {
  /* line 2155, app/assets/stylesheets/application.css.sass */
  html .scroll-to-top.hidden-mobile {
    display: none !important;
  }
}

/* Portfolio */
/* line 2160, app/assets/stylesheets/application.css.sass */
.portfolio-title {
  margin-bottom: -10px;
}

/* line 2162, app/assets/stylesheets/application.css.sass */
.portfolio-title a {
  display: inline-block;
}

/* line 2164, app/assets/stylesheets/application.css.sass */
.portfolio-title .fa {
  font-size: 2.5em;
}

/* line 2166, app/assets/stylesheets/application.css.sass */
.portfolio-title .portfolio-nav, .portfolio-title .portfolio-nav-all {
  margin-top: 11px;
}

/* line 2168, app/assets/stylesheets/application.css.sass */
.portfolio-title .portfolio-nav {
  text-align: right;
}

/* line 2170, app/assets/stylesheets/application.css.sass */
.portfolio-title .portfolio-nav a {
  width: 40%;
}

/* line 2172, app/assets/stylesheets/application.css.sass */
.portfolio-title .portfolio-nav-all .fa {
  font-size: 2.7em;
}

/* line 2174, app/assets/stylesheets/application.css.sass */
.portfolio-title .fa-angle-right {
  text-align: right;
}

/* line 2176, app/assets/stylesheets/application.css.sass */
.portfolio-title .portfolio-nav-prev {
  text-align: left;
}

/* Portfolio Info */
/* line 2181, app/assets/stylesheets/application.css.sass */
.portfolio-info {
  margin: 2px 0 10px;
  float: right;
}

/* line 2184, app/assets/stylesheets/application.css.sass */
.portfolio-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* line 2188, app/assets/stylesheets/application.css.sass */
.portfolio-info ul li {
  display: inline-block;
  border-right: 1px solid #E6E6E6;
  color: #B1B1B1;
  padding-right: 8px;
  margin-right: 8px;
  font-size: 0.9em;
}

/* line 2195, app/assets/stylesheets/application.css.sass */
.portfolio-info ul li:last-child {
  border-right: 0;
  padding-right: 0;
  margin-right: 0;
}

/* line 2199, app/assets/stylesheets/application.css.sass */
.portfolio-info ul li a {
  text-decoration: none;
  color: #B1B1B1;
}

/* line 2202, app/assets/stylesheets/application.css.sass */
.portfolio-info ul li a:hover .fa-heart {
  color: #E53F51;
}

/* line 2204, app/assets/stylesheets/application.css.sass */
.portfolio-info ul li .fa {
  margin-right: 4px;
}

/* Portfolio List */
/* line 2210, app/assets/stylesheets/application.css.sass */
ul.portfolio-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* line 2214, app/assets/stylesheets/application.css.sass */
ul.portfolio-list .portfolio-item {
  margin-bottom: 35px;
}

/* line 2216, app/assets/stylesheets/application.css.sass */
ul.portfolio-details {
  list-style: none;
  padding: 0;
  margin: 45px 0 0 5px;
  font-size: 0.9em;
}

/* line 2221, app/assets/stylesheets/application.css.sass */
ul.portfolio-details li {
  padding: 0;
  margin: 0 0 20px;
}

/* line 2224, app/assets/stylesheets/application.css.sass */
ul.portfolio-details p {
  padding: 0;
  margin: 0;
}

/* line 2227, app/assets/stylesheets/application.css.sass */
ul.portfolio-details blockquote {
  padding: 0 0 0 10px;
  margin: 15px 0 0;
  color: #999;
}

/* line 2231, app/assets/stylesheets/application.css.sass */
ul.portfolio-details ul.list-skills li {
  margin-right: 10px;
  margin-bottom: 5px;
}

/* line 2234, app/assets/stylesheets/application.css.sass */
ul.team-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* line 2238, app/assets/stylesheets/application.css.sass */
ul.team-list .team-item {
  margin-bottom: 35px;
}

/* line 2240, app/assets/stylesheets/application.css.sass */
ul.team-list .team-item .thumb-info-social-icons {
  margin: 0 10px;
}

/* line 2242, app/assets/stylesheets/application.css.sass */
ul.history {
  margin: 0 0 25px;
  padding: 0;
  list-style: none;
}

/* line 2246, app/assets/stylesheets/application.css.sass */
ul.history li {
  margin: 25px 0;
  padding: 0;
  clear: both;
}

/* line 2250, app/assets/stylesheets/application.css.sass */
ul.history li h4 {
  margin: 0 0 -27px 0;
  padding: 0;
}

/* line 2253, app/assets/stylesheets/application.css.sass */
ul.history li p {
  margin-left: 53px;
}

/* line 2255, app/assets/stylesheets/application.css.sass */
ul.history li .thumb {
  background: transparent url(/../img/history-thumb.png) no-repeat 0 0;
  width: 227px;
  height: 160px;
  margin: 0 0 30px;
  padding: 0;
  float: left;
}

/* line 2262, app/assets/stylesheets/application.css.sass */
ul.history li .thumb img {
  border-radius: 150px;
  margin: 7px 8px;
  width: 145px;
  height: 145px;
}

/* line 2267, app/assets/stylesheets/application.css.sass */
ul.history li .featured-box {
  text-align: left;
  margin-left: 225px;
  margin-bottom: 50px;
  min-height: 115px;
}

/* line 2272, app/assets/stylesheets/application.css.sass */
ul.history li .featured-box .box-content {
  border-top-color: #CCC;
}

/* Portfolio Details */
/* Responsive */
@media (max-width: 991px) {
  /* line 2279, app/assets/stylesheets/application.css.sass */
  .portfolio-nav, .portfolio-nav-all {
    display: none;
  }
}

/* Team List */
/* Responsive */
@media (max-width: 991px) {
  /* line 2286, app/assets/stylesheets/application.css.sass */
  ul.team-list .team-item {
    margin: 0 auto 35px;
    max-width: 270px;
  }
}

/* History */
/* Responsive */
@media (max-width: 479px) {
  /* line 2295, app/assets/stylesheets/application.css.sass */
  ul.history li .thumb {
    display: none;
  }
  /* line 2297, app/assets/stylesheets/application.css.sass */
  ul.history li .featured-box {
    margin-left: 0;
  }
}

/* Search Results */
/* line 2302, app/assets/stylesheets/application.css.sass */
.search-results {
  min-height: 300px;
}

/* Maps */
/* line 2307, app/assets/stylesheets/application.css.sass */
.google-map {
  background: #E5E3DF;
  height: 400px;
  margin: -35px 0 30px 0;
  width: 100%;
}

/* line 2312, app/assets/stylesheets/application.css.sass */
.google-map img {
  max-width: 9999px;
}

/* Maps - Parallax */
/* line 2317, app/assets/stylesheets/application.css.sass */
.parallax + .google-map {
  margin-top: -70px;
}

/*
 *Name:       theme.css
 *Written by:   Okler Themes - (http://www.okler.net)
 *Version:    3.4.1 */
/* line 2325, app/assets/stylesheets/application.css.sass */
body {
  background-color: white;
  color: #777777;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 14px;
  line-height: 22px;
  margin: 0;
}

/* Responsive */
@media (max-width: 479px) {
  /* line 2335, app/assets/stylesheets/application.css.sass */
  body {
    font-size: 13px;
  }
}

/* Header */
/* line 2340, app/assets/stylesheets/application.css.sass */
#header {
  /*background: #F6F6F6;
   *background: -webkit-linear-gradient( #f6f6f6, white);
   *background: linear-gradient( #f6f6f6, white); */
  clear: both;
  border-top: 5px solid #EDEDED;
  min-height: 100px;
  padding: 8px 0;
}

/* line 2349, app/assets/stylesheets/application.css.sass */
#header > .container {
  height: 100px;
  margin-bottom: -35px;
  position: relative;
  display: table;
  max-width: 1170px;
}

/* line 2355, app/assets/stylesheets/application.css.sass */
#header > .navbar-collapse > .container {
  position: relative;
}

/* line 2357, app/assets/stylesheets/application.css.sass */
#header .header-top {
  min-height: 50px;
}

/* line 2359, app/assets/stylesheets/application.css.sass */
#header .header-top form {
  margin: 0;
}

/* line 2361, app/assets/stylesheets/application.css.sass */
#header .header-top p {
  float: left;
  font-size: 0.9em;
  line-height: 50px;
  margin: 0;
}

/* line 2366, app/assets/stylesheets/application.css.sass */
#header .header-top i {
  margin-right: 6px;
  margin-left: 6px;
  position: relative;
  top: 1px;
}

/* line 2371, app/assets/stylesheets/application.css.sass */
#header .header-top nav {
  float: left;
  width: auto;
}

/* line 2374, app/assets/stylesheets/application.css.sass */
#header .header-top ul.nav-top {
  margin: 7px 0 0 -15px;
  min-height: 5px;
}

/* line 2378, app/assets/stylesheets/application.css.sass */
#header .header-top ul.nav-top li.phone {
  margin-right: 10px;
}

/* line 2380, app/assets/stylesheets/application.css.sass */
#header .header-top ul.nav-top li a {
  padding-left: 4px;
}

/* line 2382, app/assets/stylesheets/application.css.sass */
#header .social-icons {
  clear: right;
  float: right;
  margin-top: -3px;
  margin-left: 5px;
  position: relative;
}

/* line 2388, app/assets/stylesheets/application.css.sass */
#header .search {
  float: right;
  margin: 10px 0 0 15px;
  position: relative;
}

/* line 2392, app/assets/stylesheets/application.css.sass */
#header .search + .social-icons {
  clear: none;
  margin-left: 10px;
  margin-right: 0;
  margin-top: 13px;
}

/* line 2398, app/assets/stylesheets/application.css.sass */
#header .search input.search:first-child {
  -webkit-transition: width 0.2s ease-in 0.2s;
  -moz-transition: width 0.2s ease-in 0.2s;
  transition: width 0.2s ease-in 0.2s;
  border-radius: 20px;
  width: 170px;
  font-size: 0.9em;
  padding: 6px 12px;
  height: 34px;
  margin: 0;
}

/* line 2408, app/assets/stylesheets/application.css.sass */
#header .search input.search:focus {
  width: 220px;
  border-color: #CCC;
}

/* line 2411, app/assets/stylesheets/application.css.sass */
#header .search button.btn-default {
  border: 0;
  background: transparent;
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  z-index: 3;
}

/* line 2419, app/assets/stylesheets/application.css.sass */
#header nav {
  float: right;
}

/* line 2422, app/assets/stylesheets/application.css.sass */
#header nav ul.nav-main {
  margin: -7px 10px 8px 0;
}

/* line 2424, app/assets/stylesheets/application.css.sass */
#header nav ul.nav-main > li + li {
  margin-left: -4px;
}

/* line 2427, app/assets/stylesheets/application.css.sass */
#header nav ul.nav-main li a {
  font-size: 12px;
  font-style: normal;
  line-height: 20px;
  margin-left: 3px;
  margin-right: 3px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 10px 13px;
}

/* line 2436, app/assets/stylesheets/application.css.sass */
#header nav ul.nav-main li a:hover {
  background-color: #F4F4F4;
}

/* line 2438, app/assets/stylesheets/application.css.sass */
#header nav ul.nav-main li ul a {
  text-transform: none;
  font-weight: normal;
  font-size: 0.9em;
}

/* line 2443, app/assets/stylesheets/application.css.sass */
#header nav ul.nav-main li.dropdown.open a.dropdown-toggle {
  border-radius: 5px 5px 0px 0px;
  background-color: #CCC;
}

/* line 2448, app/assets/stylesheets/application.css.sass */
#header nav ul.nav-main li.dropdown:hover > a {
  padding-bottom: 11px;
  margin-bottom: -1px;
}

/* line 2451, app/assets/stylesheets/application.css.sass */
#header nav ul.nav-main li.dropdown:hover > ul {
  display: block;
}

/* line 2453, app/assets/stylesheets/application.css.sass */
#header nav ul.nav-main li.dropdown:hover a.dropdown-toggle {
  border-radius: 5px 5px 0px 0px;
}

/* line 2455, app/assets/stylesheets/application.css.sass */
#header nav ul.nav-main li.active a {
  background-color: #CCC;
}

/* line 2457, app/assets/stylesheets/application.css.sass */
#header nav ul.nav-main li a.dropdown-toggle.extra {
  display: none;
}

/* line 2459, app/assets/stylesheets/application.css.sass */
#header nav ul.nav-main ul.dropdown-menu {
  background-color: #CCC;
  border: 0;
  border-radius: 0 6px 6px 6px;
  box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.08);
  margin: 1px 0 0 3px;
  padding: 5px;
  top: auto;
}

/* line 2468, app/assets/stylesheets/application.css.sass */
#header nav ul.nav-main ul.dropdown-menu li:hover > a {
  filter: none;
  background: #999;
}

/* line 2471, app/assets/stylesheets/application.css.sass */
#header nav ul.nav-main ul.dropdown-menu li:last-child > a {
  border-bottom: 0;
}

/* line 2473, app/assets/stylesheets/application.css.sass */
#header nav ul.nav-main ul.dropdown-menu > li > a {
  color: #FFF;
  font-weight: 400;
  padding-bottom: 4px;
  padding-top: 4px;
  text-transform: none;
  position: relative;
  padding: 8px 10px 8px 5px;
  font-size: 0.9em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* line 2483, app/assets/stylesheets/application.css.sass */
#header nav ul.nav-main ul.dropdown-menu ul.dropdown-menu {
  border-radius: 6px;
  margin-left: 0;
  margin-top: -5px;
}

/* line 2487, app/assets/stylesheets/application.css.sass */
#header nav ul.nav-main .dropdown-submenu {
  position: relative;
}

/* line 2490, app/assets/stylesheets/application.css.sass */
#header nav ul.nav-main .dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -6px;
  margin-left: -1px;
  border-radius: 0 6px 6px 6px;
}

/* line 2496, app/assets/stylesheets/application.css.sass */
#header nav ul.nav-main .dropdown-submenu > a:after {
  display: block;
  content: " ";
  float: right;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
  border-width: 5px 0 5px 5px;
  border-left-color: #cccccc;
  margin-top: 5px;
  margin-right: -10px;
}

/* line 2508, app/assets/stylesheets/application.css.sass */
#header nav ul.nav-main .dropdown-submenu.pull-left {
  float: none;
}

/* line 2510, app/assets/stylesheets/application.css.sass */
#header nav ul.nav-main .dropdown-submenu.pull-left > .dropdown-menu {
  left: -100%;
  margin-left: 10px;
  border-radius: 6px 0 6px 6px;
}

/* line 2515, app/assets/stylesheets/application.css.sass */
#header nav ul.nav-main .dropdown-submenu:hover > .dropdown-menu {
  display: block;
}

/* line 2517, app/assets/stylesheets/application.css.sass */
#header nav ul.nav-main .dropdown-submenu:hover > a:after {
  border-left-color: #FFF;
}

/* line 2519, app/assets/stylesheets/application.css.sass */
#header nav ul.nav-top {
  margin: 10px 0 -10px;
  min-height: 62px;
}

/* line 2523, app/assets/stylesheets/application.css.sass */
#header nav ul.nav-top li span {
  display: block;
  line-height: 14px;
  margin-bottom: 2px;
  margin-right: 0;
  margin-top: 5px;
  padding: 8px 2px 8px 12px;
}

/* line 2530, app/assets/stylesheets/application.css.sass */
#header nav ul.nav-top li a, #header nav ul.nav-top li span {
  color: #999;
  font-size: 0.9em;
  padding: 6px 10px;
}

/* line 2534, app/assets/stylesheets/application.css.sass */
#header nav ul.nav-top li i {
  margin-right: 6px;
  position: relative;
  top: 1px;
}

/* line 2538, app/assets/stylesheets/application.css.sass */
#header .nav-main-collapse {
  overflow-y: visible;
}

/* line 2540, app/assets/stylesheets/application.css.sass */
#header .nav-main-collapse.in {
  overflow-y: visible;
}

/* line 2542, app/assets/stylesheets/application.css.sass */
#header .logo {
  -webkit-transition: all 0.2s ease-in 0.2s;
  -moz-transition: all 0.2s ease-in 0.2s;
  transition: all 0.2s ease-in 0.2s;
  margin: 0;
  padding: 5px 0;
  display: table-cell;
  vertical-align: middle;
  height: 100%;
  color: transparent;
}

/* line 2552, app/assets/stylesheets/application.css.sass */
#header .logo a {
  position: relative;
  z-index: 1;
}

/* line 2555, app/assets/stylesheets/application.css.sass */
#header .logo img {
  position: relative;
  color: transparent;
}

/* Logo */
/* Header Container */
/* line 2563, app/assets/stylesheets/application.css.sass */
.header-container {
  min-height: 76px;
  position: relative;
}

/* Responsive Nav Button */
/* line 2569, app/assets/stylesheets/application.css.sass */
.btn-responsive-nav {
  display: none;
}

/* Sticky Menu */
/* line 2574, app/assets/stylesheets/application.css.sass */
#header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
}

/* line 2582, app/assets/stylesheets/application.css.sass */
body.sticky-menu-active #header {
  border-bottom: 1px solid #E9E9E9;
  position: fixed;
  top: -57px;
  width: 100%;
  z-index: 1001;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
  filter: none;
}

/* line 2590, app/assets/stylesheets/application.css.sass */
body.sticky-menu-active #header .social-icons {
  margin-top: -1px;
}

/* line 2592, app/assets/stylesheets/application.css.sass */
body.sticky-menu-active #header nav ul.nav-main {
  margin-bottom: 7px;
  margin-top: -1px;
}

/* line 2595, app/assets/stylesheets/application.css.sass */
body.scrolling .nav-main-collapse.collapsing {
  -webkit-transition: none;
  transition: none;
}

/* Header Mega Menu */
@media (min-width: 992px) {
  /* line 2603, app/assets/stylesheets/application.css.sass */
  #header nav.mega-menu .nav, #header nav.mega-menu .dropup, #header nav.mega-menu .dropdown, #header nav.mega-menu .collapse {
    position: static;
  }
  /* line 2606, app/assets/stylesheets/application.css.sass */
  #header nav.mega-menu ul.nav-main .mega-menu-content {
    text-shadow: none;
  }
  /* line 2610, app/assets/stylesheets/application.css.sass */
  #header nav.mega-menu ul.nav-main li.mega-menu-item .mega-menu-sub-title {
    color: #333333;
    display: block;
    font-size: 1em;
    font-weight: 600;
    padding-bottom: 5px;
    text-transform: uppercase;
  }
  /* line 2617, app/assets/stylesheets/application.css.sass */
  #header nav.mega-menu ul.nav-main li.mega-menu-item .mega-menu-sub-title .not-included {
    color: #b7b7b7;
    display: block;
    font-size: 0.8em;
    font-style: normal;
    margin: -8px 0 -4px;
    padding: 0;
  }
  /* line 2625, app/assets/stylesheets/application.css.sass */
  #header nav.mega-menu ul.nav-main li.mega-menu-item ul.dropdown-menu {
    background: #FFF !important;
    border-top: 6px solid #CCC;
    color: #777777;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
  }
  /* line 2630, app/assets/stylesheets/application.css.sass */
  #header nav.mega-menu ul.nav-main li.mega-menu-item ul.sub-menu {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  /* line 2634, app/assets/stylesheets/application.css.sass */
  #header nav.mega-menu ul.nav-main li.mega-menu-item ul.sub-menu a {
    color: #777777;
    text-shadow: none;
    margin: 0 0 0 -8px;
    padding: 3px 8px;
    text-transform: none;
    font-size: 0.9em;
    display: block;
    font-weight: normal;
    border-radius: 4px;
    border: 0;
  }
  /* line 2645, app/assets/stylesheets/application.css.sass */
  #header nav.mega-menu ul.nav-main li.mega-menu-item:hover ul.sub-menu li:hover a:hover {
    background: #F4F4F4 !important;
    text-decoration: none;
  }
  /* line 2648, app/assets/stylesheets/application.css.sass */
  #header nav.mega-menu ul.nav-main li.mega-menu-fullwidth ul.dropdown-menu {
    border-radius: 6px;
  }
  /* line 2650, app/assets/stylesheets/application.css.sass */
  #header nav.mega-menu .navbar-inner, #header nav.mega-menu .container {
    position: relative;
  }
  /* line 2652, app/assets/stylesheets/application.css.sass */
  #header nav.mega-menu .dropdown-menu {
    left: auto;
  }
  /* line 2654, app/assets/stylesheets/application.css.sass */
  #header nav.mega-menu .dropdown-menu > li {
    display: block;
  }
  /* line 2656, app/assets/stylesheets/application.css.sass */
  #header nav.mega-menu .mega-menu-content {
    padding: 20px 30px;
  }
  /* line 2658, app/assets/stylesheets/application.css.sass */
  #header nav.mega-menu .mega-menu-content:before {
    display: table;
    content: "";
    line-height: 0;
  }
  /* line 2662, app/assets/stylesheets/application.css.sass */
  #header nav.mega-menu .mega-menu-content:after {
    display: table;
    content: "";
    line-height: 0;
    clear: both;
  }
  /* line 2668, app/assets/stylesheets/application.css.sass */
  #header nav.mega-menu.navbar .nav > li > .dropdown-menu:after, #header nav.mega-menu.navbar .nav > li > .dropdown-menu:before {
    display: none;
  }
  /* line 2670, app/assets/stylesheets/application.css.sass */
  #header nav.mega-menu .dropdown.mega-menu-fullwidth .dropdown-menu {
    width: 100%;
    left: 0;
    right: 0;
  }
  /* line 2674, app/assets/stylesheets/application.css.sass */
  #header nav.mega-menu nav.pull-right .dropdown-menu {
    right: 0;
  }
  /* line 2676, app/assets/stylesheets/application.css.sass */
  #header.flat-menu nav.mega-menu ul.nav-main li.mega-menu-fullwidth ul.dropdown-menu {
    border-radius: 0;
  }
}

/* Header Flat Menu */
@media (min-width: 992px) {
  /* line 2682, app/assets/stylesheets/application.css.sass */
  #header.flat-menu > .container {
    height: 91px;
    margin-bottom: -82px;
  }
  /* line 2685, app/assets/stylesheets/application.css.sass */
  #header.flat-menu .header-top {
    margin-top: -8px;
  }
  /* line 2687, app/assets/stylesheets/application.css.sass */
  #header.flat-menu .social-icons {
    margin: 11px 10px 9px 10px;
    margin: 10px 10px 0;
  }
  /* line 2690, app/assets/stylesheets/application.css.sass */
  #header.flat-menu .search {
    margin-top: 8px;
  }
  /* line 2692, app/assets/stylesheets/application.css.sass */
  #header.flat-menu .search form {
    margin: 0;
  }
  /* line 2694, app/assets/stylesheets/application.css.sass */
  #header.flat-menu .search input.search-query {
    padding-bottom: 5px;
    padding-top: 5px;
  }
  /* line 2697, app/assets/stylesheets/application.css.sass */
  #header.flat-menu nav ul.nav-main {
    float: right;
    margin: -9px 0 -8px;
  }
  /* line 2700, app/assets/stylesheets/application.css.sass */
  #header.flat-menu nav ul.nav-main > li > a {
    margin-bottom: 0;
    border-top: 5px solid transparent;
  }
  /* line 2704, app/assets/stylesheets/application.css.sass */
  #header.flat-menu nav ul.nav-main li a {
    border-radius: 0;
    margin-left: 1px;
    margin-right: 3px;
    padding-bottom: 20px;
    padding-top: 46px;
  }
  /* line 2711, app/assets/stylesheets/application.css.sass */
  #header.flat-menu nav ul.nav-main li.dropdown:hover a.dropdown-toggle {
    border-radius: 0;
  }
  /* line 2713, app/assets/stylesheets/application.css.sass */
  #header.flat-menu nav ul.nav-main li.dropdown:hover > a {
    padding-bottom: 21px;
  }
  /* line 2715, app/assets/stylesheets/application.css.sass */
  #header.flat-menu nav ul.nav-main ul.dropdown-menu {
    margin: 0 0 0 1px;
    border-radius: 0;
  }
  /* line 2718, app/assets/stylesheets/application.css.sass */
  #header.flat-menu nav ul.nav-main ul.dropdown-menu ul.dropdown-menu {
    border-radius: 0;
  }
  /* Header Flat Menu - Sticky Menu / Boxed */
  /* line 2722, app/assets/stylesheets/application.css.sass */
  body.sticky-menu-active #header.flat-menu ul.nav-main {
    margin-bottom: -10px;
    margin-top: 34px;
  }
  /* line 2726, app/assets/stylesheets/application.css.sass */
  body.sticky-menu-active #header.flat-menu ul.nav-main > li > a, body.sticky-menu-active #header.flat-menu ul.nav-main > li:hover > a {
    border-top-color: transparent;
    padding-bottom: 26px;
    padding-top: 26px;
  }
  /* line 2730, app/assets/stylesheets/application.css.sass */
  body.sticky-menu-active #header.flat-menu .logo {
    padding-top: 15px;
  }
  /* line 2732, app/assets/stylesheets/application.css.sass */
  body.sticky-menu-active #header.flat-menu .header-top {
    display: none;
  }
  /* line 2735, app/assets/stylesheets/application.css.sass */
  html.boxed #header.flat-menu {
    padding: 15px 0 7px;
  }
  /* line 2737, app/assets/stylesheets/application.css.sass */
  html.boxed #header.flat-menu.clean-top {
    padding-bottom: 8px;
  }
  /* line 2739, app/assets/stylesheets/application.css.sass */
  html.boxed #header.flat-menu.colored {
    padding: 0 0 7px;
  }
  /* line 2741, app/assets/stylesheets/application.css.sass */
  html.boxed #header.flat-menu.single-menu nav ul.nav-main ul.dropdown-menu {
    margin-top: -1px;
  }
  /* line 2743, app/assets/stylesheets/application.css.sass */
  html.boxed #header.flat-menu .header-top {
    border-radius: 5px 5px 0 0;
  }
  /* line 2746, app/assets/stylesheets/application.css.sass */
  html.boxed body.sticky-menu-active #header.flat-menu.clean-top, html.boxed body.sticky-menu-active #header.flat-menu.colored {
    padding: 15px 0 7px;
  }
}

/* Header Single Menu */
@media (min-width: 992px) {
  /* line 2751, app/assets/stylesheets/application.css.sass */
  #header.single-menu {
    min-height: 86px;
  }
  /* line 2753, app/assets/stylesheets/application.css.sass */
  #header.single-menu > .container {
    height: 91px;
    margin-bottom: -77px;
  }
  /* line 2756, app/assets/stylesheets/application.css.sass */
  #header.single-menu .social-icons {
    margin-top: 32px;
  }
  /* line 2758, app/assets/stylesheets/application.css.sass */
  #header.single-menu .search {
    display: none;
  }
  /* line 2760, app/assets/stylesheets/application.css.sass */
  #header.single-menu .search + nav {
    display: none;
  }
  /* line 2763, app/assets/stylesheets/application.css.sass */
  #header.single-menu nav ul.nav-main {
    margin: -28px 0 -9px;
    float: right;
  }
  /* line 2767, app/assets/stylesheets/application.css.sass */
  #header.single-menu nav ul.nav-main li a, #header.single-menu nav ul.nav-main li.dropdown:hover > a {
    padding-bottom: 20px;
    padding-top: 62px;
  }
  /* line 2770, app/assets/stylesheets/application.css.sass */
  #header.single-menu nav.mega-menu .mega-menu-signin {
    margin-right: 0;
  }
  /* Header Single Menu - Sticky Menu / Boxed */
  /* line 2774, app/assets/stylesheets/application.css.sass */
  body.sticky-menu-active #header.single-menu .logo {
    padding-top: 14px;
  }
  /* line 2776, app/assets/stylesheets/application.css.sass */
  body.sticky-menu-active #header.single-menu .social-icons {
    margin-top: 54px;
  }
  /* line 2778, app/assets/stylesheets/application.css.sass */
  body.sticky-menu-active #header.single-menu nav ul.nav-main {
    margin-top: 20px;
    margin-bottom: -9px;
  }
  /* line 2782, app/assets/stylesheets/application.css.sass */
  body.sticky-menu-active #header.single-menu nav ul.nav-main > li > a, body.sticky-menu-active #header.single-menu nav ul.nav-main > li:hover > a {
    border-top-color: transparent;
    padding-bottom: 21px;
    padding-top: 36px;
  }
  /* line 2787, app/assets/stylesheets/application.css.sass */
  html.boxed #header.single-menu {
    padding: 4px 0 7px;
  }
  /* line 2789, app/assets/stylesheets/application.css.sass */
  html.boxed body.sticky-menu-active #header.single-menu {
    padding: 15px 0 7px;
  }
}

/* Header Clean Top */
@media (min-width: 992px) {
  /* line 2795, app/assets/stylesheets/application.css.sass */
  #header.clean-top .header-top {
    border-bottom: 1px solid #EDEDED;
    background-color: #F4F4F4;
    margin-top: -8px;
  }
  /* line 2799, app/assets/stylesheets/application.css.sass */
  #header.clean-top .social-icons {
    margin: 11px 10px 9px 10px;
  }
  /* Header Clean Top - Sticky Menu / Boxed */
  /* line 2803, app/assets/stylesheets/application.css.sass */
  body.sticky-menu-active #header.clean-top ul.nav-main > li > a, body.sticky-menu-active #header.clean-top ul.nav-main > li:hover > a {
    padding-bottom: 20px;
    padding-top: 33px;
  }
}

/* Header Colored */
@media (min-width: 992px) {
  /* line 2809, app/assets/stylesheets/application.css.sass */
  #header.colored {
    border-top: 0;
  }
  /* line 2811, app/assets/stylesheets/application.css.sass */
  #header.colored > .container {
    height: 107px;
    margin-bottom: -92px;
  }
  /* line 2815, app/assets/stylesheets/application.css.sass */
  #header.colored .header-top p, #header.colored .header-top a, #header.colored .header-top span {
    color: #FFF;
  }
  /* line 2817, app/assets/stylesheets/application.css.sass */
  #header.colored .search input.search-query {
    border: 0;
    padding-bottom: 5px;
    padding-top: 5px;
    box-shadow: none;
  }
  /* line 2822, app/assets/stylesheets/application.css.sass */
  #header.colored nav ul.nav-main {
    margin: -15px 0 -8px;
  }
  /* line 2825, app/assets/stylesheets/application.css.sass */
  #header.colored nav ul.nav-main li a {
    padding-bottom: 24px;
    padding-top: 50px;
  }
  /* line 2828, app/assets/stylesheets/application.css.sass */
  #header.colored nav ul.nav-main li.dropdown:hover > a {
    padding-bottom: 24px;
  }
  /* Header Colored - Sticky Menu / Boxed */
  /* line 2832, app/assets/stylesheets/application.css.sass */
  body.sticky-menu-active #header.colored .logo {
    padding-top: 6px;
  }
  /* line 2835, app/assets/stylesheets/application.css.sass */
  body.sticky-menu-active #header.colored ul.nav-main > li > a, body.sticky-menu-active #header.colored ul.nav-main > li:hover > a {
    padding-bottom: 24px;
    padding-top: 24px;
  }
}

/* Header Darken Top Border */
@media (min-width: 992px) {
  /* line 2842, app/assets/stylesheets/application.css.sass */
  #header.darken-top-border > .container {
    height: 103px;
  }
  /* line 2844, app/assets/stylesheets/application.css.sass */
  #header.darken-top-border ul.nav-main {
    margin: -11px 0 -8px;
  }
  /* Header Darken Top Border - Sticky Menu / Boxed */
  /* line 2847, app/assets/stylesheets/application.css.sass */
  body.sticky-menu-active #header.darken-top-border nav ul.nav-main {
    margin-top: 33px;
  }
  /* line 2850, app/assets/stylesheets/application.css.sass */
  body.sticky-menu-active #header.darken-top-border nav ul.nav-main > li > a, body.sticky-menu-active #header.darken-top-border nav ul.nav-main > li:hover > a {
    padding-bottom: 22px;
    padding-top: 30px;
  }
  /* line 2853, app/assets/stylesheets/application.css.sass */
  html.boxed #header.darken-top-border {
    border-top: 0;
  }
}

/* Header Center */
@media (min-width: 992px) {
  /* line 2859, app/assets/stylesheets/application.css.sass */
  #header.center .logo {
    text-align: center;
    position: static;
    margin-top: 5px;
  }
  /* line 2863, app/assets/stylesheets/application.css.sass */
  #header.center nav {
    float: left;
    text-align: center;
    width: 100%;
  }
  /* line 2867, app/assets/stylesheets/application.css.sass */
  #header.center nav ul.nav-main {
    margin: 35px 0 10px;
  }
  /* line 2869, app/assets/stylesheets/application.css.sass */
  #header.center nav ul.nav-main > li {
    display: inline-block;
    float: none;
    text-align: left;
  }
}

@media (max-width: 991px) {
  /* line 2875, app/assets/stylesheets/application.css.sass */
  #header.center {
    text-align: left;
  }
  /* line 2877, app/assets/stylesheets/application.css.sass */
  #header.center nav {
    float: none;
  }
}

/* Header Center - Sticky Menu */
@media (min-width: 992px) {
  /* line 2883, app/assets/stylesheets/application.css.sass */
  body.sticky-menu-active #header.center > .container {
    margin-top: -60px;
  }
  /* line 2885, app/assets/stylesheets/application.css.sass */
  body.sticky-menu-active #header.center .logo {
    text-align: left;
  }
  /* line 2887, app/assets/stylesheets/application.css.sass */
  body.sticky-menu-active #header.center .logo img {
    margin-top: 42px;
  }
  /* line 2889, app/assets/stylesheets/application.css.sass */
  body.sticky-menu-active #header.center nav {
    float: right;
    margin-top: 18px;
    width: auto;
  }
  /* line 2894, app/assets/stylesheets/application.css.sass */
  body.sticky-menu-active #header.center nav ul.nav-main > li > a, body.sticky-menu-active #header.center nav ul.nav-main > li:hover > a {
    padding-bottom: 10px;
    padding-top: 10px;
  }
}

/* Header Narrow */
@media (min-width: 992px) {
  /* line 2900, app/assets/stylesheets/application.css.sass */
  #header.narrow {
    height: auto;
    min-height: 85px;
    padding: 0;
    border-bottom: 1px solid #E9E9E9;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
  }
  /* line 2906, app/assets/stylesheets/application.css.sass */
  #header.narrow > .container {
    margin-bottom: -48px;
    height: 75px;
  }
}

/* Mega Menu (Signin/SignUp) */
/* line 2912, app/assets/stylesheets/application.css.sass */
#header nav.mega-menu ul.nav-main .mega-menu-signin {
  margin-right: -20px;
  padding-left: 0;
  margin-left: 0;
}

/* line 2916, app/assets/stylesheets/application.css.sass */
#header nav.mega-menu ul.nav-main .mega-menu-signin a {
  color: #444;
}

/* line 2918, app/assets/stylesheets/application.css.sass */
#header nav.mega-menu ul.nav-main .mega-menu-signin .dropdown-menu {
  width: 40%;
  right: 8px;
  border-radius: 6px 0 6px 6px;
}

/* line 2922, app/assets/stylesheets/application.css.sass */
#header nav.mega-menu ul.nav-main .mega-menu-signin .fa-user {
  margin-right: 5px;
}

/* line 2924, app/assets/stylesheets/application.css.sass */
#header nav.mega-menu ul.nav-main .mega-menu-signin .mega-menu-sub-title {
  margin-bottom: 10px;
  display: block;
}

/* line 2927, app/assets/stylesheets/application.css.sass */
#header nav.mega-menu ul.nav-main .mega-menu-signin .sign-up-info, #header nav.mega-menu ul.nav-main .mega-menu-signin .log-in-info {
  text-align: center;
  display: block;
}

/* line 2930, app/assets/stylesheets/application.css.sass */
#header nav.mega-menu ul.nav-main .mega-menu-signin.open a.dropdown-toggle {
  margin-bottom: -1px;
  padding-bottom: 11px;
}

/* line 2934, app/assets/stylesheets/application.css.sass */
#header nav.mega-menu ul.nav-main .mega-menu-signin.signin .signin-form {
  display: block;
}

/* line 2936, app/assets/stylesheets/application.css.sass */
#header nav.mega-menu ul.nav-main .mega-menu-signin.signin .signup-form, #header nav.mega-menu ul.nav-main .mega-menu-signin.signin .recover-form {
  display: none;
}

/* line 2939, app/assets/stylesheets/application.css.sass */
#header nav.mega-menu ul.nav-main .mega-menu-signin.signup .signin-form {
  display: none;
}

/* line 2941, app/assets/stylesheets/application.css.sass */
#header nav.mega-menu ul.nav-main .mega-menu-signin.signup .signup-form {
  display: block;
}

/* line 2943, app/assets/stylesheets/application.css.sass */
#header nav.mega-menu ul.nav-main .mega-menu-signin.signup .recover-form {
  display: none;
}

/* line 2946, app/assets/stylesheets/application.css.sass */
#header nav.mega-menu ul.nav-main .mega-menu-signin.recover .signin-form, #header nav.mega-menu ul.nav-main .mega-menu-signin.recover .signup-form {
  display: none;
}

/* line 2948, app/assets/stylesheets/application.css.sass */
#header nav.mega-menu ul.nav-main .mega-menu-signin.recover .recover-form {
  display: block;
}

/* line 2952, app/assets/stylesheets/application.css.sass */
#header nav.mega-menu ul.nav-main .mega-menu-signin.logged .user-avatar .img-thumbnail {
  float: left;
  margin-right: 15px;
}

/* line 2955, app/assets/stylesheets/application.css.sass */
#header nav.mega-menu ul.nav-main .mega-menu-signin.logged .user-avatar .img-thumbnail img {
  max-width: 55px;
}

/* line 2957, app/assets/stylesheets/application.css.sass */
#header nav.mega-menu ul.nav-main .mega-menu-signin.logged .user-avatar strong {
  color: #111;
  display: block;
  padding-top: 7px;
}

/* line 2961, app/assets/stylesheets/application.css.sass */
#header nav.mega-menu ul.nav-main .mega-menu-signin.logged .user-avatar span {
  color: #666;
  display: block;
  font-size: 12px;
}

/* line 2965, app/assets/stylesheets/application.css.sass */
#header nav.mega-menu ul.nav-main .mega-menu-signin.logged .user-avatar p {
  color: #999;
  margin: 0 0 0 25px;
  text-align: left;
}

/* line 2969, app/assets/stylesheets/application.css.sass */
#header nav.mega-menu ul.nav-main .mega-menu-signin.logged .list-account-options {
  list-style: square;
  margin-top: 6px;
}

/* line 2972, app/assets/stylesheets/application.css.sass */
#header nav.mega-menu ul.nav-main .mega-menu-signin.logged .list-account-options a:hover {
  text-decoration: none;
}

/* line 2976, app/assets/stylesheets/application.css.sass */
body #header nav.mega-menu .mega-menu-signin ul.dropdown-menu li a, body #header nav.mega-menu .mega-menu-signin ul.dropdown-menu:hover li:hover li:hover a {
  background-color: transparent !important;
  color: #333;
  padding: 0;
  margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
  /* line 2984, app/assets/stylesheets/application.css.sass */
  #header nav.mega-menu ul.nav-main .mega-menu-signin {
    margin-right: 0;
  }
  /* line 2986, app/assets/stylesheets/application.css.sass */
  #header nav.mega-menu ul.nav-main .mega-menu-signin a {
    color: #FFF;
  }
  /* line 2988, app/assets/stylesheets/application.css.sass */
  #header nav.mega-menu ul.nav-main .mega-menu-signin a .fa-angle-down {
    display: none !important;
  }
  /* line 2990, app/assets/stylesheets/application.css.sass */
  #header nav.mega-menu ul.nav-main .mega-menu-signin ul.dropdown-menu {
    display: block !important;
    margin: 25px 0 0 0 !important;
    padding: 0 0 0 8px;
    width: 100%;
    right: 0;
  }
  /* line 2996, app/assets/stylesheets/application.css.sass */
  #header nav.mega-menu ul.nav-main .mega-menu-signin ul.dropdown-menu li a {
    color: #FFF;
    padding: 6px 0 !important;
  }
  /* line 3001, app/assets/stylesheets/application.css.sass */
  #header nav.mega-menu ul.nav-main .mega-menu-signin.logged .user-avatar strong, #header nav.mega-menu ul.nav-main .mega-menu-signin.logged .user-avatar span {
    color: #FFF !important;
  }
  /* line 3003, app/assets/stylesheets/application.css.sass */
  #header nav.mega-menu ul.nav-main .mega-menu-signin.logged .list-account-options {
    margin: 25px 0 0 0 !important;
  }
  /* line 3005, app/assets/stylesheets/application.css.sass */
  #header nav.mega-menu ul.nav-main .mega-menu-signin.logged .list-account-options a {
    color: #FFF !important;
  }
  /* line 3007, app/assets/stylesheets/application.css.sass */
  #header nav.mega-menu ul.nav-main .mega-menu-signin.logged .list-account-options a:hover {
    color: #FFF !important;
  }
}

/* Responsive */
@media (max-width: 991px) {
  /* Header */
  /* line 3013, app/assets/stylesheets/application.css.sass */
  #header {
    clear: both;
  }
  /* line 3015, app/assets/stylesheets/application.css.sass */
  #header > .container {
    margin-bottom: 0;
  }
  /* line 3017, app/assets/stylesheets/application.css.sass */
  #header .header-top, #header .social-icons, #header .search {
    display: none;
  }
  /* line 3019, app/assets/stylesheets/application.css.sass */
  #header .nav-collapse {
    background: #171717;
    width: 100%;
    clear: both;
    width: 100%;
  }
  /* line 3024, app/assets/stylesheets/application.css.sass */
  #header .nav-collapse .container .nav-main {
    float: left;
    width: 100%;
  }
  /* line 3027, app/assets/stylesheets/application.css.sass */
  #header .nav-main-collapse {
    top: 8px;
    position: relative;
    background: #171717;
    max-height: none;
    width: 100%;
    overflow: hidden;
    overflow-y: hidden;
    overflow-x: hidden;
  }
  /* line 3036, app/assets/stylesheets/application.css.sass */
  #header .nav-main-collapse.collapse {
    display: none !important;
  }
  /* line 3038, app/assets/stylesheets/application.css.sass */
  #header .nav-main-collapse.in {
    width: 100%;
    overflow: hidden;
    overflow-y: hidden;
    overflow-x: hidden;
    display: block !important;
  }
  /* line 3044, app/assets/stylesheets/application.css.sass */
  #header .nav-main {
    padding: 10px 0;
    clear: both;
    display: block;
    float: none;
    width: 100%;
  }
  /* line 3050, app/assets/stylesheets/application.css.sass */
  #header .nav-main ul {
    padding: 0;
    margin: 0;
  }
  /* line 3053, app/assets/stylesheets/application.css.sass */
  #header .nav-main ul li {
    padding: 0;
    margin: 0;
    clear: both;
    float: none;
    display: block;
    border-bottom: 1px solid #2A2A2A;
  }
  /* line 3060, app/assets/stylesheets/application.css.sass */
  #header .nav-main ul li:last-child {
    border-bottom: none;
  }
  /* line 3062, app/assets/stylesheets/application.css.sass */
  #header .nav-main ul ul {
    margin-left: 20px !important;
  }
  /* line 3064, app/assets/stylesheets/application.css.sass */
  #header .nav-main ul.nav-main {
    float: none;
    position: static;
    margin: 8px 0;
    margin-right: -10px;
  }
  /* line 3069, app/assets/stylesheets/application.css.sass */
  #header .nav-main ul.dropdown-menu {
    position: static;
    clear: both;
    float: none;
    display: none !important;
  }
  /* line 3075, app/assets/stylesheets/application.css.sass */
  #header .nav-main li.resp-active > ul.dropdown-menu {
    display: block !important;
  }
  /* line 3077, app/assets/stylesheets/application.css.sass */
  #header .nav-main li.dropdown a.dropdown-toggle.extra {
    float: right;
    position: relative;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    margin: 3px 0 -38px 0;
    z-index: 10;
    display: block;
  }
  /* line 3087, app/assets/stylesheets/application.css.sass */
  #header .nav-main li a.dropdown-toggle.disabled .fa {
    display: none;
  }
  /* line 3090, app/assets/stylesheets/application.css.sass */
  #header nav ul.nav-main > li + li {
    margin-left: 0;
  }
  /* line 3093, app/assets/stylesheets/application.css.sass */
  #header nav ul.nav-main li a {
    color: #FFF;
    clear: both;
    float: none;
    display: block;
    padding: 9px 8px !important;
    border: 0;
    border-top: 0;
    margin: 0;
  }
  /* line 3102, app/assets/stylesheets/application.css.sass */
  #header nav ul.nav-main li a i.fa-angle-down {
    position: absolute;
    right: 5px;
    top: 10px;
  }
  /* line 3106, app/assets/stylesheets/application.css.sass */
  #header nav ul.nav-main li.dropdown:hover > a {
    margin: 0;
    padding: 9px 8px !important;
  }
  /* line 3110, app/assets/stylesheets/application.css.sass */
  #header nav ul.nav-main ul.dropdown-menu {
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  /* line 3114, app/assets/stylesheets/application.css.sass */
  #header nav ul.nav-main ul.dropdown-menu li > a {
    padding: 9px 8px;
    border: 0;
    border-top: 0;
    margin: 0;
    border-bottom: none;
  }
  /* line 3120, app/assets/stylesheets/application.css.sass */
  #header nav ul.nav-main ul.sub-menu {
    padding: 0;
    margin: 0 0 10px 0;
  }
  /* line 3124, app/assets/stylesheets/application.css.sass */
  #header nav ul.nav-main .dropdown-submenu > a:after {
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #FFF;
  }
  /* line 3128, app/assets/stylesheets/application.css.sass */
  #header nav ul.nav-main .dropdown-submenu:hover > a:after {
    border-left-color: transparent;
  }
  /* line 3132, app/assets/stylesheets/application.css.sass */
  body #header nav ul.nav-main ul.dropdown-menu {
    background: none !important;
    background-color: transparent !important;
  }
  /* line 3136, app/assets/stylesheets/application.css.sass */
  body #header nav ul.nav-main li.dropdown.open .dropdown-toggle, body #header nav ul.nav-main li a, body #header nav ul.nav-main li > a:hover, body #header nav ul.nav-main li.active a, body #header nav ul.nav-main li.dropdown:hover a {
    background: none !important;
    background-color: transparent !important;
  }
  /* line 3139, app/assets/stylesheets/application.css.sass */
  body #header nav ul.nav-main ul.dropdown-menu li:hover > a, body #header nav ul.nav-main li.dropdown:hover ul.dropdown-menu li > a:hover {
    background: none !important;
    background-color: transparent !important;
  }
  /* line 3142, app/assets/stylesheets/application.css.sass */
  body.sticky-menu-active #header .nav-main-collapse {
    max-height: 300px;
  }
  /* line 3144, app/assets/stylesheets/application.css.sass */
  #header.fixed .nav-main-collapse {
    max-height: 300px;
  }
  /* line 3146, app/assets/stylesheets/application.css.sass */
  body.sticky-menu-active #header .nav-main-collapse.in, #header.fixed .nav-main-collapse.in {
    overflow: hidden !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
  }
  /* line 3150, app/assets/stylesheets/application.css.sass */
  body.sticky-menu-active #header .logo img, #header.fixed .logo img {
    margin-top: -12px;
  }
  /* Responsive Button Nav */
  /* line 3153, app/assets/stylesheets/application.css.sass */
  .btn-responsive-nav {
    background: #171717;
    top: 55px;
    display: block;
    position: absolute;
    right: 20px;
    color: #FFF;
    z-index: 1;
  }
  /* line 3161, app/assets/stylesheets/application.css.sass */
  .btn-responsive-nav:hover, .btn-responsive-nav:active, .btn-responsive-nav:focus {
    color: #CCC;
    outline: none;
  }
  /* Logo */
  /* line 3166, app/assets/stylesheets/application.css.sass */
  #header h1.logo img {
    max-width: 180px;
    max-height: none !important;
    height: auto !important;
  }
  /* line 3170, app/assets/stylesheets/application.css.sass */
  #header .header-top ul.nav-top {
    float: left;
    margin: 7px 0 0 -15px;
    min-height: 5px;
  }
  /* Nav Top */
}

@media (max-width: 767px) {
  /* Header */
  /* line 3178, app/assets/stylesheets/application.css.sass */
  #header {
    display: block;
  }
  /* line 3180, app/assets/stylesheets/application.css.sass */
  #header > .container {
    width: 100%;
  }
  /* line 3182, app/assets/stylesheets/application.css.sass */
  #header .social-icons {
    display: none;
  }
  /* line 3184, app/assets/stylesheets/application.css.sass */
  #header nav ul.nav-top {
    float: right;
    margin-right: 0;
  }
  /* line 3187, app/assets/stylesheets/application.css.sass */
  #header.center nav {
    width: auto;
  }
  /* Responsive Button Nav */
  /* line 3190, app/assets/stylesheets/application.css.sass */
  .btn-responsive-nav {
    top: 55px;
  }
  /* line 3192, app/assets/stylesheets/application.css.sass */
  body.sticky-menu-active .btn-responsive-nav {
    top: 60px;
  }
}

@media (max-width: 479px) {
  /* line 3197, app/assets/stylesheets/application.css.sass */
  #header nav ul.nav-top, #header .header-top {
    display: none;
  }
}

@media (max-width: 600px) {
  /* Header */
  /* line 3202, app/assets/stylesheets/application.css.sass */
  #header nav ul.nav-top li {
    display: none;
  }
  /* line 3204, app/assets/stylesheets/application.css.sass */
  #header nav ul.nav-top li .phone {
    display: block;
  }
}

/* Page Top */
/* line 3209, app/assets/stylesheets/application.css.sass */
.page-top {
  background-color: #171717;
  border-bottom: 5px solid #CCC;
  border-top: 5px solid #384045;
  margin-bottom: 35px;
  min-height: 50px;
  padding: 0;
  padding: 20px 0;
  position: relative;
  text-align: left;
}

/* line 3219, app/assets/stylesheets/application.css.sass */
.page-top ul.breadcrumb {
  background: none;
  margin: -3px 0 0;
  padding: 0;
}

/* line 3223, app/assets/stylesheets/application.css.sass */
.page-top ul.breadcrumb > li {
  text-shadow: none;
}

/* line 3225, app/assets/stylesheets/application.css.sass */
.page-top h2 {
  border-bottom: 5px solid #CCC;
  color: #FFF;
  display: inline-block;
  font-weight: 200;
  margin: 0 0 -25px;
  min-height: 37px;
  line-height: 46px;
  padding: 0 0 17px;
  position: relative;
}

/* line 3235, app/assets/stylesheets/application.css.sass */
.page-top.custom-product {
  background-image: url(/../img/custom-header-bg.jpg);
  background-repeat: repeat;
  background-color: #999;
  border-top: 5px solid #888;
  overflow: hidden;
}

/* line 3241, app/assets/stylesheets/application.css.sass */
.page-top.custom-product .row {
  position: relative;
}

/* line 3243, app/assets/stylesheets/application.css.sass */
.page-top.custom-product p.lead {
  color: #E8E8E8;
}

/* line 3245, app/assets/stylesheets/application.css.sass */
.page-top.custom-product img {
  bottom: -47px;
  position: relative;
}

/* line 3248, app/assets/stylesheets/application.css.sass */
.page-top.custom-product h1 {
  color: #FFF;
  margin-bottom: 10px;
  margin-top: 30px;
}

/* Page Top Custom - Create your Own */
/* Responsive */
@media (max-width: 479px) {
  /* line 3257, app/assets/stylesheets/application.css.sass */
  .page-top {
    padding: 16px 0;
  }
  /* line 3259, app/assets/stylesheets/application.css.sass */
  .page-top h2 {
    line-height: 37px;
  }
}

/* Parallax */
/* line 3264, app/assets/stylesheets/application.css.sass */
.parallax {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  margin: 70px 0;
  padding: 50px 0;
  position: relative;
}

/* line 3270, app/assets/stylesheets/application.css.sass */
.parallax.parallax-ready {
  background-attachment: fixed;
}

/* line 3272, app/assets/stylesheets/application.css.sass */
.parallax.parallax-disabled {
  background-attachment: scroll !important;
  background-position: 50% 50% !important;
}

/* line 3275, app/assets/stylesheets/application.css.sass */
.parallax blockquote {
  border: 0;
  padding: 0 10%;
}

/* line 3278, app/assets/stylesheets/application.css.sass */
.parallax blockquote i.fa-quote-left {
  font-size: 34px;
  position: relative;
  left: -5px;
}

/* line 3282, app/assets/stylesheets/application.css.sass */
.parallax blockquote p {
  font-size: 24px;
  line-height: 30px;
}

/* line 3285, app/assets/stylesheets/application.css.sass */
.parallax blockquote span {
  font-size: 16px;
  line-height: 20px;
  color: #999;
  position: relative;
  left: -5px;
}

/* Responsive */
@media (max-width: 991px) {
  /* line 3294, app/assets/stylesheets/application.css.sass */
  .parallax {
    background-attachment: scroll !important;
    background-position: 50% 50% !important;
  }
}

/* Section Featured */
/* line 3300, app/assets/stylesheets/application.css.sass */
.featured_section {
  background: #F0F0ED;
  border-top: 5px solid #ECECE8;
  margin: 35px 0;
  padding: 50px 0;
}

/* line 3305, app/assets/stylesheets/application.css.sass */
.featured_section.footer {
  margin: 30px 0 -70px;
}

/* line 3307, app/assets/stylesheets/application.css.sass */
.featured_section.map {
  background-image: url(/../img/map-bottom.png);
  background-position: center 0;
  background-repeat: no-repeat;
  margin-top: 0;
  border-top: 0;
}

/* Section Highlight */
/* line 3316, app/assets/stylesheets/application.css.sass */
.highlight_section {
  background: #CCC;
  boder-left: 0;
  boder-right: 0;
  border: 3px solid #CCC;
  margin: 35px 0 45px;
  padding: 40px 0;
  color: #FFF;
}

/* line 3325, app/assets/stylesheets/application.css.sass */
.highlight_section > p, .highlight_section > a {
  color: #FFF;
}

/* line 3327, app/assets/stylesheets/application.css.sass */
.highlight_section h1, .highlight_section h2, .highlight_section h3, .highlight_section h4, .highlight_section h5 {
  color: #FFF;
}

/* line 3329, app/assets/stylesheets/application.css.sass */
.highlight_section .img-thumbnail {
  background-color: #FFF !important;
  border-color: #FFF !important;
}

/* line 3332, app/assets/stylesheets/application.css.sass */
.highlight_section.footer {
  margin: 45px 0 -70px;
}

/* line 3334, app/assets/stylesheets/application.css.sass */
.highlight_section.top {
  margin-top: 0;
}

/* Call To Action */
/* line 3339, app/assets/stylesheets/application.css.sass */
.call-to-action {
  position: relative;
  clear: both;
}

/* line 3342, app/assets/stylesheets/application.css.sass */
.call-to-action:before {
  content: "";
  display: block;
  position: absolute;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid #FFF;
  height: 15px;
  width: 15px;
  top: -5px;
  left: 50%;
  margin-left: -7px;
}

/* line 3354, app/assets/stylesheets/application.css.sass */
.call-to-action h3 {
  text-transform: none;
  color: #121212;
}

/* line 3357, app/assets/stylesheets/application.css.sass */
.call-to-action h3 .btn {
  margin-left: 10px;
}

/* line 3359, app/assets/stylesheets/application.css.sass */
.call-to-action.no-arrow:before {
  display: none;
}

/* Sidebar */
/* line 3364, app/assets/stylesheets/application.css.sass */
aside ul.nav-list > li > a {
  color: #666;
  font-size: 0.9em;
}

/* Home Slider - Revolution Slider */
/* line 3370, app/assets/stylesheets/application.css.sass */
.slider-container {
  background: #171717;
  overflow: hidden;
  padding: 0;
  position: relative;
  z-index: 1;
}

/* line 3376, app/assets/stylesheets/application.css.sass */
.slider-container ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* line 3380, app/assets/stylesheets/application.css.sass */
.slider-container .tp-bannershadow {
  filter: alpha(opacity=20);
  opacity: 0.20;
}

/* line 3383, app/assets/stylesheets/application.css.sass */
.slider-container .top-label {
  color: #FFF;
  font-size: 24px;
  font-weight: 300;
}

/* line 3387, app/assets/stylesheets/application.css.sass */
.slider-container .main-label {
  color: #FFF;
  font-size: 62px;
  line-height: 62px;
  font-weight: 800;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.15);
}

/* line 3393, app/assets/stylesheets/application.css.sass */
.slider-container .bottom-label {
  color: #FFF;
  font-size: 20px;
  font-weight: 300;
}

/* line 3397, app/assets/stylesheets/application.css.sass */
.slider-container .blackboard-text {
  color: #BAB9BE;
  font-size: 46px;
  line-height: 46px;
  font-family: "Shadows Into Light", cursive;
  text-transform: uppercase;
}

/* line 3403, app/assets/stylesheets/application.css.sass */
.slider-container .tp-caption {
  opacity: 0;
}

/* line 3405, app/assets/stylesheets/application.css.sass */
.slider-container .tp-caption a {
  color: #FFF;
}

/* line 3407, app/assets/stylesheets/application.css.sass */
.slider-container .tp-caption a:hover {
  color: #FFF;
}

/* line 3409, app/assets/stylesheets/application.css.sass */
.slider-container .tp-caption.fullscreenvideo {
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
  left: 0 !important;
}

/* line 3415, app/assets/stylesheets/application.css.sass */
.slider-container .tp-caption.fullscreenvideo video {
  height: 100%;
  width: 100%;
  padding: 0;
  position: relative;
}

/* line 3420, app/assets/stylesheets/application.css.sass */
.slider-container.light {
  background-color: #EAEAEA;
}

/* line 3422, app/assets/stylesheets/application.css.sass */
.slider-container.light .tp-bannershadow {
  filter: alpha(opacity=5);
  opacity: 0.05;
  top: 0;
  bottom: auto;
  z-index: 1000;
}

/* line 3428, app/assets/stylesheets/application.css.sass */
.slider-container.light .top-label, .slider-container.light .main-label, .slider-container.light .bottom-label {
  color: #333;
}

/* line 3430, app/assets/stylesheets/application.css.sass */
.slider-container.light .tp-caption a {
  color: #333;
}

/* line 3432, app/assets/stylesheets/application.css.sass */
.slider-container.light .tp-caption a:hover {
  color: #333;
}

/* Responsive */
@media (max-width: 991px) {
  /* line 3437, app/assets/stylesheets/application.css.sass */
  .slider-container {
    min-height: 0;
  }
}

/* line 3440, app/assets/stylesheets/application.css.sass */
.slider {
  height: 495px;
  max-height: 495px;
  position: relative;
}

/* line 3447, app/assets/stylesheets/application.css.sass */
.rev_slider > ul > li > img {
  visibility: hidden;
}

/* line 3449, app/assets/stylesheets/application.css.sass */
.rev_slider > ul > li > .center-caption {
  left: 0 !important;
  margin-left: 0 !important;
  text-align: center;
  width: 100%;
}

/* line 3454, app/assets/stylesheets/application.css.sass */
.rev_slider .tp-bannertimer {
  display: none;
}

/* line 3456, app/assets/stylesheets/application.css.sass */
.rev_slider .main-button {
  font-size: 22px;
  font-weight: 600;
  line-height: 20px;
  padding-bottom: 20px;
  padding-top: 20px;
  padding-left: 25px;
  padding-right: 25px;
}

/* line 3465, app/assets/stylesheets/application.css.sass */
.slider-container-fullscreen {
  max-height: none;
}

/* line 3467, app/assets/stylesheets/application.css.sass */
.slider-container-fullscreen .slider {
  max-height: none;
}

/* Home Slider - Nivo Slider */
/* line 3472, app/assets/stylesheets/application.css.sass */
.nivo-slider {
  position: relative;
}

/* line 3475, app/assets/stylesheets/application.css.sass */
.nivo-slider .theme-default .nivoSlider {
  border-radius: 10px 10px 0px 0px;
  box-shadow: none;
  margin-top: 10px;
}

/* line 3479, app/assets/stylesheets/application.css.sass */
.nivo-slider .theme-default .nivoSlider img {
  border-radius: 10px 10px 0px 0px;
}

/* line 3481, app/assets/stylesheets/application.css.sass */
.nivo-slider .theme-default .nivo-controlNav {
  margin-top: -72px;
  position: absolute;
  z-index: 100;
  right: 5px;
  bottom: -17px;
}

/* line 3487, app/assets/stylesheets/application.css.sass */
.nivo-slider .theme-default .nivo-caption {
  padding-left: 20px;
}

/* Map */
/* line 3492, app/assets/stylesheets/application.css.sass */
.map-section {
  background: transparent url(/../img/map-top.png) center 0 no-repeat;
  padding-top: 220px;
  margin-top: 40px;
}

/* Home Intro */
/* line 3499, app/assets/stylesheets/application.css.sass */
.home-intro {
  background-color: #171717;
  margin-bottom: 60px;
  overflow: hidden;
  padding: 20px 0 10px 0;
  position: relative;
  text-align: left;
}

/* line 3506, app/assets/stylesheets/application.css.sass */
.home-intro p {
  color: #FFF;
  display: inline-block;
  font-size: 1.4em;
  font-weight: 300;
  max-width: 800px;
  padding-top: 5px;
}

/* line 3513, app/assets/stylesheets/application.css.sass */
.home-intro p span {
  color: #999;
  display: block;
  font-size: 0.8em;
  padding-top: 5px;
}

/* line 3518, app/assets/stylesheets/application.css.sass */
.home-intro p em {
  font-family: "Shadows Into Light", cursive;
  font-size: 1.6em;
}

/* line 3521, app/assets/stylesheets/application.css.sass */
.home-intro .get-started {
  margin-top: 15px;
  margin-bottom: 15px;
  position: relative;
  text-align: right;
}

/* line 3526, app/assets/stylesheets/application.css.sass */
.home-intro .get-started .btn {
  position: relative;
  z-index: 1;
}

/* line 3529, app/assets/stylesheets/application.css.sass */
.home-intro .get-started .btn i {
  font-size: 1.1em;
  font-weight: normal;
  margin-left: 5px;
}

/* line 3533, app/assets/stylesheets/application.css.sass */
.home-intro .get-started a {
  color: #FFF;
}

/* line 3535, app/assets/stylesheets/application.css.sass */
.home-intro .get-started a:not(.btn) {
  color: #777777;
}

/* line 3537, app/assets/stylesheets/application.css.sass */
.home-intro .learn-more {
  margin-left: 15px;
}

/* line 3539, app/assets/stylesheets/application.css.sass */
.home-intro.light {
  background-color: #E2E2E2;
}

/* line 3541, app/assets/stylesheets/application.css.sass */
.home-intro.light.secundary {
  background-color: #E0E1E4;
}

/* line 3543, app/assets/stylesheets/application.css.sass */
.home-intro.light p {
  color: #777777;
}

/* Home Intro Compact */
/* line 3548, app/assets/stylesheets/application.css.sass */
.home-intro-compact {
  border-radius: 0 0 10px 10px;
  margin-top: -10px;
}

/* line 3551, app/assets/stylesheets/application.css.sass */
.home-intro-compact p {
  padding-left: 20px;
}

/* line 3553, app/assets/stylesheets/application.css.sass */
.home-intro-compact .get-started {
  padding-right: 20px;
}

/* Responsive */
@media (max-width: 767px) {
  /* Home Intro */
  /* line 3559, app/assets/stylesheets/application.css.sass */
  .home-intro-compact {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }
}

/* Home Concept */
/* line 3567, app/assets/stylesheets/application.css.sass */
.home-concept {
  background: transparent url(/../img/home-concept.png) no-repeat center 0;
  width: 100%;
  overflow: hidden;
}

/* line 3571, app/assets/stylesheets/application.css.sass */
.home-concept strong {
  display: block;
  font-family: "Shadows Into Light", cursive;
  font-size: 2.1em;
  font-weight: normal;
  position: relative;
  margin-top: 30px;
}

/* line 3578, app/assets/stylesheets/application.css.sass */
.home-concept .row {
  position: relative;
}

/* line 3580, app/assets/stylesheets/application.css.sass */
.home-concept .process-image {
  background: transparent url(/../img/home-concept-item.png) no-repeat 0 0;
  width: 160px;
  height: 175px;
  margin: 135px auto 0 auto;
  padding-bottom: 50px;
  position: relative;
  z-index: 1;
}

/* line 3588, app/assets/stylesheets/application.css.sass */
.home-concept .process-image img {
  border-radius: 150px;
  margin: 7px 8px;
}

/* line 3591, app/assets/stylesheets/application.css.sass */
.home-concept .our-work {
  margin-top: 52px;
  font-size: 2.6em;
}

/* line 3594, app/assets/stylesheets/application.css.sass */
.home-concept .project-image {
  background: transparent url(/../img/home-concept-item.png) no-repeat 100% 0;
  width: 350px;
  height: 420px;
  margin: 15px 0 0 -30px;
  padding-bottom: 45px;
  position: relative;
  z-index: 1;
}

/* line 3602, app/assets/stylesheets/application.css.sass */
.home-concept .sun {
  background: transparent url(/../img/home-concept-icons.png) no-repeat 0 0;
  width: 60px;
  height: 56px;
  display: block;
  position: absolute;
  left: 10%;
  top: 35px;
}

/* line 3610, app/assets/stylesheets/application.css.sass */
.home-concept .cloud {
  background: transparent url(/../img/home-concept-icons.png) no-repeat 100% 0;
  width: 116px;
  height: 56px;
  display: block;
  position: absolute;
  left: 57%;
  top: 35px;
}

/* Responsive */
@media (max-width: 991px) {
  /* line 3621, app/assets/stylesheets/application.css.sass */
  .home-concept {
    background: none;
  }
  /* line 3623, app/assets/stylesheets/application.css.sass */
  .home-concept .project-image {
    margin: 60px auto 0 auto;
  }
  /* line 3625, app/assets/stylesheets/application.css.sass */
  .home-concept .process-image {
    margin-top: 60px;
  }
}

@media (max-width: 479px) {
  /* line 3630, app/assets/stylesheets/application.css.sass */
  .home-concept .project-image {
    background-position: 0 0;
    margin-left: auto;
    max-width: 160px;
    max-height: 220px;
  }
  /* line 3635, app/assets/stylesheets/application.css.sass */
  .home-concept .fc-slideshow {
    max-height: 145px;
    max-width: 145px;
  }
  /* line 3638, app/assets/stylesheets/application.css.sass */
  .home-concept .fc-slideshow img {
    max-height: 145px;
    max-width: 145px;
  }
}

/* Page 404 */
/* line 3644, app/assets/stylesheets/application.css.sass */
.page-not-found {
  margin: 50px 0;
}

/* line 3646, app/assets/stylesheets/application.css.sass */
.page-not-found h2 {
  font-size: 140px;
  font-weight: 600;
  letter-spacing: -10px;
  line-height: 140px;
}

/* line 3651, app/assets/stylesheets/application.css.sass */
.page-not-found h4 {
  color: #777777;
}

/* line 3653, app/assets/stylesheets/application.css.sass */
.page-not-found p {
  font-size: 1.4em;
  line-height: 36px;
}

/* Responsive */
@media (max-width: 479px) {
  /* line 3659, app/assets/stylesheets/application.css.sass */
  .page-not-found {
    margin: 0;
  }
  /* line 3661, app/assets/stylesheets/application.css.sass */
  .page-not-found h2 {
    font-size: 100px;
    letter-spacing: 0;
    line-height: 100px;
  }
}

/* #Footer */
/* line 3668, app/assets/stylesheets/application.css.sass */
#footer {
  background: #0e0e0e;
  border-top: 4px solid #0e0e0e;
  font-size: 0.9em;
  margin-top: 50px;
  padding: 80px 0 0;
  position: relative;
  clear: both;
}

/* line 3676, app/assets/stylesheets/application.css.sass */
#footer a:hover {
  color: #CCC;
}

/* line 3678, app/assets/stylesheets/application.css.sass */
#footer form {
  filter: alpha(opacity=85);
  opacity: 0.85;
}

/* line 3681, app/assets/stylesheets/application.css.sass */
#footer h1, #footer h2, #footer h3, #footer h4, #footer a {
  color: #FFF !important;
}

/* line 3683, app/assets/stylesheets/application.css.sass */
#footer h4 {
  font-size: 1.8em;
  font-weight: 200;
}

/* line 3686, app/assets/stylesheets/application.css.sass */
#footer h5 {
  color: #CCC !important;
}

/* line 3690, app/assets/stylesheets/application.css.sass */
#footer ul.nav-list.primary > li a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  line-height: 20px;
  padding-bottom: 11px;
}

/* line 3694, app/assets/stylesheets/application.css.sass */
#footer ul.nav-list.primary > li:last-child a {
  border-bottom: 0;
}

/* line 3696, app/assets/stylesheets/application.css.sass */
#footer ul.nav-list.primary > li a:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

/* line 3698, app/assets/stylesheets/application.css.sass */
#footer ul.list.icons li {
  margin-bottom: 5px;
}

/* line 3701, app/assets/stylesheets/application.css.sass */
#footer .container .row > div {
  margin-bottom: 25px;
}

/* line 3703, app/assets/stylesheets/application.css.sass */
#footer .container input:focus {
  box-shadow: none;
}

/* line 3705, app/assets/stylesheets/application.css.sass */
#footer .footer-ribbon {
  background: #999;
  position: absolute;
  margin: -100px 0 0 22px;
  padding: 10px 20px 6px 20px;
}

/* line 3710, app/assets/stylesheets/application.css.sass */
#footer .footer-ribbon:before {
  border-right: 10px solid #646464;
  border-top: 16px solid transparent;
  content: "";
  display: block;
  height: 0;
  left: -10px;
  position: absolute;
  top: 0;
  width: 7px;
}

/* line 3720, app/assets/stylesheets/application.css.sass */
#footer .footer-ribbon span {
  color: #FFF;
  font-size: 1.6em;
  font-family: "Shadows Into Light", cursive;
}

/* line 3724, app/assets/stylesheets/application.css.sass */
#footer .newsletter form {
  width: 100%;
  max-width: 262px;
}

/* line 3727, app/assets/stylesheets/application.css.sass */
#footer .newsletter form input.form-control {
  height: 34px;
  padding: 6px 12px;
}

/* line 3730, app/assets/stylesheets/application.css.sass */
#footer .alert a {
  color: #222 !important;
}

/* line 3732, app/assets/stylesheets/application.css.sass */
#footer .alert a:hover {
  color: #666 !important;
}

/* Twitter */
/* line 3738, app/assets/stylesheets/application.css.sass */
.twitter .fa {
  clear: both;
  font-size: 1.5em;
  position: relative;
  top: 3px;
}

/* line 3743, app/assets/stylesheets/application.css.sass */
.twitter .time {
  color: #999;
  display: block;
  font-size: 0.9em;
  padding-top: 3px;
  margin-bottom: 20px;
}

/* line 3749, app/assets/stylesheets/application.css.sass */
.twitter .time:last-child {
  margin-bottom: 0;
}

/* line 3751, app/assets/stylesheets/application.css.sass */
.twitter ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* line 3756, app/assets/stylesheets/application.css.sass */
#footer .twitter-account {
  color: #FFF;
  display: block;
  font-size: 0.9em;
  margin: -15px 0 5px;
  filter: alpha(opacity=55);
  opacity: 0.55;
}

/* line 3764, app/assets/stylesheets/application.css.sass */
.twitter-account:hover {
  filter: alpha(opacity=100);
  opacity: 1;
}

/* line 3769, app/assets/stylesheets/application.css.sass */
#footer .contact {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* line 3773, app/assets/stylesheets/application.css.sass */
#footer .contact i {
  display: block;
  float: left;
  font-size: 1.2em;
  margin: 7px 8px 10px 0;
  position: relative;
  text-align: center;
  top: -2px;
  width: 16px;
}

/* line 3782, app/assets/stylesheets/application.css.sass */
#footer .contact i.fa-envelope {
  font-size: 1em;
  top: 0;
}

/* line 3785, app/assets/stylesheets/application.css.sass */
#footer .contact p {
  margin-bottom: 10px;
}

/* line 3787, app/assets/stylesheets/application.css.sass */
#footer .logo {
  display: block;
}

/* line 3789, app/assets/stylesheets/application.css.sass */
#footer .logo.push-bottom {
  margin-bottom: 12px;
}

/* line 3791, app/assets/stylesheets/application.css.sass */
#footer .footer-copyright {
  background: #060606;
  border-top: 4px solid #060606;
  margin-top: 40px;
  padding: 30px 0 10px;
}

/* line 3796, app/assets/stylesheets/application.css.sass */
#footer .footer-copyright nav {
  float: right;
}

/* line 3798, app/assets/stylesheets/application.css.sass */
#footer .footer-copyright nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* line 3802, app/assets/stylesheets/application.css.sass */
#footer .footer-copyright nav ul li {
  border-left: 1px solid #505050;
  display: inline-block;
  line-height: 12px;
  margin: 0;
  padding: 0 8px;
}

/* line 3808, app/assets/stylesheets/application.css.sass */
#footer .footer-copyright nav ul li:first-child {
  border: medium none;
  padding-left: 0;
}

/* line 3811, app/assets/stylesheets/application.css.sass */
#footer .footer-copyright p {
  color: #555;
  margin: 0;
  padding: 0;
}

/* line 3815, app/assets/stylesheets/application.css.sass */
#footer .phone {
  color: #FFF;
  font-size: 26px;
  font-weight: bold;
  display: block;
  padding-bottom: 15px;
  margin-top: -5px;
}

/* line 3823, app/assets/stylesheets/application.css.sass */
#footer .recent-work li {
  float: left;
  width: 30%;
  margin: 10px 3% 0 0;
}

/* line 3827, app/assets/stylesheets/application.css.sass */
#footer .recent-work li .thumb-info {
  float: left;
  display: inline-block;
}

/* line 3830, app/assets/stylesheets/application.css.sass */
#footer .recent-work li:hover img {
  -webkit-transform: none;
  -moz-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}

/* line 3836, app/assets/stylesheets/application.css.sass */
#footer .recent-work img {
  width: 100%;
  filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");
  filter: gray;
  -webkit-filter: grayscale(100%);
}

/* line 3841, app/assets/stylesheets/application.css.sass */
#footer .view-more-recent-work {
  padding: 12px;
}

/* line 3843, app/assets/stylesheets/application.css.sass */
#footer.short {
  padding-top: 50px;
}

/* line 3845, app/assets/stylesheets/application.css.sass */
#footer.short .footer-copyright {
  background: transparent;
  border: 0;
  padding-top: 0;
  margin-top: 0;
}

/* Responsive */
@media (max-width: 991px) {
  /* line 3853, app/assets/stylesheets/application.css.sass */
  #footer .phone {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  /* Footer */
  /* line 3858, app/assets/stylesheets/application.css.sass */
  #footer .phone {
    font-size: 20px;
  }
}

/* Dark Version */
/* line 3865, app/assets/stylesheets/application.css.sass */
html.dark body, html.dark.boxed .body {
  background-color: #1d2127;
}

/* line 3867, app/assets/stylesheets/application.css.sass */
html.dark #header {
  background: #1d2127;
  border-top-color: #191c21;
  border-radius: 6px 6px 0 0;
}

/* line 3872, app/assets/stylesheets/application.css.sass */
html.dark #header nav ul.nav-top li a:hover {
  background-color: #282d36;
}

/* line 3877, app/assets/stylesheets/application.css.sass */
html.dark #header nav.mega-menu ul.nav-main li.mega-menu-item .mega-menu-sub-title {
  color: #FFF;
}

/* line 3879, app/assets/stylesheets/application.css.sass */
html.dark #header nav.mega-menu ul.nav-main li.mega-menu-item ul.dropdown-menu {
  background-color: #282d36 !important;
}

/* line 3881, app/assets/stylesheets/application.css.sass */
html.dark #header nav.mega-menu ul.nav-main li.mega-menu-item:hover ul.sub-menu li:hover a:hover {
  background-color: #0c0d10 !important;
}

/* line 3883, app/assets/stylesheets/application.css.sass */
html.dark #header nav.mega-menu ul.nav-main li.mega-menu-item .form-control {
  background-color: #2e353e !important;
  border-color: #2e353e !important;
  color: #FFF !important;
}

/* line 3888, app/assets/stylesheets/application.css.sass */
html.dark #header nav.mega-menu ul.nav-main .mega-menu-signin a {
  color: #FFF;
}

/* line 3890, app/assets/stylesheets/application.css.sass */
html.dark #header nav.mega-menu ul.nav-main .mega-menu-signin a:hover {
  color: #FFF;
}

/* line 3892, app/assets/stylesheets/application.css.sass */
html.dark #header nav.mega-menu ul.nav-main .mega-menu-signin.logged .user-avatar strong {
  color: #FFF;
}

/* line 3894, app/assets/stylesheets/application.css.sass */
html.dark #header nav.mega-menu .mega-menu-signin ul.dropdown-menu:hover li:hover li:hover a {
  color: #d9d9d9;
}

/* line 3896, app/assets/stylesheets/application.css.sass */
html.dark #header .search input.search:focus {
  border-color: #282d36;
}

/* line 3898, app/assets/stylesheets/application.css.sass */
html.dark #header.clean-top .header-top {
  background: #21262d;
  border-bottom-color: #282d36;
}

/* line 3901, app/assets/stylesheets/application.css.sass */
html.dark #header.narrow {
  border-bottom-color: #21262d;
}

/* line 3904, app/assets/stylesheets/application.css.sass */
html.dark #header nav.mega-menu .mega-menu-shop .actions-continue {
  border-top-color: #21262d;
}

/* line 3906, app/assets/stylesheets/application.css.sass */
html.dark #header nav.mega-menu .mega-menu-shop .dropdown-menu li table tr td a, html.dark #header nav.mega-menu .mega-menu-shop a {
  color: #FFF;
}

/* line 3908, app/assets/stylesheets/application.css.sass */
html.dark body.sticky-menu-active #header {
  border-bottom-color: #282d36;
}

/* line 3910, app/assets/stylesheets/application.css.sass */
html.dark h1, html.dark h2, html.dark h3, html.dark h4, html.dark h5, html.dark h6 {
  color: #FFF;
}

/* line 3913, app/assets/stylesheets/application.css.sass */
html.dark .alert h1, html.dark .alert h2, html.dark .alert h3, html.dark .alert h4, html.dark .alert h5, html.dark .alert h6 {
  color: #111;
}

/* line 3915, app/assets/stylesheets/application.css.sass */
html.dark blockquote {
  border-color: #282d36;
}

/* line 3917, app/assets/stylesheets/application.css.sass */
html.dark .featured_section {
  background-color: #191c21;
  border-top-color: #2e353e;
}

/* line 3920, app/assets/stylesheets/application.css.sass */
html.dark .featured_section.map {
  background-image: url(/../img/map-bottom-dark.png);
}

/* line 3922, app/assets/stylesheets/application.css.sass */
html.dark .call-to-action:before {
  border-top-color: #2e353e;
}

/* line 3925, app/assets/stylesheets/application.css.sass */
html.dark section.timeline:after {
  background: #505050;
  background: -moz-linear-gradient(top, rgba(80, 80, 80, 0) 0%, #505050 8%, #505050 92%, rgba(80, 80, 80, 0) 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #1e5799), color-stop(100%, #7db9e8));
  background: -webkit-linear-gradient(top, rgba(80, 80, 80, 0) 0%, #505050 8%, #505050 92%, rgba(80, 80, 80, 0) 100%);
  background: -o-linear-gradient(top, rgba(80, 80, 80, 0) 0%, #505050 8%, #505050 92%, rgba(80, 80, 80, 0) 100%);
  background: -ms-linear-gradient(top, rgba(80, 80, 80, 0) 0%, #505050 8%, #505050 92%, rgba(80, 80, 80, 0) 100%);
  background: linear, to bottom, rgba(80, 80, 80, 0) 0%, #505050 8%, #505050 92%, rgba(80, 80, 80, 0) 100%;
}

/* line 3933, app/assets/stylesheets/application.css.sass */
html.dark section.timeline .timeline-date {
  background-color: #282d36;
  border-color: #282d36;
  text-shadow: none;
}

/* line 3937, app/assets/stylesheets/application.css.sass */
html.dark section.timeline .timeline-title {
  background: #282d36;
}

/* line 3939, app/assets/stylesheets/application.css.sass */
html.dark section.timeline .timeline-box {
  border-color: #282d36;
  background: #282d36;
}

/* line 3943, app/assets/stylesheets/application.css.sass */
html.dark section.timeline .timeline-box.left:before {
  box-shadow: 0 0 0 3px #282d36, 0 0 0 6px #282d36;
}

/* line 3945, app/assets/stylesheets/application.css.sass */
html.dark section.timeline .timeline-box.left:after {
  background: #282d36;
  border-right-color: #282d36;
  border-top-color: #282d36;
}

/* line 3950, app/assets/stylesheets/application.css.sass */
html.dark section.timeline .timeline-box.right:before {
  box-shadow: 0 0 0 3px #282d36, 0 0 0 6px #282d36;
}

/* line 3952, app/assets/stylesheets/application.css.sass */
html.dark section.timeline .timeline-box.right:after {
  background: #282d36;
  border-left-color: #282d36;
  border-bottom-color: #282d36;
}

/* line 3956, app/assets/stylesheets/application.css.sass */
html.dark .form-control {
  background-color: #282d36;
  border-color: #282d36;
}

/* line 3959, app/assets/stylesheets/application.css.sass */
html.dark .btn-default {
  background-color: #282d36;
  border-color: #282d36;
  color: #FFF;
}

/* line 3964, app/assets/stylesheets/application.css.sass */
html.dark .btn.disabled, html.dark .btn[disabled] {
  border-color: #282d36 !important;
}

/* line 3967, app/assets/stylesheets/application.css.sass */
html.dark .pagination > li > a, html.dark .pagination > li > span {
  background-color: #282d36;
  border-color: #242830;
}

/* line 3970, app/assets/stylesheets/application.css.sass */
html.dark .theme-default .nivoSlider {
  background-color: #1d2127;
}

/* line 3972, app/assets/stylesheets/application.css.sass */
html.dark .map-section {
  background-image: url(/../img/map-top-dark.png);
}

/* line 3974, app/assets/stylesheets/application.css.sass */
html.dark .home-concept {
  background-image: url(/../img/home-concept-dark.png);
}

/* line 3976, app/assets/stylesheets/application.css.sass */
html.dark .home-concept .process-image, html.dark .home-concept .project-image {
  background-image: url(/../img/home-concept-item-dark.png);
}

/* line 3978, app/assets/stylesheets/application.css.sass */
html.dark .home-concept .sun, html.dark .home-concept .cloud {
  background-image: url(/../img/home-concept-icons-dark.png);
}

/* line 3980, app/assets/stylesheets/application.css.sass */
html.dark .page-top {
  border-bottom-color: #191c21;
}

/* line 3983, app/assets/stylesheets/application.css.sass */
html.dark .panel-group .panel {
  background-color: #282d36;
}

/* line 3985, app/assets/stylesheets/application.css.sass */
html.dark .panel-group .panel-default {
  border-color: #282d36;
}

/* line 3987, app/assets/stylesheets/application.css.sass */
html.dark .panel-group .panel-heading {
  background-color: #2e353e;
}

/* line 3989, app/assets/stylesheets/application.css.sass */
html.dark .panel-group .form-control {
  background-color: #21262d;
  border-color: #21262d;
}

/* line 3992, app/assets/stylesheets/application.css.sass */
html.dark .toggle > label {
  background-color: #2e353e;
}

/* line 3994, app/assets/stylesheets/application.css.sass */
html.dark .featured-box {
  background: #2e353e;
  border-left-color: #2e353e;
  border-right-color: #2e353e;
  border-bottom-color: #2e353e;
}

/* line 3999, app/assets/stylesheets/application.css.sass */
html.dark .featured-box.secundary h4 {
  color: #FFF;
}

/* line 4001, app/assets/stylesheets/application.css.sass */
html.dark .feature-box.secundary h4 {
  color: #FFF;
}

/* line 4003, app/assets/stylesheets/application.css.sass */
html.dark .progress {
  background: #2e353e;
}

/* line 4005, app/assets/stylesheets/application.css.sass */
html.dark .arrow {
  background-image: url(/../img/arrows-dark.png);
}

/* line 4007, app/assets/stylesheets/application.css.sass */
html.dark .thumbnail, html.dark .img-thumbnail {
  background-color: #282d36;
  border-color: #282d36;
}

/* line 4010, app/assets/stylesheets/application.css.sass */
html.dark .thumb-info-social-icons {
  border-top-color: #373f4a;
}

/* line 4012, app/assets/stylesheets/application.css.sass */
html.dark ul.nav-list.primary > li a {
  border-bottom-color: #282d36;
}

/* line 4014, app/assets/stylesheets/application.css.sass */
html.dark ul.nav-list.primary > li a:hover {
  background-color: #282d36;
}

/* line 4018, app/assets/stylesheets/application.css.sass */
html.dark .tabs .nav-tabs li a {
  border-top-color: #282d36;
  border-left-color: #282d36;
  border-right-color: #282d36;
  background: #282d36;
}

/* line 4023, app/assets/stylesheets/application.css.sass */
html.dark .tabs .nav-tabs li a:hover {
  border-top-color: #282d36;
  border-left-color: #282d36;
  border-right-color: #282d36;
  background: #282d36;
}

/* line 4028, app/assets/stylesheets/application.css.sass */
html.dark .tabs .nav-tabs.nav-justified li a {
  border-bottom-color: #282d36;
}

/* line 4030, app/assets/stylesheets/application.css.sass */
html.dark .tabs .nav-tabs.nav-justified li a:hover {
  border-bottom-color: #282d36;
}

/* line 4032, app/assets/stylesheets/application.css.sass */
html.dark .tabs.tabs-left .nav-tabs > li a, html.dark .tabs.tabs-right .nav-tabs > li a {
  background: #282d36;
  border-left-color: #282d36;
  border-right-color: #282d36;
}

/* line 4036, app/assets/stylesheets/application.css.sass */
html.dark .tabs.tabs-left .nav-tabs > li:last-child a, html.dark .tabs.tabs-right .nav-tabs > li:last-child a {
  border-bottom-color: #282d36;
}

/* line 4038, app/assets/stylesheets/application.css.sass */
html.dark .tabs .nav-tabs {
  border-color: #282d36;
}

/* line 4040, app/assets/stylesheets/application.css.sass */
html.dark .tabs .nav-tabs li.active a {
  background: #2e353e;
  border-left-color: #2e353e;
  border-right-color: #2e353e;
}

/* line 4044, app/assets/stylesheets/application.css.sass */
html.dark .tabs .nav-tabs li.active a:hover, html.dark .tabs .nav-tabs li.active a:focus {
  background: #2e353e;
  border-left-color: #2e353e;
  border-right-color: #2e353e;
}

/* line 4048, app/assets/stylesheets/application.css.sass */
html.dark .tabs .nav-tabs.nav-justified li.active a {
  border-bottom-color: #2e353e;
}

/* line 4050, app/assets/stylesheets/application.css.sass */
html.dark .tabs.tabs-vertical {
  border-top-color: #2e353e;
}

/* line 4052, app/assets/stylesheets/application.css.sass */
html.dark .tabs.tabs-bottom .nav-tabs li a {
  border-bottom-color: #282d36;
}

/* line 4054, app/assets/stylesheets/application.css.sass */
html.dark .tabs.tabs-bottom .nav-tabs li a:hover {
  border-bottom-color: #282d36;
}

/* line 4056, app/assets/stylesheets/application.css.sass */
html.dark .tabs .tab-content {
  background: #2e353e;
  border-color: #2e353e;
}

/* line 4059, app/assets/stylesheets/application.css.sass */
html.dark .testimonial-author strong {
  color: #FFF;
}

/* line 4061, app/assets/stylesheets/application.css.sass */
html.dark .page-header {
  border-bottom-color: #282d36;
}

/* line 4064, app/assets/stylesheets/application.css.sass */
html.dark .table > thead > tr > th, html.dark .table > tbody > tr > th, html.dark .table > tfoot > tr > th, html.dark .table > thead > tr > td, html.dark .table > tbody > tr > td, html.dark .table > tfoot > tr > td {
  border-color: #282d36;
}

/* line 4066, app/assets/stylesheets/application.css.sass */
html.dark .table-bordered {
  border-color: #282d36;
}

/* line 4069, app/assets/stylesheets/application.css.sass */
html.dark .table-striped > tbody > tr:nth-child(2n+1) > td, html.dark .table-striped > tbody > tr:nth-child(2n+1) > th {
  background-color: #2e353e;
}

/* line 4071, app/assets/stylesheets/application.css.sass */
html.dark pre {
  background-color: #282d36;
  border-color: #282d36;
  color: #777777;
}

/* line 4075, app/assets/stylesheets/application.css.sass */
html.dark .show-grid [class*="col-md-"] .show-grid-block {
  background-color: #282d36;
  border-color: #282d36;
}

/* line 4078, app/assets/stylesheets/application.css.sass */
html.dark hr {
  background-image: -webkit-linear-gradient(left, transparent, rgba(255, 255, 255, 0.2), transparent);
  background-image: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
}

/* line 4081, app/assets/stylesheets/application.css.sass */
html.dark hr.light {
  background-image: -webkit-linear-gradient(left, transparent, rgba(0, 0, 0, 0.2), transparent);
  background-image: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.2), transparent);
}

/* line 4084, app/assets/stylesheets/application.css.sass */
html.dark ul.history li .thumb {
  background-image: url(/../img/history-thumb-dark.png);
}

/* line 4086, app/assets/stylesheets/application.css.sass */
html.dark .blog-posts article {
  border-color: #282d36;
}

/* line 4088, app/assets/stylesheets/application.css.sass */
html.dark .featured_section .recent-posts .date .day {
  background-color: #282d36;
}

/* line 4091, app/assets/stylesheets/application.css.sass */
html.dark article.post .post-date .day {
  background-color: #282d36;
}

/* line 4093, app/assets/stylesheets/application.css.sass */
html.dark article .post-video, html.dark article .post-audio {
  background-color: #282d36;
  border-color: #282d36;
}

/* line 4096, app/assets/stylesheets/application.css.sass */
html.dark article .post-video iframe, html.dark article .post-audio iframe {
  background-color: #282d36;
  border-color: #282d36;
}

/* line 4099, app/assets/stylesheets/application.css.sass */
html.dark ul.simple-post-list li {
  border-bottom-color: #21262d;
}

/* line 4101, app/assets/stylesheets/application.css.sass */
html.dark .post-block {
  border-top-color: #191c21;
}

/* line 4104, app/assets/stylesheets/application.css.sass */
html.dark ul.comments .comment-block {
  background-color: #282d36;
}

/* line 4106, app/assets/stylesheets/application.css.sass */
html.dark ul.comments .comment-arrow {
  border-right-color: #282d36;
}

/* line 4109, app/assets/stylesheets/application.css.sass */
html.dark .pricing-table li {
  border-top-color: #21262d;
}

/* line 4111, app/assets/stylesheets/application.css.sass */
html.dark .pricing-table h3 {
  background-color: #21262d;
  text-shadow: none;
}

/* line 4114, app/assets/stylesheets/application.css.sass */
html.dark .pricing-table h3 span {
  background: #282d36;
  border-color: #242830;
  box-shadow: 0 5px 20px #242830 inset, 0 3px 0 #282d36 inset;
  color: #777777;
}

/* line 4119, app/assets/stylesheets/application.css.sass */
html.dark .pricing-table .most-popular {
  border-color: #282d36;
}

/* line 4121, app/assets/stylesheets/application.css.sass */
html.dark .pricing-table .most-popular h3 {
  background-color: #282d36;
  color: #FFF;
  text-shadow: none;
}

/* line 4125, app/assets/stylesheets/application.css.sass */
html.dark .pricing-table .plan-ribbon {
  background-color: #282d36;
}

/* line 4127, app/assets/stylesheets/application.css.sass */
html.dark .pricing-table .plan {
  background: #282d36;
  border: 1px solid #282d36;
  color: #777777;
  text-shadow: none;
}

/* line 4132, app/assets/stylesheets/application.css.sass */
html.dark .product-thumb-info {
  background-color: #282d36;
  border-color: transparent;
}

/* line 4137, app/assets/stylesheets/application.css.sass */
html.dark .shop .quantity .qty {
  background-color: #282d36;
  border-color: transparent;
}

/* line 4140, app/assets/stylesheets/application.css.sass */
html.dark .shop .quantity .minus, html.dark .shop .quantity .plus {
  background-color: #21262d;
  border-color: transparent;
}

/* line 4143, app/assets/stylesheets/application.css.sass */
html.dark .shop table.cart td {
  border-color: #282d36;
}

/* line 4146, app/assets/stylesheets/application.css.sass */
html.dark .shop .cart-totals th, html.dark .shop .cart-totals td {
  border-color: #282d36;
}

/* line 4148, app/assets/stylesheets/application.css.sass */
html.dark .modal-content {
  background-color: #1d2127;
}

/* line 4150, app/assets/stylesheets/application.css.sass */
html.dark .modal-header {
  border-bottom-color: #282d36;
}

/* line 4152, app/assets/stylesheets/application.css.sass */
html.dark .modal-header h1, html.dark .modal-header h2, html.dark .modal-header h3, html.dark .modal-header h4, html.dark .modal-header h5, html.dark .modal-header h6 {
  color: #777777;
}

/* line 4154, app/assets/stylesheets/application.css.sass */
html.dark .modal-header .close {
  text-shadow: none;
  color: #FFF;
}

/* line 4157, app/assets/stylesheets/application.css.sass */
html.dark .modal-footer {
  border-top-color: #282d36;
}

/* line 4159, app/assets/stylesheets/application.css.sass */
html.dark #footer .newsletter form .btn-default {
  background-color: #21262d;
  border-color: #21262d;
  color: #777777;
}

/* line 4164, app/assets/stylesheets/application.css.sass */
html.boxed body {
  background-color: transparent;
  background-position: 0 0;
  background-repeat: repeat;
}

/* line 4168, app/assets/stylesheets/application.css.sass */
html.boxed .body {
  background-color: #FFF;
  border-bottom: 5px solid #0e0e0e;
  border-radius: 5px;
  border-top: 5px solid #CCC;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
  margin: 25px auto;
  max-width: 1200px;
  height: auto;
}

/* line 4177, app/assets/stylesheets/application.css.sass */
html.boxed #header {
  padding: 15px 0;
}

/* line 4179, app/assets/stylesheets/application.css.sass */
html.boxed body.sticky-menu-active #header {
  left: 0;
  top: -65px;
}

/* Responsive */
@media (max-width: 991px) {
  /* line 4185, app/assets/stylesheets/application.css.sass */
  html.dark #header nav.mega-menu ul.nav-main li.mega-menu-item ul.dropdown-menu {
    background: transparent !important;
  }
}

/* Boxed Layout */
/* Responsive */
@media (max-width: 991px) {
  /* line 4192, app/assets/stylesheets/application.css.sass */
  html.boxed .body {
    margin: 0 auto;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
  }
}

@media (max-width: 767px) {
  /* Boxed */
  /* line 4200, app/assets/stylesheets/application.css.sass */
  html.boxed {
    background: none !important;
  }
}

/* ADsourcing Child Theme */
/* line 4205, app/assets/stylesheets/application.css.sass */
body {
  font-family: "Helvetica", Arial, sans-serif;
  color: #373737;
}

/* line 4209, app/assets/stylesheets/application.css.sass */
#header {
  background-color: #17243e !important;
  border-top: 5px solid #17243e;
}

/* line 4213, app/assets/stylesheets/application.css.sass */
.google-map {
  margin-top: 0px;
}

/* line 4216, app/assets/stylesheets/application.css.sass */
.page-top {
  display: none;
}

/* line 4219, app/assets/stylesheets/application.css.sass */
.MyTopRow, .sidebar {
  margin-top: 50px;
}

/* line 4222, app/assets/stylesheets/application.css.sass */
p {
  color: #555555;
}

/* line 4225, app/assets/stylesheets/application.css.sass */
.home-intro {
  background-color: #840537;
}

/* line 4227, app/assets/stylesheets/application.css.sass */
.home-intro p span {
  color: #111111;
  font-weight: 500;
}

/* line 4231, app/assets/stylesheets/application.css.sass */
#BandaVerde .btn-primary {
  background-color: #17243e;
  border-color: #111111 !important;
}

/* line 4234, app/assets/stylesheets/application.css.sass */
#BandaVerde .btn-primary a:hover {
  background-color: #1d3158 !important;
  border-color: #222222 !important;
  color: #840537 !important;
}

/* line 4239, app/assets/stylesheets/application.css.sass */
.blog-posts {
  margin-top: 3em;
}

/* line 4242, app/assets/stylesheets/application.css.sass */
#footer {
  background-color: #17243e;
}

/* line 4245, app/assets/stylesheets/application.css.sass */
.footer-ribbon {
  display: none;
}

/* line 4248, app/assets/stylesheets/application.css.sass */
#footer i, #tweet_spyropress_twitter-2 {
  color: #CCC;
}

/* line 4252, app/assets/stylesheets/application.css.sass */
#footer .checkbox, #footer .contact p {
  color: #CCC;
}

/* line 4254, app/assets/stylesheets/application.css.sass */
#footer .footer-copyright {
  background: none repeat scroll 0% 0% #060606;
  border-top: 1px solid #060606;
  margin-top: 40px;
  padding: 20px 0px 0px;
}

/* line 4259, app/assets/stylesheets/application.css.sass */
#footer .footer-copyright p {
  margin: 10px 0 0;
  color: #cccccc;
}

/* line 4262, app/assets/stylesheets/application.css.sass */
#footer .footer-copyright nav ul {
  margin: 10px 0 0;
}

/* line 4265, app/assets/stylesheets/application.css.sass */
.form-control {
  margin-bottom: 1em;
  font-size: 14px;
}

/*Estilos para elementos que solo se despliegan en mÃ³viles */
/* line 4271, app/assets/stylesheets/application.css.sass */
.btn-responsive-nav {
  background: #009FE3;
}

/*Estilos para el sitio intranet */
/* line 4276, app/assets/stylesheets/application.css.sass */
#contenido-intranet {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 768px) {
  /* line 4283, app/assets/stylesheets/application.css.sass */
  #contenido-intranet {
    width: 750px;
  }
}

@media (min-width: 992px) {
  /* line 4287, app/assets/stylesheets/application.css.sass */
  #contenido-intranet {
    width: 970px;
  }
}

@media (min-width: 1200px) {
  /* line 4291, app/assets/stylesheets/application.css.sass */
  #contenido-intranet {
    width: 1170px;
  }
}

/* line 4295, app/assets/stylesheets/application.css.sass */
img.wp-smiley, img.emoji {
  display: inline !important;
  border: none !important;
  box-shadow: none !important;
  height: 1em !important;
  width: 1em !important;
  margin: 0 .07em !important;
  vertical-align: -0.1em !important;
  background: none !important;
  padding: 0 !important;
}

/* line 4306, app/assets/stylesheets/application.css.sass */
.tp-caption a {
  color: #ff7302;
  text-shadow: none;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  color: #ff7302;
  text-shadow: none;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
}

/* line 4313, app/assets/stylesheets/application.css.sass */
.tp-caption a:hover {
  color: #ffa902;
  color: #ffa902;
}

/* line 4323, app/assets/stylesheets/application.css.sass */
.normal-label {
  color: #aeabab;
}

/* line 4326, app/assets/stylesheets/application.css.sass */
.subtitle-label {
  color: #840537;
  font-size: 4;
}

/* line 4330, app/assets/stylesheets/application.css.sass */
.title-label {
  color: #840537;
  font-size: 6;
}

/* line 4334, app/assets/stylesheets/application.css.sass */
.panel-primary {
  border-color: rgba(66, 139, 202, 0);
  box-shadow: 0 0 30px #d2cece;
}

/* line 4338, app/assets/stylesheets/application.css.sass */
.table-striped > tbody > tr:nth-child(odd) {
  background-color: rgba(249, 249, 249, 0.17);
}

/* line 4341, app/assets/stylesheets/application.css.sass */
body {
  font-family: "Helvetica", Arial, sans-serif;
  color: #848484;
}

/* line 4345, app/assets/stylesheets/application.css.sass */
.btn-info {
  color: #fff;
  background-color: #FF0A6C;
  border-color: #46b8da;
}

/* line 4350, app/assets/stylesheets/application.css.sass */
.navbar-default .navbar-nav > li > a {
  color: #FFF;
}

/* line 4352, app/assets/stylesheets/application.css.sass */
.navbar-default .navbar-nav > li > a:hover {
  color: #FFF;
}

/* line 4355, app/assets/stylesheets/application.css.sass */
#footer {
  /* background: #0e0e0e; */
  border-top: 0px solid #0e0e0e;
  font-size: 0.9em;
  margin-top: 50px;
  padding: 0px;
  position: relative;
  clear: both;
}

/* line 4364, app/assets/stylesheets/application.css.sass */
.table-not-border tr {
  border-style: hidden;
}

/* line 4367, app/assets/stylesheets/application.css.sass */
.link-white {
  color: #FFF;
}

/* line 4370, app/assets/stylesheets/application.css.sass */
html, body {
  height: 100%;
}

/* line 4373, app/assets/stylesheets/application.css.sass */
#wrapper {
  min-height: 100%;
  position: relative;
}

/* line 4377, app/assets/stylesheets/application.css.sass */
#header {
  /* ... */
}

/* line 4380, app/assets/stylesheets/application.css.sass */
#content {
  /* ... */
  padding-bottom: 380px;
  /* El tamaÃ±o del footer para evitar el sobreposicionamiento */
}

/* line 4385, app/assets/stylesheets/application.css.sass */
#footer {
  width: 100%;
  height: 280px;
  position: absolute;
  bottom: 0;
  left: 0;
}

/* line 4392, app/assets/stylesheets/application.css.sass */
.navbar-default-ads {
  background-color: #323232 !important;
  border-top: 5px solid #323232;
}

/* line 4396, app/assets/stylesheets/application.css.sass */
.navbar-default-ads .navbar-toggle .icon-bar {
  background-color: #fdfdfd;
}

/* line 4400, app/assets/stylesheets/application.css.sass */
.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
  background-color: #840537;
}

/* line 4403, app/assets/stylesheets/application.css.sass */
.navbar-default-menu_lateral-ads {
  background-color: #840537 !important;
  border-top: 5px solid #840537 !important;
}

/* line 4407, app/assets/stylesheets/application.css.sass */
.navbar-default-menu_lateral-ads .navbar-brand {
  color: #f9f9f9;
}

/* line 4410, app/assets/stylesheets/application.css.sass */
.navbar-default-menu_lateral-ads .navbar-brand .navbar-toggle .icon-bar {
  border-color: #dddddd;
}

/* line 4413, app/assets/stylesheets/application.css.sass */
.navbar-default-menu_lateral-ads .navbar-toggle .icon-bar {
  background-color: #fdfdfd;
}

/* line 4416, app/assets/stylesheets/application.css.sass */
.navbar-brand-ads {
  padding-top: 7px;
  padding-left: 100px;
  padding-top: 3px !important;
}

/* line 4421, app/assets/stylesheets/application.css.sass */
.ads-logo {
  display: inline-block;
  top: 0px;
}

/* line 4426, app/assets/stylesheets/application.css.sass */
.nav-ads {
  font-size: 16px;
}

/* line 4428, app/assets/stylesheets/application.css.sass */
.nav-ads li {
  border-left-color: #0e4d8c !important;
  border-left-style: solid !important;
  border-left-width: 1px !important;
}

/* line 4432, app/assets/stylesheets/application.css.sass */
.nav-ads li a {
  color: white;
  cursor: auto !important;
  padding-bottom: 13px !important;
  padding-left: 14px !important;
  padding-right: 14px !important;
  padding-top: 14px !important;
  position: relative !important;
}

/* line 4440, app/assets/stylesheets/application.css.sass */
.nav-ads li a:hover, .nav-ads li a:focus {
  color: white !important;
  cursor: auto !important;
  padding-bottom: 13px !important;
  padding-left: 14px !important;
  padding-right: 14px !important;
  padding-top: 14px !important;
  position: relative !important;
  background-color: #840537 !important;
}

/* line 4450, app/assets/stylesheets/application.css.sass */
.customer-select {
  background-color: #1f3052 !important;
  color: white !important;
  border: none !important;
}

/* line 4455, app/assets/stylesheets/application.css.sass */
.footer-application {
  border-top: 0px solid #0e0e0e !important;
  font-size: 0.9em !important;
  margin-top: 50px !important;
  padding: 0px !important;
  position: relative !important;
  clear: both !important;
  width: 100% !important;
  height: 125px !important;
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  background-color: rgba(23, 36, 62, 0) !important;
}

/* line 4469, app/assets/stylesheets/application.css.sass */
.navbar {
  min-height: 82px;
}

/* line 4472, app/assets/stylesheets/application.css.sass */
.navbar-default-ads .navbar-nav > .active > a {
  color: #ffffff;
  background-color: #840537;
  border-radius: 4px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}

/* line 4480, app/assets/stylesheets/application.css.sass */
.navbar-default-ads .navbar-nav > .active > a:hover, .navbar-default-ads .navbar-nav > .active > a:focus {
  color: #ffffff;
  background-color: #840537;
}

/* line 4484, app/assets/stylesheets/application.css.sass */
.dropdown-menu-ads {
  background-color: #840537;
}

/* line 4487, app/assets/stylesheets/application.css.sass */
.dropdown-menu-ads > li > a {
  color: #ffffff;
}

/* line 4490, app/assets/stylesheets/application.css.sass */
.dropdown-menu-ads > li > a:hover {
  color: #ffffff;
  background-color: #840537;
}

@media (max-width: 767px) {
  /* line 4495, app/assets/stylesheets/application.css.sass */
  .navbar-default-ads .navbar-nav .open .dropdown-menu-ads > li > a {
    color: #ffffff;
  }
}

/* line 4498, app/assets/stylesheets/application.css.sass */
.navbar-default .navbar-nav > li > a:hover {
  border-radius: 4px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  color: #ffffff;
  background-color: #840537;
}

/* line 4507, app/assets/stylesheets/application.css.sass */
.navbar-default .navbar-nav > li > a:focus {
  color: #ffffff;
}

/* line 4510, app/assets/stylesheets/application.css.sass */
.navbar-default .navbar-nav > .open > a {
  background-color: #e7e7e7;
  color: #555555;
}

/* line 4513, app/assets/stylesheets/application.css.sass */
.navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus {
  border-radius: 4px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  color: #ffffff;
  background-color: #840537;
}

/* line 4522, app/assets/stylesheets/application.css.sass */
.navbar-default .navbar-nav > .open > a {
  color: #ffffff;
  background-color: #840537;
}

/* line 4526, app/assets/stylesheets/application.css.sass */
.modal-header-ads-info {
  padding: 9px 15px;
  border-bottom: 1px solid #eee;
  background-color: #840537;
  -webkit-border-top-left-radius: 5px;
  -webkit-border-top-right-radius: 5px;
  -moz-border-radius-topleft: 5px;
  -moz-border-radius-topright: 5px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

/* make sidebar nav vertical */
@media (min-width: 768px) {
  /* line 4544, app/assets/stylesheets/application.css.sass */
  .sidebar-nav .navbar .navbar-collapse {
    padding: 0;
    max-height: none;
  }
  /* line 4547, app/assets/stylesheets/application.css.sass */
  .sidebar-nav .navbar ul {
    float: none;
    display: block;
  }
  /* line 4550, app/assets/stylesheets/application.css.sass */
  .sidebar-nav .navbar li {
    float: none;
    display: block;
  }
  /* line 4553, app/assets/stylesheets/application.css.sass */
  .sidebar-nav .navbar li a {
    padding-top: 12px;
    padding-bottom: 12px;
  }
}

/* line 4557, app/assets/stylesheets/application.css.sass */
.ads-divider-menu_lateral {
  border-bottom-style: double;
  border-bottom-color: #17243e;
}

/* line 4561, app/assets/stylesheets/application.css.sass */
.navbar-default-menu_lateral-ads .navbar-nav > li > a:hover {
  background-color: #FF0A6C !important;
}

/* line 4564, app/assets/stylesheets/application.css.sass */
.ads-main-title {
  color: #840537;
  margin-bottom: 5px;
}

/* line 4568, app/assets/stylesheets/application.css.sass */
.ads-divider-main-title {
  color: #840537;
  background-color: #840537;
  height: 3px;
  margin-top: 0px;
}

/* line 4574, app/assets/stylesheets/application.css.sass */
.ads-header-tables {
  color: #840537;
}

/* line 4577, app/assets/stylesheets/application.css.sass */
#table_result > tbody > tr > td > a {
  color: #840537  !important;
}

/* line 4580, app/assets/stylesheets/application.css.sass */
.ads-footer-background-color {
  background-color: #840537  !important;
}

/* line 4583, app/assets/stylesheets/application.css.sass */
.ads-text-black {
  color: black;
}

/* line 4586, app/assets/stylesheets/application.css.sass */
.adn-btn {
  background-color: #840537;
  border-color: #840537;
  color: white;
}

/* line 4590, app/assets/stylesheets/application.css.sass */
.adn-btn:hover, .adn-btn:focus {
  background-color: #FF0A6C;
  color: white;
}

/* line 4594, app/assets/stylesheets/application.css.sass */
.adn-color {
  color: #840537 !important;
}

/* line 4596, app/assets/stylesheets/application.css.sass */
.adn-color a {
  color: #840537 !important;
}

/* line 4600, app/assets/stylesheets/application.css.sass */
.ads-logo {
  width: 80%;
  height: auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* line 4605, app/assets/stylesheets/application.css.sass */
.ads-logo:hover {
  transform: scale(1.1);
}

/* line 4609, app/assets/stylesheets/application.css.sass */
.navbar-nav li a {
  transition: transform 0.3s ease;
}

/* line 4612, app/assets/stylesheets/application.css.sass */
.navbar-nav li a:hover {
  transform: scale(1.1);
}

/* line 4616, app/assets/stylesheets/application.css.sass */
.navbar {
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.2);
}

/* line 4619, app/assets/stylesheets/application.css.sass */
.navbar-nav li a.active.adn-subaction-selected {
  background-color: #5a1122;
  /* Rojo vino */
  color: #fff;
  /* Color de texto en estado activo */
  border-radius: 4px;
  /* Bordes redondeados */
  padding: 10px 15px;
  /* Espaciado interno para mayor área clickeable */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  /* Sombra sutil */
  font-weight: bold;
  /* Negrita para mayor énfasis */
}


/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.0
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2016 Daniel Eden
 */

.animated{-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-fill-mode:both;animation-fill-mode:both}.animated.infinite{-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}.animated.hinge{-webkit-animation-duration:2s;animation-duration:2s}.animated.bounceIn,.animated.bounceOut,.animated.flipOutX,.animated.flipOutY{-webkit-animation-duration:.75s;animation-duration:.75s}@-webkit-keyframes bounce{0%,20%,53%,80%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1);-webkit-transform:translateZ(0);transform:translateZ(0)}40%,43%{-webkit-transform:translate3d(0,-30px,0);transform:translate3d(0,-30px,0)}40%,43%,70%{-webkit-animation-timing-function:cubic-bezier(.755,.05,.855,.06);animation-timing-function:cubic-bezier(.755,.05,.855,.06)}70%{-webkit-transform:translate3d(0,-15px,0);transform:translate3d(0,-15px,0)}90%{-webkit-transform:translate3d(0,-4px,0);transform:translate3d(0,-4px,0)}}@keyframes bounce{0%,20%,53%,80%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1);-webkit-transform:translateZ(0);transform:translateZ(0)}40%,43%{-webkit-transform:translate3d(0,-30px,0);transform:translate3d(0,-30px,0)}40%,43%,70%{-webkit-animation-timing-function:cubic-bezier(.755,.05,.855,.06);animation-timing-function:cubic-bezier(.755,.05,.855,.06)}70%{-webkit-transform:translate3d(0,-15px,0);transform:translate3d(0,-15px,0)}90%{-webkit-transform:translate3d(0,-4px,0);transform:translate3d(0,-4px,0)}}.bounce{-webkit-animation-name:bounce;animation-name:bounce;-webkit-transform-origin:center bottom;transform-origin:center bottom}@-webkit-keyframes flash{0%,50%,to{opacity:1}25%,75%{opacity:0}}@keyframes flash{0%,50%,to{opacity:1}25%,75%{opacity:0}}.flash{-webkit-animation-name:flash;animation-name:flash}@-webkit-keyframes pulse{0%{-webkit-transform:scaleX(1);transform:scaleX(1)}50%{-webkit-transform:scale3d(1.05,1.05,1.05);transform:scale3d(1.05,1.05,1.05)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}@keyframes pulse{0%{-webkit-transform:scaleX(1);transform:scaleX(1)}50%{-webkit-transform:scale3d(1.05,1.05,1.05);transform:scale3d(1.05,1.05,1.05)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}.pulse{-webkit-animation-name:pulse;animation-name:pulse}@-webkit-keyframes rubberBand{0%{-webkit-transform:scaleX(1);transform:scaleX(1)}30%{-webkit-transform:scale3d(1.25,.75,1);transform:scale3d(1.25,.75,1)}40%{-webkit-transform:scale3d(.75,1.25,1);transform:scale3d(.75,1.25,1)}50%{-webkit-transform:scale3d(1.15,.85,1);transform:scale3d(1.15,.85,1)}65%{-webkit-transform:scale3d(.95,1.05,1);transform:scale3d(.95,1.05,1)}75%{-webkit-transform:scale3d(1.05,.95,1);transform:scale3d(1.05,.95,1)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}@keyframes rubberBand{0%{-webkit-transform:scaleX(1);transform:scaleX(1)}30%{-webkit-transform:scale3d(1.25,.75,1);transform:scale3d(1.25,.75,1)}40%{-webkit-transform:scale3d(.75,1.25,1);transform:scale3d(.75,1.25,1)}50%{-webkit-transform:scale3d(1.15,.85,1);transform:scale3d(1.15,.85,1)}65%{-webkit-transform:scale3d(.95,1.05,1);transform:scale3d(.95,1.05,1)}75%{-webkit-transform:scale3d(1.05,.95,1);transform:scale3d(1.05,.95,1)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}.rubberBand{-webkit-animation-name:rubberBand;animation-name:rubberBand}@-webkit-keyframes shake{0%,to{-webkit-transform:translateZ(0);transform:translateZ(0)}10%,30%,50%,70%,90%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}20%,40%,60%,80%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}}@keyframes shake{0%,to{-webkit-transform:translateZ(0);transform:translateZ(0)}10%,30%,50%,70%,90%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}20%,40%,60%,80%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}}.shake{-webkit-animation-name:shake;animation-name:shake}@-webkit-keyframes headShake{0%{-webkit-transform:translateX(0);transform:translateX(0)}6.5%{-webkit-transform:translateX(-6px) rotateY(-9deg);transform:translateX(-6px) rotateY(-9deg)}18.5%{-webkit-transform:translateX(5px) rotateY(7deg);transform:translateX(5px) rotateY(7deg)}31.5%{-webkit-transform:translateX(-3px) rotateY(-5deg);transform:translateX(-3px) rotateY(-5deg)}43.5%{-webkit-transform:translateX(2px) rotateY(3deg);transform:translateX(2px) rotateY(3deg)}50%{-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes headShake{0%{-webkit-transform:translateX(0);transform:translateX(0)}6.5%{-webkit-transform:translateX(-6px) rotateY(-9deg);transform:translateX(-6px) rotateY(-9deg)}18.5%{-webkit-transform:translateX(5px) rotateY(7deg);transform:translateX(5px) rotateY(7deg)}31.5%{-webkit-transform:translateX(-3px) rotateY(-5deg);transform:translateX(-3px) rotateY(-5deg)}43.5%{-webkit-transform:translateX(2px) rotateY(3deg);transform:translateX(2px) rotateY(3deg)}50%{-webkit-transform:translateX(0);transform:translateX(0)}}.headShake{-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;-webkit-animation-name:headShake;animation-name:headShake}@-webkit-keyframes swing{20%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}40%{-webkit-transform:rotate(-10deg);transform:rotate(-10deg)}60%{-webkit-transform:rotate(5deg);transform:rotate(5deg)}80%{-webkit-transform:rotate(-5deg);transform:rotate(-5deg)}to{-webkit-transform:rotate(0deg);transform:rotate(0deg)}}@keyframes swing{20%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}40%{-webkit-transform:rotate(-10deg);transform:rotate(-10deg)}60%{-webkit-transform:rotate(5deg);transform:rotate(5deg)}80%{-webkit-transform:rotate(-5deg);transform:rotate(-5deg)}to{-webkit-transform:rotate(0deg);transform:rotate(0deg)}}.swing{-webkit-transform-origin:top center;transform-origin:top center;-webkit-animation-name:swing;animation-name:swing}@-webkit-keyframes tada{0%{-webkit-transform:scaleX(1);transform:scaleX(1)}10%,20%{-webkit-transform:scale3d(.9,.9,.9) rotate(-3deg);transform:scale3d(.9,.9,.9) rotate(-3deg)}30%,50%,70%,90%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate(3deg);transform:scale3d(1.1,1.1,1.1) rotate(3deg)}40%,60%,80%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate(-3deg);transform:scale3d(1.1,1.1,1.1) rotate(-3deg)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}@keyframes tada{0%{-webkit-transform:scaleX(1);transform:scaleX(1)}10%,20%{-webkit-transform:scale3d(.9,.9,.9) rotate(-3deg);transform:scale3d(.9,.9,.9) rotate(-3deg)}30%,50%,70%,90%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate(3deg);transform:scale3d(1.1,1.1,1.1) rotate(3deg)}40%,60%,80%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate(-3deg);transform:scale3d(1.1,1.1,1.1) rotate(-3deg)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}.tada{-webkit-animation-name:tada;animation-name:tada}@-webkit-keyframes wobble{0%{-webkit-transform:none;transform:none}15%{-webkit-transform:translate3d(-25%,0,0) rotate(-5deg);transform:translate3d(-25%,0,0) rotate(-5deg)}30%{-webkit-transform:translate3d(20%,0,0) rotate(3deg);transform:translate3d(20%,0,0) rotate(3deg)}45%{-webkit-transform:translate3d(-15%,0,0) rotate(-3deg);transform:translate3d(-15%,0,0) rotate(-3deg)}60%{-webkit-transform:translate3d(10%,0,0) rotate(2deg);transform:translate3d(10%,0,0) rotate(2deg)}75%{-webkit-transform:translate3d(-5%,0,0) rotate(-1deg);transform:translate3d(-5%,0,0) rotate(-1deg)}to{-webkit-transform:none;transform:none}}@keyframes wobble{0%{-webkit-transform:none;transform:none}15%{-webkit-transform:translate3d(-25%,0,0) rotate(-5deg);transform:translate3d(-25%,0,0) rotate(-5deg)}30%{-webkit-transform:translate3d(20%,0,0) rotate(3deg);transform:translate3d(20%,0,0) rotate(3deg)}45%{-webkit-transform:translate3d(-15%,0,0) rotate(-3deg);transform:translate3d(-15%,0,0) rotate(-3deg)}60%{-webkit-transform:translate3d(10%,0,0) rotate(2deg);transform:translate3d(10%,0,0) rotate(2deg)}75%{-webkit-transform:translate3d(-5%,0,0) rotate(-1deg);transform:translate3d(-5%,0,0) rotate(-1deg)}to{-webkit-transform:none;transform:none}}.wobble{-webkit-animation-name:wobble;animation-name:wobble}@-webkit-keyframes jello{0%,11.1%,to{-webkit-transform:none;transform:none}22.2%{-webkit-transform:skewX(-12.5deg) skewY(-12.5deg);transform:skewX(-12.5deg) skewY(-12.5deg)}33.3%{-webkit-transform:skewX(6.25deg) skewY(6.25deg);transform:skewX(6.25deg) skewY(6.25deg)}44.4%{-webkit-transform:skewX(-3.125deg) skewY(-3.125deg);transform:skewX(-3.125deg) skewY(-3.125deg)}55.5%{-webkit-transform:skewX(1.5625deg) skewY(1.5625deg);transform:skewX(1.5625deg) skewY(1.5625deg)}66.6%{-webkit-transform:skewX(-.78125deg) skewY(-.78125deg);transform:skewX(-.78125deg) skewY(-.78125deg)}77.7%{-webkit-transform:skewX(.390625deg) skewY(.390625deg);transform:skewX(.390625deg) skewY(.390625deg)}88.8%{-webkit-transform:skewX(-.1953125deg) skewY(-.1953125deg);transform:skewX(-.1953125deg) skewY(-.1953125deg)}}@keyframes jello{0%,11.1%,to{-webkit-transform:none;transform:none}22.2%{-webkit-transform:skewX(-12.5deg) skewY(-12.5deg);transform:skewX(-12.5deg) skewY(-12.5deg)}33.3%{-webkit-transform:skewX(6.25deg) skewY(6.25deg);transform:skewX(6.25deg) skewY(6.25deg)}44.4%{-webkit-transform:skewX(-3.125deg) skewY(-3.125deg);transform:skewX(-3.125deg) skewY(-3.125deg)}55.5%{-webkit-transform:skewX(1.5625deg) skewY(1.5625deg);transform:skewX(1.5625deg) skewY(1.5625deg)}66.6%{-webkit-transform:skewX(-.78125deg) skewY(-.78125deg);transform:skewX(-.78125deg) skewY(-.78125deg)}77.7%{-webkit-transform:skewX(.390625deg) skewY(.390625deg);transform:skewX(.390625deg) skewY(.390625deg)}88.8%{-webkit-transform:skewX(-.1953125deg) skewY(-.1953125deg);transform:skewX(-.1953125deg) skewY(-.1953125deg)}}.jello{-webkit-animation-name:jello;animation-name:jello;-webkit-transform-origin:center;transform-origin:center}@-webkit-keyframes bounceIn{0%,20%,40%,60%,80%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}20%{-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}40%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}60%{opacity:1;-webkit-transform:scale3d(1.03,1.03,1.03);transform:scale3d(1.03,1.03,1.03)}80%{-webkit-transform:scale3d(.97,.97,.97);transform:scale3d(.97,.97,.97)}to{opacity:1;-webkit-transform:scaleX(1);transform:scaleX(1)}}@keyframes bounceIn{0%,20%,40%,60%,80%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}20%{-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}40%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}60%{opacity:1;-webkit-transform:scale3d(1.03,1.03,1.03);transform:scale3d(1.03,1.03,1.03)}80%{-webkit-transform:scale3d(.97,.97,.97);transform:scale3d(.97,.97,.97)}to{opacity:1;-webkit-transform:scaleX(1);transform:scaleX(1)}}.bounceIn{-webkit-animation-name:bounceIn;animation-name:bounceIn}@-webkit-keyframes bounceInDown{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(0,-3000px,0);transform:translate3d(0,-3000px,0)}60%{opacity:1;-webkit-transform:translate3d(0,25px,0);transform:translate3d(0,25px,0)}75%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}90%{-webkit-transform:translate3d(0,5px,0);transform:translate3d(0,5px,0)}to{-webkit-transform:none;transform:none}}@keyframes bounceInDown{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(0,-3000px,0);transform:translate3d(0,-3000px,0)}60%{opacity:1;-webkit-transform:translate3d(0,25px,0);transform:translate3d(0,25px,0)}75%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}90%{-webkit-transform:translate3d(0,5px,0);transform:translate3d(0,5px,0)}to{-webkit-transform:none;transform:none}}.bounceInDown{-webkit-animation-name:bounceInDown;animation-name:bounceInDown}@-webkit-keyframes bounceInLeft{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(-3000px,0,0);transform:translate3d(-3000px,0,0)}60%{opacity:1;-webkit-transform:translate3d(25px,0,0);transform:translate3d(25px,0,0)}75%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}90%{-webkit-transform:translate3d(5px,0,0);transform:translate3d(5px,0,0)}to{-webkit-transform:none;transform:none}}@keyframes bounceInLeft{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(-3000px,0,0);transform:translate3d(-3000px,0,0)}60%{opacity:1;-webkit-transform:translate3d(25px,0,0);transform:translate3d(25px,0,0)}75%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}90%{-webkit-transform:translate3d(5px,0,0);transform:translate3d(5px,0,0)}to{-webkit-transform:none;transform:none}}.bounceInLeft{-webkit-animation-name:bounceInLeft;animation-name:bounceInLeft}@-webkit-keyframes bounceInRight{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(3000px,0,0);transform:translate3d(3000px,0,0)}60%{opacity:1;-webkit-transform:translate3d(-25px,0,0);transform:translate3d(-25px,0,0)}75%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}90%{-webkit-transform:translate3d(-5px,0,0);transform:translate3d(-5px,0,0)}to{-webkit-transform:none;transform:none}}@keyframes bounceInRight{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(3000px,0,0);transform:translate3d(3000px,0,0)}60%{opacity:1;-webkit-transform:translate3d(-25px,0,0);transform:translate3d(-25px,0,0)}75%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}90%{-webkit-transform:translate3d(-5px,0,0);transform:translate3d(-5px,0,0)}to{-webkit-transform:none;transform:none}}.bounceInRight{-webkit-animation-name:bounceInRight;animation-name:bounceInRight}@-webkit-keyframes bounceInUp{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(0,3000px,0);transform:translate3d(0,3000px,0)}60%{opacity:1;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}75%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}90%{-webkit-transform:translate3d(0,-5px,0);transform:translate3d(0,-5px,0)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes bounceInUp{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(0,3000px,0);transform:translate3d(0,3000px,0)}60%{opacity:1;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}75%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}90%{-webkit-transform:translate3d(0,-5px,0);transform:translate3d(0,-5px,0)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.bounceInUp{-webkit-animation-name:bounceInUp;animation-name:bounceInUp}@-webkit-keyframes bounceOut{20%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}50%,55%{opacity:1;-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}to{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}}@keyframes bounceOut{20%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}50%,55%{opacity:1;-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}to{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}}.bounceOut{-webkit-animation-name:bounceOut;animation-name:bounceOut}@-webkit-keyframes bounceOutDown{20%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}40%,45%{opacity:1;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}to{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}}@keyframes bounceOutDown{20%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}40%,45%{opacity:1;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}to{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}}.bounceOutDown{-webkit-animation-name:bounceOutDown;animation-name:bounceOutDown}@-webkit-keyframes bounceOutLeft{20%{opacity:1;-webkit-transform:translate3d(20px,0,0);transform:translate3d(20px,0,0)}to{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}}@keyframes bounceOutLeft{20%{opacity:1;-webkit-transform:translate3d(20px,0,0);transform:translate3d(20px,0,0)}to{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}}.bounceOutLeft{-webkit-animation-name:bounceOutLeft;animation-name:bounceOutLeft}@-webkit-keyframes bounceOutRight{20%{opacity:1;-webkit-transform:translate3d(-20px,0,0);transform:translate3d(-20px,0,0)}to{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}}@keyframes bounceOutRight{20%{opacity:1;-webkit-transform:translate3d(-20px,0,0);transform:translate3d(-20px,0,0)}to{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}}.bounceOutRight{-webkit-animation-name:bounceOutRight;animation-name:bounceOutRight}@-webkit-keyframes bounceOutUp{20%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}40%,45%{opacity:1;-webkit-transform:translate3d(0,20px,0);transform:translate3d(0,20px,0)}to{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}}@keyframes bounceOutUp{20%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}40%,45%{opacity:1;-webkit-transform:translate3d(0,20px,0);transform:translate3d(0,20px,0)}to{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}}.bounceOutUp{-webkit-animation-name:bounceOutUp;animation-name:bounceOutUp}@-webkit-keyframes fadeIn{0%{opacity:0}to{opacity:1}}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}.fadeIn{-webkit-animation-name:fadeIn;animation-name:fadeIn}@-webkit-keyframes fadeInDown{0%{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}to{opacity:1;-webkit-transform:none;transform:none}}@keyframes fadeInDown{0%{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}to{opacity:1;-webkit-transform:none;transform:none}}.fadeInDown{-webkit-animation-name:fadeInDown;animation-name:fadeInDown}@-webkit-keyframes fadeInDownBig{0%{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}to{opacity:1;-webkit-transform:none;transform:none}}@keyframes fadeInDownBig{0%{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}to{opacity:1;-webkit-transform:none;transform:none}}.fadeInDownBig{-webkit-animation-name:fadeInDownBig;animation-name:fadeInDownBig}@-webkit-keyframes fadeInLeft{0%{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}to{opacity:1;-webkit-transform:none;transform:none}}@keyframes fadeInLeft{0%{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}to{opacity:1;-webkit-transform:none;transform:none}}.fadeInLeft{-webkit-animation-name:fadeInLeft;animation-name:fadeInLeft}@-webkit-keyframes fadeInLeftBig{0%{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}to{opacity:1;-webkit-transform:none;transform:none}}@keyframes fadeInLeftBig{0%{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}to{opacity:1;-webkit-transform:none;transform:none}}.fadeInLeftBig{-webkit-animation-name:fadeInLeftBig;animation-name:fadeInLeftBig}@-webkit-keyframes fadeInRight{0%{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}to{opacity:1;-webkit-transform:none;transform:none}}@keyframes fadeInRight{0%{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}to{opacity:1;-webkit-transform:none;transform:none}}.fadeInRight{-webkit-animation-name:fadeInRight;animation-name:fadeInRight}@-webkit-keyframes fadeInRightBig{0%{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}to{opacity:1;-webkit-transform:none;transform:none}}@keyframes fadeInRightBig{0%{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}to{opacity:1;-webkit-transform:none;transform:none}}.fadeInRightBig{-webkit-animation-name:fadeInRightBig;animation-name:fadeInRightBig}@-webkit-keyframes fadeInUp{0%{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}to{opacity:1;-webkit-transform:none;transform:none}}@keyframes fadeInUp{0%{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}to{opacity:1;-webkit-transform:none;transform:none}}.fadeInUp{-webkit-animation-name:fadeInUp;animation-name:fadeInUp}@-webkit-keyframes fadeInUpBig{0%{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}to{opacity:1;-webkit-transform:none;transform:none}}@keyframes fadeInUpBig{0%{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}to{opacity:1;-webkit-transform:none;transform:none}}.fadeInUpBig{-webkit-animation-name:fadeInUpBig;animation-name:fadeInUpBig}@-webkit-keyframes fadeOut{0%{opacity:1}to{opacity:0}}@keyframes fadeOut{0%{opacity:1}to{opacity:0}}.fadeOut{-webkit-animation-name:fadeOut;animation-name:fadeOut}@-webkit-keyframes fadeOutDown{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}@keyframes fadeOutDown{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}.fadeOutDown{-webkit-animation-name:fadeOutDown;animation-name:fadeOutDown}@-webkit-keyframes fadeOutDownBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}}@keyframes fadeOutDownBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}}.fadeOutDownBig{-webkit-animation-name:fadeOutDownBig;animation-name:fadeOutDownBig}@-webkit-keyframes fadeOutLeft{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}@keyframes fadeOutLeft{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}.fadeOutLeft{-webkit-animation-name:fadeOutLeft;animation-name:fadeOutLeft}@-webkit-keyframes fadeOutLeftBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}}@keyframes fadeOutLeftBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}}.fadeOutLeftBig{-webkit-animation-name:fadeOutLeftBig;animation-name:fadeOutLeftBig}@-webkit-keyframes fadeOutRight{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}@keyframes fadeOutRight{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}.fadeOutRight{-webkit-animation-name:fadeOutRight;animation-name:fadeOutRight}@-webkit-keyframes fadeOutRightBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}}@keyframes fadeOutRightBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}}.fadeOutRightBig{-webkit-animation-name:fadeOutRightBig;animation-name:fadeOutRightBig}@-webkit-keyframes fadeOutUp{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}@keyframes fadeOutUp{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}.fadeOutUp{-webkit-animation-name:fadeOutUp;animation-name:fadeOutUp}@-webkit-keyframes fadeOutUpBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}}@keyframes fadeOutUpBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}}.fadeOutUpBig{-webkit-animation-name:fadeOutUpBig;animation-name:fadeOutUpBig}@-webkit-keyframes flip{0%{-webkit-transform:perspective(400px) rotateY(-1turn);transform:perspective(400px) rotateY(-1turn)}0%,40%{-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}40%{-webkit-transform:perspective(400px) translateZ(150px) rotateY(-190deg);transform:perspective(400px) translateZ(150px) rotateY(-190deg)}50%{-webkit-transform:perspective(400px) translateZ(150px) rotateY(-170deg);transform:perspective(400px) translateZ(150px) rotateY(-170deg)}50%,80%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}80%{-webkit-transform:perspective(400px) scale3d(.95,.95,.95);transform:perspective(400px) scale3d(.95,.95,.95)}to{-webkit-transform:perspective(400px);transform:perspective(400px);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}@keyframes flip{0%{-webkit-transform:perspective(400px) rotateY(-1turn);transform:perspective(400px) rotateY(-1turn)}0%,40%{-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}40%{-webkit-transform:perspective(400px) translateZ(150px) rotateY(-190deg);transform:perspective(400px) translateZ(150px) rotateY(-190deg)}50%{-webkit-transform:perspective(400px) translateZ(150px) rotateY(-170deg);transform:perspective(400px) translateZ(150px) rotateY(-170deg)}50%,80%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}80%{-webkit-transform:perspective(400px) scale3d(.95,.95,.95);transform:perspective(400px) scale3d(.95,.95,.95)}to{-webkit-transform:perspective(400px);transform:perspective(400px);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}.animated.flip{-webkit-backface-visibility:visible;backface-visibility:visible;-webkit-animation-name:flip;animation-name:flip}@-webkit-keyframes flipInX{0%{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);opacity:0}0%,40%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}40%{-webkit-transform:perspective(400px) rotateX(-20deg);transform:perspective(400px) rotateX(-20deg)}60%{-webkit-transform:perspective(400px) rotateX(10deg);transform:perspective(400px) rotateX(10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotateX(-5deg);transform:perspective(400px) rotateX(-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}@keyframes flipInX{0%{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);opacity:0}0%,40%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}40%{-webkit-transform:perspective(400px) rotateX(-20deg);transform:perspective(400px) rotateX(-20deg)}60%{-webkit-transform:perspective(400px) rotateX(10deg);transform:perspective(400px) rotateX(10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotateX(-5deg);transform:perspective(400px) rotateX(-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}.flipInX{-webkit-backface-visibility:visible!important;backface-visibility:visible!important;-webkit-animation-name:flipInX;animation-name:flipInX}@-webkit-keyframes flipInY{0%{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);opacity:0}0%,40%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}40%{-webkit-transform:perspective(400px) rotateY(-20deg);transform:perspective(400px) rotateY(-20deg)}60%{-webkit-transform:perspective(400px) rotateY(10deg);transform:perspective(400px) rotateY(10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotateY(-5deg);transform:perspective(400px) rotateY(-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}@keyframes flipInY{0%{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);opacity:0}0%,40%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}40%{-webkit-transform:perspective(400px) rotateY(-20deg);transform:perspective(400px) rotateY(-20deg)}60%{-webkit-transform:perspective(400px) rotateY(10deg);transform:perspective(400px) rotateY(10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotateY(-5deg);transform:perspective(400px) rotateY(-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}.flipInY{-webkit-backface-visibility:visible!important;backface-visibility:visible!important;-webkit-animation-name:flipInY;animation-name:flipInY}@-webkit-keyframes flipOutX{0%{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotateX(-20deg);transform:perspective(400px) rotateX(-20deg);opacity:1}to{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);opacity:0}}@keyframes flipOutX{0%{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotateX(-20deg);transform:perspective(400px) rotateX(-20deg);opacity:1}to{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);opacity:0}}.flipOutX{-webkit-animation-name:flipOutX;animation-name:flipOutX;-webkit-backface-visibility:visible!important;backface-visibility:visible!important}@-webkit-keyframes flipOutY{0%{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotateY(-15deg);transform:perspective(400px) rotateY(-15deg);opacity:1}to{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);opacity:0}}@keyframes flipOutY{0%{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotateY(-15deg);transform:perspective(400px) rotateY(-15deg);opacity:1}to{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);opacity:0}}.flipOutY{-webkit-backface-visibility:visible!important;backface-visibility:visible!important;-webkit-animation-name:flipOutY;animation-name:flipOutY}@-webkit-keyframes lightSpeedIn{0%{-webkit-transform:translate3d(100%,0,0) skewX(-30deg);transform:translate3d(100%,0,0) skewX(-30deg);opacity:0}60%{-webkit-transform:skewX(20deg);transform:skewX(20deg)}60%,80%{opacity:1}80%{-webkit-transform:skewX(-5deg);transform:skewX(-5deg)}to{-webkit-transform:none;transform:none;opacity:1}}@keyframes lightSpeedIn{0%{-webkit-transform:translate3d(100%,0,0) skewX(-30deg);transform:translate3d(100%,0,0) skewX(-30deg);opacity:0}60%{-webkit-transform:skewX(20deg);transform:skewX(20deg)}60%,80%{opacity:1}80%{-webkit-transform:skewX(-5deg);transform:skewX(-5deg)}to{-webkit-transform:none;transform:none;opacity:1}}.lightSpeedIn{-webkit-animation-name:lightSpeedIn;animation-name:lightSpeedIn;-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}@-webkit-keyframes lightSpeedOut{0%{opacity:1}to{-webkit-transform:translate3d(100%,0,0) skewX(30deg);transform:translate3d(100%,0,0) skewX(30deg);opacity:0}}@keyframes lightSpeedOut{0%{opacity:1}to{-webkit-transform:translate3d(100%,0,0) skewX(30deg);transform:translate3d(100%,0,0) skewX(30deg);opacity:0}}.lightSpeedOut{-webkit-animation-name:lightSpeedOut;animation-name:lightSpeedOut;-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}@-webkit-keyframes rotateIn{0%{transform-origin:center;-webkit-transform:rotate(-200deg);transform:rotate(-200deg);opacity:0}0%,to{-webkit-transform-origin:center}to{transform-origin:center;-webkit-transform:none;transform:none;opacity:1}}@keyframes rotateIn{0%{transform-origin:center;-webkit-transform:rotate(-200deg);transform:rotate(-200deg);opacity:0}0%,to{-webkit-transform-origin:center}to{transform-origin:center;-webkit-transform:none;transform:none;opacity:1}}.rotateIn{-webkit-animation-name:rotateIn;animation-name:rotateIn}@-webkit-keyframes rotateInDownLeft{0%{transform-origin:left bottom;-webkit-transform:rotate(-45deg);transform:rotate(-45deg);opacity:0}0%,to{-webkit-transform-origin:left bottom}to{transform-origin:left bottom;-webkit-transform:none;transform:none;opacity:1}}@keyframes rotateInDownLeft{0%{transform-origin:left bottom;-webkit-transform:rotate(-45deg);transform:rotate(-45deg);opacity:0}0%,to{-webkit-transform-origin:left bottom}to{transform-origin:left bottom;-webkit-transform:none;transform:none;opacity:1}}.rotateInDownLeft{-webkit-animation-name:rotateInDownLeft;animation-name:rotateInDownLeft}@-webkit-keyframes rotateInDownRight{0%{transform-origin:right bottom;-webkit-transform:rotate(45deg);transform:rotate(45deg);opacity:0}0%,to{-webkit-transform-origin:right bottom}to{transform-origin:right bottom;-webkit-transform:none;transform:none;opacity:1}}@keyframes rotateInDownRight{0%{transform-origin:right bottom;-webkit-transform:rotate(45deg);transform:rotate(45deg);opacity:0}0%,to{-webkit-transform-origin:right bottom}to{transform-origin:right bottom;-webkit-transform:none;transform:none;opacity:1}}.rotateInDownRight{-webkit-animation-name:rotateInDownRight;animation-name:rotateInDownRight}@-webkit-keyframes rotateInUpLeft{0%{transform-origin:left bottom;-webkit-transform:rotate(45deg);transform:rotate(45deg);opacity:0}0%,to{-webkit-transform-origin:left bottom}to{transform-origin:left bottom;-webkit-transform:none;transform:none;opacity:1}}@keyframes rotateInUpLeft{0%{transform-origin:left bottom;-webkit-transform:rotate(45deg);transform:rotate(45deg);opacity:0}0%,to{-webkit-transform-origin:left bottom}to{transform-origin:left bottom;-webkit-transform:none;transform:none;opacity:1}}.rotateInUpLeft{-webkit-animation-name:rotateInUpLeft;animation-name:rotateInUpLeft}@-webkit-keyframes rotateInUpRight{0%{transform-origin:right bottom;-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}0%,to{-webkit-transform-origin:right bottom}to{transform-origin:right bottom;-webkit-transform:none;transform:none;opacity:1}}@keyframes rotateInUpRight{0%{transform-origin:right bottom;-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}0%,to{-webkit-transform-origin:right bottom}to{transform-origin:right bottom;-webkit-transform:none;transform:none;opacity:1}}.rotateInUpRight{-webkit-animation-name:rotateInUpRight;animation-name:rotateInUpRight}@-webkit-keyframes rotateOut{0%{transform-origin:center;opacity:1}0%,to{-webkit-transform-origin:center}to{transform-origin:center;-webkit-transform:rotate(200deg);transform:rotate(200deg);opacity:0}}@keyframes rotateOut{0%{transform-origin:center;opacity:1}0%,to{-webkit-transform-origin:center}to{transform-origin:center;-webkit-transform:rotate(200deg);transform:rotate(200deg);opacity:0}}.rotateOut{-webkit-animation-name:rotateOut;animation-name:rotateOut}@-webkit-keyframes rotateOutDownLeft{0%{transform-origin:left bottom;opacity:1}0%,to{-webkit-transform-origin:left bottom}to{transform-origin:left bottom;-webkit-transform:rotate(45deg);transform:rotate(45deg);opacity:0}}@keyframes rotateOutDownLeft{0%{transform-origin:left bottom;opacity:1}0%,to{-webkit-transform-origin:left bottom}to{transform-origin:left bottom;-webkit-transform:rotate(45deg);transform:rotate(45deg);opacity:0}}.rotateOutDownLeft{-webkit-animation-name:rotateOutDownLeft;animation-name:rotateOutDownLeft}@-webkit-keyframes rotateOutDownRight{0%{transform-origin:right bottom;opacity:1}0%,to{-webkit-transform-origin:right bottom}to{transform-origin:right bottom;-webkit-transform:rotate(-45deg);transform:rotate(-45deg);opacity:0}}@keyframes rotateOutDownRight{0%{transform-origin:right bottom;opacity:1}0%,to{-webkit-transform-origin:right bottom}to{transform-origin:right bottom;-webkit-transform:rotate(-45deg);transform:rotate(-45deg);opacity:0}}.rotateOutDownRight{-webkit-animation-name:rotateOutDownRight;animation-name:rotateOutDownRight}@-webkit-keyframes rotateOutUpLeft{0%{transform-origin:left bottom;opacity:1}0%,to{-webkit-transform-origin:left bottom}to{transform-origin:left bottom;-webkit-transform:rotate(-45deg);transform:rotate(-45deg);opacity:0}}@keyframes rotateOutUpLeft{0%{transform-origin:left bottom;opacity:1}0%,to{-webkit-transform-origin:left bottom}to{transform-origin:left bottom;-webkit-transform:rotate(-45deg);transform:rotate(-45deg);opacity:0}}.rotateOutUpLeft{-webkit-animation-name:rotateOutUpLeft;animation-name:rotateOutUpLeft}@-webkit-keyframes rotateOutUpRight{0%{transform-origin:right bottom;opacity:1}0%,to{-webkit-transform-origin:right bottom}to{transform-origin:right bottom;-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}}@keyframes rotateOutUpRight{0%{transform-origin:right bottom;opacity:1}0%,to{-webkit-transform-origin:right bottom}to{transform-origin:right bottom;-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}}.rotateOutUpRight{-webkit-animation-name:rotateOutUpRight;animation-name:rotateOutUpRight}@-webkit-keyframes hinge{0%{transform-origin:top left}0%,20%,60%{-webkit-transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}20%,60%{-webkit-transform:rotate(80deg);transform:rotate(80deg);transform-origin:top left}40%,80%{-webkit-transform:rotate(60deg);transform:rotate(60deg);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;opacity:1}to{-webkit-transform:translate3d(0,700px,0);transform:translate3d(0,700px,0);opacity:0}}@keyframes hinge{0%{transform-origin:top left}0%,20%,60%{-webkit-transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}20%,60%{-webkit-transform:rotate(80deg);transform:rotate(80deg);transform-origin:top left}40%,80%{-webkit-transform:rotate(60deg);transform:rotate(60deg);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;opacity:1}to{-webkit-transform:translate3d(0,700px,0);transform:translate3d(0,700px,0);opacity:0}}.hinge{-webkit-animation-name:hinge;animation-name:hinge}@-webkit-keyframes rollIn{0%{opacity:0;-webkit-transform:translate3d(-100%,0,0) rotate(-120deg);transform:translate3d(-100%,0,0) rotate(-120deg)}to{opacity:1;-webkit-transform:none;transform:none}}@keyframes rollIn{0%{opacity:0;-webkit-transform:translate3d(-100%,0,0) rotate(-120deg);transform:translate3d(-100%,0,0) rotate(-120deg)}to{opacity:1;-webkit-transform:none;transform:none}}.rollIn{-webkit-animation-name:rollIn;animation-name:rollIn}@-webkit-keyframes rollOut{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(100%,0,0) rotate(120deg);transform:translate3d(100%,0,0) rotate(120deg)}}@keyframes rollOut{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(100%,0,0) rotate(120deg);transform:translate3d(100%,0,0) rotate(120deg)}}.rollOut{-webkit-animation-name:rollOut;animation-name:rollOut}@-webkit-keyframes zoomIn{0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}50%{opacity:1}}@keyframes zoomIn{0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}50%{opacity:1}}.zoomIn{-webkit-animation-name:zoomIn;animation-name:zoomIn}@-webkit-keyframes zoomInDown{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);transform:scale3d(.475,.475,.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomInDown{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);transform:scale3d(.475,.475,.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.zoomInDown{-webkit-animation-name:zoomInDown;animation-name:zoomInDown}@-webkit-keyframes zoomInLeft{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(10px,0,0);transform:scale3d(.475,.475,.475) translate3d(10px,0,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomInLeft{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(10px,0,0);transform:scale3d(.475,.475,.475) translate3d(10px,0,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.zoomInLeft{-webkit-animation-name:zoomInLeft;animation-name:zoomInLeft}@-webkit-keyframes zoomInRight{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomInRight{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.zoomInRight{-webkit-animation-name:zoomInRight;animation-name:zoomInRight}@-webkit-keyframes zoomInUp{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomInUp{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.zoomInUp{-webkit-animation-name:zoomInUp;animation-name:zoomInUp}@-webkit-keyframes zoomOut{0%{opacity:1}50%{-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}50%,to{opacity:0}}@keyframes zoomOut{0%{opacity:1}50%{-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}50%,to{opacity:0}}.zoomOut{-webkit-animation-name:zoomOut;animation-name:zoomOut}@-webkit-keyframes zoomOutDown{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);-webkit-transform-origin:center bottom;transform-origin:center bottom;-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomOutDown{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);-webkit-transform-origin:center bottom;transform-origin:center bottom;-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.zoomOutDown{-webkit-animation-name:zoomOutDown;animation-name:zoomOutDown}@-webkit-keyframes zoomOutLeft{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(42px,0,0);transform:scale3d(.475,.475,.475) translate3d(42px,0,0)}to{opacity:0;-webkit-transform:scale(.1) translate3d(-2000px,0,0);transform:scale(.1) translate3d(-2000px,0,0);-webkit-transform-origin:left center;transform-origin:left center}}@keyframes zoomOutLeft{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(42px,0,0);transform:scale3d(.475,.475,.475) translate3d(42px,0,0)}to{opacity:0;-webkit-transform:scale(.1) translate3d(-2000px,0,0);transform:scale(.1) translate3d(-2000px,0,0);-webkit-transform-origin:left center;transform-origin:left center}}.zoomOutLeft{-webkit-animation-name:zoomOutLeft;animation-name:zoomOutLeft}@-webkit-keyframes zoomOutRight{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-42px,0,0);transform:scale3d(.475,.475,.475) translate3d(-42px,0,0)}to{opacity:0;-webkit-transform:scale(.1) translate3d(2000px,0,0);transform:scale(.1) translate3d(2000px,0,0);-webkit-transform-origin:right center;transform-origin:right center}}@keyframes zoomOutRight{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-42px,0,0);transform:scale3d(.475,.475,.475) translate3d(-42px,0,0)}to{opacity:0;-webkit-transform:scale(.1) translate3d(2000px,0,0);transform:scale(.1) translate3d(2000px,0,0);-webkit-transform-origin:right center;transform-origin:right center}}.zoomOutRight{-webkit-animation-name:zoomOutRight;animation-name:zoomOutRight}@-webkit-keyframes zoomOutUp{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);transform:scale3d(.475,.475,.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);-webkit-transform-origin:center bottom;transform-origin:center bottom;-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomOutUp{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);transform:scale3d(.475,.475,.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);-webkit-transform-origin:center bottom;transform-origin:center bottom;-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.zoomOutUp{-webkit-animation-name:zoomOutUp;animation-name:zoomOutUp}@-webkit-keyframes slideInDown{0%{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes slideInDown{0%{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.slideInDown{-webkit-animation-name:slideInDown;animation-name:slideInDown}@-webkit-keyframes slideInLeft{0%{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes slideInLeft{0%{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.slideInLeft{-webkit-animation-name:slideInLeft;animation-name:slideInLeft}@-webkit-keyframes slideInRight{0%{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes slideInRight{0%{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.slideInRight{-webkit-animation-name:slideInRight;animation-name:slideInRight}@-webkit-keyframes slideInUp{0%{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes slideInUp{0%{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.slideInUp{-webkit-animation-name:slideInUp;animation-name:slideInUp}@-webkit-keyframes slideOutDown{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}@keyframes slideOutDown{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}.slideOutDown{-webkit-animation-name:slideOutDown;animation-name:slideOutDown}@-webkit-keyframes slideOutLeft{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}@keyframes slideOutLeft{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}.slideOutLeft{-webkit-animation-name:slideOutLeft;animation-name:slideOutLeft}@-webkit-keyframes slideOutRight{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}@keyframes slideOutRight{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}.slideOutRight{-webkit-animation-name:slideOutRight;animation-name:slideOutRight}@-webkit-keyframes slideOutUp{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}@keyframes slideOutUp{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}.slideOutUp{-webkit-animation-name:slideOutUp;animation-name:slideOutUp}
