@charset "UTF-8";
/*
* The MIT License
* Copyright (c) 2012 Matias Meno <m@tias.me>
*/
@-webkit-keyframes passing-through {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
  }
  30%, 70% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-40px);
    transform: translateY(-40px);
  }
}

@keyframes passing-through {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
  }
  30%, 70% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-40px);
    transform: translateY(-40px);
  }
}

@-webkit-keyframes slide-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
  }
  30% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}

@keyframes slide-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
  }
  30% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  10% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  20% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  10% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  20% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

/* line 175, app/assets/stylesheets/_init-dropzone.scss */
.dropzone, .dropzone * {
  box-sizing: border-box;
}

/* line 178, app/assets/stylesheets/_init-dropzone.scss */
.dropzone {
  border: 2px dashed #cecece;
  color: gray;
  font-size: 9pt;
  background: white;
  padding: 0px 20px;
}

/* line 184, app/assets/stylesheets/_init-dropzone.scss */
.dropzone.dz-clickable {
  cursor: pointer;
}

/* line 186, app/assets/stylesheets/_init-dropzone.scss */
.dropzone.dz-clickable * {
  cursor: default;
}

/* line 188, app/assets/stylesheets/_init-dropzone.scss */
.dropzone.dz-clickable .dz-message, .dropzone.dz-clickable .dz-message * {
  cursor: pointer;
}

/* line 190, app/assets/stylesheets/_init-dropzone.scss */
.dropzone.dz-started .dz-message {
  display: none;
}

/* line 192, app/assets/stylesheets/_init-dropzone.scss */
.dropzone.dz-drag-hover {
  border-style: solid;
}

/* line 194, app/assets/stylesheets/_init-dropzone.scss */
.dropzone.dz-drag-hover .dz-message {
  opacity: 0.5;
}

/* line 196, app/assets/stylesheets/_init-dropzone.scss */
.dropzone .dz-message {
  text-align: center;
  margin: 2em 0;
}

/* line 199, app/assets/stylesheets/_init-dropzone.scss */
.dropzone .dz-preview {
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin: 16px;
  min-height: 100px;
}

/* line 205, app/assets/stylesheets/_init-dropzone.scss */
.dropzone .dz-preview:hover {
  z-index: 1000;
}

/* line 207, app/assets/stylesheets/_init-dropzone.scss */
.dropzone .dz-preview:hover .dz-details {
  opacity: 1;
}

/* line 209, app/assets/stylesheets/_init-dropzone.scss */
.dropzone .dz-preview.dz-file-preview .dz-image {
  border-radius: 20px;
  background: #999;
  background: -webkit-gradient(linear, left top, left bottom, from(#eee), to(#ddd));
  background: linear-gradient(to bottom, #eee, #ddd);
}

/* line 213, app/assets/stylesheets/_init-dropzone.scss */
.dropzone .dz-preview.dz-file-preview .dz-details {
  opacity: 1;
}

/* line 215, app/assets/stylesheets/_init-dropzone.scss */
.dropzone .dz-preview.dz-image-preview {
  background: white;
}

/* line 217, app/assets/stylesheets/_init-dropzone.scss */
.dropzone .dz-preview.dz-image-preview .dz-details {
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}

/* line 223, app/assets/stylesheets/_init-dropzone.scss */
.dropzone .dz-preview .dz-remove {
  font-size: 14px;
  text-align: center;
  display: block;
  cursor: pointer;
  border: none;
}

/* line 229, app/assets/stylesheets/_init-dropzone.scss */
.dropzone .dz-preview .dz-remove:hover {
  text-decoration: underline;
}

/* line 231, app/assets/stylesheets/_init-dropzone.scss */
.dropzone .dz-preview:hover .dz-details {
  opacity: 1;
}

/* line 233, app/assets/stylesheets/_init-dropzone.scss */
.dropzone .dz-preview .dz-details {
  z-index: 20;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  font-size: 13px;
  min-width: 100%;
  max-width: 100%;
  padding: 2em 1em;
  text-align: center;
  color: rgba(0, 0, 0, 0.9);
  line-height: 150%;
}

/* line 246, app/assets/stylesheets/_init-dropzone.scss */
.dropzone .dz-preview .dz-details .dz-size {
  margin-bottom: 1em;
  font-size: 16px;
}

/* line 249, app/assets/stylesheets/_init-dropzone.scss */
.dropzone .dz-preview .dz-details .dz-filename {
  white-space: nowrap;
}

/* line 251, app/assets/stylesheets/_init-dropzone.scss */
.dropzone .dz-preview .dz-details .dz-filename:hover span {
  border: 1px solid rgba(200, 200, 200, 0.8);
  background-color: rgba(255, 255, 255, 0.8);
}

/* line 254, app/assets/stylesheets/_init-dropzone.scss */
.dropzone .dz-preview .dz-details .dz-filename:not(:hover) {
  overflow: hidden;
  text-overflow: ellipsis;
}

/* line 257, app/assets/stylesheets/_init-dropzone.scss */
.dropzone .dz-preview .dz-details .dz-filename:not(:hover) span {
  border: 1px solid transparent;
}

/* line 259, app/assets/stylesheets/_init-dropzone.scss */
.dropzone .dz-preview .dz-details .dz-filename span, .dropzone .dz-preview .dz-details .dz-size span {
  background-color: rgba(255, 255, 255, 0.4);
  padding: 0 0.4em;
  border-radius: 3px;
}

/* line 263, app/assets/stylesheets/_init-dropzone.scss */
.dropzone .dz-preview:hover .dz-image img {
  -webkit-transform: scale(1.05, 1.05);
  transform: scale(1.05, 1.05);
  -webkit-filter: blur(8px);
  filter: blur(8px);
}

/* line 271, app/assets/stylesheets/_init-dropzone.scss */
.dropzone .dz-preview .dz-image {
  border-radius: 20px;
  overflow: hidden;
  width: 120px;
  height: 120px;
  position: relative;
  display: block;
  z-index: 10;
}

/* line 279, app/assets/stylesheets/_init-dropzone.scss */
.dropzone .dz-preview .dz-image img {
  display: block;
}

/* line 281, app/assets/stylesheets/_init-dropzone.scss */
.dropzone .dz-preview.dz-success .dz-success-mark {
  -webkit-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
  animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
}

/* line 287, app/assets/stylesheets/_init-dropzone.scss */
.dropzone .dz-preview.dz-error .dz-error-mark {
  opacity: 1;
  -webkit-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
  animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
}

/* line 294, app/assets/stylesheets/_init-dropzone.scss */
.dropzone .dz-preview .dz-success-mark, .dropzone .dz-preview .dz-error-mark {
  pointer-events: none;
  opacity: 0;
  z-index: 500;
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  margin-left: -27px;
  margin-top: -27px;
}

/* line 304, app/assets/stylesheets/_init-dropzone.scss */
.dropzone .dz-preview .dz-success-mark svg, .dropzone .dz-preview .dz-error-mark svg {
  display: block;
  width: 54px;
  height: 54px;
}

/* line 308, app/assets/stylesheets/_init-dropzone.scss */
.dropzone .dz-preview.dz-processing .dz-progress {
  opacity: 1;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

/* line 315, app/assets/stylesheets/_init-dropzone.scss */
.dropzone .dz-preview.dz-complete .dz-progress {
  opacity: 0;
  -webkit-transition: opacity 0.4s ease-in;
  transition: opacity 0.4s ease-in;
}

/* line 322, app/assets/stylesheets/_init-dropzone.scss */
.dropzone .dz-preview:not(.dz-processing) .dz-progress {
  -webkit-animation: pulse 6s ease infinite;
  animation: pulse 6s ease infinite;
}

/* line 328, app/assets/stylesheets/_init-dropzone.scss */
.dropzone .dz-preview .dz-progress {
  opacity: 1;
  z-index: 1000;
  pointer-events: none;
  position: absolute;
  height: 16px;
  left: 50%;
  top: 50%;
  margin-top: -8px;
  width: 80px;
  margin-left: -40px;
  background: rgba(255, 255, 255, 0.9);
  -webkit-transform: scale(1);
  border-radius: 8px;
  overflow: hidden;
}

/* line 343, app/assets/stylesheets/_init-dropzone.scss */
.dropzone .dz-preview .dz-progress .dz-upload {
  background: #333;
  background: -webkit-gradient(linear, left top, left bottom, from(#666), to(#444));
  background: linear-gradient(to bottom, #666, #444);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0;
  -webkit-transition: width 300ms ease-in-out;
  transition: width 300ms ease-in-out;
}

/* line 356, app/assets/stylesheets/_init-dropzone.scss */
.dropzone .dz-preview.dz-error .dz-error-message {
  display: block;
}

/* line 358, app/assets/stylesheets/_init-dropzone.scss */
.dropzone .dz-preview.dz-error:hover .dz-error-message {
  opacity: 1;
  pointer-events: auto;
}

/* line 361, app/assets/stylesheets/_init-dropzone.scss */
.dropzone .dz-preview .dz-error-message {
  pointer-events: none;
  z-index: 1000;
  position: absolute;
  display: block;
  display: none;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  border-radius: 8px;
  font-size: 13px;
  top: 130px;
  left: -10px;
  width: 140px;
  background: #be2626;
  background: -webkit-gradient(linear, left top, left bottom, from(#be2626), to(#a92222));
  background: linear-gradient(to bottom, #be2626, #a92222);
  padding: 0.5em 1.2em;
  color: white;
}

/* line 382, app/assets/stylesheets/_init-dropzone.scss */
.dropzone .dz-preview .dz-error-message:after {
  content: '';
  position: absolute;
  top: -6px;
  left: 64px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #be2626;
}

@font-face {
  font-family: 'Plurall';
  src: url(/assets/plurall-05e5d88e8f2695787ee7fac4200642b5f089e1f832e164c7de85c241f5980a93.woff) format("woff"), url(/assets/plurall-6e77f64fad4adc617f2f18d6c9081b81ce12259e3b66eca2592f3e6ddd47f951.ttf) format("truetype");
  font-weight: normal;
  font-style: normal;
}

/* line 1, app/assets/stylesheets/_navbar-nav.scss */
#plurall-header {
  height: 28px;
}

/* line 4, app/assets/stylesheets/_navbar-nav.scss */
#plurall-header .container {
  width: auto !important;
}

/* line 8, app/assets/stylesheets/_navbar-nav.scss */
#plurall-header li {
  letter-spacing: 0 !important;
}

/* line 11, app/assets/stylesheets/_navbar-nav.scss */
#plurall-header li .container {
  margin: 0 !important;
  padding: 0 !important;
}

/* line 18, app/assets/stylesheets/_navbar-nav.scss */
.send-call-container .container {
  width: 100% !important;
  padding: 0 !important;
  box-shadow: none;
}

/* line 24, app/assets/stylesheets/_navbar-nav.scss */
.send-call-container .breadcrumb,
.send-call-container .content {
  padding: 0 !important;
}

/* line 29, app/assets/stylesheets/_navbar-nav.scss */
#elo-navbar-logo,
#plurall-elo-navbar [class^="icon-"],
#plurall-elo-navbar [class*=" icon-"] {
  color: #FFF !important;
}

/* line 35, app/assets/stylesheets/_navbar-nav.scss */
#plurall-elo-navbar p,
#elo-navbar-utiliy-help p,
#elo-navbar-utiliy-user p {
  margin-bottom: 0 !important;
  margin-top: 0 !important;
}

@media (min-width: 990px) {
  /* line 43, app/assets/stylesheets/_navbar-nav.scss */
  #content-container {
    padding-left: 80px !important;
  }
}

/* line 131, app/assets/stylesheets/_variables.scss */
.card-material .display-block {
  display: block;
}

/* _image-address.scss 
Quando for aplicado em Rede deve receber classe da rede:
.rede { import image-address } */
/* DEFAULT */
/* line 131, app/assets/stylesheets/_variables.scss */
.card-material .display-block {
  display: block;
}

/* _image-address.scss 
Quando for aplicado em Rede deve receber classe da rede:
.rede { import image-address } */
/* DEFAULT */
/* line 4, app/assets/stylesheets/_announcements-options.scss */
#reload_button {
  float: right;
}

/* line 10, app/assets/stylesheets/_announcements-options.scss */
.announcement-type-options li, .announcement-type-options ul {
  list-style: none;
}

/* line 13, app/assets/stylesheets/_announcements-options.scss */
.announcement-type-options li {
  margin-top: 7px;
  cursor: help;
}

/* line 18, app/assets/stylesheets/_announcements-options.scss */
.announcement-type-options {
  /* announcement type options */
}

/* line 131, app/assets/stylesheets/_variables.scss */
.announcement-type-options .card-material .display-block {
  display: block;
}

/* line 9, app/assets/stylesheets/_announcement-type-options.scss */
.announcement-type-options .sm {
  margin-top: 12px;
  margin-bottom: 12px;
}

/* line 12, app/assets/stylesheets/_announcement-type-options.scss */
.announcement-type-options .sm i {
  display: inline-block;
  vertical-align: middle;
  height: 24px;
  width: 24px;
  background-image: url(/assets/ic-sprite-announcement-options-7d215626b72cc37e78150ebefd7332b7d77150559e7a79c00cb1b6544c7a4d47.png);
  background-size: 120px auto;
}

@media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx), (min-resolution: 144dpi) {
  /* line 12, app/assets/stylesheets/_announcement-type-options.scss */
  .announcement-type-options .sm i {
    background-image: url(/assets/ic-sprite-announcement-options-3x-dfb0496cc87381e3dcc4a754134a92147fc0824fb4316f5eb9631c64ca603236.png);
  }
}

/* line 32, app/assets/stylesheets/_announcement-type-options.scss */
.announcement-type-options .sm .allow-scheduling i {
  background-position: -24px 0;
}

/* line 32, app/assets/stylesheets/_announcement-type-options.scss */
.announcement-type-options .sm .allow-show-dates i {
  background-position: -48px 0;
}

/* line 32, app/assets/stylesheets/_announcement-type-options.scss */
.announcement-type-options .sm .allow-config-acknowledgement i {
  background-position: -72px 0;
}

/* line 9, app/assets/stylesheets/_announcement-type-options.scss */
.announcement-type-options .md {
  margin-top: 24px;
  margin-bottom: 24px;
}

/* line 12, app/assets/stylesheets/_announcement-type-options.scss */
.announcement-type-options .md i {
  display: inline-block;
  vertical-align: middle;
  height: 48px;
  width: 48px;
  background-image: url(/assets/ic-sprite-announcement-options-7d215626b72cc37e78150ebefd7332b7d77150559e7a79c00cb1b6544c7a4d47.png);
  background-size: 240px auto;
}

@media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx), (min-resolution: 144dpi) {
  /* line 12, app/assets/stylesheets/_announcement-type-options.scss */
  .announcement-type-options .md i {
    background-image: url(/assets/ic-sprite-announcement-options-3x-dfb0496cc87381e3dcc4a754134a92147fc0824fb4316f5eb9631c64ca603236.png);
  }
}

/* line 32, app/assets/stylesheets/_announcement-type-options.scss */
.announcement-type-options .md .allow-scheduling i {
  background-position: -48px 0;
}

/* line 32, app/assets/stylesheets/_announcement-type-options.scss */
.announcement-type-options .md .allow-show-dates i {
  background-position: -96px 0;
}

/* line 32, app/assets/stylesheets/_announcement-type-options.scss */
.announcement-type-options .md .allow-config-acknowledgement i {
  background-position: -144px 0;
}

/* line 21, app/assets/stylesheets/_announcements-options.scss */
.announcement-type-options .form-inline i {
  vertical-align: top;
}

@media all and (max-width: 768px) {
  /* line 21, app/assets/stylesheets/_announcements-options.scss */
  .announcement-type-options .form-inline i {
    float: left;
  }
}

/* line 27, app/assets/stylesheets/_announcements-options.scss */
.announcement-type-options .form-group {
  margin-top: 12px;
}

@media all and (max-width: 768px) {
  /* line 27, app/assets/stylesheets/_announcements-options.scss */
  .announcement-type-options .form-group {
    margin-left: 52px;
  }
}

/* line 33, app/assets/stylesheets/_announcements-options.scss */
.announcement-type-options label {
  cursor: pointer;
}

/* line 38, app/assets/stylesheets/_announcements-options.scss */
.placeholder i.attachment {
  background-position: -192px -48px;
  background-image: url(/assets/ic-sprite-announcement-options-7d215626b72cc37e78150ebefd7332b7d77150559e7a79c00cb1b6544c7a4d47.png);
  height: 48px;
  width: 48px;
  text-align: center;
  display: inline-block;
  vertical-align: middle;
  background-size: 240px auto;
}

@media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx), (min-resolution: 144dpi) {
  /* line 38, app/assets/stylesheets/_announcements-options.scss */
  .placeholder i.attachment {
    background-image: url(/assets/ic-sprite-announcement-options-3x-dfb0496cc87381e3dcc4a754134a92147fc0824fb4316f5eb9631c64ca603236.png);
  }
}

/* line 60, app/assets/stylesheets/_announcements-options.scss */
.auto-reload {
  display: inline-block;
  float: right;
  font-weight: 300;
  color: #aaa;
}

/* line 66, app/assets/stylesheets/_announcements-options.scss */
.auto-reload span {
  display: inline-block;
  padding: 10px;
}

/* line 74, app/assets/stylesheets/_announcements-options.scss */
.large-screen .annoucement-item {
  display: block;
  position: relative;
  background: #fff;
  margin-left: 100px;
  padding: 10px 200px 10px 20px;
  font-size: 16pt;
}

@media (max-width: 767px) {
  /* line 74, app/assets/stylesheets/_announcements-options.scss */
  .large-screen .annoucement-item {
    margin-left: 38px;
    padding: 10px 20px;
  }
}

/* line 86, app/assets/stylesheets/_announcements-options.scss */
.large-screen .inspector-option {
  display: block;
  position: absolute;
  right: -10px;
  top: 0;
}

@media (max-width: 767px) {
  /* line 86, app/assets/stylesheets/_announcements-options.scss */
  .large-screen .inspector-option {
    position: relative;
    right: 8px;
    top: 3px;
  }
}

/* line 97, app/assets/stylesheets/_announcements-options.scss */
.large-screen .ann-label sub {
  left: -20px;
}

/* line 100, app/assets/stylesheets/_announcements-options.scss */
.large-screen .ann-label sub strong {
  left: -20px;
  padding: 4px 18px 4px 18px;
  font-size: 13pt;
  background-color: rgba(0, 0, 0, 0.4);
}

/* line 107, app/assets/stylesheets/_announcements-options.scss */
.large-screen .ann-label a {
  margin: 0;
  padding: 0;
  font-size: 15pt;
  display: inline;
  border: 0;
}

/* _ckeditor-custom.scss */
/* line 131, app/assets/stylesheets/_variables.scss */
.card-material .display-block {
  display: block;
}

/* line 8, app/assets/stylesheets/_ckeditor-custom.scss */
html body .cke {
  box-shadow: none;
  border: 1px solid #cccccc;
}

/* line 12, app/assets/stylesheets/_ckeditor-custom.scss */
html body .cke_inner, html body .cke {
  border-radius: 4px;
}

/* line 15, app/assets/stylesheets/_ckeditor-custom.scss */
html body .cke_bottom, html body .cke_top, html body .cke_dialog_title, html body .cke_dialog_footer {
  background-image: none;
  background-color: #ddd;
}

/* line 19, app/assets/stylesheets/_ckeditor-custom.scss */
html body .cke_top {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

/* line 23, app/assets/stylesheets/_ckeditor-custom.scss */
html body .cke_bottom {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

/* line 27, app/assets/stylesheets/_ckeditor-custom.scss */
html body .cke_dialog_background_cover {
  background-color: #c6c6c6;
}

/* line 131, app/assets/stylesheets/_variables.scss */
.card-material .display-block {
  display: block;
}

/* line 9, app/assets/stylesheets/attachments.scss */
.file-drop {
  text-align: left;
  border-radius: 4px;
  border: dashed 1px #aaa;
  padding: 20px;
  background-color: #f6f6f6;
  color: #888;
}

/* line 18, app/assets/stylesheets/attachments.scss */
.file-drop a:hover {
  color: #0077C8;
}

/* line 23, app/assets/stylesheets/attachments.scss */
.file-drop.hover {
  background-color: #FFFDEA;
}

/* line 31, app/assets/stylesheets/attachments.scss */
.file-drop span.placeholder {
  margin-bottom: 5px;
  display: block;
  text-align: center;
}

/* line 38, app/assets/stylesheets/attachments.scss */
.attachments-area .attachment-preview span,
div.attachment {
  width: 100px;
  border: 3px dashed #f6f6f6;
  border-radius: 8px;
  padding: 4px;
  display: inline-block;
  margin-right: 20px;
  margin-bottom: 15px;
  text-align: center;
  background-color: #f6f6f6;
  vertical-align: top;
  position: relative;
}

/* line 53, app/assets/stylesheets/attachments.scss */
div.attachment img {
  max-width: 100%;
  height: auto;
  opacity: 0.3;
  background-color: #f6f6f6;
  border-radius: 4px;
}

/* line 61, app/assets/stylesheets/attachments.scss */
div.attachment.sending {
  border-color: #c6c6c6;
  background-color: #f6f6f6;
}

/* line 65, app/assets/stylesheets/attachments.scss */
div.attachment.processing {
  border-color: #CFB210;
  background-color: #f6f6f6;
}

/* line 69, app/assets/stylesheets/attachments.scss */
div.attachment.processing img {
  opacity: 0.3;
}

/* line 72, app/assets/stylesheets/attachments.scss */
div.attachment.success {
  border: 3px solid #85B200;
  background-color: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  -webkit-transition: background-color 0.4s linear 0, border-color 0.4s linear 0.4s, box-shadow 0.4s ease-in 1s;
  transition: background-color 0.4s linear 0, border-color 0.4s linear 0.4s, box-shadow 0.4s ease-in 1s;
}

/* line 78, app/assets/stylesheets/attachments.scss */
div.attachment.success img {
  opacity: 1;
  -webkit-transition: opacity 0.5s linear;
  transition: opacity 0.5s linear;
}

/* line 82, app/assets/stylesheets/attachments.scss */
div.attachment.failure {
  border-color: #ff635f;
}

/* line 87, app/assets/stylesheets/attachments.scss */
input.standard-attachment {
  display: block;
  background-color: #ddd;
  width: 100%;
  padding: 10px;
  font-size: 13px;
}

/* line 96, app/assets/stylesheets/attachments.scss */
div.attachment.application {
  background-image: url(/assets/ic-sprite-file-type-7f90c47175c723ca06b5cd3e6239bb7d0d580aecef5a1a2ea31b8d20ee0861e3.png);
  background-size: auto 100px;
  min-height: 100px;
}

/* line 101, app/assets/stylesheets/attachments.scss */
div.attachment.application.pdf {
  background-position: -100px 0;
}

/* line 106, app/assets/stylesheets/attachments.scss */
.attachments-area {
  margin-bottom: 20px;
}

/* line 109, app/assets/stylesheets/attachments.scss */
.attachments-area .attachment-preview {
  min-width: 100px;
  min-height: 100px;
  display: inline-block;
}

/* line 114, app/assets/stylesheets/attachments.scss */
.attachments-area .attachment-preview span {
  border-style: solid;
  background-color: #fff;
  width: 120px;
  padding: 10px;
  margin-right: 10px;
}

/* line 121, app/assets/stylesheets/attachments.scss */
.attachments-area .attachment-preview span:hover {
  border-style: solid;
  border-color: #555;
  box-shadow: 0 0 6px #0077C8;
  -webkit-transition: box-shadow 0.4s ease-in 0;
  transition: box-shadow 0.4s ease-in 0;
}

/* line 127, app/assets/stylesheets/attachments.scss */
.attachments-area .attachment-preview img {
  max-width: 100%;
  height: auto;
}

/* line 132, app/assets/stylesheets/attachments.scss */
.attachment-remove {
  background-image: url(/assets/ic-sprite-7975d9859b417a8cfc6ffbeb0f7702272e35b27cab20ece0582882ad3ef63f76.png);
  background-position: -33px -303px;
  background-repeat: no-repeat;
  background-color: #c6c6c6;
  border-radius: 15px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
  color: transparent;
  cursor: pointer;
  display: block;
  height: 23px;
  margin-left: -10px;
  margin-top: -10px;
  position: absolute;
  width: 23px;
  z-index: 999;
}

/* line 149, app/assets/stylesheets/attachments.scss */
.attachment-remove:hover {
  background-color: #ff635f;
  background-position: -63px -303px;
}

@media only screen and (-webkit-min-device-pixel-ratio: 3) and (min-width: 768px), only screen and (min-device-pixel-ratio: 3) and (min-width: 768px), only screen and (-webkit-min-device-pixel-ratio: 3), only screen and (min-resolution: 3dppx) {
  /* line 156, app/assets/stylesheets/attachments.scss */
  div.attachment.application {
    background-image: url(/assets/ic-sprite-file-type-3x-2a0d47fea9be9f277377467ce00dea8c28de5182563568425b5c110a06c4175f.png);
  }
}

/* @group Base */
/* line 5, vendor/bundle/ruby/2.6.0/gems/chosen-rails-1.9.0/vendor/assets/stylesheets/chosen.scss */
.chosen-container {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  font-size: 13px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/chosen-rails-1.9.0/vendor/assets/stylesheets/chosen.scss */
.chosen-container * {
  box-sizing: border-box;
}

/* line 14, vendor/bundle/ruby/2.6.0/gems/chosen-rails-1.9.0/vendor/assets/stylesheets/chosen.scss */
.chosen-container .chosen-drop {
  position: absolute;
  top: 100%;
  z-index: 1010;
  width: 100%;
  border: 1px solid #aaa;
  border-top: 0;
  background: #fff;
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
  clip: rect(0, 0, 0, 0);
  -webkit-clip-path: inset(100% 100%);
          clip-path: inset(100% 100%);
}

/* line 26, vendor/bundle/ruby/2.6.0/gems/chosen-rails-1.9.0/vendor/assets/stylesheets/chosen.scss */
.chosen-container.chosen-with-drop .chosen-drop {
  clip: auto;
  -webkit-clip-path: none;
          clip-path: none;
}

/* line 30, vendor/bundle/ruby/2.6.0/gems/chosen-rails-1.9.0/vendor/assets/stylesheets/chosen.scss */
.chosen-container a {
  cursor: pointer;
}

/* line 35, vendor/bundle/ruby/2.6.0/gems/chosen-rails-1.9.0/vendor/assets/stylesheets/chosen.scss */
.chosen-container .search-choice .group-name, .chosen-container .chosen-single .group-name {
  margin-right: 4px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-weight: normal;
  color: #999999;
}

/* line 42, vendor/bundle/ruby/2.6.0/gems/chosen-rails-1.9.0/vendor/assets/stylesheets/chosen.scss */
.chosen-container .search-choice .group-name:after, .chosen-container .chosen-single .group-name:after {
  content: ":";
  padding-left: 2px;
  vertical-align: top;
}

/* @end */
/* @group Single Chosen */
/* line 54, vendor/bundle/ruby/2.6.0/gems/chosen-rails-1.9.0/vendor/assets/stylesheets/chosen.scss */
.chosen-container-single .chosen-single {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 0 0 0 8px;
  height: 25px;
  border: 1px solid #aaa;
  border-radius: 5px;
  background-color: #fff;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #fff), color-stop(50%, #f6f6f6), color-stop(52%, #eee), to(#f4f4f4));
  background: linear-gradient(#fff 20%, #f6f6f6 50%, #eee 52%, #f4f4f4 100%);
  background-clip: padding-box;
  box-shadow: 0 0 3px #fff inset, 0 1px 1px rgba(0, 0, 0, 0.1);
  color: #444;
  text-decoration: none;
  white-space: nowrap;
  line-height: 24px;
}

/* line 71, vendor/bundle/ruby/2.6.0/gems/chosen-rails-1.9.0/vendor/assets/stylesheets/chosen.scss */
.chosen-container-single .chosen-default {
  color: #999;
}

/* line 74, vendor/bundle/ruby/2.6.0/gems/chosen-rails-1.9.0/vendor/assets/stylesheets/chosen.scss */
.chosen-container-single .chosen-single span {
  display: block;
  overflow: hidden;
  margin-right: 26px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* line 81, vendor/bundle/ruby/2.6.0/gems/chosen-rails-1.9.0/vendor/assets/stylesheets/chosen.scss */
.chosen-container-single .chosen-single-with-deselect span {
  margin-right: 38px;
}

/* line 84, vendor/bundle/ruby/2.6.0/gems/chosen-rails-1.9.0/vendor/assets/stylesheets/chosen.scss */
.chosen-container-single .chosen-single abbr {
  position: absolute;
  top: 6px;
  right: 26px;
  display: block;
  width: 12px;
  height: 12px;
  background: url(/assets/chosen-sprite-8aa69ee6b2376505578d758bfbbc52aec88fa5e591f1a7cabd8adfa80a7b613a.png) -42px 1px no-repeat;
  font-size: 1px;
}

/* line 93, vendor/bundle/ruby/2.6.0/gems/chosen-rails-1.9.0/vendor/assets/stylesheets/chosen.scss */
.chosen-container-single .chosen-single abbr:hover {
  background-position: -42px -10px;
}

/* line 97, vendor/bundle/ruby/2.6.0/gems/chosen-rails-1.9.0/vendor/assets/stylesheets/chosen.scss */
.chosen-container-single.chosen-disabled .chosen-single abbr:hover {
  background-position: -42px -10px;
}

/* line 100, vendor/bundle/ruby/2.6.0/gems/chosen-rails-1.9.0/vendor/assets/stylesheets/chosen.scss */
.chosen-container-single .chosen-single div {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 18px;
  height: 100%;
}

/* line 107, vendor/bundle/ruby/2.6.0/gems/chosen-rails-1.9.0/vendor/assets/stylesheets/chosen.scss */
.chosen-container-single .chosen-single div b {
  display: block;
  width: 100%;
  height: 100%;
  background: url(/assets/chosen-sprite-8aa69ee6b2376505578d758bfbbc52aec88fa5e591f1a7cabd8adfa80a7b613a.png) no-repeat 0px 2px;
}

/* line 114, vendor/bundle/ruby/2.6.0/gems/chosen-rails-1.9.0/vendor/assets/stylesheets/chosen.scss */
.chosen-container-single .chosen-search {
  position: relative;
  z-index: 1010;
  margin: 0;
  padding: 3px 4px;
  white-space: nowrap;
}

/* line 121, vendor/bundle/ruby/2.6.0/gems/chosen-rails-1.9.0/vendor/assets/stylesheets/chosen.scss */
.chosen-container-single .chosen-search input[type="text"] {
  margin: 1px 0;
  padding: 4px 20px 4px 5px;
  width: 100%;
  height: auto;
  outline: 0;
  border: 1px solid #aaa;
  background: url(/assets/chosen-sprite-8aa69ee6b2376505578d758bfbbc52aec88fa5e591f1a7cabd8adfa80a7b613a.png) no-repeat 100% -20px;
  font-size: 1em;
  font-family: sans-serif;
  line-height: normal;
  border-radius: 0;
}

/* line 135, vendor/bundle/ruby/2.6.0/gems/chosen-rails-1.9.0/vendor/assets/stylesheets/chosen.scss */
.chosen-container-single .chosen-drop {
  margin-top: -1px;
  border-radius: 0 0 4px 4px;
  background-clip: padding-box;
}

/* line 140, vendor/bundle/ruby/2.6.0/gems/chosen-rails-1.9.0/vendor/assets/stylesheets/chosen.scss */
.chosen-container-single.chosen-container-single-nosearch .chosen-search {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  -webkit-clip-path: inset(100% 100%);
          clip-path: inset(100% 100%);
}

/* @end */
/* @group Results */
/* line 149, vendor/bundle/ruby/2.6.0/gems/chosen-rails-1.9.0/vendor/assets/stylesheets/chosen.scss */
.chosen-container .chosen-results {
  color: #444;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  margin: 0 4px 4px 0;
  padding: 0 0 0 4px;
  max-height: 240px;
  -webkit-overflow-scrolling: touch;
}

/* line 158, vendor/bundle/ruby/2.6.0/gems/chosen-rails-1.9.0/vendor/assets/stylesheets/chosen.scss */
.chosen-container .chosen-results li {
  display: none;
  margin: 0;
  padding: 5px 6px;
  list-style: none;
  line-height: 15px;
  word-wrap: break-word;
  -webkit-touch-callout: none;
}

/* line 166, vendor/bundle/ruby/2.6.0/gems/chosen-rails-1.9.0/vendor/assets/stylesheets/chosen.scss */
.chosen-container .chosen-results li.active-result {
  display: list-item;
  cursor: pointer;
}

/* line 170, vendor/bundle/ruby/2.6.0/gems/chosen-rails-1.9.0/vendor/assets/stylesheets/chosen.scss */
.chosen-container .chosen-results li.disabled-result {
  display: list-item;
  color: #ccc;
  cursor: default;
}

/* line 175, vendor/bundle/ruby/2.6.0/gems/chosen-rails-1.9.0/vendor/assets/stylesheets/chosen.scss */
.chosen-container .chosen-results li.highlighted {
  background-color: #3875d7;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #3875d7), color-stop(90%, #2a62bc));
  background-image: linear-gradient(#3875d7 20%, #2a62bc 90%);
  color: #fff;
}

/* line 180, vendor/bundle/ruby/2.6.0/gems/chosen-rails-1.9.0/vendor/assets/stylesheets/chosen.scss */
.chosen-container .chosen-results li.no-results {
  color: #777;
  display: list-item;
  background: #f4f4f4;
}

/* line 185, vendor/bundle/ruby/2.6.0/gems/chosen-rails-1.9.0/vendor/assets/stylesheets/chosen.scss */
.chosen-container .chosen-results li.group-result {
  display: list-item;
  font-weight: bold;
  cursor: default;
}

/* line 190, vendor/bundle/ruby/2.6.0/gems/chosen-rails-1.9.0/vendor/assets/stylesheets/chosen.scss */
.chosen-container .chosen-results li.group-option {
  padding-left: 15px;
}

/* line 193, vendor/bundle/ruby/2.6.0/gems/chosen-rails-1.9.0/vendor/assets/stylesheets/chosen.scss */
.chosen-container .chosen-results li em {
  font-style: normal;
  text-decoration: underline;
}

/* @end */
/* @group Multi Chosen */
/* line 203, vendor/bundle/ruby/2.6.0/gems/chosen-rails-1.9.0/vendor/assets/stylesheets/chosen.scss */
.chosen-container-multi .chosen-choices {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0 5px;
  width: 100%;
  height: auto;
  border: 1px solid #aaa;
  background-color: #fff;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(1%, #eee), color-stop(15%, #fff));
  background-image: linear-gradient(#eee 1%, #fff 15%);
  cursor: text;
}

/* line 215, vendor/bundle/ruby/2.6.0/gems/chosen-rails-1.9.0/vendor/assets/stylesheets/chosen.scss */
.chosen-container-multi .chosen-choices li {
  float: left;
  list-style: none;
}

/* line 218, vendor/bundle/ruby/2.6.0/gems/chosen-rails-1.9.0/vendor/assets/stylesheets/chosen.scss */
.chosen-container-multi .chosen-choices li.search-field {
  margin: 0;
  padding: 0;
  white-space: nowrap;
}

/* line 222, vendor/bundle/ruby/2.6.0/gems/chosen-rails-1.9.0/vendor/assets/stylesheets/chosen.scss */
.chosen-container-multi .chosen-choices li.search-field input[type="text"] {
  margin: 1px 0;
  padding: 0;
  height: 25px;
  outline: 0;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none;
  color: #999;
  font-size: 100%;
  font-family: sans-serif;
  line-height: normal;
  border-radius: 0;
  width: 25px;
}

/* line 238, vendor/bundle/ruby/2.6.0/gems/chosen-rails-1.9.0/vendor/assets/stylesheets/chosen.scss */
.chosen-container-multi .chosen-choices li.search-choice {
  position: relative;
  margin: 3px 5px 3px 0;
  padding: 3px 20px 3px 5px;
  border: 1px solid #aaa;
  max-width: 100%;
  border-radius: 3px;
  background-color: #eeeeee;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), to(#eee));
  background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
  background-size: 100% 19px;
  background-repeat: repeat-x;
  background-clip: padding-box;
  box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05);
  color: #333;
  line-height: 13px;
  cursor: default;
}

/* line 254, vendor/bundle/ruby/2.6.0/gems/chosen-rails-1.9.0/vendor/assets/stylesheets/chosen.scss */
.chosen-container-multi .chosen-choices li.search-choice span {
  word-wrap: break-word;
}

/* line 257, vendor/bundle/ruby/2.6.0/gems/chosen-rails-1.9.0/vendor/assets/stylesheets/chosen.scss */
.chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
  position: absolute;
  top: 4px;
  right: 3px;
  display: block;
  width: 12px;
  height: 12px;
  background: url(/assets/chosen-sprite-8aa69ee6b2376505578d758bfbbc52aec88fa5e591f1a7cabd8adfa80a7b613a.png) -42px 1px no-repeat;
  font-size: 1px;
}

/* line 266, vendor/bundle/ruby/2.6.0/gems/chosen-rails-1.9.0/vendor/assets/stylesheets/chosen.scss */
.chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover {
  background-position: -42px -10px;
}

/* line 271, vendor/bundle/ruby/2.6.0/gems/chosen-rails-1.9.0/vendor/assets/stylesheets/chosen.scss */
.chosen-container-multi .chosen-choices li.search-choice-disabled {
  padding-right: 5px;
  border: 1px solid #ccc;
  background-color: #e4e4e4;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), to(#eee));
  background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
  color: #666;
}

/* line 278, vendor/bundle/ruby/2.6.0/gems/chosen-rails-1.9.0/vendor/assets/stylesheets/chosen.scss */
.chosen-container-multi .chosen-choices li.search-choice-focus {
  background: #d4d4d4;
}

/* line 280, vendor/bundle/ruby/2.6.0/gems/chosen-rails-1.9.0/vendor/assets/stylesheets/chosen.scss */
.chosen-container-multi .chosen-choices li.search-choice-focus .search-choice-close {
  background-position: -42px -10px;
}

/* line 285, vendor/bundle/ruby/2.6.0/gems/chosen-rails-1.9.0/vendor/assets/stylesheets/chosen.scss */
.chosen-container-multi .chosen-results {
  margin: 0;
  padding: 0;
}

/* line 289, vendor/bundle/ruby/2.6.0/gems/chosen-rails-1.9.0/vendor/assets/stylesheets/chosen.scss */
.chosen-container-multi .chosen-drop .result-selected {
  display: list-item;
  color: #ccc;
  cursor: default;
}

/* @end */
/* @group Active  */
/* line 299, vendor/bundle/ruby/2.6.0/gems/chosen-rails-1.9.0/vendor/assets/stylesheets/chosen.scss */
.chosen-container-active .chosen-single {
  border: 1px solid #5897fb;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

/* line 304, vendor/bundle/ruby/2.6.0/gems/chosen-rails-1.9.0/vendor/assets/stylesheets/chosen.scss */
.chosen-container-active.chosen-with-drop .chosen-single {
  border: 1px solid #aaa;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #eee), color-stop(80%, #fff));
  background-image: linear-gradient(#eee 20%, #fff 80%);
  box-shadow: 0 1px 0 #fff inset;
}

/* line 313, vendor/bundle/ruby/2.6.0/gems/chosen-rails-1.9.0/vendor/assets/stylesheets/chosen.scss */
.chosen-container-active.chosen-with-drop .chosen-single div {
  border-left: none;
  background: transparent;
}

/* line 316, vendor/bundle/ruby/2.6.0/gems/chosen-rails-1.9.0/vendor/assets/stylesheets/chosen.scss */
.chosen-container-active.chosen-with-drop .chosen-single div b {
  background-position: -18px 2px;
}

/* line 321, vendor/bundle/ruby/2.6.0/gems/chosen-rails-1.9.0/vendor/assets/stylesheets/chosen.scss */
.chosen-container-active .chosen-choices {
  border: 1px solid #5897fb;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

/* line 324, vendor/bundle/ruby/2.6.0/gems/chosen-rails-1.9.0/vendor/assets/stylesheets/chosen.scss */
.chosen-container-active .chosen-choices li.search-field input[type="text"] {
  color: #222 !important;
}

/* @end */
/* @group Disabled Support */
/* line 332, vendor/bundle/ruby/2.6.0/gems/chosen-rails-1.9.0/vendor/assets/stylesheets/chosen.scss */
.chosen-disabled {
  opacity: 0.5 !important;
  cursor: default;
}

/* line 335, vendor/bundle/ruby/2.6.0/gems/chosen-rails-1.9.0/vendor/assets/stylesheets/chosen.scss */
.chosen-disabled .chosen-single {
  cursor: default;
}

/* line 338, vendor/bundle/ruby/2.6.0/gems/chosen-rails-1.9.0/vendor/assets/stylesheets/chosen.scss */
.chosen-disabled .chosen-choices .search-choice .search-choice-close {
  cursor: default;
}

/* @end */
/* @group Right to Left */
/* line 345, vendor/bundle/ruby/2.6.0/gems/chosen-rails-1.9.0/vendor/assets/stylesheets/chosen.scss */
.chosen-rtl {
  text-align: right;
}

/* line 347, vendor/bundle/ruby/2.6.0/gems/chosen-rails-1.9.0/vendor/assets/stylesheets/chosen.scss */
.chosen-rtl .chosen-single {
  overflow: visible;
  padding: 0 8px 0 0;
}

/* line 351, vendor/bundle/ruby/2.6.0/gems/chosen-rails-1.9.0/vendor/assets/stylesheets/chosen.scss */
.chosen-rtl .chosen-single span {
  margin-right: 0;
  margin-left: 26px;
  direction: rtl;
}

/* line 356, vendor/bundle/ruby/2.6.0/gems/chosen-rails-1.9.0/vendor/assets/stylesheets/chosen.scss */
.chosen-rtl .chosen-single-with-deselect span {
  margin-left: 38px;
}

/* line 359, vendor/bundle/ruby/2.6.0/gems/chosen-rails-1.9.0/vendor/assets/stylesheets/chosen.scss */
.chosen-rtl .chosen-single div {
  right: auto;
  left: 3px;
}

/* line 363, vendor/bundle/ruby/2.6.0/gems/chosen-rails-1.9.0/vendor/assets/stylesheets/chosen.scss */
.chosen-rtl .chosen-single abbr {
  right: auto;
  left: 26px;
}

/* line 367, vendor/bundle/ruby/2.6.0/gems/chosen-rails-1.9.0/vendor/assets/stylesheets/chosen.scss */
.chosen-rtl .chosen-choices li {
  float: right;
}

/* line 369, vendor/bundle/ruby/2.6.0/gems/chosen-rails-1.9.0/vendor/assets/stylesheets/chosen.scss */
.chosen-rtl .chosen-choices li.search-field input[type="text"] {
  direction: rtl;
}

/* line 372, vendor/bundle/ruby/2.6.0/gems/chosen-rails-1.9.0/vendor/assets/stylesheets/chosen.scss */
.chosen-rtl .chosen-choices li.search-choice {
  margin: 3px 5px 3px 0;
  padding: 3px 5px 3px 19px;
}

/* line 375, vendor/bundle/ruby/2.6.0/gems/chosen-rails-1.9.0/vendor/assets/stylesheets/chosen.scss */
.chosen-rtl .chosen-choices li.search-choice .search-choice-close {
  right: auto;
  left: 4px;
}

/* line 381, vendor/bundle/ruby/2.6.0/gems/chosen-rails-1.9.0/vendor/assets/stylesheets/chosen.scss */
.chosen-rtl.chosen-container-single .chosen-results {
  margin: 0 0 4px 4px;
  padding: 0 4px 0 0;
}

/* line 385, vendor/bundle/ruby/2.6.0/gems/chosen-rails-1.9.0/vendor/assets/stylesheets/chosen.scss */
.chosen-rtl .chosen-results li.group-option {
  padding-right: 15px;
  padding-left: 0;
}

/* line 389, vendor/bundle/ruby/2.6.0/gems/chosen-rails-1.9.0/vendor/assets/stylesheets/chosen.scss */
.chosen-rtl.chosen-container-active.chosen-with-drop .chosen-single div {
  border-right: none;
}

/* line 392, vendor/bundle/ruby/2.6.0/gems/chosen-rails-1.9.0/vendor/assets/stylesheets/chosen.scss */
.chosen-rtl .chosen-search input[type="text"] {
  padding: 4px 5px 4px 20px;
  background: url(/assets/chosen-sprite-8aa69ee6b2376505578d758bfbbc52aec88fa5e591f1a7cabd8adfa80a7b613a.png) no-repeat -30px -20px;
  direction: rtl;
}

/* line 398, vendor/bundle/ruby/2.6.0/gems/chosen-rails-1.9.0/vendor/assets/stylesheets/chosen.scss */
.chosen-rtl.chosen-container-single .chosen-single div b {
  background-position: 6px 2px;
}

/* line 402, vendor/bundle/ruby/2.6.0/gems/chosen-rails-1.9.0/vendor/assets/stylesheets/chosen.scss */
.chosen-rtl.chosen-container-single.chosen-with-drop .chosen-single div b {
  background-position: -12px 2px;
}

/* @end */
/* @group Retina compatibility */
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi), only screen and (min-resolution: 1.5dppx) {
  /* line 413, vendor/bundle/ruby/2.6.0/gems/chosen-rails-1.9.0/vendor/assets/stylesheets/chosen.scss */
  .chosen-rtl .chosen-search input[type="text"],
  .chosen-container-single .chosen-single abbr,
  .chosen-container-single .chosen-single div b,
  .chosen-container-single .chosen-search input[type="text"],
  .chosen-container-multi .chosen-choices .search-choice .search-choice-close,
  .chosen-container .chosen-results-scroll-down span,
  .chosen-container .chosen-results-scroll-up span {
    background-image: url(/assets/chosen-sprite@2x-1e349b80fba8c23b63656925fda8dfe3c5927b5d0d8a1672143416caacf460fb.png) !important;
    background-size: 52px 37px !important;
    background-repeat: no-repeat !important;
  }
}

/* @end */
/* CSS-Tricks Example - by Chris Coyier - http://css-tricks.com */
/* line 3, app/assets/stylesheets/progress_bars.css */
.meter {
  position: absolute;
  display: block;
  bottom: 5px;
  left: 5px;
  right: 5px;
  z-index: 99;
  background: #fff;
  border-radius: 8px;
  padding: 3px;
  box-shadow: inset 0 -1px 1px rgba(255, 255, 255, 0.3);
}

/* line 17, app/assets/stylesheets/progress_bars.css */
.meter > span {
  display: block;
  height: 12px;
  border-radius: 6px;
  box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.69);
  background-color: #2bc253;
  position: relative;
  overflow: hidden;
}

/* line 26, app/assets/stylesheets/progress_bars.css */
.meter > span:after, .animate > span > span {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-image: -moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
  z-index: 1;
  -webkit-background-size: 50px 50px;
  -moz-background-size: 50px 50px;
  -webkit-animation: move 2s linear infinite;
  overflow: hidden;
}

/* line 55, app/assets/stylesheets/progress_bars.css */
.animate > span:after {
  display: none;
}

@-webkit-keyframes move {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 50px 50px;
  }
}

/* line 68, app/assets/stylesheets/progress_bars.css */
.orange > span {
  background-color: #f1a165;
  background-image: -webkit-linear-gradient(#f1a165, #f36d0a);
}

/* line 74, app/assets/stylesheets/progress_bars.css */
.red > span {
  background-color: #f0a3a3;
  background-image: -webkit-linear-gradient(#f0a3a3, #f42323);
}

/* line 80, app/assets/stylesheets/progress_bars.css */
.nostripes > span > span, .nostripes > span:after {
  -webkit-animation: none;
  background-image: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* line 165, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group {
  z-index: 2;
  margin-left: -1px;
}

/* line 9, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

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

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

/* line 15, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav > li {
  position: relative;
  display: block;
}

/* line 19, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav > li > a {
  position: relative;
  display: block;
  padding: 10px 15px;
}

/* line 23, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav > li > a:hover, .nav > li > a:focus {
  text-decoration: none;
  background-color: #eeeeee;
}

/* line 31, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav > li.disabled > a {
  color: #777777;
}

/* line 34, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav > li.disabled > a:hover, .nav > li.disabled > a:focus {
  color: #777777;
  text-decoration: none;
  cursor: not-allowed;
  background-color: transparent;
}

/* line 46, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav .open > a, .nav .open > a:hover, .nav .open > a:focus {
  background-color: #eeeeee;
  border-color: #337ab7;
}

/* line 59, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav .nav-divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}

/* line 66, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav > li > a > img {
  max-width: none;
}

/* line 76, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav-tabs {
  border-bottom: 1px solid #ddd;
}

/* line 78, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav-tabs > li {
  float: left;
  margin-bottom: -1px;
}

/* line 84, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav-tabs > li > a {
  margin-right: 2px;
  line-height: 1.428571429;
  border: 1px solid transparent;
  border-radius: 4px 4px 0 0;
}

/* line 89, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav-tabs > li > a:hover {
  border-color: #eeeeee #eeeeee #ddd;
}

/* line 96, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
  color: #555555;
  cursor: default;
  background-color: #fff;
  border: 1px solid #ddd;
  border-bottom-color: transparent;
}

/* line 118, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav-pills > li {
  float: left;
}

/* line 122, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav-pills > li > a {
  border-radius: 4px;
}

/* line 125, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav-pills > li + li {
  margin-left: 2px;
}

/* line 131, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus {
  color: #fff;
  background-color: #337ab7;
}

/* line 144, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav-stacked > li {
  float: none;
}

/* line 146, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav-stacked > li + li {
  margin-top: 2px;
  margin-left: 0;
}

/* line 160, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav-justified, .nav-tabs.nav-justified {
  width: 100%;
}

/* line 163, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav-justified > li, .nav-tabs.nav-justified > li {
  float: none;
}

/* line 165, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav-justified > li > a, .nav-tabs.nav-justified > li > a {
  margin-bottom: 5px;
  text-align: center;
}

/* line 171, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}

@media (min-width: 768px) {
  /* line 177, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
  .nav-justified > li, .nav-tabs.nav-justified > li {
    display: table-cell;
    width: 1%;
  }
  /* line 180, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
  .nav-justified > li > a, .nav-tabs.nav-justified > li > a {
    margin-bottom: 0;
  }
}

/* line 190, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav-tabs-justified, .nav-tabs.nav-justified {
  border-bottom: 0;
}

/* line 193, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a {
  margin-right: 0;
  border-radius: 4px;
}

/* line 199, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a,
.nav-tabs-justified > .active > a:hover,
.nav-tabs.nav-justified > .active > a:hover,
.nav-tabs-justified > .active > a:focus,
.nav-tabs.nav-justified > .active > a:focus {
  border: 1px solid #ddd;
}

@media (min-width: 768px) {
  /* line 206, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
  .nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a {
    border-bottom: 1px solid #ddd;
    border-radius: 4px 4px 0 0;
  }
  /* line 210, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
  .nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a,
  .nav-tabs-justified > .active > a:hover,
  .nav-tabs.nav-justified > .active > a:hover,
  .nav-tabs-justified > .active > a:focus,
  .nav-tabs.nav-justified > .active > a:focus {
    border-bottom-color: #fff;
  }
}

/* line 224, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.tab-content > .tab-pane {
  display: none;
}

/* line 227, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.tab-content > .active {
  display: block;
}

/* line 237, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar {
  position: relative;
  min-height: 50px;
  margin-bottom: 20px;
  border: 1px solid transparent;
}

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

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

@media (min-width: 768px) {
  /* line 11, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar {
    border-radius: 4px;
  }
}

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

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

@media (min-width: 768px) {
  /* line 31, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-header {
    float: left;
  }
}

/* line 50, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-collapse {
  padding-right: 15px;
  padding-left: 15px;
  overflow-x: visible;
  border-top: 1px solid transparent;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  -webkit-overflow-scrolling: touch;
}

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

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

/* line 59, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-collapse.in {
  overflow-y: auto;
}

@media (min-width: 768px) {
  /* line 50, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-collapse {
    width: auto;
    border-top: 0;
    box-shadow: none;
  }
  /* line 68, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-collapse.collapse {
    display: block !important;
    height: auto !important;
    padding-bottom: 0;
    overflow: visible !important;
  }
  /* line 75, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-collapse.in {
    overflow-y: visible;
  }
  /* line 81, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-fixed-top .navbar-collapse,
  .navbar-static-top .navbar-collapse,
  .navbar-fixed-bottom .navbar-collapse {
    padding-right: 0;
    padding-left: 0;
  }
}

/* line 90, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-fixed-top,
.navbar-fixed-bottom {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1030;
}

/* line 92, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-fixed-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
  max-height: 340px;
}

@media (max-device-width: 480px) and (orientation: landscape) {
  /* line 92, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-fixed-top .navbar-collapse,
  .navbar-fixed-bottom .navbar-collapse {
    max-height: 200px;
  }
}

@media (min-width: 768px) {
  /* line 90, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-fixed-top,
  .navbar-fixed-bottom {
    border-radius: 0;
  }
}

/* line 112, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-fixed-top {
  top: 0;
  border-width: 0 0 1px;
}

/* line 116, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-fixed-bottom {
  bottom: 0;
  margin-bottom: 0;
  border-width: 1px 0 0;
}

/* line 129, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.container > .navbar-header,
.container > .navbar-collapse,
.container-fluid > .navbar-header,
.container-fluid > .navbar-collapse {
  margin-right: -15px;
  margin-left: -15px;
}

@media (min-width: 768px) {
  /* line 129, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .container > .navbar-header,
  .container > .navbar-collapse,
  .container-fluid > .navbar-header,
  .container-fluid > .navbar-collapse {
    margin-right: 0;
    margin-left: 0;
  }
}

/* line 149, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-static-top {
  z-index: 1000;
  border-width: 0 0 1px;
}

@media (min-width: 768px) {
  /* line 149, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-static-top {
    border-radius: 0;
  }
}

/* line 161, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-brand {
  float: left;
  height: 50px;
  padding: 15px 15px;
  font-size: 18px;
  line-height: 20px;
}

/* line 168, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-brand:hover, .navbar-brand:focus {
  text-decoration: none;
}

/* line 173, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-brand > img {
  display: block;
}

@media (min-width: 768px) {
  /* line 178, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar > .container .navbar-brand,
  .navbar > .container-fluid .navbar-brand {
    margin-left: -15px;
  }
}

/* line 191, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-toggle {
  position: relative;
  float: right;
  padding: 9px 10px;
  margin-right: 15px;
  margin-top: 8px;
  margin-bottom: 8px;
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}

/* line 204, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-toggle:focus {
  outline: 0;
}

/* line 209, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-toggle .icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px;
}

/* line 215, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-toggle .icon-bar + .icon-bar {
  margin-top: 4px;
}

@media (min-width: 768px) {
  /* line 191, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-toggle {
    display: none;
  }
}

/* line 230, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-nav {
  margin: 7.5px -15px;
}

/* line 233, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-nav > li > a {
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 20px;
}

@media (max-width: 767px) {
  /* line 241, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-nav .open .dropdown-menu {
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    background-color: transparent;
    border: 0;
    box-shadow: none;
  }
  /* line 249, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-nav .open .dropdown-menu > li > a,
  .navbar-nav .open .dropdown-menu .dropdown-header {
    padding: 5px 15px 5px 25px;
  }
  /* line 253, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-nav .open .dropdown-menu > li > a {
    line-height: 20px;
  }
  /* line 255, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-nav .open .dropdown-menu > li > a:focus {
    background-image: none;
  }
}

@media (min-width: 768px) {
  /* line 230, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-nav {
    float: left;
    margin: 0;
  }
  /* line 268, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-nav > li {
    float: left;
  }
  /* line 270, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-nav > li > a {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}

/* line 284, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-form {
  padding: 10px 15px;
  margin-right: -15px;
  margin-left: -15px;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  margin-top: 8px;
  margin-bottom: 8px;
}

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

@media (max-width: 767px) {
  /* line 296, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-form .form-group {
    margin-bottom: 5px;
  }
  /* line 300, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-form .form-group:last-child {
    margin-bottom: 0;
  }
}

@media (min-width: 768px) {
  /* line 284, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-form {
    width: auto;
    padding-top: 0;
    padding-bottom: 0;
    margin-right: 0;
    margin-left: 0;
    border: 0;
    box-shadow: none;
  }
}

/* line 325, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-nav > li > .dropdown-menu {
  margin-top: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

/* line 330, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
  margin-bottom: 0;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

/* line 341, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-btn {
  margin-top: 8px;
  margin-bottom: 8px;
}

/* line 344, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-btn.btn-sm, .btn-group-sm > .navbar-btn.btn {
  margin-top: 10px;
  margin-bottom: 10px;
}

/* line 347, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-btn.btn-xs, .btn-group-xs > .navbar-btn.btn {
  margin-top: 14px;
  margin-bottom: 14px;
}

/* line 357, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-text {
  margin-top: 15px;
  margin-bottom: 15px;
}

@media (min-width: 768px) {
  /* line 357, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-text {
    float: left;
    margin-right: 15px;
    margin-left: 15px;
  }
}

@media (min-width: 768px) {
  /* line 377, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-left {
    float: left !important;
  }
  /* line 380, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-right {
    float: right !important;
    margin-right: -15px;
  }
  /* line 384, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-right ~ .navbar-right {
    margin-right: 0;
  }
}

/* line 395, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default {
  background-color: #f8f8f8;
  border-color: #e7e7e7;
}

/* line 399, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-brand {
  color: #777;
}

/* line 401, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus {
  color: #5e5e5e;
  background-color: transparent;
}

/* line 408, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-text {
  color: #777;
}

/* line 413, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-nav > li > a {
  color: #777;
}

/* line 416, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus {
  color: #333;
  background-color: transparent;
}

/* line 423, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus {
  color: #555;
  background-color: #e7e7e7;
}

/* line 431, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-nav > .disabled > a, .navbar-default .navbar-nav > .disabled > a:hover, .navbar-default .navbar-nav > .disabled > a:focus {
  color: #ccc;
  background-color: transparent;
}

/* line 442, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus {
  color: #555;
  background-color: #e7e7e7;
}

@media (max-width: 767px) {
  /* line 453, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-default .navbar-nav .open .dropdown-menu > li > a {
    color: #777;
  }
  /* line 455, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #333;
    background-color: transparent;
  }
  /* line 462, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #555;
    background-color: #e7e7e7;
  }
  /* line 470, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #ccc;
    background-color: transparent;
  }
}

/* line 481, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-toggle {
  border-color: #ddd;
}

/* line 483, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
  background-color: #ddd;
}

/* line 487, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-toggle .icon-bar {
  background-color: #888;
}

/* line 492, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
  border-color: #e7e7e7;
}

/* line 502, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-link {
  color: #777;
}

/* line 504, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-link:hover {
  color: #333;
}

/* line 509, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .btn-link {
  color: #777;
}

/* line 511, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .btn-link:hover, .navbar-default .btn-link:focus {
  color: #333;
}

/* line 517, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .btn-link[disabled]:hover, .navbar-default .btn-link[disabled]:focus,
fieldset[disabled] .navbar-default .btn-link:hover,
fieldset[disabled] .navbar-default .btn-link:focus {
  color: #ccc;
}

/* line 527, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse {
  background-color: #222;
  border-color: #090909;
}

/* line 531, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-brand {
  color: #9d9d9d;
}

/* line 533, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-brand:hover, .navbar-inverse .navbar-brand:focus {
  color: #fff;
  background-color: transparent;
}

/* line 540, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-text {
  color: #9d9d9d;
}

/* line 545, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-nav > li > a {
  color: #9d9d9d;
}

/* line 548, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-nav > li > a:hover, .navbar-inverse .navbar-nav > li > a:focus {
  color: #fff;
  background-color: transparent;
}

/* line 555, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse .navbar-nav > .active > a:focus {
  color: #fff;
  background-color: #090909;
}

/* line 563, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-nav > .disabled > a, .navbar-inverse .navbar-nav > .disabled > a:hover, .navbar-inverse .navbar-nav > .disabled > a:focus {
  color: #444;
  background-color: transparent;
}

/* line 573, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:hover, .navbar-inverse .navbar-nav > .open > a:focus {
  color: #fff;
  background-color: #090909;
}

@media (max-width: 767px) {
  /* line 584, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
    border-color: #090909;
  }
  /* line 587, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
    background-color: #090909;
  }
  /* line 590, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
    color: #9d9d9d;
  }
  /* line 592, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #fff;
    background-color: transparent;
  }
  /* line 599, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #fff;
    background-color: #090909;
  }
  /* line 607, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #444;
    background-color: transparent;
  }
}

/* line 619, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-toggle {
  border-color: #333;
}

/* line 621, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-toggle:hover, .navbar-inverse .navbar-toggle:focus {
  background-color: #333;
}

/* line 625, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-toggle .icon-bar {
  background-color: #fff;
}

/* line 630, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-collapse,
.navbar-inverse .navbar-form {
  border-color: #101010;
}

/* line 635, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-link {
  color: #9d9d9d;
}

/* line 637, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-link:hover {
  color: #fff;
}

/* line 642, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .btn-link {
  color: #9d9d9d;
}

/* line 644, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .btn-link:hover, .navbar-inverse .btn-link:focus {
  color: #fff;
}

/* line 650, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .btn-link[disabled]:hover, .navbar-inverse .btn-link[disabled]:focus,
fieldset[disabled] .navbar-inverse .btn-link:hover,
fieldset[disabled] .navbar-inverse .btn-link:focus {
  color: #444;
}

/* line 6, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_breadcrumbs.scss */
.breadcrumb {
  padding: 8px 15px;
  margin-bottom: 20px;
  list-style: none;
  background-color: #f5f5f5;
  border-radius: 4px;
}

/* line 13, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_breadcrumbs.scss */
.breadcrumb > li {
  display: inline-block;
}

/* line 16, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_breadcrumbs.scss */
.breadcrumb > li + li:before {
  padding: 0 5px;
  color: #ccc;
  content: "/ ";
}

/* line 25, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_breadcrumbs.scss */
.breadcrumb > .active {
  color: #777777;
}

/* line 4, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pagination.scss */
.pagination {
  display: inline-block;
  padding-left: 0;
  margin: 20px 0;
  border-radius: 4px;
}

/* line 10, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pagination.scss */
.pagination > li {
  display: inline;
}

/* line 12, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pagination.scss */
.pagination > li > a,
.pagination > li > span {
  position: relative;
  float: left;
  padding: 6px 12px;
  margin-left: -1px;
  line-height: 1.428571429;
  color: #337ab7;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #ddd;
}

/* line 24, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pagination.scss */
.pagination > li > a:hover, .pagination > li > a:focus,
.pagination > li > span:hover,
.pagination > li > span:focus {
  z-index: 2;
  color: #23527c;
  background-color: #eeeeee;
  border-color: #ddd;
}

/* line 33, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pagination.scss */
.pagination > li:first-child > a,
.pagination > li:first-child > span {
  margin-left: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

/* line 40, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pagination.scss */
.pagination > li:last-child > a,
.pagination > li:last-child > span {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

/* line 49, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pagination.scss */
.pagination > .active > a, .pagination > .active > a:hover, .pagination > .active > a:focus,
.pagination > .active > span,
.pagination > .active > span:hover,
.pagination > .active > span:focus {
  z-index: 3;
  color: #fff;
  cursor: default;
  background-color: #337ab7;
  border-color: #337ab7;
}

/* line 61, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pagination.scss */
.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
  color: #777777;
  cursor: not-allowed;
  background-color: #fff;
  border-color: #ddd;
}

/* line 5, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_pagination.scss */
.pagination-lg > li > a,
.pagination-lg > li > span {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
}

/* line 12, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_pagination.scss */
.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}

/* line 18, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_pagination.scss */
.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}

/* line 5, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_pagination.scss */
.pagination-sm > li > a,
.pagination-sm > li > span {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
}

/* line 12, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_pagination.scss */
.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}

/* line 18, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_pagination.scss */
.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}

/* line 6, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pager.scss */
.pager {
  padding-left: 0;
  margin: 20px 0;
  text-align: center;
  list-style: none;
}

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

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

/* line 12, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pager.scss */
.pager li {
  display: inline;
}

/* line 14, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pager.scss */
.pager li > a,
.pager li > span {
  display: inline-block;
  padding: 5px 14px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 15px;
}

/* line 23, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pager.scss */
.pager li > a:hover,
.pager li > a:focus {
  text-decoration: none;
  background-color: #eeeeee;
}

/* line 31, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pager.scss */
.pager .next > a,
.pager .next > span {
  float: right;
}

/* line 38, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pager.scss */
.pager .previous > a,
.pager .previous > span {
  float: left;
}

/* line 45, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pager.scss */
.pager .disabled > a,
.pager .disabled > a:hover,
.pager .disabled > a:focus,
.pager .disabled > span {
  color: #777777;
  cursor: not-allowed;
  background-color: #fff;
}

/* line 5, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_labels.scss */
.label {
  display: inline;
  padding: .2em .6em .3em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: .25em;
}

/* line 20, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_labels.scss */
.label:empty {
  display: none;
}

/* line 25, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_labels.scss */
.btn .label {
  position: relative;
  top: -1px;
}

/* line 33, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_labels.scss */
a.label:hover, a.label:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

/* line 44, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_labels.scss */
.label-default {
  background-color: #777777;
}

/* line 7, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_labels.scss */
.label-default[href]:hover, .label-default[href]:focus {
  background-color: #5e5e5e;
}

/* line 48, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_labels.scss */
.label-primary {
  background-color: #337ab7;
}

/* line 7, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_labels.scss */
.label-primary[href]:hover, .label-primary[href]:focus {
  background-color: #286090;
}

/* line 52, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_labels.scss */
.label-success {
  background-color: #5cb85c;
}

/* line 7, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_labels.scss */
.label-success[href]:hover, .label-success[href]:focus {
  background-color: #449d44;
}

/* line 56, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_labels.scss */
.label-info {
  background-color: #5bc0de;
}

/* line 7, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_labels.scss */
.label-info[href]:hover, .label-info[href]:focus {
  background-color: #31b0d5;
}

/* line 60, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_labels.scss */
.label-warning {
  background-color: #f0ad4e;
}

/* line 7, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_labels.scss */
.label-warning[href]:hover, .label-warning[href]:focus {
  background-color: #ec971f;
}

/* line 64, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_labels.scss */
.label-danger {
  background-color: #d9534f;
}

/* line 7, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_labels.scss */
.label-danger[href]:hover, .label-danger[href]:focus {
  background-color: #c9302c;
}

/* line 7, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_badges.scss */
.badge {
  display: inline-block;
  min-width: 10px;
  padding: 3px 7px;
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  background-color: #777777;
  border-radius: 10px;
}

/* line 22, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_badges.scss */
.badge:empty {
  display: none;
}

/* line 27, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_badges.scss */
.btn .badge {
  position: relative;
  top: -1px;
}

/* line 32, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_badges.scss */
.btn-xs .badge, .btn-group-xs > .btn .badge,
.btn-group-xs > .btn .badge {
  top: 0;
  padding: 1px 5px;
}

/* line 41, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_badges.scss */
.list-group-item.active > .badge,
.nav-pills > .active > a > .badge {
  color: #337ab7;
  background-color: #fff;
}

/* line 47, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_badges.scss */
.list-group-item > .badge {
  float: right;
}

/* line 51, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_badges.scss */
.list-group-item > .badge + .badge {
  margin-right: 5px;
}

/* line 55, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_badges.scss */
.nav-pills > li > a > .badge {
  margin-left: 3px;
}

/* line 62, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_badges.scss */
a.badge:hover, a.badge:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

/* line 6, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_jumbotron.scss */
.jumbotron {
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 30px;
  color: inherit;
  background-color: #eeeeee;
}

/* line 13, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_jumbotron.scss */
.jumbotron h1,
.jumbotron .h1 {
  color: inherit;
}

/* line 18, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_jumbotron.scss */
.jumbotron p {
  margin-bottom: 15px;
  font-size: 21px;
  font-weight: 200;
}

/* line 24, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_jumbotron.scss */
.jumbotron > hr {
  border-top-color: #d5d5d5;
}

/* line 28, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_jumbotron.scss */
.container .jumbotron,
.container-fluid .jumbotron {
  padding-right: 15px;
  padding-left: 15px;
  border-radius: 6px;
}

/* line 35, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_jumbotron.scss */
.jumbotron .container {
  max-width: 100%;
}

@media screen and (min-width: 768px) {
  /* line 6, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_jumbotron.scss */
  .jumbotron {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  /* line 43, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_jumbotron.scss */
  .container .jumbotron,
  .container-fluid .jumbotron {
    padding-right: 60px;
    padding-left: 60px;
  }
  /* line 49, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_jumbotron.scss */
  .jumbotron h1,
  .jumbotron .h1 {
    font-size: 63px;
  }
}

/* line 7, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_thumbnails.scss */
.thumbnail {
  display: block;
  padding: 4px;
  margin-bottom: 20px;
  line-height: 1.428571429;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  -webkit-transition: border 0.2s ease-in-out;
  transition: border 0.2s ease-in-out;
}

/* line 17, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_thumbnails.scss */
.thumbnail > img,
.thumbnail a > img {
  display: block;
  max-width: 100%;
  height: auto;
  margin-right: auto;
  margin-left: auto;
}

/* line 27, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_thumbnails.scss */
.thumbnail .caption {
  padding: 9px;
  color: #333333;
}

/* line 34, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_thumbnails.scss */
a.thumbnail:hover,
a.thumbnail:focus,
a.thumbnail.active {
  border-color: #337ab7;
}

/* line 9, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_alerts.scss */
.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
}

/* line 16, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_alerts.scss */
.alert h4 {
  margin-top: 0;
  color: inherit;
}

/* line 22, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_alerts.scss */
.alert .alert-link {
  font-weight: bold;
}

/* line 27, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_alerts.scss */
.alert > p,
.alert > ul {
  margin-bottom: 0;
}

/* line 32, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_alerts.scss */
.alert > p + p {
  margin-top: 5px;
}

/* line 42, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_alerts.scss */
.alert-dismissable,
.alert-dismissible {
  padding-right: 35px;
}

/* line 47, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_alerts.scss */
.alert-dismissable .close,
.alert-dismissible .close {
  position: relative;
  top: -2px;
  right: -21px;
  color: inherit;
}

/* line 59, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_alerts.scss */
.alert-success {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}

/* line 8, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_alerts.scss */
.alert-success hr {
  border-top-color: #c9e2b3;
}

/* line 12, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_alerts.scss */
.alert-success .alert-link {
  color: #2b542c;
}

/* line 63, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_alerts.scss */
.alert-info {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1;
}

/* line 8, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_alerts.scss */
.alert-info hr {
  border-top-color: #a6e1ec;
}

/* line 12, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_alerts.scss */
.alert-info .alert-link {
  color: #245269;
}

/* line 67, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_alerts.scss */
.alert-warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
}

/* line 8, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_alerts.scss */
.alert-warning hr {
  border-top-color: #f7e1b5;
}

/* line 12, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_alerts.scss */
.alert-warning .alert-link {
  color: #66512c;
}

/* line 71, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_alerts.scss */
.alert-danger {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}

/* line 8, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_alerts.scss */
.alert-danger hr {
  border-top-color: #e4b9c0;
}

/* line 12, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_alerts.scss */
.alert-danger .alert-link {
  color: #843534;
}

@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}

@keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}

/* line 26, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_progress-bars.scss */
.progress {
  height: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  background-color: #f5f5f5;
  border-radius: 4px;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* line 36, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_progress-bars.scss */
.progress-bar {
  float: left;
  width: 0%;
  height: 100%;
  font-size: 12px;
  line-height: 20px;
  color: #fff;
  text-align: center;
  background-color: #337ab7;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  -webkit-transition: width 0.6s ease;
  transition: width 0.6s ease;
}

/* line 54, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_progress-bars.scss */
.progress-striped .progress-bar,
.progress-bar-striped {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 40px 40px;
}

/* line 64, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_progress-bars.scss */
.progress.active .progress-bar,
.progress-bar.active {
  -webkit-animation: progress-bar-stripes 2s linear infinite;
  animation: progress-bar-stripes 2s linear infinite;
}

/* line 73, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_progress-bars.scss */
.progress-bar-success {
  background-color: #5cb85c;
}

/* line 7, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_progress-bar.scss */
.progress-striped .progress-bar-success {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}

/* line 77, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_progress-bars.scss */
.progress-bar-info {
  background-color: #5bc0de;
}

/* line 7, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_progress-bar.scss */
.progress-striped .progress-bar-info {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}

/* line 81, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_progress-bars.scss */
.progress-bar-warning {
  background-color: #f0ad4e;
}

/* line 7, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_progress-bar.scss */
.progress-striped .progress-bar-warning {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}

/* line 85, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_progress-bars.scss */
.progress-bar-danger {
  background-color: #d9534f;
}

/* line 7, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_progress-bar.scss */
.progress-striped .progress-bar-danger {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_media.scss */
.media {
  margin-top: 15px;
}

/* line 5, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_media.scss */
.media:first-child {
  margin-top: 0;
}

/* line 10, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_media.scss */
.media,
.media-body {
  overflow: hidden;
  zoom: 1;
}

/* line 16, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_media.scss */
.media-body {
  width: 10000px;
}

/* line 20, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_media.scss */
.media-object {
  display: block;
}

/* line 24, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_media.scss */
.media-object.img-thumbnail {
  max-width: none;
}

/* line 29, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_media.scss */
.media-right,
.media > .pull-right {
  padding-left: 10px;
}

/* line 34, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_media.scss */
.media-left,
.media > .pull-left {
  padding-right: 10px;
}

/* line 39, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_media.scss */
.media-left,
.media-right,
.media-body {
  display: table-cell;
  vertical-align: top;
}

/* line 46, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_media.scss */
.media-middle {
  vertical-align: middle;
}

/* line 50, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_media.scss */
.media-bottom {
  vertical-align: bottom;
}

/* line 55, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_media.scss */
.media-heading {
  margin-top: 0;
  margin-bottom: 5px;
}

/* line 63, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_media.scss */
.media-list {
  padding-left: 0;
  list-style: none;
}

/* line 10, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
.list-group {
  padding-left: 0;
  margin-bottom: 20px;
}

/* line 21, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item {
  position: relative;
  display: block;
  padding: 10px 15px;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid #ddd;
}

/* line 31, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

/* line 34, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item:last-child {
  margin-bottom: 0;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}

/* line 40, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item.disabled, .list-group-item.disabled:hover, .list-group-item.disabled:focus {
  color: #777777;
  cursor: not-allowed;
  background-color: #eeeeee;
}

/* line 48, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item.disabled .list-group-item-heading, .list-group-item.disabled:hover .list-group-item-heading, .list-group-item.disabled:focus .list-group-item-heading {
  color: inherit;
}

/* line 51, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item.disabled .list-group-item-text, .list-group-item.disabled:hover .list-group-item-text, .list-group-item.disabled:focus .list-group-item-text {
  color: #777777;
}

/* line 57, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item.active, .list-group-item.active:hover, .list-group-item.active:focus {
  z-index: 2;
  color: #fff;
  background-color: #337ab7;
  border-color: #337ab7;
}

/* line 66, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item.active .list-group-item-heading,
.list-group-item.active .list-group-item-heading > small,
.list-group-item.active .list-group-item-heading > .small, .list-group-item.active:hover .list-group-item-heading,
.list-group-item.active:hover .list-group-item-heading > small,
.list-group-item.active:hover .list-group-item-heading > .small, .list-group-item.active:focus .list-group-item-heading,
.list-group-item.active:focus .list-group-item-heading > small,
.list-group-item.active:focus .list-group-item-heading > .small {
  color: inherit;
}

/* line 71, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item.active .list-group-item-text, .list-group-item.active:hover .list-group-item-text, .list-group-item.active:focus .list-group-item-text {
  color: #c7ddef;
}

/* line 83, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
a.list-group-item,
button.list-group-item {
  color: #555;
}

/* line 87, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
a.list-group-item .list-group-item-heading,
button.list-group-item .list-group-item-heading {
  color: #333;
}

/* line 92, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
a.list-group-item:hover, a.list-group-item:focus,
button.list-group-item:hover,
button.list-group-item:focus {
  color: #555;
  text-decoration: none;
  background-color: #f5f5f5;
}

/* line 100, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
button.list-group-item {
  width: 100%;
  text-align: left;
}

/* line 4, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
.list-group-item-success {
  color: #3c763d;
  background-color: #dff0d8;
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-success,
button.list-group-item-success {
  color: #3c763d;
}

/* line 15, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-success .list-group-item-heading,
button.list-group-item-success .list-group-item-heading {
  color: inherit;
}

/* line 19, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-success:hover, a.list-group-item-success:focus,
button.list-group-item-success:hover,
button.list-group-item-success:focus {
  color: #3c763d;
  background-color: #d0e9c6;
}

/* line 24, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-success.active, a.list-group-item-success.active:hover, a.list-group-item-success.active:focus,
button.list-group-item-success.active,
button.list-group-item-success.active:hover,
button.list-group-item-success.active:focus {
  color: #fff;
  background-color: #3c763d;
  border-color: #3c763d;
}

/* line 4, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
.list-group-item-info {
  color: #31708f;
  background-color: #d9edf7;
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-info,
button.list-group-item-info {
  color: #31708f;
}

/* line 15, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-info .list-group-item-heading,
button.list-group-item-info .list-group-item-heading {
  color: inherit;
}

/* line 19, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-info:hover, a.list-group-item-info:focus,
button.list-group-item-info:hover,
button.list-group-item-info:focus {
  color: #31708f;
  background-color: #c4e3f3;
}

/* line 24, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-info.active, a.list-group-item-info.active:hover, a.list-group-item-info.active:focus,
button.list-group-item-info.active,
button.list-group-item-info.active:hover,
button.list-group-item-info.active:focus {
  color: #fff;
  background-color: #31708f;
  border-color: #31708f;
}

/* line 4, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
.list-group-item-warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-warning,
button.list-group-item-warning {
  color: #8a6d3b;
}

/* line 15, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-warning .list-group-item-heading,
button.list-group-item-warning .list-group-item-heading {
  color: inherit;
}

/* line 19, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-warning:hover, a.list-group-item-warning:focus,
button.list-group-item-warning:hover,
button.list-group-item-warning:focus {
  color: #8a6d3b;
  background-color: #faf2cc;
}

/* line 24, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-warning.active, a.list-group-item-warning.active:hover, a.list-group-item-warning.active:focus,
button.list-group-item-warning.active,
button.list-group-item-warning.active:hover,
button.list-group-item-warning.active:focus {
  color: #fff;
  background-color: #8a6d3b;
  border-color: #8a6d3b;
}

/* line 4, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
.list-group-item-danger {
  color: #a94442;
  background-color: #f2dede;
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-danger,
button.list-group-item-danger {
  color: #a94442;
}

/* line 15, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-danger .list-group-item-heading,
button.list-group-item-danger .list-group-item-heading {
  color: inherit;
}

/* line 19, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-danger:hover, a.list-group-item-danger:focus,
button.list-group-item-danger:hover,
button.list-group-item-danger:focus {
  color: #a94442;
  background-color: #ebcccc;
}

/* line 24, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-danger.active, a.list-group-item-danger.active:hover, a.list-group-item-danger.active:focus,
button.list-group-item-danger.active,
button.list-group-item-danger.active:hover,
button.list-group-item-danger.active:focus {
  color: #fff;
  background-color: #a94442;
  border-color: #a94442;
}

/* line 121, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item-heading {
  margin-top: 0;
  margin-bottom: 5px;
}

/* line 125, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item-text {
  margin-bottom: 0;
  line-height: 1.3;
}

/* line 7, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel {
  margin-bottom: 20px;
  background-color: #fff;
  border: 1px solid transparent;
  border-radius: 4px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}

/* line 16, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel-body {
  padding: 15px;
}

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

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

/* line 22, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel-heading {
  padding: 10px 15px;
  border-bottom: 1px solid transparent;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}

/* line 27, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel-heading > .dropdown .dropdown-toggle {
  color: inherit;
}

/* line 33, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  color: inherit;
}

/* line 39, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel-title > a,
.panel-title > small,
.panel-title > .small,
.panel-title > small > a,
.panel-title > .small > a {
  color: inherit;
}

/* line 49, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel-footer {
  padding: 10px 15px;
  background-color: #f5f5f5;
  border-top: 1px solid #ddd;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

/* line 63, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel > .list-group,
.panel > .panel-collapse > .list-group {
  margin-bottom: 0;
}

/* line 67, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel > .list-group .list-group-item,
.panel > .panel-collapse > .list-group .list-group-item {
  border-width: 1px 0;
  border-radius: 0;
}

/* line 74, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel > .list-group:first-child .list-group-item:first-child,
.panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
  border-top: 0;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}

/* line 82, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel > .list-group:last-child .list-group-item:last-child,
.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
  border-bottom: 0;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

/* line 89, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

/* line 96, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel-heading + .list-group .list-group-item:first-child {
  border-top-width: 0;
}

/* line 100, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.list-group + .panel-footer {
  border-top-width: 0;
}

/* line 110, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table,
.panel > .table-responsive > .table,
.panel > .panel-collapse > .table {
  margin-bottom: 0;
}

/* line 115, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table caption,
.panel > .table-responsive > .table caption,
.panel > .panel-collapse > .table caption {
  padding-right: 15px;
  padding-left: 15px;
}

/* line 121, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table:first-child,
.panel > .table-responsive:first-child > .table:first-child {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}

/* line 127, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table:first-child > thead:first-child > tr:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}

/* line 131, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
  border-top-left-radius: 3px;
}

/* line 135, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
  border-top-right-radius: 3px;
}

/* line 143, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table:last-child,
.panel > .table-responsive:last-child > .table:last-child {
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

/* line 149, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

/* line 153, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
  border-bottom-left-radius: 3px;
}

/* line 157, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
  border-bottom-right-radius: 3px;
}

/* line 164, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel > .panel-body + .table,
.panel > .panel-body + .table-responsive,
.panel > .table + .panel-body,
.panel > .table-responsive + .panel-body {
  border-top: 1px solid #ddd;
}

/* line 170, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table > tbody:first-child > tr:first-child th,
.panel > .table > tbody:first-child > tr:first-child td {
  border-top: 0;
}

/* line 174, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table-bordered,
.panel > .table-responsive > .table-bordered {
  border: 0;
}

/* line 181, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table-bordered > thead > tr > th:first-child,
.panel > .table-bordered > thead > tr > td:first-child,
.panel > .table-bordered > tbody > tr > th:first-child,
.panel > .table-bordered > tbody > tr > td:first-child,
.panel > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-bordered > tfoot > tr > td:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
  border-left: 0;
}

/* line 185, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table-bordered > thead > tr > th:last-child,
.panel > .table-bordered > thead > tr > td:last-child,
.panel > .table-bordered > tbody > tr > th:last-child,
.panel > .table-bordered > tbody > tr > td:last-child,
.panel > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-bordered > tfoot > tr > td:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
  border-right: 0;
}

/* line 194, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table-bordered > thead > tr:first-child > td,
.panel > .table-bordered > thead > tr:first-child > th,
.panel > .table-bordered > tbody > tr:first-child > td,
.panel > .table-bordered > tbody > tr:first-child > th,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
  border-bottom: 0;
}

/* line 203, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table-bordered > tbody > tr:last-child > td,
.panel > .table-bordered > tbody > tr:last-child > th,
.panel > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-bordered > tfoot > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
  border-bottom: 0;
}

/* line 210, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table-responsive {
  margin-bottom: 0;
  border: 0;
}

/* line 222, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel-group {
  margin-bottom: 20px;
}

/* line 226, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel-group .panel {
  margin-bottom: 0;
  border-radius: 4px;
}

/* line 230, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel-group .panel + .panel {
  margin-top: 5px;
}

/* line 235, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel-group .panel-heading {
  border-bottom: 0;
}

/* line 238, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel-group .panel-heading + .panel-collapse > .panel-body,
.panel-group .panel-heading + .panel-collapse > .list-group {
  border-top: 1px solid #ddd;
}

/* line 244, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel-group .panel-footer {
  border-top: 0;
}

/* line 246, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel-group .panel-footer + .panel-collapse .panel-body {
  border-bottom: 1px solid #ddd;
}

/* line 254, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel-default {
  border-color: #ddd;
}

/* line 6, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-default > .panel-heading {
  color: #333333;
  background-color: #f5f5f5;
  border-color: #ddd;
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-default > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #ddd;
}

/* line 14, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-default > .panel-heading .badge {
  color: #f5f5f5;
  background-color: #333333;
}

/* line 20, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-default > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #ddd;
}

/* line 257, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel-primary {
  border-color: #337ab7;
}

/* line 6, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-primary > .panel-heading {
  color: #fff;
  background-color: #337ab7;
  border-color: #337ab7;
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-primary > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #337ab7;
}

/* line 14, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-primary > .panel-heading .badge {
  color: #337ab7;
  background-color: #fff;
}

/* line 20, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-primary > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #337ab7;
}

/* line 260, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel-success {
  border-color: #d6e9c6;
}

/* line 6, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-success > .panel-heading {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-success > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #d6e9c6;
}

/* line 14, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-success > .panel-heading .badge {
  color: #dff0d8;
  background-color: #3c763d;
}

/* line 20, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-success > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #d6e9c6;
}

/* line 263, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel-info {
  border-color: #bce8f1;
}

/* line 6, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-info > .panel-heading {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1;
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-info > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #bce8f1;
}

/* line 14, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-info > .panel-heading .badge {
  color: #d9edf7;
  background-color: #31708f;
}

/* line 20, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-info > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #bce8f1;
}

/* line 266, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel-warning {
  border-color: #faebcc;
}

/* line 6, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-warning > .panel-heading {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-warning > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #faebcc;
}

/* line 14, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-warning > .panel-heading .badge {
  color: #fcf8e3;
  background-color: #8a6d3b;
}

/* line 20, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-warning > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #faebcc;
}

/* line 269, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel-danger {
  border-color: #ebccd1;
}

/* line 6, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-danger > .panel-heading {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-danger > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #ebccd1;
}

/* line 14, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-danger > .panel-heading .badge {
  color: #f2dede;
  background-color: #a94442;
}

/* line 20, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-danger > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #ebccd1;
}

/* line 5, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-embed.scss */
.embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
}

/* line 12, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-embed.scss */
.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* line 28, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-embed.scss */
.embed-responsive-16by9 {
  padding-bottom: 56.25%;
}

/* line 33, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-embed.scss */
.embed-responsive-4by3 {
  padding-bottom: 75%;
}

/* line 7, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_wells.scss */
.well {
  min-height: 20px;
  padding: 19px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
}

/* line 15, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_wells.scss */
.well blockquote {
  border-color: #ddd;
  border-color: rgba(0, 0, 0, 0.15);
}

/* line 22, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_wells.scss */
.well-lg {
  padding: 24px;
  border-radius: 6px;
}

/* line 26, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_wells.scss */
.well-sm {
  padding: 9px;
  border-radius: 3px;
}

/* line 6, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_close.scss */
.close {
  float: right;
  font-size: 21px;
  font-weight: bold;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  filter: alpha(opacity=20);
  opacity: 0.2;
}

/* line 15, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_close.scss */
.close:hover, .close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
  filter: alpha(opacity=50);
  opacity: 0.5;
}

/* line 30, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_close.scss */
button.close {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
.modal-open {
  overflow: hidden;
}

/* line 16, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}

/* line 32, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
.modal.fade .modal-dialog {
  -webkit-transform: translate(0, -25%);
  transform: translate(0, -25%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}

/* line 36, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
.modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

/* line 38, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

/* line 44, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}

/* line 51, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
.modal-content {
  position: relative;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  outline: 0;
}

/* line 64, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
}

/* line 73, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
.modal-backdrop.fade {
  filter: alpha(opacity=0);
  opacity: 0;
}

/* line 74, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
.modal-backdrop.in {
  filter: alpha(opacity=50);
  opacity: 0.5;
}

/* line 79, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
}

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

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

/* line 85, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
.modal-header .close {
  margin-top: -2px;
}

/* line 90, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
.modal-title {
  margin: 0;
  line-height: 1.428571429;
}

/* line 97, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
.modal-body {
  position: relative;
  padding: 15px;
}

/* line 103, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}

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

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

/* line 110, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
.modal-footer .btn + .btn {
  margin-bottom: 0;
  margin-left: 5px;
}

/* line 115, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}

/* line 119, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}

/* line 125, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 768px) {
  /* line 136, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
  .modal-dialog {
    width: 600px;
    margin: 30px auto;
  }
  /* line 140, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
  .modal-content {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  }
  /* line 145, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
  .modal-sm {
    width: 300px;
  }
}

@media (min-width: 992px) {
  /* line 149, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
  .modal-lg {
    width: 900px;
  }
}

/* line 7, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.428571429;
  line-break: auto;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  white-space: normal;
  font-size: 12px;
  filter: alpha(opacity=0);
  opacity: 0;
}

/* line 18, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.in {
  filter: alpha(opacity=90);
  opacity: 0.9;
}

/* line 19, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.top {
  padding: 5px 0;
  margin-top: -3px;
}

/* line 23, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.right {
  padding: 0 5px;
  margin-left: 3px;
}

/* line 27, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.bottom {
  padding: 5px 0;
  margin-top: 3px;
}

/* line 31, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.left {
  padding: 0 5px;
  margin-left: -3px;
}

/* line 37, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.top .tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}

/* line 44, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.top-left .tooltip-arrow {
  right: 5px;
  bottom: 0;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}

/* line 51, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.top-right .tooltip-arrow {
  bottom: 0;
  left: 5px;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}

/* line 58, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: #000;
}

/* line 65, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: #000;
}

/* line 72, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}

/* line 79, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.bottom-left .tooltip-arrow {
  top: 0;
  right: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}

/* line 86, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.bottom-right .tooltip-arrow {
  top: 0;
  left: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}

/* line 96, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 4px;
}

/* line 106, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}

/* line 6, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: none;
  max-width: 276px;
  padding: 1px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.428571429;
  line-break: auto;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  white-space: normal;
  font-size: 14px;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

/* line 26, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
.popover.top {
  margin-top: -10px;
}

/* line 27, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
.popover.right {
  margin-left: 10px;
}

/* line 28, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
.popover.bottom {
  margin-top: 10px;
}

/* line 29, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
.popover.left {
  margin-left: -10px;
}

/* line 33, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
.popover > .arrow {
  border-width: 11px;
}

/* line 36, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
.popover > .arrow, .popover > .arrow:after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}

/* line 46, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
.popover > .arrow:after {
  content: "";
  border-width: 10px;
}

/* line 52, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
.popover.top > .arrow {
  bottom: -11px;
  left: 50%;
  margin-left: -11px;
  border-top-color: #999999;
  border-top-color: rgba(0, 0, 0, 0.25);
  border-bottom-width: 0;
}

/* line 59, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
.popover.top > .arrow:after {
  bottom: 1px;
  margin-left: -10px;
  content: " ";
  border-top-color: #fff;
  border-bottom-width: 0;
}

/* line 67, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
.popover.right > .arrow {
  top: 50%;
  left: -11px;
  margin-top: -11px;
  border-right-color: #999999;
  border-right-color: rgba(0, 0, 0, 0.25);
  border-left-width: 0;
}

/* line 74, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
.popover.right > .arrow:after {
  bottom: -10px;
  left: 1px;
  content: " ";
  border-right-color: #fff;
  border-left-width: 0;
}

/* line 82, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
.popover.bottom > .arrow {
  top: -11px;
  left: 50%;
  margin-left: -11px;
  border-top-width: 0;
  border-bottom-color: #999999;
  border-bottom-color: rgba(0, 0, 0, 0.25);
}

/* line 89, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
.popover.bottom > .arrow:after {
  top: 1px;
  margin-left: -10px;
  content: " ";
  border-top-width: 0;
  border-bottom-color: #fff;
}

/* line 98, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
.popover.left > .arrow {
  top: 50%;
  right: -11px;
  margin-top: -11px;
  border-right-width: 0;
  border-left-color: #999999;
  border-left-color: rgba(0, 0, 0, 0.25);
}

/* line 105, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
.popover.left > .arrow:after {
  right: 1px;
  bottom: -10px;
  content: " ";
  border-right-width: 0;
  border-left-color: #fff;
}

/* line 115, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
.popover-title {
  padding: 8px 14px;
  margin: 0;
  font-size: 14px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-radius: 5px 5px 0 0;
}

/* line 124, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_popovers.scss */
.popover-content {
  padding: 9px 14px;
}

/* line 7, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
.carousel {
  position: relative;
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* line 16, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-inner > .item {
  position: relative;
  display: none;
  -webkit-transition: 0.6s ease-in-out left;
  transition: 0.6s ease-in-out left;
}

/* line 22, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  display: block;
  max-width: 100%;
  height: auto;
  line-height: 1;
}

@media all and (transform-3d), (-webkit-transform-3d) {
  /* line 16, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
  .carousel-inner > .item {
    -webkit-transition: -webkit-transform 0.6s ease-in-out;
    transition: -webkit-transform 0.6s ease-in-out;
    transition: transform 0.6s ease-in-out;
    transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000px;
    perspective: 1000px;
  }
  /* line 34, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
  .carousel-inner > .item.next, .carousel-inner > .item.active.right {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    left: 0;
  }
  /* line 39, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
  .carousel-inner > .item.prev, .carousel-inner > .item.active.left {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    left: 0;
  }
  /* line 44, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
  .carousel-inner > .item.next.left, .carousel-inner > .item.prev.right, .carousel-inner > .item.active {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    left: 0;
  }
}

/* line 53, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-inner > .active,
.carousel-inner > .next,
.carousel-inner > .prev {
  display: block;
}

/* line 59, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-inner > .active {
  left: 0;
}

/* line 63, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-inner > .next,
.carousel-inner > .prev {
  position: absolute;
  top: 0;
  width: 100%;
}

/* line 70, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-inner > .next {
  left: 100%;
}

/* line 73, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-inner > .prev {
  left: -100%;
}

/* line 76, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-inner > .next.left,
.carousel-inner > .prev.right {
  left: 0;
}

/* line 81, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-inner > .active.left {
  left: -100%;
}

/* line 84, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-inner > .active.right {
  left: 100%;
}

/* line 93, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-control {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 15%;
  font-size: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  background-color: rgba(0, 0, 0, 0);
  filter: alpha(opacity=50);
  opacity: 0.5;
}

/* line 109, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-control.left {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.0001)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
  background-repeat: repeat-x;
}

/* line 112, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-control.right {
  right: 0;
  left: auto;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.5)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
  background-repeat: repeat-x;
}

/* line 119, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-control:hover, .carousel-control:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  filter: alpha(opacity=90);
  opacity: 0.9;
}

/* line 128, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-control .icon-prev,
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: inline-block;
  margin-top: -10px;
}

/* line 138, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-control .icon-prev,
.carousel-control .glyphicon-chevron-left {
  left: 50%;
  margin-left: -10px;
}

/* line 143, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-right {
  right: 50%;
  margin-right: -10px;
}

/* line 148, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-control .icon-prev,
.carousel-control .icon-next {
  width: 20px;
  height: 20px;
  font-family: serif;
  line-height: 1;
}

/* line 157, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-control .icon-prev:before {
  content: "\2039";
}

/* line 162, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-control .icon-next:before {
  content: "\203a";
}

/* line 173, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  z-index: 15;
  width: 60%;
  padding-left: 0;
  margin-left: -30%;
  text-align: center;
  list-style: none;
}

/* line 184, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-indicators li {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 1px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #000 \9;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #fff;
  border-radius: 10px;
}

/* line 207, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-indicators .active {
  width: 12px;
  height: 12px;
  margin: 0;
  background-color: #fff;
}

/* line 218, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}

/* line 230, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-caption .btn {
  text-shadow: none;
}

@media screen and (min-width: 768px) {
  /* line 241, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-prev,
  .carousel-control .icon-next {
    width: 30px;
    height: 30px;
    margin-top: -10px;
    font-size: 30px;
  }
  /* line 250, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .icon-prev {
    margin-left: -10px;
  }
  /* line 254, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-next {
    margin-right: -10px;
  }
  /* line 261, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
  .carousel-caption {
    right: 20%;
    left: 20%;
    padding-bottom: 30px;
  }
  /* line 268, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_carousel.scss */
  .carousel-indicators {
    bottom: 20px;
  }
}

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

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

/* line 12, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_utilities.scss */
.center-block {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

/* line 15, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_utilities.scss */
.pull-right {
  float: right !important;
}

/* line 18, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_utilities.scss */
.pull-left {
  float: left !important;
}

/* line 27, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_utilities.scss */
.hide {
  display: none !important;
}

/* line 30, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_utilities.scss */
.show {
  display: block !important;
}

/* line 33, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_utilities.scss */
.invisible {
  visibility: hidden;
}

/* line 36, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_utilities.scss */
.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

/* line 45, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_utilities.scss */
.hidden {
  display: none !important;
}

/* line 53, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_utilities.scss */
.affix {
  position: fixed;
}

@-ms-viewport {
  width: device-width;
}

/* line 14, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
.visible-xs {
  display: none !important;
}

/* line 14, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
.visible-sm {
  display: none !important;
}

/* line 14, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
.visible-md {
  display: none !important;
}

/* line 14, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
.visible-lg {
  display: none !important;
}

/* line 36, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important;
}

@media (max-width: 767px) {
  /* line 3, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  .visible-xs {
    display: block !important;
  }
  /* line 6, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  table.visible-xs {
    display: table !important;
  }
  /* line 7, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  tr.visible-xs {
    display: table-row !important;
  }
  /* line 8, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  th.visible-xs,
  td.visible-xs {
    display: table-cell !important;
  }
}

@media (max-width: 767px) {
  /* line 54, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-xs-block {
    display: block !important;
  }
}

@media (max-width: 767px) {
  /* line 59, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-xs-inline {
    display: inline !important;
  }
}

@media (max-width: 767px) {
  /* line 64, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-xs-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  /* line 3, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  .visible-sm {
    display: block !important;
  }
  /* line 6, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  table.visible-sm {
    display: table !important;
  }
  /* line 7, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  tr.visible-sm {
    display: table-row !important;
  }
  /* line 8, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  th.visible-sm,
  td.visible-sm {
    display: table-cell !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  /* line 73, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-sm-block {
    display: block !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  /* line 78, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-sm-inline {
    display: inline !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  /* line 83, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-sm-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  /* line 3, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  .visible-md {
    display: block !important;
  }
  /* line 6, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  table.visible-md {
    display: table !important;
  }
  /* line 7, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  tr.visible-md {
    display: table-row !important;
  }
  /* line 8, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  th.visible-md,
  td.visible-md {
    display: table-cell !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  /* line 92, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-md-block {
    display: block !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  /* line 97, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-md-inline {
    display: inline !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  /* line 102, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-md-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 1200px) {
  /* line 3, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  .visible-lg {
    display: block !important;
  }
  /* line 6, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  table.visible-lg {
    display: table !important;
  }
  /* line 7, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  tr.visible-lg {
    display: table-row !important;
  }
  /* line 8, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  th.visible-lg,
  td.visible-lg {
    display: table-cell !important;
  }
}

@media (min-width: 1200px) {
  /* line 111, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-lg-block {
    display: block !important;
  }
}

@media (min-width: 1200px) {
  /* line 116, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-lg-inline {
    display: inline !important;
  }
}

@media (min-width: 1200px) {
  /* line 121, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-lg-inline-block {
    display: inline-block !important;
  }
}

@media (max-width: 767px) {
  /* line 14, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  .hidden-xs {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  /* line 14, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  .hidden-sm {
    display: none !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  /* line 14, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  .hidden-md {
    display: none !important;
  }
}

@media (min-width: 1200px) {
  /* line 14, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  .hidden-lg {
    display: none !important;
  }
}

/* line 14, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
.visible-print {
  display: none !important;
}

@media print {
  /* line 3, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  .visible-print {
    display: block !important;
  }
  /* line 6, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  table.visible-print {
    display: table !important;
  }
  /* line 7, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  tr.visible-print {
    display: table-row !important;
  }
  /* line 8, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  th.visible-print,
  td.visible-print {
    display: table-cell !important;
  }
}

/* line 155, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
.visible-print-block {
  display: none !important;
}

@media print {
  /* line 155, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-print-block {
    display: block !important;
  }
}

/* line 162, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
.visible-print-inline {
  display: none !important;
}

@media print {
  /* line 162, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-print-inline {
    display: inline !important;
  }
}

/* line 169, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
.visible-print-inline-block {
  display: none !important;
}

@media print {
  /* line 169, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-print-inline-block {
    display: inline-block !important;
  }
}

@media print {
  /* line 14, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  .hidden-print {
    display: none !important;
  }
}

/* line 131, app/assets/stylesheets/_variables.scss */
.card-material .display-block {
  display: block;
}

/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
/* line 9, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_normalize.scss */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* line 125, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_scaffolding.scss */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* line 141, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_scaffolding.scss */
.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

/* line 159, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_scaffolding.scss */
[role="button"] {
  cursor: pointer;
}

/* line 9, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  color: inherit;
}

/* line 16, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
h1 small,
h1 .small, h2 small,
h2 .small, h3 small,
h3 .small, h4 small,
h4 .small, h5 small,
h5 .small, h6 small,
h6 .small,
.h1 small,
.h1 .small, .h2 small,
.h2 .small, .h3 small,
.h3 .small, .h4 small,
.h4 .small, .h5 small,
.h5 .small, .h6 small,
.h6 .small {
  font-weight: 400;
  line-height: 1;
  color: #777777;
}

/* line 24, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
h1, .h1,
h2, .h2,
h3, .h3 {
  margin-top: 20px;
  margin-bottom: 10px;
}

/* line 30, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
h1 small,
h1 .small, .h1 small,
.h1 .small,
h2 small,
h2 .small, .h2 small,
.h2 .small,
h3 small,
h3 .small, .h3 small,
.h3 .small {
  font-size: 65%;
}

/* line 35, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
h4, .h4,
h5, .h5,
h6, .h6 {
  margin-top: 10px;
  margin-bottom: 10px;
}

/* line 41, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
h4 small,
h4 .small, .h4 small,
.h4 .small,
h5 small,
h5 .small, .h5 small,
.h5 .small,
h6 small,
h6 .small, .h6 small,
.h6 .small {
  font-size: 75%;
}

/* line 47, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
h1, .h1 {
  font-size: 36px;
}

/* line 48, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
h2, .h2 {
  font-size: 30px;
}

/* line 49, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
h3, .h3 {
  font-size: 24px;
}

/* line 50, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
h4, .h4 {
  font-size: 18px;
}

/* line 51, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
h5, .h5 {
  font-size: 14px;
}

/* line 52, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
h6, .h6 {
  font-size: 12px;
}

/* line 58, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
p {
  margin: 0 0 10px;
}

/* line 62, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
.lead {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
}

@media (min-width: 768px) {
  /* line 62, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
  .lead {
    font-size: 21px;
  }
}

/* line 78, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
small,
.small {
  font-size: 85%;
}

/* line 83, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
mark,
.mark {
  padding: .2em;
  background-color: #fcf8e3;
}

/* line 90, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
.text-left {
  text-align: left;
}

/* line 91, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
.text-right {
  text-align: right;
}

/* line 92, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
.text-center {
  text-align: center;
}

/* line 93, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
.text-justify {
  text-align: justify;
}

/* line 94, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
.text-nowrap {
  white-space: nowrap;
}

/* line 97, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
.text-lowercase {
  text-transform: lowercase;
}

/* line 98, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
.text-uppercase, .initialism {
  text-transform: uppercase;
}

/* line 99, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
.text-capitalize {
  text-transform: capitalize;
}

/* line 102, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
.text-muted {
  color: #777777;
}

/* line 5, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
.text-primary {
  color: #337ab7;
}

/* line 8, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
a.text-primary:hover,
a.text-primary:focus {
  color: #286090;
}

/* line 5, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
.text-success {
  color: #3c763d;
}

/* line 8, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
a.text-success:hover,
a.text-success:focus {
  color: #2b542c;
}

/* line 5, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
.text-info {
  color: #31708f;
}

/* line 8, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
a.text-info:hover,
a.text-info:focus {
  color: #245269;
}

/* line 5, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
.text-warning {
  color: #8a6d3b;
}

/* line 8, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
a.text-warning:hover,
a.text-warning:focus {
  color: #66512c;
}

/* line 5, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
.text-danger {
  color: #a94442;
}

/* line 8, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
a.text-danger:hover,
a.text-danger:focus {
  color: #843534;
}

/* line 119, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
.bg-primary {
  color: #fff;
}

/* line 5, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
.bg-primary {
  background-color: #337ab7;
}

/* line 8, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
a.bg-primary:hover,
a.bg-primary:focus {
  background-color: #286090;
}

/* line 5, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
.bg-success {
  background-color: #dff0d8;
}

/* line 8, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
a.bg-success:hover,
a.bg-success:focus {
  background-color: #c1e2b3;
}

/* line 5, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
.bg-info {
  background-color: #d9edf7;
}

/* line 8, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
a.bg-info:hover,
a.bg-info:focus {
  background-color: #afd9ee;
}

/* line 5, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
.bg-warning {
  background-color: #fcf8e3;
}

/* line 8, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
a.bg-warning:hover,
a.bg-warning:focus {
  background-color: #f7ecb5;
}

/* line 5, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
.bg-danger {
  background-color: #f2dede;
}

/* line 8, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
a.bg-danger:hover,
a.bg-danger:focus {
  background-color: #e4b9b9;
}

/* line 138, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
.page-header {
  padding-bottom: 9px;
  margin: 40px 0 20px;
  border-bottom: 1px solid #eeeeee;
}

/* line 149, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
ul,
ol {
  margin-top: 0;
  margin-bottom: 10px;
}

/* line 153, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
ul ul,
ul ol,
ol ul,
ol ol {
  margin-bottom: 0;
}

/* line 167, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
.list-unstyled {
  padding-left: 0;
  list-style: none;
}

/* line 173, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
.list-inline {
  padding-left: 0;
  list-style: none;
  margin-left: -5px;
}

/* line 177, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
.list-inline > li {
  display: inline-block;
  padding-right: 5px;
  padding-left: 5px;
}

/* line 185, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
dl {
  margin-top: 0;
  margin-bottom: 20px;
}

/* line 189, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
dt,
dd {
  line-height: 1.428571429;
}

/* line 193, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
dt {
  font-weight: 700;
}

/* line 196, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
dd {
  margin-left: 0;
}

/* line 14, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.dl-horizontal dd:before, .dl-horizontal dd:after {
  display: table;
  content: " ";
}

/* line 19, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.dl-horizontal dd:after {
  clear: both;
}

@media (min-width: 768px) {
  /* line 211, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
  .dl-horizontal dt {
    float: left;
    width: 160px;
    clear: left;
    text-align: right;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  /* line 218, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
  .dl-horizontal dd {
    margin-left: 180px;
  }
}

/* line 230, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
abbr[title],
abbr[data-original-title] {
  cursor: help;
}

/* line 235, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
.initialism {
  font-size: 90%;
}

/* line 241, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
blockquote {
  padding: 10px 20px;
  margin: 0 0 20px;
  font-size: 17.5px;
  border-left: 5px solid #eeeeee;
}

/* line 250, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
blockquote p:last-child,
blockquote ul:last-child,
blockquote ol:last-child {
  margin-bottom: 0;
}

/* line 257, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
blockquote footer,
blockquote small,
blockquote .small {
  display: block;
  font-size: 80%;
  line-height: 1.428571429;
  color: #777777;
}

/* line 265, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
blockquote footer:before,
blockquote small:before,
blockquote .small:before {
  content: "\2014 \00A0";
}

/* line 274, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
.blockquote-reverse,
blockquote.pull-right {
  padding-right: 15px;
  padding-left: 0;
  text-align: right;
  border-right: 5px solid #eeeeee;
  border-left: 0;
}

/* line 286, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
.blockquote-reverse footer:before,
.blockquote-reverse small:before,
.blockquote-reverse .small:before,
blockquote.pull-right footer:before,
blockquote.pull-right small:before,
blockquote.pull-right .small:before {
  content: "";
}

/* line 287, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
.blockquote-reverse footer:after,
.blockquote-reverse small:after,
.blockquote-reverse .small:after,
blockquote.pull-right footer:after,
blockquote.pull-right small:after,
blockquote.pull-right .small:after {
  content: "\00A0 \2014";
}

/* line 294, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_type.scss */
address {
  margin-bottom: 20px;
  font-style: normal;
  line-height: 1.428571429;
}

/* line 7, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_code.scss */
code,
kbd,
pre,
samp {
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
}

/* line 15, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_code.scss */
code {
  padding: 2px 4px;
  font-size: 90%;
  color: #c7254e;
  background-color: #f9f2f4;
  border-radius: 4px;
}

/* line 24, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_code.scss */
kbd {
  padding: 2px 4px;
  font-size: 90%;
  color: #fff;
  background-color: #333;
  border-radius: 3px;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
}

/* line 32, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_code.scss */
kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: 700;
  box-shadow: none;
}

/* line 41, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_code.scss */
pre {
  display: block;
  padding: 9.5px;
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.428571429;
  color: #333333;
  word-break: break-all;
  word-wrap: break-word;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* line 55, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_code.scss */
pre code {
  padding: 0;
  font-size: inherit;
  color: inherit;
  white-space: pre-wrap;
  background-color: transparent;
  border-radius: 0;
}

/* line 66, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_code.scss */
.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}

/* line 10, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_grid.scss */
.container {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

/* line 14, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.container:before, .container:after {
  display: table;
  content: " ";
}

/* line 19, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.container:after {
  clear: both;
}

@media (min-width: 768px) {
  /* line 10, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_grid.scss */
  .container {
    width: 750px;
  }
}

@media (min-width: 992px) {
  /* line 10, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_grid.scss */
  .container {
    width: 970px;
  }
}

@media (min-width: 1200px) {
  /* line 10, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_grid.scss */
  .container {
    width: 1170px;
  }
}

/* line 30, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_grid.scss */
.container-fluid {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

/* line 14, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.container-fluid:before, .container-fluid:after {
  display: table;
  content: " ";
}

/* line 19, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.container-fluid:after {
  clear: both;
}

/* line 39, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_grid.scss */
.row {
  margin-right: -15px;
  margin-left: -15px;
}

/* line 14, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.row:before, .row:after {
  display: table;
  content: " ";
}

/* line 19, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.row:after {
  clear: both;
}

/* line 43, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_grid.scss */
.row-no-gutters {
  margin-right: 0;
  margin-left: 0;
}

/* line 47, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_grid.scss */
.row-no-gutters [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

/* line 27, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  float: left;
}

/* line 35, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-1 {
  width: 8.3333333333%;
}

/* line 35, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-2 {
  width: 16.6666666667%;
}

/* line 35, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-3 {
  width: 25%;
}

/* line 35, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-4 {
  width: 33.3333333333%;
}

/* line 35, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-5 {
  width: 41.6666666667%;
}

/* line 35, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-6 {
  width: 50%;
}

/* line 35, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-7 {
  width: 58.3333333333%;
}

/* line 35, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-8 {
  width: 66.6666666667%;
}

/* line 35, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-9 {
  width: 75%;
}

/* line 35, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-10 {
  width: 83.3333333333%;
}

/* line 35, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-11 {
  width: 91.6666666667%;
}

/* line 35, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-12 {
  width: 100%;
}

/* line 55, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-0 {
  right: auto;
}

/* line 50, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-1 {
  right: 8.3333333333%;
}

/* line 50, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-2 {
  right: 16.6666666667%;
}

/* line 50, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-3 {
  right: 25%;
}

/* line 50, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-4 {
  right: 33.3333333333%;
}

/* line 50, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-5 {
  right: 41.6666666667%;
}

/* line 50, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-6 {
  right: 50%;
}

/* line 50, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-7 {
  right: 58.3333333333%;
}

/* line 50, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-8 {
  right: 66.6666666667%;
}

/* line 50, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-9 {
  right: 75%;
}

/* line 50, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-10 {
  right: 83.3333333333%;
}

/* line 50, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-11 {
  right: 91.6666666667%;
}

/* line 50, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-12 {
  right: 100%;
}

/* line 45, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-0 {
  left: auto;
}

/* line 40, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-1 {
  left: 8.3333333333%;
}

/* line 40, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-2 {
  left: 16.6666666667%;
}

/* line 40, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-3 {
  left: 25%;
}

/* line 40, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-4 {
  left: 33.3333333333%;
}

/* line 40, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-5 {
  left: 41.6666666667%;
}

/* line 40, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-6 {
  left: 50%;
}

/* line 40, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-7 {
  left: 58.3333333333%;
}

/* line 40, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-8 {
  left: 66.6666666667%;
}

/* line 40, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-9 {
  left: 75%;
}

/* line 40, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-10 {
  left: 83.3333333333%;
}

/* line 40, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-11 {
  left: 91.6666666667%;
}

/* line 40, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-12 {
  left: 100%;
}

/* line 60, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-0 {
  margin-left: 0%;
}

/* line 60, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-1 {
  margin-left: 8.3333333333%;
}

/* line 60, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-2 {
  margin-left: 16.6666666667%;
}

/* line 60, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-3 {
  margin-left: 25%;
}

/* line 60, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-4 {
  margin-left: 33.3333333333%;
}

/* line 60, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-5 {
  margin-left: 41.6666666667%;
}

/* line 60, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-6 {
  margin-left: 50%;
}

/* line 60, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-7 {
  margin-left: 58.3333333333%;
}

/* line 60, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-8 {
  margin-left: 66.6666666667%;
}

/* line 60, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-9 {
  margin-left: 75%;
}

/* line 60, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-10 {
  margin-left: 83.3333333333%;
}

/* line 60, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-11 {
  margin-left: 91.6666666667%;
}

/* line 60, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-12 {
  margin-left: 100%;
}

@media (min-width: 768px) {
  /* line 27, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    float: left;
  }
  /* line 35, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-1 {
    width: 8.3333333333%;
  }
  /* line 35, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-2 {
    width: 16.6666666667%;
  }
  /* line 35, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-3 {
    width: 25%;
  }
  /* line 35, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-4 {
    width: 33.3333333333%;
  }
  /* line 35, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-5 {
    width: 41.6666666667%;
  }
  /* line 35, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-6 {
    width: 50%;
  }
  /* line 35, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-7 {
    width: 58.3333333333%;
  }
  /* line 35, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-8 {
    width: 66.6666666667%;
  }
  /* line 35, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-9 {
    width: 75%;
  }
  /* line 35, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-10 {
    width: 83.3333333333%;
  }
  /* line 35, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-11 {
    width: 91.6666666667%;
  }
  /* line 35, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-12 {
    width: 100%;
  }
  /* line 55, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-0 {
    right: auto;
  }
  /* line 50, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-1 {
    right: 8.3333333333%;
  }
  /* line 50, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-2 {
    right: 16.6666666667%;
  }
  /* line 50, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-3 {
    right: 25%;
  }
  /* line 50, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-4 {
    right: 33.3333333333%;
  }
  /* line 50, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-5 {
    right: 41.6666666667%;
  }
  /* line 50, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-6 {
    right: 50%;
  }
  /* line 50, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-7 {
    right: 58.3333333333%;
  }
  /* line 50, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-8 {
    right: 66.6666666667%;
  }
  /* line 50, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-9 {
    right: 75%;
  }
  /* line 50, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-10 {
    right: 83.3333333333%;
  }
  /* line 50, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-11 {
    right: 91.6666666667%;
  }
  /* line 50, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-12 {
    right: 100%;
  }
  /* line 45, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-0 {
    left: auto;
  }
  /* line 40, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-1 {
    left: 8.3333333333%;
  }
  /* line 40, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-2 {
    left: 16.6666666667%;
  }
  /* line 40, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-3 {
    left: 25%;
  }
  /* line 40, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-4 {
    left: 33.3333333333%;
  }
  /* line 40, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-5 {
    left: 41.6666666667%;
  }
  /* line 40, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-6 {
    left: 50%;
  }
  /* line 40, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-7 {
    left: 58.3333333333%;
  }
  /* line 40, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-8 {
    left: 66.6666666667%;
  }
  /* line 40, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-9 {
    left: 75%;
  }
  /* line 40, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-10 {
    left: 83.3333333333%;
  }
  /* line 40, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-11 {
    left: 91.6666666667%;
  }
  /* line 40, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-12 {
    left: 100%;
  }
  /* line 60, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-0 {
    margin-left: 0%;
  }
  /* line 60, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-1 {
    margin-left: 8.3333333333%;
  }
  /* line 60, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-2 {
    margin-left: 16.6666666667%;
  }
  /* line 60, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  /* line 60, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-4 {
    margin-left: 33.3333333333%;
  }
  /* line 60, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-5 {
    margin-left: 41.6666666667%;
  }
  /* line 60, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  /* line 60, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-7 {
    margin-left: 58.3333333333%;
  }
  /* line 60, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-8 {
    margin-left: 66.6666666667%;
  }
  /* line 60, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  /* line 60, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-10 {
    margin-left: 83.3333333333%;
  }
  /* line 60, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-11 {
    margin-left: 91.6666666667%;
  }
  /* line 60, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-12 {
    margin-left: 100%;
  }
}

@media (min-width: 992px) {
  /* line 27, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
    float: left;
  }
  /* line 35, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-1 {
    width: 8.3333333333%;
  }
  /* line 35, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-2 {
    width: 16.6666666667%;
  }
  /* line 35, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-3 {
    width: 25%;
  }
  /* line 35, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-4 {
    width: 33.3333333333%;
  }
  /* line 35, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-5 {
    width: 41.6666666667%;
  }
  /* line 35, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-6 {
    width: 50%;
  }
  /* line 35, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-7 {
    width: 58.3333333333%;
  }
  /* line 35, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-8 {
    width: 66.6666666667%;
  }
  /* line 35, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-9 {
    width: 75%;
  }
  /* line 35, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-10 {
    width: 83.3333333333%;
  }
  /* line 35, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-11 {
    width: 91.6666666667%;
  }
  /* line 35, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-12 {
    width: 100%;
  }
  /* line 55, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-0 {
    right: auto;
  }
  /* line 50, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-1 {
    right: 8.3333333333%;
  }
  /* line 50, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-2 {
    right: 16.6666666667%;
  }
  /* line 50, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-3 {
    right: 25%;
  }
  /* line 50, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-4 {
    right: 33.3333333333%;
  }
  /* line 50, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-5 {
    right: 41.6666666667%;
  }
  /* line 50, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-6 {
    right: 50%;
  }
  /* line 50, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-7 {
    right: 58.3333333333%;
  }
  /* line 50, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-8 {
    right: 66.6666666667%;
  }
  /* line 50, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-9 {
    right: 75%;
  }
  /* line 50, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-10 {
    right: 83.3333333333%;
  }
  /* line 50, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-11 {
    right: 91.6666666667%;
  }
  /* line 50, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-12 {
    right: 100%;
  }
  /* line 45, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-0 {
    left: auto;
  }
  /* line 40, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-1 {
    left: 8.3333333333%;
  }
  /* line 40, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-2 {
    left: 16.6666666667%;
  }
  /* line 40, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-3 {
    left: 25%;
  }
  /* line 40, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-4 {
    left: 33.3333333333%;
  }
  /* line 40, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-5 {
    left: 41.6666666667%;
  }
  /* line 40, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-6 {
    left: 50%;
  }
  /* line 40, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-7 {
    left: 58.3333333333%;
  }
  /* line 40, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-8 {
    left: 66.6666666667%;
  }
  /* line 40, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-9 {
    left: 75%;
  }
  /* line 40, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-10 {
    left: 83.3333333333%;
  }
  /* line 40, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-11 {
    left: 91.6666666667%;
  }
  /* line 40, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-12 {
    left: 100%;
  }
  /* line 60, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-0 {
    margin-left: 0%;
  }
  /* line 60, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-1 {
    margin-left: 8.3333333333%;
  }
  /* line 60, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-2 {
    margin-left: 16.6666666667%;
  }
  /* line 60, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-3 {
    margin-left: 25%;
  }
  /* line 60, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-4 {
    margin-left: 33.3333333333%;
  }
  /* line 60, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-5 {
    margin-left: 41.6666666667%;
  }
  /* line 60, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-6 {
    margin-left: 50%;
  }
  /* line 60, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-7 {
    margin-left: 58.3333333333%;
  }
  /* line 60, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-8 {
    margin-left: 66.6666666667%;
  }
  /* line 60, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-9 {
    margin-left: 75%;
  }
  /* line 60, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-10 {
    margin-left: 83.3333333333%;
  }
  /* line 60, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-11 {
    margin-left: 91.6666666667%;
  }
  /* line 60, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-12 {
    margin-left: 100%;
  }
}

@media (min-width: 1200px) {
  /* line 27, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    float: left;
  }
  /* line 35, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-1 {
    width: 8.3333333333%;
  }
  /* line 35, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-2 {
    width: 16.6666666667%;
  }
  /* line 35, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-3 {
    width: 25%;
  }
  /* line 35, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-4 {
    width: 33.3333333333%;
  }
  /* line 35, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-5 {
    width: 41.6666666667%;
  }
  /* line 35, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-6 {
    width: 50%;
  }
  /* line 35, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-7 {
    width: 58.3333333333%;
  }
  /* line 35, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-8 {
    width: 66.6666666667%;
  }
  /* line 35, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-9 {
    width: 75%;
  }
  /* line 35, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-10 {
    width: 83.3333333333%;
  }
  /* line 35, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-11 {
    width: 91.6666666667%;
  }
  /* line 35, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-12 {
    width: 100%;
  }
  /* line 55, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-0 {
    right: auto;
  }
  /* line 50, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-1 {
    right: 8.3333333333%;
  }
  /* line 50, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-2 {
    right: 16.6666666667%;
  }
  /* line 50, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-3 {
    right: 25%;
  }
  /* line 50, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-4 {
    right: 33.3333333333%;
  }
  /* line 50, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-5 {
    right: 41.6666666667%;
  }
  /* line 50, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-6 {
    right: 50%;
  }
  /* line 50, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-7 {
    right: 58.3333333333%;
  }
  /* line 50, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-8 {
    right: 66.6666666667%;
  }
  /* line 50, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-9 {
    right: 75%;
  }
  /* line 50, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-10 {
    right: 83.3333333333%;
  }
  /* line 50, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-11 {
    right: 91.6666666667%;
  }
  /* line 50, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-12 {
    right: 100%;
  }
  /* line 45, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-0 {
    left: auto;
  }
  /* line 40, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-1 {
    left: 8.3333333333%;
  }
  /* line 40, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-2 {
    left: 16.6666666667%;
  }
  /* line 40, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-3 {
    left: 25%;
  }
  /* line 40, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-4 {
    left: 33.3333333333%;
  }
  /* line 40, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-5 {
    left: 41.6666666667%;
  }
  /* line 40, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-6 {
    left: 50%;
  }
  /* line 40, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-7 {
    left: 58.3333333333%;
  }
  /* line 40, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-8 {
    left: 66.6666666667%;
  }
  /* line 40, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-9 {
    left: 75%;
  }
  /* line 40, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-10 {
    left: 83.3333333333%;
  }
  /* line 40, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-11 {
    left: 91.6666666667%;
  }
  /* line 40, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-12 {
    left: 100%;
  }
  /* line 60, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-0 {
    margin-left: 0%;
  }
  /* line 60, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-1 {
    margin-left: 8.3333333333%;
  }
  /* line 60, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-2 {
    margin-left: 16.6666666667%;
  }
  /* line 60, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  /* line 60, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-4 {
    margin-left: 33.3333333333%;
  }
  /* line 60, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-5 {
    margin-left: 41.6666666667%;
  }
  /* line 60, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  /* line 60, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-7 {
    margin-left: 58.3333333333%;
  }
  /* line 60, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-8 {
    margin-left: 66.6666666667%;
  }
  /* line 60, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  /* line 60, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-10 {
    margin-left: 83.3333333333%;
  }
  /* line 60, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-11 {
    margin-left: 91.6666666667%;
  }
  /* line 60, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-12 {
    margin-left: 100%;
  }
}

/* line 6, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
table {
  background-color: transparent;
}

/* line 13, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
table col[class*="col-"] {
  position: static;
  display: table-column;
  float: none;
}

/* line 21, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
table td[class*="col-"],
table th[class*="col-"] {
  position: static;
  display: table-cell;
  float: none;
}

/* line 29, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
caption {
  padding-top: 8px;
  padding-bottom: 8px;
  color: #777777;
  text-align: left;
}

/* line 36, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
th {
  text-align: left;
}

/* line 43, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
}

/* line 52, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
.table > thead > tr > th,
.table > thead > tr > td,
.table > tbody > tr > th,
.table > tbody > tr > td,
.table > tfoot > tr > th,
.table > tfoot > tr > td {
  padding: 8px;
  line-height: 1.428571429;
  vertical-align: top;
  border-top: 1px solid #ddd;
}

/* line 62, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
.table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 2px solid #ddd;
}

/* line 71, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
.table > caption + thead > tr:first-child > th,
.table > caption + thead > tr:first-child > td,
.table > colgroup + thead > tr:first-child > th,
.table > colgroup + thead > tr:first-child > td,
.table > thead:first-child > tr:first-child > th,
.table > thead:first-child > tr:first-child > td {
  border-top: 0;
}

/* line 78, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
.table > tbody + tbody {
  border-top: 2px solid #ddd;
}

/* line 83, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
.table .table {
  background-color: #fff;
}

/* line 96, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
.table-condensed > thead > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > th,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > th,
.table-condensed > tfoot > tr > td {
  padding: 5px;
}

/* line 109, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
.table-bordered {
  border: 1px solid #ddd;
}

/* line 115, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > th,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > th,
.table-bordered > tfoot > tr > td {
  border: 1px solid #ddd;
}

/* line 122, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td {
  border-bottom-width: 2px;
}

/* line 135, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
.table-striped > tbody > tr:nth-of-type(odd) {
  background-color: #f9f9f9;
}

/* line 146, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
.table-hover > tbody > tr:hover {
  background-color: #f5f5f5;
}

/* line 9, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */
.table > thead > tr > td.active,
.table > thead > tr > th.active,
.table > thead > tr.active > td,
.table > thead > tr.active > th,
.table > tbody > tr > td.active,
.table > tbody > tr > th.active,
.table > tbody > tr.active > td,
.table > tbody > tr.active > th,
.table > tfoot > tr > td.active,
.table > tfoot > tr > th.active,
.table > tfoot > tr.active > td,
.table > tfoot > tr.active > th {
  background-color: #f5f5f5;
}

/* line 20, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */
.table-hover > tbody > tr > td.active:hover,
.table-hover > tbody > tr > th.active:hover,
.table-hover > tbody > tr.active:hover > td,
.table-hover > tbody > tr:hover > .active,
.table-hover > tbody > tr.active:hover > th {
  background-color: #e8e8e8;
}

/* line 9, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */
.table > thead > tr > td.success,
.table > thead > tr > th.success,
.table > thead > tr.success > td,
.table > thead > tr.success > th,
.table > tbody > tr > td.success,
.table > tbody > tr > th.success,
.table > tbody > tr.success > td,
.table > tbody > tr.success > th,
.table > tfoot > tr > td.success,
.table > tfoot > tr > th.success,
.table > tfoot > tr.success > td,
.table > tfoot > tr.success > th {
  background-color: #dff0d8;
}

/* line 20, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */
.table-hover > tbody > tr > td.success:hover,
.table-hover > tbody > tr > th.success:hover,
.table-hover > tbody > tr.success:hover > td,
.table-hover > tbody > tr:hover > .success,
.table-hover > tbody > tr.success:hover > th {
  background-color: #d0e9c6;
}

/* line 9, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */
.table > thead > tr > td.info,
.table > thead > tr > th.info,
.table > thead > tr.info > td,
.table > thead > tr.info > th,
.table > tbody > tr > td.info,
.table > tbody > tr > th.info,
.table > tbody > tr.info > td,
.table > tbody > tr.info > th,
.table > tfoot > tr > td.info,
.table > tfoot > tr > th.info,
.table > tfoot > tr.info > td,
.table > tfoot > tr.info > th {
  background-color: #d9edf7;
}

/* line 20, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */
.table-hover > tbody > tr > td.info:hover,
.table-hover > tbody > tr > th.info:hover,
.table-hover > tbody > tr.info:hover > td,
.table-hover > tbody > tr:hover > .info,
.table-hover > tbody > tr.info:hover > th {
  background-color: #c4e3f3;
}

/* line 9, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */
.table > thead > tr > td.warning,
.table > thead > tr > th.warning,
.table > thead > tr.warning > td,
.table > thead > tr.warning > th,
.table > tbody > tr > td.warning,
.table > tbody > tr > th.warning,
.table > tbody > tr.warning > td,
.table > tbody > tr.warning > th,
.table > tfoot > tr > td.warning,
.table > tfoot > tr > th.warning,
.table > tfoot > tr.warning > td,
.table > tfoot > tr.warning > th {
  background-color: #fcf8e3;
}

/* line 20, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */
.table-hover > tbody > tr > td.warning:hover,
.table-hover > tbody > tr > th.warning:hover,
.table-hover > tbody > tr.warning:hover > td,
.table-hover > tbody > tr:hover > .warning,
.table-hover > tbody > tr.warning:hover > th {
  background-color: #faf2cc;
}

/* line 9, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */
.table > thead > tr > td.danger,
.table > thead > tr > th.danger,
.table > thead > tr.danger > td,
.table > thead > tr.danger > th,
.table > tbody > tr > td.danger,
.table > tbody > tr > th.danger,
.table > tbody > tr.danger > td,
.table > tbody > tr.danger > th,
.table > tfoot > tr > td.danger,
.table > tfoot > tr > th.danger,
.table > tfoot > tr.danger > td,
.table > tfoot > tr.danger > th {
  background-color: #f2dede;
}

/* line 20, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */
.table-hover > tbody > tr > td.danger:hover,
.table-hover > tbody > tr > th.danger:hover,
.table-hover > tbody > tr.danger:hover > td,
.table-hover > tbody > tr:hover > .danger,
.table-hover > tbody > tr.danger:hover > th {
  background-color: #ebcccc;
}

/* line 171, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
.table-responsive {
  min-height: .01%;
  overflow-x: auto;
}

@media screen and (max-width: 767px) {
  /* line 171, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
  .table-responsive {
    width: 100%;
    margin-bottom: 15px;
    overflow-y: hidden;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    border: 1px solid #ddd;
  }
  /* line 183, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
  .table-responsive > .table {
    margin-bottom: 0;
  }
  /* line 191, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
  .table-responsive > .table > thead > tr > th,
  .table-responsive > .table > thead > tr > td,
  .table-responsive > .table > tbody > tr > th,
  .table-responsive > .table > tbody > tr > td,
  .table-responsive > .table > tfoot > tr > th,
  .table-responsive > .table > tfoot > tr > td {
    white-space: nowrap;
  }
  /* line 200, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
  .table-responsive > .table-bordered {
    border: 0;
  }
  /* line 208, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
  .table-responsive > .table-bordered > thead > tr > th:first-child,
  .table-responsive > .table-bordered > thead > tr > td:first-child,
  .table-responsive > .table-bordered > tbody > tr > th:first-child,
  .table-responsive > .table-bordered > tbody > tr > td:first-child,
  .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  .table-responsive > .table-bordered > tfoot > tr > td:first-child {
    border-left: 0;
  }
  /* line 212, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
  .table-responsive > .table-bordered > thead > tr > th:last-child,
  .table-responsive > .table-bordered > thead > tr > td:last-child,
  .table-responsive > .table-bordered > tbody > tr > th:last-child,
  .table-responsive > .table-bordered > tbody > tr > td:last-child,
  .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  .table-responsive > .table-bordered > tfoot > tr > td:last-child {
    border-right: 0;
  }
  /* line 225, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tables.scss */
  .table-responsive > .table-bordered > tbody > tr:last-child > th,
  .table-responsive > .table-bordered > tbody > tr:last-child > td,
  .table-responsive > .table-bordered > tfoot > tr:last-child > th,
  .table-responsive > .table-bordered > tfoot > tr:last-child > td {
    border-bottom: 0;
  }
}

/* line 10, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

/* line 20, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 20px;
  font-size: 21px;
  line-height: inherit;
  color: #333333;
  border: 0;
  border-bottom: 1px solid #e5e5e5;
}

/* line 32, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: 700;
}

/* line 46, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
input[type="search"] {
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

/* line 61, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
input[type="radio"],
input[type="checkbox"] {
  margin: 4px 0 0;
  margin-top: 1px \9;
  line-height: normal;
}

/* line 71, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
input[type="radio"][disabled], input[type="radio"].disabled,
fieldset[disabled] input[type="radio"],
input[type="checkbox"][disabled],
input[type="checkbox"].disabled,
fieldset[disabled]
input[type="checkbox"] {
  cursor: not-allowed;
}

/* line 78, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
input[type="file"] {
  display: block;
}

/* line 83, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
input[type="range"] {
  display: block;
  width: 100%;
}

/* line 89, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
select[multiple],
select[size] {
  height: auto;
}

/* line 95, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

/* line 102, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
output {
  display: block;
  padding-top: 7px;
  font-size: 14px;
  line-height: 1.428571429;
  color: #555555;
}

/* line 133, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
.form-control {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.428571429;
  color: #555555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  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;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

/* line 57, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
.form-control:focus {
  border-color: #66afe9;
  outline: 0;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}

/* line 103, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_vendor-prefixes.scss */
.form-control::-moz-placeholder {
  color: #999;
  opacity: 1;
}

/* line 107, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_vendor-prefixes.scss */
.form-control:-ms-input-placeholder {
  color: #999;
}

/* line 108, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_vendor-prefixes.scss */
.form-control::-webkit-input-placeholder {
  color: #999;
}

/* line 155, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}

/* line 165, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
.form-control[disabled], .form-control[readonly],
fieldset[disabled] .form-control {
  background-color: #eeeeee;
  opacity: 1;
}

/* line 172, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
.form-control[disabled],
fieldset[disabled] .form-control {
  cursor: not-allowed;
}

/* line 181, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
textarea.form-control {
  height: auto;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  /* line 200, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  input[type="date"].form-control,
  input[type="time"].form-control,
  input[type="datetime-local"].form-control,
  input[type="month"].form-control {
    line-height: 34px;
  }
  /* line 204, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  input[type="date"].input-sm, .input-group-sm > input.form-control[type="date"],
  .input-group-sm > input.input-group-addon[type="date"],
  .input-group-sm > .input-group-btn > input.btn[type="date"],
  .input-group-sm input[type="date"],
  input[type="time"].input-sm,
  .input-group-sm > input.form-control[type="time"],
  .input-group-sm > input.input-group-addon[type="time"],
  .input-group-sm > .input-group-btn > input.btn[type="time"],
  .input-group-sm
  input[type="time"],
  input[type="datetime-local"].input-sm,
  .input-group-sm > input.form-control[type="datetime-local"],
  .input-group-sm > input.input-group-addon[type="datetime-local"],
  .input-group-sm > .input-group-btn > input.btn[type="datetime-local"],
  .input-group-sm
  input[type="datetime-local"],
  input[type="month"].input-sm,
  .input-group-sm > input.form-control[type="month"],
  .input-group-sm > input.input-group-addon[type="month"],
  .input-group-sm > .input-group-btn > input.btn[type="month"],
  .input-group-sm
  input[type="month"] {
    line-height: 30px;
  }
  /* line 209, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  input[type="date"].input-lg, .input-group-lg > input.form-control[type="date"],
  .input-group-lg > input.input-group-addon[type="date"],
  .input-group-lg > .input-group-btn > input.btn[type="date"],
  .input-group-lg input[type="date"],
  input[type="time"].input-lg,
  .input-group-lg > input.form-control[type="time"],
  .input-group-lg > input.input-group-addon[type="time"],
  .input-group-lg > .input-group-btn > input.btn[type="time"],
  .input-group-lg
  input[type="time"],
  input[type="datetime-local"].input-lg,
  .input-group-lg > input.form-control[type="datetime-local"],
  .input-group-lg > input.input-group-addon[type="datetime-local"],
  .input-group-lg > .input-group-btn > input.btn[type="datetime-local"],
  .input-group-lg
  input[type="datetime-local"],
  input[type="month"].input-lg,
  .input-group-lg > input.form-control[type="month"],
  .input-group-lg > input.input-group-addon[type="month"],
  .input-group-lg > .input-group-btn > input.btn[type="month"],
  .input-group-lg
  input[type="month"] {
    line-height: 46px;
  }
}

/* line 222, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
.form-group {
  margin-bottom: 15px;
}

/* line 231, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
.radio,
.checkbox {
  position: relative;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
}

/* line 241, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
.radio.disabled label,
fieldset[disabled] .radio label,
.checkbox.disabled label,
fieldset[disabled]
.checkbox label {
  cursor: not-allowed;
}

/* line 246, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
.radio label,
.checkbox label {
  min-height: 20px;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: 400;
  cursor: pointer;
}

/* line 254, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
.radio input[type="radio"],
.radio-inline input[type="radio"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
  position: absolute;
  margin-top: 4px \9;
  margin-left: -20px;
}

/* line 263, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
.radio + .radio,
.checkbox + .checkbox {
  margin-top: -5px;
}

/* line 269, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
.radio-inline,
.checkbox-inline {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: 400;
  vertical-align: middle;
  cursor: pointer;
}

/* line 280, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
.radio-inline.disabled,
fieldset[disabled] .radio-inline,
.checkbox-inline.disabled,
fieldset[disabled]
.checkbox-inline {
  cursor: not-allowed;
}

/* line 285, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline {
  margin-top: 0;
  margin-left: 10px;
}

/* line 297, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
.form-control-static {
  min-height: 34px;
  padding-top: 7px;
  padding-bottom: 7px;
  margin-bottom: 0;
}

/* line 305, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
.form-control-static.input-lg, .input-group-lg > .form-control-static.form-control,
.input-group-lg > .form-control-static.input-group-addon,
.input-group-lg > .input-group-btn > .form-control-static.btn, .form-control-static.input-sm, .input-group-sm > .form-control-static.form-control,
.input-group-sm > .form-control-static.input-group-addon,
.input-group-sm > .input-group-btn > .form-control-static.btn {
  padding-right: 0;
  padding-left: 0;
}

/* line 71, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
.input-sm, .input-group-sm > .form-control,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .btn {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}

/* line 79, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
select.input-sm, .input-group-sm > select.form-control,
.input-group-sm > select.input-group-addon,
.input-group-sm > .input-group-btn > select.btn {
  height: 30px;
  line-height: 30px;
}

/* line 84, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
textarea.input-sm, .input-group-sm > textarea.form-control,
.input-group-sm > textarea.input-group-addon,
.input-group-sm > .input-group-btn > textarea.btn,
select[multiple].input-sm,
.input-group-sm > select.form-control[multiple],
.input-group-sm > select.input-group-addon[multiple],
.input-group-sm > .input-group-btn > select.btn[multiple] {
  height: auto;
}

/* line 323, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
.form-group-sm .form-control {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}

/* line 330, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
.form-group-sm select.form-control {
  height: 30px;
  line-height: 30px;
}

/* line 334, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
.form-group-sm textarea.form-control,
.form-group-sm select[multiple].form-control {
  height: auto;
}

/* line 338, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
.form-group-sm .form-control-static {
  height: 30px;
  min-height: 32px;
  padding: 6px 10px;
  font-size: 12px;
  line-height: 1.5;
}

/* line 71, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
.input-lg, .input-group-lg > .form-control,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .btn {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}

/* line 79, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
select.input-lg, .input-group-lg > select.form-control,
.input-group-lg > select.input-group-addon,
.input-group-lg > .input-group-btn > select.btn {
  height: 46px;
  line-height: 46px;
}

/* line 84, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
textarea.input-lg, .input-group-lg > textarea.form-control,
.input-group-lg > textarea.input-group-addon,
.input-group-lg > .input-group-btn > textarea.btn,
select[multiple].input-lg,
.input-group-lg > select.form-control[multiple],
.input-group-lg > select.input-group-addon[multiple],
.input-group-lg > .input-group-btn > select.btn[multiple] {
  height: auto;
}

/* line 349, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
.form-group-lg .form-control {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}

/* line 356, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
.form-group-lg select.form-control {
  height: 46px;
  line-height: 46px;
}

/* line 360, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
.form-group-lg textarea.form-control,
.form-group-lg select[multiple].form-control {
  height: auto;
}

/* line 364, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
.form-group-lg .form-control-static {
  height: 46px;
  min-height: 38px;
  padding: 11px 16px;
  font-size: 18px;
  line-height: 1.3333333;
}

/* line 378, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
.has-feedback {
  position: relative;
}

/* line 383, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
.has-feedback .form-control {
  padding-right: 42.5px;
}

/* line 388, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
.form-control-feedback {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: block;
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  pointer-events: none;
}

/* line 400, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
.input-lg + .form-control-feedback, .input-group-lg > .form-control + .form-control-feedback, .input-group-lg > .input-group-addon + .form-control-feedback, .input-group-lg > .input-group-btn > .btn + .form-control-feedback,
.input-group-lg + .form-control-feedback,
.form-group-lg .form-control + .form-control-feedback {
  width: 46px;
  height: 46px;
  line-height: 46px;
}

/* line 407, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
.input-sm + .form-control-feedback, .input-group-sm > .form-control + .form-control-feedback, .input-group-sm > .input-group-addon + .form-control-feedback, .input-group-sm > .input-group-btn > .btn + .form-control-feedback,
.input-group-sm + .form-control-feedback,
.form-group-sm .form-control + .form-control-feedback {
  width: 30px;
  height: 30px;
  line-height: 30px;
}

/* line 8, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
.has-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline,
.has-success.radio label,
.has-success.checkbox label,
.has-success.radio-inline label,
.has-success.checkbox-inline label {
  color: #3c763d;
}

/* line 21, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
.has-success .form-control {
  border-color: #3c763d;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

/* line 24, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
.has-success .form-control:focus {
  border-color: #2b542c;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
}

/* line 31, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
.has-success .input-group-addon {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #3c763d;
}

/* line 37, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
.has-success .form-control-feedback {
  color: #3c763d;
}

/* line 8, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
.has-warning .help-block,
.has-warning .control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline,
.has-warning.radio label,
.has-warning.checkbox label,
.has-warning.radio-inline label,
.has-warning.checkbox-inline label {
  color: #8a6d3b;
}

/* line 21, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
.has-warning .form-control {
  border-color: #8a6d3b;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

/* line 24, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
.has-warning .form-control:focus {
  border-color: #66512c;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
}

/* line 31, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
.has-warning .input-group-addon {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #8a6d3b;
}

/* line 37, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
.has-warning .form-control-feedback {
  color: #8a6d3b;
}

/* line 8, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline,
.has-error.radio label,
.has-error.checkbox label,
.has-error.radio-inline label,
.has-error.checkbox-inline label {
  color: #a94442;
}

/* line 21, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
.has-error .form-control {
  border-color: #a94442;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

/* line 24, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
.has-error .form-control:focus {
  border-color: #843534;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
}

/* line 31, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
.has-error .input-group-addon {
  color: #a94442;
  background-color: #f2dede;
  border-color: #a94442;
}

/* line 37, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
.has-error .form-control-feedback {
  color: #a94442;
}

/* line 429, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
.has-feedback label ~ .form-control-feedback {
  top: 25px;
}

/* line 432, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
.has-feedback label.sr-only ~ .form-control-feedback {
  top: 0;
}

/* line 443, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
.help-block {
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #737373;
}

@media (min-width: 768px) {
  /* line 468, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  .form-inline .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  /* line 475, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  /* line 482, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  .form-inline .form-control-static {
    display: inline-block;
  }
  /* line 486, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  .form-inline .input-group {
    display: inline-table;
    vertical-align: middle;
  }
  /* line 490, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  .form-inline .input-group .input-group-addon,
  .form-inline .input-group .input-group-btn,
  .form-inline .input-group .form-control {
    width: auto;
  }
  /* line 498, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  .form-inline .input-group > .form-control {
    width: 100%;
  }
  /* line 502, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  .form-inline .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
  /* line 509, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  .form-inline .radio,
  .form-inline .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }
  /* line 516, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  .form-inline .radio label,
  .form-inline .checkbox label {
    padding-left: 0;
  }
  /* line 520, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  .form-inline .radio input[type="radio"],
  .form-inline .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0;
  }
  /* line 527, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  .form-inline .has-feedback .form-control-feedback {
    top: 0;
  }
}

/* line 549, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
.form-horizontal .radio,
.form-horizontal .checkbox,
.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline {
  padding-top: 7px;
  margin-top: 0;
  margin-bottom: 0;
}

/* line 559, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
.form-horizontal .radio,
.form-horizontal .checkbox {
  min-height: 27px;
}

/* line 565, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
.form-horizontal .form-group {
  margin-right: -15px;
  margin-left: -15px;
}

/* line 14, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.form-horizontal .form-group:before, .form-horizontal .form-group:after {
  display: table;
  content: " ";
}

/* line 19, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.form-horizontal .form-group:after {
  clear: both;
}

@media (min-width: 768px) {
  /* line 572, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  .form-horizontal .control-label {
    padding-top: 7px;
    margin-bottom: 0;
    text-align: right;
  }
}

/* line 583, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
.form-horizontal .has-feedback .form-control-feedback {
  right: 15px;
}

@media (min-width: 768px) {
  /* line 593, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  .form-horizontal .form-group-lg .control-label {
    padding-top: 11px;
    font-size: 18px;
  }
}

@media (min-width: 768px) {
  /* line 601, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  .form-horizontal .form-group-sm .control-label {
    padding-top: 6px;
    font-size: 12px;
  }
}

/* line 9, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
.btn {
  display: inline-block;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.428571429;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* line 26, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
.btn:focus, .btn.focus, .btn:active:focus, .btn:active.focus, .btn.active:focus, .btn.active.focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

/* line 32, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
.btn:hover, .btn:focus, .btn.focus {
  color: #333;
  text-decoration: none;
}

/* line 39, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
.btn:active, .btn.active {
  background-image: none;
  outline: 0;
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

/* line 46, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
.btn.disabled, .btn[disabled],
fieldset[disabled] .btn {
  cursor: not-allowed;
  filter: alpha(opacity=65);
  opacity: 0.65;
  box-shadow: none;
}

/* line 58, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
a.btn.disabled,
fieldset[disabled] a.btn {
  pointer-events: none;
}

/* line 68, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
.btn-default {
  color: #333;
  background-color: #fff;
  border-color: #ccc;
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-default:focus, .btn-default.focus {
  color: #333;
  background-color: #e6e6e6;
  border-color: #8c8c8c;
}

/* line 17, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-default:hover {
  color: #333;
  background-color: #e6e6e6;
  border-color: #adadad;
}

/* line 22, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-default:active, .btn-default.active,
.open > .btn-default.dropdown-toggle {
  color: #333;
  background-color: #e6e6e6;
  background-image: none;
  border-color: #adadad;
}

/* line 30, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-default:active:hover, .btn-default:active:focus, .btn-default:active.focus, .btn-default.active:hover, .btn-default.active:focus, .btn-default.active.focus,
.open > .btn-default.dropdown-toggle:hover,
.open > .btn-default.dropdown-toggle:focus,
.open > .btn-default.dropdown-toggle.focus {
  color: #333;
  background-color: #d4d4d4;
  border-color: #8c8c8c;
}

/* line 41, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-default.disabled:hover, .btn-default.disabled:focus, .btn-default.disabled.focus, .btn-default[disabled]:hover, .btn-default[disabled]:focus, .btn-default[disabled].focus,
fieldset[disabled] .btn-default:hover,
fieldset[disabled] .btn-default:focus,
fieldset[disabled] .btn-default.focus {
  background-color: #fff;
  border-color: #ccc;
}

/* line 49, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-default .badge {
  color: #fff;
  background-color: #333;
}

/* line 71, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
.btn-primary {
  color: #fff;
  background-color: #337ab7;
  border-color: #2e6da4;
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-primary:focus, .btn-primary.focus {
  color: #fff;
  background-color: #286090;
  border-color: #122b40;
}

/* line 17, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-primary:hover {
  color: #fff;
  background-color: #286090;
  border-color: #204d74;
}

/* line 22, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-primary:active, .btn-primary.active,
.open > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #286090;
  background-image: none;
  border-color: #204d74;
}

/* line 30, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-primary:active:hover, .btn-primary:active:focus, .btn-primary:active.focus, .btn-primary.active:hover, .btn-primary.active:focus, .btn-primary.active.focus,
.open > .btn-primary.dropdown-toggle:hover,
.open > .btn-primary.dropdown-toggle:focus,
.open > .btn-primary.dropdown-toggle.focus {
  color: #fff;
  background-color: #204d74;
  border-color: #122b40;
}

/* line 41, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-primary.disabled:hover, .btn-primary.disabled:focus, .btn-primary.disabled.focus, .btn-primary[disabled]:hover, .btn-primary[disabled]:focus, .btn-primary[disabled].focus,
fieldset[disabled] .btn-primary:hover,
fieldset[disabled] .btn-primary:focus,
fieldset[disabled] .btn-primary.focus {
  background-color: #337ab7;
  border-color: #2e6da4;
}

/* line 49, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-primary .badge {
  color: #337ab7;
  background-color: #fff;
}

/* line 75, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
.btn-success {
  color: #fff;
  background-color: #5cb85c;
  border-color: #4cae4c;
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-success:focus, .btn-success.focus {
  color: #fff;
  background-color: #449d44;
  border-color: #255625;
}

/* line 17, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-success:hover {
  color: #fff;
  background-color: #449d44;
  border-color: #398439;
}

/* line 22, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-success:active, .btn-success.active,
.open > .btn-success.dropdown-toggle {
  color: #fff;
  background-color: #449d44;
  background-image: none;
  border-color: #398439;
}

/* line 30, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-success:active:hover, .btn-success:active:focus, .btn-success:active.focus, .btn-success.active:hover, .btn-success.active:focus, .btn-success.active.focus,
.open > .btn-success.dropdown-toggle:hover,
.open > .btn-success.dropdown-toggle:focus,
.open > .btn-success.dropdown-toggle.focus {
  color: #fff;
  background-color: #398439;
  border-color: #255625;
}

/* line 41, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-success.disabled:hover, .btn-success.disabled:focus, .btn-success.disabled.focus, .btn-success[disabled]:hover, .btn-success[disabled]:focus, .btn-success[disabled].focus,
fieldset[disabled] .btn-success:hover,
fieldset[disabled] .btn-success:focus,
fieldset[disabled] .btn-success.focus {
  background-color: #5cb85c;
  border-color: #4cae4c;
}

/* line 49, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-success .badge {
  color: #5cb85c;
  background-color: #fff;
}

/* line 79, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
.btn-info {
  color: #fff;
  background-color: #5bc0de;
  border-color: #46b8da;
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-info:focus, .btn-info.focus {
  color: #fff;
  background-color: #31b0d5;
  border-color: #1b6d85;
}

/* line 17, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-info:hover {
  color: #fff;
  background-color: #31b0d5;
  border-color: #269abc;
}

/* line 22, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-info:active, .btn-info.active,
.open > .btn-info.dropdown-toggle {
  color: #fff;
  background-color: #31b0d5;
  background-image: none;
  border-color: #269abc;
}

/* line 30, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-info:active:hover, .btn-info:active:focus, .btn-info:active.focus, .btn-info.active:hover, .btn-info.active:focus, .btn-info.active.focus,
.open > .btn-info.dropdown-toggle:hover,
.open > .btn-info.dropdown-toggle:focus,
.open > .btn-info.dropdown-toggle.focus {
  color: #fff;
  background-color: #269abc;
  border-color: #1b6d85;
}

/* line 41, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-info.disabled:hover, .btn-info.disabled:focus, .btn-info.disabled.focus, .btn-info[disabled]:hover, .btn-info[disabled]:focus, .btn-info[disabled].focus,
fieldset[disabled] .btn-info:hover,
fieldset[disabled] .btn-info:focus,
fieldset[disabled] .btn-info.focus {
  background-color: #5bc0de;
  border-color: #46b8da;
}

/* line 49, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-info .badge {
  color: #5bc0de;
  background-color: #fff;
}

/* line 83, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
.btn-warning {
  color: #fff;
  background-color: #f0ad4e;
  border-color: #eea236;
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-warning:focus, .btn-warning.focus {
  color: #fff;
  background-color: #ec971f;
  border-color: #985f0d;
}

/* line 17, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-warning:hover {
  color: #fff;
  background-color: #ec971f;
  border-color: #d58512;
}

/* line 22, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-warning:active, .btn-warning.active,
.open > .btn-warning.dropdown-toggle {
  color: #fff;
  background-color: #ec971f;
  background-image: none;
  border-color: #d58512;
}

/* line 30, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-warning:active:hover, .btn-warning:active:focus, .btn-warning:active.focus, .btn-warning.active:hover, .btn-warning.active:focus, .btn-warning.active.focus,
.open > .btn-warning.dropdown-toggle:hover,
.open > .btn-warning.dropdown-toggle:focus,
.open > .btn-warning.dropdown-toggle.focus {
  color: #fff;
  background-color: #d58512;
  border-color: #985f0d;
}

/* line 41, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-warning.disabled:hover, .btn-warning.disabled:focus, .btn-warning.disabled.focus, .btn-warning[disabled]:hover, .btn-warning[disabled]:focus, .btn-warning[disabled].focus,
fieldset[disabled] .btn-warning:hover,
fieldset[disabled] .btn-warning:focus,
fieldset[disabled] .btn-warning.focus {
  background-color: #f0ad4e;
  border-color: #eea236;
}

/* line 49, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-warning .badge {
  color: #f0ad4e;
  background-color: #fff;
}

/* line 87, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
.btn-danger {
  color: #fff;
  background-color: #d9534f;
  border-color: #d43f3a;
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-danger:focus, .btn-danger.focus {
  color: #fff;
  background-color: #c9302c;
  border-color: #761c19;
}

/* line 17, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-danger:hover {
  color: #fff;
  background-color: #c9302c;
  border-color: #ac2925;
}

/* line 22, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-danger:active, .btn-danger.active,
.open > .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #c9302c;
  background-image: none;
  border-color: #ac2925;
}

/* line 30, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-danger:active:hover, .btn-danger:active:focus, .btn-danger:active.focus, .btn-danger.active:hover, .btn-danger.active:focus, .btn-danger.active.focus,
.open > .btn-danger.dropdown-toggle:hover,
.open > .btn-danger.dropdown-toggle:focus,
.open > .btn-danger.dropdown-toggle.focus {
  color: #fff;
  background-color: #ac2925;
  border-color: #761c19;
}

/* line 41, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-danger.disabled:hover, .btn-danger.disabled:focus, .btn-danger.disabled.focus, .btn-danger[disabled]:hover, .btn-danger[disabled]:focus, .btn-danger[disabled].focus,
fieldset[disabled] .btn-danger:hover,
fieldset[disabled] .btn-danger:focus,
fieldset[disabled] .btn-danger.focus {
  background-color: #d9534f;
  border-color: #d43f3a;
}

/* line 49, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-danger .badge {
  color: #d9534f;
  background-color: #fff;
}

/* line 96, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
.btn-link {
  font-weight: 400;
  color: #337ab7;
  border-radius: 0;
}

/* line 101, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
.btn-link, .btn-link:active, .btn-link.active, .btn-link[disabled],
fieldset[disabled] .btn-link {
  background-color: transparent;
  box-shadow: none;
}

/* line 109, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
.btn-link, .btn-link:hover, .btn-link:focus, .btn-link:active {
  border-color: transparent;
}

/* line 115, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
.btn-link:hover, .btn-link:focus {
  color: #23527c;
  text-decoration: underline;
  background-color: transparent;
}

/* line 123, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
.btn-link[disabled]:hover, .btn-link[disabled]:focus,
fieldset[disabled] .btn-link:hover,
fieldset[disabled] .btn-link:focus {
  color: #777777;
  text-decoration: none;
}

/* line 135, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
.btn-lg, .btn-group-lg > .btn {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}

/* line 139, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
.btn-sm, .btn-group-sm > .btn {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}

/* line 143, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
.btn-xs, .btn-group-xs > .btn {
  padding: 1px 5px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}

/* line 151, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
.btn-block {
  display: block;
  width: 100%;
}

/* line 157, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
.btn-block + .btn-block {
  margin-top: 5px;
}

/* line 165, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_buttons.scss */
input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
  width: 100%;
}

/* line 10, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_component-animations.scss */
.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}

/* line 14, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_component-animations.scss */
.fade.in {
  opacity: 1;
}

/* line 19, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_component-animations.scss */
.collapse {
  display: none;
}

/* line 22, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_component-animations.scss */
.collapse.in {
  display: block;
}

/* line 27, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_component-animations.scss */
tr.collapse.in {
  display: table-row;
}

/* line 29, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_component-animations.scss */
tbody.collapse.in {
  display: table-row-group;
}

/* line 31, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_component-animations.scss */
.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition-property: height, visibility;
  transition-property: height, visibility;
  -webkit-transition-duration: 0.35s;
  transition-duration: 0.35s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}

/* line 7, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
.caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px dashed;
  border-top: 4px solid \9;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}

/* line 20, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropup,
.dropdown {
  position: relative;
}

/* line 26, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropdown-toggle:focus {
  outline: 0;
}

/* line 31, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  font-size: 14px;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
}

/* line 54, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropdown-menu.pull-right {
  right: 0;
  left: auto;
}

/* line 60, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropdown-menu .divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}

/* line 65, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropdown-menu > li > a {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: 400;
  line-height: 1.428571429;
  color: #333333;
  white-space: nowrap;
}

/* line 74, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {
  color: #262626;
  text-decoration: none;
  background-color: #f5f5f5;
}

/* line 85, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, .dropdown-menu > .active > a:focus {
  color: #fff;
  text-decoration: none;
  background-color: #337ab7;
  outline: 0;
}

/* line 100, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropdown-menu > .disabled > a, .dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus {
  color: #777777;
}

/* line 107, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus {
  text-decoration: none;
  cursor: not-allowed;
  background-color: transparent;
  background-image: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}

/* line 120, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
.open > .dropdown-menu {
  display: block;
}

/* line 125, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
.open > a {
  outline: 0;
}

/* line 134, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropdown-menu-right {
  right: 0;
  left: auto;
}

/* line 144, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropdown-menu-left {
  right: auto;
  left: 0;
}

/* line 150, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropdown-header {
  display: block;
  padding: 3px 20px;
  font-size: 12px;
  line-height: 1.428571429;
  color: #777777;
  white-space: nowrap;
}

/* line 160, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropdown-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 990;
}

/* line 170, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
.pull-right > .dropdown-menu {
  right: 0;
  left: auto;
}

/* line 183, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
  content: "";
  border-top: 0;
  border-bottom: 4px dashed;
  border-bottom: 4px solid \9;
}

/* line 190, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 2px;
}

@media (min-width: 768px) {
  /* line 204, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
  .navbar-right .dropdown-menu {
    right: 0;
    left: auto;
  }
  /* line 209, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_dropdowns.scss */
  .navbar-right .dropdown-menu-left {
    left: 0;
    right: auto;
  }
}

/* line 6, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  float: left;
}

/* line 15, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group > .btn:hover, .btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active,
.btn-group-vertical > .btn:hover,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn.active {
  z-index: 2;
}

/* line 26, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group .btn + .btn,
.btn-group .btn + .btn-group,
.btn-group .btn-group + .btn,
.btn-group .btn-group + .btn-group {
  margin-left: -1px;
}

/* line 35, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-toolbar {
  margin-left: -5px;
}

/* line 14, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.btn-toolbar:before, .btn-toolbar:after {
  display: table;
  content: " ";
}

/* line 19, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.btn-toolbar:after {
  clear: both;
}

/* line 39, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-toolbar .btn,
.btn-toolbar .btn-group,
.btn-toolbar .input-group {
  float: left;
}

/* line 44, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-toolbar > .btn,
.btn-toolbar > .btn-group,
.btn-toolbar > .input-group {
  margin-left: 5px;
}

/* line 51, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  border-radius: 0;
}

/* line 56, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group > .btn:first-child {
  margin-left: 0;
}

/* line 58, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

/* line 63, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group > .btn:last-child:not(:first-child),
.btn-group > .dropdown-toggle:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

/* line 69, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group > .btn-group {
  float: left;
}

/* line 72, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}

/* line 76, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

/* line 81, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

/* line 86, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
  outline: 0;
}

/* line 105, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group > .btn + .dropdown-toggle {
  padding-right: 8px;
  padding-left: 8px;
}

/* line 109, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group > .btn-lg + .dropdown-toggle, .btn-group-lg.btn-group > .btn + .dropdown-toggle {
  padding-right: 12px;
  padding-left: 12px;
}

/* line 116, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group.open .dropdown-toggle {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

/* line 120, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group.open .dropdown-toggle.btn-link {
  box-shadow: none;
}

/* line 127, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.btn .caret {
  margin-left: 0;
}

/* line 131, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-lg .caret, .btn-group-lg > .btn .caret {
  border-width: 5px 5px 0;
  border-bottom-width: 0;
}

/* line 136, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.dropup .btn-lg .caret, .dropup .btn-group-lg > .btn .caret {
  border-width: 0 5px 5px;
}

/* line 145, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group,
.btn-group-vertical > .btn-group > .btn {
  display: block;
  float: none;
  width: 100%;
  max-width: 100%;
}

/* line 14, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.btn-group-vertical > .btn-group:before, .btn-group-vertical > .btn-group:after {
  display: table;
  content: " ";
}

/* line 19, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.btn-group-vertical > .btn-group:after {
  clear: both;
}

/* line 157, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group-vertical > .btn-group > .btn {
  float: none;
}

/* line 162, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group-vertical > .btn + .btn,
.btn-group-vertical > .btn + .btn-group,
.btn-group-vertical > .btn-group + .btn,
.btn-group-vertical > .btn-group + .btn-group {
  margin-top: -1px;
  margin-left: 0;
}

/* line 172, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
  border-radius: 0;
}

/* line 175, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group-vertical > .btn:first-child:not(:last-child) {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

/* line 179, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group-vertical > .btn:last-child:not(:first-child) {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}

/* line 184, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}

/* line 188, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

/* line 193, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

/* line 201, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group-justified {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
}

/* line 206, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group-justified > .btn,
.btn-group-justified > .btn-group {
  display: table-cell;
  float: none;
  width: 1%;
}

/* line 212, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group-justified > .btn-group .btn {
  width: 100%;
}

/* line 216, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group-justified > .btn-group .dropdown-menu {
  left: auto;
}

/* line 237, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_button-groups.scss */
[data-toggle="buttons"] > .btn input[type="radio"],
[data-toggle="buttons"] > .btn input[type="checkbox"],
[data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
[data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}

/* line 7, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group {
  position: relative;
  display: table;
  border-collapse: separate;
}

/* line 13, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group[class*="col-"] {
  float: none;
  padding-right: 0;
  padding-left: 0;
}

/* line 19, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group .form-control {
  position: relative;
  z-index: 2;
  float: left;
  width: 100%;
  margin-bottom: 0;
}

/* line 33, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group .form-control:focus {
  z-index: 3;
}

/* line 58, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group-addon,
.input-group-btn,
.input-group .form-control {
  display: table-cell;
}

/* line 63, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group-addon:not(:first-child):not(:last-child),
.input-group-btn:not(:first-child):not(:last-child),
.input-group .form-control:not(:first-child):not(:last-child) {
  border-radius: 0;
}

/* line 68, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group-addon,
.input-group-btn {
  width: 1%;
  white-space: nowrap;
  vertical-align: middle;
}

/* line 77, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group-addon {
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  color: #555555;
  text-align: center;
  background-color: #eeeeee;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* line 89, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group-addon.input-sm,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .input-group-addon.btn {
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 3px;
}

/* line 94, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group-addon.input-lg,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .input-group-addon.btn {
  padding: 10px 16px;
  font-size: 18px;
  border-radius: 6px;
}

/* line 101, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group-addon input[type="radio"],
.input-group-addon input[type="checkbox"] {
  margin-top: 0;
}

/* line 108, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group .form-control:first-child,
.input-group-addon:first-child,
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group > .btn,
.input-group-btn:first-child > .dropdown-toggle,
.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

/* line 117, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group-addon:first-child {
  border-right: 0;
}

/* line 120, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group .form-control:last-child,
.input-group-addon:last-child,
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group > .btn,
.input-group-btn:last-child > .dropdown-toggle,
.input-group-btn:first-child > .btn:not(:first-child),
.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

/* line 129, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group-addon:last-child {
  border-left: 0;
}

/* line 135, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group-btn {
  position: relative;
  font-size: 0;
  white-space: nowrap;
}

/* line 144, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group-btn > .btn {
  position: relative;
}

/* line 146, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group-btn > .btn + .btn {
  margin-left: -1px;
}

/* line 150, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group-btn > .btn:hover, .input-group-btn > .btn:focus, .input-group-btn > .btn:active {
  z-index: 2;
}

/* line 159, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group {
  margin-right: -1px;
}

/* line 165, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_input-groups.scss */
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group {
  z-index: 2;
  margin-left: -1px;
}

/* line 9, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

/* line 14, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.nav:before, .nav:after {
  display: table;
  content: " ";
}

/* line 19, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.nav:after {
  clear: both;
}

/* line 15, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav > li {
  position: relative;
  display: block;
}

/* line 19, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav > li > a {
  position: relative;
  display: block;
  padding: 10px 15px;
}

/* line 23, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav > li > a:hover, .nav > li > a:focus {
  text-decoration: none;
  background-color: #eeeeee;
}

/* line 31, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav > li.disabled > a {
  color: #777777;
}

/* line 34, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav > li.disabled > a:hover, .nav > li.disabled > a:focus {
  color: #777777;
  text-decoration: none;
  cursor: not-allowed;
  background-color: transparent;
}

/* line 46, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav .open > a, .nav .open > a:hover, .nav .open > a:focus {
  background-color: #eeeeee;
  border-color: #337ab7;
}

/* line 59, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav .nav-divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}

/* line 66, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav > li > a > img {
  max-width: none;
}

/* line 76, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav-tabs {
  border-bottom: 1px solid #ddd;
}

/* line 78, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav-tabs > li {
  float: left;
  margin-bottom: -1px;
}

/* line 84, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav-tabs > li > a {
  margin-right: 2px;
  line-height: 1.428571429;
  border: 1px solid transparent;
  border-radius: 4px 4px 0 0;
}

/* line 89, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav-tabs > li > a:hover {
  border-color: #eeeeee #eeeeee #ddd;
}

/* line 96, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
  color: #555555;
  cursor: default;
  background-color: #fff;
  border: 1px solid #ddd;
  border-bottom-color: transparent;
}

/* line 118, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav-pills > li {
  float: left;
}

/* line 122, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav-pills > li > a {
  border-radius: 4px;
}

/* line 125, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav-pills > li + li {
  margin-left: 2px;
}

/* line 131, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus {
  color: #fff;
  background-color: #337ab7;
}

/* line 144, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav-stacked > li {
  float: none;
}

/* line 146, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav-stacked > li + li {
  margin-top: 2px;
  margin-left: 0;
}

/* line 160, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav-justified, .nav-tabs.nav-justified {
  width: 100%;
}

/* line 163, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav-justified > li, .nav-tabs.nav-justified > li {
  float: none;
}

/* line 165, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav-justified > li > a, .nav-tabs.nav-justified > li > a {
  margin-bottom: 5px;
  text-align: center;
}

/* line 171, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}

@media (min-width: 768px) {
  /* line 177, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
  .nav-justified > li, .nav-tabs.nav-justified > li {
    display: table-cell;
    width: 1%;
  }
  /* line 180, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
  .nav-justified > li > a, .nav-tabs.nav-justified > li > a {
    margin-bottom: 0;
  }
}

/* line 190, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav-tabs-justified, .nav-tabs.nav-justified {
  border-bottom: 0;
}

/* line 193, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a {
  margin-right: 0;
  border-radius: 4px;
}

/* line 199, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a,
.nav-tabs-justified > .active > a:hover,
.nav-tabs.nav-justified > .active > a:hover,
.nav-tabs-justified > .active > a:focus,
.nav-tabs.nav-justified > .active > a:focus {
  border: 1px solid #ddd;
}

@media (min-width: 768px) {
  /* line 206, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
  .nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a {
    border-bottom: 1px solid #ddd;
    border-radius: 4px 4px 0 0;
  }
  /* line 210, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
  .nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a,
  .nav-tabs-justified > .active > a:hover,
  .nav-tabs.nav-justified > .active > a:hover,
  .nav-tabs-justified > .active > a:focus,
  .nav-tabs.nav-justified > .active > a:focus {
    border-bottom-color: #fff;
  }
}

/* line 224, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.tab-content > .tab-pane {
  display: none;
}

/* line 227, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.tab-content > .active {
  display: block;
}

/* line 237, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navs.scss */
.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar {
  position: relative;
  min-height: 50px;
  margin-bottom: 20px;
  border: 1px solid transparent;
}

/* line 14, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.navbar:before, .navbar:after {
  display: table;
  content: " ";
}

/* line 19, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.navbar:after {
  clear: both;
}

@media (min-width: 768px) {
  /* line 11, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar {
    border-radius: 4px;
  }
}

/* line 14, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.navbar-header:before, .navbar-header:after {
  display: table;
  content: " ";
}

/* line 19, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.navbar-header:after {
  clear: both;
}

@media (min-width: 768px) {
  /* line 31, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-header {
    float: left;
  }
}

/* line 50, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-collapse {
  padding-right: 15px;
  padding-left: 15px;
  overflow-x: visible;
  border-top: 1px solid transparent;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  -webkit-overflow-scrolling: touch;
}

/* line 14, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.navbar-collapse:before, .navbar-collapse:after {
  display: table;
  content: " ";
}

/* line 19, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.navbar-collapse:after {
  clear: both;
}

/* line 59, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-collapse.in {
  overflow-y: auto;
}

@media (min-width: 768px) {
  /* line 50, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-collapse {
    width: auto;
    border-top: 0;
    box-shadow: none;
  }
  /* line 68, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-collapse.collapse {
    display: block !important;
    height: auto !important;
    padding-bottom: 0;
    overflow: visible !important;
  }
  /* line 75, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-collapse.in {
    overflow-y: visible;
  }
  /* line 81, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-fixed-top .navbar-collapse,
  .navbar-static-top .navbar-collapse,
  .navbar-fixed-bottom .navbar-collapse {
    padding-right: 0;
    padding-left: 0;
  }
}

/* line 90, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-fixed-top,
.navbar-fixed-bottom {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1030;
}

/* line 92, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-fixed-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
  max-height: 340px;
}

@media (max-device-width: 480px) and (orientation: landscape) {
  /* line 92, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-fixed-top .navbar-collapse,
  .navbar-fixed-bottom .navbar-collapse {
    max-height: 200px;
  }
}

@media (min-width: 768px) {
  /* line 90, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-fixed-top,
  .navbar-fixed-bottom {
    border-radius: 0;
  }
}

/* line 112, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-fixed-top {
  top: 0;
  border-width: 0 0 1px;
}

/* line 116, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-fixed-bottom {
  bottom: 0;
  margin-bottom: 0;
  border-width: 1px 0 0;
}

/* line 129, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.container > .navbar-header,
.container > .navbar-collapse,
.container-fluid > .navbar-header,
.container-fluid > .navbar-collapse {
  margin-right: -15px;
  margin-left: -15px;
}

@media (min-width: 768px) {
  /* line 129, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .container > .navbar-header,
  .container > .navbar-collapse,
  .container-fluid > .navbar-header,
  .container-fluid > .navbar-collapse {
    margin-right: 0;
    margin-left: 0;
  }
}

/* line 149, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-static-top {
  z-index: 1000;
  border-width: 0 0 1px;
}

@media (min-width: 768px) {
  /* line 149, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-static-top {
    border-radius: 0;
  }
}

/* line 161, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-brand {
  float: left;
  height: 50px;
  padding: 15px 15px;
  font-size: 18px;
  line-height: 20px;
}

/* line 168, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-brand:hover, .navbar-brand:focus {
  text-decoration: none;
}

/* line 173, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-brand > img {
  display: block;
}

@media (min-width: 768px) {
  /* line 178, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar > .container .navbar-brand,
  .navbar > .container-fluid .navbar-brand {
    margin-left: -15px;
  }
}

/* line 191, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-toggle {
  position: relative;
  float: right;
  padding: 9px 10px;
  margin-right: 15px;
  margin-top: 8px;
  margin-bottom: 8px;
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}

/* line 204, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-toggle:focus {
  outline: 0;
}

/* line 209, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-toggle .icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px;
}

/* line 215, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-toggle .icon-bar + .icon-bar {
  margin-top: 4px;
}

@media (min-width: 768px) {
  /* line 191, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-toggle {
    display: none;
  }
}

/* line 230, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-nav {
  margin: 7.5px -15px;
}

/* line 233, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-nav > li > a {
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 20px;
}

@media (max-width: 767px) {
  /* line 241, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-nav .open .dropdown-menu {
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    background-color: transparent;
    border: 0;
    box-shadow: none;
  }
  /* line 249, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-nav .open .dropdown-menu > li > a,
  .navbar-nav .open .dropdown-menu .dropdown-header {
    padding: 5px 15px 5px 25px;
  }
  /* line 253, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-nav .open .dropdown-menu > li > a {
    line-height: 20px;
  }
  /* line 255, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-nav .open .dropdown-menu > li > a:focus {
    background-image: none;
  }
}

@media (min-width: 768px) {
  /* line 230, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-nav {
    float: left;
    margin: 0;
  }
  /* line 268, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-nav > li {
    float: left;
  }
  /* line 270, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-nav > li > a {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}

/* line 284, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-form {
  padding: 10px 15px;
  margin-right: -15px;
  margin-left: -15px;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  margin-top: 8px;
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  /* line 468, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  .navbar-form .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  /* line 475, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  .navbar-form .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  /* line 482, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  .navbar-form .form-control-static {
    display: inline-block;
  }
  /* line 486, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  .navbar-form .input-group {
    display: inline-table;
    vertical-align: middle;
  }
  /* line 490, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  .navbar-form .input-group .input-group-addon,
  .navbar-form .input-group .input-group-btn,
  .navbar-form .input-group .form-control {
    width: auto;
  }
  /* line 498, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  .navbar-form .input-group > .form-control {
    width: 100%;
  }
  /* line 502, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  .navbar-form .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
  /* line 509, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  .navbar-form .radio,
  .navbar-form .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }
  /* line 516, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  .navbar-form .radio label,
  .navbar-form .checkbox label {
    padding-left: 0;
  }
  /* line 520, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  .navbar-form .radio input[type="radio"],
  .navbar-form .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0;
  }
  /* line 527, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_forms.scss */
  .navbar-form .has-feedback .form-control-feedback {
    top: 0;
  }
}

@media (max-width: 767px) {
  /* line 296, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-form .form-group {
    margin-bottom: 5px;
  }
  /* line 300, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-form .form-group:last-child {
    margin-bottom: 0;
  }
}

@media (min-width: 768px) {
  /* line 284, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-form {
    width: auto;
    padding-top: 0;
    padding-bottom: 0;
    margin-right: 0;
    margin-left: 0;
    border: 0;
    box-shadow: none;
  }
}

/* line 325, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-nav > li > .dropdown-menu {
  margin-top: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

/* line 330, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
  margin-bottom: 0;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

/* line 341, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-btn {
  margin-top: 8px;
  margin-bottom: 8px;
}

/* line 344, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-btn.btn-sm, .btn-group-sm > .navbar-btn.btn {
  margin-top: 10px;
  margin-bottom: 10px;
}

/* line 347, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-btn.btn-xs, .btn-group-xs > .navbar-btn.btn {
  margin-top: 14px;
  margin-bottom: 14px;
}

/* line 357, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-text {
  margin-top: 15px;
  margin-bottom: 15px;
}

@media (min-width: 768px) {
  /* line 357, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-text {
    float: left;
    margin-right: 15px;
    margin-left: 15px;
  }
}

@media (min-width: 768px) {
  /* line 377, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-left {
    float: left !important;
  }
  /* line 380, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-right {
    float: right !important;
    margin-right: -15px;
  }
  /* line 384, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-right ~ .navbar-right {
    margin-right: 0;
  }
}

/* line 395, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default {
  background-color: #f8f8f8;
  border-color: #e7e7e7;
}

/* line 399, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-brand {
  color: #777;
}

/* line 401, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus {
  color: #5e5e5e;
  background-color: transparent;
}

/* line 408, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-text {
  color: #777;
}

/* line 413, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-nav > li > a {
  color: #777;
}

/* line 416, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus {
  color: #333;
  background-color: transparent;
}

/* line 423, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus {
  color: #555;
  background-color: #e7e7e7;
}

/* line 431, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-nav > .disabled > a, .navbar-default .navbar-nav > .disabled > a:hover, .navbar-default .navbar-nav > .disabled > a:focus {
  color: #ccc;
  background-color: transparent;
}

/* line 442, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus {
  color: #555;
  background-color: #e7e7e7;
}

@media (max-width: 767px) {
  /* line 453, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-default .navbar-nav .open .dropdown-menu > li > a {
    color: #777;
  }
  /* line 455, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #333;
    background-color: transparent;
  }
  /* line 462, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #555;
    background-color: #e7e7e7;
  }
  /* line 470, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #ccc;
    background-color: transparent;
  }
}

/* line 481, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-toggle {
  border-color: #ddd;
}

/* line 483, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
  background-color: #ddd;
}

/* line 487, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-toggle .icon-bar {
  background-color: #888;
}

/* line 492, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
  border-color: #e7e7e7;
}

/* line 502, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-link {
  color: #777;
}

/* line 504, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .navbar-link:hover {
  color: #333;
}

/* line 509, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .btn-link {
  color: #777;
}

/* line 511, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .btn-link:hover, .navbar-default .btn-link:focus {
  color: #333;
}

/* line 517, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-default .btn-link[disabled]:hover, .navbar-default .btn-link[disabled]:focus,
fieldset[disabled] .navbar-default .btn-link:hover,
fieldset[disabled] .navbar-default .btn-link:focus {
  color: #ccc;
}

/* line 527, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse {
  background-color: #222;
  border-color: #090909;
}

/* line 531, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-brand {
  color: #9d9d9d;
}

/* line 533, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-brand:hover, .navbar-inverse .navbar-brand:focus {
  color: #fff;
  background-color: transparent;
}

/* line 540, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-text {
  color: #9d9d9d;
}

/* line 545, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-nav > li > a {
  color: #9d9d9d;
}

/* line 548, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-nav > li > a:hover, .navbar-inverse .navbar-nav > li > a:focus {
  color: #fff;
  background-color: transparent;
}

/* line 555, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse .navbar-nav > .active > a:focus {
  color: #fff;
  background-color: #090909;
}

/* line 563, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-nav > .disabled > a, .navbar-inverse .navbar-nav > .disabled > a:hover, .navbar-inverse .navbar-nav > .disabled > a:focus {
  color: #444;
  background-color: transparent;
}

/* line 573, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:hover, .navbar-inverse .navbar-nav > .open > a:focus {
  color: #fff;
  background-color: #090909;
}

@media (max-width: 767px) {
  /* line 584, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
    border-color: #090909;
  }
  /* line 587, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
    background-color: #090909;
  }
  /* line 590, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
    color: #9d9d9d;
  }
  /* line 592, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #fff;
    background-color: transparent;
  }
  /* line 599, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #fff;
    background-color: #090909;
  }
  /* line 607, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #444;
    background-color: transparent;
  }
}

/* line 619, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-toggle {
  border-color: #333;
}

/* line 621, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-toggle:hover, .navbar-inverse .navbar-toggle:focus {
  background-color: #333;
}

/* line 625, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-toggle .icon-bar {
  background-color: #fff;
}

/* line 630, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-collapse,
.navbar-inverse .navbar-form {
  border-color: #101010;
}

/* line 635, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-link {
  color: #9d9d9d;
}

/* line 637, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-link:hover {
  color: #fff;
}

/* line 642, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .btn-link {
  color: #9d9d9d;
}

/* line 644, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .btn-link:hover, .navbar-inverse .btn-link:focus {
  color: #fff;
}

/* line 650, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .btn-link[disabled]:hover, .navbar-inverse .btn-link[disabled]:focus,
fieldset[disabled] .navbar-inverse .btn-link:hover,
fieldset[disabled] .navbar-inverse .btn-link:focus {
  color: #444;
}

/* line 6, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_breadcrumbs.scss */
.breadcrumb {
  padding: 8px 15px;
  margin-bottom: 20px;
  list-style: none;
  background-color: #f5f5f5;
  border-radius: 4px;
}

/* line 13, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_breadcrumbs.scss */
.breadcrumb > li {
  display: inline-block;
}

/* line 16, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_breadcrumbs.scss */
.breadcrumb > li + li:before {
  padding: 0 5px;
  color: #ccc;
  content: "/ ";
}

/* line 25, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_breadcrumbs.scss */
.breadcrumb > .active {
  color: #777777;
}

/* line 4, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pagination.scss */
.pagination {
  display: inline-block;
  padding-left: 0;
  margin: 20px 0;
  border-radius: 4px;
}

/* line 10, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pagination.scss */
.pagination > li {
  display: inline;
}

/* line 12, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pagination.scss */
.pagination > li > a,
.pagination > li > span {
  position: relative;
  float: left;
  padding: 6px 12px;
  margin-left: -1px;
  line-height: 1.428571429;
  color: #337ab7;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #ddd;
}

/* line 24, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pagination.scss */
.pagination > li > a:hover, .pagination > li > a:focus,
.pagination > li > span:hover,
.pagination > li > span:focus {
  z-index: 2;
  color: #23527c;
  background-color: #eeeeee;
  border-color: #ddd;
}

/* line 33, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pagination.scss */
.pagination > li:first-child > a,
.pagination > li:first-child > span {
  margin-left: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

/* line 40, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pagination.scss */
.pagination > li:last-child > a,
.pagination > li:last-child > span {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

/* line 49, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pagination.scss */
.pagination > .active > a, .pagination > .active > a:hover, .pagination > .active > a:focus,
.pagination > .active > span,
.pagination > .active > span:hover,
.pagination > .active > span:focus {
  z-index: 3;
  color: #fff;
  cursor: default;
  background-color: #337ab7;
  border-color: #337ab7;
}

/* line 61, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pagination.scss */
.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
  color: #777777;
  cursor: not-allowed;
  background-color: #fff;
  border-color: #ddd;
}

/* line 5, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_pagination.scss */
.pagination-lg > li > a,
.pagination-lg > li > span {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
}

/* line 12, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_pagination.scss */
.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}

/* line 18, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_pagination.scss */
.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}

/* line 5, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_pagination.scss */
.pagination-sm > li > a,
.pagination-sm > li > span {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
}

/* line 12, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_pagination.scss */
.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}

/* line 18, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_pagination.scss */
.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}

/* line 6, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pager.scss */
.pager {
  padding-left: 0;
  margin: 20px 0;
  text-align: center;
  list-style: none;
}

/* line 14, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.pager:before, .pager:after {
  display: table;
  content: " ";
}

/* line 19, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.pager:after {
  clear: both;
}

/* line 12, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pager.scss */
.pager li {
  display: inline;
}

/* line 14, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pager.scss */
.pager li > a,
.pager li > span {
  display: inline-block;
  padding: 5px 14px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 15px;
}

/* line 23, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pager.scss */
.pager li > a:hover,
.pager li > a:focus {
  text-decoration: none;
  background-color: #eeeeee;
}

/* line 31, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pager.scss */
.pager .next > a,
.pager .next > span {
  float: right;
}

/* line 38, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pager.scss */
.pager .previous > a,
.pager .previous > span {
  float: left;
}

/* line 45, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_pager.scss */
.pager .disabled > a,
.pager .disabled > a:hover,
.pager .disabled > a:focus,
.pager .disabled > span {
  color: #777777;
  cursor: not-allowed;
  background-color: #fff;
}

/* line 9, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_alerts.scss */
.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
}

/* line 16, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_alerts.scss */
.alert h4 {
  margin-top: 0;
  color: inherit;
}

/* line 22, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_alerts.scss */
.alert .alert-link {
  font-weight: bold;
}

/* line 27, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_alerts.scss */
.alert > p,
.alert > ul {
  margin-bottom: 0;
}

/* line 32, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_alerts.scss */
.alert > p + p {
  margin-top: 5px;
}

/* line 42, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_alerts.scss */
.alert-dismissable,
.alert-dismissible {
  padding-right: 35px;
}

/* line 47, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_alerts.scss */
.alert-dismissable .close,
.alert-dismissible .close {
  position: relative;
  top: -2px;
  right: -21px;
  color: inherit;
}

/* line 59, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_alerts.scss */
.alert-success {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}

/* line 8, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_alerts.scss */
.alert-success hr {
  border-top-color: #c9e2b3;
}

/* line 12, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_alerts.scss */
.alert-success .alert-link {
  color: #2b542c;
}

/* line 63, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_alerts.scss */
.alert-info {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1;
}

/* line 8, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_alerts.scss */
.alert-info hr {
  border-top-color: #a6e1ec;
}

/* line 12, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_alerts.scss */
.alert-info .alert-link {
  color: #245269;
}

/* line 67, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_alerts.scss */
.alert-warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
}

/* line 8, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_alerts.scss */
.alert-warning hr {
  border-top-color: #f7e1b5;
}

/* line 12, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_alerts.scss */
.alert-warning .alert-link {
  color: #66512c;
}

/* line 71, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_alerts.scss */
.alert-danger {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}

/* line 8, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_alerts.scss */
.alert-danger hr {
  border-top-color: #e4b9c0;
}

/* line 12, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_alerts.scss */
.alert-danger .alert-link {
  color: #843534;
}

@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}

@keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}

/* line 26, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_progress-bars.scss */
.progress {
  height: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  background-color: #f5f5f5;
  border-radius: 4px;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* line 36, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_progress-bars.scss */
.progress-bar {
  float: left;
  width: 0%;
  height: 100%;
  font-size: 12px;
  line-height: 20px;
  color: #fff;
  text-align: center;
  background-color: #337ab7;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  -webkit-transition: width 0.6s ease;
  transition: width 0.6s ease;
}

/* line 54, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_progress-bars.scss */
.progress-striped .progress-bar,
.progress-bar-striped {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 40px 40px;
}

/* line 64, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_progress-bars.scss */
.progress.active .progress-bar,
.progress-bar.active {
  -webkit-animation: progress-bar-stripes 2s linear infinite;
  animation: progress-bar-stripes 2s linear infinite;
}

/* line 73, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_progress-bars.scss */
.progress-bar-success {
  background-color: #5cb85c;
}

/* line 7, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_progress-bar.scss */
.progress-striped .progress-bar-success {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}

/* line 77, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_progress-bars.scss */
.progress-bar-info {
  background-color: #5bc0de;
}

/* line 7, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_progress-bar.scss */
.progress-striped .progress-bar-info {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}

/* line 81, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_progress-bars.scss */
.progress-bar-warning {
  background-color: #f0ad4e;
}

/* line 7, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_progress-bar.scss */
.progress-striped .progress-bar-warning {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}

/* line 85, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_progress-bars.scss */
.progress-bar-danger {
  background-color: #d9534f;
}

/* line 7, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_progress-bar.scss */
.progress-striped .progress-bar-danger {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_media.scss */
.media {
  margin-top: 15px;
}

/* line 5, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_media.scss */
.media:first-child {
  margin-top: 0;
}

/* line 10, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_media.scss */
.media,
.media-body {
  overflow: hidden;
  zoom: 1;
}

/* line 16, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_media.scss */
.media-body {
  width: 10000px;
}

/* line 20, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_media.scss */
.media-object {
  display: block;
}

/* line 24, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_media.scss */
.media-object.img-thumbnail {
  max-width: none;
}

/* line 29, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_media.scss */
.media-right,
.media > .pull-right {
  padding-left: 10px;
}

/* line 34, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_media.scss */
.media-left,
.media > .pull-left {
  padding-right: 10px;
}

/* line 39, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_media.scss */
.media-left,
.media-right,
.media-body {
  display: table-cell;
  vertical-align: top;
}

/* line 46, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_media.scss */
.media-middle {
  vertical-align: middle;
}

/* line 50, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_media.scss */
.media-bottom {
  vertical-align: bottom;
}

/* line 55, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_media.scss */
.media-heading {
  margin-top: 0;
  margin-bottom: 5px;
}

/* line 63, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_media.scss */
.media-list {
  padding-left: 0;
  list-style: none;
}

/* line 10, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
.list-group {
  padding-left: 0;
  margin-bottom: 20px;
}

/* line 21, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item {
  position: relative;
  display: block;
  padding: 10px 15px;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid #ddd;
}

/* line 31, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

/* line 34, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item:last-child {
  margin-bottom: 0;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}

/* line 40, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item.disabled, .list-group-item.disabled:hover, .list-group-item.disabled:focus {
  color: #777777;
  cursor: not-allowed;
  background-color: #eeeeee;
}

/* line 48, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item.disabled .list-group-item-heading, .list-group-item.disabled:hover .list-group-item-heading, .list-group-item.disabled:focus .list-group-item-heading {
  color: inherit;
}

/* line 51, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item.disabled .list-group-item-text, .list-group-item.disabled:hover .list-group-item-text, .list-group-item.disabled:focus .list-group-item-text {
  color: #777777;
}

/* line 57, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item.active, .list-group-item.active:hover, .list-group-item.active:focus {
  z-index: 2;
  color: #fff;
  background-color: #337ab7;
  border-color: #337ab7;
}

/* line 66, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item.active .list-group-item-heading,
.list-group-item.active .list-group-item-heading > small,
.list-group-item.active .list-group-item-heading > .small, .list-group-item.active:hover .list-group-item-heading,
.list-group-item.active:hover .list-group-item-heading > small,
.list-group-item.active:hover .list-group-item-heading > .small, .list-group-item.active:focus .list-group-item-heading,
.list-group-item.active:focus .list-group-item-heading > small,
.list-group-item.active:focus .list-group-item-heading > .small {
  color: inherit;
}

/* line 71, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item.active .list-group-item-text, .list-group-item.active:hover .list-group-item-text, .list-group-item.active:focus .list-group-item-text {
  color: #c7ddef;
}

/* line 83, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
a.list-group-item,
button.list-group-item {
  color: #555;
}

/* line 87, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
a.list-group-item .list-group-item-heading,
button.list-group-item .list-group-item-heading {
  color: #333;
}

/* line 92, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
a.list-group-item:hover, a.list-group-item:focus,
button.list-group-item:hover,
button.list-group-item:focus {
  color: #555;
  text-decoration: none;
  background-color: #f5f5f5;
}

/* line 100, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
button.list-group-item {
  width: 100%;
  text-align: left;
}

/* line 4, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
.list-group-item-success {
  color: #3c763d;
  background-color: #dff0d8;
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-success,
button.list-group-item-success {
  color: #3c763d;
}

/* line 15, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-success .list-group-item-heading,
button.list-group-item-success .list-group-item-heading {
  color: inherit;
}

/* line 19, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-success:hover, a.list-group-item-success:focus,
button.list-group-item-success:hover,
button.list-group-item-success:focus {
  color: #3c763d;
  background-color: #d0e9c6;
}

/* line 24, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-success.active, a.list-group-item-success.active:hover, a.list-group-item-success.active:focus,
button.list-group-item-success.active,
button.list-group-item-success.active:hover,
button.list-group-item-success.active:focus {
  color: #fff;
  background-color: #3c763d;
  border-color: #3c763d;
}

/* line 4, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
.list-group-item-info {
  color: #31708f;
  background-color: #d9edf7;
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-info,
button.list-group-item-info {
  color: #31708f;
}

/* line 15, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-info .list-group-item-heading,
button.list-group-item-info .list-group-item-heading {
  color: inherit;
}

/* line 19, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-info:hover, a.list-group-item-info:focus,
button.list-group-item-info:hover,
button.list-group-item-info:focus {
  color: #31708f;
  background-color: #c4e3f3;
}

/* line 24, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-info.active, a.list-group-item-info.active:hover, a.list-group-item-info.active:focus,
button.list-group-item-info.active,
button.list-group-item-info.active:hover,
button.list-group-item-info.active:focus {
  color: #fff;
  background-color: #31708f;
  border-color: #31708f;
}

/* line 4, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
.list-group-item-warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-warning,
button.list-group-item-warning {
  color: #8a6d3b;
}

/* line 15, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-warning .list-group-item-heading,
button.list-group-item-warning .list-group-item-heading {
  color: inherit;
}

/* line 19, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-warning:hover, a.list-group-item-warning:focus,
button.list-group-item-warning:hover,
button.list-group-item-warning:focus {
  color: #8a6d3b;
  background-color: #faf2cc;
}

/* line 24, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-warning.active, a.list-group-item-warning.active:hover, a.list-group-item-warning.active:focus,
button.list-group-item-warning.active,
button.list-group-item-warning.active:hover,
button.list-group-item-warning.active:focus {
  color: #fff;
  background-color: #8a6d3b;
  border-color: #8a6d3b;
}

/* line 4, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
.list-group-item-danger {
  color: #a94442;
  background-color: #f2dede;
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-danger,
button.list-group-item-danger {
  color: #a94442;
}

/* line 15, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-danger .list-group-item-heading,
button.list-group-item-danger .list-group-item-heading {
  color: inherit;
}

/* line 19, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-danger:hover, a.list-group-item-danger:focus,
button.list-group-item-danger:hover,
button.list-group-item-danger:focus {
  color: #a94442;
  background-color: #ebcccc;
}

/* line 24, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
a.list-group-item-danger.active, a.list-group-item-danger.active:hover, a.list-group-item-danger.active:focus,
button.list-group-item-danger.active,
button.list-group-item-danger.active:hover,
button.list-group-item-danger.active:focus {
  color: #fff;
  background-color: #a94442;
  border-color: #a94442;
}

/* line 121, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item-heading {
  margin-top: 0;
  margin-bottom: 5px;
}

/* line 125, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item-text {
  margin-bottom: 0;
  line-height: 1.3;
}

/* line 7, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel {
  margin-bottom: 20px;
  background-color: #fff;
  border: 1px solid transparent;
  border-radius: 4px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}

/* line 16, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel-body {
  padding: 15px;
}

/* line 14, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.panel-body:before, .panel-body:after {
  display: table;
  content: " ";
}

/* line 19, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.panel-body:after {
  clear: both;
}

/* line 22, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel-heading {
  padding: 10px 15px;
  border-bottom: 1px solid transparent;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}

/* line 27, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel-heading > .dropdown .dropdown-toggle {
  color: inherit;
}

/* line 33, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  color: inherit;
}

/* line 39, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel-title > a,
.panel-title > small,
.panel-title > .small,
.panel-title > small > a,
.panel-title > .small > a {
  color: inherit;
}

/* line 49, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel-footer {
  padding: 10px 15px;
  background-color: #f5f5f5;
  border-top: 1px solid #ddd;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

/* line 63, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel > .list-group,
.panel > .panel-collapse > .list-group {
  margin-bottom: 0;
}

/* line 67, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel > .list-group .list-group-item,
.panel > .panel-collapse > .list-group .list-group-item {
  border-width: 1px 0;
  border-radius: 0;
}

/* line 74, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel > .list-group:first-child .list-group-item:first-child,
.panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
  border-top: 0;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}

/* line 82, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel > .list-group:last-child .list-group-item:last-child,
.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
  border-bottom: 0;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

/* line 89, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

/* line 96, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel-heading + .list-group .list-group-item:first-child {
  border-top-width: 0;
}

/* line 100, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.list-group + .panel-footer {
  border-top-width: 0;
}

/* line 110, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table,
.panel > .table-responsive > .table,
.panel > .panel-collapse > .table {
  margin-bottom: 0;
}

/* line 115, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table caption,
.panel > .table-responsive > .table caption,
.panel > .panel-collapse > .table caption {
  padding-right: 15px;
  padding-left: 15px;
}

/* line 121, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table:first-child,
.panel > .table-responsive:first-child > .table:first-child {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}

/* line 127, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table:first-child > thead:first-child > tr:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}

/* line 131, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
  border-top-left-radius: 3px;
}

/* line 135, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
  border-top-right-radius: 3px;
}

/* line 143, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table:last-child,
.panel > .table-responsive:last-child > .table:last-child {
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

/* line 149, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

/* line 153, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
  border-bottom-left-radius: 3px;
}

/* line 157, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
  border-bottom-right-radius: 3px;
}

/* line 164, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel > .panel-body + .table,
.panel > .panel-body + .table-responsive,
.panel > .table + .panel-body,
.panel > .table-responsive + .panel-body {
  border-top: 1px solid #ddd;
}

/* line 170, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table > tbody:first-child > tr:first-child th,
.panel > .table > tbody:first-child > tr:first-child td {
  border-top: 0;
}

/* line 174, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table-bordered,
.panel > .table-responsive > .table-bordered {
  border: 0;
}

/* line 181, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table-bordered > thead > tr > th:first-child,
.panel > .table-bordered > thead > tr > td:first-child,
.panel > .table-bordered > tbody > tr > th:first-child,
.panel > .table-bordered > tbody > tr > td:first-child,
.panel > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-bordered > tfoot > tr > td:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
  border-left: 0;
}

/* line 185, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table-bordered > thead > tr > th:last-child,
.panel > .table-bordered > thead > tr > td:last-child,
.panel > .table-bordered > tbody > tr > th:last-child,
.panel > .table-bordered > tbody > tr > td:last-child,
.panel > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-bordered > tfoot > tr > td:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
  border-right: 0;
}

/* line 194, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table-bordered > thead > tr:first-child > td,
.panel > .table-bordered > thead > tr:first-child > th,
.panel > .table-bordered > tbody > tr:first-child > td,
.panel > .table-bordered > tbody > tr:first-child > th,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
  border-bottom: 0;
}

/* line 203, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table-bordered > tbody > tr:last-child > td,
.panel > .table-bordered > tbody > tr:last-child > th,
.panel > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-bordered > tfoot > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
  border-bottom: 0;
}

/* line 210, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel > .table-responsive {
  margin-bottom: 0;
  border: 0;
}

/* line 222, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel-group {
  margin-bottom: 20px;
}

/* line 226, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel-group .panel {
  margin-bottom: 0;
  border-radius: 4px;
}

/* line 230, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel-group .panel + .panel {
  margin-top: 5px;
}

/* line 235, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel-group .panel-heading {
  border-bottom: 0;
}

/* line 238, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel-group .panel-heading + .panel-collapse > .panel-body,
.panel-group .panel-heading + .panel-collapse > .list-group {
  border-top: 1px solid #ddd;
}

/* line 244, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel-group .panel-footer {
  border-top: 0;
}

/* line 246, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel-group .panel-footer + .panel-collapse .panel-body {
  border-bottom: 1px solid #ddd;
}

/* line 254, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel-default {
  border-color: #ddd;
}

/* line 6, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-default > .panel-heading {
  color: #333333;
  background-color: #f5f5f5;
  border-color: #ddd;
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-default > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #ddd;
}

/* line 14, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-default > .panel-heading .badge {
  color: #f5f5f5;
  background-color: #333333;
}

/* line 20, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-default > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #ddd;
}

/* line 257, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel-primary {
  border-color: #337ab7;
}

/* line 6, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-primary > .panel-heading {
  color: #fff;
  background-color: #337ab7;
  border-color: #337ab7;
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-primary > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #337ab7;
}

/* line 14, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-primary > .panel-heading .badge {
  color: #337ab7;
  background-color: #fff;
}

/* line 20, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-primary > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #337ab7;
}

/* line 260, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel-success {
  border-color: #d6e9c6;
}

/* line 6, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-success > .panel-heading {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-success > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #d6e9c6;
}

/* line 14, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-success > .panel-heading .badge {
  color: #dff0d8;
  background-color: #3c763d;
}

/* line 20, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-success > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #d6e9c6;
}

/* line 263, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel-info {
  border-color: #bce8f1;
}

/* line 6, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-info > .panel-heading {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1;
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-info > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #bce8f1;
}

/* line 14, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-info > .panel-heading .badge {
  color: #d9edf7;
  background-color: #31708f;
}

/* line 20, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-info > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #bce8f1;
}

/* line 266, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel-warning {
  border-color: #faebcc;
}

/* line 6, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-warning > .panel-heading {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-warning > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #faebcc;
}

/* line 14, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-warning > .panel-heading .badge {
  color: #fcf8e3;
  background-color: #8a6d3b;
}

/* line 20, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-warning > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #faebcc;
}

/* line 269, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_panels.scss */
.panel-danger {
  border-color: #ebccd1;
}

/* line 6, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-danger > .panel-heading {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-danger > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #ebccd1;
}

/* line 14, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-danger > .panel-heading .badge {
  color: #f2dede;
  background-color: #a94442;
}

/* line 20, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_panels.scss */
.panel-danger > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #ebccd1;
}

/* line 5, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-embed.scss */
.embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
}

/* line 12, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-embed.scss */
.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* line 28, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-embed.scss */
.embed-responsive-16by9 {
  padding-bottom: 56.25%;
}

/* line 33, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-embed.scss */
.embed-responsive-4by3 {
  padding-bottom: 75%;
}

/* line 6, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_close.scss */
.close {
  float: right;
  font-size: 21px;
  font-weight: bold;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  filter: alpha(opacity=20);
  opacity: 0.2;
}

/* line 15, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_close.scss */
.close:hover, .close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
  filter: alpha(opacity=50);
  opacity: 0.5;
}

/* line 30, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_close.scss */
button.close {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
.modal-open {
  overflow: hidden;
}

/* line 16, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}

/* line 32, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
.modal.fade .modal-dialog {
  -webkit-transform: translate(0, -25%);
  transform: translate(0, -25%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}

/* line 36, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
.modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

/* line 38, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

/* line 44, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}

/* line 51, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
.modal-content {
  position: relative;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  outline: 0;
}

/* line 64, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
}

/* line 73, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
.modal-backdrop.fade {
  filter: alpha(opacity=0);
  opacity: 0;
}

/* line 74, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
.modal-backdrop.in {
  filter: alpha(opacity=50);
  opacity: 0.5;
}

/* line 79, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
}

/* line 14, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.modal-header:before, .modal-header:after {
  display: table;
  content: " ";
}

/* line 19, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.modal-header:after {
  clear: both;
}

/* line 85, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
.modal-header .close {
  margin-top: -2px;
}

/* line 90, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
.modal-title {
  margin: 0;
  line-height: 1.428571429;
}

/* line 97, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
.modal-body {
  position: relative;
  padding: 15px;
}

/* line 103, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}

/* line 14, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.modal-footer:before, .modal-footer:after {
  display: table;
  content: " ";
}

/* line 19, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.modal-footer:after {
  clear: both;
}

/* line 110, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
.modal-footer .btn + .btn {
  margin-bottom: 0;
  margin-left: 5px;
}

/* line 115, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}

/* line 119, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}

/* line 125, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 768px) {
  /* line 136, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
  .modal-dialog {
    width: 600px;
    margin: 30px auto;
  }
  /* line 140, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
  .modal-content {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  }
  /* line 145, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
  .modal-sm {
    width: 300px;
  }
}

@media (min-width: 992px) {
  /* line 149, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_modals.scss */
  .modal-lg {
    width: 900px;
  }
}

/* line 7, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.428571429;
  line-break: auto;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  white-space: normal;
  font-size: 12px;
  filter: alpha(opacity=0);
  opacity: 0;
}

/* line 18, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.in {
  filter: alpha(opacity=90);
  opacity: 0.9;
}

/* line 19, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.top {
  padding: 5px 0;
  margin-top: -3px;
}

/* line 23, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.right {
  padding: 0 5px;
  margin-left: 3px;
}

/* line 27, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.bottom {
  padding: 5px 0;
  margin-top: 3px;
}

/* line 31, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.left {
  padding: 0 5px;
  margin-left: -3px;
}

/* line 37, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.top .tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}

/* line 44, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.top-left .tooltip-arrow {
  right: 5px;
  bottom: 0;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}

/* line 51, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.top-right .tooltip-arrow {
  bottom: 0;
  left: 5px;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}

/* line 58, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: #000;
}

/* line 65, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: #000;
}

/* line 72, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}

/* line 79, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.bottom-left .tooltip-arrow {
  top: 0;
  right: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}

/* line 86, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.bottom-right .tooltip-arrow {
  top: 0;
  left: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}

/* line 96, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 4px;
}

/* line 106, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}

/* line 14, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.clearfix:before, .clearfix:after {
  display: table;
  content: " ";
}

/* line 19, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.clearfix:after {
  clear: both;
}

/* line 12, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_utilities.scss */
.center-block {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

/* line 15, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_utilities.scss */
.pull-right {
  float: right !important;
}

/* line 18, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_utilities.scss */
.pull-left {
  float: left !important;
}

/* line 27, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_utilities.scss */
.hide {
  display: none !important;
}

/* line 30, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_utilities.scss */
.show {
  display: block !important;
}

/* line 33, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_utilities.scss */
.invisible {
  visibility: hidden;
}

/* line 36, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_utilities.scss */
.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

/* line 45, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_utilities.scss */
.hidden {
  display: none !important;
}

/* line 53, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_utilities.scss */
.affix {
  position: fixed;
}

@-ms-viewport {
  width: device-width;
}

/* line 14, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
.visible-xs {
  display: none !important;
}

/* line 14, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
.visible-sm {
  display: none !important;
}

/* line 14, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
.visible-md {
  display: none !important;
}

/* line 14, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
.visible-lg {
  display: none !important;
}

/* line 36, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important;
}

@media (max-width: 767px) {
  /* line 3, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  .visible-xs {
    display: block !important;
  }
  /* line 6, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  table.visible-xs {
    display: table !important;
  }
  /* line 7, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  tr.visible-xs {
    display: table-row !important;
  }
  /* line 8, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  th.visible-xs,
  td.visible-xs {
    display: table-cell !important;
  }
}

@media (max-width: 767px) {
  /* line 54, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-xs-block {
    display: block !important;
  }
}

@media (max-width: 767px) {
  /* line 59, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-xs-inline {
    display: inline !important;
  }
}

@media (max-width: 767px) {
  /* line 64, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-xs-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  /* line 3, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  .visible-sm {
    display: block !important;
  }
  /* line 6, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  table.visible-sm {
    display: table !important;
  }
  /* line 7, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  tr.visible-sm {
    display: table-row !important;
  }
  /* line 8, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  th.visible-sm,
  td.visible-sm {
    display: table-cell !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  /* line 73, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-sm-block {
    display: block !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  /* line 78, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-sm-inline {
    display: inline !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  /* line 83, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-sm-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  /* line 3, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  .visible-md {
    display: block !important;
  }
  /* line 6, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  table.visible-md {
    display: table !important;
  }
  /* line 7, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  tr.visible-md {
    display: table-row !important;
  }
  /* line 8, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  th.visible-md,
  td.visible-md {
    display: table-cell !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  /* line 92, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-md-block {
    display: block !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  /* line 97, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-md-inline {
    display: inline !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  /* line 102, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-md-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 1200px) {
  /* line 3, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  .visible-lg {
    display: block !important;
  }
  /* line 6, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  table.visible-lg {
    display: table !important;
  }
  /* line 7, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  tr.visible-lg {
    display: table-row !important;
  }
  /* line 8, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  th.visible-lg,
  td.visible-lg {
    display: table-cell !important;
  }
}

@media (min-width: 1200px) {
  /* line 111, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-lg-block {
    display: block !important;
  }
}

@media (min-width: 1200px) {
  /* line 116, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-lg-inline {
    display: inline !important;
  }
}

@media (min-width: 1200px) {
  /* line 121, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-lg-inline-block {
    display: inline-block !important;
  }
}

@media (max-width: 767px) {
  /* line 14, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  .hidden-xs {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  /* line 14, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  .hidden-sm {
    display: none !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  /* line 14, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  .hidden-md {
    display: none !important;
  }
}

@media (min-width: 1200px) {
  /* line 14, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  .hidden-lg {
    display: none !important;
  }
}

/* line 14, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
.visible-print {
  display: none !important;
}

@media print {
  /* line 3, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  .visible-print {
    display: block !important;
  }
  /* line 6, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  table.visible-print {
    display: table !important;
  }
  /* line 7, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  tr.visible-print {
    display: table-row !important;
  }
  /* line 8, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  th.visible-print,
  td.visible-print {
    display: table-cell !important;
  }
}

/* line 155, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
.visible-print-block {
  display: none !important;
}

@media print {
  /* line 155, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-print-block {
    display: block !important;
  }
}

/* line 162, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
.visible-print-inline {
  display: none !important;
}

@media print {
  /* line 162, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-print-inline {
    display: inline !important;
  }
}

/* line 169, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
.visible-print-inline-block {
  display: none !important;
}

@media print {
  /* line 169, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-print-inline-block {
    display: inline-block !important;
  }
}

@media print {
  /* line 14, vendor/bundle/ruby/2.6.0/gems/bootstrap-sass-3.4.1/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss */
  .hidden-print {
    display: none !important;
  }
}

@font-face {
  font-family: 'Glyphicons Halflings';
  src: url("/assets/glyphicons-halflings-regular.eot");
  src: url("/assets/glyphicons-halflings-regular.eot?#iefix") format("embedded-opentype"), url("/assets/glyphicons-halflings-regular.woff") format("woff"), url("/assets/glyphicons-halflings-regular.ttf") format("truetype"), url("/assets/glyphicons-halflings-regular.svg#glyphicons_halflingsregular") format("svg");
}

/* line 69, app/assets/stylesheets/bootstrp.scss */
a:hover, a:focus {
  text-decoration: none;
}

/* line 74, app/assets/stylesheets/bootstrp.scss */
.alert, .notice {
  background-image: none;
  font-size: 1.1em;
  min-height: 50px;
  padding: 15px;
  position: static;
  -webkit-transition: display 1s linear;
  transition: display 1s linear;
  z-index: 999;
}

/* line 82, app/assets/stylesheets/bootstrp.scss */
.alert a, .notice a {
  font-weight: bold;
  text-decoration: underline;
}

/* line 87, app/assets/stylesheets/bootstrp.scss */
.alert {
  overflow: hidden;
}

/* line 90, app/assets/stylesheets/bootstrp.scss */
.alert.alert-info {
  background-color: #ecf7ff;
  border-color: #c8e9ff;
}

/* line 94, app/assets/stylesheets/bootstrp.scss */
.alert h2 {
  padding: 0;
  font-size: 13pt;
  font-weight: normal;
  margin-bottom: 0.5em;
}

/* line 100, app/assets/stylesheets/bootstrp.scss */
.alert ul {
  margin-left: 15px;
}

/* line 103, app/assets/stylesheets/bootstrp.scss */
.alert ul li {
  margin-bottom: 0.3em;
}

/* line 105, app/assets/stylesheets/bootstrp.scss */
.alert ul li:last-child {
  margin-bottom: 0;
}

/* line 111, app/assets/stylesheets/bootstrp.scss */
.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
  height: 100%;
}

/* line 117, app/assets/stylesheets/bootstrp.scss */
.pagination > .active > a, .pagination > .active > a:hover, .pagination > .active > a:focus,
.pagination > .active > span,
.pagination > .active > span:hover,
.pagination > .active > span:focus {
  background-color: #0077C8;
  border-color: #0077C8;
  font-weight: 700;
}

/* line 136, app/assets/stylesheets/bootstrp.scss */
.tooltip.top .tooltip-inner {
  background-color: #0077C8;
}

/* line 139, app/assets/stylesheets/bootstrp.scss */
.tooltip.top .tooltip-arrow {
  border-top-color: #0077C8;
}

/* line 136, app/assets/stylesheets/bootstrp.scss */
.tooltip.right .tooltip-inner {
  background-color: #0077C8;
}

/* line 139, app/assets/stylesheets/bootstrp.scss */
.tooltip.right .tooltip-arrow {
  border-right-color: #0077C8;
}

/* line 136, app/assets/stylesheets/bootstrp.scss */
.tooltip.bottom .tooltip-inner {
  background-color: #0077C8;
}

/* line 139, app/assets/stylesheets/bootstrp.scss */
.tooltip.bottom .tooltip-arrow {
  border-bottom-color: #0077C8;
}

/* line 136, app/assets/stylesheets/bootstrp.scss */
.tooltip.left .tooltip-inner {
  background-color: #0077C8;
}

/* line 139, app/assets/stylesheets/bootstrp.scss */
.tooltip.left .tooltip-arrow {
  border-left-color: #0077C8;
}

/* line 148, app/assets/stylesheets/bootstrp.scss */
.modal {
  display: block;
  background: rgba(0, 0, 0, 0.2);
}

/* line 152, app/assets/stylesheets/bootstrp.scss */
.modal .modal-dialog {
  margin-top: 200px;
}

/* line 156, app/assets/stylesheets/bootstrp.scss */
.modal .modal-dialog .modal-footer .btn, .modal .modal-dialog .modal-footer .btn + .btn {
  margin-left: 20px;
}

/*!
 * Datetimepicker for Bootstrap 3
 * version : 4.17.47
 * https://github.com/Eonasdan/bootstrap-datetimepicker/
 */
/* line 6, vendor/bundle/ruby/2.6.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
.bootstrap-datetimepicker-widget {
  list-style: none;
}

/* line 9, vendor/bundle/ruby/2.6.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
.bootstrap-datetimepicker-widget.dropdown-menu {
  display: block;
  margin: 2px 0;
  padding: 4px;
  width: 19em;
}

@media (min-width: 768px) {
  /* line 16, vendor/bundle/ruby/2.6.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
  .bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs {
    width: 38em;
  }
}

@media (min-width: 992px) {
  /* line 21, vendor/bundle/ruby/2.6.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
  .bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs {
    width: 38em;
  }
}

@media (min-width: 1200px) {
  /* line 26, vendor/bundle/ruby/2.6.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
  .bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs {
    width: 38em;
  }
}

/* line 30, vendor/bundle/ruby/2.6.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
.bootstrap-datetimepicker-widget.dropdown-menu:before,
.bootstrap-datetimepicker-widget.dropdown-menu:after {
  content: '';
  display: inline-block;
  position: absolute;
}

/* line 36, vendor/bundle/ruby/2.6.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
.bootstrap-datetimepicker-widget.dropdown-menu.bottom:before {
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #ccc;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  top: -7px;
  left: 7px;
}

/* line 44, vendor/bundle/ruby/2.6.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
.bootstrap-datetimepicker-widget.dropdown-menu.bottom:after {
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid white;
  top: -6px;
  left: 8px;
}

/* line 51, vendor/bundle/ruby/2.6.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
.bootstrap-datetimepicker-widget.dropdown-menu.top:before {
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 7px solid #ccc;
  border-top-color: rgba(0, 0, 0, 0.2);
  bottom: -7px;
  left: 6px;
}

/* line 59, vendor/bundle/ruby/2.6.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
.bootstrap-datetimepicker-widget.dropdown-menu.top:after {
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid white;
  bottom: -6px;
  left: 7px;
}

/* line 66, vendor/bundle/ruby/2.6.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
.bootstrap-datetimepicker-widget.dropdown-menu.pull-right:before {
  left: auto;
  right: 6px;
}

/* line 70, vendor/bundle/ruby/2.6.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
.bootstrap-datetimepicker-widget.dropdown-menu.pull-right:after {
  left: auto;
  right: 7px;
}

/* line 74, vendor/bundle/ruby/2.6.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
.bootstrap-datetimepicker-widget .list-unstyled {
  margin: 0;
}

/* line 77, vendor/bundle/ruby/2.6.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
.bootstrap-datetimepicker-widget a[data-action] {
  padding: 6px 0;
}

/* line 80, vendor/bundle/ruby/2.6.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
.bootstrap-datetimepicker-widget a[data-action]:active {
  box-shadow: none;
}

/* line 83, vendor/bundle/ruby/2.6.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
.bootstrap-datetimepicker-widget .timepicker-hour,
.bootstrap-datetimepicker-widget .timepicker-minute,
.bootstrap-datetimepicker-widget .timepicker-second {
  width: 54px;
  font-weight: bold;
  font-size: 1.2em;
  margin: 0;
}

/* line 91, vendor/bundle/ruby/2.6.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
.bootstrap-datetimepicker-widget button[data-action] {
  padding: 6px;
}

/* line 94, vendor/bundle/ruby/2.6.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
.bootstrap-datetimepicker-widget .btn[data-action="incrementHours"]::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Increment Hours";
}

/* line 105, vendor/bundle/ruby/2.6.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
.bootstrap-datetimepicker-widget .btn[data-action="incrementMinutes"]::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Increment Minutes";
}

/* line 116, vendor/bundle/ruby/2.6.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
.bootstrap-datetimepicker-widget .btn[data-action="decrementHours"]::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Decrement Hours";
}

/* line 127, vendor/bundle/ruby/2.6.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
.bootstrap-datetimepicker-widget .btn[data-action="decrementMinutes"]::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Decrement Minutes";
}

/* line 138, vendor/bundle/ruby/2.6.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
.bootstrap-datetimepicker-widget .btn[data-action="showHours"]::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Show Hours";
}

/* line 149, vendor/bundle/ruby/2.6.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
.bootstrap-datetimepicker-widget .btn[data-action="showMinutes"]::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Show Minutes";
}

/* line 160, vendor/bundle/ruby/2.6.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
.bootstrap-datetimepicker-widget .btn[data-action="togglePeriod"]::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Toggle AM/PM";
}

/* line 171, vendor/bundle/ruby/2.6.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
.bootstrap-datetimepicker-widget .btn[data-action="clear"]::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Clear the picker";
}

/* line 182, vendor/bundle/ruby/2.6.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
.bootstrap-datetimepicker-widget .btn[data-action="today"]::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Set the date to today";
}

/* line 193, vendor/bundle/ruby/2.6.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
.bootstrap-datetimepicker-widget .picker-switch {
  text-align: center;
}

/* line 196, vendor/bundle/ruby/2.6.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
.bootstrap-datetimepicker-widget .picker-switch::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Toggle Date and Time Screens";
}

/* line 207, vendor/bundle/ruby/2.6.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
.bootstrap-datetimepicker-widget .picker-switch td {
  padding: 0;
  margin: 0;
  height: auto;
  width: auto;
  line-height: inherit;
}

/* line 214, vendor/bundle/ruby/2.6.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
.bootstrap-datetimepicker-widget .picker-switch td span {
  line-height: 2.5;
  height: 2.5em;
  width: 100%;
}

/* line 219, vendor/bundle/ruby/2.6.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
.bootstrap-datetimepicker-widget table {
  width: 100%;
  margin: 0;
}

/* line 223, vendor/bundle/ruby/2.6.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
.bootstrap-datetimepicker-widget table td,
.bootstrap-datetimepicker-widget table th {
  text-align: center;
  border-radius: 4px;
}

/* line 228, vendor/bundle/ruby/2.6.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
.bootstrap-datetimepicker-widget table th {
  height: 20px;
  line-height: 20px;
  width: 20px;
}

/* line 233, vendor/bundle/ruby/2.6.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
.bootstrap-datetimepicker-widget table th.picker-switch {
  width: 145px;
}

/* line 236, vendor/bundle/ruby/2.6.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
.bootstrap-datetimepicker-widget table th.disabled,
.bootstrap-datetimepicker-widget table th.disabled:hover {
  background: none;
  color: #777777;
  cursor: not-allowed;
}

/* line 242, vendor/bundle/ruby/2.6.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
.bootstrap-datetimepicker-widget table th.prev::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Previous Month";
}

/* line 253, vendor/bundle/ruby/2.6.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
.bootstrap-datetimepicker-widget table th.next::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Next Month";
}

/* line 264, vendor/bundle/ruby/2.6.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
.bootstrap-datetimepicker-widget table thead tr:first-child th {
  cursor: pointer;
}

/* line 267, vendor/bundle/ruby/2.6.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
.bootstrap-datetimepicker-widget table thead tr:first-child th:hover {
  background: #eeeeee;
}

/* line 270, vendor/bundle/ruby/2.6.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
.bootstrap-datetimepicker-widget table td {
  height: 54px;
  line-height: 54px;
  width: 54px;
}

/* line 275, vendor/bundle/ruby/2.6.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
.bootstrap-datetimepicker-widget table td.cw {
  font-size: .8em;
  height: 20px;
  line-height: 20px;
  color: #777777;
}

/* line 281, vendor/bundle/ruby/2.6.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
.bootstrap-datetimepicker-widget table td.day {
  height: 20px;
  line-height: 20px;
  width: 20px;
}

/* line 286, vendor/bundle/ruby/2.6.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
.bootstrap-datetimepicker-widget table td.day:hover,
.bootstrap-datetimepicker-widget table td.hour:hover,
.bootstrap-datetimepicker-widget table td.minute:hover,
.bootstrap-datetimepicker-widget table td.second:hover {
  background: #eeeeee;
  cursor: pointer;
}

/* line 293, vendor/bundle/ruby/2.6.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
.bootstrap-datetimepicker-widget table td.old,
.bootstrap-datetimepicker-widget table td.new {
  color: #777777;
}

/* line 297, vendor/bundle/ruby/2.6.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
.bootstrap-datetimepicker-widget table td.today {
  position: relative;
}

/* line 300, vendor/bundle/ruby/2.6.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
.bootstrap-datetimepicker-widget table td.today:before {
  content: '';
  display: inline-block;
  border: solid transparent;
  border-width: 0 0 7px 7px;
  border-bottom-color: #337ab7;
  border-top-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  bottom: 4px;
  right: 4px;
}

/* line 311, vendor/bundle/ruby/2.6.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
  background-color: #337ab7;
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}

/* line 317, vendor/bundle/ruby/2.6.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
.bootstrap-datetimepicker-widget table td.active.today:before {
  border-bottom-color: #fff;
}

/* line 320, vendor/bundle/ruby/2.6.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
.bootstrap-datetimepicker-widget table td.disabled,
.bootstrap-datetimepicker-widget table td.disabled:hover {
  background: none;
  color: #777777;
  cursor: not-allowed;
}

/* line 326, vendor/bundle/ruby/2.6.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
.bootstrap-datetimepicker-widget table td span {
  display: inline-block;
  width: 54px;
  height: 54px;
  line-height: 54px;
  margin: 2px 1.5px;
  cursor: pointer;
  border-radius: 4px;
}

/* line 335, vendor/bundle/ruby/2.6.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
.bootstrap-datetimepicker-widget table td span:hover {
  background: #eeeeee;
}

/* line 338, vendor/bundle/ruby/2.6.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
.bootstrap-datetimepicker-widget table td span.active {
  background-color: #337ab7;
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}

/* line 343, vendor/bundle/ruby/2.6.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
.bootstrap-datetimepicker-widget table td span.old {
  color: #777777;
}

/* line 346, vendor/bundle/ruby/2.6.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
.bootstrap-datetimepicker-widget table td span.disabled,
.bootstrap-datetimepicker-widget table td span.disabled:hover {
  background: none;
  color: #777777;
  cursor: not-allowed;
}

/* line 352, vendor/bundle/ruby/2.6.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
.bootstrap-datetimepicker-widget.usetwentyfour td.hour {
  height: 27px;
  line-height: 27px;
}

/* line 356, vendor/bundle/ruby/2.6.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
.bootstrap-datetimepicker-widget.wider {
  width: 21em;
}

/* line 359, vendor/bundle/ruby/2.6.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
.bootstrap-datetimepicker-widget .datepicker-decades .decade {
  line-height: 1.8em !important;
}

/* line 362, vendor/bundle/ruby/2.6.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
.input-group.date .input-group-addon {
  cursor: pointer;
}

/* line 365, vendor/bundle/ruby/2.6.0/gems/bootstrap3-datetimepicker-rails-4.17.47/vendor/assets/stylesheets/bootstrap-datetimepicker.css */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* line 1, app/assets/stylesheets/_loading-image.scss */
.image-loading {
  position: relative;
}

/* line 5, app/assets/stylesheets/_loading-image.scss */
.image-loading img {
  display: none;
  position: absolute;
  left: 50%;
  top: 150px;
  width: 50px;
}

@media (max-width: 414px) {
  /* line 5, app/assets/stylesheets/_loading-image.scss */
  .image-loading img {
    left: 45%;
    top: 40px;
  }
}

/*! PhotoSwipe main CSS by Dmitry Semenov | photoswipe.com | MIT license */
/*
	Styles for basic PhotoSwipe functionality (sliding area, open/close transitions)
*/
/* pswp = photoswipe */
/* line 6, vendor/assets/components/photoswipe/dist/photoswipe.css */
.pswp {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  overflow: hidden;
  touch-action: none;
  z-index: 1500;
  -webkit-text-size-adjust: 100%;
  /* create separate layer, to avoid paint on window.onscroll in webkit/blink */
  -webkit-backface-visibility: hidden;
  outline: none;
}

/* line 21, vendor/assets/components/photoswipe/dist/photoswipe.css */
.pswp * {
  box-sizing: border-box;
}

/* line 24, vendor/assets/components/photoswipe/dist/photoswipe.css */
.pswp img {
  max-width: none;
}

/* style is added when JS option showHideOpacity is set to true */
/* line 28, vendor/assets/components/photoswipe/dist/photoswipe.css */
.pswp--animate_opacity {
  /* 0.001, because opacity:0 doesn't trigger Paint action, which causes lag at start of transition */
  opacity: 0.001;
  will-change: opacity;
  /* for open/close transition */
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

/* line 36, vendor/assets/components/photoswipe/dist/photoswipe.css */
.pswp--open {
  display: block;
}

/* line 39, vendor/assets/components/photoswipe/dist/photoswipe.css */
.pswp--zoom-allowed .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}

/* line 45, vendor/assets/components/photoswipe/dist/photoswipe.css */
.pswp--zoomed-in .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: grab;
}

/* line 51, vendor/assets/components/photoswipe/dist/photoswipe.css */
.pswp--dragging .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: grabbing;
}

/*
	Background is added as a separate element.
	As animating opacity is much faster than animating rgba() background-color.
*/
/* line 61, vendor/assets/components/photoswipe/dist/photoswipe.css */
.pswp__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  -webkit-backface-visibility: hidden;
  will-change: opacity;
}

/* line 72, vendor/assets/components/photoswipe/dist/photoswipe.css */
.pswp__scroll-wrap {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* line 80, vendor/assets/components/photoswipe/dist/photoswipe.css */
.pswp__container,
.pswp__zoom-wrap {
  touch-action: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

/* Prevent selection and tap highlights */
/* line 91, vendor/assets/components/photoswipe/dist/photoswipe.css */
.pswp__container,
.pswp__img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

/* line 100, vendor/assets/components/photoswipe/dist/photoswipe.css */
.pswp__zoom-wrap {
  position: absolute;
  width: 100%;
  -webkit-transform-origin: left top;
  transform-origin: left top;
  /* for open/close transition */
  -webkit-transition: -webkit-transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: -webkit-transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: transform 333ms cubic-bezier(0.4, 0, 0.22, 1), -webkit-transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

/* line 110, vendor/assets/components/photoswipe/dist/photoswipe.css */
.pswp__bg {
  will-change: opacity;
  /* for open/close transition */
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

/* line 116, vendor/assets/components/photoswipe/dist/photoswipe.css */
.pswp--animated-in .pswp__bg,
.pswp--animated-in .pswp__zoom-wrap {
  -webkit-transition: none;
  transition: none;
}

/* line 121, vendor/assets/components/photoswipe/dist/photoswipe.css */
.pswp__container,
.pswp__zoom-wrap {
  -webkit-backface-visibility: hidden;
}

/* line 125, vendor/assets/components/photoswipe/dist/photoswipe.css */
.pswp__item {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden;
}

/* line 133, vendor/assets/components/photoswipe/dist/photoswipe.css */
.pswp__img {
  position: absolute;
  width: auto;
  height: auto;
  top: 0;
  left: 0;
}

/*
	stretched thumbnail or div placeholder element (see below)
	style is added to avoid flickering in webkit/blink when layers overlap
*/
/* line 144, vendor/assets/components/photoswipe/dist/photoswipe.css */
.pswp__img--placeholder {
  -webkit-backface-visibility: hidden;
}

/*
	div element that matches size of large image
	large image loads on top of it
*/
/* line 151, vendor/assets/components/photoswipe/dist/photoswipe.css */
.pswp__img--placeholder--blank {
  background: #222;
}

/* line 154, vendor/assets/components/photoswipe/dist/photoswipe.css */
.pswp--ie .pswp__img {
  width: 100% !important;
  height: auto !important;
  left: 0;
  top: 0;
}

/*
	Error message appears when image is not loaded
	(JS option errorMsg controls markup)
*/
/* line 164, vendor/assets/components/photoswipe/dist/photoswipe.css */
.pswp__error-msg {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  text-align: center;
  font-size: 14px;
  line-height: 16px;
  margin-top: -8px;
  color: #CCC;
}

/* line 175, vendor/assets/components/photoswipe/dist/photoswipe.css */
.pswp__error-msg a {
  color: #CCC;
  text-decoration: underline;
}

/*! PhotoSwipe Default UI CSS by Dmitry Semenov | photoswipe.com | MIT license */
/*

	Contents:

	1. Buttons
	2. Share modal and links
	3. Index indicator ("1 of X" counter)
	4. Caption
	5. Loading indicator
	6. Additional styles (root element, top bar, idle state, hidden state, etc.)

*/
/*

	1. Buttons

 */
/* <button> css reset */
/* line 20, vendor/assets/components/photoswipe/dist/default-skin/default-skin.scss */
.pswp__button {
  width: 44px;
  height: 44px;
  position: relative;
  background: none;
  cursor: pointer;
  overflow: visible;
  -webkit-appearance: none;
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
  float: right;
  opacity: 0.75;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  box-shadow: none;
}

/* line 38, vendor/assets/components/photoswipe/dist/default-skin/default-skin.scss */
.pswp__button:focus,
.pswp__button:hover {
  opacity: 1;
}

/* line 41, vendor/assets/components/photoswipe/dist/default-skin/default-skin.scss */
.pswp__button:active {
  outline: none;
  opacity: 0.9;
}

/* line 44, vendor/assets/components/photoswipe/dist/default-skin/default-skin.scss */
.pswp__button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

/* pswp__ui--over-close class it added when mouse is over element that should close gallery */
/* line 49, vendor/assets/components/photoswipe/dist/default-skin/default-skin.scss */
.pswp__ui--over-close .pswp__button--close {
  opacity: 1;
}

/* line 52, vendor/assets/components/photoswipe/dist/default-skin/default-skin.scss */
.pswp__button,
.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
  background: url(/assets/photoswipe/dist/default-skin/default-skin-fd2d3fed8d73fb4a3265475c444817343f3383348c254428f85e7b4b076c7dcf.png) 0 0 no-repeat;
  background-size: 264px 88px;
  width: 44px;
  height: 44px;
}

@media (-webkit-min-device-pixel-ratio: 1.1), (-webkit-min-device-pixel-ratio: 1.09375), (min-resolution: 105dpi), (min-resolution: 1.1dppx) {
  /* Serve SVG sprite if browser supports SVG and resolution is more than 105dpi */
  /* line 62, vendor/assets/components/photoswipe/dist/default-skin/default-skin.scss */
  .pswp--svg .pswp__button,
  .pswp--svg .pswp__button--arrow--left:before,
  .pswp--svg .pswp__button--arrow--right:before {
    background-image: url(/assets/photoswipe/dist/default-skin/default-skin-6dc726bc8f137fa9051f66fbed7b89480c64986e67253879e9d85bb1a8e2677c.svg);
  }
  /* line 66, vendor/assets/components/photoswipe/dist/default-skin/default-skin.scss */
  .pswp--svg .pswp__button--arrow--left,
  .pswp--svg .pswp__button--arrow--right {
    background: none;
  }
}

/* line 70, vendor/assets/components/photoswipe/dist/default-skin/default-skin.scss */
.pswp__button--close {
  background-position: 0 -44px;
}

/* line 73, vendor/assets/components/photoswipe/dist/default-skin/default-skin.scss */
.pswp__button--share {
  background-position: -44px -44px;
}

/* line 76, vendor/assets/components/photoswipe/dist/default-skin/default-skin.scss */
.pswp__button--fs {
  display: none;
}

/* line 79, vendor/assets/components/photoswipe/dist/default-skin/default-skin.scss */
.pswp--supports-fs .pswp__button--fs {
  display: block;
}

/* line 82, vendor/assets/components/photoswipe/dist/default-skin/default-skin.scss */
.pswp--fs .pswp__button--fs {
  background-position: -44px 0;
}

/* line 85, vendor/assets/components/photoswipe/dist/default-skin/default-skin.scss */
.pswp__button--zoom {
  display: none;
  background-position: -88px 0;
}

/* line 89, vendor/assets/components/photoswipe/dist/default-skin/default-skin.scss */
.pswp--zoom-allowed .pswp__button--zoom {
  display: block;
}

/* line 92, vendor/assets/components/photoswipe/dist/default-skin/default-skin.scss */
.pswp--zoomed-in .pswp__button--zoom {
  background-position: -132px 0;
}

/* no arrows on touch screens */
/* line 96, vendor/assets/components/photoswipe/dist/default-skin/default-skin.scss */
.pswp--touch .pswp__button--arrow--left,
.pswp--touch .pswp__button--arrow--right {
  visibility: hidden;
}

/*
	Arrow buttons hit area
	(icon is added to :before pseudo-element)
*/
/* line 104, vendor/assets/components/photoswipe/dist/default-skin/default-skin.scss */
.pswp__button--arrow--left,
.pswp__button--arrow--right {
  background: none;
  top: 50%;
  margin-top: -50px;
  width: 70px;
  height: 100px;
  position: absolute;
}

/* line 113, vendor/assets/components/photoswipe/dist/default-skin/default-skin.scss */
.pswp__button--arrow--left {
  left: 0;
}

/* line 116, vendor/assets/components/photoswipe/dist/default-skin/default-skin.scss */
.pswp__button--arrow--right {
  right: 0;
}

/* line 119, vendor/assets/components/photoswipe/dist/default-skin/default-skin.scss */
.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
  content: '';
  top: 35px;
  background-color: rgba(0, 0, 0, 0.3);
  height: 30px;
  width: 32px;
  position: absolute;
}

/* line 128, vendor/assets/components/photoswipe/dist/default-skin/default-skin.scss */
.pswp__button--arrow--left:before {
  left: 6px;
  background-position: -138px -44px;
}

/* line 132, vendor/assets/components/photoswipe/dist/default-skin/default-skin.scss */
.pswp__button--arrow--right:before {
  right: 6px;
  background-position: -94px -44px;
}

/*

	2. Share modal/popup and links

 */
/* line 141, vendor/assets/components/photoswipe/dist/default-skin/default-skin.scss */
.pswp__counter,
.pswp__share-modal {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* line 148, vendor/assets/components/photoswipe/dist/default-skin/default-skin.scss */
.pswp__share-modal {
  display: block;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 10px;
  position: absolute;
  z-index: 1600;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease-out;
  transition: opacity 0.25s ease-out;
  -webkit-backface-visibility: hidden;
  will-change: opacity;
}

/* line 164, vendor/assets/components/photoswipe/dist/default-skin/default-skin.scss */
.pswp__share-modal--hidden {
  display: none;
}

/* line 167, vendor/assets/components/photoswipe/dist/default-skin/default-skin.scss */
.pswp__share-tooltip {
  z-index: 1620;
  position: absolute;
  background: #FFF;
  top: 56px;
  border-radius: 2px;
  display: block;
  width: auto;
  right: 44px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
  -webkit-transform: translateY(6px);
  transform: translateY(6px);
  -webkit-transition: -webkit-transform 0.25s;
  transition: -webkit-transform 0.25s;
  transition: transform 0.25s;
  transition: transform 0.25s, -webkit-transform 0.25s;
  -webkit-backface-visibility: hidden;
  will-change: transform;
}

/* line 185, vendor/assets/components/photoswipe/dist/default-skin/default-skin.scss */
.pswp__share-tooltip a {
  display: block;
  padding: 8px 12px;
  color: #000;
  text-decoration: none;
  font-size: 14px;
  line-height: 18px;
}

/* line 192, vendor/assets/components/photoswipe/dist/default-skin/default-skin.scss */
.pswp__share-tooltip a:hover {
  text-decoration: none;
  color: #000;
}

/* line 195, vendor/assets/components/photoswipe/dist/default-skin/default-skin.scss */
.pswp__share-tooltip a:first-child {
  /* round corners on the first/last list item */
  border-radius: 2px 2px 0 0;
}

/* line 198, vendor/assets/components/photoswipe/dist/default-skin/default-skin.scss */
.pswp__share-tooltip a:last-child {
  border-radius: 0 0 2px 2px;
}

/* line 201, vendor/assets/components/photoswipe/dist/default-skin/default-skin.scss */
.pswp__share-modal--fade-in {
  opacity: 1;
}

/* line 203, vendor/assets/components/photoswipe/dist/default-skin/default-skin.scss */
.pswp__share-modal--fade-in .pswp__share-tooltip {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

/* increase size of share links on touch devices */
/* line 209, vendor/assets/components/photoswipe/dist/default-skin/default-skin.scss */
.pswp--touch .pswp__share-tooltip a {
  padding: 16px 12px;
}

/* line 212, vendor/assets/components/photoswipe/dist/default-skin/default-skin.scss */
a.pswp__share--facebook:before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  top: -12px;
  right: 15px;
  border: 6px solid transparent;
  border-bottom-color: #FFF;
  -webkit-pointer-events: none;
  -moz-pointer-events: none;
  pointer-events: none;
}

/* line 226, vendor/assets/components/photoswipe/dist/default-skin/default-skin.scss */
a.pswp__share--facebook:hover {
  background: #3E5C9A;
  color: #FFF;
}

/* line 229, vendor/assets/components/photoswipe/dist/default-skin/default-skin.scss */
a.pswp__share--facebook:hover:before {
  border-bottom-color: #3E5C9A;
}

/* line 232, vendor/assets/components/photoswipe/dist/default-skin/default-skin.scss */
a.pswp__share--twitter:hover {
  background: #55ACEE;
  color: #FFF;
}

/* line 236, vendor/assets/components/photoswipe/dist/default-skin/default-skin.scss */
a.pswp__share--pinterest:hover {
  background: #CCC;
  color: #CE272D;
}

/* line 240, vendor/assets/components/photoswipe/dist/default-skin/default-skin.scss */
a.pswp__share--download:hover {
  background: #DDD;
}

/*

	3. Index indicator ("1 of X" counter)

 */
/* line 248, vendor/assets/components/photoswipe/dist/default-skin/default-skin.scss */
.pswp__counter {
  position: absolute;
  left: 0;
  top: 0;
  height: 44px;
  font-size: 13px;
  line-height: 44px;
  color: #FFF;
  opacity: 0.75;
  padding: 0 10px;
}

/*

	4. Caption

 */
/* line 264, vendor/assets/components/photoswipe/dist/default-skin/default-skin.scss */
.pswp__caption {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  min-height: 44px;
}

/* line 270, vendor/assets/components/photoswipe/dist/default-skin/default-skin.scss */
.pswp__caption small {
  font-size: 11px;
  color: #BBB;
}

/* line 274, vendor/assets/components/photoswipe/dist/default-skin/default-skin.scss */
.pswp__caption__center {
  text-align: left;
  max-width: 420px;
  margin: 0 auto;
  font-size: 13px;
  padding: 10px;
  line-height: 20px;
  color: #CCC;
}

/* line 283, vendor/assets/components/photoswipe/dist/default-skin/default-skin.scss */
.pswp__caption--empty {
  display: none;
}

/* Fake caption element, used to calculate height of next/prev image */
/* line 287, vendor/assets/components/photoswipe/dist/default-skin/default-skin.scss */
.pswp__caption--fake {
  visibility: hidden;
}

/*

	5. Loading indicator (preloader)

	You can play with it here - http://codepen.io/dimsemenov/pen/yyBWoR

 */
/* line 297, vendor/assets/components/photoswipe/dist/default-skin/default-skin.scss */
.pswp__preloader {
  width: 44px;
  height: 44px;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -22px;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease-out;
  transition: opacity 0.25s ease-out;
  will-change: opacity;
  direction: ltr;
}

/* line 310, vendor/assets/components/photoswipe/dist/default-skin/default-skin.scss */
.pswp__preloader__icn {
  width: 20px;
  height: 20px;
  margin: 12px;
}

/* line 315, vendor/assets/components/photoswipe/dist/default-skin/default-skin.scss */
.pswp__preloader--active {
  opacity: 1;
}

/* line 317, vendor/assets/components/photoswipe/dist/default-skin/default-skin.scss */
.pswp__preloader--active .pswp__preloader__icn {
  /* We use .gif in browsers that don't support CSS animation */
  background: url(/assets/photoswipe/dist/default-skin/preloader-80d7ed3f3f4b50628f219778db814955e7d2007c05be88556778f90ee290715c.gif) 0 0 no-repeat;
}

/* line 321, vendor/assets/components/photoswipe/dist/default-skin/default-skin.scss */
.pswp--css_animation .pswp__preloader--active {
  opacity: 1;
}

/* line 323, vendor/assets/components/photoswipe/dist/default-skin/default-skin.scss */
.pswp--css_animation .pswp__preloader--active .pswp__preloader__icn {
  -webkit-animation: clockwise 500ms linear infinite;
  animation: clockwise 500ms linear infinite;
}

/* line 326, vendor/assets/components/photoswipe/dist/default-skin/default-skin.scss */
.pswp--css_animation .pswp__preloader--active .pswp__preloader__donut {
  -webkit-animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite;
  animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite;
}

/* line 330, vendor/assets/components/photoswipe/dist/default-skin/default-skin.scss */
.pswp--css_animation .pswp__preloader__icn {
  background: none;
  opacity: 0.75;
  width: 14px;
  height: 14px;
  position: absolute;
  left: 15px;
  top: 15px;
  margin: 0;
}

/* line 340, vendor/assets/components/photoswipe/dist/default-skin/default-skin.scss */
.pswp--css_animation .pswp__preloader__cut {
  /*
			The idea of animating inner circle is based on Polymer ("material") loading indicator
			 by Keanu Lee https://blog.keanulee.com/2014/10/20/the-tale-of-three-spinners.html
		*/
  position: relative;
  width: 7px;
  height: 14px;
  overflow: hidden;
}

/* line 350, vendor/assets/components/photoswipe/dist/default-skin/default-skin.scss */
.pswp--css_animation .pswp__preloader__donut {
  box-sizing: border-box;
  width: 14px;
  height: 14px;
  border: 2px solid #FFF;
  border-radius: 50%;
  border-left-color: transparent;
  border-bottom-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  background: none;
  margin: 0;
}

@media screen and (max-width: 1024px) {
  /* line 366, vendor/assets/components/photoswipe/dist/default-skin/default-skin.scss */
  .pswp__preloader {
    position: relative;
    left: auto;
    top: auto;
    margin: 0;
    float: right;
  }
}

@-webkit-keyframes clockwise {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes clockwise {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes donut-rotate {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(-140deg);
    transform: rotate(-140deg);
  }
  100% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}

@keyframes donut-rotate {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(-140deg);
    transform: rotate(-140deg);
  }
  100% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}

/*

	6. Additional styles

 */
/* root element of UI */
/* line 417, vendor/assets/components/photoswipe/dist/default-skin/default-skin.scss */
.pswp__ui {
  -webkit-font-smoothing: auto;
  visibility: visible;
  opacity: 1;
  z-index: 1550;
}

/* top black bar with buttons and "1 of X" indicator */
/* line 424, vendor/assets/components/photoswipe/dist/default-skin/default-skin.scss */
.pswp__top-bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 44px;
  width: 100%;
}

/* line 431, vendor/assets/components/photoswipe/dist/default-skin/default-skin.scss */
.pswp__caption,
.pswp__top-bar,
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
  -webkit-backface-visibility: hidden;
  will-change: opacity;
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

/* pswp--has_mouse class is added only when two subsequent mousemove events occur */
/* line 441, vendor/assets/components/photoswipe/dist/default-skin/default-skin.scss */
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
  visibility: visible;
}

/* line 445, vendor/assets/components/photoswipe/dist/default-skin/default-skin.scss */
.pswp__top-bar,
.pswp__caption {
  background-color: rgba(0, 0, 0, 0.5);
}

/* pswp__ui--fit class is added when main image "fits" between top bar and bottom bar (caption) */
/* line 450, vendor/assets/components/photoswipe/dist/default-skin/default-skin.scss */
.pswp__ui--fit .pswp__top-bar,
.pswp__ui--fit .pswp__caption {
  background-color: rgba(0, 0, 0, 0.3);
}

/* pswp__ui--idle class is added when mouse isn't moving for several seconds (JS option timeToIdle) */
/* line 455, vendor/assets/components/photoswipe/dist/default-skin/default-skin.scss */
.pswp__ui--idle .pswp__top-bar {
  opacity: 0;
}

/* line 458, vendor/assets/components/photoswipe/dist/default-skin/default-skin.scss */
.pswp__ui--idle .pswp__button--arrow--left,
.pswp__ui--idle .pswp__button--arrow--right {
  opacity: 0;
}

/*
	pswp__ui--hidden class is added when controls are hidden
	e.g. when user taps to toggle visibility of controls
*/
/* line 466, vendor/assets/components/photoswipe/dist/default-skin/default-skin.scss */
.pswp__ui--hidden .pswp__top-bar,
.pswp__ui--hidden .pswp__caption,
.pswp__ui--hidden .pswp__button--arrow--left,
.pswp__ui--hidden .pswp__button--arrow--right {
  /* Force paint & create composition layer for controls. */
  opacity: 0.001;
}

/* pswp__ui--one-slide class is added when there is just one item in gallery */
/* line 474, vendor/assets/components/photoswipe/dist/default-skin/default-skin.scss */
.pswp__ui--one-slide .pswp__button--arrow--left,
.pswp__ui--one-slide .pswp__button--arrow--right,
.pswp__ui--one-slide .pswp__counter {
  display: none;
}

/* line 479, vendor/assets/components/photoswipe/dist/default-skin/default-skin.scss */
.pswp__element--disabled {
  display: none !important;
}

/* line 482, vendor/assets/components/photoswipe/dist/default-skin/default-skin.scss */
.pswp--minimal--dark .pswp__top-bar {
  background: none;
}

/*!
 * Font Awesome Free 5.11.2 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: 'Font Awesome 5 Free';
  font-style: normal;
  font-weight: 900;
  src: url("/assets/font-awesome/fa-solid-900-5ef4c7be9577dde004048607cc872221de00db893f29baa809c378b01370a370.eot");
  src: url("/assets/font-awesome/fa-solid-900-5ef4c7be9577dde004048607cc872221de00db893f29baa809c378b01370a370.eot#iefix") format("embedded-opentype"), url("/assets/font-awesome/fa-solid-900-3d1080625d3030e88357b3ac9aa377dcec23f1b529c4ad03f7a9a435ccae04be.woff2") format("woff2"), url("/assets/font-awesome/fa-solid-900-7dd5fcdf6f4b330bf82965887ef6b9196b8d27855eddee99ac04fb63de0e351e.woff") format("woff"), url("/assets/font-awesome/fa-solid-900-20656d1a8f2ea44e36c2b8354d15c4db21909ee5140b0224f74f92477e0899f7.ttf") format("truetype"), url("/assets/font-awesome/fa-solid-900-86c7d89d0f0d29d85c6684db2d8da9aac514c81bcabf41ea0af726e29de20a47.svg#fontawesome") format("svg");
}

@font-face {
  font-family: 'Font Awesome 5 Free';
  font-style: normal;
  font-weight: 400;
  src: url("/assets/font-awesome/fa-regular-400-b115d3ffeefd0c3a276fa964e3a8aeb8fb04f782f690c476c1042b06ea465cd1.eot");
  src: url("/assets/font-awesome/fa-regular-400-b115d3ffeefd0c3a276fa964e3a8aeb8fb04f782f690c476c1042b06ea465cd1.eot#iefix") format("embedded-opentype"), url("/assets/font-awesome/fa-regular-400-0fc0a22e5e67c95d02c389a1454acc67df53e2f6a46af739f3eac7e352644751.woff2") format("woff2"), url("/assets/font-awesome/fa-regular-400-43a881161585db16179f70e53240a274f209aff03aafbcc34bc32e17fb4d95c6.woff") format("woff"), url("/assets/font-awesome/fa-regular-400-913a94a29d838712cfed937028ac4ab14eac95ddc784d5207e4d4504ab42fa17.ttf") format("truetype"), url("/assets/font-awesome/fa-regular-400-953c82ccf56ee1a292e40d8a704e192e5d9f41f1aa5cf37d0fe46a4281ab977f.svg#fontawesome") format("svg");
}

@font-face {
  font-family: 'Font Awesome 5 Brands';
  font-style: normal;
  font-weight: normal;
  src: url("/assets/font-awesome/fa-brands-400-60fb2d28d2f1dbd2bc1a7a3b44701fec1cb7f630bee439d926c024c3212c1a9c.eot");
  src: url("/assets/font-awesome/fa-brands-400-60fb2d28d2f1dbd2bc1a7a3b44701fec1cb7f630bee439d926c024c3212c1a9c.eot#iefix") format("embedded-opentype"), url("/assets/font-awesome/fa-brands-400-d3caf12591d194712facd10bca14f0a924edb59c24447a3fd994a48286db8843.woff2") format("woff2"), url("/assets/font-awesome/fa-brands-400-23d9a4585904deec93bbe23b911d97f40fe25bcdf6131737f17b1f87c4b68367.woff") format("woff"), url("/assets/font-awesome/fa-brands-400-ca785b3a0d0f4c1bd0cbbe298a989af28aff3086b6522c2eaf9f7c110f080874.ttf") format("truetype"), url("/assets/font-awesome/fa-brands-400-ed5bfbea42378c58a095a96a417f067808b4f753892bb2d449a31bd4b30884ce.svg#fontawesome") format("svg");
}

/* line 40, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_path.scss */
.fa,
.fas {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
}

/* line 46, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_path.scss */
.far {
  font-family: 'Font Awesome 5 Free';
  font-weight: 400;
}

/* line 51, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_path.scss */
.fab {
  font-family: 'Font Awesome 5 Brands';
}

/* line 4, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_core.scss */
.fa,
.fas,
.far,
.fal,
.fad,
.fab {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

/* line 5, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_larger.scss */
.fa-lg {
  font-size: 1.3333333333em;
  line-height: 0.75em;
  vertical-align: -.0667em;
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_larger.scss */
.fa-xs {
  font-size: .75em;
}

/* line 15, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_larger.scss */
.fa-sm {
  font-size: .875em;
}

/* line 20, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_larger.scss */
.fa-1x {
  font-size: 1em;
}

/* line 20, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_larger.scss */
.fa-2x {
  font-size: 2em;
}

/* line 20, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_larger.scss */
.fa-3x {
  font-size: 3em;
}

/* line 20, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_larger.scss */
.fa-4x {
  font-size: 4em;
}

/* line 20, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_larger.scss */
.fa-5x {
  font-size: 5em;
}

/* line 20, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_larger.scss */
.fa-6x {
  font-size: 6em;
}

/* line 20, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_larger.scss */
.fa-7x {
  font-size: 7em;
}

/* line 20, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_larger.scss */
.fa-8x {
  font-size: 8em;
}

/* line 20, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_larger.scss */
.fa-9x {
  font-size: 9em;
}

/* line 20, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_larger.scss */
.fa-10x {
  font-size: 10em;
}

/* line 3, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_fixed-width.scss */
.fa-fw {
  text-align: center;
  width: 1.25em;
}

/* line 4, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_list.scss */
.fa-ul {
  list-style-type: none;
  margin-left: 2.5em;
  padding-left: 0;
}

/* line 9, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_list.scss */
.fa-ul > li {
  position: relative;
}

/* line 12, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_list.scss */
.fa-li {
  left: -2em;
  position: absolute;
  text-align: center;
  width: 2em;
  line-height: inherit;
}

/* line 4, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_bordered-pulled.scss */
.fa-border {
  border: solid 0.08em #eee;
  border-radius: .1em;
  padding: .2em .25em .15em;
}

/* line 10, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_bordered-pulled.scss */
.fa-pull-left {
  float: left;
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_bordered-pulled.scss */
.fa-pull-right {
  float: right;
}

/* line 18, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_bordered-pulled.scss */
.fa.fa-pull-left,
.fas.fa-pull-left,
.far.fa-pull-left,
.fal.fa-pull-left,
.fab.fa-pull-left {
  margin-right: .3em;
}

/* line 19, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_bordered-pulled.scss */
.fa.fa-pull-right,
.fas.fa-pull-right,
.far.fa-pull-right,
.fal.fa-pull-right,
.fab.fa-pull-right {
  margin-left: .3em;
}

/* line 4, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_animated.scss */
.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
          animation: fa-spin 2s infinite linear;
}

/* line 8, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_animated.scss */
.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
          animation: fa-spin 1s infinite steps(8);
}

@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

/* line 4, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_rotated-flipped.scss */
.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

/* line 5, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_rotated-flipped.scss */
.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

/* line 6, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_rotated-flipped.scss */
.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg);
}

/* line 8, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_rotated-flipped.scss */
.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}

/* line 9, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_rotated-flipped.scss */
.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
          transform: scale(1, -1);
}

/* line 10, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_rotated-flipped.scss */
.fa-flip-both, .fa-flip-horizontal.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(-1, -1);
          transform: scale(-1, -1);
}

/* line 16, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_rotated-flipped.scss */
:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical,
:root .fa-flip-both {
  -webkit-filter: none;
          filter: none;
}

/* line 4, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_stacked.scss */
.fa-stack {
  display: inline-block;
  height: 2em;
  line-height: 2em;
  position: relative;
  vertical-align: middle;
  width: 2.5em;
}

/* line 13, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_stacked.scss */
.fa-stack-1x,
.fa-stack-2x {
  left: 0;
  position: absolute;
  text-align: center;
  width: 100%;
}

/* line 21, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_stacked.scss */
.fa-stack-1x {
  line-height: inherit;
}

/* line 25, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_stacked.scss */
.fa-stack-2x {
  font-size: 2em;
}

/* line 29, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_stacked.scss */
.fa-inverse {
  color: #fff;
}

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
readers do not read off random characters that represent icons */
/* line 4, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-500px:before {
  content: "\f26e";
}

/* line 5, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-accessible-icon:before {
  content: "\f368";
}

/* line 6, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-accusoft:before {
  content: "\f369";
}

/* line 7, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-acquisitions-incorporated:before {
  content: "\f6af";
}

/* line 8, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-ad:before {
  content: "\f641";
}

/* line 9, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-address-book:before {
  content: "\f2b9";
}

/* line 10, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-address-card:before {
  content: "\f2bb";
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-adjust:before {
  content: "\f042";
}

/* line 12, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-adn:before {
  content: "\f170";
}

/* line 13, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-adobe:before {
  content: "\f778";
}

/* line 14, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-adversal:before {
  content: "\f36a";
}

/* line 15, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-affiliatetheme:before {
  content: "\f36b";
}

/* line 16, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-air-freshener:before {
  content: "\f5d0";
}

/* line 17, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-airbnb:before {
  content: "\f834";
}

/* line 18, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-algolia:before {
  content: "\f36c";
}

/* line 19, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-align-center:before {
  content: "\f037";
}

/* line 20, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-align-justify:before {
  content: "\f039";
}

/* line 21, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-align-left:before {
  content: "\f036";
}

/* line 22, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-align-right:before {
  content: "\f038";
}

/* line 23, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-alipay:before {
  content: "\f642";
}

/* line 24, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-allergies:before {
  content: "\f461";
}

/* line 25, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-amazon:before {
  content: "\f270";
}

/* line 26, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-amazon-pay:before {
  content: "\f42c";
}

/* line 27, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-ambulance:before {
  content: "\f0f9";
}

/* line 28, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-american-sign-language-interpreting:before {
  content: "\f2a3";
}

/* line 29, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-amilia:before {
  content: "\f36d";
}

/* line 30, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-anchor:before {
  content: "\f13d";
}

/* line 31, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-android:before {
  content: "\f17b";
}

/* line 32, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-angellist:before {
  content: "\f209";
}

/* line 33, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-angle-double-down:before {
  content: "\f103";
}

/* line 34, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-angle-double-left:before {
  content: "\f100";
}

/* line 35, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-angle-double-right:before {
  content: "\f101";
}

/* line 36, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-angle-double-up:before {
  content: "\f102";
}

/* line 37, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-angle-down:before {
  content: "\f107";
}

/* line 38, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-angle-left:before {
  content: "\f104";
}

/* line 39, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-angle-right:before {
  content: "\f105";
}

/* line 40, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-angle-up:before {
  content: "\f106";
}

/* line 41, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-angry:before {
  content: "\f556";
}

/* line 42, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-angrycreative:before {
  content: "\f36e";
}

/* line 43, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-angular:before {
  content: "\f420";
}

/* line 44, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-ankh:before {
  content: "\f644";
}

/* line 45, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-app-store:before {
  content: "\f36f";
}

/* line 46, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-app-store-ios:before {
  content: "\f370";
}

/* line 47, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-apper:before {
  content: "\f371";
}

/* line 48, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-apple:before {
  content: "\f179";
}

/* line 49, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-apple-alt:before {
  content: "\f5d1";
}

/* line 50, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-apple-pay:before {
  content: "\f415";
}

/* line 51, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-archive:before {
  content: "\f187";
}

/* line 52, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-archway:before {
  content: "\f557";
}

/* line 53, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-arrow-alt-circle-down:before {
  content: "\f358";
}

/* line 54, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-arrow-alt-circle-left:before {
  content: "\f359";
}

/* line 55, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-arrow-alt-circle-right:before {
  content: "\f35a";
}

/* line 56, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-arrow-alt-circle-up:before {
  content: "\f35b";
}

/* line 57, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-arrow-circle-down:before {
  content: "\f0ab";
}

/* line 58, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-arrow-circle-left:before {
  content: "\f0a8";
}

/* line 59, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-arrow-circle-right:before {
  content: "\f0a9";
}

/* line 60, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-arrow-circle-up:before {
  content: "\f0aa";
}

/* line 61, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-arrow-down:before {
  content: "\f063";
}

/* line 62, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-arrow-left:before {
  content: "\f060";
}

/* line 63, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-arrow-right:before {
  content: "\f061";
}

/* line 64, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-arrow-up:before {
  content: "\f062";
}

/* line 65, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-arrows-alt:before {
  content: "\f0b2";
}

/* line 66, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-arrows-alt-h:before {
  content: "\f337";
}

/* line 67, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-arrows-alt-v:before {
  content: "\f338";
}

/* line 68, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-artstation:before {
  content: "\f77a";
}

/* line 69, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-assistive-listening-systems:before {
  content: "\f2a2";
}

/* line 70, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-asterisk:before {
  content: "\f069";
}

/* line 71, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-asymmetrik:before {
  content: "\f372";
}

/* line 72, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-at:before {
  content: "\f1fa";
}

/* line 73, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-atlas:before {
  content: "\f558";
}

/* line 74, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-atlassian:before {
  content: "\f77b";
}

/* line 75, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-atom:before {
  content: "\f5d2";
}

/* line 76, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-audible:before {
  content: "\f373";
}

/* line 77, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-audio-description:before {
  content: "\f29e";
}

/* line 78, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-autoprefixer:before {
  content: "\f41c";
}

/* line 79, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-avianex:before {
  content: "\f374";
}

/* line 80, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-aviato:before {
  content: "\f421";
}

/* line 81, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-award:before {
  content: "\f559";
}

/* line 82, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-aws:before {
  content: "\f375";
}

/* line 83, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-baby:before {
  content: "\f77c";
}

/* line 84, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-baby-carriage:before {
  content: "\f77d";
}

/* line 85, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-backspace:before {
  content: "\f55a";
}

/* line 86, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-backward:before {
  content: "\f04a";
}

/* line 87, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-bacon:before {
  content: "\f7e5";
}

/* line 88, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-balance-scale:before {
  content: "\f24e";
}

/* line 89, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-balance-scale-left:before {
  content: "\f515";
}

/* line 90, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-balance-scale-right:before {
  content: "\f516";
}

/* line 91, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-ban:before {
  content: "\f05e";
}

/* line 92, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-band-aid:before {
  content: "\f462";
}

/* line 93, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-bandcamp:before {
  content: "\f2d5";
}

/* line 94, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-barcode:before {
  content: "\f02a";
}

/* line 95, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-bars:before {
  content: "\f0c9";
}

/* line 96, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-baseball-ball:before {
  content: "\f433";
}

/* line 97, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-basketball-ball:before {
  content: "\f434";
}

/* line 98, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-bath:before {
  content: "\f2cd";
}

/* line 99, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-battery-empty:before {
  content: "\f244";
}

/* line 100, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-battery-full:before {
  content: "\f240";
}

/* line 101, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-battery-half:before {
  content: "\f242";
}

/* line 102, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-battery-quarter:before {
  content: "\f243";
}

/* line 103, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-battery-three-quarters:before {
  content: "\f241";
}

/* line 104, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-battle-net:before {
  content: "\f835";
}

/* line 105, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-bed:before {
  content: "\f236";
}

/* line 106, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-beer:before {
  content: "\f0fc";
}

/* line 107, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-behance:before {
  content: "\f1b4";
}

/* line 108, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-behance-square:before {
  content: "\f1b5";
}

/* line 109, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-bell:before {
  content: "\f0f3";
}

/* line 110, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-bell-slash:before {
  content: "\f1f6";
}

/* line 111, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-bezier-curve:before {
  content: "\f55b";
}

/* line 112, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-bible:before {
  content: "\f647";
}

/* line 113, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-bicycle:before {
  content: "\f206";
}

/* line 114, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-biking:before {
  content: "\f84a";
}

/* line 115, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-bimobject:before {
  content: "\f378";
}

/* line 116, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-binoculars:before {
  content: "\f1e5";
}

/* line 117, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-biohazard:before {
  content: "\f780";
}

/* line 118, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-birthday-cake:before {
  content: "\f1fd";
}

/* line 119, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-bitbucket:before {
  content: "\f171";
}

/* line 120, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-bitcoin:before {
  content: "\f379";
}

/* line 121, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-bity:before {
  content: "\f37a";
}

/* line 122, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-black-tie:before {
  content: "\f27e";
}

/* line 123, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-blackberry:before {
  content: "\f37b";
}

/* line 124, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-blender:before {
  content: "\f517";
}

/* line 125, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-blender-phone:before {
  content: "\f6b6";
}

/* line 126, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-blind:before {
  content: "\f29d";
}

/* line 127, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-blog:before {
  content: "\f781";
}

/* line 128, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-blogger:before {
  content: "\f37c";
}

/* line 129, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-blogger-b:before {
  content: "\f37d";
}

/* line 130, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-bluetooth:before {
  content: "\f293";
}

/* line 131, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-bluetooth-b:before {
  content: "\f294";
}

/* line 132, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-bold:before {
  content: "\f032";
}

/* line 133, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-bolt:before {
  content: "\f0e7";
}

/* line 134, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-bomb:before {
  content: "\f1e2";
}

/* line 135, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-bone:before {
  content: "\f5d7";
}

/* line 136, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-bong:before {
  content: "\f55c";
}

/* line 137, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-book:before {
  content: "\f02d";
}

/* line 138, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-book-dead:before {
  content: "\f6b7";
}

/* line 139, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-book-medical:before {
  content: "\f7e6";
}

/* line 140, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-book-open:before {
  content: "\f518";
}

/* line 141, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-book-reader:before {
  content: "\f5da";
}

/* line 142, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-bookmark:before {
  content: "\f02e";
}

/* line 143, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-bootstrap:before {
  content: "\f836";
}

/* line 144, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-border-all:before {
  content: "\f84c";
}

/* line 145, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-border-none:before {
  content: "\f850";
}

/* line 146, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-border-style:before {
  content: "\f853";
}

/* line 147, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-bowling-ball:before {
  content: "\f436";
}

/* line 148, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-box:before {
  content: "\f466";
}

/* line 149, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-box-open:before {
  content: "\f49e";
}

/* line 150, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-boxes:before {
  content: "\f468";
}

/* line 151, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-braille:before {
  content: "\f2a1";
}

/* line 152, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-brain:before {
  content: "\f5dc";
}

/* line 153, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-bread-slice:before {
  content: "\f7ec";
}

/* line 154, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-briefcase:before {
  content: "\f0b1";
}

/* line 155, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-briefcase-medical:before {
  content: "\f469";
}

/* line 156, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-broadcast-tower:before {
  content: "\f519";
}

/* line 157, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-broom:before {
  content: "\f51a";
}

/* line 158, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-brush:before {
  content: "\f55d";
}

/* line 159, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-btc:before {
  content: "\f15a";
}

/* line 160, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-buffer:before {
  content: "\f837";
}

/* line 161, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-bug:before {
  content: "\f188";
}

/* line 162, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-building:before {
  content: "\f1ad";
}

/* line 163, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-bullhorn:before {
  content: "\f0a1";
}

/* line 164, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-bullseye:before {
  content: "\f140";
}

/* line 165, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-burn:before {
  content: "\f46a";
}

/* line 166, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-buromobelexperte:before {
  content: "\f37f";
}

/* line 167, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-bus:before {
  content: "\f207";
}

/* line 168, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-bus-alt:before {
  content: "\f55e";
}

/* line 169, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-business-time:before {
  content: "\f64a";
}

/* line 170, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-buy-n-large:before {
  content: "\f8a6";
}

/* line 171, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-buysellads:before {
  content: "\f20d";
}

/* line 172, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-calculator:before {
  content: "\f1ec";
}

/* line 173, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-calendar:before {
  content: "\f133";
}

/* line 174, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-calendar-alt:before {
  content: "\f073";
}

/* line 175, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-calendar-check:before {
  content: "\f274";
}

/* line 176, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-calendar-day:before {
  content: "\f783";
}

/* line 177, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-calendar-minus:before {
  content: "\f272";
}

/* line 178, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-calendar-plus:before {
  content: "\f271";
}

/* line 179, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-calendar-times:before {
  content: "\f273";
}

/* line 180, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-calendar-week:before {
  content: "\f784";
}

/* line 181, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-camera:before {
  content: "\f030";
}

/* line 182, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-camera-retro:before {
  content: "\f083";
}

/* line 183, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-campground:before {
  content: "\f6bb";
}

/* line 184, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-canadian-maple-leaf:before {
  content: "\f785";
}

/* line 185, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-candy-cane:before {
  content: "\f786";
}

/* line 186, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-cannabis:before {
  content: "\f55f";
}

/* line 187, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-capsules:before {
  content: "\f46b";
}

/* line 188, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-car:before {
  content: "\f1b9";
}

/* line 189, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-car-alt:before {
  content: "\f5de";
}

/* line 190, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-car-battery:before {
  content: "\f5df";
}

/* line 191, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-car-crash:before {
  content: "\f5e1";
}

/* line 192, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-car-side:before {
  content: "\f5e4";
}

/* line 193, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-caret-down:before {
  content: "\f0d7";
}

/* line 194, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-caret-left:before {
  content: "\f0d9";
}

/* line 195, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-caret-right:before {
  content: "\f0da";
}

/* line 196, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-caret-square-down:before {
  content: "\f150";
}

/* line 197, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-caret-square-left:before {
  content: "\f191";
}

/* line 198, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-caret-square-right:before {
  content: "\f152";
}

/* line 199, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-caret-square-up:before {
  content: "\f151";
}

/* line 200, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-caret-up:before {
  content: "\f0d8";
}

/* line 201, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-carrot:before {
  content: "\f787";
}

/* line 202, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-cart-arrow-down:before {
  content: "\f218";
}

/* line 203, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-cart-plus:before {
  content: "\f217";
}

/* line 204, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-cash-register:before {
  content: "\f788";
}

/* line 205, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-cat:before {
  content: "\f6be";
}

/* line 206, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-cc-amazon-pay:before {
  content: "\f42d";
}

/* line 207, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-cc-amex:before {
  content: "\f1f3";
}

/* line 208, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-cc-apple-pay:before {
  content: "\f416";
}

/* line 209, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-cc-diners-club:before {
  content: "\f24c";
}

/* line 210, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-cc-discover:before {
  content: "\f1f2";
}

/* line 211, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-cc-jcb:before {
  content: "\f24b";
}

/* line 212, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-cc-mastercard:before {
  content: "\f1f1";
}

/* line 213, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-cc-paypal:before {
  content: "\f1f4";
}

/* line 214, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-cc-stripe:before {
  content: "\f1f5";
}

/* line 215, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-cc-visa:before {
  content: "\f1f0";
}

/* line 216, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-centercode:before {
  content: "\f380";
}

/* line 217, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-centos:before {
  content: "\f789";
}

/* line 218, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-certificate:before {
  content: "\f0a3";
}

/* line 219, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-chair:before {
  content: "\f6c0";
}

/* line 220, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-chalkboard:before {
  content: "\f51b";
}

/* line 221, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-chalkboard-teacher:before {
  content: "\f51c";
}

/* line 222, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-charging-station:before {
  content: "\f5e7";
}

/* line 223, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-chart-area:before {
  content: "\f1fe";
}

/* line 224, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-chart-bar:before {
  content: "\f080";
}

/* line 225, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-chart-line:before {
  content: "\f201";
}

/* line 226, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-chart-pie:before {
  content: "\f200";
}

/* line 227, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-check:before {
  content: "\f00c";
}

/* line 228, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-check-circle:before {
  content: "\f058";
}

/* line 229, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-check-double:before {
  content: "\f560";
}

/* line 230, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-check-square:before {
  content: "\f14a";
}

/* line 231, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-cheese:before {
  content: "\f7ef";
}

/* line 232, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-chess:before {
  content: "\f439";
}

/* line 233, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-chess-bishop:before {
  content: "\f43a";
}

/* line 234, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-chess-board:before {
  content: "\f43c";
}

/* line 235, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-chess-king:before {
  content: "\f43f";
}

/* line 236, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-chess-knight:before {
  content: "\f441";
}

/* line 237, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-chess-pawn:before {
  content: "\f443";
}

/* line 238, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-chess-queen:before {
  content: "\f445";
}

/* line 239, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-chess-rook:before {
  content: "\f447";
}

/* line 240, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-chevron-circle-down:before {
  content: "\f13a";
}

/* line 241, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-chevron-circle-left:before {
  content: "\f137";
}

/* line 242, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-chevron-circle-right:before {
  content: "\f138";
}

/* line 243, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-chevron-circle-up:before {
  content: "\f139";
}

/* line 244, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-chevron-down:before {
  content: "\f078";
}

/* line 245, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-chevron-left:before {
  content: "\f053";
}

/* line 246, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-chevron-right:before {
  content: "\f054";
}

/* line 247, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-chevron-up:before {
  content: "\f077";
}

/* line 248, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-child:before {
  content: "\f1ae";
}

/* line 249, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-chrome:before {
  content: "\f268";
}

/* line 250, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-chromecast:before {
  content: "\f838";
}

/* line 251, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-church:before {
  content: "\f51d";
}

/* line 252, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-circle:before {
  content: "\f111";
}

/* line 253, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-circle-notch:before {
  content: "\f1ce";
}

/* line 254, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-city:before {
  content: "\f64f";
}

/* line 255, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-clinic-medical:before {
  content: "\f7f2";
}

/* line 256, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-clipboard:before {
  content: "\f328";
}

/* line 257, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-clipboard-check:before {
  content: "\f46c";
}

/* line 258, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-clipboard-list:before {
  content: "\f46d";
}

/* line 259, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-clock:before {
  content: "\f017";
}

/* line 260, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-clone:before {
  content: "\f24d";
}

/* line 261, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-closed-captioning:before {
  content: "\f20a";
}

/* line 262, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-cloud:before {
  content: "\f0c2";
}

/* line 263, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-cloud-download-alt:before {
  content: "\f381";
}

/* line 264, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-cloud-meatball:before {
  content: "\f73b";
}

/* line 265, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-cloud-moon:before {
  content: "\f6c3";
}

/* line 266, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-cloud-moon-rain:before {
  content: "\f73c";
}

/* line 267, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-cloud-rain:before {
  content: "\f73d";
}

/* line 268, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-cloud-showers-heavy:before {
  content: "\f740";
}

/* line 269, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-cloud-sun:before {
  content: "\f6c4";
}

/* line 270, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-cloud-sun-rain:before {
  content: "\f743";
}

/* line 271, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-cloud-upload-alt:before {
  content: "\f382";
}

/* line 272, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-cloudscale:before {
  content: "\f383";
}

/* line 273, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-cloudsmith:before {
  content: "\f384";
}

/* line 274, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-cloudversify:before {
  content: "\f385";
}

/* line 275, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-cocktail:before {
  content: "\f561";
}

/* line 276, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-code:before {
  content: "\f121";
}

/* line 277, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-code-branch:before {
  content: "\f126";
}

/* line 278, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-codepen:before {
  content: "\f1cb";
}

/* line 279, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-codiepie:before {
  content: "\f284";
}

/* line 280, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-coffee:before {
  content: "\f0f4";
}

/* line 281, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-cog:before {
  content: "\f013";
}

/* line 282, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-cogs:before {
  content: "\f085";
}

/* line 283, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-coins:before {
  content: "\f51e";
}

/* line 284, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-columns:before {
  content: "\f0db";
}

/* line 285, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-comment:before {
  content: "\f075";
}

/* line 286, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-comment-alt:before {
  content: "\f27a";
}

/* line 287, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-comment-dollar:before {
  content: "\f651";
}

/* line 288, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-comment-dots:before {
  content: "\f4ad";
}

/* line 289, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-comment-medical:before {
  content: "\f7f5";
}

/* line 290, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-comment-slash:before {
  content: "\f4b3";
}

/* line 291, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-comments:before {
  content: "\f086";
}

/* line 292, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-comments-dollar:before {
  content: "\f653";
}

/* line 293, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-compact-disc:before {
  content: "\f51f";
}

/* line 294, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-compass:before {
  content: "\f14e";
}

/* line 295, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-compress:before {
  content: "\f066";
}

/* line 296, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-compress-arrows-alt:before {
  content: "\f78c";
}

/* line 297, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-concierge-bell:before {
  content: "\f562";
}

/* line 298, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-confluence:before {
  content: "\f78d";
}

/* line 299, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-connectdevelop:before {
  content: "\f20e";
}

/* line 300, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-contao:before {
  content: "\f26d";
}

/* line 301, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-cookie:before {
  content: "\f563";
}

/* line 302, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-cookie-bite:before {
  content: "\f564";
}

/* line 303, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-copy:before {
  content: "\f0c5";
}

/* line 304, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-copyright:before {
  content: "\f1f9";
}

/* line 305, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-cotton-bureau:before {
  content: "\f89e";
}

/* line 306, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-couch:before {
  content: "\f4b8";
}

/* line 307, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-cpanel:before {
  content: "\f388";
}

/* line 308, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-creative-commons:before {
  content: "\f25e";
}

/* line 309, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-creative-commons-by:before {
  content: "\f4e7";
}

/* line 310, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-creative-commons-nc:before {
  content: "\f4e8";
}

/* line 311, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-creative-commons-nc-eu:before {
  content: "\f4e9";
}

/* line 312, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-creative-commons-nc-jp:before {
  content: "\f4ea";
}

/* line 313, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-creative-commons-nd:before {
  content: "\f4eb";
}

/* line 314, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-creative-commons-pd:before {
  content: "\f4ec";
}

/* line 315, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-creative-commons-pd-alt:before {
  content: "\f4ed";
}

/* line 316, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-creative-commons-remix:before {
  content: "\f4ee";
}

/* line 317, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-creative-commons-sa:before {
  content: "\f4ef";
}

/* line 318, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-creative-commons-sampling:before {
  content: "\f4f0";
}

/* line 319, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-creative-commons-sampling-plus:before {
  content: "\f4f1";
}

/* line 320, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-creative-commons-share:before {
  content: "\f4f2";
}

/* line 321, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-creative-commons-zero:before {
  content: "\f4f3";
}

/* line 322, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-credit-card:before {
  content: "\f09d";
}

/* line 323, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-critical-role:before {
  content: "\f6c9";
}

/* line 324, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-crop:before {
  content: "\f125";
}

/* line 325, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-crop-alt:before {
  content: "\f565";
}

/* line 326, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-cross:before {
  content: "\f654";
}

/* line 327, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-crosshairs:before {
  content: "\f05b";
}

/* line 328, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-crow:before {
  content: "\f520";
}

/* line 329, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-crown:before {
  content: "\f521";
}

/* line 330, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-crutch:before {
  content: "\f7f7";
}

/* line 331, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-css3:before {
  content: "\f13c";
}

/* line 332, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-css3-alt:before {
  content: "\f38b";
}

/* line 333, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-cube:before {
  content: "\f1b2";
}

/* line 334, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-cubes:before {
  content: "\f1b3";
}

/* line 335, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-cut:before {
  content: "\f0c4";
}

/* line 336, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-cuttlefish:before {
  content: "\f38c";
}

/* line 337, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-d-and-d:before {
  content: "\f38d";
}

/* line 338, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-d-and-d-beyond:before {
  content: "\f6ca";
}

/* line 339, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-dashcube:before {
  content: "\f210";
}

/* line 340, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-database:before {
  content: "\f1c0";
}

/* line 341, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-deaf:before {
  content: "\f2a4";
}

/* line 342, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-delicious:before {
  content: "\f1a5";
}

/* line 343, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-democrat:before {
  content: "\f747";
}

/* line 344, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-deploydog:before {
  content: "\f38e";
}

/* line 345, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-deskpro:before {
  content: "\f38f";
}

/* line 346, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-desktop:before {
  content: "\f108";
}

/* line 347, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-dev:before {
  content: "\f6cc";
}

/* line 348, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-deviantart:before {
  content: "\f1bd";
}

/* line 349, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-dharmachakra:before {
  content: "\f655";
}

/* line 350, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-dhl:before {
  content: "\f790";
}

/* line 351, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-diagnoses:before {
  content: "\f470";
}

/* line 352, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-diaspora:before {
  content: "\f791";
}

/* line 353, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-dice:before {
  content: "\f522";
}

/* line 354, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-dice-d20:before {
  content: "\f6cf";
}

/* line 355, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-dice-d6:before {
  content: "\f6d1";
}

/* line 356, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-dice-five:before {
  content: "\f523";
}

/* line 357, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-dice-four:before {
  content: "\f524";
}

/* line 358, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-dice-one:before {
  content: "\f525";
}

/* line 359, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-dice-six:before {
  content: "\f526";
}

/* line 360, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-dice-three:before {
  content: "\f527";
}

/* line 361, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-dice-two:before {
  content: "\f528";
}

/* line 362, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-digg:before {
  content: "\f1a6";
}

/* line 363, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-digital-ocean:before {
  content: "\f391";
}

/* line 364, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-digital-tachograph:before {
  content: "\f566";
}

/* line 365, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-directions:before {
  content: "\f5eb";
}

/* line 366, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-discord:before {
  content: "\f392";
}

/* line 367, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-discourse:before {
  content: "\f393";
}

/* line 368, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-divide:before {
  content: "\f529";
}

/* line 369, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-dizzy:before {
  content: "\f567";
}

/* line 370, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-dna:before {
  content: "\f471";
}

/* line 371, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-dochub:before {
  content: "\f394";
}

/* line 372, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-docker:before {
  content: "\f395";
}

/* line 373, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-dog:before {
  content: "\f6d3";
}

/* line 374, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-dollar-sign:before {
  content: "\f155";
}

/* line 375, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-dolly:before {
  content: "\f472";
}

/* line 376, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-dolly-flatbed:before {
  content: "\f474";
}

/* line 377, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-donate:before {
  content: "\f4b9";
}

/* line 378, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-door-closed:before {
  content: "\f52a";
}

/* line 379, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-door-open:before {
  content: "\f52b";
}

/* line 380, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-dot-circle:before {
  content: "\f192";
}

/* line 381, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-dove:before {
  content: "\f4ba";
}

/* line 382, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-download:before {
  content: "\f019";
}

/* line 383, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-draft2digital:before {
  content: "\f396";
}

/* line 384, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-drafting-compass:before {
  content: "\f568";
}

/* line 385, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-dragon:before {
  content: "\f6d5";
}

/* line 386, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-draw-polygon:before {
  content: "\f5ee";
}

/* line 387, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-dribbble:before {
  content: "\f17d";
}

/* line 388, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-dribbble-square:before {
  content: "\f397";
}

/* line 389, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-dropbox:before {
  content: "\f16b";
}

/* line 390, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-drum:before {
  content: "\f569";
}

/* line 391, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-drum-steelpan:before {
  content: "\f56a";
}

/* line 392, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-drumstick-bite:before {
  content: "\f6d7";
}

/* line 393, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-drupal:before {
  content: "\f1a9";
}

/* line 394, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-dumbbell:before {
  content: "\f44b";
}

/* line 395, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-dumpster:before {
  content: "\f793";
}

/* line 396, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-dumpster-fire:before {
  content: "\f794";
}

/* line 397, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-dungeon:before {
  content: "\f6d9";
}

/* line 398, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-dyalog:before {
  content: "\f399";
}

/* line 399, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-earlybirds:before {
  content: "\f39a";
}

/* line 400, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-ebay:before {
  content: "\f4f4";
}

/* line 401, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-edge:before {
  content: "\f282";
}

/* line 402, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-edit:before {
  content: "\f044";
}

/* line 403, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-egg:before {
  content: "\f7fb";
}

/* line 404, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-eject:before {
  content: "\f052";
}

/* line 405, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-elementor:before {
  content: "\f430";
}

/* line 406, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-ellipsis-h:before {
  content: "\f141";
}

/* line 407, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-ellipsis-v:before {
  content: "\f142";
}

/* line 408, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-ello:before {
  content: "\f5f1";
}

/* line 409, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-ember:before {
  content: "\f423";
}

/* line 410, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-empire:before {
  content: "\f1d1";
}

/* line 411, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-envelope:before {
  content: "\f0e0";
}

/* line 412, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-envelope-open:before {
  content: "\f2b6";
}

/* line 413, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-envelope-open-text:before {
  content: "\f658";
}

/* line 414, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-envelope-square:before {
  content: "\f199";
}

/* line 415, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-envira:before {
  content: "\f299";
}

/* line 416, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-equals:before {
  content: "\f52c";
}

/* line 417, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-eraser:before {
  content: "\f12d";
}

/* line 418, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-erlang:before {
  content: "\f39d";
}

/* line 419, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-ethereum:before {
  content: "\f42e";
}

/* line 420, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-ethernet:before {
  content: "\f796";
}

/* line 421, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-etsy:before {
  content: "\f2d7";
}

/* line 422, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-euro-sign:before {
  content: "\f153";
}

/* line 423, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-evernote:before {
  content: "\f839";
}

/* line 424, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-exchange-alt:before {
  content: "\f362";
}

/* line 425, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-exclamation:before {
  content: "\f12a";
}

/* line 426, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-exclamation-circle:before {
  content: "\f06a";
}

/* line 427, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-exclamation-triangle:before {
  content: "\f071";
}

/* line 428, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-expand:before {
  content: "\f065";
}

/* line 429, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-expand-arrows-alt:before {
  content: "\f31e";
}

/* line 430, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-expeditedssl:before {
  content: "\f23e";
}

/* line 431, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-external-link-alt:before {
  content: "\f35d";
}

/* line 432, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-external-link-square-alt:before {
  content: "\f360";
}

/* line 433, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-eye:before {
  content: "\f06e";
}

/* line 434, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-eye-dropper:before {
  content: "\f1fb";
}

/* line 435, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-eye-slash:before {
  content: "\f070";
}

/* line 436, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-facebook:before {
  content: "\f09a";
}

/* line 437, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-facebook-f:before {
  content: "\f39e";
}

/* line 438, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-facebook-messenger:before {
  content: "\f39f";
}

/* line 439, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-facebook-square:before {
  content: "\f082";
}

/* line 440, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-fan:before {
  content: "\f863";
}

/* line 441, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-fantasy-flight-games:before {
  content: "\f6dc";
}

/* line 442, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-fast-backward:before {
  content: "\f049";
}

/* line 443, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-fast-forward:before {
  content: "\f050";
}

/* line 444, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-fax:before {
  content: "\f1ac";
}

/* line 445, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-feather:before {
  content: "\f52d";
}

/* line 446, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-feather-alt:before {
  content: "\f56b";
}

/* line 447, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-fedex:before {
  content: "\f797";
}

/* line 448, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-fedora:before {
  content: "\f798";
}

/* line 449, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-female:before {
  content: "\f182";
}

/* line 450, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-fighter-jet:before {
  content: "\f0fb";
}

/* line 451, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-figma:before {
  content: "\f799";
}

/* line 452, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-file:before {
  content: "\f15b";
}

/* line 453, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-file-alt:before {
  content: "\f15c";
}

/* line 454, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-file-archive:before {
  content: "\f1c6";
}

/* line 455, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-file-audio:before {
  content: "\f1c7";
}

/* line 456, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-file-code:before {
  content: "\f1c9";
}

/* line 457, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-file-contract:before {
  content: "\f56c";
}

/* line 458, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-file-csv:before {
  content: "\f6dd";
}

/* line 459, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-file-download:before {
  content: "\f56d";
}

/* line 460, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-file-excel:before {
  content: "\f1c3";
}

/* line 461, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-file-export:before {
  content: "\f56e";
}

/* line 462, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-file-image:before {
  content: "\f1c5";
}

/* line 463, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-file-import:before {
  content: "\f56f";
}

/* line 464, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-file-invoice:before {
  content: "\f570";
}

/* line 465, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-file-invoice-dollar:before {
  content: "\f571";
}

/* line 466, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-file-medical:before {
  content: "\f477";
}

/* line 467, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-file-medical-alt:before {
  content: "\f478";
}

/* line 468, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-file-pdf:before {
  content: "\f1c1";
}

/* line 469, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-file-powerpoint:before {
  content: "\f1c4";
}

/* line 470, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-file-prescription:before {
  content: "\f572";
}

/* line 471, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-file-signature:before {
  content: "\f573";
}

/* line 472, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-file-upload:before {
  content: "\f574";
}

/* line 473, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-file-video:before {
  content: "\f1c8";
}

/* line 474, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-file-word:before {
  content: "\f1c2";
}

/* line 475, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-fill:before {
  content: "\f575";
}

/* line 476, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-fill-drip:before {
  content: "\f576";
}

/* line 477, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-film:before {
  content: "\f008";
}

/* line 478, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-filter:before {
  content: "\f0b0";
}

/* line 479, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-fingerprint:before {
  content: "\f577";
}

/* line 480, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-fire:before {
  content: "\f06d";
}

/* line 481, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-fire-alt:before {
  content: "\f7e4";
}

/* line 482, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-fire-extinguisher:before {
  content: "\f134";
}

/* line 483, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-firefox:before {
  content: "\f269";
}

/* line 484, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-first-aid:before {
  content: "\f479";
}

/* line 485, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-first-order:before {
  content: "\f2b0";
}

/* line 486, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-first-order-alt:before {
  content: "\f50a";
}

/* line 487, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-firstdraft:before {
  content: "\f3a1";
}

/* line 488, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-fish:before {
  content: "\f578";
}

/* line 489, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-fist-raised:before {
  content: "\f6de";
}

/* line 490, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-flag:before {
  content: "\f024";
}

/* line 491, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-flag-checkered:before {
  content: "\f11e";
}

/* line 492, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-flag-usa:before {
  content: "\f74d";
}

/* line 493, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-flask:before {
  content: "\f0c3";
}

/* line 494, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-flickr:before {
  content: "\f16e";
}

/* line 495, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-flipboard:before {
  content: "\f44d";
}

/* line 496, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-flushed:before {
  content: "\f579";
}

/* line 497, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-fly:before {
  content: "\f417";
}

/* line 498, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-folder:before {
  content: "\f07b";
}

/* line 499, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-folder-minus:before {
  content: "\f65d";
}

/* line 500, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-folder-open:before {
  content: "\f07c";
}

/* line 501, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-folder-plus:before {
  content: "\f65e";
}

/* line 502, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-font:before {
  content: "\f031";
}

/* line 503, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-font-awesome:before {
  content: "\f2b4";
}

/* line 504, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-font-awesome-alt:before {
  content: "\f35c";
}

/* line 505, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-font-awesome-flag:before {
  content: "\f425";
}

/* line 506, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-font-awesome-logo-full:before {
  content: "\f4e6";
}

/* line 507, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-fonticons:before {
  content: "\f280";
}

/* line 508, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-fonticons-fi:before {
  content: "\f3a2";
}

/* line 509, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-football-ball:before {
  content: "\f44e";
}

/* line 510, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-fort-awesome:before {
  content: "\f286";
}

/* line 511, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-fort-awesome-alt:before {
  content: "\f3a3";
}

/* line 512, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-forumbee:before {
  content: "\f211";
}

/* line 513, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-forward:before {
  content: "\f04e";
}

/* line 514, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-foursquare:before {
  content: "\f180";
}

/* line 515, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-free-code-camp:before {
  content: "\f2c5";
}

/* line 516, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-freebsd:before {
  content: "\f3a4";
}

/* line 517, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-frog:before {
  content: "\f52e";
}

/* line 518, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-frown:before {
  content: "\f119";
}

/* line 519, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-frown-open:before {
  content: "\f57a";
}

/* line 520, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-fulcrum:before {
  content: "\f50b";
}

/* line 521, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-funnel-dollar:before {
  content: "\f662";
}

/* line 522, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-futbol:before {
  content: "\f1e3";
}

/* line 523, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-galactic-republic:before {
  content: "\f50c";
}

/* line 524, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-galactic-senate:before {
  content: "\f50d";
}

/* line 525, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-gamepad:before {
  content: "\f11b";
}

/* line 526, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-gas-pump:before {
  content: "\f52f";
}

/* line 527, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-gavel:before {
  content: "\f0e3";
}

/* line 528, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-gem:before {
  content: "\f3a5";
}

/* line 529, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-genderless:before {
  content: "\f22d";
}

/* line 530, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-get-pocket:before {
  content: "\f265";
}

/* line 531, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-gg:before {
  content: "\f260";
}

/* line 532, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-gg-circle:before {
  content: "\f261";
}

/* line 533, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-ghost:before {
  content: "\f6e2";
}

/* line 534, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-gift:before {
  content: "\f06b";
}

/* line 535, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-gifts:before {
  content: "\f79c";
}

/* line 536, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-git:before {
  content: "\f1d3";
}

/* line 537, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-git-alt:before {
  content: "\f841";
}

/* line 538, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-git-square:before {
  content: "\f1d2";
}

/* line 539, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-github:before {
  content: "\f09b";
}

/* line 540, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-github-alt:before {
  content: "\f113";
}

/* line 541, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-github-square:before {
  content: "\f092";
}

/* line 542, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-gitkraken:before {
  content: "\f3a6";
}

/* line 543, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-gitlab:before {
  content: "\f296";
}

/* line 544, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-gitter:before {
  content: "\f426";
}

/* line 545, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-glass-cheers:before {
  content: "\f79f";
}

/* line 546, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-glass-martini:before {
  content: "\f000";
}

/* line 547, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-glass-martini-alt:before {
  content: "\f57b";
}

/* line 548, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-glass-whiskey:before {
  content: "\f7a0";
}

/* line 549, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-glasses:before {
  content: "\f530";
}

/* line 550, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-glide:before {
  content: "\f2a5";
}

/* line 551, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-glide-g:before {
  content: "\f2a6";
}

/* line 552, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-globe:before {
  content: "\f0ac";
}

/* line 553, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-globe-africa:before {
  content: "\f57c";
}

/* line 554, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-globe-americas:before {
  content: "\f57d";
}

/* line 555, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-globe-asia:before {
  content: "\f57e";
}

/* line 556, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-globe-europe:before {
  content: "\f7a2";
}

/* line 557, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-gofore:before {
  content: "\f3a7";
}

/* line 558, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-golf-ball:before {
  content: "\f450";
}

/* line 559, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-goodreads:before {
  content: "\f3a8";
}

/* line 560, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-goodreads-g:before {
  content: "\f3a9";
}

/* line 561, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-google:before {
  content: "\f1a0";
}

/* line 562, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-google-drive:before {
  content: "\f3aa";
}

/* line 563, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-google-play:before {
  content: "\f3ab";
}

/* line 564, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-google-plus:before {
  content: "\f2b3";
}

/* line 565, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-google-plus-g:before {
  content: "\f0d5";
}

/* line 566, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-google-plus-square:before {
  content: "\f0d4";
}

/* line 567, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-google-wallet:before {
  content: "\f1ee";
}

/* line 568, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-gopuram:before {
  content: "\f664";
}

/* line 569, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-graduation-cap:before {
  content: "\f19d";
}

/* line 570, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-gratipay:before {
  content: "\f184";
}

/* line 571, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-grav:before {
  content: "\f2d6";
}

/* line 572, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-greater-than:before {
  content: "\f531";
}

/* line 573, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-greater-than-equal:before {
  content: "\f532";
}

/* line 574, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-grimace:before {
  content: "\f57f";
}

/* line 575, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-grin:before {
  content: "\f580";
}

/* line 576, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-grin-alt:before {
  content: "\f581";
}

/* line 577, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-grin-beam:before {
  content: "\f582";
}

/* line 578, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-grin-beam-sweat:before {
  content: "\f583";
}

/* line 579, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-grin-hearts:before {
  content: "\f584";
}

/* line 580, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-grin-squint:before {
  content: "\f585";
}

/* line 581, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-grin-squint-tears:before {
  content: "\f586";
}

/* line 582, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-grin-stars:before {
  content: "\f587";
}

/* line 583, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-grin-tears:before {
  content: "\f588";
}

/* line 584, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-grin-tongue:before {
  content: "\f589";
}

/* line 585, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-grin-tongue-squint:before {
  content: "\f58a";
}

/* line 586, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-grin-tongue-wink:before {
  content: "\f58b";
}

/* line 587, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-grin-wink:before {
  content: "\f58c";
}

/* line 588, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-grip-horizontal:before {
  content: "\f58d";
}

/* line 589, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-grip-lines:before {
  content: "\f7a4";
}

/* line 590, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-grip-lines-vertical:before {
  content: "\f7a5";
}

/* line 591, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-grip-vertical:before {
  content: "\f58e";
}

/* line 592, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-gripfire:before {
  content: "\f3ac";
}

/* line 593, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-grunt:before {
  content: "\f3ad";
}

/* line 594, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-guitar:before {
  content: "\f7a6";
}

/* line 595, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-gulp:before {
  content: "\f3ae";
}

/* line 596, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-h-square:before {
  content: "\f0fd";
}

/* line 597, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hacker-news:before {
  content: "\f1d4";
}

/* line 598, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hacker-news-square:before {
  content: "\f3af";
}

/* line 599, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hackerrank:before {
  content: "\f5f7";
}

/* line 600, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hamburger:before {
  content: "\f805";
}

/* line 601, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hammer:before {
  content: "\f6e3";
}

/* line 602, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hamsa:before {
  content: "\f665";
}

/* line 603, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hand-holding:before {
  content: "\f4bd";
}

/* line 604, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hand-holding-heart:before {
  content: "\f4be";
}

/* line 605, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hand-holding-usd:before {
  content: "\f4c0";
}

/* line 606, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hand-lizard:before {
  content: "\f258";
}

/* line 607, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hand-middle-finger:before {
  content: "\f806";
}

/* line 608, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hand-paper:before {
  content: "\f256";
}

/* line 609, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hand-peace:before {
  content: "\f25b";
}

/* line 610, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hand-point-down:before {
  content: "\f0a7";
}

/* line 611, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hand-point-left:before {
  content: "\f0a5";
}

/* line 612, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hand-point-right:before {
  content: "\f0a4";
}

/* line 613, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hand-point-up:before {
  content: "\f0a6";
}

/* line 614, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hand-pointer:before {
  content: "\f25a";
}

/* line 615, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hand-rock:before {
  content: "\f255";
}

/* line 616, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hand-scissors:before {
  content: "\f257";
}

/* line 617, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hand-spock:before {
  content: "\f259";
}

/* line 618, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hands:before {
  content: "\f4c2";
}

/* line 619, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hands-helping:before {
  content: "\f4c4";
}

/* line 620, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-handshake:before {
  content: "\f2b5";
}

/* line 621, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hanukiah:before {
  content: "\f6e6";
}

/* line 622, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hard-hat:before {
  content: "\f807";
}

/* line 623, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hashtag:before {
  content: "\f292";
}

/* line 624, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hat-cowboy:before {
  content: "\f8c0";
}

/* line 625, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hat-cowboy-side:before {
  content: "\f8c1";
}

/* line 626, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hat-wizard:before {
  content: "\f6e8";
}

/* line 627, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-haykal:before {
  content: "\f666";
}

/* line 628, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hdd:before {
  content: "\f0a0";
}

/* line 629, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-heading:before {
  content: "\f1dc";
}

/* line 630, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-headphones:before {
  content: "\f025";
}

/* line 631, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-headphones-alt:before {
  content: "\f58f";
}

/* line 632, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-headset:before {
  content: "\f590";
}

/* line 633, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-heart:before {
  content: "\f004";
}

/* line 634, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-heart-broken:before {
  content: "\f7a9";
}

/* line 635, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-heartbeat:before {
  content: "\f21e";
}

/* line 636, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-helicopter:before {
  content: "\f533";
}

/* line 637, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-highlighter:before {
  content: "\f591";
}

/* line 638, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hiking:before {
  content: "\f6ec";
}

/* line 639, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hippo:before {
  content: "\f6ed";
}

/* line 640, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hips:before {
  content: "\f452";
}

/* line 641, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hire-a-helper:before {
  content: "\f3b0";
}

/* line 642, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-history:before {
  content: "\f1da";
}

/* line 643, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hockey-puck:before {
  content: "\f453";
}

/* line 644, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-holly-berry:before {
  content: "\f7aa";
}

/* line 645, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-home:before {
  content: "\f015";
}

/* line 646, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hooli:before {
  content: "\f427";
}

/* line 647, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hornbill:before {
  content: "\f592";
}

/* line 648, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-horse:before {
  content: "\f6f0";
}

/* line 649, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-horse-head:before {
  content: "\f7ab";
}

/* line 650, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hospital:before {
  content: "\f0f8";
}

/* line 651, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hospital-alt:before {
  content: "\f47d";
}

/* line 652, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hospital-symbol:before {
  content: "\f47e";
}

/* line 653, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hot-tub:before {
  content: "\f593";
}

/* line 654, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hotdog:before {
  content: "\f80f";
}

/* line 655, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hotel:before {
  content: "\f594";
}

/* line 656, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hotjar:before {
  content: "\f3b1";
}

/* line 657, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hourglass:before {
  content: "\f254";
}

/* line 658, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hourglass-end:before {
  content: "\f253";
}

/* line 659, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hourglass-half:before {
  content: "\f252";
}

/* line 660, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hourglass-start:before {
  content: "\f251";
}

/* line 661, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-house-damage:before {
  content: "\f6f1";
}

/* line 662, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-houzz:before {
  content: "\f27c";
}

/* line 663, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hryvnia:before {
  content: "\f6f2";
}

/* line 664, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-html5:before {
  content: "\f13b";
}

/* line 665, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hubspot:before {
  content: "\f3b2";
}

/* line 666, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-i-cursor:before {
  content: "\f246";
}

/* line 667, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-ice-cream:before {
  content: "\f810";
}

/* line 668, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-icicles:before {
  content: "\f7ad";
}

/* line 669, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-icons:before {
  content: "\f86d";
}

/* line 670, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-id-badge:before {
  content: "\f2c1";
}

/* line 671, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-id-card:before {
  content: "\f2c2";
}

/* line 672, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-id-card-alt:before {
  content: "\f47f";
}

/* line 673, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-igloo:before {
  content: "\f7ae";
}

/* line 674, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-image:before {
  content: "\f03e";
}

/* line 675, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-images:before {
  content: "\f302";
}

/* line 676, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-imdb:before {
  content: "\f2d8";
}

/* line 677, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-inbox:before {
  content: "\f01c";
}

/* line 678, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-indent:before {
  content: "\f03c";
}

/* line 679, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-industry:before {
  content: "\f275";
}

/* line 680, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-infinity:before {
  content: "\f534";
}

/* line 681, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-info:before {
  content: "\f129";
}

/* line 682, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-info-circle:before {
  content: "\f05a";
}

/* line 683, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-instagram:before {
  content: "\f16d";
}

/* line 684, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-intercom:before {
  content: "\f7af";
}

/* line 685, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-internet-explorer:before {
  content: "\f26b";
}

/* line 686, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-invision:before {
  content: "\f7b0";
}

/* line 687, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-ioxhost:before {
  content: "\f208";
}

/* line 688, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-italic:before {
  content: "\f033";
}

/* line 689, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-itch-io:before {
  content: "\f83a";
}

/* line 690, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-itunes:before {
  content: "\f3b4";
}

/* line 691, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-itunes-note:before {
  content: "\f3b5";
}

/* line 692, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-java:before {
  content: "\f4e4";
}

/* line 693, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-jedi:before {
  content: "\f669";
}

/* line 694, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-jedi-order:before {
  content: "\f50e";
}

/* line 695, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-jenkins:before {
  content: "\f3b6";
}

/* line 696, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-jira:before {
  content: "\f7b1";
}

/* line 697, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-joget:before {
  content: "\f3b7";
}

/* line 698, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-joint:before {
  content: "\f595";
}

/* line 699, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-joomla:before {
  content: "\f1aa";
}

/* line 700, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-journal-whills:before {
  content: "\f66a";
}

/* line 701, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-js:before {
  content: "\f3b8";
}

/* line 702, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-js-square:before {
  content: "\f3b9";
}

/* line 703, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-jsfiddle:before {
  content: "\f1cc";
}

/* line 704, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-kaaba:before {
  content: "\f66b";
}

/* line 705, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-kaggle:before {
  content: "\f5fa";
}

/* line 706, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-key:before {
  content: "\f084";
}

/* line 707, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-keybase:before {
  content: "\f4f5";
}

/* line 708, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-keyboard:before {
  content: "\f11c";
}

/* line 709, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-keycdn:before {
  content: "\f3ba";
}

/* line 710, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-khanda:before {
  content: "\f66d";
}

/* line 711, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-kickstarter:before {
  content: "\f3bb";
}

/* line 712, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-kickstarter-k:before {
  content: "\f3bc";
}

/* line 713, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-kiss:before {
  content: "\f596";
}

/* line 714, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-kiss-beam:before {
  content: "\f597";
}

/* line 715, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-kiss-wink-heart:before {
  content: "\f598";
}

/* line 716, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-kiwi-bird:before {
  content: "\f535";
}

/* line 717, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-korvue:before {
  content: "\f42f";
}

/* line 718, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-landmark:before {
  content: "\f66f";
}

/* line 719, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-language:before {
  content: "\f1ab";
}

/* line 720, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-laptop:before {
  content: "\f109";
}

/* line 721, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-laptop-code:before {
  content: "\f5fc";
}

/* line 722, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-laptop-medical:before {
  content: "\f812";
}

/* line 723, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-laravel:before {
  content: "\f3bd";
}

/* line 724, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-lastfm:before {
  content: "\f202";
}

/* line 725, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-lastfm-square:before {
  content: "\f203";
}

/* line 726, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-laugh:before {
  content: "\f599";
}

/* line 727, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-laugh-beam:before {
  content: "\f59a";
}

/* line 728, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-laugh-squint:before {
  content: "\f59b";
}

/* line 729, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-laugh-wink:before {
  content: "\f59c";
}

/* line 730, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-layer-group:before {
  content: "\f5fd";
}

/* line 731, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-leaf:before {
  content: "\f06c";
}

/* line 732, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-leanpub:before {
  content: "\f212";
}

/* line 733, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-lemon:before {
  content: "\f094";
}

/* line 734, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-less:before {
  content: "\f41d";
}

/* line 735, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-less-than:before {
  content: "\f536";
}

/* line 736, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-less-than-equal:before {
  content: "\f537";
}

/* line 737, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-level-down-alt:before {
  content: "\f3be";
}

/* line 738, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-level-up-alt:before {
  content: "\f3bf";
}

/* line 739, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-life-ring:before {
  content: "\f1cd";
}

/* line 740, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-lightbulb:before {
  content: "\f0eb";
}

/* line 741, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-line:before {
  content: "\f3c0";
}

/* line 742, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-link:before {
  content: "\f0c1";
}

/* line 743, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-linkedin:before {
  content: "\f08c";
}

/* line 744, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-linkedin-in:before {
  content: "\f0e1";
}

/* line 745, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-linode:before {
  content: "\f2b8";
}

/* line 746, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-linux:before {
  content: "\f17c";
}

/* line 747, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-lira-sign:before {
  content: "\f195";
}

/* line 748, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-list:before {
  content: "\f03a";
}

/* line 749, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-list-alt:before {
  content: "\f022";
}

/* line 750, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-list-ol:before {
  content: "\f0cb";
}

/* line 751, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-list-ul:before {
  content: "\f0ca";
}

/* line 752, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-location-arrow:before {
  content: "\f124";
}

/* line 753, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-lock:before {
  content: "\f023";
}

/* line 754, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-lock-open:before {
  content: "\f3c1";
}

/* line 755, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-long-arrow-alt-down:before {
  content: "\f309";
}

/* line 756, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-long-arrow-alt-left:before {
  content: "\f30a";
}

/* line 757, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-long-arrow-alt-right:before {
  content: "\f30b";
}

/* line 758, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-long-arrow-alt-up:before {
  content: "\f30c";
}

/* line 759, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-low-vision:before {
  content: "\f2a8";
}

/* line 760, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-luggage-cart:before {
  content: "\f59d";
}

/* line 761, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-lyft:before {
  content: "\f3c3";
}

/* line 762, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-magento:before {
  content: "\f3c4";
}

/* line 763, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-magic:before {
  content: "\f0d0";
}

/* line 764, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-magnet:before {
  content: "\f076";
}

/* line 765, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-mail-bulk:before {
  content: "\f674";
}

/* line 766, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-mailchimp:before {
  content: "\f59e";
}

/* line 767, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-male:before {
  content: "\f183";
}

/* line 768, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-mandalorian:before {
  content: "\f50f";
}

/* line 769, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-map:before {
  content: "\f279";
}

/* line 770, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-map-marked:before {
  content: "\f59f";
}

/* line 771, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-map-marked-alt:before {
  content: "\f5a0";
}

/* line 772, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-map-marker:before {
  content: "\f041";
}

/* line 773, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-map-marker-alt:before {
  content: "\f3c5";
}

/* line 774, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-map-pin:before {
  content: "\f276";
}

/* line 775, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-map-signs:before {
  content: "\f277";
}

/* line 776, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-markdown:before {
  content: "\f60f";
}

/* line 777, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-marker:before {
  content: "\f5a1";
}

/* line 778, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-mars:before {
  content: "\f222";
}

/* line 779, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-mars-double:before {
  content: "\f227";
}

/* line 780, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-mars-stroke:before {
  content: "\f229";
}

/* line 781, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-mars-stroke-h:before {
  content: "\f22b";
}

/* line 782, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-mars-stroke-v:before {
  content: "\f22a";
}

/* line 783, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-mask:before {
  content: "\f6fa";
}

/* line 784, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-mastodon:before {
  content: "\f4f6";
}

/* line 785, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-maxcdn:before {
  content: "\f136";
}

/* line 786, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-mdb:before {
  content: "\f8ca";
}

/* line 787, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-medal:before {
  content: "\f5a2";
}

/* line 788, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-medapps:before {
  content: "\f3c6";
}

/* line 789, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-medium:before {
  content: "\f23a";
}

/* line 790, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-medium-m:before {
  content: "\f3c7";
}

/* line 791, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-medkit:before {
  content: "\f0fa";
}

/* line 792, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-medrt:before {
  content: "\f3c8";
}

/* line 793, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-meetup:before {
  content: "\f2e0";
}

/* line 794, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-megaport:before {
  content: "\f5a3";
}

/* line 795, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-meh:before {
  content: "\f11a";
}

/* line 796, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-meh-blank:before {
  content: "\f5a4";
}

/* line 797, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-meh-rolling-eyes:before {
  content: "\f5a5";
}

/* line 798, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-memory:before {
  content: "\f538";
}

/* line 799, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-mendeley:before {
  content: "\f7b3";
}

/* line 800, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-menorah:before {
  content: "\f676";
}

/* line 801, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-mercury:before {
  content: "\f223";
}

/* line 802, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-meteor:before {
  content: "\f753";
}

/* line 803, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-microchip:before {
  content: "\f2db";
}

/* line 804, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-microphone:before {
  content: "\f130";
}

/* line 805, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-microphone-alt:before {
  content: "\f3c9";
}

/* line 806, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-microphone-alt-slash:before {
  content: "\f539";
}

/* line 807, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-microphone-slash:before {
  content: "\f131";
}

/* line 808, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-microscope:before {
  content: "\f610";
}

/* line 809, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-microsoft:before {
  content: "\f3ca";
}

/* line 810, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-minus:before {
  content: "\f068";
}

/* line 811, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-minus-circle:before {
  content: "\f056";
}

/* line 812, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-minus-square:before {
  content: "\f146";
}

/* line 813, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-mitten:before {
  content: "\f7b5";
}

/* line 814, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-mix:before {
  content: "\f3cb";
}

/* line 815, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-mixcloud:before {
  content: "\f289";
}

/* line 816, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-mizuni:before {
  content: "\f3cc";
}

/* line 817, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-mobile:before {
  content: "\f10b";
}

/* line 818, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-mobile-alt:before {
  content: "\f3cd";
}

/* line 819, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-modx:before {
  content: "\f285";
}

/* line 820, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-monero:before {
  content: "\f3d0";
}

/* line 821, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-money-bill:before {
  content: "\f0d6";
}

/* line 822, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-money-bill-alt:before {
  content: "\f3d1";
}

/* line 823, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-money-bill-wave:before {
  content: "\f53a";
}

/* line 824, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-money-bill-wave-alt:before {
  content: "\f53b";
}

/* line 825, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-money-check:before {
  content: "\f53c";
}

/* line 826, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-money-check-alt:before {
  content: "\f53d";
}

/* line 827, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-monument:before {
  content: "\f5a6";
}

/* line 828, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-moon:before {
  content: "\f186";
}

/* line 829, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-mortar-pestle:before {
  content: "\f5a7";
}

/* line 830, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-mosque:before {
  content: "\f678";
}

/* line 831, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-motorcycle:before {
  content: "\f21c";
}

/* line 832, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-mountain:before {
  content: "\f6fc";
}

/* line 833, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-mouse:before {
  content: "\f8cc";
}

/* line 834, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-mouse-pointer:before {
  content: "\f245";
}

/* line 835, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-mug-hot:before {
  content: "\f7b6";
}

/* line 836, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-music:before {
  content: "\f001";
}

/* line 837, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-napster:before {
  content: "\f3d2";
}

/* line 838, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-neos:before {
  content: "\f612";
}

/* line 839, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-network-wired:before {
  content: "\f6ff";
}

/* line 840, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-neuter:before {
  content: "\f22c";
}

/* line 841, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-newspaper:before {
  content: "\f1ea";
}

/* line 842, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-nimblr:before {
  content: "\f5a8";
}

/* line 843, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-node:before {
  content: "\f419";
}

/* line 844, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-node-js:before {
  content: "\f3d3";
}

/* line 845, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-not-equal:before {
  content: "\f53e";
}

/* line 846, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-notes-medical:before {
  content: "\f481";
}

/* line 847, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-npm:before {
  content: "\f3d4";
}

/* line 848, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-ns8:before {
  content: "\f3d5";
}

/* line 849, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-nutritionix:before {
  content: "\f3d6";
}

/* line 850, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-object-group:before {
  content: "\f247";
}

/* line 851, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-object-ungroup:before {
  content: "\f248";
}

/* line 852, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-odnoklassniki:before {
  content: "\f263";
}

/* line 853, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-odnoklassniki-square:before {
  content: "\f264";
}

/* line 854, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-oil-can:before {
  content: "\f613";
}

/* line 855, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-old-republic:before {
  content: "\f510";
}

/* line 856, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-om:before {
  content: "\f679";
}

/* line 857, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-opencart:before {
  content: "\f23d";
}

/* line 858, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-openid:before {
  content: "\f19b";
}

/* line 859, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-opera:before {
  content: "\f26a";
}

/* line 860, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-optin-monster:before {
  content: "\f23c";
}

/* line 861, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-orcid:before {
  content: "\f8d2";
}

/* line 862, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-osi:before {
  content: "\f41a";
}

/* line 863, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-otter:before {
  content: "\f700";
}

/* line 864, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-outdent:before {
  content: "\f03b";
}

/* line 865, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-page4:before {
  content: "\f3d7";
}

/* line 866, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-pagelines:before {
  content: "\f18c";
}

/* line 867, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-pager:before {
  content: "\f815";
}

/* line 868, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-paint-brush:before {
  content: "\f1fc";
}

/* line 869, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-paint-roller:before {
  content: "\f5aa";
}

/* line 870, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-palette:before {
  content: "\f53f";
}

/* line 871, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-palfed:before {
  content: "\f3d8";
}

/* line 872, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-pallet:before {
  content: "\f482";
}

/* line 873, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-paper-plane:before {
  content: "\f1d8";
}

/* line 874, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-paperclip:before {
  content: "\f0c6";
}

/* line 875, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-parachute-box:before {
  content: "\f4cd";
}

/* line 876, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-paragraph:before {
  content: "\f1dd";
}

/* line 877, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-parking:before {
  content: "\f540";
}

/* line 878, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-passport:before {
  content: "\f5ab";
}

/* line 879, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-pastafarianism:before {
  content: "\f67b";
}

/* line 880, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-paste:before {
  content: "\f0ea";
}

/* line 881, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-patreon:before {
  content: "\f3d9";
}

/* line 882, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-pause:before {
  content: "\f04c";
}

/* line 883, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-pause-circle:before {
  content: "\f28b";
}

/* line 884, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-paw:before {
  content: "\f1b0";
}

/* line 885, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-paypal:before {
  content: "\f1ed";
}

/* line 886, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-peace:before {
  content: "\f67c";
}

/* line 887, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-pen:before {
  content: "\f304";
}

/* line 888, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-pen-alt:before {
  content: "\f305";
}

/* line 889, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-pen-fancy:before {
  content: "\f5ac";
}

/* line 890, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-pen-nib:before {
  content: "\f5ad";
}

/* line 891, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-pen-square:before {
  content: "\f14b";
}

/* line 892, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-pencil-alt:before {
  content: "\f303";
}

/* line 893, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-pencil-ruler:before {
  content: "\f5ae";
}

/* line 894, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-penny-arcade:before {
  content: "\f704";
}

/* line 895, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-people-carry:before {
  content: "\f4ce";
}

/* line 896, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-pepper-hot:before {
  content: "\f816";
}

/* line 897, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-percent:before {
  content: "\f295";
}

/* line 898, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-percentage:before {
  content: "\f541";
}

/* line 899, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-periscope:before {
  content: "\f3da";
}

/* line 900, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-person-booth:before {
  content: "\f756";
}

/* line 901, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-phabricator:before {
  content: "\f3db";
}

/* line 902, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-phoenix-framework:before {
  content: "\f3dc";
}

/* line 903, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-phoenix-squadron:before {
  content: "\f511";
}

/* line 904, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-phone:before {
  content: "\f095";
}

/* line 905, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-phone-alt:before {
  content: "\f879";
}

/* line 906, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-phone-slash:before {
  content: "\f3dd";
}

/* line 907, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-phone-square:before {
  content: "\f098";
}

/* line 908, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-phone-square-alt:before {
  content: "\f87b";
}

/* line 909, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-phone-volume:before {
  content: "\f2a0";
}

/* line 910, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-photo-video:before {
  content: "\f87c";
}

/* line 911, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-php:before {
  content: "\f457";
}

/* line 912, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-pied-piper:before {
  content: "\f2ae";
}

/* line 913, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-pied-piper-alt:before {
  content: "\f1a8";
}

/* line 914, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-pied-piper-hat:before {
  content: "\f4e5";
}

/* line 915, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-pied-piper-pp:before {
  content: "\f1a7";
}

/* line 916, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-piggy-bank:before {
  content: "\f4d3";
}

/* line 917, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-pills:before {
  content: "\f484";
}

/* line 918, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-pinterest:before {
  content: "\f0d2";
}

/* line 919, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-pinterest-p:before {
  content: "\f231";
}

/* line 920, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-pinterest-square:before {
  content: "\f0d3";
}

/* line 921, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-pizza-slice:before {
  content: "\f818";
}

/* line 922, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-place-of-worship:before {
  content: "\f67f";
}

/* line 923, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-plane:before {
  content: "\f072";
}

/* line 924, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-plane-arrival:before {
  content: "\f5af";
}

/* line 925, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-plane-departure:before {
  content: "\f5b0";
}

/* line 926, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-play:before {
  content: "\f04b";
}

/* line 927, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-play-circle:before {
  content: "\f144";
}

/* line 928, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-playstation:before {
  content: "\f3df";
}

/* line 929, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-plug:before {
  content: "\f1e6";
}

/* line 930, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-plus:before {
  content: "\f067";
}

/* line 931, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-plus-circle:before {
  content: "\f055";
}

/* line 932, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-plus-square:before {
  content: "\f0fe";
}

/* line 933, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-podcast:before {
  content: "\f2ce";
}

/* line 934, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-poll:before {
  content: "\f681";
}

/* line 935, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-poll-h:before {
  content: "\f682";
}

/* line 936, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-poo:before {
  content: "\f2fe";
}

/* line 937, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-poo-storm:before {
  content: "\f75a";
}

/* line 938, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-poop:before {
  content: "\f619";
}

/* line 939, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-portrait:before {
  content: "\f3e0";
}

/* line 940, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-pound-sign:before {
  content: "\f154";
}

/* line 941, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-power-off:before {
  content: "\f011";
}

/* line 942, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-pray:before {
  content: "\f683";
}

/* line 943, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-praying-hands:before {
  content: "\f684";
}

/* line 944, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-prescription:before {
  content: "\f5b1";
}

/* line 945, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-prescription-bottle:before {
  content: "\f485";
}

/* line 946, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-prescription-bottle-alt:before {
  content: "\f486";
}

/* line 947, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-print:before {
  content: "\f02f";
}

/* line 948, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-procedures:before {
  content: "\f487";
}

/* line 949, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-product-hunt:before {
  content: "\f288";
}

/* line 950, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-project-diagram:before {
  content: "\f542";
}

/* line 951, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-pushed:before {
  content: "\f3e1";
}

/* line 952, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-puzzle-piece:before {
  content: "\f12e";
}

/* line 953, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-python:before {
  content: "\f3e2";
}

/* line 954, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-qq:before {
  content: "\f1d6";
}

/* line 955, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-qrcode:before {
  content: "\f029";
}

/* line 956, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-question:before {
  content: "\f128";
}

/* line 957, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-question-circle:before {
  content: "\f059";
}

/* line 958, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-quidditch:before {
  content: "\f458";
}

/* line 959, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-quinscape:before {
  content: "\f459";
}

/* line 960, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-quora:before {
  content: "\f2c4";
}

/* line 961, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-quote-left:before {
  content: "\f10d";
}

/* line 962, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-quote-right:before {
  content: "\f10e";
}

/* line 963, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-quran:before {
  content: "\f687";
}

/* line 964, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-r-project:before {
  content: "\f4f7";
}

/* line 965, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-radiation:before {
  content: "\f7b9";
}

/* line 966, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-radiation-alt:before {
  content: "\f7ba";
}

/* line 967, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-rainbow:before {
  content: "\f75b";
}

/* line 968, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-random:before {
  content: "\f074";
}

/* line 969, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-raspberry-pi:before {
  content: "\f7bb";
}

/* line 970, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-ravelry:before {
  content: "\f2d9";
}

/* line 971, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-react:before {
  content: "\f41b";
}

/* line 972, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-reacteurope:before {
  content: "\f75d";
}

/* line 973, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-readme:before {
  content: "\f4d5";
}

/* line 974, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-rebel:before {
  content: "\f1d0";
}

/* line 975, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-receipt:before {
  content: "\f543";
}

/* line 976, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-record-vinyl:before {
  content: "\f8d9";
}

/* line 977, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-recycle:before {
  content: "\f1b8";
}

/* line 978, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-red-river:before {
  content: "\f3e3";
}

/* line 979, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-reddit:before {
  content: "\f1a1";
}

/* line 980, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-reddit-alien:before {
  content: "\f281";
}

/* line 981, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-reddit-square:before {
  content: "\f1a2";
}

/* line 982, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-redhat:before {
  content: "\f7bc";
}

/* line 983, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-redo:before {
  content: "\f01e";
}

/* line 984, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-redo-alt:before {
  content: "\f2f9";
}

/* line 985, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-registered:before {
  content: "\f25d";
}

/* line 986, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-remove-format:before {
  content: "\f87d";
}

/* line 987, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-renren:before {
  content: "\f18b";
}

/* line 988, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-reply:before {
  content: "\f3e5";
}

/* line 989, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-reply-all:before {
  content: "\f122";
}

/* line 990, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-replyd:before {
  content: "\f3e6";
}

/* line 991, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-republican:before {
  content: "\f75e";
}

/* line 992, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-researchgate:before {
  content: "\f4f8";
}

/* line 993, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-resolving:before {
  content: "\f3e7";
}

/* line 994, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-restroom:before {
  content: "\f7bd";
}

/* line 995, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-retweet:before {
  content: "\f079";
}

/* line 996, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-rev:before {
  content: "\f5b2";
}

/* line 997, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-ribbon:before {
  content: "\f4d6";
}

/* line 998, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-ring:before {
  content: "\f70b";
}

/* line 999, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-road:before {
  content: "\f018";
}

/* line 1000, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-robot:before {
  content: "\f544";
}

/* line 1001, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-rocket:before {
  content: "\f135";
}

/* line 1002, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-rocketchat:before {
  content: "\f3e8";
}

/* line 1003, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-rockrms:before {
  content: "\f3e9";
}

/* line 1004, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-route:before {
  content: "\f4d7";
}

/* line 1005, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-rss:before {
  content: "\f09e";
}

/* line 1006, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-rss-square:before {
  content: "\f143";
}

/* line 1007, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-ruble-sign:before {
  content: "\f158";
}

/* line 1008, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-ruler:before {
  content: "\f545";
}

/* line 1009, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-ruler-combined:before {
  content: "\f546";
}

/* line 1010, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-ruler-horizontal:before {
  content: "\f547";
}

/* line 1011, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-ruler-vertical:before {
  content: "\f548";
}

/* line 1012, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-running:before {
  content: "\f70c";
}

/* line 1013, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-rupee-sign:before {
  content: "\f156";
}

/* line 1014, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-sad-cry:before {
  content: "\f5b3";
}

/* line 1015, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-sad-tear:before {
  content: "\f5b4";
}

/* line 1016, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-safari:before {
  content: "\f267";
}

/* line 1017, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-salesforce:before {
  content: "\f83b";
}

/* line 1018, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-sass:before {
  content: "\f41e";
}

/* line 1019, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-satellite:before {
  content: "\f7bf";
}

/* line 1020, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-satellite-dish:before {
  content: "\f7c0";
}

/* line 1021, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-save:before {
  content: "\f0c7";
}

/* line 1022, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-schlix:before {
  content: "\f3ea";
}

/* line 1023, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-school:before {
  content: "\f549";
}

/* line 1024, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-screwdriver:before {
  content: "\f54a";
}

/* line 1025, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-scribd:before {
  content: "\f28a";
}

/* line 1026, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-scroll:before {
  content: "\f70e";
}

/* line 1027, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-sd-card:before {
  content: "\f7c2";
}

/* line 1028, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-search:before {
  content: "\f002";
}

/* line 1029, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-search-dollar:before {
  content: "\f688";
}

/* line 1030, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-search-location:before {
  content: "\f689";
}

/* line 1031, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-search-minus:before {
  content: "\f010";
}

/* line 1032, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-search-plus:before {
  content: "\f00e";
}

/* line 1033, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-searchengin:before {
  content: "\f3eb";
}

/* line 1034, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-seedling:before {
  content: "\f4d8";
}

/* line 1035, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-sellcast:before {
  content: "\f2da";
}

/* line 1036, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-sellsy:before {
  content: "\f213";
}

/* line 1037, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-server:before {
  content: "\f233";
}

/* line 1038, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-servicestack:before {
  content: "\f3ec";
}

/* line 1039, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-shapes:before {
  content: "\f61f";
}

/* line 1040, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-share:before {
  content: "\f064";
}

/* line 1041, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-share-alt:before {
  content: "\f1e0";
}

/* line 1042, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-share-alt-square:before {
  content: "\f1e1";
}

/* line 1043, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-share-square:before {
  content: "\f14d";
}

/* line 1044, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-shekel-sign:before {
  content: "\f20b";
}

/* line 1045, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-shield-alt:before {
  content: "\f3ed";
}

/* line 1046, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-ship:before {
  content: "\f21a";
}

/* line 1047, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-shipping-fast:before {
  content: "\f48b";
}

/* line 1048, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-shirtsinbulk:before {
  content: "\f214";
}

/* line 1049, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-shoe-prints:before {
  content: "\f54b";
}

/* line 1050, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-shopping-bag:before {
  content: "\f290";
}

/* line 1051, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-shopping-basket:before {
  content: "\f291";
}

/* line 1052, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-shopping-cart:before {
  content: "\f07a";
}

/* line 1053, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-shopware:before {
  content: "\f5b5";
}

/* line 1054, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-shower:before {
  content: "\f2cc";
}

/* line 1055, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-shuttle-van:before {
  content: "\f5b6";
}

/* line 1056, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-sign:before {
  content: "\f4d9";
}

/* line 1057, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-sign-in-alt:before {
  content: "\f2f6";
}

/* line 1058, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-sign-language:before {
  content: "\f2a7";
}

/* line 1059, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-sign-out-alt:before {
  content: "\f2f5";
}

/* line 1060, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-signal:before {
  content: "\f012";
}

/* line 1061, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-signature:before {
  content: "\f5b7";
}

/* line 1062, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-sim-card:before {
  content: "\f7c4";
}

/* line 1063, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-simplybuilt:before {
  content: "\f215";
}

/* line 1064, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-sistrix:before {
  content: "\f3ee";
}

/* line 1065, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-sitemap:before {
  content: "\f0e8";
}

/* line 1066, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-sith:before {
  content: "\f512";
}

/* line 1067, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-skating:before {
  content: "\f7c5";
}

/* line 1068, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-sketch:before {
  content: "\f7c6";
}

/* line 1069, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-skiing:before {
  content: "\f7c9";
}

/* line 1070, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-skiing-nordic:before {
  content: "\f7ca";
}

/* line 1071, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-skull:before {
  content: "\f54c";
}

/* line 1072, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-skull-crossbones:before {
  content: "\f714";
}

/* line 1073, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-skyatlas:before {
  content: "\f216";
}

/* line 1074, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-skype:before {
  content: "\f17e";
}

/* line 1075, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-slack:before {
  content: "\f198";
}

/* line 1076, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-slack-hash:before {
  content: "\f3ef";
}

/* line 1077, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-slash:before {
  content: "\f715";
}

/* line 1078, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-sleigh:before {
  content: "\f7cc";
}

/* line 1079, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-sliders-h:before {
  content: "\f1de";
}

/* line 1080, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-slideshare:before {
  content: "\f1e7";
}

/* line 1081, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-smile:before {
  content: "\f118";
}

/* line 1082, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-smile-beam:before {
  content: "\f5b8";
}

/* line 1083, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-smile-wink:before {
  content: "\f4da";
}

/* line 1084, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-smog:before {
  content: "\f75f";
}

/* line 1085, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-smoking:before {
  content: "\f48d";
}

/* line 1086, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-smoking-ban:before {
  content: "\f54d";
}

/* line 1087, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-sms:before {
  content: "\f7cd";
}

/* line 1088, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-snapchat:before {
  content: "\f2ab";
}

/* line 1089, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-snapchat-ghost:before {
  content: "\f2ac";
}

/* line 1090, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-snapchat-square:before {
  content: "\f2ad";
}

/* line 1091, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-snowboarding:before {
  content: "\f7ce";
}

/* line 1092, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-snowflake:before {
  content: "\f2dc";
}

/* line 1093, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-snowman:before {
  content: "\f7d0";
}

/* line 1094, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-snowplow:before {
  content: "\f7d2";
}

/* line 1095, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-socks:before {
  content: "\f696";
}

/* line 1096, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-solar-panel:before {
  content: "\f5ba";
}

/* line 1097, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-sort:before {
  content: "\f0dc";
}

/* line 1098, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-sort-alpha-down:before {
  content: "\f15d";
}

/* line 1099, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-sort-alpha-down-alt:before {
  content: "\f881";
}

/* line 1100, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-sort-alpha-up:before {
  content: "\f15e";
}

/* line 1101, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-sort-alpha-up-alt:before {
  content: "\f882";
}

/* line 1102, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-sort-amount-down:before {
  content: "\f160";
}

/* line 1103, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-sort-amount-down-alt:before {
  content: "\f884";
}

/* line 1104, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-sort-amount-up:before {
  content: "\f161";
}

/* line 1105, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-sort-amount-up-alt:before {
  content: "\f885";
}

/* line 1106, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-sort-down:before {
  content: "\f0dd";
}

/* line 1107, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-sort-numeric-down:before {
  content: "\f162";
}

/* line 1108, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-sort-numeric-down-alt:before {
  content: "\f886";
}

/* line 1109, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-sort-numeric-up:before {
  content: "\f163";
}

/* line 1110, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-sort-numeric-up-alt:before {
  content: "\f887";
}

/* line 1111, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-sort-up:before {
  content: "\f0de";
}

/* line 1112, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-soundcloud:before {
  content: "\f1be";
}

/* line 1113, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-sourcetree:before {
  content: "\f7d3";
}

/* line 1114, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-spa:before {
  content: "\f5bb";
}

/* line 1115, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-space-shuttle:before {
  content: "\f197";
}

/* line 1116, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-speakap:before {
  content: "\f3f3";
}

/* line 1117, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-speaker-deck:before {
  content: "\f83c";
}

/* line 1118, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-spell-check:before {
  content: "\f891";
}

/* line 1119, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-spider:before {
  content: "\f717";
}

/* line 1120, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-spinner:before {
  content: "\f110";
}

/* line 1121, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-splotch:before {
  content: "\f5bc";
}

/* line 1122, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-spotify:before {
  content: "\f1bc";
}

/* line 1123, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-spray-can:before {
  content: "\f5bd";
}

/* line 1124, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-square:before {
  content: "\f0c8";
}

/* line 1125, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-square-full:before {
  content: "\f45c";
}

/* line 1126, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-square-root-alt:before {
  content: "\f698";
}

/* line 1127, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-squarespace:before {
  content: "\f5be";
}

/* line 1128, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-stack-exchange:before {
  content: "\f18d";
}

/* line 1129, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-stack-overflow:before {
  content: "\f16c";
}

/* line 1130, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-stackpath:before {
  content: "\f842";
}

/* line 1131, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-stamp:before {
  content: "\f5bf";
}

/* line 1132, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-star:before {
  content: "\f005";
}

/* line 1133, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-star-and-crescent:before {
  content: "\f699";
}

/* line 1134, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-star-half:before {
  content: "\f089";
}

/* line 1135, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-star-half-alt:before {
  content: "\f5c0";
}

/* line 1136, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-star-of-david:before {
  content: "\f69a";
}

/* line 1137, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-star-of-life:before {
  content: "\f621";
}

/* line 1138, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-staylinked:before {
  content: "\f3f5";
}

/* line 1139, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-steam:before {
  content: "\f1b6";
}

/* line 1140, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-steam-square:before {
  content: "\f1b7";
}

/* line 1141, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-steam-symbol:before {
  content: "\f3f6";
}

/* line 1142, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-step-backward:before {
  content: "\f048";
}

/* line 1143, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-step-forward:before {
  content: "\f051";
}

/* line 1144, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-stethoscope:before {
  content: "\f0f1";
}

/* line 1145, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-sticker-mule:before {
  content: "\f3f7";
}

/* line 1146, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-sticky-note:before {
  content: "\f249";
}

/* line 1147, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-stop:before {
  content: "\f04d";
}

/* line 1148, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-stop-circle:before {
  content: "\f28d";
}

/* line 1149, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-stopwatch:before {
  content: "\f2f2";
}

/* line 1150, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-store:before {
  content: "\f54e";
}

/* line 1151, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-store-alt:before {
  content: "\f54f";
}

/* line 1152, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-strava:before {
  content: "\f428";
}

/* line 1153, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-stream:before {
  content: "\f550";
}

/* line 1154, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-street-view:before {
  content: "\f21d";
}

/* line 1155, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-strikethrough:before {
  content: "\f0cc";
}

/* line 1156, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-stripe:before {
  content: "\f429";
}

/* line 1157, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-stripe-s:before {
  content: "\f42a";
}

/* line 1158, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-stroopwafel:before {
  content: "\f551";
}

/* line 1159, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-studiovinari:before {
  content: "\f3f8";
}

/* line 1160, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-stumbleupon:before {
  content: "\f1a4";
}

/* line 1161, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-stumbleupon-circle:before {
  content: "\f1a3";
}

/* line 1162, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-subscript:before {
  content: "\f12c";
}

/* line 1163, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-subway:before {
  content: "\f239";
}

/* line 1164, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-suitcase:before {
  content: "\f0f2";
}

/* line 1165, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-suitcase-rolling:before {
  content: "\f5c1";
}

/* line 1166, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-sun:before {
  content: "\f185";
}

/* line 1167, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-superpowers:before {
  content: "\f2dd";
}

/* line 1168, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-superscript:before {
  content: "\f12b";
}

/* line 1169, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-supple:before {
  content: "\f3f9";
}

/* line 1170, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-surprise:before {
  content: "\f5c2";
}

/* line 1171, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-suse:before {
  content: "\f7d6";
}

/* line 1172, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-swatchbook:before {
  content: "\f5c3";
}

/* line 1173, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-swift:before {
  content: "\f8e1";
}

/* line 1174, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-swimmer:before {
  content: "\f5c4";
}

/* line 1175, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-swimming-pool:before {
  content: "\f5c5";
}

/* line 1176, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-symfony:before {
  content: "\f83d";
}

/* line 1177, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-synagogue:before {
  content: "\f69b";
}

/* line 1178, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-sync:before {
  content: "\f021";
}

/* line 1179, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-sync-alt:before {
  content: "\f2f1";
}

/* line 1180, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-syringe:before {
  content: "\f48e";
}

/* line 1181, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-table:before {
  content: "\f0ce";
}

/* line 1182, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-table-tennis:before {
  content: "\f45d";
}

/* line 1183, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-tablet:before {
  content: "\f10a";
}

/* line 1184, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-tablet-alt:before {
  content: "\f3fa";
}

/* line 1185, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-tablets:before {
  content: "\f490";
}

/* line 1186, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-tachometer-alt:before {
  content: "\f3fd";
}

/* line 1187, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-tag:before {
  content: "\f02b";
}

/* line 1188, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-tags:before {
  content: "\f02c";
}

/* line 1189, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-tape:before {
  content: "\f4db";
}

/* line 1190, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-tasks:before {
  content: "\f0ae";
}

/* line 1191, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-taxi:before {
  content: "\f1ba";
}

/* line 1192, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-teamspeak:before {
  content: "\f4f9";
}

/* line 1193, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-teeth:before {
  content: "\f62e";
}

/* line 1194, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-teeth-open:before {
  content: "\f62f";
}

/* line 1195, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-telegram:before {
  content: "\f2c6";
}

/* line 1196, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-telegram-plane:before {
  content: "\f3fe";
}

/* line 1197, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-temperature-high:before {
  content: "\f769";
}

/* line 1198, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-temperature-low:before {
  content: "\f76b";
}

/* line 1199, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-tencent-weibo:before {
  content: "\f1d5";
}

/* line 1200, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-tenge:before {
  content: "\f7d7";
}

/* line 1201, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-terminal:before {
  content: "\f120";
}

/* line 1202, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-text-height:before {
  content: "\f034";
}

/* line 1203, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-text-width:before {
  content: "\f035";
}

/* line 1204, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-th:before {
  content: "\f00a";
}

/* line 1205, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-th-large:before {
  content: "\f009";
}

/* line 1206, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-th-list:before {
  content: "\f00b";
}

/* line 1207, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-the-red-yeti:before {
  content: "\f69d";
}

/* line 1208, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-theater-masks:before {
  content: "\f630";
}

/* line 1209, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-themeco:before {
  content: "\f5c6";
}

/* line 1210, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-themeisle:before {
  content: "\f2b2";
}

/* line 1211, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-thermometer:before {
  content: "\f491";
}

/* line 1212, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-thermometer-empty:before {
  content: "\f2cb";
}

/* line 1213, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-thermometer-full:before {
  content: "\f2c7";
}

/* line 1214, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-thermometer-half:before {
  content: "\f2c9";
}

/* line 1215, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-thermometer-quarter:before {
  content: "\f2ca";
}

/* line 1216, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-thermometer-three-quarters:before {
  content: "\f2c8";
}

/* line 1217, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-think-peaks:before {
  content: "\f731";
}

/* line 1218, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-thumbs-down:before {
  content: "\f165";
}

/* line 1219, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-thumbs-up:before {
  content: "\f164";
}

/* line 1220, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-thumbtack:before {
  content: "\f08d";
}

/* line 1221, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-ticket-alt:before {
  content: "\f3ff";
}

/* line 1222, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-times:before {
  content: "\f00d";
}

/* line 1223, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-times-circle:before {
  content: "\f057";
}

/* line 1224, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-tint:before {
  content: "\f043";
}

/* line 1225, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-tint-slash:before {
  content: "\f5c7";
}

/* line 1226, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-tired:before {
  content: "\f5c8";
}

/* line 1227, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-toggle-off:before {
  content: "\f204";
}

/* line 1228, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-toggle-on:before {
  content: "\f205";
}

/* line 1229, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-toilet:before {
  content: "\f7d8";
}

/* line 1230, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-toilet-paper:before {
  content: "\f71e";
}

/* line 1231, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-toolbox:before {
  content: "\f552";
}

/* line 1232, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-tools:before {
  content: "\f7d9";
}

/* line 1233, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-tooth:before {
  content: "\f5c9";
}

/* line 1234, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-torah:before {
  content: "\f6a0";
}

/* line 1235, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-torii-gate:before {
  content: "\f6a1";
}

/* line 1236, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-tractor:before {
  content: "\f722";
}

/* line 1237, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-trade-federation:before {
  content: "\f513";
}

/* line 1238, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-trademark:before {
  content: "\f25c";
}

/* line 1239, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-traffic-light:before {
  content: "\f637";
}

/* line 1240, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-train:before {
  content: "\f238";
}

/* line 1241, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-tram:before {
  content: "\f7da";
}

/* line 1242, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-transgender:before {
  content: "\f224";
}

/* line 1243, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-transgender-alt:before {
  content: "\f225";
}

/* line 1244, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-trash:before {
  content: "\f1f8";
}

/* line 1245, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-trash-alt:before {
  content: "\f2ed";
}

/* line 1246, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-trash-restore:before {
  content: "\f829";
}

/* line 1247, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-trash-restore-alt:before {
  content: "\f82a";
}

/* line 1248, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-tree:before {
  content: "\f1bb";
}

/* line 1249, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-trello:before {
  content: "\f181";
}

/* line 1250, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-tripadvisor:before {
  content: "\f262";
}

/* line 1251, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-trophy:before {
  content: "\f091";
}

/* line 1252, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-truck:before {
  content: "\f0d1";
}

/* line 1253, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-truck-loading:before {
  content: "\f4de";
}

/* line 1254, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-truck-monster:before {
  content: "\f63b";
}

/* line 1255, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-truck-moving:before {
  content: "\f4df";
}

/* line 1256, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-truck-pickup:before {
  content: "\f63c";
}

/* line 1257, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-tshirt:before {
  content: "\f553";
}

/* line 1258, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-tty:before {
  content: "\f1e4";
}

/* line 1259, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-tumblr:before {
  content: "\f173";
}

/* line 1260, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-tumblr-square:before {
  content: "\f174";
}

/* line 1261, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-tv:before {
  content: "\f26c";
}

/* line 1262, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-twitch:before {
  content: "\f1e8";
}

/* line 1263, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-twitter:before {
  content: "\f099";
}

/* line 1264, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-twitter-square:before {
  content: "\f081";
}

/* line 1265, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-typo3:before {
  content: "\f42b";
}

/* line 1266, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-uber:before {
  content: "\f402";
}

/* line 1267, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-ubuntu:before {
  content: "\f7df";
}

/* line 1268, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-uikit:before {
  content: "\f403";
}

/* line 1269, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-umbraco:before {
  content: "\f8e8";
}

/* line 1270, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-umbrella:before {
  content: "\f0e9";
}

/* line 1271, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-umbrella-beach:before {
  content: "\f5ca";
}

/* line 1272, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-underline:before {
  content: "\f0cd";
}

/* line 1273, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-undo:before {
  content: "\f0e2";
}

/* line 1274, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-undo-alt:before {
  content: "\f2ea";
}

/* line 1275, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-uniregistry:before {
  content: "\f404";
}

/* line 1276, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-universal-access:before {
  content: "\f29a";
}

/* line 1277, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-university:before {
  content: "\f19c";
}

/* line 1278, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-unlink:before {
  content: "\f127";
}

/* line 1279, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-unlock:before {
  content: "\f09c";
}

/* line 1280, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-unlock-alt:before {
  content: "\f13e";
}

/* line 1281, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-untappd:before {
  content: "\f405";
}

/* line 1282, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-upload:before {
  content: "\f093";
}

/* line 1283, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-ups:before {
  content: "\f7e0";
}

/* line 1284, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-usb:before {
  content: "\f287";
}

/* line 1285, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-user:before {
  content: "\f007";
}

/* line 1286, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-user-alt:before {
  content: "\f406";
}

/* line 1287, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-user-alt-slash:before {
  content: "\f4fa";
}

/* line 1288, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-user-astronaut:before {
  content: "\f4fb";
}

/* line 1289, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-user-check:before {
  content: "\f4fc";
}

/* line 1290, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-user-circle:before {
  content: "\f2bd";
}

/* line 1291, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-user-clock:before {
  content: "\f4fd";
}

/* line 1292, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-user-cog:before {
  content: "\f4fe";
}

/* line 1293, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-user-edit:before {
  content: "\f4ff";
}

/* line 1294, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-user-friends:before {
  content: "\f500";
}

/* line 1295, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-user-graduate:before {
  content: "\f501";
}

/* line 1296, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-user-injured:before {
  content: "\f728";
}

/* line 1297, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-user-lock:before {
  content: "\f502";
}

/* line 1298, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-user-md:before {
  content: "\f0f0";
}

/* line 1299, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-user-minus:before {
  content: "\f503";
}

/* line 1300, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-user-ninja:before {
  content: "\f504";
}

/* line 1301, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-user-nurse:before {
  content: "\f82f";
}

/* line 1302, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-user-plus:before {
  content: "\f234";
}

/* line 1303, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-user-secret:before {
  content: "\f21b";
}

/* line 1304, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-user-shield:before {
  content: "\f505";
}

/* line 1305, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-user-slash:before {
  content: "\f506";
}

/* line 1306, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-user-tag:before {
  content: "\f507";
}

/* line 1307, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-user-tie:before {
  content: "\f508";
}

/* line 1308, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-user-times:before {
  content: "\f235";
}

/* line 1309, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-users:before {
  content: "\f0c0";
}

/* line 1310, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-users-cog:before {
  content: "\f509";
}

/* line 1311, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-usps:before {
  content: "\f7e1";
}

/* line 1312, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-ussunnah:before {
  content: "\f407";
}

/* line 1313, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-utensil-spoon:before {
  content: "\f2e5";
}

/* line 1314, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-utensils:before {
  content: "\f2e7";
}

/* line 1315, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-vaadin:before {
  content: "\f408";
}

/* line 1316, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-vector-square:before {
  content: "\f5cb";
}

/* line 1317, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-venus:before {
  content: "\f221";
}

/* line 1318, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-venus-double:before {
  content: "\f226";
}

/* line 1319, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-venus-mars:before {
  content: "\f228";
}

/* line 1320, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-viacoin:before {
  content: "\f237";
}

/* line 1321, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-viadeo:before {
  content: "\f2a9";
}

/* line 1322, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-viadeo-square:before {
  content: "\f2aa";
}

/* line 1323, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-vial:before {
  content: "\f492";
}

/* line 1324, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-vials:before {
  content: "\f493";
}

/* line 1325, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-viber:before {
  content: "\f409";
}

/* line 1326, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-video:before {
  content: "\f03d";
}

/* line 1327, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-video-slash:before {
  content: "\f4e2";
}

/* line 1328, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-vihara:before {
  content: "\f6a7";
}

/* line 1329, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-vimeo:before {
  content: "\f40a";
}

/* line 1330, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-vimeo-square:before {
  content: "\f194";
}

/* line 1331, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-vimeo-v:before {
  content: "\f27d";
}

/* line 1332, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-vine:before {
  content: "\f1ca";
}

/* line 1333, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-vk:before {
  content: "\f189";
}

/* line 1334, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-vnv:before {
  content: "\f40b";
}

/* line 1335, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-voicemail:before {
  content: "\f897";
}

/* line 1336, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-volleyball-ball:before {
  content: "\f45f";
}

/* line 1337, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-volume-down:before {
  content: "\f027";
}

/* line 1338, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-volume-mute:before {
  content: "\f6a9";
}

/* line 1339, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-volume-off:before {
  content: "\f026";
}

/* line 1340, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-volume-up:before {
  content: "\f028";
}

/* line 1341, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-vote-yea:before {
  content: "\f772";
}

/* line 1342, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-vr-cardboard:before {
  content: "\f729";
}

/* line 1343, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-vuejs:before {
  content: "\f41f";
}

/* line 1344, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-walking:before {
  content: "\f554";
}

/* line 1345, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-wallet:before {
  content: "\f555";
}

/* line 1346, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-warehouse:before {
  content: "\f494";
}

/* line 1347, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-water:before {
  content: "\f773";
}

/* line 1348, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-wave-square:before {
  content: "\f83e";
}

/* line 1349, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-waze:before {
  content: "\f83f";
}

/* line 1350, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-weebly:before {
  content: "\f5cc";
}

/* line 1351, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-weibo:before {
  content: "\f18a";
}

/* line 1352, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-weight:before {
  content: "\f496";
}

/* line 1353, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-weight-hanging:before {
  content: "\f5cd";
}

/* line 1354, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-weixin:before {
  content: "\f1d7";
}

/* line 1355, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-whatsapp:before {
  content: "\f232";
}

/* line 1356, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-whatsapp-square:before {
  content: "\f40c";
}

/* line 1357, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-wheelchair:before {
  content: "\f193";
}

/* line 1358, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-whmcs:before {
  content: "\f40d";
}

/* line 1359, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-wifi:before {
  content: "\f1eb";
}

/* line 1360, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-wikipedia-w:before {
  content: "\f266";
}

/* line 1361, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-wind:before {
  content: "\f72e";
}

/* line 1362, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-window-close:before {
  content: "\f410";
}

/* line 1363, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-window-maximize:before {
  content: "\f2d0";
}

/* line 1364, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-window-minimize:before {
  content: "\f2d1";
}

/* line 1365, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-window-restore:before {
  content: "\f2d2";
}

/* line 1366, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-windows:before {
  content: "\f17a";
}

/* line 1367, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-wine-bottle:before {
  content: "\f72f";
}

/* line 1368, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-wine-glass:before {
  content: "\f4e3";
}

/* line 1369, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-wine-glass-alt:before {
  content: "\f5ce";
}

/* line 1370, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-wix:before {
  content: "\f5cf";
}

/* line 1371, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-wizards-of-the-coast:before {
  content: "\f730";
}

/* line 1372, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-wolf-pack-battalion:before {
  content: "\f514";
}

/* line 1373, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-won-sign:before {
  content: "\f159";
}

/* line 1374, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-wordpress:before {
  content: "\f19a";
}

/* line 1375, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-wordpress-simple:before {
  content: "\f411";
}

/* line 1376, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-wpbeginner:before {
  content: "\f297";
}

/* line 1377, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-wpexplorer:before {
  content: "\f2de";
}

/* line 1378, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-wpforms:before {
  content: "\f298";
}

/* line 1379, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-wpressr:before {
  content: "\f3e4";
}

/* line 1380, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-wrench:before {
  content: "\f0ad";
}

/* line 1381, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-x-ray:before {
  content: "\f497";
}

/* line 1382, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-xbox:before {
  content: "\f412";
}

/* line 1383, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-xing:before {
  content: "\f168";
}

/* line 1384, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-xing-square:before {
  content: "\f169";
}

/* line 1385, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-y-combinator:before {
  content: "\f23b";
}

/* line 1386, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-yahoo:before {
  content: "\f19e";
}

/* line 1387, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-yammer:before {
  content: "\f840";
}

/* line 1388, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-yandex:before {
  content: "\f413";
}

/* line 1389, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-yandex-international:before {
  content: "\f414";
}

/* line 1390, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-yarn:before {
  content: "\f7e3";
}

/* line 1391, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-yelp:before {
  content: "\f1e9";
}

/* line 1392, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-yen-sign:before {
  content: "\f157";
}

/* line 1393, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-yin-yang:before {
  content: "\f6ad";
}

/* line 1394, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-yoast:before {
  content: "\f2b1";
}

/* line 1395, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-youtube:before {
  content: "\f167";
}

/* line 1396, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-youtube-square:before {
  content: "\f431";
}

/* line 1397, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-zhihu:before {
  content: "\f63f";
}

/* line 4, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_screen-reader.scss */
.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/* line 47, vendor/bundle/ruby/2.6.0/gems/font-awesome-sass-5.11.2/assets/stylesheets/font-awesome/_mixins.scss */
.sr-only-focusable:active, .sr-only-focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

/* line 131, app/assets/stylesheets/_variables.scss */
.card-material .display-block {
  display: block;
}

/* line 5, app/assets/stylesheets/user-helpers.scss */
.user-help {
  opacity: 0;
  position: fixed;
  padding: 20px 15px 5px 15px;
  max-height: 60%;
  background-color: #fff;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  box-shadow: 0 5px 2px rgba(0, 0, 0, 0.15);
  top: 30%;
  right: 0;
  border: 1px solid #c6c6c6;
  border-right: 0;
  -webkit-transition: opacity 0.3s linear 0.3s, margin 0s linear .6s;
  transition: opacity 0.3s linear 0.3s, margin 0s linear .6s;
  margin-right: -50%;
  overflow: hidden;
  z-index: 9999;
}

/* line 23, app/assets/stylesheets/user-helpers.scss */
.user-help ul, .user-help li {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* line 28, app/assets/stylesheets/user-helpers.scss */
.user-help h3 {
  padding-bottom: 0.3em;
  font-size: 1.3em;
  font-weight: 600;
}

/* line 33, app/assets/stylesheets/user-helpers.scss */
.user-help li {
  margin-bottom: 10px;
  font-weight: 400;
}

/* line 37, app/assets/stylesheets/user-helpers.scss */
.user-help.show-hint {
  opacity: 1;
  margin-right: 0;
  -webkit-transition: opacity 0.3s linear 0.5s;
  transition: opacity 0.3s linear 0.5s;
}

/* line 42, app/assets/stylesheets/user-helpers.scss */
.user-help .ann-label span, .user-help .ann-label {
  display: inline-block;
  margin-right: 3px;
}

/* line 46, app/assets/stylesheets/user-helpers.scss */
.user-help .ann-label span {
  display: block;
  height: 38px;
  width: 38px;
  border-radius: 8px;
  margin-top: -8px;
  border-right: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

/* line 55, app/assets/stylesheets/user-helpers.scss */
.user-help .help-announcements, .user-help .help-announcements-options {
  display: none;
  vertical-align: top;
  margin-right: 20px;
}

/* line 60, app/assets/stylesheets/user-helpers.scss */
.user-help .help-announcements-options ul li {
  display: block;
}

/* line 63, app/assets/stylesheets/user-helpers.scss */
.user-help .announcement-type-options .sm {
  margin-top: -7px;
}

/* line 69, app/assets/stylesheets/user-helpers.scss */
.help-announcements-users .help-announcements, .event-list .help-announcements,
.help-announcements-form .help-announcements-options {
  display: inline-block;
}

/* line 74, app/assets/stylesheets/user-helpers.scss */
.field-helper {
  color: #888;
  font-size: 15px;
}

@media all and (min-width: 768px) {
  /* line 74, app/assets/stylesheets/user-helpers.scss */
  .field-helper {
    margin-top: 16px;
  }
}

/* line 131, app/assets/stylesheets/_variables.scss */
.card-material .display-block {
  display: block;
}

/* line 8, app/assets/stylesheets/_meal-info.scss */
.meal-list-info-title {
  display: none;
}

@media (min-width: 980px) {
  /* line 8, app/assets/stylesheets/_meal-info.scss */
  .meal-list-info-title {
    display: block;
  }
  /* line 14, app/assets/stylesheets/_meal-info.scss */
  .meal-list-info-title .meal-values-label {
    display: block;
    margin: 10px 0;
    color: transparent;
  }
  /* line 20, app/assets/stylesheets/_meal-info.scss */
  .meal-list-info-title .meal-values-label div {
    display: inline-block;
    width: 26px;
  }
}

/* line 31, app/assets/stylesheets/_meal-info.scss */
.meal-values-label div i {
  width: 22px;
  height: 22px;
  display: inline-block;
  background-image: url(/assets/sprite-meal-46429e41ca547644187648675d94e673bdb8ecae739e6169f6caef3e385f6df6.png);
  background-size: 88px auto;
}

@media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx), (min-resolution: 144dpi) {
  /* line 31, app/assets/stylesheets/_meal-info.scss */
  .meal-values-label div i {
    background-image: url(/assets/sprite-meal-3x-613d6451a502eba929462e63b9b16321b6a76898b0966afaf47a8079916c3a9b.png);
  }
}

/* line 51, app/assets/stylesheets/_meal-info.scss */
.meal-values-label .meal-nothing i {
  background-position: 0px 0;
}

/* line 51, app/assets/stylesheets/_meal-info.scss */
.meal-values-label .meal-little i {
  background-position: -22px 0;
}

/* line 51, app/assets/stylesheets/_meal-info.scss */
.meal-values-label .meal-half i {
  background-position: -44px 0;
}

/* line 51, app/assets/stylesheets/_meal-info.scss */
.meal-values-label .meal-all i {
  background-position: -66px 0;
}

/* line 65, app/assets/stylesheets/_meal-info.scss */
.meal-msg-ic.comeu i {
  background-position: 0px 0;
}

/* line 65, app/assets/stylesheets/_meal-info.scss */
.meal-msg-ic.Pouco i {
  background-position: -22px 0;
}

/* line 65, app/assets/stylesheets/_meal-info.scss */
.meal-msg-ic.Suficiente i {
  background-position: -44px 0;
}

/* line 65, app/assets/stylesheets/_meal-info.scss */
.meal-msg-ic.Muito i {
  background-position: -66px 0;
}

/* line 70, app/assets/stylesheets/_meal-info.scss */
.meal-msg-ic {
  font-weight: bold;
}

/* line 73, app/assets/stylesheets/_meal-info.scss */
.meal-msg-ic span {
  display: block;
  padding: 10px;
  border-radius: 8px;
  background: #eee;
  max-width: 15em;
  margin-bottom: 15px;
  font-weight: normal;
}

@media (min-width: 980px) {
  /* line 84, app/assets/stylesheets/_meal-info.scss */
  .meal-names {
    width: 154px;
    text-align: center;
  }
}

/* line 90, app/assets/stylesheets/_meal-info.scss */
.meal-names-space {
  width: 315px;
}

/* line 94, app/assets/stylesheets/_meal-info.scss */
.meal-list-item {
  display: block;
  clear: both;
  padding: 12px 10px 8px 12px;
}

/* line 99, app/assets/stylesheets/_meal-info.scss */
.meal-list-item:nth-child(even) {
  background: rgba(255, 255, 255, 0.5);
}

/* line 105, app/assets/stylesheets/_meal-info.scss */
.meal-list-item table, .meal-list-item tr, .meal-list-item td, .meal-list-item th, .meal-list-item tbody, .meal-list-item thead {
  border: 0 solid #fff;
}

/* line 109, app/assets/stylesheets/_meal-info.scss */
.meal-list-item table {
  display: block;
}

@media (min-width: 980px) {
  /* line 109, app/assets/stylesheets/_meal-info.scss */
  .meal-list-item table {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* line 117, app/assets/stylesheets/_meal-info.scss */
.meal-list-item table thead th {
  text-align: center;
}

@media (min-width: 980px) {
  /* line 109, app/assets/stylesheets/_meal-info.scss */
  .meal-list-item table {
    display: inline-block;
  }
}

/* line 127, app/assets/stylesheets/_meal-info.scss */
.meal-list-item table tr.meal-values td {
  text-align: center;
  width: 30px;
}

/* line 131, app/assets/stylesheets/_meal-info.scss */
.meal-list-item table tr.meal-values td:first-child {
  border-right: solid 1px #ccc;
}

@media (min-width: 980px) {
  /* line 138, app/assets/stylesheets/_meal-info.scss */
  .meal-list-item table .meal-values-label, .meal-list-item table .meal-info-title {
    display: none;
  }
}

/* line 145, app/assets/stylesheets/_meal-info.scss */
.meal-list-item span {
  display: block;
  vertical-align: top;
  width: auto;
  word-wrap: break-word;
}

@media (min-width: 980px) {
  /* line 145, app/assets/stylesheets/_meal-info.scss */
  .meal-list-item span {
    width: 300px;
    display: inline-block;
  }
}

/* line 131, app/assets/stylesheets/_variables.scss */
.card-material .display-block {
  display: block;
}

@media (max-width: 767px) {
  /* line 13, app/assets/stylesheets/_media-768.scss */
  .hide-on-mobile {
    display: none;
  }
  /* line 18, app/assets/stylesheets/_media-768.scss */
  html body {
    letter-spacing: -0.03em;
  }
  /* line 21, app/assets/stylesheets/_media-768.scss */
  html body h1 {
    font-size: 24pt;
  }
  /* line 24, app/assets/stylesheets/_media-768.scss */
  html body ul.event-list li.list-first-day .ann-date {
    position: relative;
    width: 100%;
    margin-bottom: 10px;
    height: auto;
    padding-bottom: 5px;
    font-weight: 500;
    border-radius: 0;
  }
  /* line 33, app/assets/stylesheets/_media-768.scss */
  html body .ann-status-and-time-line .ann-date {
    margin-left: -20px;
    margin-top: -7.5px;
  }
  /* line 37, app/assets/stylesheets/_media-768.scss */
  html body .ann-date {
    padding-top: 10px;
  }
  /* line 39, app/assets/stylesheets/_media-768.scss */
  html body .ann-date span {
    display: inline-block;
    margin-top: -8px;
    margin-right: 5px;
  }
  /* line 44, app/assets/stylesheets/_media-768.scss */
  html body .ann-date a {
    margin-left: 46px;
  }
  /* line 51, app/assets/stylesheets/_media-768.scss */
  html body .col-event-content {
    padding: 0;
  }
  /* line 54, app/assets/stylesheets/_media-768.scss */
  html body .area-content {
    padding: 5px;
  }
  /* line 57, app/assets/stylesheets/_media-768.scss */
  html body .area-content h2 {
    margin-bottom: 20px;
  }
  /* line 60, app/assets/stylesheets/_media-768.scss */
  html body .content {
    padding: 15px;
  }
  /* line 63, app/assets/stylesheets/_media-768.scss */
  html body .announcement-user {
    margin: 10px -15px -15px;
    padding: 15px;
  }
  /* line 67, app/assets/stylesheets/_media-768.scss */
  html body .event-post-date {
    margin-left: 0;
    margin-top: 0;
    font-size: 0.75em;
    text-align: right;
    padding: 4px 0;
  }
  /* line 74, app/assets/stylesheets/_media-768.scss */
  html body .event-post-date br {
    display: block;
  }
  /* line 77, app/assets/stylesheets/_media-768.scss */
  html body ul.event-list {
    padding-top: 0;
  }
  /* line 80, app/assets/stylesheets/_media-768.scss */
  html body .event-list-header {
    border-bottom: none;
  }
  /* line 83, app/assets/stylesheets/_media-768.scss */
  html body .event-list-header ul {
    text-align: center;
  }
  /* line 87, app/assets/stylesheets/_media-768.scss */
  html body .message {
    padding: 15px 15px 10px 15px;
    max-width: 100%;
  }
  /* line 91, app/assets/stylesheets/_media-768.scss */
  html body .message-list {
    padding: 30px 15px 15px 15px;
  }
  /* line 94, app/assets/stylesheets/_media-768.scss */
  html body .btn {
    font-weight: 500;
    letter-spacing: -0.02em;
    border-radius: 4px;
    padding-left: 20px;
    padding-right: 20px;
  }
  /* line 101, app/assets/stylesheets/_media-768.scss */
  html body .actions input, html body .actions a {
    margin-right: 10px;
  }
  /* line 104, app/assets/stylesheets/_media-768.scss */
  html body .home #content-container {
    padding-bottom: 0;
  }
  /* line 108, app/assets/stylesheets/_media-768.scss */
  html body .menu h3 {
    margin-top: 20px;
    margin-bottom: 10px;
  }
  /* line 113, app/assets/stylesheets/_media-768.scss */
  html body .field-helper {
    margin-top: -20px;
  }
  /* line 137, app/assets/stylesheets/_media-768.scss */
  html body .home .navbar-header {
    text-align: center;
  }
  /* line 140, app/assets/stylesheets/_media-768.scss */
  html body .home .navbar-brand {
    width: 140px;
    background-position: center;
    margin-left: 10px;
    margin-top: 20px;
    margin-bottom: 20px;
    height: 75px;
    background-size: auto 75px;
  }
  /* line 149, app/assets/stylesheets/_media-768.scss */
  html body .home .navbar {
    background-color: #fff;
  }
  /* line 152, app/assets/stylesheets/_media-768.scss */
  html body .navbar-toggle {
    margin-top: 4px;
    margin-bottom: 4px;
  }
  /* line 159, app/assets/stylesheets/_media-768.scss */
  html body .navbar .nav > li > .dropdown-menu:before {
    display: none !important;
  }
  /* line 162, app/assets/stylesheets/_media-768.scss */
  html body .navbar-nav .open .dropdown-menu > li > a {
    line-height: 1.8em;
    font-size: 14pt;
  }
  /* line 166, app/assets/stylesheets/_media-768.scss */
  html body .user-area {
    margin-top: 20px;
    text-align: right;
    padding: 0;
  }
  /* line 171, app/assets/stylesheets/_media-768.scss */
  html body .user-info {
    padding: 10px;
  }
  /* line 174, app/assets/stylesheets/_media-768.scss */
  html body .container .nav-back {
    padding: 5px 10px 0px 7px;
    height: 100%;
    margin-top: 5px;
    margin-left: -5px;
  }
  /* line 180, app/assets/stylesheets/_media-768.scss */
  html body a.nav-back:focus, html body a.nav-back:hover {
    background-color: #0077C8;
    color: #fff;
    border-radius: 8px;
  }
  /* line 185, app/assets/stylesheets/_media-768.scss */
  html body a.nav-back:focus i, html body a.nav-back:hover i {
    background-position: -30px -210px;
  }
  /* line 188, app/assets/stylesheets/_media-768.scss */
  html body .img-agenda-kids-mobile {
    max-width: 325px;
    min-height: 260px;
    margin-top: 30px;
  }
  /* line 193, app/assets/stylesheets/_media-768.scss */
  html body .home .footer {
    padding: 20px;
  }
  /* line 196, app/assets/stylesheets/_media-768.scss */
  html body .store-links {
    padding-top: 20px;
  }
  /* line 199, app/assets/stylesheets/_media-768.scss */
  html body .area-login {
    margin-bottom: 0;
    background-color: #FBFBFB;
  }
  /* line 203, app/assets/stylesheets/_media-768.scss */
  html body #user_remember_me {
    margin-left: 3px;
  }
  @-webkit-keyframes spin {
    0% {
      -webkit-transform: rotate(0deg);
    }
    100% {
      -webkit-transform: rotate(360deg);
    }
  }
  @keyframes spin {
    0% {
      -webkit-transform: rotate(0deg);
              transform: rotate(0deg);
    }
    100% {
      -webkit-transform: rotate(360deg);
              transform: rotate(360deg);
    }
  }
  /* line 221, app/assets/stylesheets/_media-768.scss */
  html body .col-plantao,
  html body .col-agenda {
    padding-top: 10px;
    margin-left: 0;
  }
  /* line 226, app/assets/stylesheets/_media-768.scss */
  html body .col-plantao:before {
    background-position: -145px -297px;
    top: 18px;
  }
  /* line 230, app/assets/stylesheets/_media-768.scss */
  html body .col-agenda:before {
    background-position: -234px -297px;
    top: 18px;
  }
  /* line 234, app/assets/stylesheets/_media-768.scss */
  html body .col-plantao h3,
  html body .col-agenda h3 {
    padding: 15px 10px 10px 9px;
  }
  /* line 238, app/assets/stylesheets/_media-768.scss */
  html body .col-plantao {
    padding-bottom: 0;
  }
  /* line 241, app/assets/stylesheets/_media-768.scss */
  html body .form-control {
    font-size: 12pt;
  }
  /* line 244, app/assets/stylesheets/_media-768.scss */
  html body .ann-status-and-time-line {
    padding-left: 15px;
    margin-top: -30.5px;
  }
  /* line 248, app/assets/stylesheets/_media-768.scss */
  html body .msg-stats {
    margin-bottom: 7.5px;
  }
  /* line 252, app/assets/stylesheets/_media-768.scss */
  html body .paginator {
    text-align: center;
  }
  /* line 256, app/assets/stylesheets/_media-768.scss */
  html body a:hover {
    color: #0077C8;
  }
}

/* media query 480 */
/* line 131, app/assets/stylesheets/_variables.scss */
.card-material .display-block {
  display: block;
}

@media (max-width: 480px) {
  /* line 5, app/assets/stylesheets/_media-480.scss */
  .img-mobile-os-brands {
    margin: auto;
    float: none;
    display: block !important;
  }
  /* line 10, app/assets/stylesheets/_media-480.scss */
  .img-agenda-kids-mobile {
    margin-top: 0;
  }
  /* line 13, app/assets/stylesheets/_media-480.scss */
  .publi, .app-advertise-text {
    text-align: center;
  }
  /* line 16, app/assets/stylesheets/_media-480.scss */
  .event-list-header ul li a {
    margin: 0;
  }
  /* line 19, app/assets/stylesheets/_media-480.scss */
  .dropdown.open .dropdown-toggle {
    color: #fff;
    background-color: #0077C8;
    border-radius: 0;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
    -webkit-transition: 0.2s background ease-out;
    transition: 0.2s background ease-out;
  }
  /* line 26, app/assets/stylesheets/_media-480.scss */
  .dropdown-menu > li > a {
    padding: 5px 10px;
  }
  /* line 29, app/assets/stylesheets/_media-480.scss */
  .open > .dropdown-menu {
    padding: 10px 0;
  }
  /* line 32, app/assets/stylesheets/_media-480.scss */
  .dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {
    background-image: none;
  }
  /* line 35, app/assets/stylesheets/_media-480.scss */
  .menu ul li a {
    padding: 13px 15px 13px 30px;
    margin-left: 0;
  }
  /* line 39, app/assets/stylesheets/_media-480.scss */
  .dropdown-menu {
    background-color: #fcfcfc;
  }
  /* line 42, app/assets/stylesheets/_media-480.scss */
  .navbar li a, .navbar .dropdown-menu li a {
    font-weight: 500;
  }
  /* line 45, app/assets/stylesheets/_media-480.scss */
  .navbar li a {
    padding: 10px 48px;
  }
  /* line 48, app/assets/stylesheets/_media-480.scss */
  .navbar .col-plantao, .navbar .col-agenda {
    padding: 0;
  }
  /* line 51, app/assets/stylesheets/_media-480.scss */
  .navbar .col-plantao {
    padding-top: 10px;
  }
  /* line 54, app/assets/stylesheets/_media-480.scss */
  .col-plantao h3,
  .col-agenda h3 {
    display: none;
  }
  /* line 58, app/assets/stylesheets/_media-480.scss */
  .navbar {
    padding: 0;
    margin-bottom: 0;
  }
  /* line 62, app/assets/stylesheets/_media-480.scss */
  .col-plantao:before {
    background-position: -145px -297px;
    top: 18px;
  }
  /* line 66, app/assets/stylesheets/_media-480.scss */
  .col-agenda:before {
    background-position: -234px -297px;
    top: 8px;
  }
  /* line 70, app/assets/stylesheets/_media-480.scss */
  .footer {
    text-align: center;
  }
  /* line 73, app/assets/stylesheets/_media-480.scss */
  .recipients-hint {
    width: 75%;
  }
  /* line 76, app/assets/stylesheets/_media-480.scss */
  .event-post-date span {
    display: block;
  }
  /* line 79, app/assets/stylesheets/_media-480.scss */
  .ann-status-and-time-line .ann-date {
    margin-top: -23px !important;
  }
  /* line 82, app/assets/stylesheets/_media-480.scss */
  .file-select {
    clear: both;
    display: block;
  }
}

/* line 3, app/assets/stylesheets/_reports.scss */
.report-list, .report-filter {
  display: table-cell;
  vertical-align: top;
}

/* line 7, app/assets/stylesheets/_reports.scss */
.report-list .field, .report-filter .field {
  font-size: 10pt;
}

/* line 10, app/assets/stylesheets/_reports.scss */
.report-list .field label, .report-filter .field label {
  color: #999;
}

/* line 16, app/assets/stylesheets/_reports.scss */
.report-list {
  padding: 15px;
}

/* line 19, app/assets/stylesheets/_reports.scss */
.report-list .field {
  display: inline-block;
  font-size: 11pt;
  margin-right: 15px;
}

/* line 25, app/assets/stylesheets/_reports.scss */
.report-list table {
  font-size: 9pt;
}

/* line 28, app/assets/stylesheets/_reports.scss */
.report-list table thead {
  color: #999;
  font-size: 8pt;
  word-break: break-word;
}

/* line 33, app/assets/stylesheets/_reports.scss */
.report-list table thead, .report-list table td {
  padding: 8px;
  border-bottom: solid 1px #c6c6c6;
}

/* line 37, app/assets/stylesheets/_reports.scss */
.report-list table tr.even td {
  background-color: #f6f6f6;
}

/* line 46, app/assets/stylesheets/_reports.scss */
.report-list table tr a, .report-list table tr span {
  font-size: 10pt;
  display: inline-block;
  font-size: 10pt;
}

/* line 53, app/assets/stylesheets/_reports.scss */
.report-list table tr a:before, .report-list table tr span:before {
  font-family: 'Plurall';
  display: inline-block;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-right: 10pt;
  color: #555;
  opacity: 0.4;
}

/* line 72, app/assets/stylesheets/_reports.scss */
.report-list table tr.row-class a, .report-list table tr.row-class span {
  margin-left: 10pt;
}

/* line 75, app/assets/stylesheets/_reports.scss */
.report-list table tr.row-class a:before, .report-list table tr.row-class span:before {
  content: "";
}

/* line 72, app/assets/stylesheets/_reports.scss */
.report-list table tr.row-user a, .report-list table tr.row-user span {
  margin-left: 20pt;
}

/* line 75, app/assets/stylesheets/_reports.scss */
.report-list table tr.row-user a:before, .report-list table tr.row-user span:before {
  content: "";
}

/* line 72, app/assets/stylesheets/_reports.scss */
.report-list table tr.row-discipline a, .report-list table tr.row-discipline span {
  margin-left: 30pt;
}

/* line 75, app/assets/stylesheets/_reports.scss */
.report-list table tr.row-discipline a:before, .report-list table tr.row-discipline span:before {
  content: "";
}

/* line 72, app/assets/stylesheets/_reports.scss */
.report-list table tr.row-task a, .report-list table tr.row-task span {
  margin-left: 40pt;
}

/* line 75, app/assets/stylesheets/_reports.scss */
.report-list table tr.row-task a:before, .report-list table tr.row-task span:before {
  content: "";
}

/* line 84, app/assets/stylesheets/_reports.scss */
.report-list table tr.selected td > a {
  font-weight: bold;
}

/* line 87, app/assets/stylesheets/_reports.scss */
.report-list table tr.selected td > a:before {
  font-family: "Plurall";
  content: "\E80A";
  display: inline-block;
}

/* line 99, app/assets/stylesheets/_reports.scss */
.report-filter {
  width: 240px;
}

/* line 102, app/assets/stylesheets/_reports.scss */
.report-filter .card-filter {
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2), 0 1px 1px rgba(0, 0, 0, 0.3);
  background: #fff;
  margin: 15px;
  word-wrap: break-word;
  word-break: break-word;
}

/* line 111, app/assets/stylesheets/_reports.scss */
.report-filter .card-filter label {
  font-size: 9pt;
}

/* line 115, app/assets/stylesheets/_reports.scss */
.report-filter .card-filter .field {
  display: block;
  margin-bottom: 10px;
  padding: 0;
}

/* line 120, app/assets/stylesheets/_reports.scss */
.report-filter .card-filter .field:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

/* line 128, app/assets/stylesheets/_reports.scss */
.report-filter .card-filter .field #lessons_selected_list {
  margin-left: 10px;
  margin-bottom: 10px;
  font-size: 12px;
}

/* line 134, app/assets/stylesheets/_reports.scss */
.report-filter .card-filter .field #tasks_dropdown_label {
  display: none;
}

/* line 137, app/assets/stylesheets/_reports.scss */
.report-filter .card-filter .field #tasks_dropdown_label.label-active {
  display: block;
}

/* line 142, app/assets/stylesheets/_reports.scss */
.report-filter .card-filter .field #selected_tasks_dropdown {
  height: 250px;
  overflow: scroll;
  border: 1px solid #cecece;
  padding: 10px;
  margin-bottom: 10px;
  display: none;
}

/* line 150, app/assets/stylesheets/_reports.scss */
.report-filter .card-filter .field #selected_tasks_dropdown li {
  list-style-type: none;
  border-bottom: 1px solid #eaeaea;
  margin-bottom: 5px;
  padding-bottom: 5px;
}

/* line 156, app/assets/stylesheets/_reports.scss */
.report-filter .card-filter .field #selected_tasks_dropdown li:last-of-type {
  border: none;
}

/* line 160, app/assets/stylesheets/_reports.scss */
.report-filter .card-filter .field #selected_tasks_dropdown.dropdown-active {
  display: block;
}

/* line 168, app/assets/stylesheets/_reports.scss */
#didactic_material_ids option {
  overflow-wrap: break-word;
  word-wrap: break-word;
  white-space: pre-wrap;
}

/* line 199, app/assets/stylesheets/_reports.scss */
.discipline-fisica {
  background-position: 0px 0;
}

/* line 199, app/assets/stylesheets/_reports.scss */
.discipline-portugues {
  background-position: -72px 0;
}

/* line 199, app/assets/stylesheets/_reports.scss */
.discipline-geografia {
  background-position: -144px 0;
}

/* line 199, app/assets/stylesheets/_reports.scss */
.discipline-historia {
  background-position: -216px 0;
}

/* line 199, app/assets/stylesheets/_reports.scss */
.discipline-biologia {
  background-position: -288px 0;
}

/* line 199, app/assets/stylesheets/_reports.scss */
.discipline-quimica {
  background-position: -360px 0;
}

/* line 199, app/assets/stylesheets/_reports.scss */
.discipline-most-search {
  background-position: -432px 0;
}

/* line 199, app/assets/stylesheets/_reports.scss */
.discipline-matematica {
  background-position: -504px 0;
}

/* line 199, app/assets/stylesheets/_reports.scss */
.discipline-ingles {
  background-position: -576px 0;
}

/* line 199, app/assets/stylesheets/_reports.scss */
.discipline-espanhol {
  background-position: -648px 0;
}

/* line 199, app/assets/stylesheets/_reports.scss */
.discipline-filosofia {
  background-position: -720px 0;
}

/* line 211, app/assets/stylesheets/_reports.scss */
.report-view .report-list ul {
  list-style: none;
}

/* line 214, app/assets/stylesheets/_reports.scss */
.report-view .report-list ul li {
  display: inline-block;
  margin-right: 15px;
}

/* line 217, app/assets/stylesheets/_reports.scss */
.report-view .report-list ul li a {
  display: block;
  padding: 15px;
  margin-bottom: 6px;
  background-color: #f9f9f9;
  font-weight: normal;
  text-align: center;
  width: 180px;
  height: 180px;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2), 0 1px 1px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

/* line 230, app/assets/stylesheets/_reports.scss */
.report-view .report-list ul li a:focus {
  outline: none;
}

/* line 233, app/assets/stylesheets/_reports.scss */
.report-view .report-list ul li a:hover {
  background-color: #fff;
}

/* line 237, app/assets/stylesheets/_reports.scss */
.report-view .report-list ul li a strong {
  display: block;
  color: #333;
  font-weight: normal;
}

/* line 242, app/assets/stylesheets/_reports.scss */
.report-view .report-list ul li a span {
  font-size: 11pt;
  color: #999;
}

/* line 246, app/assets/stylesheets/_reports.scss */
.report-view .report-list ul li a span.ic-user {
  display: block;
  border-radius: 50%;
  height: 80px;
  width: 80px;
  background-color: #f6f6f6;
  margin: 15px auto;
  position: relative;
}

/* line 255, app/assets/stylesheets/_reports.scss */
.report-view .report-list ul li a span.ic-user:after {
  content: "\e804";
  font-family: "Plurall";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #999;
  font-size: 40px;
  padding-top: 8px;
  left: 26px;
  position: absolute;
}

/* line 273, app/assets/stylesheets/_reports.scss */
.report-view .report-list table thead td {
  word-break: normal;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 1px;
  border: 1px solid #cecece;
  background: #ffffff;
  color: #34495e;
  width: 14%;
}

/* line 284, app/assets/stylesheets/_reports.scss */
.report-view .report-list table thead td:first-child {
  width: 20%;
}

/* line 287, app/assets/stylesheets/_reports.scss */
.report-view .report-list table thead td:nth-child(2) {
  width: 10%;
}

/* line 291, app/assets/stylesheets/_reports.scss */
.report-view .report-list table td {
  border: 1px solid #cecece;
}

/* line 295, app/assets/stylesheets/_reports.scss */
.report-view .report-list table tr td:first-of-type {
  width: 170px;
  font-weight: bold;
}

/* line 309, app/assets/stylesheets/_reports.scss */
.report-view-student {
  padding: 15px;
}

/* line 312, app/assets/stylesheets/_reports.scss */
.report-view-student h2 {
  color: #888;
  margin-bottom: 10px;
}

/* line 317, app/assets/stylesheets/_reports.scss */
.report-view-student .progressbar-text {
  font-size: 28pt;
  font-weight: 300;
}

/* line 320, app/assets/stylesheets/_reports.scss */
.report-view-student .progressbar-text:after {
  content: '%';
}

/* line 325, app/assets/stylesheets/_reports.scss */
.report-view-student .graphic-aproveitamento {
  display: block;
  height: 200px;
  text-align: center;
  margin-bottom: 20px;
}

/* line 331, app/assets/stylesheets/_reports.scss */
.report-view-student .graphic-aproveitamento svg {
  width: 210px;
}

@media (min-width: 768px) and (max-width: 1024px) {
  /* line 331, app/assets/stylesheets/_reports.scss */
  .report-view-student .graphic-aproveitamento svg {
    width: auto;
  }
}

/* line 339, app/assets/stylesheets/_reports.scss */
.report-view-student .graphic-title {
  display: block;
  margin-bottom: 40px;
  text-align: center;
  font-size: 13pt;
}

/* line 346, app/assets/stylesheets/_reports.scss */
.report-view-student .report-content {
  background-color: #fff;
  padding: 30px 23px;
}

@media (max-width: 414px) {
  /* line 346, app/assets/stylesheets/_reports.scss */
  .report-view-student .report-content {
    padding-bottom: 0;
  }
}

/* line 354, app/assets/stylesheets/_reports.scss */
.report-view-student .report-content > .num-stats {
  padding: 10px 0 !important;
}

/* line 358, app/assets/stylesheets/_reports.scss */
.report-view-student .report-content h2 {
  padding: 0;
  font-size: 12pt;
  font-weight: 400;
}

/* line 364, app/assets/stylesheets/_reports.scss */
.report-view-student .report-content .highlight-line {
  display: inline-block;
  width: 100%;
}

/* line 369, app/assets/stylesheets/_reports.scss */
.report-view-student .report-content .highlight-description {
  font-size: 11pt;
  color: #999;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}

/* line 376, app/assets/stylesheets/_reports.scss */
.report-view-student .report-content .highlight-separator {
  display: table-cell;
  width: 1px;
  padding: 1px !important;
  background-color: #eee;
}

@media (max-width: 767px) {
  /* line 376, app/assets/stylesheets/_reports.scss */
  .report-view-student .report-content .highlight-separator {
    display: none !important;
  }
}

/* line 386, app/assets/stylesheets/_reports.scss */
.report-view-student .report-content .graphic-icon {
  background-image: url(/assets/ic-sprite-content-type-3x-745a7d2e8e3d521f66b4a59f558610891248e2e25e7e4cf2a6474ca579ddbd9d.png);
  background-size: auto 110px;
  background-repeat: no-repeat;
  height: 110px;
  left: -55px;
  margin-left: 50%;
  top: 60px;
  position: absolute;
  width: 110px;
}

/* line 398, app/assets/stylesheets/_reports.scss */
.report-view-student .report-content .highlight-icon {
  display: block;
  width: 72px;
  height: 72px;
  margin: 0 auto 10px auto;
  background-image: url(/assets/ic-sprite-disciplinas-3x-8d5fa00006d5f71efb98bca65c524ed1656693a6f19c59fb505d9f116c5cb93b.png);
  background-size: auto 72px;
  background-repeat: no-repeat;
}

/* line 409, app/assets/stylesheets/_reports.scss */
.report-view-student .report-content .highlight-icon.top-badge:before {
  content: "";
  display: block;
  border-radius: 20px;
  background-color: #aaa;
}

/* line 416, app/assets/stylesheets/_reports.scss */
.report-view-student .report-content .highlight-icon.top-badge:after {
  content: "\f005";
  font-family: "Plurall";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #fff;
  font-size: 22px;
  margin-top: 5px;
}

/* line 425, app/assets/stylesheets/_reports.scss */
.report-view-student .report-content .highlight-icon.top-badge:before, .report-view-student .report-content .highlight-icon.top-badge:after {
  position: absolute;
  top: 40px;
  left: 50%;
  margin-left: -20px;
  height: 40px;
  width: 40px;
}

/* line 435, app/assets/stylesheets/_reports.scss */
.report-view-student .report-content .highlight-line, .report-view-student .report-content .highlight {
  font-size: 13pt;
  position: relative;
}

/* line 439, app/assets/stylesheets/_reports.scss */
.report-view-student .report-content .highlight-line {
  padding: 15px 5px;
}

/* line 442, app/assets/stylesheets/_reports.scss */
.report-view-student .report-content .highlight-line .col {
  display: inline-table;
  margin-right: 15px;
  border-right: 1px solid #eaeaea;
  padding-right: 20px;
}

/* line 449, app/assets/stylesheets/_reports.scss */
.report-view-student .report-content .highlight-line .col:last-of-type {
  border: none;
}

@media (max-width: 767px) {
  /* line 442, app/assets/stylesheets/_reports.scss */
  .report-view-student .report-content .highlight-line .col {
    display: inline-table;
    margin-right: 15px;
    border-right: none;
    border-bottom: 3px solid #eaeaea;
    padding-right: 0px;
    width: 100%;
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
  /* line 463, app/assets/stylesheets/_reports.scss */
  .report-view-student .report-content .highlight-line .col .highlight-line-content {
    width: 80%;
  }
}

@media (min-width: 768px) {
  /* line 442, app/assets/stylesheets/_reports.scss */
  .report-view-student .report-content .highlight-line .col {
    width: 30%;
  }
}

/* line 472, app/assets/stylesheets/_reports.scss */
.report-view-student .report-content .highlight-line .num-percent strong {
  font-size: 40pt;
}

/* line 477, app/assets/stylesheets/_reports.scss */
.report-view-student .report-content .highlight-line .highlight {
  display: table-cell;
  margin-bottom: 40px;
  text-align: center;
  float: left;
  overflow: auto;
  border: 1px solid #eaeaea;
  margin-right: 1%;
  border-radius: 15px;
  padding: 20px;
}

/* line 488, app/assets/stylesheets/_reports.scss */
.report-view-student .report-content .highlight-line .highlight:first-of-type {
  padding-bottom: 31px;
  width: 99%;
}

@media (min-width: 320px) {
  /* line 477, app/assets/stylesheets/_reports.scss */
  .report-view-student .report-content .highlight-line .highlight {
    padding: 10px;
    border-radius: 5px;
  }
}

@media (min-width: 360px) {
  /* line 477, app/assets/stylesheets/_reports.scss */
  .report-view-student .report-content .highlight-line .highlight {
    left: 0px;
    padding: 30px;
  }
}

@media (min-width: 412px) and (max-width: 414px) {
  /* line 477, app/assets/stylesheets/_reports.scss */
  .report-view-student .report-content .highlight-line .highlight {
    padding: 30px 50px;
  }
}

@media (max-width: 414px) {
  /* line 477, app/assets/stylesheets/_reports.scss */
  .report-view-student .report-content .highlight-line .highlight {
    margin-right: 2px;
  }
}

@media (min-width: 768px) {
  /* line 477, app/assets/stylesheets/_reports.scss */
  .report-view-student .report-content .highlight-line .highlight {
    padding: 30px 46px;
  }
  /* line 507, app/assets/stylesheets/_reports.scss */
  .report-view-student .report-content .highlight-line .highlight:first-of-type {
    padding: 45px 265px 0;
  }
}

/* line 514, app/assets/stylesheets/_reports.scss */
.report-view-student .report-content .highlight-line .highlight-icon {
  display: inline-block;
  margin: 0;
}

/* line 519, app/assets/stylesheets/_reports.scss */
.report-view-student .report-content .highlight-line .highlight-line-content {
  display: table-cell;
  padding-top: 10px;
  padding-left: 10px;
  vertical-align: top;
  line-height: 1em;
}

/* line 526, app/assets/stylesheets/_reports.scss */
.report-view-student .report-content .highlight-line .highlight-line-content strong {
  font-size: 18pt;
  font-weight: 400;
  letter-spacing: -0.01em;
  display: block;
  line-height: 1.3em;
}

/* line 536, app/assets/stylesheets/_reports.scss */
.report-view-student .report-content .highlight {
  padding: 10px;
  vertical-align: top;
}

/* line 540, app/assets/stylesheets/_reports.scss */
.report-view-student .report-content .highlight strong {
  font-size: 28pt;
  font-weight: 300;
  display: inline;
}

/* line 545, app/assets/stylesheets/_reports.scss */
.report-view-student .report-content .highlight strong small {
  font-size: 13pt;
  margin-left: 3px;
}

/* line 551, app/assets/stylesheets/_reports.scss */
.report-view-student .report-content .highlight span {
  display: block;
}

/* line 555, app/assets/stylesheets/_reports.scss */
.report-view-student .report-content .highlight.discipline-more, .report-view-student .report-content .highlight.discipline-less {
  display: inline-block;
  padding-top: 110px;
  width: 49%;
}

@media (max-width: 767px) {
  /* line 555, app/assets/stylesheets/_reports.scss */
  .report-view-student .report-content .highlight.discipline-more, .report-view-student .report-content .highlight.discipline-less {
    display: inline-block;
    width: 49%;
    padding-left: 0;
    padding-right: 0;
    left: 3px;
  }
}

/* line 571, app/assets/stylesheets/_reports.scss */
.report-view-student .report-content .highlight.discipline-more .highlight-icon:before {
  background-color: #5FA35C;
}

/* line 574, app/assets/stylesheets/_reports.scss */
.report-view-student .report-content .highlight.discipline-more .highlight-icon:after {
  content: "\f005";
}

/* line 581, app/assets/stylesheets/_reports.scss */
.report-view-student .report-content .highlight.discipline-less .highlight-icon:before {
  background-color: #ff635f;
}

/* line 584, app/assets/stylesheets/_reports.scss */
.report-view-student .report-content .highlight.discipline-less .highlight-icon:after {
  content: "\f12a";
}

/* line 594, app/assets/stylesheets/_reports.scss */
.report-view-student .topbar a.btn {
  border: 0;
}

/* line 602, app/assets/stylesheets/_reports.scss */
.report-view-student .topbar .title {
  padding: 20px;
}

/* line 605, app/assets/stylesheets/_reports.scss */
.report-view-student .topbar .title h1 {
  padding: 0 0 10px;
}

/* line 609, app/assets/stylesheets/_reports.scss */
.report-view-student .topbar .title h2 {
  font-size: 13pt;
  font-weight: 300;
  padding: 0;
  margin-bottom: 0;
}

@media (max-width: 320px) {
  /* line 618, app/assets/stylesheets/_reports.scss */
  .report-view-student .topbar .options ƒ a {
    margin: 0;
    padding: 8px 15px;
  }
}

/* line 631, app/assets/stylesheets/_reports.scss */
.report-view-student a.btn-navtab {
  background-color: #f6f6f6;
  color: #0077C8;
  display: inline-block;
  padding: 6pt 4pt;
  margin: 0 1pt;
  width: 64pt;
  font-size: 12pt;
  letter-spacing: -0.02em;
  text-align: center;
}

/* line 642, app/assets/stylesheets/_reports.scss */
.report-view-student a.btn-navtab:hover {
  background-color: #fff;
  box-shadow: 0 -4px 2px rgba(0, 0, 0, 0.04) inset;
}

/* line 647, app/assets/stylesheets/_reports.scss */
.report-view-student a.btn-navtab.navtab-active, .report-view-student a.btn-navtab.navtab-active:hover {
  background-color: #fff;
  color: #999;
}

/* line 1, app/assets/stylesheets/_announcement-report.scss */
.event-description {
  padding-bottom: 20px;
  line-height: 1.2em;
  font-size: 1em;
  color: #777;
  font-weight: 300;
}

/* line 8, app/assets/stylesheets/_announcement-report.scss */
.event-description .event-description-lesson-title {
  color: #5f5ca7;
  font-weight: bold;
}

/* line 12, app/assets/stylesheets/_announcement-report.scss */
.event-description .event-description-lesson-title span {
  padding-left: 10px;
  margin-left: 10px;
  border-left: 2px solid;
}

/* line 18, app/assets/stylesheets/_announcement-report.scss */
.event-description .event-description-lesson-subtitle {
  color: #4a4a4a;
  font-weight: bold;
  text-align: left;
  font-size: 16px;
  margin-bottom: 0px;
}

/* line 25, app/assets/stylesheets/_announcement-report.scss */
.event-description .event-description-lessons {
  overflow: hidden;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  margin-left: -10px;
}

/* line 32, app/assets/stylesheets/_announcement-report.scss */
.event-description .event-description-lesson-right {
  width: 45%;
  background: #e8f8f5;
  text-align: left;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  padding: 5px 0px 30px;
  padding: 35px 0px 70px;
  float: left;
  margin-right: 2%;
}

/* line 45, app/assets/stylesheets/_announcement-report.scss */
.event-description .event-description-lesson-right span {
  display: block;
  font-size: 40px;
  font-weight: bold;
  color: #1abc9c;
  margin-bottom: 10px;
}

/* line 52, app/assets/stylesheets/_announcement-report.scss */
.event-description .event-description-lesson-right small {
  color: #1abc9c;
  font-size: 18px;
  display: block;
  width: 75px;
}

/* line 62, app/assets/stylesheets/_announcement-report.scss */
.event-description .event-description-lesson-wrong {
  width: 45%;
  background: #fcf2e8;
  text-align: left;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  padding: 35px 0px;
  float: right;
}

/* line 73, app/assets/stylesheets/_announcement-report.scss */
.event-description .event-description-lesson-wrong span {
  display: block;
  font-size: 40px;
  font-weight: bold;
  color: #e67e22;
  margin-bottom: 10px;
}

/* line 80, app/assets/stylesheets/_announcement-report.scss */
.event-description .event-description-lesson-wrong small {
  color: #e67e22;
  font-size: 18px;
  display: block;
  width: 90px;
  text-align: center;
}

/* line 1, app/assets/stylesheets/_warning-page.scss */
.warning-page {
  text-align: center;
  background: white;
  padding: 100px 0px;
}

@media (max-width: 414px) {
  /* line 1, app/assets/stylesheets/_warning-page.scss */
  .warning-page {
    padding: 40px 10px;
  }
}

/* line 10, app/assets/stylesheets/_warning-page.scss */
.warning-page h2 {
  color: #798184;
  font-weight: 500;
  font-size: 20pt;
  margin-bottom: 0;
}

@media (max-width: 414px) {
  /* line 10, app/assets/stylesheets/_warning-page.scss */
  .warning-page h2 {
    font-size: 13pt;
  }
}

/* line 20, app/assets/stylesheets/_warning-page.scss */
.warning-page p {
  font-size: 15pt;
  color: #a0a7aa;
  font-weight: 100;
  width: 50%;
  margin: 0 auto;
}

@media (max-width: 414px) {
  /* line 20, app/assets/stylesheets/_warning-page.scss */
  .warning-page p {
    font-size: 13pt;
  }
}

@media (max-width: 414px) {
  /* line 32, app/assets/stylesheets/_warning-page.scss */
  .warning-page h2,
  .warning-page p {
    font-size: 20px;
    width: 100%;
  }
}

/* line 3, app/assets/stylesheets/_ui_style.scss */
.btn-trash {
  display: none;
}

/* line 7, app/assets/stylesheets/_ui_style.scss */
.ui-widget.ui-widget-content {
  border: 1px solid #c5c5c5;
}

/* line 10, app/assets/stylesheets/_ui_style.scss */
.ui-corner-all, .ui-corner-bottom, .ui-corner-right, .ui-corner-br {
  border-bottom-right-radius: 3px;
}

/* line 13, app/assets/stylesheets/_ui_style.scss */
.ui-corner-all, .ui-corner-bottom, .ui-corner-left, .ui-corner-bl {
  border-bottom-left-radius: 3px;
}

/* line 16, app/assets/stylesheets/_ui_style.scss */
.ui-corner-all, .ui-corner-top, .ui-corner-right, .ui-corner-tr {
  border-top-right-radius: 3px;
}

/* line 19, app/assets/stylesheets/_ui_style.scss */
.ui-corner-all, .ui-corner-top, .ui-corner-left, .ui-corner-tl {
  border-top-left-radius: 3px;
}

/* line 22, app/assets/stylesheets/_ui_style.scss */
.ui-widget-content {
  border: 1px solid #dddddd;
  background: #ffffff;
  color: #333333;
}

/* line 27, app/assets/stylesheets/_ui_style.scss */
.ui-dialog {
  width: auto !important;
  position: absolute;
  top: 0;
  left: 0;
  padding: .2em;
  outline: 0;
}

/* line 34, app/assets/stylesheets/_ui_style.scss */
.ui-dialog .ui-dialog-titlebar {
  display: none;
}

/* line 37, app/assets/stylesheets/_ui_style.scss */
.ui-dialog .ui-dialog-content {
  position: relative;
  border: 0;
  padding: .5em 1em;
  background: none;
  overflow: auto;
}

/* line 45, app/assets/stylesheets/_ui_style.scss */
.ui-dialog .ui-dialog-buttonpane {
  text-align: left;
  border-width: 1px 0 0 0;
  background-image: none;
  margin-top: .5em;
  padding: .3em 1em .5em .4em;
}

/* line 53, app/assets/stylesheets/_ui_style.scss */
.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
  float: right;
}

/* line 57, app/assets/stylesheets/_ui_style.scss */
.ui-dialog .ui-dialog-buttonpane button {
  margin: .5em .4em .5em 0;
  cursor: pointer;
}

/* line 63, app/assets/stylesheets/_ui_style.scss */
.ui-front {
  z-index: 100;
}

/* line 67, app/assets/stylesheets/_ui_style.scss */
.ui-widget-header {
  border: 1px solid #dddddd;
  background: #e9e9e9;
  color: #333333;
  font-weight: bold;
}

/* line 73, app/assets/stylesheets/_ui_style.scss */
.ui-draggable-handle {
  touch-action: none;
}

/* line 77, app/assets/stylesheets/_ui_style.scss */
.ui-widget-header {
  border: 1px solid #dddddd;
  background: #e9e9e9;
  color: #333333;
  font-weight: bold;
}

/* line 83, app/assets/stylesheets/_ui_style.scss */
.ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited, a.ui-button, a:link.ui-button, a:visited.ui-button, .ui-button {
  color: #454545;
  text-decoration: none;
}

/* line 87, app/assets/stylesheets/_ui_style.scss */
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active {
  border: 1px solid #c5c5c5;
  background: #f6f6f6;
  font-weight: normal;
  color: #454545;
}

/* line 93, app/assets/stylesheets/_ui_style.scss */
.ui-widget {
  font-family: Arial,Helvetica,sans-serif;
  font-size: 1em;
}

/* line 97, app/assets/stylesheets/_ui_style.scss */
.ui-button-icon-only {
  width: 2em;
  box-sizing: border-box;
  text-indent: -9999px;
  white-space: nowrap;
}

/* line 104, app/assets/stylesheets/_ui_style.scss */
.ui-button, .ui-button:link, .ui-button:visited, .ui-button:hover, .ui-button:active {
  text-decoration: none;
}

/* line 107, app/assets/stylesheets/_ui_style.scss */
.ui-button {
  padding: .4em 1em;
  display: inline-block;
  position: relative;
  line-height: normal;
  margin-right: .1em;
  cursor: pointer;
  vertical-align: middle;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  overflow: visible;
}

/* line 124, app/assets/stylesheets/_ui_style.scss */
.table-footer {
  display: block;
  padding: 15px 0;
  text-align: right;
}

/* line 1, app/assets/stylesheets/_modal-confirm.scss */
.modal-confirm {
  display: none;
  border-radius: 5px;
  text-align: center;
  width: 60%;
  margin: 0 auto;
  position: absolute;
  top: 23%;
  left: 22%;
  background: #fff;
  z-index: 99;
}

/* line 13, app/assets/stylesheets/_modal-confirm.scss */
.modal-confirm p {
  font-size: 14pt;
  font-weight: bold;
  border-bottom: 1px solid #cecece;
  padding: 15px;
}

/* line 19, app/assets/stylesheets/_modal-confirm.scss */
.modal-confirm a {
  font-size: 14pt;
  border: 1px solid #000;
  padding: 11px 25px;
  border-radius: 5px;
  margin-top: 20px;
  display: -webkit-inline-box;
  margin-bottom: 30px;
  color: #000;
}

/* line 29, app/assets/stylesheets/_modal-confirm.scss */
.modal-confirm .yes:hover {
  background: #2ecc71;
  color: #fff;
}

/* line 33, app/assets/stylesheets/_modal-confirm.scss */
.modal-confirm .no {
  background: #34495e;
  color: #fff;
}

/* line 37, app/assets/stylesheets/_modal-confirm.scss */
.modal-confirm .no:hover {
  background: #7f8c8d;
}

/* line 42, app/assets/stylesheets/_modal-confirm.scss */
.modal-confirm.modalActive {
  display: block;
}

@media (max-width: 414px) {
  /* line 1, app/assets/stylesheets/_modal-confirm.scss */
  .modal-confirm {
    width: 80%;
    left: 10%;
    top: 15%;
  }
}

@media (max-width: 320px) {
  /* line 1, app/assets/stylesheets/_modal-confirm.scss */
  .modal-confirm {
    left: 5%;
  }
}

/* line 54, app/assets/stylesheets/_modal-confirm.scss */
.modal-background {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9;
}

/* line 70, app/assets/stylesheets/_application.scss */
h1, h2, h3, h4, .nav a, .message-to-user {
  font-family: sans-serif, Helvetica, Arial;
}

/* line 74, app/assets/stylesheets/_application.scss */
h1, h2, h3, h4, h5, ul, li, ol {
  padding: 0;
  margin: 0;
  font-family: sans-serif, Helvetica, Arial;
  letter-spacing: -0.025em;
}

/* line 81, app/assets/stylesheets/_application.scss */
h1, h2 {
  padding: 0.7em 0;
}

@media (max-width: 767px) {
  /* line 81, app/assets/stylesheets/_application.scss */
  h1, h2 {
    font-size: 17pt;
  }
}

/* line 87, app/assets/stylesheets/_application.scss */
h2 {
  font-weight: 600;
}

/* line 89, app/assets/stylesheets/_application.scss */
h2.title {
  font-weight: normal;
}

/* line 93, app/assets/stylesheets/_application.scss */
a, a:hover {
  text-decoration: none;
}

/* line 97, app/assets/stylesheets/_application.scss */
a:hover {
  background-color: transparent;
  color: #333;
}

/* line 101, app/assets/stylesheets/_application.scss */
body {
  min-width: 300px;
  background-color: #ECECEC;
  color: #333;
  font-size: 11pt;
  font-family: sans-serif, Helvetica, Arial;
}

/* line 108, app/assets/stylesheets/_application.scss */
body .inline {
  display: inline-block;
}

/* line 111, app/assets/stylesheets/_application.scss */
.actions {
  padding: 15px;
}

/* line 115, app/assets/stylesheets/_application.scss */
.actions input, .actions a {
  margin-right: 20px;
}

/* line 119, app/assets/stylesheets/_application.scss */
.home .footer {
  color: #bbb;
  background-color: #fefefe;
  padding: 40px;
  text-align: right;
}

/* line 125, app/assets/stylesheets/_application.scss */
.footer {
  color: #666666;
  border-top: solid 1px #ddd;
  padding: 10px inherit;
  text-align: right;
  padding: 15px 15px 30px 15px;
  font-weight: 400;
  font-size: 0.8em;
  font-family: 'Source Sans Pro',Helvetica,Arial;
}

@media (max-width: 991px) {
  /* line 125, app/assets/stylesheets/_application.scss */
  .footer {
    opacity: 0.7;
    text-align: center;
    border: 0;
  }
  /* line 140, app/assets/stylesheets/_application.scss */
  .footer img {
    max-height: 32px;
  }
}

/* line 145, app/assets/stylesheets/_application.scss */
.footer img {
  margin-left: 6px;
  margin-bottom: -9px;
}

/* line 151, app/assets/stylesheets/_application.scss */
.app-advertise .container {
  padding: 30px;
}

/* line 154, app/assets/stylesheets/_application.scss */
.app-advertise-text {
  padding: 20px 0;
  font-size: 13pt;
}

/* line 158, app/assets/stylesheets/_application.scss */
.app-advertise a {
  display: inline-block;
}

/* line 161, app/assets/stylesheets/_application.scss */
.app-advertise span {
  display: block;
}

/* line 164, app/assets/stylesheets/_application.scss */
.store-links {
  text-align: center;
  padding-top: 40px;
}

/* line 168, app/assets/stylesheets/_application.scss */
.img-mobile-os-brands {
  margin-right: 20px;
  float: left;
  height: 128px;
  width: 187px;
  background-image: url(/assets/img-mobile-os-brands-880d5bc660afdfd1974fc9f3c7b4489252a536c77744e72e7a7095d52602757a.png);
}

/* line 175, app/assets/stylesheets/_application.scss */
.img-mobile-os-brands.google-play {
  background-position: 0 -128px;
  width: 128px;
}

/* line 179, app/assets/stylesheets/_application.scss */
.img-mobile-os-brands.apple {
  background-position: 0 -256px;
  width: 128px;
}

/* line 183, app/assets/stylesheets/_application.scss */
.btn-apple-app-store {
  width: 181px;
  height: 53px;
  background-image: url(/assets/btn-apple-app-store-0627963993fa3a79fdb3176a8a87b5e73083e48f690c74141d693d26a1ac6802.png);
}

/* line 188, app/assets/stylesheets/_application.scss */
.btn-google-play {
  width: 155px;
  height: 54px;
  background-image: url(/assets/btn-google-play-0e50a97c157d39798b0fb1d58bf378279b083a83805d1d7005a680370a83ff9f.png);
}

/* HEADINGS
-----------------------------*/
/* line 196, app/assets/stylesheets/_application.scss */
.area-content h2 {
  margin-top: 30px;
  font-size: 1.6em;
  padding: 0;
  margin-bottom: 10px;
}

/* line 202, app/assets/stylesheets/_application.scss */
.area-content h3 {
  font-weight: 500;
  font-size: 15pt;
  margin-bottom: 0.5em;
}

/* line 207, app/assets/stylesheets/_application.scss */
.content .area-content h3 {
  border-top: solid 1px #ddd;
  padding-top: 30px;
}

/* line 211, app/assets/stylesheets/_application.scss */
.area-content h3 strong {
  font-weight: 900;
}

/* line 214, app/assets/stylesheets/_application.scss */
.edit-bar {
  padding: 0;
}

/* line 217, app/assets/stylesheets/_application.scss */
.edit-bar h2 {
  display: inline-block;
  padding: 15px 30px 0 15px;
}

/* nav-back
-------------------------------*/
/* line 224, app/assets/stylesheets/_application.scss */
.container .nav-back {
  padding: 10px;
  height: 100%;
}

/* line 228, app/assets/stylesheets/_application.scss */
body .nav-back {
  display: inline-block;
  height: 30px;
  padding-left: 28px;
  padding-top: 3px;
  color: #333;
  font-family: 'Lato', sans-serif;
  font-weight: 900;
  font-size: 14pt;
  border-radius: 8px;
  vertical-align: top;
}

/* line 240, app/assets/stylesheets/_application.scss */
body .nav-back:hover {
  color: #999;
  border-radius: 8px;
}

/* line 244, app/assets/stylesheets/_application.scss */
.navbar-form {
  margin-left: 0;
  margin-right: 0;
}

/* line 248, app/assets/stylesheets/_application.scss */
.content {
  background-color: #fff;
  padding: 30px;
  box-shadow: 0 5px 2px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
}

/* line 255, app/assets/stylesheets/_application.scss */
.event-post-date {
  margin-top: -18px;
  margin-left: -30px;
  padding: 4px 6px 4px 100px;
  display: block;
  color: #999;
  font-size: 10pt;
  text-align: right;
}

/* line 267, app/assets/stylesheets/_application.scss */
.event-post-date br {
  display: none;
}

/* line 270, app/assets/stylesheets/_application.scss */
.input-group.date .input-group-addon {
  cursor: pointer;
}

/* line 273, app/assets/stylesheets/_application.scss */
.event-date-info {
  display: block;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 1em;
  border-top: solid 1px #ddd;
}

/* user list */
/* line 282, app/assets/stylesheets/_application.scss */
.user-list {
  list-style: none;
  max-height: 640px;
  overflow: auto;
  margin-top: 15px;
}

/*usr-no-ack*/
/* line 289, app/assets/stylesheets/_application.scss */
.user-list li a {
  font-weight: 500;
  padding: 4px 4px 4px 24px;
  display: inline-block;
  position: relative;
}

/* line 295, app/assets/stylesheets/_application.scss */
a.usr-msg i,
a.usr-ack i,
a.usr-no-ack i,
.user-list li.usr-msg a::before,
.user-list li a i {
  background-image: url(/assets/ic-sprite-3x-db16281df5dbce37cb0155679d57b11b974704bed104a7345e74f1451eefecee.png);
  background-size: 380px auto;
  height: 20px;
  width: 20px;
  display: inline-block;
  background-position: -100px -360px;
  vertical-align: top;
  margin-right: 10px;
  border-radius: 4px;
}

/* line 310, app/assets/stylesheets/_application.scss */
.user-list li.usr-msg a::before {
  content: 'Mensagens';
  display: block;
  position: absolute;
  background-position: -240px -359px;
  overflow: hidden;
  text-indent: 40px;
  left: 0;
}

/* line 319, app/assets/stylesheets/_application.scss */
a.usr-msg i {
  display: inline-block;
  position: relative;
  margin-right: 10px;
}

/* line 324, app/assets/stylesheets/_application.scss */
a.usr-msg i,
.user-list li.usr-msg.new-msg a::before {
  background-position: -260px -359px;
}

/* line 328, app/assets/stylesheets/_application.scss */
a.usr-ack i,
.user-list li.usr-ack a i {
  background-position: -120px -360px;
}

/* line 332, app/assets/stylesheets/_application.scss */
html body a.read i,
html body .user-list li.read a i {
  background-size: auto 80px;
  background-image: url(/assets/ic-sprite-ann-status-3x-70099bb5b180634feab3026a9019db3e21a36d656430fbf9553af74f0f164864.png);
  background-position: -80px 0;
  background-color: #0077C8;
}

/*  */
/* line 341, app/assets/stylesheets/_application.scss */
.user-welcome {
  padding: 0.5em 1em;
  border: solid 1px #ddd;
  border-radius: 5px;
  color: #666;
  margin-top: 10px;
}

/* LOGIN */
/* line 351, app/assets/stylesheets/_application.scss */
.area-login {
  padding: 20px 20px 10px;
  background-color: #eee;
  margin-bottom: 20px;
}

/* line 356, app/assets/stylesheets/_application.scss */
#user_remember_me {
  margin-left: 20px;
}

/* line 359, app/assets/stylesheets/_application.scss */
.area-login .form-group {
  vertical-align: inherit;
}

/* line 362, app/assets/stylesheets/_application.scss */
.form-control {
  padding: 10px 15px;
  height: 100%;
}

/* line 366, app/assets/stylesheets/_application.scss */
.form-textarea {
  min-height: 110px;
}

/* line 369, app/assets/stylesheets/_application.scss */
.sign-up {
  margin-left: 15px;
}

/* line 372, app/assets/stylesheets/_application.scss */
.publi {
  padding: 40px 30px 30px;
}

/* line 375, app/assets/stylesheets/_application.scss */
.publi h1 {
  color: #0077C8;
}

/* line 378, app/assets/stylesheets/_application.scss */
.publi h1, .publi h2 {
  padding-bottom: 20px;
}

/* line 381, app/assets/stylesheets/_application.scss */
.app-advertise {
  background-color: #FBFBFB;
}

/* Form */
/* line 386, app/assets/stylesheets/_application.scss */
#selected_recipients {
  background-color: #F7F7F7;
  padding: 5px;
  margin-top: 5px;
  min-height: 115px;
}

/* line 392, app/assets/stylesheets/_application.scss */
#selected_recipients span {
  display: inline-block;
  padding: 5px 22px 5px 7px;
  background-color: #FFFFBF;
  color: #666;
  font-size: 13px;
  margin-right: 2px;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
  cursor: default;
  position: relative;
}

/* line 403, app/assets/stylesheets/_application.scss */
#selected_recipients span i {
  display: block;
  width: 16px;
  height: 16px;
  background-image: url(/assets/ic-sprite-7975d9859b417a8cfc6ffbeb0f7702272e35b27cab20ece0582882ad3ef63f76.png);
  background-position: -36px -307px;
  margin-left: 2px;
  position: absolute;
  right: 4px;
  top: 6px;
  cursor: pointer;
}

/* line 415, app/assets/stylesheets/_application.scss */
.recipients-hint {
  display: block;
  padding: 20px 10px 20px 10px;
  margin-left: 60px;
  color: #999;
  font-size: 15px;
  width: 50%;
}

/* line 423, app/assets/stylesheets/_application.scss */
.selected_recipient ~ .recipients-hint {
  display: none !important;
}

/* line 426, app/assets/stylesheets/_application.scss */
.recipients-hint i {
  display: block;
  height: 40px;
  width: 40px;
  background-image: url(/assets/ic-sprite-7975d9859b417a8cfc6ffbeb0f7702272e35b27cab20ece0582882ad3ef63f76.png);
  background-position: -100px -200px;
  position: absolute;
  margin-left: -44px;
  margin-top: 3px;
}

/* line 436, app/assets/stylesheets/_application.scss */
html .form-inline .form-control {
  display: block;
}

/* Evento OK Counter */
/* line 442, app/assets/stylesheets/_application.scss */
.event-ok-counter {
  font-size: 1.5em;
  vertical-align: top;
  margin-top: 25px;
}

/* line 447, app/assets/stylesheets/_application.scss */
.event-ok-counter strong {
  vertical-align: top;
}

/* line 450, app/assets/stylesheets/_application.scss */
.event-ok-counter span {
  font-size: 11pt;
}

/* line 453, app/assets/stylesheets/_application.scss */
.event-ok-counter i.icon {
  margin-top: -10px;
  margin-right: 10px;
}

/* line 457, app/assets/stylesheets/_application.scss */
.event-ok-counter .event-ok-numbers {
  display: inline-block;
  font-size: 16pt;
  vertical-align: top;
  margin-top: 10px;
}

/* line 463, app/assets/stylesheets/_application.scss */
.event-date {
  margin-right: 20px;
}

/* line 466, app/assets/stylesheets/_application.scss */
.event-date-time-begin, .event-date-time-end,
.event-date-time, .event-date {
  display: inline-block;
  vertical-align: top;
}

/* line 471, app/assets/stylesheets/_application.scss */
.event-date-end, .event-date-begin {
  display: block;
  vertical-align: text-top;
}

/* line 475, app/assets/stylesheets/_application.scss */
.event-date-end, .event-date-begin, .event-date-time {
  margin-top: 5px;
}

/* line 480, app/assets/stylesheets/_application.scss */
.event-description a, .event-description p {
  word-break: break-word;
}

/* line 484, app/assets/stylesheets/_application.scss */
.event-description span.parameter {
  font-weight: 900;
}

/* line 488, app/assets/stylesheets/_application.scss */
.event-description span.marker {
  background-color: yellow;
}

/* line 492, app/assets/stylesheets/_application.scss */
.event-description ul {
  margin-left: 1em;
}

/* line 494, app/assets/stylesheets/_application.scss */
.event-description ul li {
  font-weight: normal;
}

/* line 501, app/assets/stylesheets/_application.scss */
.msg-stats {
  padding: 4px 15px 0 0;
  font-size: 11pt;
  display: inline-block;
  min-height: 38px;
  margin: 10px 10px 10px 0;
  color: #777;
}

/* line 510, app/assets/stylesheets/_application.scss */
.msg-stats-read i, .msg-stats-acknowledge i {
  display: inline-block;
  height: 38px;
  width: 38px;
  border-radius: 19px;
  margin-bottom: -14px;
  margin-right: 5px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2), inset 0 0px 3px rgba(255, 255, 255, 0.5);
  background-image: url(/assets/ic-sprite-ann-status-3x-70099bb5b180634feab3026a9019db3e21a36d656430fbf9553af74f0f164864.png);
  background-size: 570px auto;
  background-color: #ddd;
}

/* line 523, app/assets/stylesheets/_application.scss */
.msg-stats-read i {
  background-position: 0 0;
}

/* line 526, app/assets/stylesheets/_application.scss */
.msg-stats-acknowledge span {
  display: block;
  margin-top: 10px;
}

/* line 530, app/assets/stylesheets/_application.scss */
.msg-stats-acknowledge i {
  background-position: -190px 0;
}

/* line 533, app/assets/stylesheets/_application.scss */
.msg-stats-read i.msg-stats-read-ok {
  background-position: -152px 0;
  background-color: #0077C8;
}

/* line 537, app/assets/stylesheets/_application.scss */
.msg-stats-acknowledge i.msg-stats-acknowledge-ok {
  background-color: #85B200;
}

/* line 540, app/assets/stylesheets/_application.scss */
.msg-stats-acknowledge i.msg-stats-acknowledge-ok,
.msg-stats-read i.msg-stats-read-ok {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3), inset 0 0px 3px rgba(255, 255, 255, 0.5);
}

/* line 546, app/assets/stylesheets/_application.scss */
.btn-icon i {
  width: 0;
  -webkit-transition: width 0.1s ease-out 0.3s, background-image 0.5s ease-out 0.8s;
  transition: width 0.1s ease-out 0.3s, background-image 0.5s ease-out 0.8s;
}

/* line 547, app/assets/stylesheets/_application.scss */
.btn-icons.msg-stats-acknowledge i {
  background-position: -133px 0;
}

/* line 550, app/assets/stylesheets/_application.scss */
.btn-icons.msg-stats-read i, .btn-icons.msg-stats-acknowledge i {
  height: 26.6px;
  width: 26.6px;
  border-radius: 13.3px;
  margin-bottom: -8px;
  margin-right: 0;
  margin-left: 5px;
  background-size: 399px auto;
  border-bottom: 0;
  background-color: #85B200;
  box-shadow: none;
  -webkit-transition: width 0.1s ease-out 0.3s, background-image 0.5s ease-out 0.8s;
  transition: width 0.1s ease-out 0.3s, background-image 0.5s ease-out 0.8s;
}

/* line 565, app/assets/stylesheets/_application.scss */
.acknowledge-ok {
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  padding: 10px 15px;
  font-size: 13pt;
  font-weight: 500;
  border: 0;
  background-color: #FAFAFA;
  color: #666;
  cursor: default;
  display: inline-block;
}

/* line 577, app/assets/stylesheets/_application.scss */
.announcement-user {
  margin: 20px -30px -30px;
  background-color: #f5f5f5;
  padding: 30px;
  display: block;
  box-shadow: inset 0 5px 5px rgba(0, 0, 0, 0.15);
}

/* line 584, app/assets/stylesheets/_application.scss */
.announcement-user span {
  display: inline-block;
}

/* line 587, app/assets/stylesheets/_application.scss */
.announcement-user h4 {
  font-weight: 600;
}

/* line 590, app/assets/stylesheets/_application.scss */
.home #content-container {
  padding-bottom: 0;
}

@media (min-width: 992px) {
  /* line 593, app/assets/stylesheets/_application.scss */
  #content-container {
    padding-bottom: 40px;
  }
}

/* EVENT LIST
-----------------------------*/
/*.area-content,
.area-event-list {
  overflow: auto;
}*/
/* line 605, app/assets/stylesheets/_application.scss */
.event-list.hide-all .ann-label,
.event-list .hide-item {
  display: none;
}

/* line 609, app/assets/stylesheets/_application.scss */
.event-list .show-alert,
.event-list .show-student,
.event-list .show-info,
.event-list .show-flag,
.event-list .show-message,
.event-list .show-sent {
  display: inherit !important;
}

/* line 618, app/assets/stylesheets/_application.scss */
.event-list-message {
  display: block;
  text-align: center;
  border-radius: 4px;
  border: solid 1px #ddd;
  height: 130px;
  padding-top: 50px;
  color: #999;
}

/* line 628, app/assets/stylesheets/_application.scss */
.event-list-header {
  display: block;
  /*border-bottom: 2px solid #ddd;*/
  margin-top: 5px;
  text-align: right;
}

/* line 634, app/assets/stylesheets/_application.scss */
.event-list-header ul li {
  display: inline-block;
  list-style: none;
}

/* line 638, app/assets/stylesheets/_application.scss */
.event-list-header ul li a {
  display: block;
  height: 38px;
  width: 38px;
  margin: 3px;
  background-image: url(/assets/ic-sprite-filter-a7a1ee0603ea08061547ca8b252939ad18e74273c49e9f04f3dba6e65e0787dc.png);
  background-position: 0 0;
  cursor: pointer;
}

/* line 647, app/assets/stylesheets/_application.scss */
.event-list-header ul li.divider {
  width: 2px;
  background-color: #ddd;
  display: inline-block;
  height: 44px;
  margin-left: 5px;
  margin-right: 5px;
}

/* line 659, app/assets/stylesheets/_application.scss */
.event-list-header a.status-shape-alert {
  background-position: 0 0;
}

/* line 662, app/assets/stylesheets/_application.scss */
.event-list-header a.status-shape-student {
  background-position: -38px 0;
}

/* line 665, app/assets/stylesheets/_application.scss */
.event-list-header a.status-shape-info {
  background-position: -76px 0;
}

/* line 668, app/assets/stylesheets/_application.scss */
.event-list-header a.status-shape-flag {
  background-position: -114px 0;
}

/* line 671, app/assets/stylesheets/_application.scss */
.event-list-header a.status-shape-messages {
  background-position: -152px 0;
}

/* line 674, app/assets/stylesheets/_application.scss */
.event-list-header a.status-shape-received {
  background-position: -190px 0;
}

/* selected */
/* line 678, app/assets/stylesheets/_application.scss */
.event-list-header a.status-shape-alert.selected {
  background-position: 0 -38px;
}

/* line 681, app/assets/stylesheets/_application.scss */
.event-list-header a.status-shape-student.selected {
  background-position: -38px -38px;
}

/* line 684, app/assets/stylesheets/_application.scss */
.event-list-header a.status-shape-info.selected {
  background-position: -76px -38px;
}

/* line 687, app/assets/stylesheets/_application.scss */
.event-list-header a.status-shape-flag.selected {
  background-position: -114px -38px;
}

/* line 690, app/assets/stylesheets/_application.scss */
.event-list-header a.status-shape-messages.selected {
  background-position: -152px -38px;
}

/* line 693, app/assets/stylesheets/_application.scss */
.event-list-header a.status-shape-received.selected {
  background-position: -190px -38px;
}

/* line 697, app/assets/stylesheets/_application.scss */
ul.event-list {
  list-style: none;
  padding-top: 20px;
  margin-left: -15px;
  margin-right: -15px;
}

/* line 705, app/assets/stylesheets/_application.scss */
.col-event-content.status-draft {
  padding: 15px;
  background-color: #f6e8c8;
  border: dashed 2px #c4901f;
  border-radius: 15px;
  margin-top: 15px;
}

/* line 711, app/assets/stylesheets/_application.scss */
.col-event-content.status-draft .actions {
  padding: 15px 0 0 0;
}

/* line 714, app/assets/stylesheets/_application.scss */
.col-event-content.status-draft .area-content {
  position: relative;
}

/* line 718, app/assets/stylesheets/_application.scss */
.col-event-content > .area-content > .content {
  margin-top: 43px;
}

@media (max-width: 414px) {
  /* line 722, app/assets/stylesheets/_application.scss */
  .col-event-content .ann-date {
    background: none;
    color: #000;
    border: none !important;
    box-shadow: 0 0 0;
    padding: 50px 5px !important;
  }
  /* line 729, app/assets/stylesheets/_application.scss */
  .col-event-content .detail {
    display: none;
  }
  /* line 732, app/assets/stylesheets/_application.scss */
  .col-event-content .event-post-date {
    position: absolute;
    top: 10px;
  }
  /* line 736, app/assets/stylesheets/_application.scss */
  .col-event-content .event-post-date span {
    display: inline;
    font-size: 16px;
  }
  /* line 741, app/assets/stylesheets/_application.scss */
  .col-event-content .urgente {
    padding: 10px 0 0;
    color: #5f5ca7;
  }
}

/*
list-event-date       -> ann-date
list-event-label      -> ann-label
list-event-title      -> ann-label a
list-event-status     -> ann-label a span
badges    -> ann-label a i */
/* line 756, app/assets/stylesheets/_application.scss */
.ann {
  display: block;
}

/* line 760, app/assets/stylesheets/_application.scss */
.ann-date, .ann-label, .ann-label span, .list-event-title {
  vertical-align: top;
}

/* line 763, app/assets/stylesheets/_application.scss */
.ann-date {
  text-align: center;
  background-color: #0077C8;
  cursor: default;
  display: none;
  color: #fff;
  position: absolute;
  width: 50px;
  padding-bottom: 4px;
  font-size: 10pt;
  border-radius: 0 13px;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
}

/* line 777, app/assets/stylesheets/_application.scss */
.ann-date span {
  display: block;
  font-size: 18pt;
  margin-bottom: -6px;
  font-weight: 900;
}

/* line 783, app/assets/stylesheets/_application.scss */
.ann-label span.detail,
.ann-label span {
  position: absolute;
  height: 38px;
  width: 38px;
  background-color: #c6c6c6;
}

@media (min-width: 768px) {
  /* line 783, app/assets/stylesheets/_application.scss */
  .ann-label span.detail,
  .ann-label span {
    margin-left: 62px;
  }
}

/* line 795, app/assets/stylesheets/_application.scss */
.ann-label sub {
  display: block;
  line-height: 1.3em;
  margin: 3px 0 0 0;
  color: inherit;
  font-weight: 100;
  background-color: rgba(0, 0, 0, 0.03);
  border-radius: 4px;
  padding: 3px;
  margin-right: -40px;
  bottom: -0.5em;
  left: -11px;
  box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.1);
}

/* line 809, app/assets/stylesheets/_application.scss */
.ann-label sub strong {
  display: inline-block;
  padding: 1px 3px 0 4px;
  background-color: rgba(0, 0, 0, 0.38);
  border-radius: 3px;
  color: #fff;
  font-weight: 400;
  font-size: 8pt;
  margin-right: 0;
  letter-spacing: 0.03em;
}

/* line 820, app/assets/stylesheets/_application.scss */
.ann-label sub span.ann-sender-info {
  padding-right: 4px;
  background: none;
  display: inline-block;
  position: relative;
  width: auto;
  height: auto;
  margin: 0;
  font-size: inherit;
  color: inherit;
  border: 0;
}

/* line 832, app/assets/stylesheets/_application.scss */
.ann-label .sender-name-me {
  background-color: #0077C8;
}

/* line 835, app/assets/stylesheets/_application.scss */
.ann-label .sender-name {
  background-color: rgba(0, 0, 0, 0.38);
}

/* line 839, app/assets/stylesheets/_application.scss */
.headlines-home {
  display: inline-block;
}

@media (max-width: 767px) {
  /* line 846, app/assets/stylesheets/_application.scss */
  .ann-label a {
    margin-left: 38px;
  }
  /* line 849, app/assets/stylesheets/_application.scss */
  .ann-label a > span {
    border-radius: 0;
  }
  /* line 853, app/assets/stylesheets/_application.scss */
  .ann-label a:focus {
    background-color: #0077C8;
    border-bottom: #0077C8 solid 1px;
    border-top: solid #0077C8 1px;
    color: #fff;
    -webkit-transition: 0.2s ease-out;
    transition: 0.2s ease-out;
    outline: none;
  }
  /* line 861, app/assets/stylesheets/_application.scss */
  .ann-label a:focus > span {
    background-image: none;
    background-color: #0077C8;
    -webkit-transition: 0.2s ease-out;
    transition: 0.2s ease-out;
  }
}

/* Icons inside message view */
/* line 874, app/assets/stylesheets/_application.scss */
.ann-status-and-time-line {
  position: relative;
  display: block;
  height: 30px;
  margin-top: -38px;
}

/* line 880, app/assets/stylesheets/_application.scss */
.ann-status-and-time-line .ann-date {
  display: inline-block;
  height: 40px;
  padding: 5px 7.5px 5px 13px;
  font-size: 15pt;
  width: auto;
  border-radius: 0 0 7.5px 7.5px;
  /* margin-top: -0.5*$padding;*/
  margin-left: -7.5px;
  border-width: 0 0 2px 0;
  border-style: solid;
  border-color: #005995;
  white-space: nowrap;
}

/* line 894, app/assets/stylesheets/_application.scss */
.ann-status-and-time-line .ann-date span {
  display: inline-block;
  margin-top: -8px;
  margin-right: 5px;
  margin-bottom: -8px;
  font-size: inherit;
}

/* line 901, app/assets/stylesheets/_application.scss */
.ann-status-and-time-line .ann-label span {
  margin-left: -38px;
  left: 50%;
  height: 76px;
  width: 76px;
  border-radius: 38px;
  background-position: 0px -38px;
  margin-top: -38px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2), inset 0 0px 6px rgba(255, 255, 255, 0.5);
  border-bottom: solid 2px rgba(0, 0, 0, 0.15);
  border-right: 0;
}

/* line 913, app/assets/stylesheets/_application.scss */
.ann-status-and-time-line.status-not-ok span,
.ann-status-and-time-line.status-ok span {
  -webkit-transition: background-color 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
  transition: background-color 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

/* line 916, app/assets/stylesheets/_application.scss */
.ann-label a {
  border-radius: 0 4px 4px 4px;
  color: #666;
  display: block;
  font-weight: 400;
  font-family: sans-serif;
  font-size: 1.2em;
  letter-spacing: -0.02em;
  line-height: 1.3em;
  padding: 10px 30px 7px 12px;
  position: relative;
  border-bottom: #ccc solid 1px;
  border-top: solid #fff 1px;
  margin-right: 3px;
  margin-bottom: 6px;
  background-color: #fff;
  vertical-align: top;
}

@media (min-width: 767px) {
  /* line 916, app/assets/stylesheets/_application.scss */
  .ann-label a {
    margin-left: 100px;
    /*90px*/
  }
}

/* line 937, app/assets/stylesheets/_application.scss */
.ann-label a:hover {
  background-color: #FFFDEA;
}

/* line 940, app/assets/stylesheets/_application.scss */
.ann-label a:focus {
  background-color: #0077C8;
  border-bottom: #0077C8 solid 1px;
  border-top: solid #0077C8 1px;
  color: #fff;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
  outline: none;
}

/* line 948, app/assets/stylesheets/_application.scss */
body .ann-label a:focus span {
  background-color: #0077C8;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}

/* Autocomplete */
/* line 955, app/assets/stylesheets/_application.scss */
ul.ui-autocomplete {
  background-color: #fff;
  width: 65% !important;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  border: solid 1px #D6C7AE;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  padding: 15px;
  overflow: auto;
  height: 200px;
  margin-left: 5px;
  border-top: 0;
}

/* line 968, app/assets/stylesheets/_application.scss */
ul.ui-autocomplete .ui-menu-item {
  list-style: none;
  padding: 5px;
  font-size: 1.1em;
}

/* line 973, app/assets/stylesheets/_application.scss */
ul.ui-autocomplete .ui-menu-item:hover {
  background-color: #0077C8;
  color: #fff;
}

/* line 977, app/assets/stylesheets/_application.scss */
.ui-helper-hidden-accessible {
  position: absolute;
  left: -999em;
}

/* Badges */
/* line 984, app/assets/stylesheets/_application.scss */
.area-conversation i,
.ann-label i {
  display: inline-block;
  width: 30px;
  height: 30px;
  background-image: url(/assets/ic-sprite-3x-db16281df5dbce37cb0155679d57b11b974704bed104a7345e74f1451eefecee.png);
  background-size: 380px auto;
}

/* line 992, app/assets/stylesheets/_application.scss */
.ann-label i {
  background-position: 0 -399px;
  margin-top: -5px;
  margin-bottom: -5px;
  margin-left: -5px;
}

/* sprite y position */
/* sprite y position for focused */
/* line 1002, app/assets/stylesheets/_application.scss */
.area-conversation i,
.ann-label i.b-msg {
  background-position: 0 -399px;
}

/* line 1006, app/assets/stylesheets/_application.scss */
.area-conversation i {
  margin: 0 2px -8px 2px;
}

/* line 1009, app/assets/stylesheets/_application.scss */
.area-conversation {
  font-size: 1.4em;
}

/* line 1014, app/assets/stylesheets/_application.scss */
.ann-label i.b-msg.b-new-msg {
  background-position: 0 -369px;
}

/* line 1017, app/assets/stylesheets/_application.scss */
.ann-label i.b-att {
  background-position: -30px -399px;
}

/* line 1020, app/assets/stylesheets/_application.scss */
.ann-label i.b-flag {
  background-position: -60px -399px;
}

/* line 1023, app/assets/stylesheets/_application.scss */
.ann-label i.b-schd {
  background-position: -90px -399px;
}

/* line 1026, app/assets/stylesheets/_application.scss */
.ann-label a:focus i.b-msg {
  background-position: 0 -429px;
}

/* line 1029, app/assets/stylesheets/_application.scss */
.ann-label a:focus i.b-att {
  background-position: -30px -429px;
}

/* line 1032, app/assets/stylesheets/_application.scss */
.ann-label a:focus i.b-flag {
  background-position: -60px -429px;
}

/* line 1035, app/assets/stylesheets/_application.scss */
.ann-label a:focus i.b-schd {
  background-position: -90px -429px;
}

/* line 1038, app/assets/stylesheets/_application.scss */
.ann-label .b-draft {
  display: inline-block;
  background-color: #F2793E;
  color: #fff;
  padding: 0 4px;
  border-radius: 4px;
  font-size: 11pt;
}

/* line 1048, app/assets/stylesheets/_application.scss */
.ann.badge-sent .ann-label a::before {
  content: 'Enviado';
  display: block;
  position: absolute;
  background-image: url(/assets/ic-sprite-7975d9859b417a8cfc6ffbeb0f7702272e35b27cab20ece0582882ad3ef63f76.png);
  background-position: 0 -305px;
  width: 30px;
  height: 30px;
  z-index: 9;
  left: -20px;
  color: transparent;
  overflow: hidden;
  text-indent: 40px;
  margin-top: 14px;
}

/* line 1064, app/assets/stylesheets/_application.scss */
ul.event-list li.list-last-day-separator {
  margin-bottom: 40px;
}

/* line 1067, app/assets/stylesheets/_application.scss */
ul.event-list li.list-first-day .ann-date {
  display: inline-block;
}

/* line 1070, app/assets/stylesheets/_application.scss */
.list-first-day {
  margin-top: 30px;
}

/* line 1073, app/assets/stylesheets/_application.scss */
.list-first-day:first-child {
  margin-top: 0;
}

/* line 1076, app/assets/stylesheets/_application.scss */
a.delete, span.delete {
  display: none;
}

/* IMAGES
-----------------------------*/
/* line 1082, app/assets/stylesheets/_application.scss */
.img-agenda-kids-mobile {
  background-image: url(/assets/agenda-kids-mobile-ff5c5e1d6eff4e5c592cc266b8bc0336c2af6a8383f14517d297a48cc5cfc25c.png);
  display: block;
  max-width: 451px;
  min-height: 360px;
  background-size: 100%;
  background-repeat: no-repeat;
  margin: 0 auto;
  margin-bottom: 40px;
}

/* ICONES
-----------------------------*/
/* line 1095, app/assets/stylesheets/_application.scss */
.ic-sprite {
  background-image: url(/assets/ic-sprite-7975d9859b417a8cfc6ffbeb0f7702272e35b27cab20ece0582882ad3ef63f76.png);
  display: block;
  width: 28px;
  height: 28px;
}

/* line 1101, app/assets/stylesheets/_application.scss */
.ann-label span {
  background-image: url(/assets/ic-sprite-ann-status-3x-70099bb5b180634feab3026a9019db3e21a36d656430fbf9553af74f0f164864.png);
  background-size: 570px auto;
  /*overflow: hidden;*/
  font-size: 0;
  color: transparent;
  font-size: 0;
  border-right: solid 2px rgba(0, 0, 0, 0.15);
}

@media (min-width: 768px) {
  /* line 1101, app/assets/stylesheets/_application.scss */
  .ann-label span {
    border-radius: 8px 0 0 8px;
  }
}

/* line 1113, app/assets/stylesheets/_application.scss */
i.icon {
  background-image: url(/assets/ic-sprite-7975d9859b417a8cfc6ffbeb0f7702272e35b27cab20ece0582882ad3ef63f76.png);
  display: inline-block;
  height: 28px;
  width: 28px;
}

/* line 1119, app/assets/stylesheets/_application.scss */
i.md-icon {
  background-image: url(/assets/ic-sprite-7975d9859b417a8cfc6ffbeb0f7702272e35b27cab20ece0582882ad3ef63f76.png);
  display: inline-block;
  height: 38px;
  width: 38px;
}

/* Icons for events detail
---------------------------------------*/
/* line 1128, app/assets/stylesheets/_application.scss */
.not-ok {
  background-position: 0 0;
}

/* line 1131, app/assets/stylesheets/_application.scss */
.ic-sm-agenda {
  background-position: 0 0;
}

/* line 1134, app/assets/stylesheets/_application.scss */
.ok {
  background-position: -76px 0;
}

/* line 1137, app/assets/stylesheets/_application.scss */
.ic-sm-time {
  background-position: -28px 0;
}

/* line 1140, app/assets/stylesheets/_application.scss */
.ic-sm-message {
  background-position: -56px 0;
}

/*  Status colors
----------------------------------------*/
/* line 1150, app/assets/stylesheets/_application.scss */
.status-default .ann-label span, .ann-label .status-default span {
  background-color: #c6c6c6;
}

/* line 1155, app/assets/stylesheets/_application.scss */
div.status-not-ok .ann-label span, .ann-label div.status-not-ok span, li.status-not-ok .ann-label span, .ann-label li.status-not-ok span {
  background-color: #ff635f;
}

/* line 1159, app/assets/stylesheets/_application.scss */
.status-read .ann-label span, .ann-label .status-read span {
  background-color: #0077C8;
}

/* line 1162, app/assets/stylesheets/_application.scss */
.status-ok .ann-label span, .ann-label .status-ok span,
.status-ok.status-read .ann-label span,
.ann-label .status-ok.status-read span {
  background-color: #85B200;
}

/* line 1167, app/assets/stylesheets/_application.scss */
.content .status-draft .ann-label span, .ann-label .content .status-draft span, .event-list .status-draft .ann-label span, .ann-label .event-list .status-draft span {
  background-color: #E6BD63;
}

/* Status icons
----------------------------------------*/
/* line 1176, app/assets/stylesheets/_application.scss */
.status-warning .ann-label span, .ann-label .status-warning span {
  background-position: -76px 0;
}

/* line 1179, app/assets/stylesheets/_application.scss */
.status-info .ann-label span, .ann-label .status-info span {
  background-position: -38px 0;
}

/* line 1182, app/assets/stylesheets/_application.scss */
.status-student .ann-label span, .ann-label .status-student span {
  background-position: -114px 0;
}

/* line 1185, app/assets/stylesheets/_application.scss */
.status-read .ann-label span, .ann-label .status-read span {
  background-position: -152px 0;
}

/* line 1188, app/assets/stylesheets/_application.scss */
.status-ok .ann-label span, .ann-label .status-ok span,
.status-read.status-ok .ann-label span,
.ann-label .status-read.status-ok span {
  background-position: -190px 0;
}

/* Status large icons
----------------------------------------*/
/* line 1197, app/assets/stylesheets/_application.scss */
.ann-status-and-time-line.status-warning .ann-label span, .ann-label .ann-status-and-time-line.status-warning span {
  background-position: -152px -38px;
}

/* line 1200, app/assets/stylesheets/_application.scss */
.ann-status-and-time-line.status-info .ann-label span, .ann-label .ann-status-and-time-line.status-info span {
  background-position: -76px -38px;
}

/* line 1203, app/assets/stylesheets/_application.scss */
.ann-status-and-time-line.status-student .ann-label span, .ann-label .ann-status-and-time-line.status-student span {
  background-position: -228px -38px;
}

/* line 1206, app/assets/stylesheets/_application.scss */
.ann-status-and-time-line.status-read .ann-label span, .ann-label .ann-status-and-time-line.status-read span {
  background-position: -304px -38px;
}

/* line 1209, app/assets/stylesheets/_application.scss */
.ann-status-and-time-line.status-ok .ann-label span, .ann-label .ann-status-and-time-line.status-ok span,
.ann-status-and-time-line.status-read.status-ok .ann-label span,
.ann-label .ann-status-and-time-line.status-read.status-ok span {
  background-position: -380px -38px;
}

/* line 1215, app/assets/stylesheets/_application.scss */
.ann-label sub span {
  background: none !important;
}

/* Form field recipients */
/* line 1220, app/assets/stylesheets/_application.scss */
.recipients-message {
  display: block;
  text-align: center;
  border-radius: 4px;
  border: solid 1px #ddd;
  height: 130px;
  padding-top: 50px;
  color: #999;
}

/* line 1232, app/assets/stylesheets/_application.scss */
.disabled .field-box {
  display: block;
  color: #999;
}

/* line 1237, app/assets/stylesheets/_application.scss */
.disabled .field-box span {
  display: inline-block;
  margin-left: 24px;
  position: absolute;
  margin-top: 12px;
}

/* line 1243, app/assets/stylesheets/_application.scss */
.disabled .field-box i:after {
  content: '';
  display: inline-block;
  width: 30px;
  height: 30px;
  background-image: url(/assets/ic-sprite-7975d9859b417a8cfc6ffbeb0f7702272e35b27cab20ece0582882ad3ef63f76.png);
  background-position: -220px -360px;
  position: absolute;
  margin-left: 48px;
  margin-top: 12px;
}

/* line 1254, app/assets/stylesheets/_application.scss */
.field .disabled .field-box {
  margin-bottom: 10px;
}

/* MESSAGES
---------------------------------------*/
/* line 1261, app/assets/stylesheets/_application.scss */
.messages-container {
  background-color: #ddd;
  padding: 10px;
  float: left;
  border-radius: 4px;
  margin-bottom: 3px;
  width: 100%;
  /*with padding and float */
}

/* line 1269, app/assets/stylesheets/_application.scss */
.message-list {
  padding: 30px 0 15px 0;
}

/* line 1272, app/assets/stylesheets/_application.scss */
.message-list h3 {
  font-size: 1.5em;
  margin-top: 0;
}

/* line 1276, app/assets/stylesheets/_application.scss */
.message-list h3 + div {
  margin-top: 10px;
}

/* line 1279, app/assets/stylesheets/_application.scss */
.message-list.empty {
  padding: 0;
}

/* line 1282, app/assets/stylesheets/_application.scss */
.message-list.empty .message-to-user,
.message-list.empty .messages-container {
  display: none;
}

/* line 1286, app/assets/stylesheets/_application.scss */
.message-to-user {
  margin-bottom: 10px;
  display: block;
}

/* line 1290, app/assets/stylesheets/_application.scss */
.message {
  display: inline-block;
  /*block*/
  padding: 20px;
  background-color: #fff;
  margin-bottom: 10px;
  border-bottom: solid 1px #aaa;
  margin-left: 5px;
  clear: both;
  max-width: 95%;
  position: relative;
  float: left;
}

/* line 1302, app/assets/stylesheets/_application.scss */
.message-footer {
  margin-top: 10px;
}

/* line 1305, app/assets/stylesheets/_application.scss */
.message-footer strong {
  display: block;
}

/* message carets */
/* caret esquerda */
/* line 1313, app/assets/stylesheets/_application.scss */
.message:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  display: block;
  border-bottom: 15px solid #aaa;
  border-right: 0;
  border-left: 15px solid transparent;
  margin-left: -15px;
}

/* line 1324, app/assets/stylesheets/_application.scss */
.message:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  border-bottom: 15px solid #fff;
  border-right: 0;
  border-left: 15px solid transparent;
  margin-left: -15px;
}

/* caret direita */
/* line 1336, app/assets/stylesheets/_application.scss */
.message.my-message:before {
  content: "";
  position: absolute;
  left: 100%;
  right: 0;
  bottom: -1px;
  display: block;
  border-bottom: 15px solid #aaa;
  border-left: 0;
  border-right: 15px solid transparent;
  margin-right: -15px;
}

/* line 1348, app/assets/stylesheets/_application.scss */
.message.my-message:after {
  content: "";
  position: absolute;
  left: 100%;
  right: 0;
  bottom: 0;
  display: block;
  border-bottom: 15px solid #FBFBFB;
  border-left: 0;
  border-right: 15px solid transparent;
  margin-right: -15px;
}

/* line 1360, app/assets/stylesheets/_application.scss */
.message span {
  display: inline-block;
  font-size: 0.8em;
  color: #999;
}

/* line 1365, app/assets/stylesheets/_application.scss */
.message span strong {
  display: block;
  font-size: 11pt;
  color: #333;
}

/* line 1370, app/assets/stylesheets/_application.scss */
.message.my-message {
  background-color: #e7e7e7;
  /* #FBFBFB */
  margin-left: 20px;
  margin-right: 5px;
  /*0*/
  float: right;
}

/* line 1376, app/assets/stylesheets/_application.scss */
.message.my-message:after {
  border-bottom-color: #E7E7E7;
}

/* line 1379, app/assets/stylesheets/_application.scss */
.message-edit {
  padding-top: 10px;
  border-radius: 8px;
}

/* message status */
/* line 1384, app/assets/stylesheets/_application.scss */
.message-status {
  height: 16px;
  width: 16px;
  background-image: url(/assets/ic-sprite-7975d9859b417a8cfc6ffbeb0f7702272e35b27cab20ece0582882ad3ef63f76.png);
  background-position: 16px -170px;
  vertical-align: top;
  margin-left: 5px;
  cursor: default;
  position: relative;
  margin-top: 2px;
}

/* line 1395, app/assets/stylesheets/_application.scss */
.message-status.message-send-ok {
  background-position: 0 -170px;
}

/* line 1398, app/assets/stylesheets/_application.scss */
.message-status.message-received-ok {
  background-position: -16px -170px;
}

/* line 1401, app/assets/stylesheets/_application.scss */
.message-status.message-read-ok {
  background-position: -32px -170px;
}

/* line 1404, app/assets/stylesheets/_application.scss */
.message-status.message-sending {
  background-position: -48px -170px;
}

/* line 1407, app/assets/stylesheets/_application.scss */
.message-status.message-send-error {
  background-position: -64px -170px;
}

/* line 1410, app/assets/stylesheets/_application.scss */
.message-status div {
  display: none;
}

/* line 1413, app/assets/stylesheets/_application.scss */
.message-status.message-send-ok:hover div,
.message-status.message-received-ok:hover div,
.message-status.message-read-ok:hover div {
  display: block;
  position: absolute;
  width: 140px;
  right: -2em;
  bottom: 20px;
  background: #0077C8;
  color: #fff;
  padding: 5px 5px 5px 7px;
  border-radius: 4px;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
}

/* line 1428, app/assets/stylesheets/_application.scss */
.area-secondary {
  display: block;
}

/* line 1431, app/assets/stylesheets/_application.scss */
.area-secondary ul {
  list-style: none;
  margin-top: 20px;
}

/* line 1435, app/assets/stylesheets/_application.scss */
.area-secondary li {
  font-size: 1.1em;
  padding: 0.3em;
}

/* Calendar
-------------------------------- */
/* line 1442, app/assets/stylesheets/_application.scss */
.xdsoft_datetimepicker .xdsoft_datepicker {
  width: 280px;
}

@media (max-width: 480px) {
  /* line 1448, app/assets/stylesheets/_application.scss */
  .xdsoft_datetimepicker .xdsoft_datepicker {
    width: 220px;
  }
  /* line 1452, app/assets/stylesheets/_application.scss */
  .xdsoft_datetimepicker .xdsoft_timepicker {
    width: 45px;
  }
}

/* line 1458, app/assets/stylesheets/_application.scss */
.xdsoft_datetimepicker .xdsoft_calendar td, .xdsoft_datetimepicker .xdsoft_calendar th {
  height: 35px;
  font-size: 1em;
}

/* line 1462, app/assets/stylesheets/_application.scss */
.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select > div > .xdsoft_option {
  padding: 8px 10px 8px 5px;
}

/* line 1465, app/assets/stylesheets/_application.scss */
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box {
  height: 180px;
}

/* line 1468, app/assets/stylesheets/_application.scss */
.col-event-content .actions {
  border: 0;
  padding: 0 15px;
  margin-bottom: 0;
}

/* line 1474, app/assets/stylesheets/_application.scss */
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default, .xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current, .xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  background-color: #0077C8 !important;
  box-shadow: none;
}

/* line 1478, app/assets/stylesheets/_application.scss */
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default:hover, .xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current:hover, .xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current:hover {
  background-color: #005995 !important;
}

/* Filter
------------------------------- */
/* line 1484, app/assets/stylesheets/_application.scss */
.user-list-filter {
  display: block;
  margin: 10px 0 5px 0;
  background-color: #eee;
  padding: 4px 5px 5px 4px;
  border-radius: 4px;
  height: 45px;
}

/* line 1492, app/assets/stylesheets/_application.scss */
.user-list-filter > a {
  cursor: default;
  color: #555;
  display: inline-block;
  border-radius: 4px;
}

/* line 1498, app/assets/stylesheets/_application.scss */
.fltr {
  vertical-align: top;
  padding: 9px 7px 7px 9px;
}

/* line 1518, app/assets/stylesheets/_application.scss */
.new_announcement {
  padding-bottom: 40px;
}

/* User messages inside content */
/* line 1523, app/assets/stylesheets/_application.scss */
.user-msg-in-content {
  display: block;
  padding: 15px;
}

/* line 1527, app/assets/stylesheets/_application.scss */
.user-msg-in-content {
  text-align: center;
  margin-top: 5px;
  border: dashed 2px #c6c6c6;
  color: #999;
}

/* line 1533, app/assets/stylesheets/_application.scss */
.col-agenda,
.col-plantao {
  margin-left: 5px;
}

/* line 1537, app/assets/stylesheets/_application.scss */
.col-plantao h3,
.col-agenda h3 {
  font-size: 13pt;
  color: #aaa;
  padding: 10px 10px 10px 9px;
}

/* line 1544, app/assets/stylesheets/_application.scss */
html body .chosen-container-multi {
  width: 100% !important;
}

/* line 1548, app/assets/stylesheets/_application.scss */
html body .chosen-container-multi .chosen-choices {
  min-height: 50px !important;
  padding: 10px 15px;
  border-radius: 4px;
  border: 1px solid #ccc;
}

/* line 1555, app/assets/stylesheets/_application.scss */
html body .chosen-container-multi.chosen-container-active .chosen-choices {
  background-color: #FDFCEA;
  border-color: #EFC627;
  outline: 0;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(245, 210, 71, 0.6);
  background-image: none;
}

/* line 1562, app/assets/stylesheets/_application.scss */
html body .chosen-container-multi .chosen-choices li.search-field input[type="text"] {
  /*height: 48px;*/
}

/* line 1568, app/assets/stylesheets/_application.scss */
.event-list-header {
  display: none;
}

/* line 1573, app/assets/stylesheets/_application.scss */
.datecleaner {
  display: none;
  font-size: 14px;
  vertical-align: text-top;
  margin-top: 5px;
}

/* line 1580, app/assets/stylesheets/_application.scss */
.announcement-type-options .datecleaner .fa-times {
  background-image: none;
  width: auto;
  height: auto;
  margin-right: 5px;
  margin-top: 2.5px;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2) and (min-width: 768px), only screen and (min-device-pixel-ratio: 2) and (min-width: 768px), only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-resolution: 2dppx) {
  /* line 1591, app/assets/stylesheets/_application.scss */
  .ann.badge-sent .ann-label a::before, .col-agenda:before, .col-plantao:before, .ic-sprite, .ann-label a i, i.icon, i.md-icon, .ann.badge-received .ann-label a::before, .event-list-header ul li a, .user-list li.usr-msg a i, .user-list li.usr-msg a::before, .user-list li a i, a.usr-msg i, a.usr-ack i, a.usr-no-ack i {
    background-image: url(/assets/ic-sprite-3x-db16281df5dbce37cb0155679d57b11b974704bed104a7345e74f1451eefecee.png);
    /* 3x on 2x */
    background-size: 380px auto;
  }
  /* line 1595, app/assets/stylesheets/_application.scss */
  .event-list-header ul li a {
    background-image: url(/assets/ic-sprite-filter-2x-40bd52228b115a541b1e3621d6ce55cb1068de901bbfd68801dffaf89b067200.png);
    background-size: 304px auto;
  }
  /* line 1599, app/assets/stylesheets/_application.scss */
  .ann-label span {
    background-image: url(/assets/ic-sprite-ann-status-3x-70099bb5b180634feab3026a9019db3e21a36d656430fbf9553af74f0f164864.png);
    background-size: 570px auto;
  }
}

@media only screen and (-webkit-min-device-pixel-ratio: 3) and (min-width: 768px), only screen and (min-device-pixel-ratio: 3) and (min-width: 768px), only screen and (-webkit-min-device-pixel-ratio: 3), only screen and (min-resolution: 3dppx) {
  /* line 1607, app/assets/stylesheets/_application.scss */
  .ann.badge-sent .ann-label a::before, .col-agenda:before, .col-plantao:before, .ic-sprite, .ann-label a i, i.icon, i.md-icon, .ann.badge-received .ann-label a::before, .event-list-header ul li a, .user-list li.usr-msg a i, .user-list li.usr-msg a::before, .user-list li a i, a.usr-msg i, a.usr-ack i, a.usr-no-ack i {
    background-image: url(/assets/ic-sprite-3x-db16281df5dbce37cb0155679d57b11b974704bed104a7345e74f1451eefecee.png);
    background-size: 380px auto;
  }
  /* line 1611, app/assets/stylesheets/_application.scss */
  .ann-label span {
    background-image: url(/assets/ic-sprite-ann-status-3x-70099bb5b180634feab3026a9019db3e21a36d656430fbf9553af74f0f164864.png);
    background-size: 570px auto;
  }
  /* line 1615, app/assets/stylesheets/_application.scss */
  .event-list-header ul li a {
    background-image: url(/assets/ic-sprite-filter-3x-93eab07aa5b50d3eaeafdb9292576076f3cecd4b5cc293a4851238701299743f.png);
    background-size: 304px auto;
  }
}

/* line 1620, app/assets/stylesheets/_application.scss */
#messages-container .message-text-error {
  color: #AF0600;
}

/* line 1624, app/assets/stylesheets/_application.scss */
.noselect {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* line 1633, app/assets/stylesheets/_application.scss */
td,
th {
  word-break: break-all;
}

/* line 1641, app/assets/stylesheets/_application.scss */
.horizontal-separator.arrow-separator:before,
.horizontal-separator {
  background-image: url(/assets/sprite-announcement-separator-107cab02d0175bcb3640d701f907a96e3a9b977790e6801af7144d5787c80cc3.png);
}

@media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx), (min-resolution: 144dpi) {
  /* line 1641, app/assets/stylesheets/_application.scss */
  .horizontal-separator.arrow-separator:before,
  .horizontal-separator {
    background-image: url(/assets/sprite-announcement-separator-3x-3f0782ef11d68ba29cae6dd5a1af3a88454a9eb95ab2f9170924ce323eaddaea.png);
  }
}

/* line 1648, app/assets/stylesheets/_application.scss */
.horizontal-separator {
  background-size: 120px auto;
  text-indent: -200%;
  overflow: hidden;
  height: 42px;
  background-position: 0 18px;
  padding: 0;
}

/* line 131, app/assets/stylesheets/_variables.scss */
.card-material .display-block {
  display: block;
}

/* line 29, app/assets/stylesheets/_tasks.scss */
body.user_tasks {
  background-color: #F4F4F4;
  color: #4A4A4A;
  font-family: sans-serif, Helvetica, Arial;
}

/* line 35, app/assets/stylesheets/_tasks.scss */
.plurall-icon {
  font-family: 'Plurall';
}

/* line 41, app/assets/stylesheets/_tasks.scss */
.user_tasks h1, .user_tasks h2, .user_tasks h3, .user_tasks h4, .user_tasks ul, .user_tasks li, .user_tasks ol {
  padding: 0;
  margin: 0;
  list-style: none;
}

/* line 46, app/assets/stylesheets/_tasks.scss */
.user_tasks h2 {
  color: #999;
  font-weight: 400;
  font-size: 12pt;
}

/* line 51, app/assets/stylesheets/_tasks.scss */
.user_tasks h3 {
  font-size: 13pt;
  font-weight: normal;
  margin-bottom: 8px;
  display: inline-block;
}

/* line 57, app/assets/stylesheets/_tasks.scss */
.user_tasks h4 {
  color: #666;
  font-size: 9pt;
  font-weight: 200;
  padding: 5px 0;
}

/* line 64, app/assets/stylesheets/_tasks.scss */
.user_tasks table {
  width: 100% !important;
  word-break: break-word;
  border-color: #ccc;
}

/* line 69, app/assets/stylesheets/_tasks.scss */
.user_tasks table td {
  padding: 3px;
}

/* line 74, app/assets/stylesheets/_tasks.scss */
.user_tasks .form_open_response_class {
  width: 100%;
  height: 200px;
}

/* line 79, app/assets/stylesheets/_tasks.scss */
.user_tasks #open_response_answer {
  float: left;
  margin-right: 4%;
  width: 70%;
}

/* line 85, app/assets/stylesheets/_tasks.scss */
.user_tasks #open_response_image_answer {
  float: left;
  width: 25%;
}

@media (min-width: 768px) {
  /* line 91, app/assets/stylesheets/_tasks.scss */
  .user_tasks .content {
    margin-top: 5px;
  }
}

/* line 96, app/assets/stylesheets/_tasks.scss */
.user_tasks h1.tasks-title {
  display: none;
}

@media (min-width: 768px) {
  /* line 96, app/assets/stylesheets/_tasks.scss */
  .user_tasks h1.tasks-title {
    display: inline-block;
    font-family: 'Source Sans Pro',Helvetica,Arial;
    font-size: 21pt;
    font-weight: 300;
    color: #555;
    padding: 20px 0 10px 15px;
  }
  /* line 107, app/assets/stylesheets/_tasks.scss */
  .user_tasks h1.tasks-title:before {
    font-family: 'Plurall';
    content: '\e900';
    font-size: 19pt;
    margin-right: 12pt;
  }
}

@media (max-width: 767px) {
  /* line 116, app/assets/stylesheets/_tasks.scss */
  .user_tasks .tasks-content {
    border-radius: 0;
  }
}

/* line 129, app/assets/stylesheets/_tasks.scss */
.user_tasks .list-filter {
  margin-top: -10px;
  margin-bottom: 20px;
  border-bottom: solid 1px #ddd;
}

/* line 134, app/assets/stylesheets/_tasks.scss */
.user_tasks .list-filter h2, .user_tasks .list-filter .field {
  display: inline-block;
}

/* line 137, app/assets/stylesheets/_tasks.scss */
.user_tasks .list-filter .field {
  padding-bottom: 15px;
}

/* line 141, app/assets/stylesheets/_tasks.scss */
.user_tasks .list-filter .field-task-filter {
  margin-left: 5px;
}

/* line 143, app/assets/stylesheets/_tasks.scss */
.user_tasks .list-filter .field-task-filter .btn {
  padding: 5px 10px;
  background: #9c9c9c;
  font-size: 10pt;
  text-transform: uppercase;
}

/* line 150, app/assets/stylesheets/_tasks.scss */
.user_tasks .list-filter .field.checkbox {
  margin-left: 20px;
}

/* line 155, app/assets/stylesheets/_tasks.scss */
.user_tasks .task-finish-instructions {
  padding: 5px;
  background-color: #5FA35C;
  text-align: center;
  color: white;
  font-weigth: bold;
}

/* line 163, app/assets/stylesheets/_tasks.scss */
.user_tasks .task-send {
  padding: 30px 0 0 0;
}

/* line 181, app/assets/stylesheets/_tasks.scss */
.user_tasks .task-item {
  padding: 0 0 15px 0;
  margin-bottom: 15px;
  background-color: #fff;
  border-bottom: 1px #ddd solid;
}

/* line 187, app/assets/stylesheets/_tasks.scss */
.user_tasks .task-item .progress-bar-bg {
  position: relative;
  background-color: rgba(223, 220, 242, 0.5);
  border-radius: 11px;
  height: 22px;
  display: block;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) inset;
}

/* line 196, app/assets/stylesheets/_tasks.scss */
.user_tasks .task-item.task-done {
  background-color: transparent;
}

/* line 199, app/assets/stylesheets/_tasks.scss */
.user_tasks .task-item.task-done h3 {
  font-weight: 200;
}

/* line 202, app/assets/stylesheets/_tasks.scss */
.user_tasks .task-item.task-done .progress-bar-bg {
  background-color: #DFDFDF;
}

/* line 207, app/assets/stylesheets/_tasks.scss */
.user_tasks .task-item.task-feedback .progress-bar {
  background-color: #5FA35C;
}

/* line 210, app/assets/stylesheets/_tasks.scss */
.user_tasks .task-item.task-wrong .progress-bar {
  background-color: #ff635f;
}

/* line 216, app/assets/stylesheets/_tasks.scss */
.user_tasks .task-item.task-done-all div.progress-bar {
  display: none;
}

/* line 219, app/assets/stylesheets/_tasks.scss */
.user_tasks .task-item.task-done-all .progress-bar-bg {
  background-color: #655CA3;
  color: #fff;
}

/* line 226, app/assets/stylesheets/_tasks.scss */
.user_tasks .task-item .progress-bar-bg {
  border-radius: 11px;
  height: 22px;
}

@media (min-width: 992px) {
  /* line 226, app/assets/stylesheets/_tasks.scss */
  .user_tasks .task-item .progress-bar-bg {
    border-radius: 14px;
    height: 28px;
  }
}

/* line 240, app/assets/stylesheets/_tasks.scss */
.user_tasks .task-item .progress-bar-bg .progress-bar {
  position: relative;
  background-color: #655CA3;
  border-radius: 9px;
  height: 18px;
  display: inline-block;
  color: #fff;
  min-width: 30px;
}

/* line 252, app/assets/stylesheets/_tasks.scss */
.user_tasks .task-item .progress-bar-bg .progress-bar:before {
  font-size: 16px;
  font-family: 'Plurall';
  font-size: 12px;
  position: absolute;
  left: 6px;
  top: -1px;
}

@media (min-width: 992px) {
  /* line 252, app/assets/stylesheets/_tasks.scss */
  .user_tasks .task-item .progress-bar-bg .progress-bar:before {
    left: 8px;
    font-size: 16px;
    top: 1px;
  }
}

@media (min-width: 992px) {
  /* line 240, app/assets/stylesheets/_tasks.scss */
  .user_tasks .task-item .progress-bar-bg .progress-bar {
    border-radius: 12px;
    height: 24px;
  }
}

/* line 275, app/assets/stylesheets/_tasks.scss */
.user_tasks .task-item .progress-bar-bg .progress-bar.correct {
  background-color: #5FA35C;
  min-width: 50px !important;
}

/* line 278, app/assets/stylesheets/_tasks.scss */
.user_tasks .task-item .progress-bar-bg .progress-bar.correct:before {
  content: '\e813';
}

/* line 282, app/assets/stylesheets/_tasks.scss */
.user_tasks .task-item .progress-bar-bg .progress-bar.wrong {
  background-color: #ff635f;
}

/* line 284, app/assets/stylesheets/_tasks.scss */
.user_tasks .task-item .progress-bar-bg .progress-bar.wrong:before {
  content: '\e814';
}

/* line 288, app/assets/stylesheets/_tasks.scss */
.user_tasks .task-item .progress-bar-bg .progress-bar.void {
  background-color: #7d8187;
  min-width: 50px;
}

/* line 291, app/assets/stylesheets/_tasks.scss */
.user_tasks .task-item .progress-bar-bg .progress-bar.void:before {
  content: '\e910';
}

/* line 295, app/assets/stylesheets/_tasks.scss */
.user_tasks .task-item .progress-bar-bg .progress-bar.unavailable, .user_tasks .task-item .progress-bar-bg .progress-bar.past_due {
  background-color: #999;
  opacity: 0.4;
}

@media (max-width: 991px) {
  /* line 303, app/assets/stylesheets/_tasks.scss */
  .user_tasks .task-item .progress-bar-bg .progress-bar span {
    margin-top: 0;
  }
}

@media (min-width: 992px) {
  /* line 303, app/assets/stylesheets/_tasks.scss */
  .user_tasks .task-item .progress-bar-bg .progress-bar span {
    font-size: 12pt;
    margin-right: 3px;
  }
}

/* line 316, app/assets/stylesheets/_tasks.scss */
.user_tasks .task-item .progress-bar-bg span {
  position: absolute;
  right: 8px;
  margin-top: 2px;
}

@media (min-width: 992px) {
  /* line 316, app/assets/stylesheets/_tasks.scss */
  .user_tasks .task-item .progress-bar-bg span {
    font-size: 12pt;
    margin-right: 3px;
  }
}

/* line 330, app/assets/stylesheets/_tasks.scss */
.user_tasks .task-item .task-status {
  font-size: 9pt;
  padding-top: 8px;
  padding-left: 2px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* line 337, app/assets/stylesheets/_tasks.scss */
.user_tasks .task-item .task-status > span {
  position: relative;
  padding-left: 18px;
}

/* line 342, app/assets/stylesheets/_tasks.scss */
.user_tasks .task-item .task-status i.ic:before {
  display: inline-block;
  width: 16px;
  height: 16px;
  font-family: 'Plurall';
  font-size: 16px;
  position: absolute;
  font-style: normal;
  font-weight: normal;
  left: 0;
  top: -5px;
  opacity: 0.6;
}

/* line 357, app/assets/stylesheets/_tasks.scss */
.user_tasks .task-item .task-status i.ic.ic-clock:before {
  content: '\e80e';
}

/* line 361, app/assets/stylesheets/_tasks.scss */
.user_tasks .task-item .task-status i.ic.ic-feedback:before {
  content: '\e816';
}

/* line 367, app/assets/stylesheets/_tasks.scss */
.user_tasks .task-item .task-status .unavailable, .user_tasks .task-item .task-status .available, .user_tasks .task-item .task-status .past_due, .user_tasks .task-item .task-status .done {
  margin-right: 12px;
}

/* line 372, app/assets/stylesheets/_tasks.scss */
.user_tasks .task-item .task-status .past_due {
  color: #F06361;
  font-weight: bold;
}

/* line 377, app/assets/stylesheets/_tasks.scss */
.user_tasks .task-item .task-status .done {
  font-weight: normal;
}

/* line 382, app/assets/stylesheets/_tasks.scss */
.user_tasks .task-item .task-status .feedback {
  color: #655CA3;
  font-weight: bold;
}

/* line 390, app/assets/stylesheets/_tasks.scss */
.user_tasks .task-item .progress-bar-container {
  padding: 2px;
}

/* line 398, app/assets/stylesheets/_tasks.scss */
.user_tasks .content {
  width: 100%;
  position: relative;
}

/* line 406, app/assets/stylesheets/_tasks.scss */
.user_tasks .task-items .task-more-about, .user_tasks .task-items .task-info, .user_tasks .task-view .task-more-about, .user_tasks .task-view .task-info {
  display: table-cell;
}

/* line 409, app/assets/stylesheets/_tasks.scss */
.user_tasks .task-items .task-more-about.no-extra-material, .user_tasks .task-items .task-info.no-extra-material, .user_tasks .task-view .task-more-about.no-extra-material, .user_tasks .task-view .task-info.no-extra-material {
  display: block;
}

/* line 415, app/assets/stylesheets/_tasks.scss */
.user_tasks .task-items .task-more-about, .user_tasks .task-view .task-more-about {
  width: 0px;
  overflow: hidden;
}

@media (max-width: 991px) {
  /* line 415, app/assets/stylesheets/_tasks.scss */
  .user_tasks .task-items .task-more-about, .user_tasks .task-view .task-more-about {
    display: block;
    position: absolute;
    overflow: initial;
    top: 15px;
    right: 0;
  }
}

@media (max-width: 767px) {
  /* line 415, app/assets/stylesheets/_tasks.scss */
  .user_tasks .task-items .task-more-about, .user_tasks .task-view .task-more-about {
    top: 15px;
    right: 0;
  }
}

/* line 431, app/assets/stylesheets/_tasks.scss */
.user_tasks .task-items .task-more-about.in, .user_tasks .task-view .task-more-about.in {
  width: 500px;
}

@media (max-width: 991px) {
  /* line 431, app/assets/stylesheets/_tasks.scss */
  .user_tasks .task-items .task-more-about.in, .user_tasks .task-view .task-more-about.in {
    display: block;
    position: absolute;
    background-color: rgba(255, 255, 255, 0.95);
    width: 100%;
    padding-right: 30px;
    top: 30px;
    right: 0;
    bottom: 8px;
  }
}

@media (max-width: 767px) {
  /* line 431, app/assets/stylesheets/_tasks.scss */
  .user_tasks .task-items .task-more-about.in, .user_tasks .task-view .task-more-about.in {
    top: 15px;
    right: 0;
    padding-right: 15px;
    bottom: 8px;
  }
}

/* line 452, app/assets/stylesheets/_tasks.scss */
.user_tasks .task-items .task-more-about.in .card-material.open, .user_tasks .task-view .task-more-about.in .card-material.open {
  opacity: 1;
  display: block;
  margin-right: 2px;
  -webkit-transition: opacity 2s ease-out;
  transition: opacity 2s ease-out;
}

/* line 461, app/assets/stylesheets/_tasks.scss */
.user_tasks .task-items .task-more-about.in h3, .user_tasks .task-view .task-more-about.in h3 {
  position: initial;
}

/* line 464, app/assets/stylesheets/_tasks.scss */
.user_tasks .task-items .task-more-about.in h3:before, .user_tasks .task-view .task-more-about.in h3:before {
  content: '\e5cd';
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}

/* line 475, app/assets/stylesheets/_tasks.scss */
.user_tasks .task-items .task-more-about h3, .user_tasks .task-view .task-more-about h3 {
  text-align: right;
  display: block;
  position: absolute;
  right: 30px;
  top: 45px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  white-space: nowrap;
  color: #337ab7;
}

@media (max-width: 991px) {
  /* line 475, app/assets/stylesheets/_tasks.scss */
  .user_tasks .task-items .task-more-about h3, .user_tasks .task-view .task-more-about h3 {
    top: 15px;
  }
}

@media (max-width: 767px) {
  /* line 475, app/assets/stylesheets/_tasks.scss */
  .user_tasks .task-items .task-more-about h3, .user_tasks .task-view .task-more-about h3 {
    right: 15px;
    top: 0;
  }
}

/* line 495, app/assets/stylesheets/_tasks.scss */
.user_tasks .task-items .task-more-about h3:before, .user_tasks .task-view .task-more-about h3:before {
  content: '\e5cd';
  font-family: 'Plurall';
  margin-left: -17pt;
  margin-top: -2pt;
  font-size: 16pt;
  position: absolute;
  color: #999;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all .2s linear 0s;
  transition: all .2s linear 0s;
}

/* line 514, app/assets/stylesheets/_tasks.scss */
.user_tasks .task-items .task-more-about .card-material, .user_tasks .task-view .task-more-about .card-material {
  opacity: 0;
  display: none;
  width: 460px;
  margin-left: 40px;
  margin-right: -500px;
  -webkit-transition: opacity 5s ease-out;
  transition: opacity 5s ease-out;
}

@media (max-width: 991px) {
  /* line 514, app/assets/stylesheets/_tasks.scss */
  .user_tasks .task-items .task-more-about .card-material, .user_tasks .task-view .task-more-about .card-material {
    width: auto;
    margin-left: 30px;
    margin-top: 15px;
  }
}

@media (max-width: 767px) {
  /* line 514, app/assets/stylesheets/_tasks.scss */
  .user_tasks .task-items .task-more-about .card-material, .user_tasks .task-view .task-more-about .card-material {
    width: auto;
    margin-left: 15px;
    margin-top: 15px;
  }
}

/* line 536, app/assets/stylesheets/_tasks.scss */
.user_tasks .task-items textarea#answer, .user_tasks .task-view textarea#answer {
  padding: 15px;
  font-size: 11.6pt;
}

/* line 540, app/assets/stylesheets/_tasks.scss */
.user_tasks .task-items .task-item, .user_tasks .task-view .task-item {
  padding: 0 0 15px 0;
  margin-bottom: 8px;
  position: relative;
}

/* line 545, app/assets/stylesheets/_tasks.scss */
.user_tasks .task-items .question, .user_tasks .task-view .question {
  margin: 0;
  box-shadow: none;
  padding: 0;
  font-size: 11.6pt;
}

/* line 551, app/assets/stylesheets/_tasks.scss */
.user_tasks .task-items .question .question-status, .user_tasks .task-view .question .question-status {
  text-align: center;
  padding: 5px;
  margin: 5px;
  width: 100%;
  background-color: #7d8187;
  color: white;
  font-size: 18px;
}

/* line 562, app/assets/stylesheets/_tasks.scss */
.user_tasks .task-items iframe, .user_tasks .task-view iframe {
  width: 100%;
  min-height: 200px;
}

/* line 567, app/assets/stylesheets/_tasks.scss */
.user_tasks .task-items .facebook-responsive, .user_tasks .task-view .facebook-responsive {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
}

/* line 573, app/assets/stylesheets/_tasks.scss */
.user_tasks .task-items .facebook-responsive iframe, .user_tasks .task-view .facebook-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* line 583, app/assets/stylesheets/_tasks.scss */
.user_tasks .tasks-list {
  background: #fff;
  padding: 0 20px;
  max-width: 100%;
}

/* line 592, app/assets/stylesheets/_tasks.scss */
.user_tasks .tasks-list .tasks-list-item {
  padding-bottom: 30px;
  padding-top: 8px;
}

/* line 598, app/assets/stylesheets/_tasks.scss */
.user_tasks .tasks-list .list a {
  padding: 6px 4px;
  width: 100%;
  display: block;
  text-align: left;
}

@media (min-width: 992px) {
  /* line 598, app/assets/stylesheets/_tasks.scss */
  .user_tasks .tasks-list .list a {
    height: auto;
    min-height: 50px;
  }
}

/* line 612, app/assets/stylesheets/_tasks.scss */
.user_tasks .tasks-list .list .question-id {
  height: auto;
  padding: 6px;
}

/* line 618, app/assets/stylesheets/_tasks.scss */
.user_tasks .tasks-list h4, .user_tasks .tasks-list h2 {
  padding: 0 0 15px 0;
}

/* line 621, app/assets/stylesheets/_tasks.scss */
.user_tasks .tasks-list h2 {
  padding-top: 15px;
}

/* line 626, app/assets/stylesheets/_tasks.scss */
.user_tasks .tasks-list a {
  display: inline-block;
  width: 70px;
  min-height: 70px;
  background-color: #f4f4f4;
  margin: 4px 2px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  border-radius: 4px;
  vertical-align: text-top;
  color: #4A4A4A;
}

/* line 638, app/assets/stylesheets/_tasks.scss */
.user_tasks .tasks-list a:hover {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

/* line 643, app/assets/stylesheets/_tasks.scss */
.user_tasks .tasks-list a.answered .question-status {
  background-color: #655CA3;
  box-shadow: none;
  font-size: 14px;
}

/* line 648, app/assets/stylesheets/_tasks.scss */
.user_tasks .tasks-list a.unavailable .question-status {
  background-color: #655CA3;
  box-shadow: none;
  font-size: 14px;
}

/* line 654, app/assets/stylesheets/_tasks.scss */
.user_tasks .tasks-list a.correct .question-status {
  background-color: #5FA35C;
  font-size: 14px;
}

/* line 659, app/assets/stylesheets/_tasks.scss */
.user_tasks .tasks-list a.void .question-status {
  background-color: #7d8187;
  font-size: 14px;
}

/* line 664, app/assets/stylesheets/_tasks.scss */
.user_tasks .tasks-list a.wrong, .user_tasks .tasks-list a.blank {
  color: #fff;
  background-color: #F06361;
}

/* line 668, app/assets/stylesheets/_tasks.scss */
.user_tasks .tasks-list a.wrong .question-status, .user_tasks .tasks-list a.blank .question-status {
  background-color: transparent;
}

/* line 673, app/assets/stylesheets/_tasks.scss */
.user_tasks .tasks-list a.blank .question-status {
  font-size: 8pt;
  padding-top: 3px;
}

/* line 680, app/assets/stylesheets/_tasks.scss */
.user_tasks .tasks-list .question-id {
  display: block;
  padding: 6px 6px 0 6px;
  min-height: 48px;
}

/* line 685, app/assets/stylesheets/_tasks.scss */
.user_tasks .tasks-list .question-id .question-info {
  font-size: 11px;
  display: block;
}

/* line 690, app/assets/stylesheets/_tasks.scss */
.user_tasks .tasks-list .question-status {
  display: block;
  color: #fff;
  min-height: 20px;
  margin: 0 2px;
  border-radius: 3px;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
  padding: 0 5px;
}

/* line 702, app/assets/stylesheets/_tasks.scss */
.user_tasks .question {
  margin: 5px;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  background-color: #fff;
  padding: 15px;
  word-wrap: break-word;
}

/* line 711, app/assets/stylesheets/_tasks.scss */
.user_tasks .question-answer {
  padding: 15px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  margin-top: 30px;
  margin-bottom: 30px;
  font-size: 11.6pt;
}

/* line 720, app/assets/stylesheets/_tasks.scss */
.user_tasks #question-answers {
  margin-top: 30px;
  clear: both;
}

/* line 725, app/assets/stylesheets/_tasks.scss */
.user_tasks .question-answer {
  margin-top: 5px;
  background-color: #f6f6f6;
}

/* line 730, app/assets/stylesheets/_tasks.scss */
.user_tasks .question-feedback > p {
  display: none;
  padding-bottom: 20px;
}

/* line 735, app/assets/stylesheets/_tasks.scss */
.user_tasks .question-feedback.active > p {
  display: block;
}

/* line 740, app/assets/stylesheets/_tasks.scss */
.user_tasks .question {
  line-height: 1.4em;
}

/* line 743, app/assets/stylesheets/_tasks.scss */
.user_tasks .question p, .user_tasks .question p.rtejustify {
  margin-top: 14px;
  margin-left: 0px !important;
}

/* line 748, app/assets/stylesheets/_tasks.scss */
.user_tasks .question img {
  max-width: 100%;
  height: auto;
  word-break: break-word;
}

/* line 754, app/assets/stylesheets/_tasks.scss */
.user_tasks .question .multiple-choice-options {
  padding-top: 1px;
}

/* line 757, app/assets/stylesheets/_tasks.scss */
.user_tasks .question .multiple-choice-options li {
  display: block;
  padding-left: 50px;
  padding-top: 2px;
  padding-right: 12px;
  padding-bottom: 4px;
  margin-bottom: 4px;
  color: #4A4A4A;
  border-radius: 4px;
  background-color: #fff;
  margin-left: -8px;
  margin-right: -8px;
}

/* line 770, app/assets/stylesheets/_tasks.scss */
.user_tasks .question .multiple-choice-options li.selected {
  background-color: rgba(223, 220, 242, 0.5);
}

/* line 773, app/assets/stylesheets/_tasks.scss */
.user_tasks .question .multiple-choice-options li.selected .option {
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2);
  background-color: #655CA3;
  color: #fff;
}

/* line 780, app/assets/stylesheets/_tasks.scss */
.user_tasks .question .multiple-choice-options li.processing {
  background-color: rgba(223, 220, 242, 0.5);
}

/* line 783, app/assets/stylesheets/_tasks.scss */
.user_tasks .question .multiple-choice-options li.processing .option {
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2);
  background-color: #655CA3;
  color: #fff;
}

/* line 795, app/assets/stylesheets/_tasks.scss */
.user_tasks .question .multiple-choice-options li.option-correct-answer.selected {
  background-color: transparent;
}

/* line 798, app/assets/stylesheets/_tasks.scss */
.user_tasks .question .multiple-choice-options li.option-correct-answer.selected .option {
  color: #fff;
  background-color: #5FA35C;
}

/* line 803, app/assets/stylesheets/_tasks.scss */
.user_tasks .question .multiple-choice-options li.option-correct-answer .option {
  color: #5FA35C;
  box-shadow: none;
  padding: 4px 0 0 0;
  border: 4px solid #5FA35C;
}

/* line 813, app/assets/stylesheets/_tasks.scss */
.user_tasks .question .multiple-choice-options li.option-wrong-answer.selected {
  background-color: transparent;
}

/* line 816, app/assets/stylesheets/_tasks.scss */
.user_tasks .question .multiple-choice-options li.option-wrong-answer.selected .option {
  color: #fff;
  background-color: #F06361;
}

/* line 821, app/assets/stylesheets/_tasks.scss */
.user_tasks .question .multiple-choice-options li.option-wrong-answer .option {
  color: #F06361;
  box-shadow: none;
  padding: 4px 0 0 0;
  border: 4px solid #F06361;
}

/* line 831, app/assets/stylesheets/_tasks.scss */
.user_tasks .question .multiple-choice-options li.option-unavailable-answer.selected {
  background-color: transparent;
}

/* line 834, app/assets/stylesheets/_tasks.scss */
.user_tasks .question .multiple-choice-options li.option-unavailable-answer.selected .option {
  color: #fff;
  background-color: #655CA3;
}

/* line 839, app/assets/stylesheets/_tasks.scss */
.user_tasks .question .multiple-choice-options li.option-unavailable-answer .option {
  color: #655CA3;
  box-shadow: none;
  padding: 4px 0 0 0;
  border: 4px solid #655CA3;
}

/* line 849, app/assets/stylesheets/_tasks.scss */
.user_tasks .question .multiple-choice-options li.option-disabled-answer.selected {
  background-color: transparent;
}

/* line 852, app/assets/stylesheets/_tasks.scss */
.user_tasks .question .multiple-choice-options li.option-disabled-answer.selected .option {
  color: #fff;
  box-shadow: none;
}

/* line 857, app/assets/stylesheets/_tasks.scss */
.user_tasks .question .multiple-choice-options li.option-disabled-answer .option {
  color: #9b9b9b;
}

/* line 862, app/assets/stylesheets/_tasks.scss */
.user_tasks .question .multiple-choice-options li .option {
  text-transform: uppercase;
  border-radius: 18px;
  background-color: #fff;
  color: #655CA3;
  margin-top: 6px;
  margin-right: 1%;
  margin-left: -44px;
  height: 36px;
  width: 36px;
  vertical-align: 0;
  display: inline-block;
  text-align: center;
  font-size: 19px;
  font-weight: bold;
  padding: 8px 0 0 0;
  position: absolute;
  box-shadow: 0 0 1px #333;
}

/* line 882, app/assets/stylesheets/_tasks.scss */
.user_tasks .question .multiple-choice-options li a {
  color: #4A4A4A;
}

/* line 890, app/assets/stylesheets/_tasks.scss */
div.dialog {
  text-align: center;
}

/* line 893, app/assets/stylesheets/_tasks.scss */
div.dialog p {
  font-size: 14pt;
  color: rgba(103, 98, 98, 0.68);
  font-weight: 600;
  line-height: 28px;
}

/* line 900, app/assets/stylesheets/_tasks.scss */
div.dialog h1 {
  font-size: 26pt;
  color: #777f7f;
  padding: 0;
  margin: 0;
}

/* line 907, app/assets/stylesheets/_tasks.scss */
div.dialog .img-size {
  width: 200px;
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
}

/* line 5, app/assets/stylesheets/_btn-nav.scss */
.btn.btn-nav {
  width: 44px;
  height: 44px;
  border-radius: 22px;
  box-shadow: none;
  text-indent: 44px;
  overflow: hidden;
  background-image: url(/assets/sprite-icons-4x-19a176219015fcfd2fffb277ed9b23b358fb2fd3dde61183b69492c14f0cd0c4.png);
  background-size: 640px;
}

/* line 14, app/assets/stylesheets/_btn-nav.scss */
.btn.btn-nav:active, .btn.btn-nav.active {
  background-image: url(/assets/sprite-icons-4x-19a176219015fcfd2fffb277ed9b23b358fb2fd3dde61183b69492c14f0cd0c4.png);
}

/* line 17, app/assets/stylesheets/_btn-nav.scss */
.btn.btn-nav.btn-back-title {
  margin-left: 5px;
  margin-top: -5px;
}

/* line 25, app/assets/stylesheets/_btn-nav.scss */
.bar-btn-nav {
  display: block;
  position: relative;
}

/* line 29, app/assets/stylesheets/_btn-nav.scss */
.bar-btn-nav h2 {
  position: relative;
}

/* line 32, app/assets/stylesheets/_btn-nav.scss */
.bar-btn-nav .btn-preview {
  left: 0;
}

/* line 35, app/assets/stylesheets/_btn-nav.scss */
.bar-btn-nav .btn-next {
  right: 0;
}

/* line 38, app/assets/stylesheets/_btn-nav.scss */
.bar-btn-nav h2 {
  padding: 8px;
  text-align: center;
  top: 0;
  font-weight: bold;
}

/* line 45, app/assets/stylesheets/_btn-nav.scss */
.bar-btn-nav.content-top-bar {
  font-size: 13pt;
  margin-top: 5px;
}

@media (min-width: 768px) {
  /* line 45, app/assets/stylesheets/_btn-nav.scss */
  .bar-btn-nav.content-top-bar {
    font-size: 21pt;
    font-weight: 100;
    font-family: 'Source Sans Pro', Helvetica, Arial;
    margin-top: 15px;
    margin-bottom: 7px;
  }
}

/* line 57, app/assets/stylesheets/_btn-nav.scss */
.bar-btn-nav.content-top-bar a {
  border: 0;
  margin-right: 5px;
}

/* line 65, app/assets/stylesheets/_btn-nav.scss */
.area-content .bar-btn-nav {
  min-height: 56px;
}

/* line 68, app/assets/stylesheets/_btn-nav.scss */
.area-content .bar-btn-nav h2 {
  right: 44px;
  left: 44px;
  padding: 15px 8px;
  font-weight: normal;
}

/* line 74, app/assets/stylesheets/_btn-nav.scss */
.area-content .bar-btn-nav .btn-preview, .area-content .bar-btn-nav .btn-next, .area-content .bar-btn-nav h2 {
  position: absolute;
}

/* line 81, app/assets/stylesheets/_btn-nav.scss */
.area-content.sticky {
  margin-top: 56px;
}

/* line 84, app/assets/stylesheets/_btn-nav.scss */
.area-content.sticky .bar-btn-nav {
  position: fixed;
  top: 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.99);
  left: 0;
  right: 0;
  padding: 6px 20px;
  z-index: 999;
}

/* line 94, app/assets/stylesheets/_btn-nav.scss */
.area-content.sticky .bar-btn-nav h2 {
  left: 64px;
  right: 64px;
  margin-top: 5px;
}

/* line 99, app/assets/stylesheets/_btn-nav.scss */
.area-content.sticky .bar-btn-nav .btn-next {
  right: 20px;
}

/* line 3, app/assets/stylesheets/_forms.scss */
textarea {
  resize: vertical;
}

/* line 7, app/assets/stylesheets/_forms.scss */
input[type="text"], select, textarea {
  box-sizing: border-box;
  width: 100%;
  padding: 4px 8px;
  border-radius: 4px;
  border: 1px solid #ddd;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}

/* line 17, app/assets/stylesheets/_forms.scss */
input[type="text"]:disabled, select:disabled, textarea:disabled {
  color: #999;
  background-color: #f6f6f6;
}

/* line 21, app/assets/stylesheets/_forms.scss */
input[type="text"]:focus, select:focus, textarea:focus {
  outline: 0;
  box-shadow: 0 0 4px #E6BD63 inset, 0 0 4px #E6BD63;
  border: solid 1px #E6BD63;
  background-color: #FFFAD0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}

/* line 30, app/assets/stylesheets/_forms.scss */
.btn {
  box-shadow: inset 0 3px 0 rgba(255, 255, 255, 0.3), 0 2px 2px rgba(0, 0, 0, 0.5);
  border-radius: 4px;
  padding: 10px 15px;
  font-size: 13pt;
  font-weight: 500;
  border: 1px solid rgba(0, 0, 0, 0.1);
  text-shadow: 0 -1px 3px rgba(0, 0, 0, 0.3);
}

/* line 41, app/assets/stylesheets/_forms.scss */
.btn.btn-previous:active, .btn.btn-previous.active {
  background-position: 0 2px;
}

/* line 45, app/assets/stylesheets/_forms.scss */
.btn.btn-next {
  background-position: -44px 0;
}

/* line 47, app/assets/stylesheets/_forms.scss */
.btn.btn-next:active, .btn.btn-next.active {
  background-position: -44px 2px;
}

/* line 52, app/assets/stylesheets/_forms.scss */
.btn.btn-small {
  padding: 4px 5px 2px;
  font-size: 9pt;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 2px 1px rgba(0, 0, 0, 0.3);
  background-color: #fff;
  background-image: none;
}

/* line 66, app/assets/stylesheets/_forms.scss */
.btn-actions {
  margin-bottom: 20px;
}

/* line 89, app/assets/stylesheets/_forms.scss */
body .btn-search {
  box-shadow: none;
  padding: 6px 8px;
  font-size: 25px;
  background-image: none;
  background-color: #ddd;
  border: 0;
  height: 42px;
}

/* line 108, app/assets/stylesheets/_forms.scss */
.btn-send,
.btn-success,
.btn.acknowledge_button {
  background-color: #0077C8;
  background-image: none;
  color: #fff;
}

/* line 115, app/assets/stylesheets/_forms.scss */
.btn-send:hover, .btn-send:focus,
.btn-success:hover,
.btn-success:focus,
.btn.acknowledge_button:hover,
.btn.acknowledge_button:focus {
  background-color: #005995;
  color: #F6FDFF;
}

/* line 121, app/assets/stylesheets/_forms.scss */
.btn-danger {
  background-color: #ff635f;
  background-image: none;
}

/* line 125, app/assets/stylesheets/_forms.scss */
.btn-right {
  float: right;
  margin-right: 0 !important;
}

/* line 135, app/assets/stylesheets/_forms.scss */
.form-control {
  padding: 25px 15px;
  font-size: 14pt;
}

/* line 139, app/assets/stylesheets/_forms.scss */
select.form-control {
  padding: 20px 15px;
}

/* line 142, app/assets/stylesheets/_forms.scss */
textarea.form-control {
  padding: 15px;
}

/* line 145, app/assets/stylesheets/_forms.scss */
.form-control:focus {
  background-color: #FDFCEA;
  border-color: #EFC627;
  outline: 0;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(245, 210, 71, 0.6);
}

/* line 151, app/assets/stylesheets/_forms.scss */
select.form-control.one-line {
  height: 50px;
  padding: 0 15px;
}

/* line 155, app/assets/stylesheets/_forms.scss */
input:-webkit-autofill, textarea:-webkit-autofill, select:-webkit-autofill {
  background-color: #fff;
}

/* line 158, app/assets/stylesheets/_forms.scss */
.field {
  padding-bottom: 20px;
}

/* line 5, app/assets/stylesheets/_user-messages.scss */
.user-msg .pop-msg {
  background-color: #FFFAD0;
  padding: 10px;
  border-top: solid 1px rgba(0, 0, 0, 0.07);
  border-bottom: solid 1px rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 24px rgba(0, 0, 0, 0.3);
}

/* line 13, app/assets/stylesheets/_user-messages.scss */
.user-msg .pop-msg h4.modal-title {
  font-size: 14pt;
  font-weight: bold;
  margin-bottom: 10px;
  color: #4A4A4A;
}

/* line 21, app/assets/stylesheets/_user-messages.scss */
.user-msg .pop-msg-icon {
  display: block;
  width: 64px;
  height: 64px;
  position: absolute;
  margin-left: -5px;
}

/* line 28, app/assets/stylesheets/_user-messages.scss */
.user-msg .pop-msg-content {
  display: block;
  margin-left: 64px;
  font-size: 11.6pt;
  letter-spacing: -0.015em;
  line-height: 1.3em;
}

/* line 35, app/assets/stylesheets/_user-messages.scss */
.user-msg .pop-msg-actions {
  text-align: right;
}

/* line 38, app/assets/stylesheets/_user-messages.scss */
.user-msg .pop-msg-actions a {
  display: inline-block;
  min-width: auto;
}

/* line 51, app/assets/stylesheets/_user-messages.scss */
.user-msg.ic-img-large .pop-msg-icon {
  width: 80px;
  height: 80px;
}

/* line 55, app/assets/stylesheets/_user-messages.scss */
.user-msg.ic-img-large .pop-msg-icon .ic-img {
  height: 80px;
  width: 80px;
  background-size: 80px;
}

/* line 61, app/assets/stylesheets/_user-messages.scss */
.user-msg.ic-img-large .pop-msg-content {
  margin-left: 80px;
}

/* line 67, app/assets/stylesheets/_user-messages.scss */
.user-msg.single-option .pop-msg-icon {
  margin-top: -2px;
}

/* line 70, app/assets/stylesheets/_user-messages.scss */
.user-msg.single-option .pop-msg-content {
  margin-right: 56px;
}

/* line 73, app/assets/stylesheets/_user-messages.scss */
.user-msg.single-option .pop-msg-actions {
  position: absolute;
  top: 20px;
  right: 12px;
}

/* line 85, app/assets/stylesheets/_user-messages.scss */
.user-msg-box {
  padding: 15px;
}

/* line 88, app/assets/stylesheets/_user-messages.scss */
.user-msg-box .no-result {
  text-align: center;
  width: 240px;
  display: block;
  margin: auto;
}

/* line 95, app/assets/stylesheets/_user-messages.scss */
.user-msg-box .ic-img {
  background-size: auto 80px;
  height: 80px;
  width: auto;
  margin: 15px 0;
}

/* line 104, app/assets/stylesheets/_user-messages.scss */
.ic-img {
  margin-top: 68px;
  height: 64px;
  width: 64px;
  margin: auto;
  display: block;
  background-size: 64px;
  background-repeat: no-repeat;
  background-position: center;
}

/* line 125, app/assets/stylesheets/_user-messages.scss */
.ic-img.ic-img-no-result-new-navigation {
  background-image: url(/assets/ic-img-plurall-no-result-new-navigation-cbd61222081ffd9491ddc15e5a56459340bd43c5646bb9666e0763fc24a8e4ff.png);
}

/* line 125, app/assets/stylesheets/_user-messages.scss */
.ic-img.ic-img-no-result {
  background-image: url(/assets/ic-img-plurall-no-result-3e494e51304103dc99fef9aadc566af3fcebe86b5228108ad81c296a61526720.png);
}

/* line 125, app/assets/stylesheets/_user-messages.scss */
.ic-img.ic-img-mobile {
  background-image: url(/assets/ic-img-plurall-mobile-a417caf875200e3712b604a94e0ec74068c331819fc1eb8537144237a7023670.png);
}

/* line 125, app/assets/stylesheets/_user-messages.scss */
.ic-img.ic-img-book {
  background-image: url(/assets/ic-img-plurall-book-9c2503dac73a42ee752ad804ec2178c67ef6b9276848ecb9f144fa7121bcc4a9.png);
}

/* line 125, app/assets/stylesheets/_user-messages.scss */
.ic-img.ic-img-mail {
  background-image: url(/assets/ic-img-plurall-mail-35457b3b0c381eae22239076aef879c4a74e0f159e54645f37aab3ffae9dbae8.png);
}

/* line 125, app/assets/stylesheets/_user-messages.scss */
.ic-img.ic-img-message {
  background-image: url(/assets/ic-img-plurall-message-e1d8232b7dec7db3e3edb9e4b27457ac61e82dfc2caae137892230ff07a2cd77.png);
}

/* line 125, app/assets/stylesheets/_user-messages.scss */
.ic-img.ic-img-video {
  background-image: url(/assets/ic-img-plurall-video-a7473a6c180ba24bec366d494d695d5d9277771958438016114b48d7268ce591.png);
}

/* line 4, app/assets/stylesheets/_material.scss */
.material-content .bar-btn-nav {
  display: inline-block;
}

/* line 7, app/assets/stylesheets/_material.scss */
.material-content .card-material {
  margin-top: 20px;
}

/* line 17, app/assets/stylesheets/_material.scss */
.card-material a.btn-append {
  display: block;
  width: 44px;
  height: 44px;
  position: absolute;
  right: 7px;
  top: 7px;
  border-radius: 4px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* line 27, app/assets/stylesheets/_material.scss */
.card-material a.btn-append i:before {
  top: 10px;
  left: 10px;
  font-size: 24px;
}

/* line 33, app/assets/stylesheets/_material.scss */
.card-material a.btn-content {
  display: block;
  padding: 20px 10px 20px 52px;
  font-size: 13pt;
  font-weight: 500;
  border-radius: 4px;
  background-color: #f6f6f6;
  margin-bottom: 5px;
  color: #0077C8;
  position: relative;
}

@media (max-width: 767px) {
  /* line 33, app/assets/stylesheets/_material.scss */
  .card-material a.btn-content {
    box-shadow: inset 0 3px 0 rgba(255, 255, 255, 0.3), 0 2px 2px rgba(0, 0, 0, 0.5);
  }
}

/* line 48, app/assets/stylesheets/_material.scss */
.card-material a.btn-disabled {
  color: #c6c6c6;
  background-color: transparent;
  box-shadow: none;
  pointer-events: none;
  cursor: default;
}

/* line 56, app/assets/stylesheets/_material.scss */
.card-material a.btn-disabled .ic:before {
  color: #ddd;
}

/* line 63, app/assets/stylesheets/_material.scss */
.card-material .resolution-text {
  padding: 25px 15px 15px;
  background-color: #f4f4f4;
  margin-top: -10px;
  border-radius: 4px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.15);
  font-size: 11pt;
  font-weight: lighter;
}

@media (min-width: 768px) {
  /* line 63, app/assets/stylesheets/_material.scss */
  .card-material .resolution-text {
    padding-left: 52px;
  }
}

/* line 76, app/assets/stylesheets/_material.scss */
.card-material .btn-line {
  position: relative;
}

/* line 81, app/assets/stylesheets/_material.scss */
.card-material .ic:before {
  display: inline-block;
  font-style: normal;
  position: absolute;
  top: 15px;
  left: 15px;
  font-family: "Plurall";
  content: "\E80C";
  color: #655CA3;
  font-size: 30px;
}

/* line 92, app/assets/stylesheets/_material.scss */
.card-material .ic.ic-document:before {
  content: "\E80C";
}

/* line 95, app/assets/stylesheets/_material.scss */
.card-material .ic.ic-video:before {
  content: "\E809";
}

/* line 98, app/assets/stylesheets/_material.scss */
.card-material .ic.ic-doc-feedback:before {
  content: "\E816";
}

/* line 101, app/assets/stylesheets/_material.scss */
.card-material .ic.ic-download:before {
  content: "\E806";
}

/* line 104, app/assets/stylesheets/_material.scss */
.card-material .ic.ic-doubt:before {
  content: "\E902";
}

/* line 110, app/assets/stylesheets/_material.scss */
.card-material.side-links a {
  position: relative;
  display: block;
  padding: 15px 15px 15px 48px;
  border-bottom: solid 1px #ddd;
}

/* line 116, app/assets/stylesheets/_material.scss */
.card-material.side-links a.btn-append {
  position: absolute;
  padding: 0;
}

/* line 121, app/assets/stylesheets/_material.scss */
.card-material.side-links i.ic:before {
  top: 5px;
  left: 10px;
}

/* line 125, app/assets/stylesheets/_material.scss */
.card-material.side-links #official_answer_text {
  border: 1px solid #cecece;
  padding: 10px;
  border-radius: 3px;
  margin: 10px 0;
  background: #f6f6f6;
}

/* line 131, app/assets/stylesheets/_material.scss */
.card-material.side-links #official_answer_text img {
  width: auto;
  max-width: 100%;
}

/* line 1679, app/assets/stylesheets/_application.scss */
.modal .modal-header {
  border-bottom: 0;
  text-align: center;
}

/* line 1683, app/assets/stylesheets/_application.scss */
.modal .modal-header .close {
  margin-top: -10px;
  margin-right: -5px;
}

/* line 1688, app/assets/stylesheets/_application.scss */
.modal .modal-footer {
  border-top: 0;
}

/* line 1692, app/assets/stylesheets/_application.scss */
.modal .modal-content.pop-msg {
  padding: 30px 15px 15px 25px;
}

/* line 1695, app/assets/stylesheets/_application.scss */
.modal .modal-content .pop-msg-icon {
  margin-left: 5px;
}

/* line 1699, app/assets/stylesheets/_application.scss */
.modal .modal-body {
  padding: 10px 15px 15px 25px;
  position: relative;
  max-height: 400px;
  overflow-y: auto;
  margin-bottom: 10px;
}

/* line 1707, app/assets/stylesheets/_application.scss */
.modal .modal-body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #F5F5F5;
}

/* line 1713, app/assets/stylesheets/_application.scss */
.modal .modal-body::-webkit-scrollbar {
  width: 6px;
  background-color: #F5F5F5;
}

/* line 1719, app/assets/stylesheets/_application.scss */
.modal .modal-body::-webkit-scrollbar-thumb {
  background-color: #555;
}

@media (min-width: 768px) {
  /* line 1726, app/assets/stylesheets/_application.scss */
  .modal .modal-dialog {
    width: 64%;
    margin-top: 40px;
  }
  /* line 1731, app/assets/stylesheets/_application.scss */
  .modal img {
    max-width: 100% !important;
    max-height: 500px;
    width: auto;
    height: auto;
    display: inline-block;
  }
}

/* line 1741, app/assets/stylesheets/_application.scss */
.partial-modal-confirm {
  display: none;
}

/* line 1745, app/assets/stylesheets/_application.scss */
.partial-modal-error {
  display: none;
}

/* line 1749, app/assets/stylesheets/_application.scss */
.partial-image-modal-error {
  display: none;
}

/* line 1753, app/assets/stylesheets/_application.scss */
.question-answer img {
  max-width: 100%;
}

/* line 1759, app/assets/stylesheets/_application.scss */
.btn-trash {
  display: none;
}

/* line 1763, app/assets/stylesheets/_application.scss */
.ui-widget.ui-widget-content {
  border: 1px solid #c5c5c5;
}

/* line 1766, app/assets/stylesheets/_application.scss */
.ui-corner-all, .ui-corner-bottom, .ui-corner-right, .ui-corner-br {
  border-bottom-right-radius: 3px;
}

/* line 1769, app/assets/stylesheets/_application.scss */
.ui-corner-all, .ui-corner-bottom, .ui-corner-left, .ui-corner-bl {
  border-bottom-left-radius: 3px;
}

/* line 1772, app/assets/stylesheets/_application.scss */
.ui-corner-all, .ui-corner-top, .ui-corner-right, .ui-corner-tr {
  border-top-right-radius: 3px;
}

/* line 1775, app/assets/stylesheets/_application.scss */
.ui-corner-all, .ui-corner-top, .ui-corner-left, .ui-corner-tl {
  border-top-left-radius: 3px;
}

/* line 1778, app/assets/stylesheets/_application.scss */
.ui-widget-content {
  border: 1px solid #dddddd;
  background: #ffffff;
  color: #333333;
}

/* line 1783, app/assets/stylesheets/_application.scss */
.ui-dialog {
  position: absolute;
  top: 0;
  left: 0;
  padding: .2em;
  outline: 0;
}

/* line 1789, app/assets/stylesheets/_application.scss */
.ui-dialog .ui-dialog-titlebar {
  display: none;
}

/* line 1792, app/assets/stylesheets/_application.scss */
.ui-dialog .ui-dialog-content {
  position: relative;
  border: 0;
  padding: .5em 1em;
  background: none;
  overflow: auto;
}

/* line 1800, app/assets/stylesheets/_application.scss */
.ui-dialog .ui-dialog-buttonpane {
  text-align: left;
  border-width: 1px 0 0 0;
  background-image: none;
  margin-top: .5em;
  padding: .3em 1em .5em .4em;
}

/* line 1808, app/assets/stylesheets/_application.scss */
.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
  float: right;
}

/* line 1812, app/assets/stylesheets/_application.scss */
.ui-dialog .ui-dialog-buttonpane button {
  margin: .5em .4em .5em 0;
  cursor: pointer;
}

/* line 1818, app/assets/stylesheets/_application.scss */
.ui-front {
  z-index: 100;
}

/* line 1822, app/assets/stylesheets/_application.scss */
.ui-widget-header {
  border: 1px solid #dddddd;
  background: #e9e9e9;
  color: #333333;
  font-weight: bold;
}

/* line 1828, app/assets/stylesheets/_application.scss */
.ui-draggable-handle {
  touch-action: none;
}

/* line 1832, app/assets/stylesheets/_application.scss */
.ui-widget-header {
  border: 1px solid #dddddd;
  background: #e9e9e9;
  color: #333333;
  font-weight: bold;
}

/* line 1838, app/assets/stylesheets/_application.scss */
.ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited, a.ui-button, a:link.ui-button, a:visited.ui-button, .ui-button {
  color: #454545;
  text-decoration: none;
}

/* line 1842, app/assets/stylesheets/_application.scss */
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active {
  border: 1px solid #c5c5c5;
  background: #f6f6f6;
  font-weight: normal;
  color: #454545;
}

/* line 1848, app/assets/stylesheets/_application.scss */
.ui-widget {
  font-family: Arial,Helvetica,sans-serif;
  font-size: 1em;
}

/* line 1852, app/assets/stylesheets/_application.scss */
.ui-button-icon-only {
  width: 2em;
  box-sizing: border-box;
  text-indent: -9999px;
  white-space: nowrap;
}

/* line 1859, app/assets/stylesheets/_application.scss */
.ui-button, .ui-button:link, .ui-button:visited, .ui-button:hover, .ui-button:active {
  text-decoration: none;
}

/* line 1862, app/assets/stylesheets/_application.scss */
.ui-button {
  padding: .4em 1em;
  display: inline-block;
  position: relative;
  line-height: normal;
  margin-right: .1em;
  cursor: pointer;
  vertical-align: middle;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  overflow: visible;
}

/* line 1879, app/assets/stylesheets/_application.scss */
.table-footer {
  display: block;
  padding: 15px 0;
  text-align: right;
}

/* line 1886, app/assets/stylesheets/_application.scss */
.task-modal-confirm {
  background: #fff9d0;
  width: 45%;
  margin: 0 auto;
  position: absolute;
  top: 31%;
  left: 27%;
  padding: 20px;
  display: none;
  z-index: 99;
  border-radius: 5px;
}

/* line 1898, app/assets/stylesheets/_application.scss */
.task-modal-confirm img {
  width: 20%;
  float: left;
}

/* line 1902, app/assets/stylesheets/_application.scss */
.task-modal-confirm .task-modal-title {
  width: 77%;
  float: right;
  margin-top: 20px;
}

/* line 1908, app/assets/stylesheets/_application.scss */
.task-modal-confirm .task-modal-buttons-confirm {
  float: right;
}

/* line 1911, app/assets/stylesheets/_application.scss */
.task-modal-confirm h2 {
  color: #000;
  font-size: 15pt;
  padding-bottom: 15px;
}

/* line 1916, app/assets/stylesheets/_application.scss */
.task-modal-confirm h3 {
  color: #595855;
  padding-bottom: 15px;
}

/* line 1920, app/assets/stylesheets/_application.scss */
.task-modal-confirm button {
  border: none;
  margin-right: 10px;
  padding: 15px;
  border-radius: 5px;
  box-shadow: 0px 2px 3px #cecece;
}

/* line 1927, app/assets/stylesheets/_application.scss */
.task-modal-confirm .task-not-confirm {
  background: #f06361;
  color: #ffffff;
}

/* line 1931, app/assets/stylesheets/_application.scss */
.task-modal-confirm .task-confirm {
  background: #ffffff;
  color: #000000;
}

/* line 1935, app/assets/stylesheets/_application.scss */
.task-modal-confirm.active {
  display: block;
}

/* line 1941, app/assets/stylesheets/_application.scss */
.sistema_anglo.users .fluid-container.footer {
  padding-bottom: 70px;
}

/* line 1945, app/assets/stylesheets/_application.scss */
.sistema_anglo.users .multiple-choice-options .right-option {
  background-image: url(//multi.plurall.net/sites/all/themes/plurall_theme/images/icon-duvida-correct.png);
  display: inline-block;
  vertical-align: bottom;
  background-repeat: no-repeat;
  height: 22px;
  width: 20px;
  background-size: 20px;
  position: absolute;
  margin-left: -55px;
  margin-top: 2px;
}

/* line 1958, app/assets/stylesheets/_application.scss */
.sistema_anglo.users .span-option-correct-answer {
  color: #5FA35C;
  border-color: #5FA35C;
  box-shadow: none;
}

/* line 1966, app/assets/stylesheets/_application.scss */
.div-option-correct-answer {
  border-radius: 36px;
  color: #655CA3;
  display: inline-block;
  font-weight: bold;
  font-size: 18px;
  height: 36px;
  margin-top: 5px;
  margin-right: 1%;
  padding: 3px;
  text-align: center;
  width: 36px;
  box-sizing: border-box;
  border: 4px solid #5FA35C;
}

/* line 1983, app/assets/stylesheets/_application.scss */
.div-option-correct-answer span.option {
  color: #5FA35C;
  border-color: #5FA35C;
  box-shadow: none;
}

/* line 1990, app/assets/stylesheets/_application.scss */
.dropzone.dz-started .dz-message {
  display: block;
}

/* line 1994, app/assets/stylesheets/_application.scss */
.dz-default.dz-message.disabled {
  display: none;
}

/* line 2005, app/assets/stylesheets/_application.scss */
.modal-user-task-title {
  font-size: 25px;
  border-bottom: 2px solid #ccc;
  padding-bottom: 10px;
}

/* line 2011, app/assets/stylesheets/_application.scss */
.modal-user-task-icon {
  width: 60px;
  margin-left: 11px;
}

/* line 2016, app/assets/stylesheets/_application.scss */
.zero-padding-left-rigth {
  padding-left: 0px;
  padding-right: 0px;
}

/* line 2021, app/assets/stylesheets/_application.scss */
.official-answer-correct-answer {
  position: relative;
  color: #fff;
  background: #00b083;
  border-radius: 106px;
  width: 106px;
  height: 106px;
  margin: 0px auto;
  margin-bottom: 20px;
}

/* line 2031, app/assets/stylesheets/_application.scss */
.official-answer-correct-answer div {
  position: absolute;
  font-size: 40px;
  left: 50%;
  top: 49%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/* line 2040, app/assets/stylesheets/_application.scss */
.border-radius-bottom {
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}

/* line 2045, app/assets/stylesheets/_application.scss */
.feedback-header {
  background: #f6f6f6;
  padding: 20px 16px 39px 16px;
  box-shadow: 1px 1px 1px 1px #CCC;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}

/* line 2052, app/assets/stylesheets/_application.scss */
.feedback-header h2 {
  font-weight: bold;
  color: #655CA3;
  margin-bottom: 15px;
  width: 80%;
  float: left;
  cursor: pointer;
}

/* line 2061, app/assets/stylesheets/_application.scss */
.feedback-header .arrow {
  background-image: url(/assets/arrow-6e07fdf3a15f87bfebd98f23411c9d54f855b349ec9d3b3d41a5125d30c1025c.svg);
  width: 20px;
  height: 20px;
  right: 50px;
  position: absolute;
}

/* line 2069, app/assets/stylesheets/_application.scss */
.feedback-header .active {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

/* line 2074, app/assets/stylesheets/_application.scss */
.response-question-feedback {
  display: none;
  background: #f6f6f6;
  padding: 24px;
}

/* line 2079, app/assets/stylesheets/_application.scss */
.response-question-feedback p {
  margin-top: 14px;
}

/* line 2083, app/assets/stylesheets/_application.scss */
.question-feedback.active .response-question-feedback {
  display: block;
  box-shadow: 1px 2px 1px 1px #CCC;
}

/* line 2090, app/assets/stylesheets/_application.scss */
.iframe-tests-results-tri {
  height: 93vh;
  margin: 0;
}

/* line 2094, app/assets/stylesheets/_application.scss */
.iframe-tests-results-tri iframe {
  height: 100%;
}

/* line 2099, app/assets/stylesheets/_application.scss */
.dropzone .dz-preview .dz-image {
  width: 120px;
  height: 120px;
}

/* line 2104, app/assets/stylesheets/_application.scss */
img[data-dz-thumbnail] {
  width: 120px;
  height: 120px;
}
